diff --git a/1634.0896aefa.iframe.bundle.js b/1634.c1d15aca.iframe.bundle.js similarity index 77% rename from 1634.0896aefa.iframe.bundle.js rename to 1634.c1d15aca.iframe.bundle.js index cf624a9..78c7ecf 100644 --- a/1634.0896aefa.iframe.bundle.js +++ b/1634.c1d15aca.iframe.bundle.js @@ -1 +1 @@ -"use strict";(self.webpackChunkreact_fabric=self.webpackChunkreact_fabric||[]).push([[1634],{"./packages/form/src/index.ts":(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{Ag:()=>ArrayInput,j9:()=>AutoComplete,Sc:()=>Checkbox,AN:()=>ColorInput,xI:()=>Controller,JR:()=>DualList,D0:()=>Field,zp:()=>FileInput,lV:()=>Form,t$:()=>HiddenInput,pd:()=>Input,B8:()=>List,wN:()=>Number_Number,_2:()=>Password,sx:()=>Radio,z6:()=>RadioGroup,Q6:()=>Range,vj:()=>Search,l6:()=>Select,Ap:()=>Slider,dO:()=>Switch,TM:()=>Textarea,Mv:()=>useFileUploader,Pv:()=>useFormBuilder});var esm=__webpack_require__("./packages/core/dist/esm/index.js");const ar_namespaceObject=JSON.parse('{"addArray":"اضافة عنصر","password":{"show":"عرض كلمة المرور","hide":"اخفاء كلمة المرور"},"select":{"emptyList":"لا توجد خيارات متاحة","notFound":"لم يتم العثور على خيارات ل ","createOption":"إنشاء خيار جديد ل "},"yup":{"arrayMax":"{{label}} حدد ما يصل {{max}} غرض","arrayMin":"{{label}} اختر على الأقل {{min}} غرض","invalid":"{{label}} نوع بيانات غير صالح","invalidType":"{{label}} غير صالح","numberMax":"{{label}} الحد الأقصى {{max}}","numberMin":"{{label}} الحد الأدنى {{min}}","required":"{{label}} مطلوب","stringMax":"{{label}} أقصى {{max}} الحروف مسموحة","stringMin":"{{label}} يتطلب الحد الأدنى {{min}} الشخصيات"}}'),en_namespaceObject=JSON.parse('{"addArray":"Add Item","password":{"show":"Show password","hide":"Hide password"},"select":{"emptyList":"No options available","notFound":"No options found for <0>{{query}}","createOption":"Create new option for <0>{{query}}"},"yup":{"arrayMax":"{{label}} must contain upto {{max}} item","arrayMin":"{{label}} must contain atleast {{min}} item","invalid":"{{label}} invalid","empty":"{{label}} must not be empty","invalidType":"{{label}} invalid datatype","numberMax":"{{label}} maximum {{max}}","numberMin":"{{label}} minimum {{min}}","required":"{{label}} required","stringMax":"{{label}} maximum {{max}} characters allowed","stringMin":"{{label}} requires minimum {{min}} characters"}}');(0,esm.Rp)("form",{en:en_namespaceObject,ar:ar_namespaceObject});var jsx_runtime=__webpack_require__("./node_modules/react/jsx-runtime.js"),react=__webpack_require__("./node_modules/react/index.js"),index_esm=__webpack_require__("./node_modules/react-hook-form/dist/index.esm.mjs");const Controller=({name,children,...rest})=>{if(!name)throw Error("Form Controller missing `name` prop");return(0,jsx_runtime.jsx)(index_esm.xI,{name,render:({field:{ref,onChange,...field},fieldState:{error},formState:{isSubmitting}})=>(0,react.isValidElement)(children)?(0,react.cloneElement)(react.Children.only(children),{...field,...rest,ref:el=>{el&&ref(el);try{children.props.ref&&"current"in children.props.ref&&(children.props.ref.current=el),children.props.ref?.prototype&&children.props.ref(el)}catch(_){}},checked:!!field.value,readOnly:isSubmitting||children.props.readOnly,invalid:!!error?.message||children.props.invalid,error:error?.message??children.props.error,onChange:v=>{onChange(v),children.props.onChange?.(v)}}):children({...field,...rest,inputRef:el=>{el&&ref(el)},readOnly:isSubmitting,invalid:!!error?.message,checked:!!field.value,error:error?.message,onChange:v=>{onChange(v)}})})};try{Controller.displayName="Controller",Controller.__docgenInfo={description:"",displayName:"Controller",props:{name:{defaultValue:null,description:"field name",name:"name",required:!1,type:{name:"string"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/form/src/form/Controller.tsx#Controller"]={docgenInfo:Controller.__docgenInfo,name:"Controller",path:"packages/form/src/form/Controller.tsx#Controller"})}catch(__react_docgen_typescript_loader_error){}var yup=__webpack_require__("./node_modules/@hookform/resolvers/yup/dist/yup.mjs");const DEFAULT_SUBMIT=()=>{},Form=({formRef,schema,children,defaultValues,onSubmit=DEFAULT_SUBMIT,onChange,...rest})=>{const ref=(0,react.useRef)(null),form=(0,index_esm.mN)({shouldFocusError:!0,resolver:schema&&(0,yup.t)(schema),defaultValues});(0,react.useEffect)((()=>{form.reset()}),[]);const[,startTransition]=(0,react.useTransition)(),changeHandler=(0,esm.d7)(onChange,[onChange]);(0,react.useEffect)((()=>{const subscription=form.watch((value=>{startTransition((()=>changeHandler?.(value)))}));return()=>subscription.unsubscribe()}),[form.watch,changeHandler]);const handleReset=(0,react.useCallback)(((reset={})=>{form.reset(reset),form.clearErrors(),ref.current?.querySelector("[auto-focus], input, textarea")?.focus()}),[defaultValues]);(0,react.useImperativeHandle)(formRef,(()=>({state:form.formState,reset:()=>handleReset(defaultValues),clear:()=>handleReset(),submit:()=>form.handleSubmit(onSubmit),validate:async()=>await form.trigger(),getValues:()=>form.getValues(),setValues:v=>setTimeout((()=>form.reset(v)),50),setValue:(k,v)=>setTimeout((()=>form.setValue(k,v,{shouldDirty:!1,shouldTouch:!1})),50)})),[onSubmit,form,form.formState,defaultValues]);const onInvalid=(0,react.useCallback)(((_,e)=>{const el=e.target;setTimeout((()=>el.querySelector("input[aria-invalid='true'],textarea[aria-invalid='true']")?.focus()),10)}),[]);return(0,jsx_runtime.jsx)(index_esm.Op,{...form,children:(0,jsx_runtime.jsxs)("form",{ref,onReset:()=>handleReset(defaultValues),onSubmit:form.handleSubmit(onSubmit,onInvalid),"data-loading":form.formState.isSubmitting,className:"contents",autoComplete:"off",...rest,children:[children,(0,jsx_runtime.jsx)("input",{type:"submit",className:"absolute invisible"})]})})};try{Form.displayName="Form",Form.__docgenInfo={description:"",displayName:"Form",props:{formRef:{defaultValue:null,description:"",name:"formRef",required:!1,type:{name:"Ref>"}},schema:{defaultValue:null,description:"form data schema",name:"schema",required:!1,type:{name:'ObjectSchema'}},defaultValues:{defaultValue:null,description:"default data values",name:"defaultValues",required:!1,type:{name:"any"}},onChange:{defaultValue:null,description:"change callback",name:"onChange",required:!1,type:{name:"((values: K) => void)"}},onSubmit:{defaultValue:{value:"() => undefined"},description:"submit callback after successful validation",name:"onSubmit",required:!1,type:{name:"((values: K) => void)"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/form/src/form/Form.tsx#Form"]={docgenInfo:Form.__docgenInfo,name:"Form",path:"packages/form/src/form/Form.tsx#Form"})}catch(__react_docgen_typescript_loader_error){}var dist_esm=__webpack_require__("./packages/utilities/dist/esm/index.js");const useFileUploader=(uploader,initialList,multiple=!0)=>{const[state,dispatch]=(0,react.useReducer)(((state,action)=>{if("start"===action.type&&(multiple||state.files.clear(),state.files.set(action.key,action.file),state.count++),"stop"===action.type){const fileObject=state.files.get(action.key);if(fileObject){const{progress,abort,...rest}=fileObject;state.files.set(action.key,{...rest,path:action.path,uploaded:!0})}state.count--}if("error"===action.type){const fileObject=state.files.get(action.key);if(fileObject){const{file,progress,abort,...rest}=fileObject;state.files.set(action.key,{...rest,error:action.error})}state.count--}if("progress"===action.type){const fileObject=state.files.get(action.key);fileObject&&(fileObject.progress=action.progress,state.files.set(action.key,fileObject)),state.count--}return"abort"===action.type&&state.files.delete(action.key),"remove"===action.type&&state.files.delete(action.key),state.list=Array.from(state.files.values()).map((file=>!file.progress&&!file.error&&{key:file.key,path:file.path,mime:file.mime,size:file.size,uploaded:file.uploaded,filename:file.filename})).filter(Boolean),{...state}}),{files:new Map,count:0},(state=>{if(initialList){if((0,dist_esm.Kg)(initialList)){const key=(0,dist_esm.uR)();state.files.set(key,{key,path:initialList,filename:"",size:0,mime:""})}if((0,dist_esm.Gv)(initialList)){const key=(0,dist_esm.uR)();state.files.set(key,{...initialList,key})}(0,dist_esm.cy)(initialList)&&initialList.forEach((file=>{const key=(0,dist_esm.uR)();state.files.set(key,{...file,key})}))}return state.list=Array.from(state.files.values()),state})),doUpload=(0,react.useCallback)((async(key,file)=>{const data=new FormData;data.append("file",file);const abort=new AbortController;dispatch({type:"start",key,file:{key,file,progress:.001,mime:file.type,filename:file.name,size:file.size,abort:()=>abort.abort()}}),await uploader(data,{signal:abort.signal,onUploadProgress(progressEvent){dispatch({type:"progress",key,progress:progressEvent.progress??0})}}).then((path=>{dispatch({type:"stop",key,path})})).catch((error=>{if("ERR_CANCELED"===error.code||"AbortError"===error.name)return dispatch({type:"abort",key});dispatch({type:"error",key,error:error?.message??"form:fileUploadFailed"})}))}),[]),upload=(0,react.useCallback)((files=>{multiple||Array.from(state.files.values())[0]?.abort?.(),Array.from(files??[]).slice(0,multiple?void 0:1).forEach((file=>{doUpload((0,dist_esm.uR)(),file)}))}),[multiple]),retry=(0,react.useCallback)((key=>{const fileObject=state.files.get(key);fileObject?.file&&doUpload(key,fileObject.file)}),[state]);return{upload,remove:(0,react.useCallback)((key=>{dispatch({type:"remove",key})}),[state]),retry,pending:state.count,list:state.list,files:Array.from(state.files.values())}};var es=__webpack_require__("./node_modules/react-i18next/dist/es/index.js"),core_esm=__webpack_require__("./node_modules/@dnd-kit/core/dist/core.esm.js"),sortable_esm=__webpack_require__("./node_modules/@dnd-kit/sortable/dist/sortable.esm.js"),classnames=__webpack_require__("./node_modules/classnames/index.js"),classnames_default=__webpack_require__.n(classnames),injectStylesIntoStyleTag=__webpack_require__("./node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js"),injectStylesIntoStyleTag_default=__webpack_require__.n(injectStylesIntoStyleTag),styleDomAPI=__webpack_require__("./node_modules/style-loader/dist/runtime/styleDomAPI.js"),styleDomAPI_default=__webpack_require__.n(styleDomAPI),insertBySelector=__webpack_require__("./node_modules/style-loader/dist/runtime/insertBySelector.js"),insertBySelector_default=__webpack_require__.n(insertBySelector),setAttributesWithoutAttributes=__webpack_require__("./node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js"),setAttributesWithoutAttributes_default=__webpack_require__.n(setAttributesWithoutAttributes),insertStyleElement=__webpack_require__("./node_modules/style-loader/dist/runtime/insertStyleElement.js"),insertStyleElement_default=__webpack_require__.n(insertStyleElement),styleTagTransform=__webpack_require__("./node_modules/style-loader/dist/runtime/styleTagTransform.js"),styleTagTransform_default=__webpack_require__.n(styleTagTransform),Field_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/form/src/internal/Field.module.css"),options={};options.styleTagTransform=styleTagTransform_default(),options.setAttributes=setAttributesWithoutAttributes_default(),options.insert=insertBySelector_default().bind(null,"head"),options.domAPI=styleDomAPI_default(),options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(Field_module.A,options);const internal_Field_module=Field_module.A&&Field_module.A.locals?Field_module.A.locals:void 0,FieldWrapper=({label,appendLabel,width,labelWidth=192,inline,info,disabled,required,children,listing,className,"data-inner":isInner})=>(0,jsx_runtime.jsxs)("div",{className:classnames_default()(internal_Field_module.fieldWrapper,className,inline?"flex flex-nowrap gap-1":"block"),"data-ref":"fieldWrapper",style:{width,flexBasis:width},children:[!isInner&&(0,jsx_runtime.jsxs)("div",{className:"flex flex-nowrap flex-content gap-1 py-0.5 px-2",style:{width:inline?labelWidth:void 0},children:[(0,jsx_runtime.jsx)("label",{role:"none",className:classnames_default()("flex-initial truncate text-sm",disabled&&"text-muted"),onClick:e=>e.currentTarget.closest('[data-ref="fieldWrapper"]')?.querySelector("input,textarea")?.focus(),children:label}),required&&(0,jsx_runtime.jsx)("span",{className:"text-danger-500 select-none flex-content text-[10px]",children:"✽"}),appendLabel&&(0,jsx_runtime.jsx)("span",{className:"flex-content",children:appendLabel})]}),children,listing,info&&(0,jsx_runtime.jsx)("div",{className:"text-sm text-muted flex-content",children:info})]});try{FieldWrapper.displayName="FieldWrapper",FieldWrapper.__docgenInfo={description:"",displayName:"FieldWrapper",props:{}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/form/src/internal/FieldWrapper.tsx#FieldWrapper"]={docgenInfo:FieldWrapper.__docgenInfo,name:"FieldWrapper",path:"packages/form/src/internal/FieldWrapper.tsx#FieldWrapper"})}catch(__react_docgen_typescript_loader_error){}var ArrayInput_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/form/src/input/ArrayInput.module.css"),ArrayInput_module_options={};ArrayInput_module_options.styleTagTransform=styleTagTransform_default(),ArrayInput_module_options.setAttributes=setAttributesWithoutAttributes_default(),ArrayInput_module_options.insert=insertBySelector_default().bind(null,"head"),ArrayInput_module_options.domAPI=styleDomAPI_default(),ArrayInput_module_options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(ArrayInput_module.A,ArrayInput_module_options);const input_ArrayInput_module=ArrayInput_module.A&&ArrayInput_module.A.locals?ArrayInput_module.A.locals:void 0;var modifiers_esm=__webpack_require__("./node_modules/@dnd-kit/modifiers/dist/modifiers.esm.js"),utilities_esm=__webpack_require__("./node_modules/@dnd-kit/utilities/dist/utilities.esm.js");const ArrayInput=({name,children,addLabel,fixedList,focusName="",onAdd,arrayRef,enableSorting,disabled=!1,readOnly=!1,minItems=0,...rest})=>{const{t}=(0,es.Bd)("form"),form=(0,index_esm.xW)();if(!form?.control)throw new Error("ArrayInput must be contained within a Form element");const{fields,append,remove,move}=(0,index_esm.jz)({name,control:form.control}),error=(0,react.useMemo)((()=>form.formState.errors[name]?.message??form.formState.errors[name]?.root?.message),[form.formState.errors]),handleAdd=(0,react.useCallback)((item=>{append(item),setTimeout((()=>{form.setFocus(`${name}.${fields.length}${focusName?"."+focusName:""}`)}),100)}),[name,fields,focusName]);(0,react.useImperativeHandle)(arrayRef,(()=>({addItem:handleAdd,removeItem:remove})));const Wrapper=(0,react.useCallback)((({children})=>{if(enableSorting){const idMap=fields.map((item=>item.id)),handleDragEnd=e=>{if(e.over&&e.active.id!==e.over.id){const active=idMap.indexOf(`${e.active.id}`),end=idMap.indexOf(`${e.over.id}`);move(active,end)}};return(0,jsx_runtime.jsx)(core_esm.Mp,{onDragEnd:handleDragEnd,modifiers:[modifiers_esm.FN],children:(0,jsx_runtime.jsx)(sortable_esm.gB,{items:idMap,children})})}return children}),[enableSorting,fields]);Wrapper.displayName="SortableWrapper";const SortableItem=(0,react.useCallback)((({id,children,className})=>{if(enableSorting){const{attributes,listeners,setNodeRef,transform,transition,isDragging}=(0,sortable_esm.gl)({id});return(0,jsx_runtime.jsxs)("div",{className,ref:setNodeRef,style:{transform:utilities_esm.Ks.Transform.toString(transform),transition},children:[(0,jsx_runtime.jsx)(esm.In,{className:isDragging?"cursor-grabbing":"cursor-grab",icon:esm.OO.dragHandle,...attributes,...listeners}),children]})}return(0,jsx_runtime.jsx)("div",{className,children})}),[enableSorting]);return SortableItem.displayName="SortableItem",(0,jsx_runtime.jsxs)("div",{className:input_ArrayInput_module.arrayInput,children:[(0,jsx_runtime.jsx)(FieldWrapper,{...rest,children:(0,jsx_runtime.jsx)(Wrapper,{children:fields.map(((item,index)=>(0,jsx_runtime.jsxs)(SortableItem,{id:item.id,className:"flex items-center flex-nowrap gap-2 mb-1",children:["function"==typeof children?children({index,name:`${name}.${index}`}):(0,dist_esm.t_)(children,(child=>(0,react.cloneElement)(child,Object.assign({disabled,readOnly,"data-inner":!0,name:`${name}.${index}${child.props.name?"."+child.props.name:""}`},index>0&&{label:void 0,required:void 0,appendLabel:void 0})))),!fixedList&&(0,jsx_runtime.jsx)(esm.$n,{"aria-label":"Remove item",icon:esm.OO.remove,color:"danger",variant:"link",className:"self-end",disabled:disabled||readOnly||fields.length<=minItems,onClick:()=>remove(index)})]},item.id)))})}),!fixedList&&onAdd&&(0,jsx_runtime.jsx)("div",{className:"flex justify-end",children:(0,jsx_runtime.jsx)(esm.m_,{color:"danger",content:(0,dist_esm.Kg)(error)?`${error}`:t(error?.key,error?.values?{...error?.values,label:t(error.values?.label??"form:badkey",error.values?.path)}:{}),children:(0,jsx_runtime.jsx)(esm.$n,{"aria-label":"Add item",icon:esm.OO.insert,onClick:()=>handleAdd(onAdd()),"data-invalid":!!error,disabled:!!disabled||readOnly,className:classnames_default()(input_ArrayInput_module.addButton,"me-10"),children:addLabel??t("addArray")})})})]})};try{ArrayInput.displayName="ArrayInput",ArrayInput.__docgenInfo={description:"",displayName:"ArrayInput",props:{label:{defaultValue:null,description:"input label",name:"label",required:!1,type:{name:"string"}},appendLabel:{defaultValue:null,description:"append to label end",name:"appendLabel",required:!1,type:{name:"string | number | boolean | Element"}},info:{defaultValue:null,description:"info label at bottom",name:"info",required:!1,type:{name:"string"}},required:{defaultValue:null,description:"required",name:"required",required:!1,type:{name:"boolean"}},disabled:{defaultValue:{value:"false"},description:"disabled input",name:"disabled",required:!1,type:{name:"boolean"}},readOnly:{defaultValue:{value:"false"},description:"read-only input",name:"readOnly",required:!1,type:{name:"boolean"}},name:{defaultValue:null,description:"field name",name:"name",required:!0,type:{name:"string"}},minItems:{defaultValue:{value:"0"},description:"minimum required length",name:"minItems",required:!1,type:{name:"number"}},focusName:{defaultValue:{value:""},description:"field name to focus on add",name:"focusName",required:!1,type:{name:"string"}},enableSorting:{defaultValue:null,description:"enable drag-n-drop sorting",name:"enableSorting",required:!1,type:{name:"boolean"}},addLabel:{defaultValue:null,description:"add item button label",name:"addLabel",required:!1,type:{name:"string"}},fixedList:{defaultValue:null,description:"fixed length list",name:"fixedList",required:!1,type:{name:"boolean"}},arrayRef:{defaultValue:null,description:"",name:"arrayRef",required:!1,type:{name:"Ref<{ addItem: (item: AnyObject) => void; removeItem: (idx: number) => void; }>"}},onAdd:{defaultValue:null,description:"Add item",name:"onAdd",required:!1,type:{name:"(() => AnyObject)"}},width:{defaultValue:null,description:"field width",name:"width",required:!1,type:{name:"string | number"}},inline:{defaultValue:null,description:"inline label and input",name:"inline",required:!1,type:{name:"boolean"}},labelWidth:{defaultValue:null,description:"label width for inline",name:"labelWidth",required:!1,type:{name:"string"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/form/src/input/ArrayInput.tsx#ArrayInput"]={docgenInfo:ArrayInput.__docgenInfo,name:"ArrayInput",path:"packages/form/src/input/ArrayInput.tsx#ArrayInput"})}catch(__react_docgen_typescript_loader_error){}const ErrorIcon=({error="",invalid})=>{const{t}=(0,es.Bd)();return invalid&&(0,jsx_runtime.jsx)(esm.m_,{content:(0,dist_esm.Kg)(error)?`${error}`:t(error?.key,error.values?{...error?.values,label:t(error.values?.label??"form:badkey",error.values?.path)}:{}),placement:"bottom",color:"danger",children:(0,jsx_runtime.jsx)(esm.In,{className:"flex-content first:ms-2 self-center",color:"danger",icon:esm.OO.alert})})};try{ErrorIcon.displayName="ErrorIcon",ErrorIcon.__docgenInfo={description:"",displayName:"ErrorIcon",props:{}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/form/src/internal/ErrorIcon.tsx#ErrorIcon"]={docgenInfo:ErrorIcon.__docgenInfo,name:"ErrorIcon",path:"packages/form/src/internal/ErrorIcon.tsx#ErrorIcon"})}catch(__react_docgen_typescript_loader_error){}const HiddenInput=({hiddenValue,onChange,invalid,error,value="",name})=>((0,react.useEffect)((()=>{onChange?.(hiddenValue)}),[hiddenValue]),(0,jsx_runtime.jsxs)(react.Fragment,{children:[(0,jsx_runtime.jsx)("input",{type:"hidden",onChange,value,name}),(0,jsx_runtime.jsx)(ErrorIcon,{invalid,error})]}));try{HiddenInput.displayName="HiddenInput",HiddenInput.__docgenInfo={description:"",displayName:"HiddenInput",props:{name:{defaultValue:null,description:"field name",name:"name",required:!1,type:{name:"string"}},hiddenValue:{defaultValue:null,description:"hidden value will fire change for form update",name:"hiddenValue",required:!1,type:{name:"any"}},onChange:{defaultValue:null,description:"form onChange handler",name:"onChange",required:!1,type:{name:"((value: AnyObject) => void)"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/form/src/input/Hidden.tsx#HiddenInput"]={docgenInfo:HiddenInput.__docgenInfo,name:"HiddenInput",path:"packages/form/src/input/Hidden.tsx#HiddenInput"})}catch(__react_docgen_typescript_loader_error){}const AvatarInput=({src,size="6rem",fileUrl,uploadHandler,...rest})=>{const{files,list,upload,remove}=useFileUploader((async(data,config)=>await(uploadHandler?.(data,config))),rest.value,!1),[base64,setBase64]=(0,react.useState)("");return(0,react.useEffect)((()=>{if(list?.length){const file=files?.[0]?.file;file&&new Response(file).blob().then((blob=>{const reader=new FileReader;reader.onload=()=>{setBase64(reader.result)},reader.onerror=e=>{console.error("ERROR",e)},reader.readAsDataURL(blob)}))}else setBase64("")}),[files,list]),(0,react.useEffect)((()=>{src&&setBase64(fileUrl?.(src)??src)}),[src]),(0,jsx_runtime.jsxs)("div",{className:"flex flex-nowrap items-end",children:[(0,jsx_runtime.jsxs)("div",{className:"inline-block leading-none rounded-full relative outline overflow-hidden",children:[(0,jsx_runtime.jsx)(esm.eu,{name:"temp",size,avatar:base64}),(0,jsx_runtime.jsxs)("div",{className:"absolute inset-x-0 bottom-0 cursor-pointer bg-opacity-20 hover:bg-opacity-50 bg-black text-white text-xs text-center py-1",children:[(0,jsx_runtime.jsx)("span",{children:"Edit"}),(0,jsx_runtime.jsx)("input",{type:"file",accept:"image/*",className:"absolute inset-0 opacity-0 z-5 cursor-pointer",onChange:e=>[upload(e.target.files),e.target.value=""]})]})]}),(0,jsx_runtime.jsx)(HiddenInput,{hiddenValue:list?.[0]?.path,...rest}),files.map(((file,idx)=>(0,jsx_runtime.jsxs)("div",{className:"px-2 py-1 flex-1",children:[(0,jsx_runtime.jsxs)("div",{className:"flex flex-nowrap gap-1 items-center",children:[(0,jsx_runtime.jsx)("div",{className:"flex-initial truncate pe-2",children:file.filename}),file.error&&(0,jsx_runtime.jsx)("div",{className:"flex-1 truncate px-2",children:(0,jsx_runtime.jsx)("span",{className:"text-danger-600",children:file.error})}),file.progress&&(0,jsx_runtime.jsx)(esm.In,{icon:"mdi mdi-stop-circle",bg:"danger",color:"white",size:"sm",className:"p-[2px]","aria-label":"abort",onClick:()=>file.abort?.()}),!file.progress&&(0,jsx_runtime.jsx)(esm.In,{icon:"mdi mdi-trash-can",color:"danger",size:"sm","aria-label":"remove",onClick:()=>remove(file.key)})]}),file.progress&&(0,jsx_runtime.jsx)(esm.z2,{animate:!0,value:100*file.progress,size:"xxs"})]},idx)))]})};try{AvatarInput.displayName="AvatarInput",AvatarInput.__docgenInfo={description:"",displayName:"AvatarInput",props:{name:{defaultValue:null,description:"field name",name:"name",required:!1,type:{name:"string"}},value:{defaultValue:null,description:"actual avatar storage path",name:"value",required:!1,type:{name:"string"}},src:{defaultValue:null,description:"avatar stream src",name:"src",required:!1,type:{name:"string"}},size:{defaultValue:{value:"6rem"},description:"",name:"size",required:!1,type:{name:"string | number"}},uploadHandler:{defaultValue:null,description:"upload handler to store file in temp storage",name:"uploadHandler",required:!0,type:{name:"UploadHandler"}},fileUrl:{defaultValue:null,description:"",name:"fileUrl",required:!1,type:{name:"((path: string) => string)"}},onChange:{defaultValue:null,description:"change handler\n@param file\n@param base64\n@returns storage path",name:"onChange",required:!1,type:{name:"((path: string) => void)"}},ref:{defaultValue:null,description:"",name:"ref",required:!1,type:{name:"Ref"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/form/src/input/AvatarInput.tsx#AvatarInput"]={docgenInfo:AvatarInput.__docgenInfo,name:"AvatarInput",path:"packages/form/src/input/AvatarInput.tsx#AvatarInput"})}catch(__react_docgen_typescript_loader_error){}var color=__webpack_require__("./node_modules/color/index.js"),color_default=__webpack_require__.n(color),react_color_es=__webpack_require__("./node_modules/react-color/es/index.js"),ColorPicker_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/form/src/input/ColorPicker.module.css"),ColorPicker_module_options={};ColorPicker_module_options.styleTagTransform=styleTagTransform_default(),ColorPicker_module_options.setAttributes=setAttributesWithoutAttributes_default(),ColorPicker_module_options.insert=insertBySelector_default().bind(null,"head"),ColorPicker_module_options.domAPI=styleDomAPI_default(),ColorPicker_module_options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(ColorPicker_module.A,ColorPicker_module_options);const input_ColorPicker_module=ColorPicker_module.A&&ColorPicker_module.A.locals?ColorPicker_module.A.locals:void 0,DEFAULT_SWATCHES=[color_default()("#d7323a").mix(color_default()("#171a1c"),.5).hex(),color_default()("#ff781c").mix(color_default()("#171a1c"),.5).hex(),color_default()("#f7b731").mix(color_default()("#171a1c"),.5).hex(),color_default()("#88ab1b").mix(color_default()("#171a1c"),.5).hex(),color_default()("#22aa85").mix(color_default()("#171a1c"),.5).hex(),color_default()("#399bec").mix(color_default()("#171a1c"),.5).hex(),color_default()("#4862c8").mix(color_default()("#171a1c"),.5).hex(),color_default()("#aa66cf").mix(color_default()("#171a1c"),.5).hex(),color_default()("#f43f7b").mix(color_default()("#171a1c"),.5).hex(),color_default()("#a37f4f").mix(color_default()("#171a1c"),.5).hex(),"#d7323a","#ff781c","#f7b731","#88ab1b","#22aa85","#399bec","#4862c8","#aa66cf","#f43f7b","#a37f4f",color_default()("#d7323a").mix(color_default()("#f1f3f4"),.5).hex(),color_default()("#ff781c").mix(color_default()("#f1f3f4"),.5).hex(),color_default()("#f7b731").mix(color_default()("#f1f3f4"),.5).hex(),color_default()("#88ab1b").mix(color_default()("#f1f3f4"),.5).hex(),color_default()("#22aa85").mix(color_default()("#f1f3f4"),.5).hex(),color_default()("#399bec").mix(color_default()("#f1f3f4"),.5).hex(),color_default()("#4862c8").mix(color_default()("#f1f3f4"),.5).hex(),color_default()("#aa66cf").mix(color_default()("#f1f3f4"),.5).hex(),color_default()("#f43f7b").mix(color_default()("#f1f3f4"),.5).hex(),color_default()("#a37f4f").mix(color_default()("#f1f3f4"),.5).hex(),"#171a1c","#2d3439","#444e55","#5b6971","#71838e","#86959e","#9ca8b0","#b8c1c6","#d5dadd","#f1f3f4"],ColorPicker=(0,react.memo)((({value,onChange,hideAlpha,defaultColor="#fff",swatches=DEFAULT_SWATCHES})=>{const[actualValue,setActualValue]=(0,react.useState)(""),deferred=(0,react.useDeferredValue)(value??defaultColor);(0,react.useEffect)((()=>{setActualValue(deferred??"")}),[deferred]);const handleChange=(0,react.useCallback)((e=>{setActualValue(e??defaultColor),null!=onChange&&(0,react.startTransition)((()=>onChange(e)))}),[onChange]);return(0,jsx_runtime.jsx)(react_color_es.Xq,{width:"16rem",className:input_ColorPicker_module.colorPicker,styles:{default:{hue:{borderRadius:"99px",boxShadow:"0 0 1px 1px var(--color-shadow)"},alpha:{height:"1rem",borderRadius:"99px",backgroundColor:"var(--fabric-bg)",boxShadow:"0 0 1px 1px var(--color-shadow)"},color:{boxShadow:"0 0 1px 1px var(--color-shadow)"},saturation:{boxShadow:"0 0 1px 1px var(--color-shadow)"},activeColor:{boxShadow:"0 0 1px 1px var(--color-shadow)"},picker:{backgroundColor:"var(--fabric-bg)",boxShadow:"0 0 0 1px var(--color-shadow), 0 0 8px var(--fabric-shadow)"},Alpha:{alpha:{paddingRight:"calc(1rem - 2px)"},slider:{width:"calc(1rem - 2px)",borderRadius:"99px",height:"calc(1rem - 2px)",transform:"none"}},Hue:{hue:{paddingRight:"calc(1rem - 2px)"},slider:{width:"calc(1rem - 2px)",borderRadius:"99px",height:"calc(1rem - 2px)",transform:"none"}},Saturation:{circle:{width:"0.5rem",borderRadius:"99px",height:"0.5rem",transform:"translate(-0.25rem, -0.25rem)"}},checkboard:{white:"transparent",black:"red"}}},color:actualValue,presetColors:swatches,disableAlpha:hideAlpha,onChange:({rgb:{a=1,...rgb}})=>setActualValue(color_default()(rgb).alpha(a)[a<1?"hexa":"hex"]()),onChangeComplete:({rgb:{a=1,...rgb}})=>handleChange(color_default()(rgb).alpha(a)[a<1?"hexa":"hex"]())})}));try{ColorPicker.displayName="ColorPicker",ColorPicker.__docgenInfo={description:"",displayName:"ColorPicker",props:{swatches:{defaultValue:null,description:"color swatches",name:"swatches",required:!1,type:{name:"string[]"}},defaultColor:{defaultValue:null,description:"default color",name:"defaultColor",required:!1,type:{name:"string"}},hideAlpha:{defaultValue:null,description:"hide alpha value",name:"hideAlpha",required:!1,type:{name:"boolean"}},value:{defaultValue:null,description:"color value",name:"value",required:!1,type:{name:"string"}},onChange:{defaultValue:null,description:"change handler",name:"onChange",required:!1,type:{name:"((color?: string) => void)"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/form/src/input/ColorPicker.tsx#ColorPicker"]={docgenInfo:ColorPicker.__docgenInfo,name:"ColorPicker",path:"packages/form/src/input/ColorPicker.tsx#ColorPicker"})}catch(__react_docgen_typescript_loader_error){}const ColorInput=({ref,required,disabled,allowClear,invalid,error,value,showPicker,defaultColor="",decorateEnd,decorateStart,onChange,noOutline,...rest})=>{const[actualValue,setActualValue]=(0,react.useState)(""),deferred=(0,react.useDeferredValue)(value??defaultColor);(0,react.useEffect)((()=>{setActualValue(deferred??"")}),[deferred]);const handleChange=(0,react.useCallback)((e=>{setActualValue(e??defaultColor),null!=onChange&&(0,react.startTransition)((()=>onChange(e)))}),[onChange]);return(0,jsx_runtime.jsxs)("div",{className:classnames_default()("flex-content min-h-[1.5em] min-w-[3.5em] self-stretch flex items-center outline-tint-200 rounded",!disabled&&"bg-base",!noOutline&&"bg-[var(--fabric-input)] outline overflow-hidden"),children:[decorateStart&&(0,jsx_runtime.jsx)("div",{className:classnames_default()("text-muted leading-none flex-content",(0,dist_esm.Kg)(decorateStart)&&"px-2"),children:decorateStart}),(0,jsx_runtime.jsxs)(esm.ms,{showArrow:!0,disabled,children:[(0,jsx_runtime.jsx)("button",{"data-ref":"button",className:"flex-1 flex items-center",children:(0,jsx_runtime.jsx)("div",{role:"none",className:"h-[1.5em] min-w-[1.5em] flex-1 flex items-center justify-center self-stretch cursor-pointer m-[0.25em] rounded outline outline-tint-100",style:{backgroundColor:actualValue,opacity:disabled?.65:1,pointerEvents:disabled?"none":void 0},onClick:e=>e.currentTarget.nextElementSibling?.focus(),children:!actualValue&&(0,jsx_runtime.jsx)(esm.In,{size:"md",className:"text-muted",icon:esm.OO.colorSwatch})})}),(0,jsx_runtime.jsx)(ColorPicker,{...rest,onChange:handleChange,defaultColor,value:actualValue})]}),!disabled&&showPicker&&(0,jsx_runtime.jsx)(esm.In,{icon:esm.OO.colorPicker,onClick:()=>window.EyeDropper&&(new window.EyeDropper).open().then((resp=>handleChange(resp.sRGBHex)))}),decorateEnd&&(0,jsx_runtime.jsx)("div",{className:classnames_default()("text-muted leading-none flex-content",(0,dist_esm.Kg)(decorateEnd)&&"px-2"),children:decorateEnd}),!disabled&&allowClear&&actualValue!==defaultColor&&(0,jsx_runtime.jsx)(esm.In,{icon:esm.OO.close,onClick:()=>handleChange(),className:classnames_default()("text-tint-500 hover:text-tint-700 p-[0.25em] flex-content")})]})};try{ColorInput.displayName="ColorInput",ColorInput.__docgenInfo={description:"",displayName:"ColorInput",props:{showPicker:{defaultValue:null,description:"show eydrop picker",name:"showPicker",required:!1,type:{name:"boolean"}},value:{defaultValue:null,description:"value",name:"value",required:!1,type:{name:"string"}},onChange:{defaultValue:null,description:"change handler",name:"onChange",required:!1,type:{name:"((value?: string) => void)"}},onFocus:{defaultValue:null,description:"on focus event handler",name:"onFocus",required:!1,type:{name:"FocusEventHandler"}},onBlur:{defaultValue:null,description:"on blur event handler",name:"onBlur",required:!1,type:{name:"FocusEventHandler"}},onEnterPressed:{defaultValue:null,description:"on enter press callback",name:"onEnterPressed",required:!1,type:{name:"KeyboardEventHandler"}},name:{defaultValue:null,description:"input name",name:"name",required:!1,type:{name:"string"}},label:{defaultValue:null,description:"input label",name:"label",required:!1,type:{name:"string"}},placeholder:{defaultValue:null,description:"input placeholder",name:"placeholder",required:!1,type:{name:"string"}},appendLabel:{defaultValue:null,description:"append to label end",name:"appendLabel",required:!1,type:{name:"string | number | boolean | Element"}},decorateStart:{defaultValue:null,description:"",name:"decorateStart",required:!1,type:{name:"string | number | boolean | Element"}},decorateEnd:{defaultValue:null,description:"",name:"decorateEnd",required:!1,type:{name:"string | number | boolean | Element"}},info:{defaultValue:null,description:"info label at bottom",name:"info",required:!1,type:{name:"string"}},required:{defaultValue:null,description:"required",name:"required",required:!1,type:{name:"boolean"}},disabled:{defaultValue:null,description:"disabled input",name:"disabled",required:!1,type:{name:"boolean"}},readOnly:{defaultValue:null,description:"read-only input",name:"readOnly",required:!1,type:{name:"boolean"}},autoFocus:{defaultValue:null,description:"auto focus when rendered",name:"autoFocus",required:!1,type:{name:"boolean"}},allowClear:{defaultValue:null,description:"show clear button",name:"allowClear",required:!1,type:{name:"boolean"}},invalid:{defaultValue:null,description:"invalid value input",name:"invalid",required:!1,type:{name:"boolean"}},error:{defaultValue:null,description:"error message",name:"error",required:!1,type:{name:"string"}},width:{defaultValue:null,description:"field width",name:"width",required:!1,type:{name:"string | number"}},inline:{defaultValue:null,description:"inline label and input",name:"inline",required:!1,type:{name:"boolean"}},labelWidth:{defaultValue:null,description:"label width for inline",name:"labelWidth",required:!1,type:{name:"string"}},"data-testid":{defaultValue:null,description:"data attribute for test id",name:"data-testid",required:!1,type:{name:"string"}},"data-test-value":{defaultValue:null,description:"data attribute for test value",name:"data-test-value",required:!1,type:{name:"any"}},swatches:{defaultValue:null,description:"color swatches",name:"swatches",required:!1,type:{name:"string[]"}},defaultColor:{defaultValue:{value:""},description:"default color",name:"defaultColor",required:!1,type:{name:"string"}},hideAlpha:{defaultValue:null,description:"hide alpha value",name:"hideAlpha",required:!1,type:{name:"boolean"}},ref:{defaultValue:null,description:"",name:"ref",required:!1,type:{name:"Ref"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/form/src/input/ColorInput.tsx#ColorInput"]={docgenInfo:ColorInput.__docgenInfo,name:"ColorInput",path:"packages/form/src/input/ColorInput.tsx#ColorInput"})}catch(__react_docgen_typescript_loader_error){}var floating_ui_react=__webpack_require__("./node_modules/@floating-ui/react/dist/floating-ui.react.mjs");const InputWrapper=({invalid,error,allowClear,showClear,decorateStart,decorateEnd,children,onClear,noOutline,noBorder,textarea=!1,"data-inner":isInner,"data-open":isOpen,floatingExpand,wrapperRef,width,...rest})=>{const elRef=(0,react.useRef)(null),[isExpanded,setExpanded]=(0,react.useState)(!1),Wrapper=(0,react.useMemo)((()=>isInner||!rest.label?jsx_runtime.Fragment:FieldWrapper),[isInner,rest.label]),wrapperProps=(0,react.useMemo)((()=>isInner||!rest.label?{}:{...rest,width}),[isInner,rest,width]),handleClear=(0,react.useCallback)((e=>{e.currentTarget.parentElement?.querySelector("input,textarea,button")?.focus(),onClear?.()}),[onClear]),doFocus=(0,react.useCallback)((e=>{e.currentTarget.parentElement?.querySelector("input,textarea,button")?.focus()}),[onClear]);(0,react.useEffect)((()=>{isExpanded&&setTimeout((()=>wrapperRef?.current?.querySelector("textarea")?.focus()),50)}),[isExpanded]);const el=(0,jsx_runtime.jsxs)("div",{role:"none",ref:wrapperRef,className:classnames_default()(internal_Field_module.inputWrapper,invalid&&internal_Field_module.invalidWrapper,!noOutline&&!noBorder&&"bg-[var(--fabric-input)] outline overflow-hidden","flex flex-nowrap items-center",textarea?"rounded-capped group":"rounded",isExpanded?"fixed inset-4 z-[99]":floatingExpand?"absolute inset-x-0":"relative",!noOutline&&"after:absolute after:bottom-0 after:h-px after:bg-primary-500 after:mx-auto"),onKeyDown:e=>"Escape"===e.key&&setExpanded(!1),children:[decorateStart&&(0,jsx_runtime.jsx)("div",{onClickCapture:doFocus,className:classnames_default()(internal_Field_module.decorate,"text-muted leading-none flex-content",(0,dist_esm.Kg)(decorateStart)&&"px-1"),children:decorateStart}),(0,jsx_runtime.jsx)(ErrorIcon,{invalid,error}),children,allowClear&&showClear&&(0,jsx_runtime.jsx)(esm.In,{icon:esm.OO.close,onClick:handleClear,className:classnames_default()("text-tint-500 hover:text-tint-700 p-1 z-1 flex-content",internal_Field_module.inputClear,textarea&&"self-start mt-1 me-1")}),decorateEnd&&(0,jsx_runtime.jsx)("div",{onClickCapture:doFocus,className:classnames_default()(internal_Field_module.decorate,"text-muted leading-none flex-content",(0,dist_esm.Kg)(decorateEnd)&&"px-1"),children:decorateEnd}),textarea&&(0,jsx_runtime.jsx)(esm.In,{onClick:()=>setExpanded(!isExpanded),icon:isExpanded?esm.OO.arrowCollapse:esm.OO.arrowExpand,className:"hidden group-hover:block absolute top-0 end-0 bg-base hover:bg-tint-200 p-1 opacity-65 rounded-capped"})]});return(0,jsx_runtime.jsx)(Wrapper,{...wrapperProps,children:(0,jsx_runtime.jsxs)("div",{ref:elRef,className:"flex-1 relative min-h-8",style:{width,flexBasis:width},children:[!isExpanded&&el,isExpanded&&(0,jsx_runtime.jsx)(floating_ui_react.XF,{root:elRef.current?.closest(".theme-base"),children:el})]})})};try{InputWrapper.displayName="InputWrapper",InputWrapper.__docgenInfo={description:"",displayName:"InputWrapper",props:{}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/form/src/internal/InputWrapper.tsx#InputWrapper"]={docgenInfo:InputWrapper.__docgenInfo,name:"InputWrapper",path:"packages/form/src/internal/InputWrapper.tsx#InputWrapper"})}catch(__react_docgen_typescript_loader_error){}const handleEnter=(callback,{stopPropagation=!1,preventDefault=!1}={})=>{const cbHandle=(0,dist_esm.sg)(callback??(()=>{}),100);return e=>{if(!e.shiftKey&&!e.altKey&&!e.metaKey&&"Enter"===e.key&&callback&&(stopPropagation&&e?.stopPropagation(),cbHandle(e),preventDefault))return e.preventDefault(),!1}},getColor=color=>{if(color&&(0,dist_esm._o)(color))return color},getBgClass=bg=>{if(bg&&!(0,dist_esm._o)(bg))return`bg-${bg}`},getColorClass=color=>{if(color&&!(0,dist_esm._o)(color))return`text-${color}`},Input=({ref,name,value,invalid,readOnly,disabled,required,placeholder,autoFocus,error,type="text",onChange,onEnterPressed,...rest})=>{const[actualValue,setActualValue]=(0,react.useState)(""),deferred=(0,react.useDeferredValue)(value),handleEnterPressed=(0,react.useMemo)((()=>handleEnter(onEnterPressed)),[onEnterPressed]);(0,react.useEffect)((()=>{setActualValue(deferred??"")}),[deferred]);const handleChange=(0,react.useCallback)((e=>{const value=e?.target.value;setActualValue(value??""),onChange?.(value??void 0)}),[onchange]);return(0,jsx_runtime.jsx)(InputWrapper,{showClear:!!actualValue,onClear:handleChange,invalid,readOnly,disabled,required,error,...rest,children:(0,jsx_runtime.jsx)("input",{className:"appearance-none bg-transparent py-1 px-2 flex-1 border-none outline-none ring-0 peer","aria-invalid":invalid,"aria-disabled":disabled,"aria-readonly":readOnly,"aria-errormessage":error,placeholder,disabled,readOnly,"data-testid":name,name,size:1,type,ref,autoComplete:"off",autoFocus,value:actualValue,onChange:handleChange,onKeyDown:handleEnterPressed})})};try{Input.displayName="Input",Input.__docgenInfo={description:"",displayName:"Input",props:{type:{defaultValue:{value:"text"},description:"input type",name:"type",required:!1,type:{name:"enum",value:[{value:'"text"'},{value:'"search"'},{value:'"tel"'},{value:'"url"'},{value:'"email"'},{value:'"file"'}]}},value:{defaultValue:null,description:"value",name:"value",required:!1,type:{name:"string"}},onChange:{defaultValue:null,description:"change handler",name:"onChange",required:!1,type:{name:"((value?: string) => void)"}},onFocus:{defaultValue:null,description:"on focus event handler",name:"onFocus",required:!1,type:{name:"FocusEventHandler"}},onBlur:{defaultValue:null,description:"on blur event handler",name:"onBlur",required:!1,type:{name:"FocusEventHandler"}},onEnterPressed:{defaultValue:null,description:"on enter press callback",name:"onEnterPressed",required:!1,type:{name:"KeyboardEventHandler"}},name:{defaultValue:null,description:"input name",name:"name",required:!1,type:{name:"string"}},label:{defaultValue:null,description:"input label",name:"label",required:!1,type:{name:"string"}},placeholder:{defaultValue:null,description:"input placeholder",name:"placeholder",required:!1,type:{name:"string"}},appendLabel:{defaultValue:null,description:"append to label end",name:"appendLabel",required:!1,type:{name:"string | number | boolean | Element"}},decorateStart:{defaultValue:null,description:"",name:"decorateStart",required:!1,type:{name:"string | number | boolean | Element"}},decorateEnd:{defaultValue:null,description:"",name:"decorateEnd",required:!1,type:{name:"string | number | boolean | Element"}},info:{defaultValue:null,description:"info label at bottom",name:"info",required:!1,type:{name:"string"}},required:{defaultValue:null,description:"required",name:"required",required:!1,type:{name:"boolean"}},disabled:{defaultValue:null,description:"disabled input",name:"disabled",required:!1,type:{name:"boolean"}},readOnly:{defaultValue:null,description:"read-only input",name:"readOnly",required:!1,type:{name:"boolean"}},autoFocus:{defaultValue:null,description:"auto focus when rendered",name:"autoFocus",required:!1,type:{name:"boolean"}},allowClear:{defaultValue:null,description:"show clear button",name:"allowClear",required:!1,type:{name:"boolean"}},invalid:{defaultValue:null,description:"invalid value input",name:"invalid",required:!1,type:{name:"boolean"}},error:{defaultValue:null,description:"error message",name:"error",required:!1,type:{name:"string"}},width:{defaultValue:null,description:"field width",name:"width",required:!1,type:{name:"string | number"}},inline:{defaultValue:null,description:"inline label and input",name:"inline",required:!1,type:{name:"boolean"}},labelWidth:{defaultValue:null,description:"label width for inline",name:"labelWidth",required:!1,type:{name:"string"}},"data-testid":{defaultValue:null,description:"data attribute for test id",name:"data-testid",required:!1,type:{name:"string"}},"data-test-value":{defaultValue:null,description:"data attribute for test value",name:"data-test-value",required:!1,type:{name:"any"}},ref:{defaultValue:null,description:"",name:"ref",required:!1,type:{name:"Ref"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/form/src/input/Input.tsx#Input"]={docgenInfo:Input.__docgenInfo,name:"Input",path:"packages/form/src/input/Input.tsx#Input"})}catch(__react_docgen_typescript_loader_error){}const Number_Number=({ref,value,invalid,readOnly,disabled,required,placeholder,autoFocus,name,min,max,step,onChange,onEnterPressed,...rest})=>{const[actualValue,setActualValue]=(0,react.useState)(""),deferred=(0,react.useDeferredValue)(value),handleEnterPressed=(0,react.useMemo)((()=>handleEnter(onEnterPressed)),[onEnterPressed]);(0,react.useEffect)((()=>{setActualValue(deferred??"")}),[deferred]);const handleChange=(0,react.useCallback)((e=>{const number=e?.target.valueAsNumber;setActualValue(number??""),onChange?.(number??void 0)}),[onChange]);return(0,jsx_runtime.jsx)(InputWrapper,{showClear:!!actualValue,onClear:handleChange,invalid,readOnly,disabled,required,...rest,children:(0,jsx_runtime.jsx)("input",{className:"appearance-none bg-transparent py-1 px-2 flex-1 border-none outline-none ring-0","aria-invalid":invalid,"aria-disabled":disabled,"aria-readonly":readOnly,placeholder,disabled,readOnly,"data-testid":name,name,type:"number",size:1,min,max,step,ref,autoComplete:"off",autoFocus,value:actualValue,onChange:handleChange,onKeyDown:handleEnterPressed})})};try{Number_Number.displayName="Number",Number_Number.__docgenInfo={description:"",displayName:"Number",props:{min:{defaultValue:null,description:"minimum value",name:"min",required:!1,type:{name:"number"}},max:{defaultValue:null,description:"maximum value",name:"max",required:!1,type:{name:"number"}},step:{defaultValue:null,description:"increment step",name:"step",required:!1,type:{name:"number"}},value:{defaultValue:null,description:"value",name:"value",required:!1,type:{name:"number"}},onChange:{defaultValue:null,description:"change handler",name:"onChange",required:!1,type:{name:"((value?: number) => void)"}},onFocus:{defaultValue:null,description:"on focus event handler",name:"onFocus",required:!1,type:{name:"FocusEventHandler"}},onBlur:{defaultValue:null,description:"on blur event handler",name:"onBlur",required:!1,type:{name:"FocusEventHandler"}},onEnterPressed:{defaultValue:null,description:"on enter press callback",name:"onEnterPressed",required:!1,type:{name:"KeyboardEventHandler"}},name:{defaultValue:null,description:"input name",name:"name",required:!1,type:{name:"string"}},label:{defaultValue:null,description:"input label",name:"label",required:!1,type:{name:"string"}},placeholder:{defaultValue:null,description:"input placeholder",name:"placeholder",required:!1,type:{name:"string"}},appendLabel:{defaultValue:null,description:"append to label end",name:"appendLabel",required:!1,type:{name:"string | number | boolean | Element"}},decorateStart:{defaultValue:null,description:"",name:"decorateStart",required:!1,type:{name:"string | number | boolean | Element"}},decorateEnd:{defaultValue:null,description:"",name:"decorateEnd",required:!1,type:{name:"string | number | boolean | Element"}},info:{defaultValue:null,description:"info label at bottom",name:"info",required:!1,type:{name:"string"}},required:{defaultValue:null,description:"required",name:"required",required:!1,type:{name:"boolean"}},disabled:{defaultValue:null,description:"disabled input",name:"disabled",required:!1,type:{name:"boolean"}},readOnly:{defaultValue:null,description:"read-only input",name:"readOnly",required:!1,type:{name:"boolean"}},autoFocus:{defaultValue:null,description:"auto focus when rendered",name:"autoFocus",required:!1,type:{name:"boolean"}},allowClear:{defaultValue:null,description:"show clear button",name:"allowClear",required:!1,type:{name:"boolean"}},invalid:{defaultValue:null,description:"invalid value input",name:"invalid",required:!1,type:{name:"boolean"}},error:{defaultValue:null,description:"error message",name:"error",required:!1,type:{name:"string"}},width:{defaultValue:null,description:"field width",name:"width",required:!1,type:{name:"string | number"}},inline:{defaultValue:null,description:"inline label and input",name:"inline",required:!1,type:{name:"boolean"}},labelWidth:{defaultValue:null,description:"label width for inline",name:"labelWidth",required:!1,type:{name:"string"}},"data-testid":{defaultValue:null,description:"data attribute for test id",name:"data-testid",required:!1,type:{name:"string"}},"data-test-value":{defaultValue:null,description:"data attribute for test value",name:"data-test-value",required:!1,type:{name:"any"}},ref:{defaultValue:null,description:"",name:"ref",required:!1,type:{name:"Ref"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/form/src/input/Number.tsx#Number"]={docgenInfo:Number_Number.__docgenInfo,name:"Number",path:"packages/form/src/input/Number.tsx#Number"})}catch(__react_docgen_typescript_loader_error){}const getBoundingClientRect=element=>{const rect=element.getBoundingClientRect();return{top:Math.ceil(rect.top),left:Math.ceil(rect.left),right:Math.ceil(rect.right),width:Math.ceil(rect.width),bottom:Math.ceil(rect.bottom),height:Math.ceil(rect.height)}},sortNumList=arr=>[...arr].map(Number).sort(((a,b)=>a-b)),linearInterpolator_getPercentageForValue=(val,min,max)=>Math.max(0,Math.min(100,(val-min)/(max-min)*100)),linearInterpolator_getValueForClientX=(clientX,trackDims,min,max,isRtl)=>{const{left,right,width}=trackDims;return(max-min)*((isRtl?right-clientX:clientX-left)/width)+min},linearInterpolator_getValueForClientY=(clientY,trackDims,min,max)=>{const{height,bottom}=trackDims;return(max-min)*((bottom-clientY)/height)+min},useRanger=opts=>{const tickSize=opts.tickSize??10,values=opts.values,min=opts.min,max=opts.max,isVertical=opts.vertical,controlledTicks=opts.ticks,steps="steps"in opts?opts.steps:void 0,onChange=opts.onChange,onDrag=opts.onDrag,onDragStart=opts.onDragStart,onDragEnd=opts.onDragEnd,stepSize="stepSize"in opts?opts.stepSize:1,[activeHandleIndex,setActiveHandleIndex]=(0,react.useState)(),[segmentStart,setSegmentStart]=(0,react.useState)(),[tempValues,setTempValues]=(0,react.useState)(),isRtl=(0,esm.OL)(),positionProp=(0,react.useMemo)((()=>isVertical?"bottom":isRtl?"right":"left"),[isVertical,isRtl]),marginProp=(0,react.useMemo)((()=>isVertical?"marginBottom":isRtl?"marginRight":"marginLeft"),[isVertical,isRtl]),getLatest=(val=>{const ref=(0,react.useRef)(val);return ref.current=val,(0,react.useCallback)((()=>ref.current),[])})({activeHandleIndex,segmentStart,onChange,onDrag,onDragStart,onDragEnd,values,tempValues}),trackElRef=(0,react.useRef)(null),segmentElRef=(0,react.useRef)(null),getValueForClientX=(0,react.useCallback)((clientX=>{const trackDims=getBoundingClientRect(trackElRef.current);return linearInterpolator_getValueForClientX(clientX,trackDims,min,max,isRtl)}),[max,min,isRtl]),getValueForClientY=(0,react.useCallback)((clientY=>{const trackDims=getBoundingClientRect(trackElRef.current);return linearInterpolator_getValueForClientY(clientY,trackDims,min,max)}),[max,min]),getNextStep=(0,react.useCallback)(((val,direction)=>{if(steps){const nextIndex=steps.indexOf(val)+direction;return nextIndex>=0&&nextIndex=min&&nextVal<=max?nextVal:val}}),[max,min,stepSize,steps]),roundToStep=(0,react.useCallback)((val=>{let left=min,right=max;if(steps)steps.forEach((step=>{step<=val&&step>left&&(left=step),step>=val&&step{const{activeHandleIndex,onDrag}=getLatest(),clientX="touchmove"===e.type?e.changedTouches[0].clientX:e.clientX,clientY="touchmove"===e.type?e.changedTouches[0].clientY:e.clientY,newValue=isVertical?getValueForClientY(clientY):getValueForClientX(clientX),newRoundedValue=roundToStep(newValue),newValues=[...values.slice(0,activeHandleIndex),newRoundedValue,...values.slice(+activeHandleIndex+1)];onDrag?.(newValues),setTempValues(newValues)}),[getLatest,getValueForClientX,getValueForClientY,roundToStep,values,isVertical]),handleSegmentDrag=(0,react.useCallback)((e=>{const{segmentStart:[segX,segY],tempValues,onDrag}=getLatest(),{left,bottom}=getBoundingClientRect(segmentElRef.current),clientX="touchmove"===e.type?e.changedTouches[0].clientX:e.clientX,clientY="touchmove"===e.type?e.changedTouches[0].clientY:e.clientY,start=getValueForClientX(isVertical?bottom+(clientY-segY):left+(clientX-segX));let diff=roundToStep(start)-tempValues[0];+tempValues[1]+diff>max&&(diff=0);const newValues=[+tempValues[0]+diff,+tempValues[1]+diff];tempValues[0]===newValues[0]&&tempValues[1]===newValues[1]||(onDrag?.(newValues),setTempValues(newValues),setSegmentStart([clientX,clientY]))}),[getLatest,getValueForClientX,getValueForClientY,roundToStep,values,isVertical,max]),handleKeyDown=(0,react.useCallback)(((e,i)=>{const{values,onChange}=getLatest();if(["ArrowLeft","ArrowUp","ArrowRight","ArrowDown"].includes(e.key)){setActiveHandleIndex(i);const direction=["ArrowLeft","ArrowDown"].includes(e.key)?-1:1,newValue=+getNextStep(values[i],direction).toFixed(3),newValues=[...values.slice(0,i),newValue,...values.slice(i+1)],sortedValues=sortNumList(newValues);onChange?.(sortedValues),e.stopPropagation(),e.preventDefault()}}),[getLatest,getNextStep]),handlePress=(0,react.useCallback)(((e,i)=>{const{onDragStart,values}=getLatest();if(-1===i){const clientX="touchmove"===e.type?e.nativeEvent.changedTouches[0].clientX:e.nativeEvent.clientX,clientY="touchmove"===e.type?e.nativeEvent.changedTouches[0].clientY:e.nativeEvent.clientY;setTempValues(values),setSegmentStart([clientX,clientY])}else setActiveHandleIndex(i);const handleRelease=e=>{const{tempValues,onChange,onDragEnd}=getLatest();document.removeEventListener("mousemove",-1===i?handleSegmentDrag:handleDrag),document.removeEventListener("touchmove",-1===i?handleSegmentDrag:handleDrag),document.removeEventListener("mouseup",handleRelease,{capture:!0}),document.removeEventListener("touchend",handleRelease,{capture:!0});const sortedValues=sortNumList(tempValues||values);onDragEnd?.(),onChange?.(sortedValues),setActiveHandleIndex(void 0),setSegmentStart(void 0),setTempValues(void 0)};onDragStart?.(),document.addEventListener("mousemove",-1===i?handleSegmentDrag:handleDrag),document.addEventListener("touchmove",-1===i?handleSegmentDrag:handleDrag),document.addEventListener("mouseup",handleRelease,{capture:!0}),document.addEventListener("touchend",handleRelease,{capture:!0})}),[getLatest,handleDrag]),getPercentageForValue=(0,react.useCallback)((val=>linearInterpolator_getPercentageForValue(val,min,max)),[max,min]),trackClicked=(0,react.useCallback)((e=>{const{onChange,values}=getLatest(),clientX="touchmove"===e.type?e.changedTouches[0].clientX:e.clientX,clientY="touchmove"===e.type?e.changedTouches[0].clientY:e.clientY,newValue=isVertical?getValueForClientY(clientY):getValueForClientX(clientX),newRoundedValue=roundToStep(newValue);let newValues=[newRoundedValue];if(2===values.length)if(values[0]>newRoundedValue)newValues=[newRoundedValue,values[1]];else if(values[1]=newRoundedValue&&(newValues=[newRoundedValue,values[1]]),values[1]-diff<=newRoundedValue&&(newValues=[values[0],newRoundedValue])}onChange(newValues)}),[getLatest,getValueForClientX,getValueForClientY,isVertical]);(0,react.useEffect)((()=>{trackElRef.current?.addEventListener("mousedown",trackClicked)}),[trackClicked]);const ticks=(0,react.useMemo)((()=>{let ticks=controlledTicks??steps;if(!ticks){ticks=[min];const count=tickSize-tickSize%stepSize;for(;ticks[ticks.length-1]({key:i,value,percentage:getPercentageForValue(value),styles:{[positionProp]:`${getPercentageForValue(value)}%`,[marginProp]:"-0.125rem"}})))}),[controlledTicks,getPercentageForValue,max,min,steps,tickSize,positionProp,marginProp]),segments=(0,react.useMemo)((()=>{const sortedValues=sortNumList(tempValues??values);return[...sortedValues,max].map(((value,i)=>{const active=i===sortedValues.length-1;return{key:i,value,active,props:active?{ref:segmentElRef,onMouseDownCapture:e=>{e.stopPropagation(),e.persist(),handlePress(e,-1)},onTouchStartCapture:e=>{e.stopPropagation(),e.persist(),handlePress(e,-1)}}:{},styles:(()=>{const left=getPercentageForValue(sortedValues[i-1]?sortedValues[i-1]:min),width=getPercentageForValue(value)-left;return{[positionProp]:`${left}%`,[isVertical?"height":"width"]:`${width}%`}})()}}))}),[getPercentageForValue,max,min,tempValues,values,positionProp,marginProp]),handles=(0,react.useMemo)((()=>(tempValues??values).map(((value,i)=>({key:i,value,percentage:getPercentageForValue(value),active:i===activeHandleIndex,props:{role:"slider","aria-valuemin":min,"aria-valuemax":max,"aria-valuenow":value,onKeyDown:e=>{e.stopPropagation(),e.persist(),handleKeyDown(e,i)},onMouseDownCapture:e=>{e.stopPropagation(),e.persist(),handlePress(e,i)},onTouchStartCapture:e=>{e.stopPropagation(),e.persist(),handlePress(e,i)}},styles:{[positionProp]:`${getPercentageForValue(value)}%`,[marginProp]:"-0.375rem"},valueStyles:{[positionProp]:`${getPercentageForValue(value)}%`}})))),[activeHandleIndex,getPercentageForValue,handleKeyDown,handlePress,min,max,tempValues,values,positionProp,marginProp]);return{trackElRef,activeHandleIndex,ticks,segments,handles}};try{useRanger.displayName="useRanger",useRanger.__docgenInfo={description:"",displayName:"useRanger",props:{values:{defaultValue:null,description:"",name:"values",required:!0,type:{name:"readonly number[]"}},min:{defaultValue:null,description:"",name:"min",required:!0,type:{name:"number"}},max:{defaultValue:null,description:"",name:"max",required:!0,type:{name:"number"}},tickSize:{defaultValue:null,description:"",name:"tickSize",required:!0,type:{name:"number"}},ticks:{defaultValue:null,description:"",name:"ticks",required:!1,type:{name:"number[]"}},vertical:{defaultValue:null,description:"",name:"vertical",required:!1,type:{name:"boolean"}},onChange:{defaultValue:null,description:"",name:"onChange",required:!0,type:{name:"RangerChangeEvent"}},onDrag:{defaultValue:null,description:"",name:"onDrag",required:!1,type:{name:"RangerChangeEvent"}},onDragStart:{defaultValue:null,description:"",name:"onDragStart",required:!1,type:{name:"(() => void)"}},onDragEnd:{defaultValue:null,description:"",name:"onDragEnd",required:!1,type:{name:"(() => void)"}},debug:{defaultValue:null,description:"",name:"debug",required:!1,type:{name:"boolean"}},stepSize:{defaultValue:null,description:"",name:"stepSize",required:!0,type:{name:"number"}},steps:{defaultValue:null,description:"",name:"steps",required:!0,type:{name:"number[]"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/form/src/ranger/index.tsx#useRanger"]={docgenInfo:useRanger.__docgenInfo,name:"useRanger",path:"packages/form/src/ranger/index.tsx#useRanger"})}catch(__react_docgen_typescript_loader_error){}const Range=({error,name,value,step=1,min=0,max=100,height=192,color,vertical,showLabels,showValue,minLabel,maxLabel,ranges,format,autoFocus,disabled,readOnly,onBlur,onChange,onEnterPressed,onFocus,onSlide,invalid,...rest})=>{const[actualValue,setActualValue]=(0,react.useState)([0,0]),[displayValue,setDisplayValue]=(0,react.useState)(!1),deferred=(0,react.useDeferredValue)(value),minValue=(0,react.useMemo)((()=>ranges?.[0]??min),[min,ranges]),maxValue=(0,react.useMemo)((()=>ranges?.slice(-1)[0]??max),[max,ranges]);(0,react.useEffect)((()=>{setActualValue(deferred??[min,max])}),[deferred,min,max]),(0,react.useEffect)((()=>{setDisplayValue(!!showValue)}),[showValue]);const handleChange=(0,react.useCallback)((val=>{setActualValue(val??[min,max]),onChange?.(val??void 0)}),[onChange,min,max]),minDisplay=(0,react.useMemo)((()=>(0,jsx_runtime.jsx)("span",{className:"text-sm text-dimmed px-2.5 py-px whitespace-nowrap overflow-hidden text-center",children:minLabel??dist_esm.yL.number(min,format)})),[minLabel,min,format]),maxDisplay=(0,react.useMemo)((()=>(0,jsx_runtime.jsx)("span",{className:"text-sm text-dimmed px-2.5 py-px whitespace-nowrap overflow-hidden text-center",children:maxLabel??dist_esm.yL.number(max,format)})),[maxLabel,max,format]),rangerInstance=useRanger({values:actualValue,min:minValue,max:maxValue,stepSize:step,steps:ranges,vertical,tickSize:Math.max((max-min)/10,step),onDrag:val=>onSlide?.(val[0]),onDragStart:()=>setDisplayValue(!0),onDragEnd:()=>setDisplayValue(!!showValue),onChange:values=>handleChange([values[0],values[1]])});return(0,jsx_runtime.jsx)(InputWrapper,{...rest,noOutline:!0,error,invalid,isDisabled:disabled,isReadOnly:readOnly,canClear:!!actualValue,children:(0,jsx_runtime.jsxs)("div",{className:classnames_default()("flex-auto order-3 flex items-center select-none z-0",vertical&&"flex-col w-8",invalid?"text-danger-500":"text-primary-600"),"data-vertical":!!vertical,style:invalid?void 0:{color},children:[showLabels&&(vertical?maxDisplay:minDisplay),(0,jsx_runtime.jsxs)("div",{ref:rangerInstance.trackElRef,className:classnames_default()("flex-auto relative flex items-center",vertical?"my-2 w-8":"mx-2 h-8"),style:{height:vertical?height:void 0},children:[rangerInstance.ticks.map((({value,key,styles})=>(0,jsx_runtime.jsx)("div",{className:classnames_default()("absolute inline-block h-1 w-1 rounded-sm bg-invert opacity-30 leading-[0] z-1",vertical&&"left-1/2 -ml-0.5"),style:styles},key))),rangerInstance.segments.map((({key,styles,active})=>(0,jsx_runtime.jsx)("div",{className:classnames_default()("absolute",active?"bg-current z-1 opacity-90":"bg-invert opacity-5 z-0",vertical?"-bottom-1 left-1/2 -translate-x-1/2":"top-1/2 -translate-y-1/2",!vertical&&(active?"h-1":"h-0.5"),vertical&&(active?"w-1":"w-0.5")),style:styles},key))),rangerInstance.handles.map((({key,value,props,styles,valueStyles})=>(0,jsx_runtime.jsxs)(react.Fragment,{children:[(0,jsx_runtime.jsx)("button",{type:"button",className:classnames_default()("bg-current cursor-pointer appearance-none h-3 w-3 rounded-full z-1 absolute","focus:ring-2 focus:ring-offset-2",vertical&&"left-1/2 -ml-1.5"),...props,style:styles}),displayValue&&(0,jsx_runtime.jsx)("div",{className:classnames_default()("bg-invert text-invert py-px px-2 text-xs absolute rounded z-1 whitespace-nowrap","before:absolute before:h-1.5 before:w-1.5 before:z-[-1] before:bg-invert before:top-1/2 before:-translate-y-1/2 before:rotate-45",vertical?"end-0 ltr:translate-x-full rtl:-translate-x-full translate-y-2":"top-1/2 -translate-y-1/2",!vertical&&(0===key?"-ms-3 ltr:-translate-x-full rtl:translate-x-full ltr:before:translate-x-[0.125rem] rtl:before:-translate-x-[0.125rem] before:end-0":"ms-3 ltr:before:-translate-x-[0.125rem] rtl:before:translate-x-[0.125rem] before:start-0")),"data-align":0===key?"start":"end",style:valueStyles,children:dist_esm.yL.number(value,format)})]},key)))]}),showLabels&&(vertical?minDisplay:maxDisplay)]})})};try{Range.displayName="Range",Range.__docgenInfo={description:"Number Range input",displayName:"Range",props:{min:{defaultValue:{value:"0"},description:"min value",name:"min",required:!1,type:{name:"number"}},max:{defaultValue:{value:"100"},description:"max value",name:"max",required:!1,type:{name:"number"}},step:{defaultValue:{value:"1"},description:"increment step",name:"step",required:!1,type:{name:"number"}},color:{defaultValue:null,description:"Range color",name:"color",required:!1,type:{name:"string"}},height:{defaultValue:{value:"192"},description:"Range height (only vertical)",name:"height",required:!1,type:{name:"number"}},vertical:{defaultValue:null,description:"vertical orientation",name:"vertical",required:!1,type:{name:"boolean"}},showValue:{defaultValue:null,description:"display value tooltip",name:"showValue",required:!1,type:{name:"boolean"}},showLabels:{defaultValue:null,description:"display min/max labels",name:"showLabels",required:!1,type:{name:"boolean"}},minLabel:{defaultValue:null,description:"custom min label",name:"minLabel",required:!1,type:{name:"string"}},maxLabel:{defaultValue:null,description:"custom max label",name:"maxLabel",required:!1,type:{name:"string"}},ranges:{defaultValue:null,description:"step ranges",name:"ranges",required:!1,type:{name:"number[]"}},format:{defaultValue:null,description:"format value",name:"format",required:!1,type:{name:"string"}},onSlide:{defaultValue:null,description:"slide event handler",name:"onSlide",required:!1,type:{name:"((val: number) => void)"}},info:{defaultValue:null,description:"info label at bottom",name:"info",required:!1,type:{name:"string"}},label:{defaultValue:null,description:"input label",name:"label",required:!1,type:{name:"string"}},name:{defaultValue:null,description:"input name",name:"name",required:!1,type:{name:"string"}},width:{defaultValue:null,description:"field width",name:"width",required:!1,type:{name:"string | number"}},onFocus:{defaultValue:null,description:"on focus event handler",name:"onFocus",required:!1,type:{name:"FocusEventHandler"}},onBlur:{defaultValue:null,description:"on blur event handler",name:"onBlur",required:!1,type:{name:"FocusEventHandler"}},onChange:{defaultValue:null,description:"change handler",name:"onChange",required:!1,type:{name:"((value?: [number, number]) => void)"}},autoFocus:{defaultValue:null,description:"auto focus when rendered",name:"autoFocus",required:!1,type:{name:"boolean"}},disabled:{defaultValue:null,description:"disabled input",name:"disabled",required:!1,type:{name:"boolean"}},value:{defaultValue:null,description:"value",name:"value",required:!1,type:{name:"[number, number]"}},readOnly:{defaultValue:null,description:"read-only input",name:"readOnly",required:!1,type:{name:"boolean"}},required:{defaultValue:null,description:"required",name:"required",required:!1,type:{name:"boolean"}},inline:{defaultValue:null,description:"inline label and input",name:"inline",required:!1,type:{name:"boolean"}},"data-testid":{defaultValue:null,description:"data attribute for test id",name:"data-testid",required:!1,type:{name:"string"}},"data-test-value":{defaultValue:null,description:"data attribute for test value",name:"data-test-value",required:!1,type:{name:"any"}},appendLabel:{defaultValue:null,description:"append to label end",name:"appendLabel",required:!1,type:{name:"string | number | boolean | Element"}},error:{defaultValue:null,description:"error message",name:"error",required:!1,type:{name:"string"}},onEnterPressed:{defaultValue:null,description:"on enter press callback",name:"onEnterPressed",required:!1,type:{name:"KeyboardEventHandler"}},decorateStart:{defaultValue:null,description:"",name:"decorateStart",required:!1,type:{name:"string | number | boolean | Element"}},decorateEnd:{defaultValue:null,description:"",name:"decorateEnd",required:!1,type:{name:"string | number | boolean | Element"}},invalid:{defaultValue:null,description:"invalid value input",name:"invalid",required:!1,type:{name:"boolean"}},labelWidth:{defaultValue:null,description:"label width for inline",name:"labelWidth",required:!1,type:{name:"string"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/form/src/input/Range.tsx#Range"]={docgenInfo:Range.__docgenInfo,name:"Range",path:"packages/form/src/input/Range.tsx#Range"})}catch(__react_docgen_typescript_loader_error){}const Switch=({ref,label,checked,invalid,disabled,error,width,color,name,onLabel,offLabel,onLabelColor,offLabelColor,defaultColor,onChange,...rest})=>{const[actualValue,setActualValue]=(0,react.useState)(!1),deferred=(0,react.useDeferredValue)(!!checked);(0,react.useEffect)((()=>{setActualValue(deferred)}),[deferred]);const handleChange=(0,react.useCallback)((e=>{setActualValue(e?.target.checked??!1),onChange?.(e?.target.checked??!1)}),[onChange]);return(0,jsx_runtime.jsxs)("label",{className:classnames_default()(invalid?"ring-danger-500":"ring-primary-500",disabled?"opacity-50 cursor-not-allowed":"hover:opacity-100 cursor-pointer","inline-flex gap-1 py-1 items-center relative cursor-pointer opacity-85 rounded ring-offset-2 has-[:focus-visible]:ring-1"),style:{width},children:[(0,jsx_runtime.jsxs)("div",{className:classnames_default()(actualValue&&getBgClass(color?`${color}-500`:"primary-500"),!actualValue&&(defaultColor?getBgClass(`${defaultColor}-500`):"bg-tint-200"),"relative grid grid-cols-2 items-center h-6 min-w-10 cursor-pointer rounded-full p-1 transition-colors duration-200 ease-in-out"),style:{backgroundColor:getColor(actualValue?color:defaultColor)},children:[(0,jsx_runtime.jsx)("input",{className:classnames_default()("appearance-none absolute opacity-0 inset-0 bg-transparent border-none outline-none ring-0"),"aria-invalid":invalid,"aria-disabled":disabled,disabled,"aria-errormessage":error,type:"checkbox",ref,size:1,tabIndex:0,autoComplete:"off",checked:actualValue,onChange:handleChange,...rest}),(0,jsx_runtime.jsx)("span",{"aria-hidden":"true",className:classnames_default()(!disabled&&"shadow-sm",actualValue?"translate-x-[100%]":"translate-x-0","pointer-events-none inline-block h-4 start-1 absolute rounded-full bg-white ring-0 transition duration-200 ease-in-out"),style:{width:"calc(50% - 0.25rem)"}}),(!!onLabel||!!offLabel)&&(0,jsx_runtime.jsxs)(react.Fragment,{children:[(0,jsx_runtime.jsx)("span",{className:`whitespace-nowrap text-xs px-1 ${getColorClass(onLabelColor??"white")}`,style:{color:getColor(onLabelColor)},children:onLabel??" "}),(0,jsx_runtime.jsx)("span",{className:`whitespace-nowrap text-xs px-1 ${getColorClass(offLabelColor??"base")}`,style:{color:getColor(offLabelColor)},children:offLabel??" "})]})]}),(0,jsx_runtime.jsx)(ErrorIcon,{invalid,error}),label&&(0,jsx_runtime.jsx)("span",{className:"flex-initial leading-5 truncate",children:label})]})};try{Switch.displayName="Switch",Switch.__docgenInfo={description:"",displayName:"Switch",props:{label:{defaultValue:null,description:"Switch label",name:"label",required:!1,type:{name:"string | Element"}},checked:{defaultValue:null,description:"checked",name:"checked",required:!1,type:{name:"boolean"}},onChange:{defaultValue:null,description:"on checked change",name:"onChange",required:!1,type:{name:"((checked: boolean) => void)"}},disabled:{defaultValue:null,description:"disabled input",name:"disabled",required:!1,type:{name:"boolean"}},invalid:{defaultValue:null,description:"invalid value input",name:"invalid",required:!1,type:{name:"boolean"}},error:{defaultValue:null,description:"error message",name:"error",required:!1,type:{name:"string"}},width:{defaultValue:null,description:"field width",name:"width",required:!1,type:{name:"string | number"}},color:{defaultValue:null,description:"cutom Switch icon",name:"color",required:!1,type:{name:"string"}},defaultColor:{defaultValue:null,description:"cutom Switch icon",name:"defaultColor",required:!1,type:{name:"string"}},name:{defaultValue:null,description:"",name:"name",required:!1,type:{name:"string"}},onLabel:{defaultValue:null,description:"",name:"onLabel",required:!1,type:{name:"string"}},onLabelColor:{defaultValue:null,description:"",name:"onLabelColor",required:!1,type:{name:"string"}},offLabel:{defaultValue:null,description:"",name:"offLabel",required:!1,type:{name:"string"}},offLabelColor:{defaultValue:null,description:"",name:"offLabelColor",required:!1,type:{name:"string"}},ref:{defaultValue:null,description:"",name:"ref",required:!1,type:{name:"Ref"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/form/src/input/Switch.tsx#Switch"]={docgenInfo:Switch.__docgenInfo,name:"Switch",path:"packages/form/src/input/Switch.tsx#Switch"})}catch(__react_docgen_typescript_loader_error){}const Textarea=({ref,value,name,invalid,readOnly,disabled,required,placeholder,autoFocus,rows=5,maxRows=12,variableRows,onChange,onEnterPressed,...rest})=>{const[actualValue,setActualValue]=(0,react.useState)(""),[fixedRows,setFixedRows]=(0,react.useState)(rows),deferred=(0,react.useDeferredValue)(value),wrapperRef=(0,react.useRef)(null);(0,react.useEffect)((()=>{setActualValue(deferred??"")}),[deferred]);const handleChange=(0,react.useCallback)((e=>{const value=e?.target.value;setActualValue(value??""),onChange?.(value??void 0)}),[onChange]);return(0,react.useEffect)((()=>{if(variableRows){const lines=actualValue?.split("\n").length??1;setFixedRows(Math.max(rows,Math.min(maxRows,lines)))}else setFixedRows(rows)}),[actualValue,variableRows,rows,maxRows]),(0,jsx_runtime.jsx)(InputWrapper,{showClear:!!actualValue,onClear:handleChange,invalid,readOnly,disabled,required,wrapperRef,textarea:!0,...rest,children:(0,jsx_runtime.jsx)("textarea",{className:"appearance-none self-stretch bg-transparent py-1 px-2 flex-1 border-none outline-none ring-0 min-h-20 resize-none","aria-invalid":invalid,"aria-disabled":disabled,"aria-readonly":readOnly,placeholder,disabled,readOnly,rows:fixedRows,"data-testid":name,name,ref,autoComplete:"off",autoFocus,value:actualValue,onChange:handleChange,onKeyDown:handleEnter(onEnterPressed)})})};try{Textarea.displayName="Textarea",Textarea.__docgenInfo={description:"",displayName:"Textarea",props:{rows:{defaultValue:{value:"5"},description:"textarae rows",name:"rows",required:!1,type:{name:"number"}},maxRows:{defaultValue:{value:"12"},description:"maximum rows",name:"maxRows",required:!1,type:{name:"number"}},variableRows:{defaultValue:null,description:"increment rows on value change",name:"variableRows",required:!1,type:{name:"boolean"}},value:{defaultValue:null,description:"value",name:"value",required:!1,type:{name:"string"}},onChange:{defaultValue:null,description:"change handler",name:"onChange",required:!1,type:{name:"((value?: string) => void)"}},onFocus:{defaultValue:null,description:"on focus event handler",name:"onFocus",required:!1,type:{name:"FocusEventHandler"}},onBlur:{defaultValue:null,description:"on blur event handler",name:"onBlur",required:!1,type:{name:"FocusEventHandler"}},onEnterPressed:{defaultValue:null,description:"on enter press callback",name:"onEnterPressed",required:!1,type:{name:"KeyboardEventHandler"}},name:{defaultValue:null,description:"input name",name:"name",required:!1,type:{name:"string"}},label:{defaultValue:null,description:"input label",name:"label",required:!1,type:{name:"string"}},placeholder:{defaultValue:null,description:"input placeholder",name:"placeholder",required:!1,type:{name:"string"}},appendLabel:{defaultValue:null,description:"append to label end",name:"appendLabel",required:!1,type:{name:"string | number | boolean | Element"}},decorateStart:{defaultValue:null,description:"",name:"decorateStart",required:!1,type:{name:"string | number | boolean | Element"}},decorateEnd:{defaultValue:null,description:"",name:"decorateEnd",required:!1,type:{name:"string | number | boolean | Element"}},info:{defaultValue:null,description:"info label at bottom",name:"info",required:!1,type:{name:"string"}},required:{defaultValue:null,description:"required",name:"required",required:!1,type:{name:"boolean"}},disabled:{defaultValue:null,description:"disabled input",name:"disabled",required:!1,type:{name:"boolean"}},readOnly:{defaultValue:null,description:"read-only input",name:"readOnly",required:!1,type:{name:"boolean"}},autoFocus:{defaultValue:null,description:"auto focus when rendered",name:"autoFocus",required:!1,type:{name:"boolean"}},allowClear:{defaultValue:null,description:"show clear button",name:"allowClear",required:!1,type:{name:"boolean"}},invalid:{defaultValue:null,description:"invalid value input",name:"invalid",required:!1,type:{name:"boolean"}},error:{defaultValue:null,description:"error message",name:"error",required:!1,type:{name:"string"}},width:{defaultValue:null,description:"field width",name:"width",required:!1,type:{name:"string | number"}},inline:{defaultValue:null,description:"inline label and input",name:"inline",required:!1,type:{name:"boolean"}},labelWidth:{defaultValue:null,description:"label width for inline",name:"labelWidth",required:!1,type:{name:"string"}},"data-testid":{defaultValue:null,description:"data attribute for test id",name:"data-testid",required:!1,type:{name:"string"}},"data-test-value":{defaultValue:null,description:"data attribute for test value",name:"data-test-value",required:!1,type:{name:"any"}},ref:{defaultValue:null,description:"",name:"ref",required:!1,type:{name:"Ref"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/form/src/input/Textarea.tsx#Textarea"]={docgenInfo:Textarea.__docgenInfo,name:"Textarea",path:"packages/form/src/input/Textarea.tsx#Textarea"})}catch(__react_docgen_typescript_loader_error){}var floating_ui_dom=__webpack_require__("./node_modules/@floating-ui/dom/dist/floating-ui.dom.mjs"),floating_ui_react_dom=__webpack_require__("./node_modules/@floating-ui/react/node_modules/@floating-ui/react-dom/dist/floating-ui.react-dom.mjs");const Options=({ref,style,items,active,className,itemRef,empty,valueProperty="id",labelProperty="label",itemProps,children,...rest})=>(0,jsx_runtime.jsxs)("div",{ref,className:classnames_default()("bg-base select-none overflow-x-hidden overflow-y-auto",className),style,...rest,children:[0===items.length&&(empty??(0,jsx_runtime.jsx)(esm.HY,{message:(0,jsx_runtime.jsx)(es.x6,{i18nKey:"form:select.emptyList"})})),items.map(((item,index)=>item.___group___?(0,jsx_runtime.jsx)("p",{className:"px-2 py-1 text-muted text-xs sticky -top-px z-2 bg-base border-t",children:item.label},index):item.___create___?(0,jsx_runtime.jsx)("div",{role:"none",tabIndex:active===index?0:-1,ref:el=>itemRef(index,el),"data-active":active===index||void 0,className:classnames_default()("block text-start truncate px-2 py-1 leading-normal cursor-pointer select-none","data-[active]:bg-primary-200 data-[selected]:bg-primary-600 data-[selected]:text-white data-[active]:data-[selected]:underline"),...itemProps(item),children:(0,jsx_runtime.jsx)(es.x6,{i18nKey:"form:select.createOption",values:{query:item.value},components:[(0,jsx_runtime.jsx)("strong",{children:"query"},"t0")]})},index):(0,jsx_runtime.jsx)("div",{role:"none",tabIndex:active===index?0:-1,ref:el=>itemRef(index,el),"data-active":active===index||void 0,className:classnames_default()("block text-start truncate px-2 py-1 leading-normal cursor-pointer","data-[active]:bg-primary-200 data-[selected]:bg-primary-600 data-[selected]:text-white data-[active]:data-[selected]:underline"),...itemProps(item),children:children(item,item[labelProperty]??item)},index)))]});try{Options.displayName="Options",Options.__docgenInfo={description:"",displayName:"Options",props:{}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/form/src/select/Options.tsx#Options"]={docgenInfo:Options.__docgenInfo,name:"Options",path:"packages/form/src/select/Options.tsx#Options"})}catch(__react_docgen_typescript_loader_error){}const makeOption=query=>query,useSelect=({options=dist_esm.Ml,value,autoComplete,multiple=!1,allowCreate=!1,groupProperty="",valueProperty="id",labelProperty="label",createOption=makeOption,matcher,onQuery,onChange,onSelect})=>{const emptyValue=(0,react.useMemo)((()=>multiple?[]:""),[multiple]),deferred=(0,react.useDeferredValue)(value??emptyValue),listRef=(0,react.useRef)([]),focusableRef=(0,react.useRef)(null),listContentRef=(0,react.useRef)([]),optionsRef=(0,react.useRef)([]),macthOption=(0,react.useCallback)(((item,query)=>matcher?.(item,query)??(0,dist_esm.FX)(item[labelProperty]??item,query)),[matcher]),fireChange=(0,react.useCallback)((value=>{setTimeout((()=>{onSelect?.(value??emptyValue),onChange?.(((value,emptyValue,valueProperty="")=>(0,dist_esm.cy)(value)?value.map((val=>val[valueProperty]??val)):value?.[valueProperty]??value??emptyValue)(value,emptyValue,valueProperty))}),50)}),[emptyValue,onSelect,onChange]),[state,dispatch]=(0,react.useReducer)(((state,action)=>{if("open"===action.type){const index=state.items.indexOf(state.multiple?state.value[0]:state.value);return{...state,open:!0,activeIndex:index>-1?index:null}}if("close"===action.type)return{...state,activeIndex:null,open:!1};if("active"===action.type&&state.open)return autoComplete&&null!==action.index&&(state.query=state.items[action.index]),{...state,activeIndex:action.index};if("setValue"===action.type)return{...state,value:action.value,selectedIndex:state.items.indexOf(state.multiple?action.value[0]:action.value)};if("changeValue"===action.type){const newState={...state,value:state.emptyValue,activeIndex:null,selectedIndex:autoComplete?state.multiple?action.value?.length:0:state.items.indexOf(action.value)};if(void 0!==action.value)if(multiple){const values=[];(0,dist_esm.Kg)(action.value)?values.push(...action.value.split(/,\s?/)):values.push(action.value),newState.value=[...state.value],values.forEach((value=>{newState.value=newState.value.includes?.(value)?newState.value.filter((item=>item!==value)):[...newState.value,value]}))}else newState.value=action.value;return state.multiple||(newState.open=!1),fireChange(newState.value),newState}if("removeItem"===action.type){let newValue=state.value;return state.multiple?(newValue=[...newValue],newValue.splice(action.index??-1,1)):newValue="",fireChange(newValue),{...state,value:newValue}}if("startQuery"===action.type)return{...state,loading:!0,query:action.query};if("options"===action.type){const newState={...state,loading:!1,query:action.query};let optionList=[...action.options];autoComplete&&void 0!==action.query&&(optionList=(0,dist_esm.Qq)([action.query,...optionList]));const grouped=(0,dist_esm.$z)(optionList,groupProperty,"");if(action.open&&(newState.open=!0),newState.items=[],allowCreate&&action.query&&newState.items.push({___create___:!0,value:createOption(action.query)}),Object.entries(grouped).forEach((([key,list])=>{key&&newState.items.push({___group___:!0,label:key}),newState.items.push(...list)})),action.setActive){const index=newState.items.findIndex((opt=>!opt.___group___));newState.activeIndex=index>=0?index:null}else newState.activeIndex=null;return listContentRef.current=newState.items,newState}return state}),{multiple,emptyValue,open:!1,loading:!1,activeIndex:null,selectedIndex:null,value:emptyValue,query:void 0,items:[]});(0,react.useEffect)((()=>{if(!multiple){const newOption=(allowCreate||autoComplete)&&deferred?createOption(deferred):void 0,hasValue=options.find((opt=>(opt[valueProperty]??opt)===deferred));optionsRef.current=options,!hasValue&&newOption&&(optionsRef.current=[newOption,...options??[]]),dispatch({type:"options",options:optionsRef.current}),dispatch({type:"setValue",value:hasValue??newOption??""})}if(multiple){optionsRef.current=[];const value=((0,dist_esm.cy)(deferred)?deferred:[]).map((item=>{const newOption=(allowCreate||autoComplete)&&item?createOption(item):void 0,hasValue=options.find((opt=>(opt[valueProperty]??opt)===deferred));return!hasValue&&newOption&&optionsRef.current.push(newOption),hasValue??newOption??""}));optionsRef.current=[...optionsRef.current,...options??[]],dispatch({type:"options",options:optionsRef.current}),dispatch({type:"setValue",value})}}),[deferred,options,multiple,allowCreate,autoComplete,createOption]);const fireQuery=(0,esm.d7)((query=>{Promise.resolve(onQuery?.(query)).then((options=>{const newOptions=[...options];autoComplete&&newOptions.push(...optionsRef.current.filter((opt=>macthOption?.(opt,query)))),dispatch({type:"options",query,options:newOptions,open:!0,setActive:!0})}))}),[onQuery]),handleQuery=(0,react.useCallback)((query=>{if(query){if(onQuery)return dispatch({type:"startQuery",query}),fireQuery(query);dispatch({type:"options",query,open:!0,setActive:!0,options:optionsRef.current.filter((opt=>macthOption?.(opt,query)))})}else dispatch({type:"options",query:"",options:optionsRef.current})}),[macthOption,onQuery]),handleChange=(0,react.useCallback)((value=>{let values=value;if(autoComplete&&multiple&&value&&(values=value.split(/,\s?/)),dispatch({type:"changeValue",value:value?.___create___?value.value:value}),value?.___create___){let val=[value.value];multiple&&(val=value.value.split(/,\s?/)),optionsRef.current=[...optionsRef.current,...val.map(createOption)]}autoComplete&&(optionsRef.current=(0,dist_esm.Qq)([...(0,dist_esm.cy)(values)?values:[values],...optionsRef.current])),dispatch({type:"options",options:optionsRef.current})}),[]),handleRemove=(0,react.useCallback)((index=>{dispatch({type:"removeItem",index})}),[]),setOpen=(0,react.useCallback)((open=>{dispatch({type:open?"open":"close"}),dispatch({type:"options",query:void 0,options:optionsRef.current})}),[]),setActiveIndex=(0,react.useCallback)((index=>{dispatch({type:"active",index})}),[]);return{state,listRef,focusableRef,listContentRef,handleChange,handleRemove,handleQuery,macthOption,setActiveIndex,setOpen,setItemRef:(index,node)=>{listRef.current[index]=node}}};try{useSelect.displayName="useSelect",useSelect.__docgenInfo={description:"",displayName:"useSelect",props:{value:{defaultValue:null,description:"",name:"value",required:!1,type:{name:"any"}},options:{defaultValue:null,description:"",name:"options",required:!1,type:{name:"AnyObject[]"}},multiple:{defaultValue:{value:"false"},description:"",name:"multiple",required:!1,type:{name:"boolean"}},allowCreate:{defaultValue:{value:"false"},description:"",name:"allowCreate",required:!1,type:{name:"boolean"}},groupProperty:{defaultValue:{value:""},description:"",name:"groupProperty",required:!1,type:{name:"any"}},valueProperty:{defaultValue:{value:"id"},description:"",name:"valueProperty",required:!1,type:{name:"any"}},labelProperty:{defaultValue:{value:"label"},description:"",name:"labelProperty",required:!1,type:{name:"any"}},autoComplete:{defaultValue:null,description:"",name:"autoComplete",required:!1,type:{name:"boolean"}},matcher:{defaultValue:null,description:"",name:"matcher",required:!1,type:{name:"((item: AnyObject, query: string) => boolean)"}},createOption:{defaultValue:{value:"(query: string) => query"},description:"",name:"createOption",required:!1,type:{name:"((query: string) => AnyObject)"}},onQuery:{defaultValue:null,description:"",name:"onQuery",required:!1,type:{name:"((query: string) => AnyObject)"}},onSelect:{defaultValue:null,description:"",name:"onSelect",required:!1,type:{name:"((item: AnyObject) => void)"}},onChange:{defaultValue:null,description:"",name:"onChange",required:!1,type:{name:"((value: AnyObject) => void)"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/form/src/select/useSelect.tsx#useSelect"]={docgenInfo:useSelect.__docgenInfo,name:"useSelect",path:"packages/form/src/select/useSelect.tsx#useSelect"})}catch(__react_docgen_typescript_loader_error){}const Select=({ref,name,value,invalid,readOnly,disabled,required,placeholder,autoFocus,error,options,groupProperty,labelProperty="label",valueProperty="id",multiple,searchable,allowCreate,createOption,matcher,renderer,onQuery,onChange,onSelect,onEnterPressed,...rest})=>{const{state,listRef,listContentRef,setOpen,macthOption,handleChange,handleRemove,handleQuery,setItemRef,setActiveIndex}=useSelect({value,options,multiple,groupProperty,labelProperty,valueProperty,allowCreate,createOption,matcher,onChange,onSelect,onQuery}),dropdownKey=(0,react.useId)(),{context,floatingStyles,refs}=(0,floating_ui_react.we)({open:state.open,onOpenChange:(open,evt,reason)=>{!open&&(listRef.current=[]),setOpen(open)},strategy:"fixed",placement:"bottom",whileElementsMounted:floating_ui_dom.ll,middleware:[(0,floating_ui_react_dom.BN)({padding:8}),(0,floating_ui_react_dom.UU)(),(0,floating_ui_react_dom.cY)(2)]}),click=(0,floating_ui_react.kp)(context,{}),dismiss=(0,floating_ui_react.s9)(context,{}),navigation=(0,floating_ui_react.C1)(context,{listRef,activeIndex:state.activeIndex,selectedIndex:state.selectedIndex,loop:!0,virtual:!0,focusItemOnOpen:!1,onNavigate:setActiveIndex}),typeahead=(0,floating_ui_react.lY)(context,{listRef:listContentRef,activeIndex:state.activeIndex,selectedIndex:state.selectedIndex,findMatch:(list,typedString)=>list.find((item=>macthOption(item,typedString))),onMatch(index){state.open&&setActiveIndex(index),!searchable&&!multiple&&!state.open&&handleChange(listContentRef.current[index])}}),{getReferenceProps,getFloatingProps,getItemProps}=(0,floating_ui_react.bv)([dismiss,searchable?void 0:click,navigation,typeahead]),referenceProps=(0,react.useMemo)((()=>{const props=getReferenceProps();return{...props,onBlur(evt){evt.relatedTarget?.closest(`[data-select-dropdown="${dropdownKey}"]`)?refs.domReference.current?.querySelector("input")?.focus():(handleQuery(""),setOpen(!1))},onKeyDown(evt){if("Enter"===evt.key){if(null!==state.activeIndex)return handleChange(listContentRef.current[state.activeIndex]),evt.preventDefault(),evt.stopPropagation(),!1;state.query?handleQuery(""):onEnterPressed?.(evt)}else"Tab"===evt.key&&null!==state.activeIndex?handleChange(listContentRef.current[state.activeIndex]):"Backspace"===evt.key?!state.query&&handleRemove():searchable&&!["ArrowUp","ArrowDown"].includes(evt.key)||(["ArrowUp","ArrowDown"].includes(evt.key)&&null===state.activeIndex&&setActiveIndex(state.selectedIndex),setTimeout((()=>{props.onKeyDown?.(evt)}),50))}}}),[getReferenceProps,onEnterPressed,handleQuery,refs,state.query,state.activeIndex]),floatingProps=(0,react.useMemo)((()=>getFloatingProps({"data-select-dropdown":dropdownKey})),[getFloatingProps]),makeItemProps=(0,react.useCallback)((item=>{const selected=(0,dist_esm.cy)(state.value)?state.value?.includes?.(item):state.value===item;return getItemProps({"data-selected":!!selected||void 0,onClick(){handleChange(item)}})}),[getItemProps,handleChange,state.value]),displayValue=(0,react.useMemo)((()=>(0,dist_esm.cy)(state.value)?state.value.map(((item,index)=>(0,jsx_runtime.jsx)(esm.vu,{onRemove:()=>handleRemove(index),children:renderer?.(item)??item[labelProperty]??item},index))):(0,dist_esm.Im)(state.value)||state.query?void 0:(0,jsx_runtime.jsx)("span",{className:"self-center pointer-events-none select-none",children:renderer?.(state.value)??state.value[labelProperty]??state.value})),[state.value,state.query,placeholder,renderer]),openDropdown=(0,react.useCallback)((()=>{setOpen(!0),refs.domReference.current?.querySelector("input")?.focus()}),[]);return(0,react.useLayoutEffect)((()=>{state.open&&setTimeout((()=>{state.selectedIndex&&listRef.current[state.selectedIndex]?.scrollIntoView({block:"center"})}),100)}),[state.open]),(0,jsx_runtime.jsxs)(InputWrapper,{showClear:!(0,dist_esm.Im)(state.value),onClear:handleChange,invalid,readOnly,disabled,required,error,wrapperRef:refs.setReference,className:state.open?"!z-[99]":"",...rest,children:[(0,jsx_runtime.jsxs)("div",{role:"none","data-select-display":"true",className:classnames_default()("group flex-1 py-1 px-2 truncate text-start flex gap-1 relative min-h-5 justify-start",multiple?"flex-wrap":"flex-nowrap overflow-hidden"),...referenceProps,onMouseUp:e=>e.currentTarget.querySelector("input")?.focus(),children:[displayValue,(0,jsx_runtime.jsx)("input",{readOnly:!searchable||readOnly,disabled,value:state.query??"","aria-invalid":invalid,"data-testid":name,name,size:1,ref,autoFocus,className:classnames_default()("appearance-none bg-transparent outline-none border-none ring-0 flex-1",disabled&&"cursor-not-allowed pointer-events-none",multiple&&"min-w-24"),placeholder:(0,dist_esm.Im)(state.value)?placeholder:"",onChange:evt=>handleQuery(evt.target.value)})]}),!state.loading&&(0,jsx_runtime.jsx)(esm.In,{className:classnames_default()("flex-content p-2 z-0 order-9 text-muted cursor-pointer self-stretch flex items-center h-auto",state.open&&"-scale-y-100 pointer-events-none",disabled&&"pointer-events-none"),onClick:()=>!disabled&&openDropdown(),icon:esm.OO.chevronDown}),state.loading&&(0,jsx_runtime.jsx)(esm.In,{animate:"spin",className:classnames_default()("flex-content p-2 z-0 order-9 text-muted pointer-events-none"),icon:esm.OO.spinner}),state.open&&!state.loading&&(0,jsx_runtime.jsx)(floating_ui_react.XF,{children:(0,jsx_runtime.jsx)(floating_ui_react.s3,{context,initialFocus:-1,visuallyHiddenDismiss:!0,children:(0,jsx_runtime.jsx)(Options,{ref:refs.setFloating,className:"outline shadow-lg max-h-[40vh] z-[var(--z-popover)]",style:{width:refs.reference.current?.getBoundingClientRect().width,...floatingStyles},...floatingProps,items:state.items,active:state.activeIndex,valueProperty,labelProperty,itemRef:setItemRef,itemProps:makeItemProps,children:(item,label)=>renderer?.(item)??label})})})]})};try{Select.displayName="Select",Select.__docgenInfo={description:"",displayName:"Select",props:{options:{defaultValue:null,description:"list options",name:"options",required:!1,type:{name:"T[]"}},groupProperty:{defaultValue:null,description:"group by property name",name:"groupProperty",required:!1,type:{name:"string | number | symbol"}},labelProperty:{defaultValue:{value:'"label" as AnyObject'},description:"label property name",name:"labelProperty",required:!1,type:{name:"string | number | symbol"}},valueProperty:{defaultValue:{value:'"id" as AnyObject'},description:"value property name",name:"valueProperty",required:!1,type:{name:"string | number | symbol"}},searchable:{defaultValue:null,description:"searchable list",name:"searchable",required:!1,type:{name:"boolean"}},allowCreate:{defaultValue:null,description:"allow create item",name:"allowCreate",required:!1,type:{name:"boolean"}},createOption:{defaultValue:null,description:"create new item object",name:"createOption",required:!1,type:{name:"((query: string) => T)"}},onQuery:{defaultValue:null,description:"query handler",name:"onQuery",required:!1,type:{name:"((query: string) => T[] | Promise)"}},renderer:{defaultValue:null,description:"item renderer",name:"renderer",required:!1,type:{name:"((option: T) => ReactNode)"}},matcher:{defaultValue:null,description:"item matcher",name:"matcher",required:!1,type:{name:"((option: T, query: string) => boolean)"}},ref:{defaultValue:null,description:"",name:"ref",required:!1,type:{name:"Ref"}},info:{defaultValue:null,description:"info label at bottom",name:"info",required:!1,type:{name:"string"}},label:{defaultValue:null,description:"input label",name:"label",required:!1,type:{name:"string"}},name:{defaultValue:null,description:"input name",name:"name",required:!1,type:{name:"string"}},width:{defaultValue:null,description:"field width",name:"width",required:!1,type:{name:"string | number"}},onFocus:{defaultValue:null,description:"on focus event handler",name:"onFocus",required:!1,type:{name:"FocusEventHandler"}},onBlur:{defaultValue:null,description:"on blur event handler",name:"onBlur",required:!1,type:{name:"FocusEventHandler"}},autoFocus:{defaultValue:null,description:"auto focus when rendered",name:"autoFocus",required:!1,type:{name:"boolean"}},disabled:{defaultValue:null,description:"disabled input",name:"disabled",required:!1,type:{name:"boolean"}},placeholder:{defaultValue:null,description:"input placeholder",name:"placeholder",required:!1,type:{name:"string"}},readOnly:{defaultValue:null,description:"read-only input",name:"readOnly",required:!1,type:{name:"boolean"}},required:{defaultValue:null,description:"required",name:"required",required:!1,type:{name:"boolean"}},inline:{defaultValue:null,description:"inline label and input",name:"inline",required:!1,type:{name:"boolean"}},"data-testid":{defaultValue:null,description:"data attribute for test id",name:"data-testid",required:!1,type:{name:"string"}},"data-test-value":{defaultValue:null,description:"data attribute for test value",name:"data-test-value",required:!1,type:{name:"any"}},appendLabel:{defaultValue:null,description:"append to label end",name:"appendLabel",required:!1,type:{name:"string | number | boolean | Element"}},error:{defaultValue:null,description:"error message",name:"error",required:!1,type:{name:"string"}},allowClear:{defaultValue:null,description:"show clear button",name:"allowClear",required:!1,type:{name:"boolean"}},onEnterPressed:{defaultValue:null,description:"on enter press callback",name:"onEnterPressed",required:!1,type:{name:"KeyboardEventHandler"}},decorateStart:{defaultValue:null,description:"",name:"decorateStart",required:!1,type:{name:"string | number | boolean | Element"}},decorateEnd:{defaultValue:null,description:"",name:"decorateEnd",required:!1,type:{name:"string | number | boolean | Element"}},invalid:{defaultValue:null,description:"invalid value input",name:"invalid",required:!1,type:{name:"boolean"}},labelWidth:{defaultValue:null,description:"label width for inline",name:"labelWidth",required:!1,type:{name:"string"}},multiple:{defaultValue:null,description:"is multiple selection",name:"multiple",required:!1,type:{name:"boolean"}},value:{defaultValue:null,description:"selected value",name:"value",required:!1,type:{name:"string | string[]"}},onSelect:{defaultValue:null,description:"select handler",name:"onSelect",required:!1,type:{name:"((option: T) => void) | ((option: T[]) => void)"}},onChange:{defaultValue:null,description:"change handler",name:"onChange",required:!1,type:{name:"((value?: string) => void) | ((value?: string[]) => void) | undefined"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/form/src/select/Select.tsx#Select"]={docgenInfo:Select.__docgenInfo,name:"Select",path:"packages/form/src/select/Select.tsx#Select"})}catch(__react_docgen_typescript_loader_error){}const Field=({children,vertical,noOutline,plain,...rest})=>(0,jsx_runtime.jsx)(FieldWrapper,{...rest,children:(0,jsx_runtime.jsx)("div",{className:classnames_default()(internal_Field_module.fieldGroup,!plain&&!noOutline&&"outline",!plain&&"bg-base","flex-1 rounded",!vertical&&"flex flex-nowrap"),children:(0,dist_esm.t_)(children,(child=>(0,react.cloneElement)(child,{"data-inner":!0})))})});try{Field.displayName="Field",Field.__docgenInfo={description:"",displayName:"Field",props:{label:{defaultValue:null,description:"input label",name:"label",required:!1,type:{name:"string"}},appendLabel:{defaultValue:null,description:"append to label end",name:"appendLabel",required:!1,type:{name:"string | number | boolean | Element"}},info:{defaultValue:null,description:"info label at bottom",name:"info",required:!1,type:{name:"string"}},required:{defaultValue:null,description:"required",name:"required",required:!1,type:{name:"boolean"}},noOutline:{defaultValue:null,description:"hide outline",name:"noOutline",required:!1,type:{name:"boolean"}},width:{defaultValue:null,description:"field width",name:"width",required:!1,type:{name:"string | number"}},inline:{defaultValue:null,description:"inline label and input",name:"inline",required:!1,type:{name:"boolean"}},labelWidth:{defaultValue:null,description:"label width for inline",name:"labelWidth",required:!1,type:{name:"string"}},plain:{defaultValue:null,description:"dont apply bg and outline",name:"plain",required:!1,type:{name:"boolean"}},vertical:{defaultValue:null,description:"",name:"vertical",required:!1,type:{name:"boolean"}},className:{defaultValue:null,description:"css classname(s)",name:"className",required:!1,type:{name:"string"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/form/src/input/Field.tsx#Field"]={docgenInfo:Field.__docgenInfo,name:"Field",path:"packages/form/src/input/Field.tsx#Field"})}catch(__react_docgen_typescript_loader_error){}const FileField=({uploadHandler,inline,label,accept,multiple=!1,value,...rest})=>{const{pending,files,list,upload,remove}=useFileUploader((async(data,config)=>await(uploadHandler?.(data,config))),value,multiple);return(0,jsx_runtime.jsxs)(react.Fragment,{children:[(0,jsx_runtime.jsxs)(Field,{plain:!0,inline,label,className:"inline-block",children:[(0,jsx_runtime.jsx)(HiddenInput,{hiddenValue:multiple?list:list?.[0],...rest}),(0,jsx_runtime.jsx)("span",{children:(0,jsx_runtime.jsx)(esm.$n,{badge:pending>0?`${pending}`:void 0,"data-ref":"filebtn",children:(0,jsx_runtime.jsxs)(react.Fragment,{children:[(0,jsx_runtime.jsx)("span",{children:"Add file"}),(0,jsx_runtime.jsx)("input",{type:"file",accept,multiple,className:"absolute inset-0 opacity-0 z-5",onChange:e=>[upload(e.target.files),e.target.value=""]})]})})})]}),(0,jsx_runtime.jsx)("br",{}),(0,jsx_runtime.jsx)("div",{className:"bg-alternate",children:files.map(((file,idx)=>(0,jsx_runtime.jsxs)("div",{className:"px-2 py-1",children:[(0,jsx_runtime.jsxs)("div",{className:"flex flex-nowrap gap-1 items-start",children:[(0,jsx_runtime.jsxs)("div",{className:"flex-1 truncate pe-2",children:[file.filename,(0,jsx_runtime.jsx)("br",{}),(0,jsx_runtime.jsx)("span",{className:"text-xs",children:dist_esm.fO.mime(file.mime)}),(0,jsx_runtime.jsx)("span",{className:"text-xs px-1",children:dist_esm.yL.bytes(file.size)})]}),(0,jsx_runtime.jsx)("div",{className:"flex-initial truncate px-2",children:file.error&&(0,jsx_runtime.jsx)("span",{className:"text-danger-600",children:file.error})}),file.progress&&(0,jsx_runtime.jsx)(esm.In,{icon:"mdi mdi-stop-circle",bg:"danger",color:"white",size:"sm",className:"p-[2px]","aria-label":"abort",onClick:()=>file.abort?.()}),!file.progress&&(0,jsx_runtime.jsx)(esm.In,{icon:"mdi mdi-trash-can",color:"danger",size:"sm","aria-label":"remove",onClick:()=>remove(file.key)})]}),file.progress&&(0,jsx_runtime.jsx)(esm.z2,{animate:!0,value:100*file.progress,size:"xxs"})]},idx)))})]})};try{FileField.displayName="FileField",FileField.__docgenInfo={description:"",displayName:"FileField",props:{datatype:{defaultValue:null,description:"",name:"datatype",required:!1,type:{name:"enum",value:[{value:'"file"'}]}},accept:{defaultValue:null,description:"",name:"accept",required:!1,type:{name:"string"}},id:{defaultValue:null,description:"",name:"id",required:!1,type:{name:"string"}},label:{defaultValue:null,description:"",name:"label",required:!1,type:{name:"string"}},required:{defaultValue:null,description:"",name:"required",required:!1,type:{name:"boolean"}},multiple:{defaultValue:{value:"false"},description:"",name:"multiple",required:!1,type:{name:"boolean"}},defaultValue:{defaultValue:null,description:"",name:"defaultValue",required:!1,type:{name:"any"}},value:{defaultValue:null,description:"",name:"value",required:!1,type:{name:"any"}},inline:{defaultValue:null,description:"",name:"inline",required:!1,type:{name:"boolean"}},fileUrl:{defaultValue:null,description:"",name:"fileUrl",required:!1,type:{name:"((path: string) => string)"}},uploadHandler:{defaultValue:null,description:"",name:"uploadHandler",required:!0,type:{name:"UploadHandler"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/form/src/builder/FileField.tsx#FileField"]={docgenInfo:FileField.__docgenInfo,name:"FileField",path:"packages/form/src/builder/FileField.tsx#FileField"})}catch(__react_docgen_typescript_loader_error){}const FormField=({id,label,required,inline,prefix,autoFocus,defaultValue,fileUrl,uploadHandler,...rest})=>{const{t}=(0,es.Bd)(),fieldName=(0,react.useMemo)((()=>[prefix,id].filter(Boolean).join(".")),[id,prefix]),E=(0,react.useMemo)((()=>"number"===rest.datatype||"decimal"===rest.datatype?Number_Number:"range"===rest.datatype?Range:"boolean"===rest.datatype?Switch:"text"===rest.datatype?Textarea:"color"===rest.datatype?ColorInput:"string"===rest.datatype&&rest.options?Select:Input),[rest.datatype]),props=(0,react.useMemo)((()=>"number"===rest.datatype?{min:rest.min,max:rest.max,step:rest.step??1}:"decimal"===rest.datatype?{min:rest.min,max:rest.max,step:rest.step??.1}:"range"===rest.datatype?{min:rest.min??1,max:rest.max??99,step:rest.step??1,showValue:!0,showLabels:!0}:"text"===rest.datatype?{rows:3}:"color"===rest.datatype?{showPicker:!0}:"string"===rest.datatype&&rest.options?{options:rest.options,multiple:rest.multiple,searchable:!0}:{}),[rest]);return"avatar"===rest.datatype?uploadHandler&&(0,jsx_runtime.jsx)(Controller,{name:fieldName,children:(0,jsx_runtime.jsx)(AvatarInput,{uploadHandler,fileUrl,name:fieldName})}):"file"===rest.datatype?uploadHandler&&(0,jsx_runtime.jsx)(Controller,{name:fieldName,children:(0,jsx_runtime.jsx)(FileField,{uploadHandler,inline,label,id,...rest})}):rest.multiple&&!("options"in rest)?(0,jsx_runtime.jsx)(ArrayInput,{name:fieldName,label:t(label,label),required,onAdd:()=>"",children:(0,jsx_runtime.jsx)(Controller,{children:(0,jsx_runtime.jsx)(E,{...props})})}):(0,jsx_runtime.jsx)(Controller,{name:fieldName,children:(0,jsx_runtime.jsx)(E,{...props,autoFocus,label:t(label,label),placeholder:t(label,label),required,inline})})};try{FormField.displayName="FormField",FormField.__docgenInfo={description:"",displayName:"FormField",props:{datatype:{defaultValue:null,description:"",name:"datatype",required:!0,type:{name:"enum",value:[{value:'"string"'},{value:'"number"'},{value:'"boolean"'},{value:'"text"'},{value:'"color"'},{value:'"avatar"'},{value:'"decimal"'},{value:'"file"'},{value:'"range"'}]}},id:{defaultValue:null,description:"",name:"id",required:!0,type:{name:"string"}},label:{defaultValue:null,description:"",name:"label",required:!0,type:{name:"string"}},required:{defaultValue:null,description:"",name:"required",required:!1,type:{name:"boolean"}},multiple:{defaultValue:null,description:"",name:"multiple",required:!1,type:{name:"boolean"}},defaultValue:{defaultValue:null,description:"",name:"defaultValue",required:!1,type:{name:"any"}},inline:{defaultValue:null,description:"",name:"inline",required:!1,type:{name:"boolean"}},prefix:{defaultValue:null,description:"",name:"prefix",required:!1,type:{name:"string"}},autoFocus:{defaultValue:null,description:"",name:"autoFocus",required:!1,type:{name:"boolean"}},fileUrl:{defaultValue:null,description:"",name:"fileUrl",required:!1,type:{name:"((path: string) => string)"}},uploadHandler:{defaultValue:null,description:"",name:"uploadHandler",required:!1,type:{name:"UploadHandler"}},options:{defaultValue:null,description:"",name:"options",required:!1,type:{name:"string[]"}},regex:{defaultValue:null,description:"",name:"regex",required:!1,type:{name:"string"}},identifierType:{defaultValue:null,description:"",name:"identifierType",required:!1,type:{name:"string"}},min:{defaultValue:null,description:"",name:"min",required:!1,type:{name:"number"}},max:{defaultValue:null,description:"",name:"max",required:!1,type:{name:"number"}},step:{defaultValue:null,description:"",name:"step",required:!1,type:{name:"number"}},accept:{defaultValue:null,description:"",name:"accept",required:!1,type:{name:"string"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/form/src/builder/FormField.tsx#FormField"]={docgenInfo:FormField.__docgenInfo,name:"FormField",path:"packages/form/src/builder/FormField.tsx#FormField"})}catch(__react_docgen_typescript_loader_error){}const makeYupField=field=>{let yupField=dist_esm.hg.string();if("schema"===field.datatype){const child=Object.fromEntries(field.schema.map((field=>[field.id,makeYupField(field)])));yupField=dist_esm.hg.object(child)}return"boolean"===field.datatype&&(yupField=dist_esm.hg.boolean()),"decimal"!==field.datatype&&"number"!==field.datatype&&"range"!==field.datatype||(yupField=dist_esm.hg.number(),!(0,dist_esm.gD)(field.min)&&(yupField=yupField.min(field.min)),!(0,dist_esm.gD)(field.max)&&(yupField=yupField.max(field.max)),"range"===field.datatype&&(yupField=dist_esm.hg.array(yupField))),"string"===field.datatype&&(field.options&&(yupField=yupField.oneOf(field.options)),field.regex&&(yupField=yupField.matches(new RegExp(field.regex)))),"file"===field.datatype&&(yupField=dist_esm.hg.object({filename:dist_esm.hg.string().required(),path:dist_esm.hg.string().required()}).unknown(!0),field.required&&(yupField=yupField.test("is-empty",{key:"form:yup.empty",values:{path:field.id,label:field.label}},(value=>!(0,dist_esm.Im)(value))))),field.required&&(yupField=yupField.required()),field.multiple&&(yupField=dist_esm.hg.array(yupField),field.required&&(yupField=yupField.required().min(1))),yupField.label(field.label)},useFormBuilder=(schema,options={})=>{const filteredSchema=(0,react.useMemo)((()=>schema.filter?.((schm=>!!schm.id))??[]),[schema]),schemaDef=dist_esm.hg.object(Object.fromEntries(filteredSchema.map((field=>[field.id,makeYupField(field)]))));return{formDef:(0,jsx_runtime.jsx)(react.Fragment,{children:filteredSchema.map(((field,idx)=>(0,jsx_runtime.jsx)("div",{className:"mb-4",children:"schema"===field.datatype?null:(0,jsx_runtime.jsx)(FormField,{...field,autoFocus:0===idx,fileUrl:options.fileUrl,uploadHandler:options.uploadHandler,inline:options.inline,prefix:options.prefix})},field.id)))}),schemaDef}},Checkbox=({ref,label,value,name,checked,invalid,disabled,error,width,icon,iconChecked,onChange,...rest})=>{const[actualValue,setActualValue]=(0,react.useState)(!1),deferred=(0,react.useDeferredValue)(!!checked),iconOn=(0,react.useMemo)((()=>iconChecked??icon??esm.OO.checkboxOn),[icon,iconChecked]),iconOff=(0,react.useMemo)((()=>icon??esm.OO.checkboxOff),[icon]);(0,react.useEffect)((()=>{setActualValue(deferred)}),[deferred]);const handleChange=(0,react.useCallback)((e=>{setActualValue(e?.target.checked??!1),onChange?.(e?.target.checked??!1)}),[onChange,value]);return(0,jsx_runtime.jsxs)("label",{className:classnames_default()(invalid?"ring-danger-500":"ring-primary-500",disabled?"opacity-50 cursor-not-allowed":" opacity-85 hover:opacity-100 cursor-pointer","inline-flex gap-1 py-1 items-center relative rounded ring-offset-2 has-[:focus-visible]:ring-1"),style:{width},children:[(0,jsx_runtime.jsx)("input",{className:classnames_default()("appearance-none absolute opacity-0 inset-0 bg-transparent border-none outline-none ring-0"),"aria-invalid":invalid,"aria-disabled":disabled,disabled,"aria-errormessage":error,type:"checkbox",ref,size:1,tabIndex:0,name,autoComplete:"off",checked:actualValue,onChange:handleChange,...rest}),(0,jsx_runtime.jsx)(esm.In,{className:classnames_default()("p-0.5",actualValue&&icon&&!iconChecked&&"bg-primary-500 text-white"),size:"1.25em",color:invalid?"danger":"primary",icon:actualValue?iconOn:iconOff}),(0,jsx_runtime.jsx)(ErrorIcon,{invalid,error}),label&&(0,jsx_runtime.jsx)("span",{className:"flex-initial leading-none truncate",children:label})]})};try{Checkbox.displayName="Checkbox",Checkbox.__docgenInfo={description:"",displayName:"Checkbox",props:{label:{defaultValue:null,description:"checkbox label",name:"label",required:!1,type:{name:"string | Element"}},checked:{defaultValue:null,description:"checked",name:"checked",required:!1,type:{name:"boolean"}},value:{defaultValue:null,description:"value",name:"value",required:!1,type:{name:"string | number"}},onChange:{defaultValue:null,description:"on checked change",name:"onChange",required:!1,type:{name:"((checked: string | number | boolean) => void)"}},disabled:{defaultValue:null,description:"disabled input",name:"disabled",required:!1,type:{name:"boolean"}},invalid:{defaultValue:null,description:"invalid value input",name:"invalid",required:!1,type:{name:"boolean"}},error:{defaultValue:null,description:"error message",name:"error",required:!1,type:{name:"string"}},width:{defaultValue:null,description:"field width",name:"width",required:!1,type:{name:"string | number"}},icon:{defaultValue:null,description:"cutom checkbox icon",name:"icon",required:!1,type:{name:"string"}},iconChecked:{defaultValue:null,description:"cutom checkbox checked icon",name:"iconChecked",required:!1,type:{name:"string"}},name:{defaultValue:null,description:"",name:"name",required:!1,type:{name:"string"}},ref:{defaultValue:null,description:"",name:"ref",required:!1,type:{name:"Ref"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/form/src/input/Checkbox.tsx#Checkbox"]={docgenInfo:Checkbox.__docgenInfo,name:"Checkbox",path:"packages/form/src/input/Checkbox.tsx#Checkbox"})}catch(__react_docgen_typescript_loader_error){}var File_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/form/src/input/File.module.css"),File_module_options={};File_module_options.styleTagTransform=styleTagTransform_default(),File_module_options.setAttributes=setAttributesWithoutAttributes_default(),File_module_options.insert=insertBySelector_default().bind(null,"head"),File_module_options.domAPI=styleDomAPI_default(),File_module_options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(File_module.A,File_module_options);const input_File_module=File_module.A&&File_module.A.locals?File_module.A.locals:void 0,FileExists=prop=>{const[kill,setKill]=(0,react.useState)(!1);return(0,react.useEffect)((()=>{setTimeout((()=>{setKill(!0)}),2e3)})),kill?null:(0,jsx_runtime.jsxs)("div",{className:"bg-danger-500 text-white px-2 rounded text-xs",children:["File [",prop.name,"] already added to list"]})},FileInput=({ref,value,invalid,readOnly,disabled,required,placeholder,autoFocus,error,name,accept,showList=!0,multiple,onChange,onEnterPressed,...rest})=>{const listRef=(0,react.useRef)([]),inputRef=(0,react.useRef)(null),[exists,setExists]=(0,react.useState)([]),[actualValue,setActualValue]=(0,react.useState)(),deferred=(0,react.useDeferredValue)(value),handleEnterPressed=(0,react.useMemo)((()=>handleEnter(onEnterPressed)),[onEnterPressed]);(0,react.useEffect)((()=>{setActualValue(deferred)}),[deferred]);const handleChange=(0,react.useCallback)((e=>{if(setExists([]),multiple)if(e?.target.files){if(showList){const exists=[];Array.from(e.target.files).forEach((file=>{listRef.current.find((ef=>ef.name===file.name))?exists.push(file.name):listRef.current.push(file)})),setActualValue(listRef.current.slice()),setExists(exists)}e.target.value="",onChange?.(listRef.current)}else listRef.current=[],setActualValue(listRef.current),onChange?.(listRef.current);else setActualValue(e?.target.files?.item(0)),onChange?.(e?.target.files?.item(0)??void 0),!e&&inputRef.current&&(inputRef.current.value="")}),[onChange,multiple,showList]),removeFile=(0,react.useCallback)((idx=>{listRef.current.splice(idx,1),setActualValue(listRef.current),onChange?.(listRef.current)}),[onChange]);return(0,jsx_runtime.jsx)(InputWrapper,{showClear:!(0,dist_esm.Im)(actualValue),onClear:handleChange,invalid,readOnly,disabled,required,error,listing:showList&&(0,jsx_runtime.jsxs)(react.Fragment,{children:[(0,dist_esm.cy)(actualValue)&&actualValue?.map?.(((file,idx)=>(0,jsx_runtime.jsxs)("div",{className:"flex gap-1 items-center text-sm text-dimmed py-1 px-2",children:[(0,jsx_runtime.jsxs)("div",{className:"flex-1 truncate",children:[(0,jsx_runtime.jsx)("div",{className:"font-medium",children:file.name}),(0,jsx_runtime.jsx)("span",{className:"text-xs",children:dist_esm.fO.mime(file.type)})]}),(0,jsx_runtime.jsx)("span",{className:"flex-content text-end w-24",children:dist_esm.yL.bytes(file.size)}),(0,jsx_runtime.jsx)(esm.In,{className:"cursor-pointer opacity-30 hover:opacity-80",icon:esm.OO.close,onClick:()=>{removeFile(idx)}})]},idx))),exists.map((name=>(0,jsx_runtime.jsx)(FileExists,{name},(new Date).getTime())))]}),...rest,children:(0,jsx_runtime.jsx)("input",{className:classnames_default()("appearance-none bg-transparent py-1 px-2 flex-1 border-none outline-none ring-0",input_File_module.fileInput,(0,dist_esm.cy)(actualValue)&&actualValue?.length&&"text-[var(--fabric-bg)]"),"aria-invalid":invalid,"aria-disabled":disabled,"aria-readonly":readOnly,"aria-errormessage":error,placeholder,disabled,readOnly,size:1,type:"file",multiple,"data-testid":name,name,accept,ref:(0,dist_esm.Px)(ref,inputRef),autoComplete:"off",autoFocus,onChange:handleChange,onKeyDown:handleEnterPressed})})};try{FileInput.displayName="FileInput",FileInput.__docgenInfo={description:"",displayName:"FileInput",props:{multiple:{defaultValue:null,description:"allow selecting mutiple files",name:"multiple",required:!1,type:{name:"boolean"}},showList:{defaultValue:{value:"true"},description:"show selected file list",name:"showList",required:!1,type:{name:"boolean"}},accept:{defaultValue:null,description:"acceptable file types",name:"accept",required:!1,type:{name:"string"}},value:{defaultValue:null,description:"value",name:"value",required:!1,type:{name:"any"}},onChange:{defaultValue:null,description:"change handler",name:"onChange",required:!1,type:{name:"((value?: any) => void)"}},onFocus:{defaultValue:null,description:"on focus event handler",name:"onFocus",required:!1,type:{name:"FocusEventHandler"}},onBlur:{defaultValue:null,description:"on blur event handler",name:"onBlur",required:!1,type:{name:"FocusEventHandler"}},onEnterPressed:{defaultValue:null,description:"on enter press callback",name:"onEnterPressed",required:!1,type:{name:"KeyboardEventHandler"}},name:{defaultValue:null,description:"input name",name:"name",required:!1,type:{name:"string"}},label:{defaultValue:null,description:"input label",name:"label",required:!1,type:{name:"string"}},placeholder:{defaultValue:null,description:"input placeholder",name:"placeholder",required:!1,type:{name:"string"}},appendLabel:{defaultValue:null,description:"append to label end",name:"appendLabel",required:!1,type:{name:"string | number | boolean | Element"}},decorateStart:{defaultValue:null,description:"",name:"decorateStart",required:!1,type:{name:"string | number | boolean | Element"}},decorateEnd:{defaultValue:null,description:"",name:"decorateEnd",required:!1,type:{name:"string | number | boolean | Element"}},info:{defaultValue:null,description:"info label at bottom",name:"info",required:!1,type:{name:"string"}},required:{defaultValue:null,description:"required",name:"required",required:!1,type:{name:"boolean"}},disabled:{defaultValue:null,description:"disabled input",name:"disabled",required:!1,type:{name:"boolean"}},readOnly:{defaultValue:null,description:"read-only input",name:"readOnly",required:!1,type:{name:"boolean"}},autoFocus:{defaultValue:null,description:"auto focus when rendered",name:"autoFocus",required:!1,type:{name:"boolean"}},allowClear:{defaultValue:null,description:"show clear button",name:"allowClear",required:!1,type:{name:"boolean"}},invalid:{defaultValue:null,description:"invalid value input",name:"invalid",required:!1,type:{name:"boolean"}},error:{defaultValue:null,description:"error message",name:"error",required:!1,type:{name:"string"}},width:{defaultValue:null,description:"field width",name:"width",required:!1,type:{name:"string | number"}},inline:{defaultValue:null,description:"inline label and input",name:"inline",required:!1,type:{name:"boolean"}},labelWidth:{defaultValue:null,description:"label width for inline",name:"labelWidth",required:!1,type:{name:"string"}},"data-testid":{defaultValue:null,description:"data attribute for test id",name:"data-testid",required:!1,type:{name:"string"}},"data-test-value":{defaultValue:null,description:"data attribute for test value",name:"data-test-value",required:!1,type:{name:"any"}},ref:{defaultValue:null,description:"",name:"ref",required:!1,type:{name:"Ref"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/form/src/input/File.tsx#FileInput"]={docgenInfo:FileInput.__docgenInfo,name:"FileInput",path:"packages/form/src/input/File.tsx#FileInput"})}catch(__react_docgen_typescript_loader_error){}const Password=({ref,value,name,strength,invalid,readOnly,disabled,required,placeholder,autoFocus,showToggle,onChange,onEnterPressed,...rest})=>{const{t}=(0,es.Bd)("form"),[show,setShow]=(0,react.useState)(!1),[actualValue,setActualValue]=(0,react.useState)(""),deferred=(0,react.useDeferredValue)(value),handleEnterPressed=(0,react.useMemo)((()=>handleEnter(onEnterPressed)),[onEnterPressed]);(0,react.useEffect)((()=>{setActualValue(deferred??"")}),[deferred]);const handleChange=(0,react.useCallback)((e=>{const value=e?.target.value;setActualValue(value??""),onChange?.(value??void 0)}),[onChange]);return(0,jsx_runtime.jsxs)(InputWrapper,{showClear:!!actualValue,onClear:handleChange,invalid,readOnly,disabled,required,...rest,decorateEnd:showToggle&&(0,jsx_runtime.jsx)(esm.m_,{color:"warning",content:t(show?"password.hide":"password.show"),children:(0,jsx_runtime.jsx)(esm.$n,{tabIndex:-1,color:"warning",variant:"link","aria-label":t(show?"password.hide":"password.show"),icon:show?esm.OO.eyeOff:esm.OO.eye,onClick:()=>setShow(!show)})}),children:[(0,jsx_runtime.jsx)("input",{className:"appearance-none bg-transparent py-1 px-2 flex-1 border-none outline-none ring-0","aria-invalid":invalid,"aria-disabled":disabled,"aria-readonly":readOnly,placeholder,disabled,readOnly,"data-testid":name,name,size:1,type:show?"text":"password",ref,autoComplete:"off",autoFocus,value:actualValue,onChange:handleChange,onKeyDown:handleEnterPressed}),!!strength&&(0,jsx_runtime.jsx)("div",{className:classnames_default()("absolute bottom-px h-[3px] inset-x-0 after:block after:h-full after:bg-dimmed","ltr:bg-gradient-to-r rtl:bg-gradient-to-l from-danger-500 via-marigold-500 to-jade-500"),style:{paddingInlineStart:(strength>1?100:100*strength)+"%"}})]})};try{Password.displayName="Password",Password.__docgenInfo={description:"",displayName:"Password",props:{showToggle:{defaultValue:null,description:"show password toggle",name:"showToggle",required:!1,type:{name:"boolean"}},strength:{defaultValue:null,description:"password strength meter (0-1)",name:"strength",required:!1,type:{name:"number"}},value:{defaultValue:null,description:"value",name:"value",required:!1,type:{name:"string"}},onChange:{defaultValue:null,description:"change handler",name:"onChange",required:!1,type:{name:"((value?: string) => void)"}},onFocus:{defaultValue:null,description:"on focus event handler",name:"onFocus",required:!1,type:{name:"FocusEventHandler"}},onBlur:{defaultValue:null,description:"on blur event handler",name:"onBlur",required:!1,type:{name:"FocusEventHandler"}},onEnterPressed:{defaultValue:null,description:"on enter press callback",name:"onEnterPressed",required:!1,type:{name:"KeyboardEventHandler"}},name:{defaultValue:null,description:"input name",name:"name",required:!1,type:{name:"string"}},label:{defaultValue:null,description:"input label",name:"label",required:!1,type:{name:"string"}},placeholder:{defaultValue:null,description:"input placeholder",name:"placeholder",required:!1,type:{name:"string"}},appendLabel:{defaultValue:null,description:"append to label end",name:"appendLabel",required:!1,type:{name:"string | number | boolean | Element"}},decorateStart:{defaultValue:null,description:"",name:"decorateStart",required:!1,type:{name:"string | number | boolean | Element"}},decorateEnd:{defaultValue:null,description:"",name:"decorateEnd",required:!1,type:{name:"string | number | boolean | Element"}},info:{defaultValue:null,description:"info label at bottom",name:"info",required:!1,type:{name:"string"}},required:{defaultValue:null,description:"required",name:"required",required:!1,type:{name:"boolean"}},disabled:{defaultValue:null,description:"disabled input",name:"disabled",required:!1,type:{name:"boolean"}},readOnly:{defaultValue:null,description:"read-only input",name:"readOnly",required:!1,type:{name:"boolean"}},autoFocus:{defaultValue:null,description:"auto focus when rendered",name:"autoFocus",required:!1,type:{name:"boolean"}},allowClear:{defaultValue:null,description:"show clear button",name:"allowClear",required:!1,type:{name:"boolean"}},invalid:{defaultValue:null,description:"invalid value input",name:"invalid",required:!1,type:{name:"boolean"}},error:{defaultValue:null,description:"error message",name:"error",required:!1,type:{name:"string"}},width:{defaultValue:null,description:"field width",name:"width",required:!1,type:{name:"string | number"}},inline:{defaultValue:null,description:"inline label and input",name:"inline",required:!1,type:{name:"boolean"}},labelWidth:{defaultValue:null,description:"label width for inline",name:"labelWidth",required:!1,type:{name:"string"}},"data-testid":{defaultValue:null,description:"data attribute for test id",name:"data-testid",required:!1,type:{name:"string"}},"data-test-value":{defaultValue:null,description:"data attribute for test value",name:"data-test-value",required:!1,type:{name:"any"}},ref:{defaultValue:null,description:"",name:"ref",required:!1,type:{name:"Ref"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/form/src/input/Password.tsx#Password"]={docgenInfo:Password.__docgenInfo,name:"Password",path:"packages/form/src/input/Password.tsx#Password"})}catch(__react_docgen_typescript_loader_error){}const Radio=({ref,name,label,value,invalid,disabled,error,width,icon,iconChecked,onChange,...rest})=>{const iconOn=(0,react.useMemo)((()=>iconChecked??icon??esm.OO.radioOn),[icon,iconChecked]),iconOff=(0,react.useMemo)((()=>icon??esm.OO.radioOff),[icon]),handleChange=(0,react.useCallback)((e=>{e?.target.checked&&value&&onChange?.(value)}),[onChange,value]);return(0,jsx_runtime.jsxs)("label",{className:classnames_default()(invalid?"ring-danger-500":"ring-primary-500",disabled?"opacity-50 cursor-not-allowed":"hover:opacity-100 cursor-pointer","inline-flex gap-1 py-1 items-center relative cursor-pointer opacity-85 rounded ring-offset-2 has-[:focus-visible]:ring-1"),style:{width},children:[(0,jsx_runtime.jsx)("input",{className:classnames_default()("appearance-none absolute peer opacity-0 inset-0 bg-transparent border-none outline-none ring-0"),"aria-disabled":disabled,disabled,type:"radio",ref,size:1,name,value,autoComplete:"off",onChange:handleChange,...rest}),(0,jsx_runtime.jsx)(esm.In,{className:classnames_default()("p-0.5 hidden peer-checked:inline-block",icon&&!iconChecked&&"bg-primary-500 text-white"),color:invalid?"danger":"primary",size:"1.25em",icon:iconOn}),(0,jsx_runtime.jsx)(esm.In,{className:classnames_default()("p-0.5 peer-checked:hidden"),color:invalid?"danger":"primary",size:"1.25em",icon:iconOff}),label&&(0,jsx_runtime.jsx)("span",{className:"flex-initial leading-none truncate",children:label})]})};try{Radio.displayName="Radio",Radio.__docgenInfo={description:"",displayName:"Radio",props:{name:{defaultValue:null,description:"",name:"name",required:!1,type:{name:"string"}},label:{defaultValue:null,description:"radio label",name:"label",required:!1,type:{name:"string | Element"}},value:{defaultValue:null,description:"value",name:"value",required:!0,type:{name:"string | number"}},onChange:{defaultValue:null,description:"on checked change",name:"onChange",required:!1,type:{name:"((value: string) => void) | ((value: number) => void)"}},disabled:{defaultValue:null,description:"disabled input",name:"disabled",required:!1,type:{name:"boolean"}},invalid:{defaultValue:null,description:"invalid value input",name:"invalid",required:!1,type:{name:"boolean"}},error:{defaultValue:null,description:"error message",name:"error",required:!1,type:{name:"string"}},width:{defaultValue:null,description:"field width",name:"width",required:!1,type:{name:"string | number"}},icon:{defaultValue:null,description:"cutom checkbox icon",name:"icon",required:!1,type:{name:"string"}},iconChecked:{defaultValue:null,description:"cutom checkbox checked icon",name:"iconChecked",required:!1,type:{name:"string"}},ref:{defaultValue:null,description:"",name:"ref",required:!1,type:{name:"Ref"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/form/src/input/Radio.tsx#Radio"]={docgenInfo:Radio.__docgenInfo,name:"Radio",path:"packages/form/src/input/Radio.tsx#Radio"})}catch(__react_docgen_typescript_loader_error){}const RadioGroup=({children,name,className,optionWidth,onChange,...rest})=>(0,jsx_runtime.jsx)(FieldWrapper,{...rest,children:(0,jsx_runtime.jsx)("div",{className,children:(0,dist_esm.t_)(children,(child=>(0,react.cloneElement)(child,{name,onChange,width:optionWidth})))})});try{RadioGroup.displayName="RadioGroup",RadioGroup.__docgenInfo={description:"",displayName:"RadioGroup",props:{label:{defaultValue:null,description:"input label",name:"label",required:!1,type:{name:"string"}},appendLabel:{defaultValue:null,description:"append to label end",name:"appendLabel",required:!1,type:{name:"string | number | boolean | Element"}},info:{defaultValue:null,description:"field info",name:"info",required:!1,type:{name:"string"}},width:{defaultValue:null,description:"field width",name:"width",required:!1,type:{name:"string | number"}},inline:{defaultValue:null,description:"inline label and input",name:"inline",required:!1,type:{name:"boolean"}},labelWidth:{defaultValue:null,description:"label width for inline",name:"labelWidth",required:!1,type:{name:"string"}},optionWidth:{defaultValue:null,description:"label width for inline",name:"optionWidth",required:!1,type:{name:"string"}},name:{defaultValue:null,description:"field name",name:"name",required:!1,type:{name:"string"}},vertical:{defaultValue:null,description:"vertical orientation",name:"vertical",required:!1,type:{name:"boolean"}},onChange:{defaultValue:null,description:"change handler",name:"onChange",required:!1,type:{name:"((value: AnyObject) => void)"}},className:{defaultValue:null,description:"css classname(s)",name:"className",required:!1,type:{name:"string"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/form/src/input/RadioGroup.tsx#RadioGroup"]={docgenInfo:RadioGroup.__docgenInfo,name:"RadioGroup",path:"packages/form/src/input/RadioGroup.tsx#RadioGroup"})}catch(__react_docgen_typescript_loader_error){}const Search=({ref,value,name,invalid,readOnly,disabled,required,searching,placeholder,autoFocus,allowClear=!0,searchOnChange=!0,decorateEnd,decorateStart,onSearch,onChange,onEnterPressed,...rest})=>{const[actualValue,setActualValue]=(0,react.useState)(""),deferred=(0,react.useDeferredValue)(value),refValue=(0,react.useRef)(""),handleSearch=(0,esm.d7)((()=>onSearch?.(refValue.current)),[onSearch],250),handleEnterPressed=(0,react.useMemo)((()=>handleEnter(handleSearch)),[handleSearch]);(0,react.useEffect)((()=>{setActualValue(deferred??"")}),[deferred]);const handleChange=(0,react.useCallback)((e=>{const value=e?.target.value;refValue.current=value??"",setActualValue(value??""),onChange?.(value??void 0),searchOnChange&&handleSearch()}),[onChange,searchOnChange,handleSearch]);return(0,jsx_runtime.jsx)(InputWrapper,{showClear:!!actualValue,onClear:handleChange,allowClear,invalid,readOnly,disabled,required,decorateStart,decorateEnd:(0,jsx_runtime.jsxs)(react.Fragment,{children:[decorateEnd,searching&&(0,jsx_runtime.jsx)(esm.In,{className:"p-2",icon:esm.OO.spinner,animate:"spin"}),!searching&&(0,jsx_runtime.jsx)(esm.$n,{tabIndex:-1,variant:"link","aria-label":"search",disabled:!actualValue,icon:esm.OO.search,onClick:handleSearch})]}),...rest,children:(0,jsx_runtime.jsx)("input",{className:"appearance-none bg-transparent py-1 px-2 flex-1 border-none outline-none ring-0","aria-invalid":invalid,"aria-disabled":disabled,"aria-readonly":readOnly,placeholder,disabled,readOnly,size:1,"data-testid":name,name,type:"search",ref,autoComplete:"off",autoFocus,value:actualValue,onChange:handleChange,onKeyDown:handleEnterPressed})})};try{Search.displayName="Search",Search.__docgenInfo={description:"",displayName:"Search",props:{searching:{defaultValue:null,description:"is searching",name:"searching",required:!1,type:{name:"boolean"}},searchOnChange:{defaultValue:{value:"true"},description:"search on value change",name:"searchOnChange",required:!1,type:{name:"boolean"}},onSearch:{defaultValue:null,description:"search handler",name:"onSearch",required:!1,type:{name:"((query?: string) => void)"}},value:{defaultValue:null,description:"value",name:"value",required:!1,type:{name:"string"}},onChange:{defaultValue:null,description:"change handler",name:"onChange",required:!1,type:{name:"((value?: string) => void)"}},onFocus:{defaultValue:null,description:"on focus event handler",name:"onFocus",required:!1,type:{name:"FocusEventHandler"}},onBlur:{defaultValue:null,description:"on blur event handler",name:"onBlur",required:!1,type:{name:"FocusEventHandler"}},onEnterPressed:{defaultValue:null,description:"on enter press callback",name:"onEnterPressed",required:!1,type:{name:"KeyboardEventHandler"}},name:{defaultValue:null,description:"input name",name:"name",required:!1,type:{name:"string"}},label:{defaultValue:null,description:"input label",name:"label",required:!1,type:{name:"string"}},placeholder:{defaultValue:null,description:"input placeholder",name:"placeholder",required:!1,type:{name:"string"}},appendLabel:{defaultValue:null,description:"append to label end",name:"appendLabel",required:!1,type:{name:"string | number | boolean | Element"}},decorateStart:{defaultValue:null,description:"",name:"decorateStart",required:!1,type:{name:"string | number | boolean | Element"}},decorateEnd:{defaultValue:null,description:"",name:"decorateEnd",required:!1,type:{name:"string | number | boolean | Element"}},info:{defaultValue:null,description:"info label at bottom",name:"info",required:!1,type:{name:"string"}},required:{defaultValue:null,description:"required",name:"required",required:!1,type:{name:"boolean"}},disabled:{defaultValue:null,description:"disabled input",name:"disabled",required:!1,type:{name:"boolean"}},readOnly:{defaultValue:null,description:"read-only input",name:"readOnly",required:!1,type:{name:"boolean"}},autoFocus:{defaultValue:null,description:"auto focus when rendered",name:"autoFocus",required:!1,type:{name:"boolean"}},allowClear:{defaultValue:{value:"true"},description:"show clear button",name:"allowClear",required:!1,type:{name:"boolean"}},invalid:{defaultValue:null,description:"invalid value input",name:"invalid",required:!1,type:{name:"boolean"}},error:{defaultValue:null,description:"error message",name:"error",required:!1,type:{name:"string"}},width:{defaultValue:null,description:"field width",name:"width",required:!1,type:{name:"string | number"}},inline:{defaultValue:null,description:"inline label and input",name:"inline",required:!1,type:{name:"boolean"}},labelWidth:{defaultValue:null,description:"label width for inline",name:"labelWidth",required:!1,type:{name:"string"}},"data-testid":{defaultValue:null,description:"data attribute for test id",name:"data-testid",required:!1,type:{name:"string"}},"data-test-value":{defaultValue:null,description:"data attribute for test value",name:"data-test-value",required:!1,type:{name:"any"}},ref:{defaultValue:null,description:"",name:"ref",required:!1,type:{name:"Ref"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/form/src/input/Search.tsx#Search"]={docgenInfo:Search.__docgenInfo,name:"Search",path:"packages/form/src/input/Search.tsx#Search"})}catch(__react_docgen_typescript_loader_error){}const Slider=({error,name,value,step=1,min=0,max=100,height=192,color,vertical,showLabels,showValue,minLabel,maxLabel,ranges,useInfinity,format,invalid,autoFocus,disabled,readOnly,onBlur,onChange,onEnterPressed,onFocus,onSlide,...rest})=>{const[actualValue,setActualValue]=(0,react.useState)(0),[displayValue,setDisplayValue]=(0,react.useState)(!1),deferred=(0,react.useDeferredValue)(value),minValue=(0,react.useMemo)((()=>ranges?.[0]??min),[min,ranges]),maxValue=(0,react.useMemo)((()=>ranges?.slice(-1)[0]??max),[max,ranges]);(0,react.useEffect)((()=>{setActualValue(useInfinity&&deferred===1/0?max:deferred??min)}),[deferred,min,max,useInfinity]),(0,react.useEffect)((()=>{setDisplayValue(!!showValue)}),[showValue]);const handleChange=(0,react.useCallback)((value=>{const val=useInfinity&&value===max?1/0:value;setActualValue(val??0),onChange?.(val??void 0)}),[onChange,max,useInfinity]),minDisplay=(0,react.useMemo)((()=>(0,jsx_runtime.jsx)("span",{className:"text-sm text-dimmed px-2.5 py-px whitespace-nowrap overflow-hidden text-center",children:minLabel??dist_esm.yL.number(min,format)})),[minLabel,min,format]),maxDisplay=(0,react.useMemo)((()=>(0,jsx_runtime.jsx)("span",{className:"text-sm text-dimmed px-2.5 py-px whitespace-nowrap overflow-hidden text-center",children:maxLabel??(useInfinity?"∞":dist_esm.yL.number(max,format))})),[maxLabel,max,format,useInfinity]),rangerInstance=useRanger({values:[actualValue],min:minValue,max:maxValue,stepSize:step,steps:ranges,vertical,tickSize:Math.max((max-min)/10,step),onDrag:val=>onSlide?.(val[0]),onDragStart:()=>setDisplayValue(!0),onDragEnd:()=>setDisplayValue(!!showValue),onChange:values=>handleChange(values[0])});return(0,jsx_runtime.jsx)(InputWrapper,{...rest,noOutline:!0,error,invalid,isDisabled:disabled,isReadOnly:readOnly,canClear:!!actualValue,children:(0,jsx_runtime.jsxs)("div",{className:classnames_default()("flex-auto order-3 flex items-center select-none relative z-0",vertical&&"flex-col w-8",invalid?"text-danger-500":"text-primary-600"),"data-vertical":!!vertical,style:invalid?void 0:{color},children:[showLabels&&(vertical?maxDisplay:minDisplay),(0,jsx_runtime.jsxs)("div",{ref:rangerInstance.trackElRef,className:classnames_default()("flex-auto relative flex items-center",vertical?"my-2 w-8":"mx-2 h-8"),style:{height:vertical?height:void 0},children:[rangerInstance.ticks.map((({value,key,styles})=>(0,jsx_runtime.jsx)("div",{className:classnames_default()("absolute inline-block h-1 w-1 rounded-sm bg-invert opacity-30 leading-[0] z-1",vertical&&"left-1/2 -ml-0.5"),style:styles},key))),rangerInstance.segments.map((({key,styles,active})=>(0,jsx_runtime.jsx)("div",{className:classnames_default()("absolute",active?"bg-current z-1 opacity-90":"bg-invert opacity-5 z-0",vertical?"-bottom-1 left-1/2 -translate-x-1/2":"top-1/2 -translate-y-1/2",!vertical&&(active?"h-1":"h-0.5"),vertical&&(active?"w-1":"w-0.5")),style:styles},key))),rangerInstance.handles.map((({key,value,props,styles,percentage,valueStyles})=>(0,jsx_runtime.jsxs)(react.Fragment,{children:[(0,jsx_runtime.jsx)("button",{type:"button",className:classnames_default()("bg-current cursor-pointer appearance-none h-3 w-3 rounded-full z-3 absolute","focus:ring-2 focus:ring-offset-2",vertical&&"left-1/2 -ml-1.5"),...props,style:styles}),displayValue&&(0,jsx_runtime.jsx)("div",{className:classnames_default()("bg-invert text-invert py-px px-2 text-xs absolute rounded z-[5] whitespace-nowrap","before:absolute before:h-1.5 before:w-1.5 before:z-[-1] before:bg-invert before:top-1/2 before:-translate-y-1/2 before:rotate-45",vertical?"end-0 ltr:translate-x-full rtl:-translate-x-full translate-y-2":"top-1/2 -translate-y-1/2",!vertical&&(percentage>50?"-ms-3 ltr:-translate-x-full rtl:translate-x-full ltr:before:translate-x-[0.125rem] rtl:before:-translate-x-[0.125rem] before:end-0":"ms-3 ltr:before:-translate-x-[0.125rem] rtl:before:translate-x-[0.125rem] before:start-0")),"data-align":percentage>50?"start":"end",style:valueStyles,children:value===1/0||useInfinity&&value===max?maxLabel??"∞":dist_esm.yL.number(value,format)})]},key)))]}),showLabels&&(vertical?minDisplay:maxDisplay)]})})};try{Slider.displayName="Slider",Slider.__docgenInfo={description:"Number slider input",displayName:"Slider",props:{min:{defaultValue:{value:"0"},description:"min value",name:"min",required:!1,type:{name:"number"}},max:{defaultValue:{value:"100"},description:"max value",name:"max",required:!1,type:{name:"number"}},step:{defaultValue:{value:"1"},description:"increment step",name:"step",required:!1,type:{name:"number"}},color:{defaultValue:null,description:"slider color",name:"color",required:!1,type:{name:"string"}},height:{defaultValue:{value:"192"},description:"slider height (only vertical)",name:"height",required:!1,type:{name:"number"}},vertical:{defaultValue:null,description:"vertical orientation",name:"vertical",required:!1,type:{name:"boolean"}},showValue:{defaultValue:null,description:"display value tooltip",name:"showValue",required:!1,type:{name:"boolean"}},showLabels:{defaultValue:null,description:"display min/max labels",name:"showLabels",required:!1,type:{name:"boolean"}},minLabel:{defaultValue:null,description:"custom min label",name:"minLabel",required:!1,type:{name:"string"}},maxLabel:{defaultValue:null,description:"custom max label",name:"maxLabel",required:!1,type:{name:"string"}},ranges:{defaultValue:null,description:"step ranges",name:"ranges",required:!1,type:{name:"number[]"}},useInfinity:{defaultValue:null,description:"infinity max value",name:"useInfinity",required:!1,type:{name:"true"}},format:{defaultValue:null,description:"format value",name:"format",required:!1,type:{name:"string"}},onSlide:{defaultValue:null,description:"slide event handler",name:"onSlide",required:!1,type:{name:"((val: number) => void)"}},info:{defaultValue:null,description:"info label at bottom",name:"info",required:!1,type:{name:"string"}},label:{defaultValue:null,description:"input label",name:"label",required:!1,type:{name:"string"}},name:{defaultValue:null,description:"input name",name:"name",required:!1,type:{name:"string"}},width:{defaultValue:null,description:"field width",name:"width",required:!1,type:{name:"string | number"}},onFocus:{defaultValue:null,description:"on focus event handler",name:"onFocus",required:!1,type:{name:"FocusEventHandler"}},onBlur:{defaultValue:null,description:"on blur event handler",name:"onBlur",required:!1,type:{name:"FocusEventHandler"}},onChange:{defaultValue:null,description:"change handler",name:"onChange",required:!1,type:{name:"((value?: number) => void)"}},autoFocus:{defaultValue:null,description:"auto focus when rendered",name:"autoFocus",required:!1,type:{name:"boolean"}},disabled:{defaultValue:null,description:"disabled input",name:"disabled",required:!1,type:{name:"boolean"}},value:{defaultValue:null,description:"value",name:"value",required:!1,type:{name:"number"}},readOnly:{defaultValue:null,description:"read-only input",name:"readOnly",required:!1,type:{name:"boolean"}},required:{defaultValue:null,description:"required",name:"required",required:!1,type:{name:"boolean"}},inline:{defaultValue:null,description:"inline label and input",name:"inline",required:!1,type:{name:"boolean"}},"data-testid":{defaultValue:null,description:"data attribute for test id",name:"data-testid",required:!1,type:{name:"string"}},"data-test-value":{defaultValue:null,description:"data attribute for test value",name:"data-test-value",required:!1,type:{name:"any"}},appendLabel:{defaultValue:null,description:"append to label end",name:"appendLabel",required:!1,type:{name:"string | number | boolean | Element"}},error:{defaultValue:null,description:"error message",name:"error",required:!1,type:{name:"string"}},onEnterPressed:{defaultValue:null,description:"on enter press callback",name:"onEnterPressed",required:!1,type:{name:"KeyboardEventHandler"}},decorateStart:{defaultValue:null,description:"",name:"decorateStart",required:!1,type:{name:"string | number | boolean | Element"}},decorateEnd:{defaultValue:null,description:"",name:"decorateEnd",required:!1,type:{name:"string | number | boolean | Element"}},invalid:{defaultValue:null,description:"invalid value input",name:"invalid",required:!1,type:{name:"boolean"}},labelWidth:{defaultValue:null,description:"label width for inline",name:"labelWidth",required:!1,type:{name:"string"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/form/src/input/Slider.tsx#Slider"]={docgenInfo:Slider.__docgenInfo,name:"Slider",path:"packages/form/src/input/Slider.tsx#Slider"})}catch(__react_docgen_typescript_loader_error){}const AutoComplete=({ref,name,value,invalid,readOnly,disabled,required,placeholder,autoFocus,expandOnEdit,error,history,multiple,onChange,onSelect,onInput,onFocus,onBlur,onEnterPressed,...rest})=>{const options=(0,react.useRef)(history),submitRef=(0,react.useRef)(null),{state,listRef,listContentRef,setOpen,macthOption,handleChange,handleRemove,handleQuery,setItemRef,setActiveIndex}=useSelect({value,autoComplete:!0,options:options.current,multiple,onChange,onSelect}),dropdownKey=(0,react.useId)(),{context,floatingStyles,refs}=(0,floating_ui_react.we)({open:state.open,onOpenChange:(open,evt,reason)=>{!open&&(listRef.current=[]),setOpen(open)},strategy:"fixed",placement:"bottom",whileElementsMounted:floating_ui_dom.ll,middleware:[(0,floating_ui_react_dom.BN)({padding:8}),(0,floating_ui_react_dom.UU)(),(0,floating_ui_react_dom.cY)(2)]}),dismiss=(0,floating_ui_react.s9)(context,{}),navigation=(0,floating_ui_react.C1)(context,{listRef,activeIndex:state.activeIndex,selectedIndex:state.selectedIndex,loop:!0,virtual:!0,focusItemOnOpen:!1,onNavigate:setActiveIndex}),typeahead=(0,floating_ui_react.lY)(context,{listRef:listContentRef,activeIndex:state.activeIndex,selectedIndex:state.selectedIndex,findMatch:(list,typedString)=>list.find((item=>macthOption(item,typedString))),onMatch(index){state.open&&setActiveIndex(index)}}),{getReferenceProps,getFloatingProps,getItemProps}=(0,floating_ui_react.bv)([dismiss,navigation,typeahead]),referenceProps=(0,react.useMemo)((()=>{const props=getReferenceProps();return{...props,onFocus,onBlur(evt){evt.relatedTarget?.closest(`[data-select-dropdown="${dropdownKey}"]`)?refs.domReference.current?.querySelector("input")?.focus():(state.open&&handleChange(state.query),handleQuery(""),setOpen(!1),onBlur?.(evt))},onKeyDown(evt){if("Enter"===evt.key){if(evt.preventDefault(),null!==state.activeIndex)return handleChange(listContentRef.current[state.activeIndex]),evt.stopPropagation(),!1;if(void 0!==state.query)return handleChange(""),!1;onEnterPressed?.(evt),submitRef.current?.click()}else"Backspace"===evt.key?!state.query&&multiple&&handleRemove():["ArrowUp","ArrowDown"].includes(evt.key)&&(["ArrowUp","ArrowDown"].includes(evt.key)&&null===state.activeIndex&&setActiveIndex(state.selectedIndex),setTimeout((()=>{props.onKeyDown?.(evt)}),50))}}}),[getReferenceProps,onEnterPressed,handleQuery,onFocus,onBlur,multiple,refs,state.query,state.activeIndex]),floatingProps=(0,react.useMemo)((()=>getFloatingProps({"data-select-dropdown":dropdownKey})),[getFloatingProps]),makeItemProps=(0,react.useCallback)((item=>{const selected=(0,dist_esm.cy)(state.value)?state.value?.includes?.(item):state.value===item;return getItemProps({"data-selected":!!selected||void 0,onClick(){handleChange(item)}})}),[getItemProps,handleChange,state.value]),displayValue=(0,react.useMemo)((()=>{if((0,dist_esm.cy)(state.value))return state.value.map(((item,index)=>(0,jsx_runtime.jsx)(esm.vu,{onRemove:()=>handleRemove(index),children:item},index)))}),[state.value,state.query,placeholder]);(0,react.useLayoutEffect)((()=>{state.open&&setTimeout((()=>{state.selectedIndex&&listRef.current[state.selectedIndex]?.scrollIntoView({block:"center"})}),100)}),[state.open]);const inputValue=(0,react.useMemo)((()=>multiple?state.query??"":state.query??state.value??""),[multiple,state.query,state.value]);return(0,jsx_runtime.jsxs)(InputWrapper,{showClear:!(0,dist_esm.Im)(state.value),onClear:handleChange,invalid,readOnly,disabled,required,error,wrapperRef:refs.setReference,className:!multiple&&expandOnEdit&&state.open?"!z-[99]":"",floatingExpand:!multiple&&expandOnEdit&&state.open,...rest,children:[(0,jsx_runtime.jsxs)("div",{role:"none","data-select-display":"true",className:classnames_default()("group flex-1 py-1 px-2 truncate text-start flex gap-1 relative min-h-5 justify-start",multiple?"flex-wrap":"flex-nowrap overflow-hidden"),onMouseUp:e=>e.currentTarget.querySelector("input")?.focus(),children:[displayValue,(0,jsx_runtime.jsx)("textarea",{readOnly,disabled,value:inputValue,"aria-invalid":invalid,"data-testid":name,name,size:1,onInput,rows:!multiple&&expandOnEdit&&state.open?5:1,className:classnames_default()("appearance-none bg-transparent outline-none border-none ring-0 flex-1 resize-none",disabled&&"cursor-not-allowed pointer-events-none",multiple&&"min-w-24 overflow-hidden",!state.open&&"overflow-hidden whitespace-nowrap"),placeholder:(0,dist_esm.Im)(state.value)?placeholder:"",...referenceProps,onChange:evt=>handleQuery(evt.target.value)}),(0,jsx_runtime.jsx)("button",{type:"submit",ref:submitRef,tabIndex:-1,className:"opacity-0 absolute"})]}),state.loading&&(0,jsx_runtime.jsx)(esm.In,{animate:"spin",className:classnames_default()("flex-content p-2 z-0 order-9 text-muted pointer-events-none"),icon:esm.OO.spinner}),state.open&&!state.loading&&(0,jsx_runtime.jsx)(floating_ui_react.XF,{children:(0,jsx_runtime.jsx)(floating_ui_react.s3,{context,initialFocus:-1,visuallyHiddenDismiss:!0,children:(0,jsx_runtime.jsx)(Options,{ref:refs.setFloating,className:"outline shadow-lg max-h-[40vh] z-[var(--z-popover)]",style:{width:refs.reference.current?.getBoundingClientRect().width,...floatingStyles},...floatingProps,items:state.items,active:state.activeIndex,itemRef:setItemRef,itemProps:makeItemProps,empty:(0,jsx_runtime.jsx)("div",{className:"text-muted text-sm px-2 py-1",children:"No history available"}),children:item=>item})})})]})};try{AutoComplete.displayName="AutoComplete",AutoComplete.__docgenInfo={description:"",displayName:"AutoComplete",props:{info:{defaultValue:null,description:"info label at bottom",name:"info",required:!1,type:{name:"string"}},renderer:{defaultValue:null,description:"item renderer",name:"renderer",required:!1,type:{name:"((option: string) => ReactNode)"}},label:{defaultValue:null,description:"input label",name:"label",required:!1,type:{name:"string"}},ref:{defaultValue:null,description:"",name:"ref",required:!1,type:{name:"Ref"}},name:{defaultValue:null,description:"input name",name:"name",required:!1,type:{name:"string"}},width:{defaultValue:null,description:"field width",name:"width",required:!1,type:{name:"string | number"}},onFocus:{defaultValue:null,description:"on focus event handler",name:"onFocus",required:!1,type:{name:"FocusEventHandler"}},onBlur:{defaultValue:null,description:"on blur event handler",name:"onBlur",required:!1,type:{name:"FocusEventHandler"}},onChange:{defaultValue:null,description:"change handler",name:"onChange",required:!1,type:{name:"((value?: string) => void) | ((value?: string[]) => void) | undefined"}},onSelect:{defaultValue:null,description:"select handler",name:"onSelect",required:!1,type:{name:"((option: string) => void) | ((option: string[]) => void)"}},autoFocus:{defaultValue:null,description:"auto focus when rendered",name:"autoFocus",required:!1,type:{name:"boolean"}},disabled:{defaultValue:null,description:"disabled input",name:"disabled",required:!1,type:{name:"boolean"}},value:{defaultValue:null,description:"selected value",name:"value",required:!1,type:{name:"string | string[]"}},multiple:{defaultValue:null,description:"is multiple selection",name:"multiple",required:!1,type:{name:"boolean"}},placeholder:{defaultValue:null,description:"input placeholder",name:"placeholder",required:!1,type:{name:"string"}},readOnly:{defaultValue:null,description:"read-only input",name:"readOnly",required:!1,type:{name:"boolean"}},required:{defaultValue:null,description:"required",name:"required",required:!1,type:{name:"boolean"}},inline:{defaultValue:null,description:"inline label and input",name:"inline",required:!1,type:{name:"boolean"}},"data-testid":{defaultValue:null,description:"data attribute for test id",name:"data-testid",required:!1,type:{name:"string"}},"data-test-value":{defaultValue:null,description:"data attribute for test value",name:"data-test-value",required:!1,type:{name:"any"}},appendLabel:{defaultValue:null,description:"append to label end",name:"appendLabel",required:!1,type:{name:"string | number | boolean | Element"}},error:{defaultValue:null,description:"error message",name:"error",required:!1,type:{name:"string"}},allowClear:{defaultValue:null,description:"show clear button",name:"allowClear",required:!1,type:{name:"boolean"}},onEnterPressed:{defaultValue:null,description:"on enter press callback",name:"onEnterPressed",required:!1,type:{name:"KeyboardEventHandler"}},decorateStart:{defaultValue:null,description:"",name:"decorateStart",required:!1,type:{name:"string | number | boolean | Element"}},decorateEnd:{defaultValue:null,description:"",name:"decorateEnd",required:!1,type:{name:"string | number | boolean | Element"}},invalid:{defaultValue:null,description:"invalid value input",name:"invalid",required:!1,type:{name:"boolean"}},labelWidth:{defaultValue:null,description:"label width for inline",name:"labelWidth",required:!1,type:{name:"string"}},groupProperty:{defaultValue:null,description:"group by property name",name:"groupProperty",required:!1,type:{name:'number | unique symbol | "big" | "link" | "search" | "small" | "sub" | "sup" | "toString" | "charAt" | "charCodeAt" | "concat" | "indexOf" | "lastIndexOf" | "localeCompare" | "match" | ... 37 more ...'}},labelProperty:{defaultValue:null,description:"label property name",name:"labelProperty",required:!1,type:{name:'number | unique symbol | "big" | "link" | "search" | "small" | "sub" | "sup" | "toString" | "charAt" | "charCodeAt" | "concat" | "indexOf" | "lastIndexOf" | "localeCompare" | "match" | ... 37 more ...'}},valueProperty:{defaultValue:null,description:"value property name",name:"valueProperty",required:!1,type:{name:'number | unique symbol | "big" | "link" | "search" | "small" | "sub" | "sup" | "toString" | "charAt" | "charCodeAt" | "concat" | "indexOf" | "lastIndexOf" | "localeCompare" | "match" | ... 37 more ...'}},searchable:{defaultValue:null,description:"searchable list",name:"searchable",required:!1,type:{name:"boolean"}},matcher:{defaultValue:null,description:"item matcher",name:"matcher",required:!1,type:{name:"((option: string, query: string) => boolean)"}},onQuery:{defaultValue:null,description:"query handler",name:"onQuery",required:!1,type:{name:"((query: string) => string[] | Promise)"}},history:{defaultValue:null,description:"auto-complete history",name:"history",required:!1,type:{name:"string[]"}},expandOnEdit:{defaultValue:null,description:"expand input on edit",name:"expandOnEdit",required:!1,type:{name:"boolean"}},onInput:{defaultValue:null,description:"input change handler",name:"onInput",required:!1,type:{name:"((query: string) => void)"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/form/src/select/AutoComplete.tsx#AutoComplete"]={docgenInfo:AutoComplete.__docgenInfo,name:"AutoComplete",path:"packages/form/src/select/AutoComplete.tsx#AutoComplete"})}catch(__react_docgen_typescript_loader_error){}const List=({ref,name,value,readOnly,disabled,required,placeholder,autoFocus,options,height,groupProperty,labelProperty,valueProperty,multiple,allowCreate,createOption,matcher,renderer,onQuery,onChange,onSelect,onEnterPressed,invalid,error,allowClear,decorateStart,decorateEnd,"data-inner":isInner,"data-hide-selected":hideSelected,...rest})=>{const Wrapper=(0,react.useMemo)((()=>isInner?react.Fragment:FieldWrapper),[isInner]),wrapperProps=(0,react.useMemo)((()=>isInner?{}:{...rest}),[isInner,rest]),{state,listRef,listContentRef,macthOption,handleChange,handleRemove,handleQuery,setItemRef,setActiveIndex}=useSelect({value,options,multiple,groupProperty,labelProperty,valueProperty,allowCreate,createOption,matcher,onChange,onSelect,onQuery}),dropdownKey=(0,react.useId)(),{context,refs}=(0,floating_ui_react.we)({open:!0,placement:"bottom",whileElementsMounted:floating_ui_dom.ll,middleware:[]}),navigation=(0,floating_ui_react.C1)(context,{listRef,activeIndex:state.activeIndex,selectedIndex:state.selectedIndex,loop:!0,virtual:!0,focusItemOnOpen:!1,onNavigate:setActiveIndex}),typeahead=(0,floating_ui_react.lY)(context,{listRef:listContentRef,activeIndex:state.activeIndex,selectedIndex:state.selectedIndex,findMatch:(list,typedString)=>list.find((item=>macthOption(item,typedString))),onMatch(index){state.open&&setActiveIndex(index)}}),{getReferenceProps,getFloatingProps,getItemProps}=(0,floating_ui_react.bv)([navigation,typeahead]),referenceProps=(0,react.useMemo)((()=>{const props=getReferenceProps();return{...props,onBlur(evt){evt.relatedTarget?.closest(`[data-select-dropdown="${dropdownKey}"]`)?refs.domReference.current?.querySelector("input")?.focus():handleQuery("")},onKeyDown(evt){if("Enter"===evt.key){if(null!==state.activeIndex)return handleChange(listContentRef.current[state.activeIndex]),evt.preventDefault(),evt.stopPropagation(),!1;state.query||onEnterPressed?.(evt)}else"Backspace"===evt.key?!state.query&&handleRemove():["ArrowUp","ArrowDown"].includes(evt.key)&&(null===state.activeIndex&&setActiveIndex(state.selectedIndex),setTimeout((()=>{props.onKeyDown?.(evt)}),50))}}}),[getReferenceProps,onEnterPressed,handleQuery,refs,state.query,state.activeIndex]),floatingProps=(0,react.useMemo)((()=>getFloatingProps({"data-select-dropdown":dropdownKey})),[getFloatingProps]),makeItemProps=(0,react.useCallback)((item=>{const selected=(0,dist_esm.cy)(state.value)?state.value?.includes?.(item):state.value===item;return{...getItemProps({"data-selected":!!selected||void 0,onClick(){handleChange(item)}}),"aria-hidden":void 0}}),[getItemProps,handleChange,state.value]),displayValue=(0,react.useMemo)((()=>(0,dist_esm.cy)(state.value)?state.value.map(((item,index)=>(0,jsx_runtime.jsx)(esm.vu,{onRemove:()=>handleRemove(index),children:renderer?.(item)??item[labelProperty]??item},index))):(0,dist_esm.Im)(state.value)||state.query?void 0:(0,jsx_runtime.jsx)("span",{children:renderer?.(state.value)??state.value[labelProperty]??state.value})),[state.value,state.query,placeholder,renderer]);return(0,jsx_runtime.jsxs)(Wrapper,{...wrapperProps,children:[(0,jsx_runtime.jsx)(InputWrapper,{showClear:!(0,dist_esm.Im)(state.value),onClear:handleChange,invalid,readOnly,disabled,required,error,className:"z-1 rounded-b-none","data-inner":!0,wrapperRef:refs.setReference,children:(0,jsx_runtime.jsxs)("div",{"data-select-display":"true",className:"group flex-1 py-1 px-2 truncate text-start flex gap-1 flex-wrap",children:[!hideSelected&&displayValue,(0,jsx_runtime.jsx)("input",{disabled,value:state.query??"","aria-invalid":invalid,"data-testid":name,name,className:classnames_default()("appearance-none bg-transparent outline-none border-none ring-0 flex-1 min-w-24",disabled&&"cursor-not-allowed pointer-events-none"),placeholder:(0,dist_esm.Im)(state.value)?placeholder:"",...referenceProps,onChange:evt=>handleQuery(evt.target.value)})]})}),(0,jsx_runtime.jsx)(floating_ui_react.s3,{context,initialFocus:-1,visuallyHiddenDismiss:!0,children:(0,jsx_runtime.jsx)(Options,{ref:refs.setFloating,className:classnames_default()("max-h-96 z-0 rounded-capped rounded-t-none outline",disabled&&"pointer-events-none opacity-65"),style:{height},...floatingProps,items:state.items,active:state.activeIndex,itemRef:setItemRef,itemProps:makeItemProps,children:item=>renderer?.(item)??item[labelProperty]??item})})]})};try{List.displayName="List",List.__docgenInfo={description:"",displayName:"List",props:{options:{defaultValue:null,description:"list options",name:"options",required:!1,type:{name:"T[]"}},groupProperty:{defaultValue:null,description:"group by property name",name:"groupProperty",required:!1,type:{name:"string | number | symbol"}},labelProperty:{defaultValue:null,description:"label property name",name:"labelProperty",required:!1,type:{name:"string | number | symbol"}},valueProperty:{defaultValue:null,description:"value property name",name:"valueProperty",required:!1,type:{name:"string | number | symbol"}},searchable:{defaultValue:null,description:"searchable list",name:"searchable",required:!1,type:{name:"boolean"}},allowCreate:{defaultValue:null,description:"allow create item",name:"allowCreate",required:!1,type:{name:"boolean"}},createOption:{defaultValue:null,description:"create new item object",name:"createOption",required:!1,type:{name:"((query: string) => T)"}},onQuery:{defaultValue:null,description:"query handler",name:"onQuery",required:!1,type:{name:"((query: string) => T[] | Promise)"}},renderer:{defaultValue:null,description:"item renderer",name:"renderer",required:!1,type:{name:"((option: T) => ReactNode)"}},matcher:{defaultValue:null,description:"item matcher",name:"matcher",required:!1,type:{name:"((option: T, query: string) => boolean)"}},ref:{defaultValue:null,description:"",name:"ref",required:!1,type:{name:"Ref"}},info:{defaultValue:null,description:"info label at bottom",name:"info",required:!1,type:{name:"string"}},label:{defaultValue:null,description:"input label",name:"label",required:!1,type:{name:"string"}},name:{defaultValue:null,description:"input name",name:"name",required:!1,type:{name:"string"}},width:{defaultValue:null,description:"field width",name:"width",required:!1,type:{name:"string | number"}},onFocus:{defaultValue:null,description:"on focus event handler",name:"onFocus",required:!1,type:{name:"FocusEventHandler"}},onBlur:{defaultValue:null,description:"on blur event handler",name:"onBlur",required:!1,type:{name:"FocusEventHandler"}},autoFocus:{defaultValue:null,description:"auto focus when rendered",name:"autoFocus",required:!1,type:{name:"boolean"}},disabled:{defaultValue:null,description:"disabled input",name:"disabled",required:!1,type:{name:"boolean"}},placeholder:{defaultValue:null,description:"input placeholder",name:"placeholder",required:!1,type:{name:"string"}},readOnly:{defaultValue:null,description:"read-only input",name:"readOnly",required:!1,type:{name:"boolean"}},required:{defaultValue:null,description:"required",name:"required",required:!1,type:{name:"boolean"}},inline:{defaultValue:null,description:"inline label and input",name:"inline",required:!1,type:{name:"boolean"}},"data-testid":{defaultValue:null,description:"data attribute for test id",name:"data-testid",required:!1,type:{name:"string"}},"data-test-value":{defaultValue:null,description:"data attribute for test value",name:"data-test-value",required:!1,type:{name:"any"}},appendLabel:{defaultValue:null,description:"append to label end",name:"appendLabel",required:!1,type:{name:"string | number | boolean | Element"}},error:{defaultValue:null,description:"error message",name:"error",required:!1,type:{name:"string"}},allowClear:{defaultValue:null,description:"show clear button",name:"allowClear",required:!1,type:{name:"boolean"}},onEnterPressed:{defaultValue:null,description:"on enter press callback",name:"onEnterPressed",required:!1,type:{name:"KeyboardEventHandler"}},decorateStart:{defaultValue:null,description:"",name:"decorateStart",required:!1,type:{name:"string | number | boolean | Element"}},decorateEnd:{defaultValue:null,description:"",name:"decorateEnd",required:!1,type:{name:"string | number | boolean | Element"}},invalid:{defaultValue:null,description:"invalid value input",name:"invalid",required:!1,type:{name:"boolean"}},labelWidth:{defaultValue:null,description:"label width for inline",name:"labelWidth",required:!1,type:{name:"string"}},multiple:{defaultValue:null,description:"is multiple selection",name:"multiple",required:!1,type:{name:"boolean"}},value:{defaultValue:null,description:"selected value",name:"value",required:!1,type:{name:"string | string[]"}},onSelect:{defaultValue:null,description:"select handler",name:"onSelect",required:!1,type:{name:"((option: T) => void) | ((option: T[]) => void)"}},onChange:{defaultValue:null,description:"change handler",name:"onChange",required:!1,type:{name:"((value?: string) => void) | ((value?: string[]) => void) | undefined"}},height:{defaultValue:null,description:"",name:"height",required:!1,type:{name:"string | number"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/form/src/select/List.tsx#List"]={docgenInfo:List.__docgenInfo,name:"List",path:"packages/form/src/select/List.tsx#List"})}catch(__react_docgen_typescript_loader_error){}const DualList=({ref,value,options,groupProperty,height="18rem",labelProperty="label",valueProperty="id",renderer,onChange,name,invalid,readOnly,disabled,placeholder,autoFocus,error,...rest})=>{const[actualValue,setActualValue]=(0,react.useState)([]),[leftSelected,setLeftSelected]=(0,react.useState)([]),[rightSelected,setRightSelected]=(0,react.useState)([]),deferred=(0,react.useDeferredValue)(value);(0,react.useEffect)((()=>{setActualValue(options.filter((opt=>deferred?.includes(opt[valueProperty]??opt))))}),[deferred,options]);const[leftOptions,rightOptions]=(0,react.useMemo)((()=>[options.filter((opt=>!actualValue?.includes(opt))),actualValue]),[options,actualValue]),moveAllLeft=(0,react.useCallback)((()=>{setLeftSelected([]),setRightSelected([]),setActualValue([]),onChange?.([])}),[onChange]),moveAllRight=(0,react.useCallback)((()=>{setLeftSelected([]),setRightSelected([]),setActualValue(options),onChange?.(options.map((opt=>`${opt[valueProperty]??opt}`)))}),[onChange,options,valueProperty]),moveLeftSelected=(0,react.useCallback)((()=>{const selected=[...actualValue,...leftSelected];setActualValue(selected),onChange?.(selected.map((opt=>`${opt[valueProperty]??opt}`))),setLeftSelected([])}),[onChange,leftSelected,actualValue]),moveRightSelected=(0,react.useCallback)((()=>{const selected=actualValue.filter((opt=>!rightSelected.includes(opt)));setActualValue(selected),onChange?.(selected.map((opt=>`${opt[valueProperty]??opt}`))),setRightSelected([])}),[onChange,rightSelected,actualValue]),[dragItems,setDragItems]=(0,react.useState)([]),dragLeft=(0,core_esm.PM)({id:"unselected",disabled:!leftSelected.length,data:{supports:["selected"]},attributes:{role:"none"}}),dragRight=(0,core_esm.PM)({id:"selected",disabled:!rightSelected.length,data:{supports:["unselected"]},attributes:{role:"none"}}),dropLeft=(0,core_esm.zM)({id:"unselected",data:{accepts:["selected"]}}),dropRight=(0,core_esm.zM)({id:"selected",data:{accepts:["unselected"]}});return(0,jsx_runtime.jsx)(Field,{...rest,noOutline:!0,plain:!0,children:(0,jsx_runtime.jsxs)(core_esm.Mp,{modifiers:[modifiers_esm.dU],onDragStart:e=>{setDragItems("selected"===e.active.id?rightSelected:leftSelected)},onDragEnd:e=>{setDragItems([])},children:[(0,jsx_runtime.jsx)("div",{className:"flex-1 flex flex-col overflow-hidden p-px",ref:(0,dist_esm.Px)(dragLeft.setNodeRef,dropLeft.setNodeRef),...dragLeft.attributes,...dragLeft.listeners,children:(0,jsx_runtime.jsx)(List,{ref,multiple:!0,allowClear:!0,name,invalid,readOnly,disabled,placeholder,autoFocus,error,height,options:leftOptions,groupProperty,labelProperty,valueProperty,renderer,onSelect:setLeftSelected,"data-inner":!0,"data-hide-selected":!0})}),(0,jsx_runtime.jsx)("div",{className:"self-center mx-2",children:(0,jsx_runtime.jsxs)(esm.e2,{vertical:!0,className:"outline overflow-hidden bg-base",children:[(0,jsx_runtime.jsx)(esm.$n,{rtlFlip:!0,size:"sm",variant:"link","aria-label":"scroll to top",onClick:moveAllLeft,icon:esm.OO.chevronsLeft,disabled:!rightOptions.length}),(0,jsx_runtime.jsx)(esm.$n,{rtlFlip:!0,size:"sm",variant:"link","aria-label":"scroll up",onClick:moveRightSelected,icon:esm.OO.chevronLeft,disabled:!rightSelected.length}),(0,jsx_runtime.jsx)(esm.$n,{rtlFlip:!0,size:"sm",variant:"link","aria-label":"scroll down",onClick:moveLeftSelected,icon:esm.OO.chevronRight,disabled:!leftSelected.length}),(0,jsx_runtime.jsx)(esm.$n,{rtlFlip:!0,size:"sm",variant:"link","aria-label":"scroll to bottom",onClick:moveAllRight,icon:esm.OO.chevronsRight,disabled:!leftOptions.length})]})}),(0,jsx_runtime.jsx)("div",{className:"flex-1 flex flex-col overflow-hidden p-px",ref:(0,dist_esm.Px)(dropRight.setNodeRef,dragRight.setNodeRef),children:(0,jsx_runtime.jsx)(List,{multiple:!0,allowClear:!0,height,options:rightOptions,groupProperty,labelProperty,valueProperty,renderer,onSelect:setRightSelected,"data-inner":!0,"data-hide-selected":!0})}),(0,jsx_runtime.jsx)(core_esm.Hd,{children:dragItems.length>0&&(0,jsx_runtime.jsxs)("span",{children:[dragItems.length," Item(s)"]})})]})})};try{DualList.displayName="DualList",DualList.__docgenInfo={description:"",displayName:"DualList",props:{height:{defaultValue:{value:"18rem"},description:"list height",name:"height",required:!1,type:{name:"string | number"}},options:{defaultValue:null,description:"list options",name:"options",required:!0,type:{name:"T[]"}},value:{defaultValue:null,description:"selected value",name:"value",required:!1,type:{name:"string[]"}},groupProperty:{defaultValue:null,description:"group by property name",name:"groupProperty",required:!1,type:{name:"string | number | symbol"}},labelProperty:{defaultValue:{value:'"label" as AnyObject'},description:"label property name",name:"labelProperty",required:!1,type:{name:"string | number | symbol"}},valueProperty:{defaultValue:{value:'"id" as AnyObject'},description:"value property name",name:"valueProperty",required:!1,type:{name:"string | number | symbol"}},renderer:{defaultValue:null,description:"item renderer",name:"renderer",required:!1,type:{name:"((option: T) => ReactNode)"}},onChange:{defaultValue:null,description:"change handler",name:"onChange",required:!1,type:{name:"((value?: string[]) => void)"}},info:{defaultValue:null,description:"info label at bottom",name:"info",required:!1,type:{name:"string"}},className:{defaultValue:null,description:"css classname(s)",name:"className",required:!1,type:{name:"string"}},label:{defaultValue:null,description:"input label",name:"label",required:!1,type:{name:"string"}},width:{defaultValue:null,description:"field width",name:"width",required:!1,type:{name:"string | number"}},required:{defaultValue:null,description:"required",name:"required",required:!1,type:{name:"boolean"}},inline:{defaultValue:null,description:"inline label and input",name:"inline",required:!1,type:{name:"boolean"}},vertical:{defaultValue:null,description:"",name:"vertical",required:!1,type:{name:"boolean"}},appendLabel:{defaultValue:null,description:"append to label end",name:"appendLabel",required:!1,type:{name:"string | number | boolean | Element"}},labelWidth:{defaultValue:null,description:"label width for inline",name:"labelWidth",required:!1,type:{name:"string"}},noOutline:{defaultValue:null,description:"hide outline",name:"noOutline",required:!1,type:{name:"boolean"}},plain:{defaultValue:null,description:"dont apply bg and outline",name:"plain",required:!1,type:{name:"boolean"}},ref:{defaultValue:null,description:"",name:"ref",required:!1,type:{name:"Ref"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/form/src/select/DualList.tsx#DualList"]={docgenInfo:DualList.__docgenInfo,name:"DualList",path:"packages/form/src/select/DualList.tsx#DualList"})}catch(__react_docgen_typescript_loader_error){}},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/form/src/input/ArrayInput.module.css":(module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer var {\n .tynfL2CeffjfN8K1EOPa [data-ref="fieldWrapper"] {\n flex: 1 1 0%;\n }\n\n .tynfL2CeffjfN8K1EOPa .BP8o_wtcMa2MaKNI36tB .buttonInner {\n color: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n outline: 1px dashed color-mix(in lab, color(from var(--tint) srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n }\n\n .tynfL2CeffjfN8K1EOPa .BP8o_wtcMa2MaKNI36tB [data-invalid="true"].buttonInner {\n color: color-mix(in lab, color(from #f24c3d srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n background-color: color-mix(in lab, color(from #f24c3d srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n outline: 1px dashed color-mix(in lab, color(from #f24c3d srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n }\n}\n',"",{version:3,sources:["webpack://./packages/form/src/input/ArrayInput.module.css"],names:[],mappings:"AAAA;;;;;;;;;;;;;;;;;;;;;EAqBE;;AAEF;IAEI;MACE,YAAY;IACd;;IAEA;MACE,oHAA6B;MAC7B,iIAA0C;IAO5C;;MALE;QACE,gHAA+B;QAC/B,yHAA0C;QAC1C,6HAA4C;MAC9C;AAGN",sourcesContent:['/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer var {\n .arrayInput {\n & [data-ref="fieldWrapper"] {\n flex: 1 1 0%;\n }\n\n & .addButton :global(.buttonInner) {\n color: theme(colors.tint.600);\n outline: 1px dashed theme(colors.tint.600);\n\n &[data-invalid="true"] {\n color: theme(colors.danger.600);\n background-color: theme(colors.danger.100);\n outline: 1px dashed theme(colors.danger.600);\n }\n }\n }\n}\n'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={arrayInput:"tynfL2CeffjfN8K1EOPa",addButton:"BP8o_wtcMa2MaKNI36tB"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/form/src/input/ColorPicker.module.css":(module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .MfdsdKNZRSZbzqaoVGZE {\n --color-shadow: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 65%, color(from var(--tint) srgb r g b / 1));\n }\n\n .MfdsdKNZRSZbzqaoVGZE input {\n padding: 0 4px !important;\n\n line-height: 2;\n color: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 1) 95%, color(from var(--tint) srgb r g b / 1));\n\n background-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 99%, color(from var(--tint) srgb r g b / 1));\n border: 1px solid color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 65%, color(from var(--tint) srgb r g b / 1));\n border-radius: 0.125rem;\n box-shadow: none;\n }\n\n .MfdsdKNZRSZbzqaoVGZE input:focus {\n border-color: var(--primary);\n }\n\n .MfdsdKNZRSZbzqaoVGZE label {\n color: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 1) 95%, color(from var(--tint) srgb r g b / 1));\n }\n\n .MfdsdKNZRSZbzqaoVGZE .flexbox-fix {\n justify-content: center;\n border-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 80%, color(from var(--tint) srgb r g b / 1));\n }\n\n .MfdsdKNZRSZbzqaoVGZE .flexbox-fix > div > div {\n text-align: center;\n }\n\n .MfdsdKNZRSZbzqaoVGZE .flexbox-fix span > div {\n box-shadow: 0 0 1px 1px color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 65%, color(from var(--tint) srgb r g b / 1)) inset !important;\n }\n}\n',"",{version:3,sources:["webpack://./packages/form/src/input/ColorPicker.module.css"],names:[],mappings:"AAAA;;;;;;;;;;;;;;;;;;;;;EAqBE;;AAEF;EACE;IACE,2HAAuC;EAkCzC;;IAhCE;MACE,yBAAyB;;MAEzB,cAAc;MACd,oHAA4B;;MAE5B,6HAA6C;MAC7C,6HAAyC;MACzC,uBAAqC;MACrC,gBAAgB;IAKlB;;MAHE;QACE,4BAAgD;MAClD;;IAGF;MACE,oHAA4B;IAC9B;;IAEA;MACE,uBAAuB;MACvB,yHAAsC;IASxC;;MAPE;QACE,kBAAkB;MACpB;;MAEA;QACE,oJAAgE;MAClE;AAGN",sourcesContent:['/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .colorPicker {\n --color-shadow: theme(borderColor.base);\n\n & input {\n padding: 0 4px !important;\n\n line-height: 2;\n color: theme(textColor.base);\n\n background-color: theme(backgroundColor.base);\n border: 1px solid theme(borderColor.base);\n border-radius: theme(borderRadius.sm);\n box-shadow: none;\n\n &:focus {\n border-color: theme(borderColor.primary.DEFAULT);\n }\n }\n\n & label {\n color: theme(textColor.base);\n }\n\n & :global(.flexbox-fix) {\n justify-content: center;\n border-color: theme(borderColor.muted);\n\n & > div > div {\n text-align: center;\n }\n\n & span > div {\n box-shadow: 0 0 1px 1px theme(borderColor.base) inset !important;\n }\n }\n }\n}\n'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={colorPicker:"MfdsdKNZRSZbzqaoVGZE"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/form/src/input/File.module.css":(module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .rAC6o0xc0slVpg9GF9Gp::-webkit-file-upload-button {\n cursor: pointer;\n\n padding-block: 0;\n\n color: #fefdfc;\n\n opacity: 0.8;\n background-color: color(from var(--primary) srgb r g b / 1);\n border: 0;\n border-radius: var(--rounding);\n }\n\n .rAC6o0xc0slVpg9GF9Gp::-webkit-file-upload-button:hover {\n opacity: 0.9;\n }\n\n .rAC6o0xc0slVpg9GF9Gp[aria-invalid="true"]::-webkit-file-upload-button {\n background-color: color(from #f24c3d srgb r g b / 1);\n }\n\n .rAC6o0xc0slVpg9GF9Gp:disabled::-webkit-file-upload-button {\n pointer-events: none;\n background-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 80%, color(from var(--tint) srgb r g b / 1));\n }\n\n .rAC6o0xc0slVpg9GF9Gp[readOnly] {\n pointer-events: none;\n }\n}\n',"",{version:3,sources:["webpack://./packages/form/src/input/File.module.css"],names:[],mappings:"AAAA;;;;;;;;;;;;;;;;;;;;;EAqBE;;AAEF;IAEI;MACE,eAAe;;MAEf,gBAAgB;;MAEhB,cAA6B;;MAE7B,YAAY;MACZ,2DAAoD;MACpD,SAAS;MACT,8BAA0C;IAK5C;;MAHE;QACE,YAAY;MACd;;IAGF;MACE,oDAAmD;IACrD;;IAEA;MACE,oBAAoB;MACpB,6HAA8C;IAChD;;IAEA;MACE,oBAAoB;IACtB;AAEJ",sourcesContent:['/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .fileInput {\n &::-webkit-file-upload-button {\n cursor: pointer;\n\n padding-block: 0;\n\n color: theme(textColor.white);\n\n opacity: 0.8;\n background-color: theme(backgroundColor.primary.500);\n border: 0;\n border-radius: theme(borderRadius.DEFAULT);\n\n &:hover {\n opacity: 0.9;\n }\n }\n\n &[aria-invalid="true"]::-webkit-file-upload-button {\n background-color: theme(backgroundColor.danger.500);\n }\n\n &:disabled::-webkit-file-upload-button {\n pointer-events: none;\n background-color: theme(backgroundColor.muted);\n }\n\n &[readOnly] {\n pointer-events: none;\n }\n }\n}\n'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={fileInput:"rAC6o0xc0slVpg9GF9Gp"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/form/src/internal/Field.module.css":(module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .hSWeLuprnzOzKdEEcO1s {\n /* later */\n }\n}\n\n@layer var {\n .pEDCemjxYo9YROzImmm9::after {\n inset-inline: 50%;\n transition: all 300ms;\n transition-delay: 100ms;\n }\n\n .pEDCemjxYo9YROzImmm9 .KZIeBwOpLDy2F0eAR5PK:has([data-ref="button"]) {\n display: flex;\n align-self: stretch;\n }\n\n .pEDCemjxYo9YROzImmm9:has(input[disabled], textarea[disabled]) {\n cursor: not-allowed;\n background-color: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n }\n\n .pEDCemjxYo9YROzImmm9:has(input[disabled], textarea[disabled]) input,\n .pEDCemjxYo9YROzImmm9:has(input[disabled], textarea[disabled]) textarea {\n cursor: not-allowed;\n }\n\n .pEDCemjxYo9YROzImmm9:focus-within,\n .pEDCemjxYo9YROzImmm9:has([data-open="true"]) {\n z-index: 1;\n background-color: var(--fabric-input-focus);\n outline-color: var(--primary);\n }\n\n .pEDCemjxYo9YROzImmm9:focus-within:not(:has([aria-readonly="true"]:not([hidden])))::after, .pEDCemjxYo9YROzImmm9:has([data-open="true"]):not(:has([aria-readonly="true"]:not([hidden])))::after {\n inset-inline: 0;\n }\n\n .pEDCemjxYo9YROzImmm9.fixed {\n box-shadow: 0 0 2rem 0.5rem var(--fabric-shadow);\n }\n\n .pEDCemjxYo9YROzImmm9 input,\n .pEDCemjxYo9YROzImmm9 textarea {\n max-width: 100%;\n }\n\n .pEDCemjxYo9YROzImmm9 > input[type="number"] + .xy9HparG_1vsgSrMmHgD {\n margin-inline: -3rem 2rem;\n }\n\n .pEDCemjxYo9YROzImmm9 input::-ms-clear,\n .pEDCemjxYo9YROzImmm9 select::-ms-clear,\n .pEDCemjxYo9YROzImmm9 textarea::-ms-clear {\n display: none;\n }\n\n .pEDCemjxYo9YROzImmm9 input[type="search"]::-webkit-search-cancel-button {\n display: none;\n }\n\n .pEDCemjxYo9YROzImmm9 input[type="password"]:not(:-moz-placeholder-shown) {\n /* stylelint-disable-next-line font-family-no-missing-generic-family-keyword */\n font-family: caption;\n letter-spacing: 2px;\n }\n\n .pEDCemjxYo9YROzImmm9 input[type="password"]:not(:placeholder-shown) {\n /* stylelint-disable-next-line font-family-no-missing-generic-family-keyword */\n font-family: caption;\n letter-spacing: 2px;\n }\n\n .pEDCemjxYo9YROzImmm9 input:-webkit-autofill {\n box-shadow: 0 0 0 999em var(--fabric-input) inset;\n\n -webkit-text-fill-color: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n }\n\n .pEDCemjxYo9YROzImmm9 input:-webkit-autofill:focus {\n box-shadow: 0 0 0 999em var(--fabric-input-focus) inset;\n\n -webkit-text-fill-color: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n }\n\n .pEDCemjxYo9YROzImmm9.mOH444fCvMhqHOQqtF3y {\n outline-color: color(from #f24c3d srgb r g b / 1);\n }\n\n .pEDCemjxYo9YROzImmm9.mOH444fCvMhqHOQqtF3y::after {\n background-color: color(from #f24c3d srgb r g b / 1);\n }\n .zS04CNz_Pu1A_Uf5fHRp > * {\n line-height: 1;\n }\n .zS04CNz_Pu1A_Uf5fHRp > :not(:first-child),\n .zS04CNz_Pu1A_Uf5fHRp > :not(:first-child) > div,\n .zS04CNz_Pu1A_Uf5fHRp > :not(:first-child) > [role="button"],\n .zS04CNz_Pu1A_Uf5fHRp > :not(:first-child) > [data-ref="button"] > [role="button"] {\n border-start-start-radius: 0;\n border-end-start-radius: 0;\n }\n .zS04CNz_Pu1A_Uf5fHRp > :not(:last-child),\n .zS04CNz_Pu1A_Uf5fHRp > :not(:last-child) > div,\n .zS04CNz_Pu1A_Uf5fHRp > :not(:last-child) > [role="button"],\n .zS04CNz_Pu1A_Uf5fHRp > :not(:last-child) > [data-ref="button"] > [role="button"] {\n border-start-end-radius: 0;\n border-end-end-radius: 0;\n }\n}\n',"",{version:3,sources:["webpack://./packages/form/src/internal/Field.module.css"],names:[],mappings:"AAAA;;;;;;;;;;;;;;;;;;;;;EAqBE;;AAEF;EACE;IACE,UAAU;EACZ;AACF;;AAEA;IAEI;MACE,iBAAiB;MACjB,qBAAqB;MACrB,uBAAuB;IACzB;;IAEA;MACE,aAAa;MACb,mBAAmB;IACrB;;IAEA;MACE,mBAAmB;MACnB,6HAAuC;IAMzC;;MAJE;;QAEE,mBAAmB;MACrB;;IAGF;;MAEE,UAAU;MACV,2CAA2C;MAC3C,6BAA6B;IAK/B;;MAHE;QACE,eAAe;MACjB;;IAGF;MACE,gDAAgD;IAClD;;IAEA;;MAEE,eAAe;IACjB;;IAEA;MACE,yBAAyB;IAC3B;;IAEA;;;MAGE,aAAa;IACf;;IAEA;MACE,aAAa;IACf;;IAEA;MACE,8EAA8E;MAC9E,oBAAoB;MACpB,mBAAmB;IACrB;;IAJA;MACE,8EAA8E;MAC9E,oBAAoB;MACpB,mBAAmB;IACrB;;IAEA;MACE,iDAAiD;;MAEjD,wIAAiD;IACnD;;IAEA;MACE,uDAAuD;;MAEvD,wIAAiD;IACnD;;IAEA;MACE,iDAAuC;IAKzC;;MAHE;QACE,oDAA0C;MAC5C;IAKF;MACE,cAAc;IAChB;MAGE;;;;QAIE,4BAA4B;QAC5B,0BAA0B;MAC5B;MAIA;;;;QAIE,0BAA0B;QAC1B,wBAAwB;MAC1B;AAGN",sourcesContent:['/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .fieldWrapper {\n /* later */\n }\n}\n\n@layer var {\n .inputWrapper {\n &::after {\n inset-inline: 50%;\n transition: all 300ms;\n transition-delay: 100ms;\n }\n\n & .decorate:has([data-ref="button"]) {\n display: flex;\n align-self: stretch;\n }\n\n &:has(input[disabled], textarea[disabled]) {\n cursor: not-allowed;\n background-color: theme(colors.tint.50);\n\n & input,\n & textarea {\n cursor: not-allowed;\n }\n }\n\n &:focus-within,\n &:has([data-open="true"]) {\n z-index: 1;\n background-color: var(--fabric-input-focus);\n outline-color: var(--primary);\n\n &:not(:has([aria-readonly="true"]:not([hidden])))::after {\n inset-inline: 0;\n }\n }\n\n &:global(.fixed) {\n box-shadow: 0 0 2rem 0.5rem var(--fabric-shadow);\n }\n\n & input,\n & textarea {\n max-width: 100%;\n }\n\n & > input[type="number"] + .inputClear {\n margin-inline: -3rem 2rem;\n }\n\n & input::-ms-clear,\n & select::-ms-clear,\n & textarea::-ms-clear {\n display: none;\n }\n\n & input[type="search"]::-webkit-search-cancel-button {\n display: none;\n }\n\n & input[type="password"]:not(:placeholder-shown) {\n /* stylelint-disable-next-line font-family-no-missing-generic-family-keyword */\n font-family: caption;\n letter-spacing: 2px;\n }\n\n & input:-webkit-autofill {\n box-shadow: 0 0 0 999em var(--fabric-input) inset;\n\n -webkit-text-fill-color: theme(colors.accent.700);\n }\n\n & input:-webkit-autofill:focus {\n box-shadow: 0 0 0 999em var(--fabric-input-focus) inset;\n\n -webkit-text-fill-color: theme(colors.accent.700);\n }\n\n &.invalidWrapper {\n outline-color: theme(colors.danger.500);\n\n &::after {\n background-color: theme(colors.danger.500);\n }\n }\n }\n\n .fieldGroup {\n > * {\n line-height: 1;\n }\n\n > :not(:first-child) {\n &,\n & > div,\n & > [role="button"],\n & > [data-ref="button"] > [role="button"] {\n border-start-start-radius: 0;\n border-end-start-radius: 0;\n }\n }\n\n > :not(:last-child) {\n &,\n & > div,\n & > [role="button"],\n & > [data-ref="button"] > [role="button"] {\n border-start-end-radius: 0;\n border-end-end-radius: 0;\n }\n }\n }\n}\n'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={fieldWrapper:"hSWeLuprnzOzKdEEcO1s",inputWrapper:"pEDCemjxYo9YROzImmm9",decorate:"KZIeBwOpLDy2F0eAR5PK",inputClear:"xy9HparG_1vsgSrMmHgD",invalidWrapper:"mOH444fCvMhqHOQqtF3y",fieldGroup:"zS04CNz_Pu1A_Uf5fHRp"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___}}]); \ No newline at end of file +"use strict";(self.webpackChunkreact_fabric=self.webpackChunkreact_fabric||[]).push([[1634],{"./packages/form/src/index.ts":(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{Ag:()=>ArrayInput,j9:()=>AutoComplete,Sc:()=>Checkbox,AN:()=>ColorInput,xI:()=>Controller,JR:()=>DualList,D0:()=>Field,zp:()=>FileInput,lV:()=>Form,t$:()=>HiddenInput,pd:()=>Input,B8:()=>List,wN:()=>Number_Number,_2:()=>Password,sx:()=>Radio,z6:()=>RadioGroup,Q6:()=>Range,vj:()=>Search,l6:()=>Select,Ap:()=>Slider,dO:()=>Switch,TM:()=>Textarea,Mv:()=>useFileUploader,Pv:()=>useFormBuilder});var esm=__webpack_require__("./packages/core/dist/esm/index.js");const ar_namespaceObject=JSON.parse('{"addArray":"اضافة عنصر","password":{"show":"عرض كلمة المرور","hide":"اخفاء كلمة المرور"},"select":{"emptyList":"لا توجد خيارات متاحة","notFound":"لم يتم العثور على خيارات ل ","createOption":"إنشاء خيار جديد ل "},"yup":{"arrayMax":"{{label}} حدد ما يصل {{max}} غرض","arrayMin":"{{label}} اختر على الأقل {{min}} غرض","invalid":"{{label}} نوع بيانات غير صالح","invalidType":"{{label}} غير صالح","numberMax":"{{label}} الحد الأقصى {{max}}","numberMin":"{{label}} الحد الأدنى {{min}}","required":"{{label}} مطلوب","stringMax":"{{label}} أقصى {{max}} الحروف مسموحة","stringMin":"{{label}} يتطلب الحد الأدنى {{min}} الشخصيات"}}'),en_namespaceObject=JSON.parse('{"addArray":"Add Item","password":{"show":"Show password","hide":"Hide password"},"select":{"emptyList":"No options available","notFound":"No options found for <0>{{query}}","createOption":"Create new option for <0>{{query}}"},"yup":{"arrayMax":"{{label}} must contain upto {{max}} item","arrayMin":"{{label}} must contain atleast {{min}} item","invalid":"{{label}} invalid","empty":"{{label}} must not be empty","invalidType":"{{label}} invalid datatype","numberMax":"{{label}} maximum {{max}}","numberMin":"{{label}} minimum {{min}}","required":"{{label}} required","stringMax":"{{label}} maximum {{max}} characters allowed","stringMin":"{{label}} requires minimum {{min}} characters"}}');(0,esm.Rp)("form",{en:en_namespaceObject,ar:ar_namespaceObject});var jsx_runtime=__webpack_require__("./node_modules/react/jsx-runtime.js"),react=__webpack_require__("./node_modules/react/index.js"),index_esm=__webpack_require__("./node_modules/react-hook-form/dist/index.esm.mjs");const Controller=({name,children,...rest})=>{if(!name)throw Error("Form Controller missing `name` prop");return(0,jsx_runtime.jsx)(index_esm.xI,{name,render:({field:{ref,onChange,...field},fieldState:{error},formState:{isSubmitting}})=>(0,react.isValidElement)(children)?(0,react.cloneElement)(react.Children.only(children),{...field,...rest,ref:el=>{el&&ref(el);try{children.props.ref&&"current"in children.props.ref&&(children.props.ref.current=el),children.props.ref?.prototype&&children.props.ref(el)}catch(_){}},checked:!!field.value,readOnly:isSubmitting||children.props.readOnly,invalid:!!error?.message||children.props.invalid,error:error?.message??children.props.error,onChange:v=>{onChange(v),children.props.onChange?.(v)}}):children({...field,...rest,inputRef:el=>{el&&ref(el)},readOnly:isSubmitting,invalid:!!error?.message,checked:!!field.value,error:error?.message,onChange:v=>{onChange(v)}})})};try{Controller.displayName="Controller",Controller.__docgenInfo={description:"",displayName:"Controller",props:{name:{defaultValue:null,description:"field name",name:"name",required:!1,type:{name:"string"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/form/src/form/Controller.tsx#Controller"]={docgenInfo:Controller.__docgenInfo,name:"Controller",path:"packages/form/src/form/Controller.tsx#Controller"})}catch(__react_docgen_typescript_loader_error){}var yup=__webpack_require__("./node_modules/@hookform/resolvers/yup/dist/yup.mjs");const DEFAULT_SUBMIT=()=>{},Form=({formRef,schema,children,defaultValues,onSubmit=DEFAULT_SUBMIT,onChange,...rest})=>{const ref=(0,react.useRef)(null),form=(0,index_esm.mN)({shouldFocusError:!0,resolver:schema&&(0,yup.t)(schema),defaultValues});(0,react.useEffect)((()=>{form.reset()}),[]);const[,startTransition]=(0,react.useTransition)(),changeHandler=(0,esm.d7)(onChange,[onChange]);(0,react.useEffect)((()=>{const subscription=form.watch((value=>{startTransition((()=>changeHandler?.(value)))}));return()=>subscription.unsubscribe()}),[form.watch,changeHandler]);const handleReset=(0,react.useCallback)(((reset={})=>{form.reset(reset),form.clearErrors(),ref.current?.querySelector("[auto-focus], input, textarea")?.focus()}),[defaultValues]);(0,react.useImperativeHandle)(formRef,(()=>({state:form.formState,reset:()=>handleReset(defaultValues),clear:()=>handleReset(),submit:()=>form.handleSubmit(onSubmit),validate:async()=>await form.trigger(),getValues:()=>form.getValues(),setValues:v=>setTimeout((()=>form.reset(v)),50),setValue:(k,v)=>setTimeout((()=>form.setValue(k,v,{shouldDirty:!1,shouldTouch:!1})),50)})),[onSubmit,form,form.formState,defaultValues]);const onInvalid=(0,react.useCallback)(((_,e)=>{const el=e.target;setTimeout((()=>el.querySelector("input[aria-invalid='true'],textarea[aria-invalid='true']")?.focus()),10)}),[]);return(0,jsx_runtime.jsx)(index_esm.Op,{...form,children:(0,jsx_runtime.jsxs)("form",{ref,onReset:()=>handleReset(defaultValues),onSubmit:form.handleSubmit(onSubmit,onInvalid),"data-loading":form.formState.isSubmitting,className:"contents",autoComplete:"off",...rest,children:[children,(0,jsx_runtime.jsx)("input",{type:"submit",className:"absolute invisible"})]})})};try{Form.displayName="Form",Form.__docgenInfo={description:"",displayName:"Form",props:{formRef:{defaultValue:null,description:"",name:"formRef",required:!1,type:{name:"Ref>"}},schema:{defaultValue:null,description:"form data schema",name:"schema",required:!1,type:{name:'ObjectSchema'}},defaultValues:{defaultValue:null,description:"default data values",name:"defaultValues",required:!1,type:{name:"any"}},onChange:{defaultValue:null,description:"change callback",name:"onChange",required:!1,type:{name:"((values: K) => void)"}},onSubmit:{defaultValue:{value:"() => undefined"},description:"submit callback after successful validation",name:"onSubmit",required:!1,type:{name:"((values: K) => void)"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/form/src/form/Form.tsx#Form"]={docgenInfo:Form.__docgenInfo,name:"Form",path:"packages/form/src/form/Form.tsx#Form"})}catch(__react_docgen_typescript_loader_error){}var dist_esm=__webpack_require__("./packages/utilities/dist/esm/index.js");const useFileUploader=(uploader,initialList,multiple=!0)=>{const[state,dispatch]=(0,react.useReducer)(((state,action)=>{if("start"===action.type&&(multiple||state.files.clear(),state.files.set(action.key,action.file),state.count++),"stop"===action.type){const fileObject=state.files.get(action.key);if(fileObject){const{progress,abort,...rest}=fileObject;state.files.set(action.key,{...rest,path:action.path,uploaded:!0})}state.count--}if("error"===action.type){const fileObject=state.files.get(action.key);if(fileObject){const{file,progress,abort,...rest}=fileObject;state.files.set(action.key,{...rest,error:action.error})}state.count--}if("progress"===action.type){const fileObject=state.files.get(action.key);fileObject&&(fileObject.progress=action.progress,state.files.set(action.key,fileObject)),state.count--}return"abort"===action.type&&state.files.delete(action.key),"remove"===action.type&&state.files.delete(action.key),state.list=Array.from(state.files.values()).map((file=>!file.progress&&!file.error&&{key:file.key,path:file.path,mime:file.mime,size:file.size,uploaded:file.uploaded,filename:file.filename})).filter(Boolean),{...state}}),{files:new Map,count:0},(state=>{if(initialList){if((0,dist_esm.Kg)(initialList)){const key=(0,dist_esm.uR)();state.files.set(key,{key,path:initialList,filename:"",size:0,mime:""})}if((0,dist_esm.Gv)(initialList)){const key=(0,dist_esm.uR)();state.files.set(key,{...initialList,key})}(0,dist_esm.cy)(initialList)&&initialList.forEach((file=>{const key=(0,dist_esm.uR)();state.files.set(key,{...file,key})}))}return state.list=Array.from(state.files.values()),state})),doUpload=(0,react.useCallback)((async(key,file)=>{const data=new FormData;data.append("file",file);const abort=new AbortController;dispatch({type:"start",key,file:{key,file,progress:.001,mime:file.type,filename:file.name,size:file.size,abort:()=>abort.abort()}}),await uploader(data,{signal:abort.signal,onUploadProgress(progressEvent){dispatch({type:"progress",key,progress:progressEvent.progress??0})}}).then((path=>{dispatch({type:"stop",key,path})})).catch((error=>{if("ERR_CANCELED"===error.code||"AbortError"===error.name)return dispatch({type:"abort",key});dispatch({type:"error",key,error:error?.message??"form:fileUploadFailed"})}))}),[]),upload=(0,react.useCallback)((files=>{multiple||Array.from(state.files.values())[0]?.abort?.(),Array.from(files??[]).slice(0,multiple?void 0:1).forEach((file=>{doUpload((0,dist_esm.uR)(),file)}))}),[multiple]),retry=(0,react.useCallback)((key=>{const fileObject=state.files.get(key);fileObject?.file&&doUpload(key,fileObject.file)}),[state]);return{upload,remove:(0,react.useCallback)((key=>{dispatch({type:"remove",key})}),[state]),retry,pending:state.count,list:state.list,files:Array.from(state.files.values())}};var es=__webpack_require__("./node_modules/react-i18next/dist/es/index.js"),core_esm=__webpack_require__("./node_modules/@dnd-kit/core/dist/core.esm.js"),sortable_esm=__webpack_require__("./node_modules/@dnd-kit/sortable/dist/sortable.esm.js"),classnames=__webpack_require__("./node_modules/classnames/index.js"),classnames_default=__webpack_require__.n(classnames),injectStylesIntoStyleTag=__webpack_require__("./node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js"),injectStylesIntoStyleTag_default=__webpack_require__.n(injectStylesIntoStyleTag),styleDomAPI=__webpack_require__("./node_modules/style-loader/dist/runtime/styleDomAPI.js"),styleDomAPI_default=__webpack_require__.n(styleDomAPI),insertBySelector=__webpack_require__("./node_modules/style-loader/dist/runtime/insertBySelector.js"),insertBySelector_default=__webpack_require__.n(insertBySelector),setAttributesWithoutAttributes=__webpack_require__("./node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js"),setAttributesWithoutAttributes_default=__webpack_require__.n(setAttributesWithoutAttributes),insertStyleElement=__webpack_require__("./node_modules/style-loader/dist/runtime/insertStyleElement.js"),insertStyleElement_default=__webpack_require__.n(insertStyleElement),styleTagTransform=__webpack_require__("./node_modules/style-loader/dist/runtime/styleTagTransform.js"),styleTagTransform_default=__webpack_require__.n(styleTagTransform),Field_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/form/src/internal/Field.module.css"),options={};options.styleTagTransform=styleTagTransform_default(),options.setAttributes=setAttributesWithoutAttributes_default(),options.insert=insertBySelector_default().bind(null,"head"),options.domAPI=styleDomAPI_default(),options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(Field_module.A,options);const internal_Field_module=Field_module.A&&Field_module.A.locals?Field_module.A.locals:void 0,FieldWrapper=({label,appendLabel,width,labelWidth=192,inline,info,disabled,required,children,listing,className,"data-inner":isInner})=>(0,jsx_runtime.jsxs)("div",{className:classnames_default()(internal_Field_module.fieldWrapper,className,inline?"flex flex-nowrap gap-1":"block"),"data-ref":"fieldWrapper",style:{width,flexBasis:width},children:[!isInner&&(0,jsx_runtime.jsxs)("div",{className:"flex flex-nowrap flex-content gap-1 py-0.5 px-2",style:{width:inline?labelWidth:void 0},children:[(0,jsx_runtime.jsx)("label",{role:"none",className:classnames_default()("flex-initial truncate text-sm",disabled&&"text-muted"),onClick:e=>e.currentTarget.closest('[data-ref="fieldWrapper"]')?.querySelector("input,textarea")?.focus(),children:label}),required&&(0,jsx_runtime.jsx)("span",{className:"text-danger-500 select-none flex-content text-[10px]",children:"✽"}),appendLabel&&(0,jsx_runtime.jsx)("span",{className:"flex-content",children:appendLabel})]}),children,listing,info&&(0,jsx_runtime.jsx)("div",{className:"text-sm text-muted flex-content",children:info})]});try{FieldWrapper.displayName="FieldWrapper",FieldWrapper.__docgenInfo={description:"",displayName:"FieldWrapper",props:{}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/form/src/internal/FieldWrapper.tsx#FieldWrapper"]={docgenInfo:FieldWrapper.__docgenInfo,name:"FieldWrapper",path:"packages/form/src/internal/FieldWrapper.tsx#FieldWrapper"})}catch(__react_docgen_typescript_loader_error){}var ArrayInput_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/form/src/input/ArrayInput.module.css"),ArrayInput_module_options={};ArrayInput_module_options.styleTagTransform=styleTagTransform_default(),ArrayInput_module_options.setAttributes=setAttributesWithoutAttributes_default(),ArrayInput_module_options.insert=insertBySelector_default().bind(null,"head"),ArrayInput_module_options.domAPI=styleDomAPI_default(),ArrayInput_module_options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(ArrayInput_module.A,ArrayInput_module_options);const input_ArrayInput_module=ArrayInput_module.A&&ArrayInput_module.A.locals?ArrayInput_module.A.locals:void 0;var modifiers_esm=__webpack_require__("./node_modules/@dnd-kit/modifiers/dist/modifiers.esm.js"),utilities_esm=__webpack_require__("./node_modules/@dnd-kit/utilities/dist/utilities.esm.js");const ArrayInput=({name,children,addLabel,fixedList,focusName="",onAdd,arrayRef,enableSorting,disabled=!1,readOnly=!1,minItems=0,...rest})=>{const{t}=(0,es.Bd)("form"),form=(0,index_esm.xW)();if(!form?.control)throw new Error("ArrayInput must be contained within a Form element");const{fields,append,remove,move}=(0,index_esm.jz)({name,control:form.control}),error=(0,react.useMemo)((()=>form.formState.errors[name]?.message??form.formState.errors[name]?.root?.message),[form.formState.errors]),handleAdd=(0,react.useCallback)((item=>{append(item),setTimeout((()=>{form.setFocus(`${name}.${fields.length}${focusName?"."+focusName:""}`)}),100)}),[name,fields,focusName]);(0,react.useImperativeHandle)(arrayRef,(()=>({addItem:handleAdd,removeItem:remove})));const Wrapper=(0,react.useCallback)((({children})=>{if(enableSorting){const idMap=fields.map((item=>item.id)),handleDragEnd=e=>{if(e.over&&e.active.id!==e.over.id){const active=idMap.indexOf(`${e.active.id}`),end=idMap.indexOf(`${e.over.id}`);move(active,end)}};return(0,jsx_runtime.jsx)(core_esm.Mp,{onDragEnd:handleDragEnd,modifiers:[modifiers_esm.FN],children:(0,jsx_runtime.jsx)(sortable_esm.gB,{items:idMap,children})})}return children}),[enableSorting,fields]);Wrapper.displayName="SortableWrapper";const SortableItem=(0,react.useCallback)((({id,children,className})=>{if(enableSorting){const{attributes,listeners,setNodeRef,transform,transition,isDragging}=(0,sortable_esm.gl)({id});return(0,jsx_runtime.jsxs)("div",{className,ref:setNodeRef,style:{transform:utilities_esm.Ks.Transform.toString(transform),transition},children:[(0,jsx_runtime.jsx)(esm.In,{className:isDragging?"cursor-grabbing":"cursor-grab",icon:esm.OO.dragHandle,...attributes,...listeners}),children]})}return(0,jsx_runtime.jsx)("div",{className,children})}),[enableSorting]);return SortableItem.displayName="SortableItem",(0,jsx_runtime.jsxs)("div",{className:input_ArrayInput_module.arrayInput,children:[(0,jsx_runtime.jsx)(FieldWrapper,{...rest,children:(0,jsx_runtime.jsx)(Wrapper,{children:fields.map(((item,index)=>(0,jsx_runtime.jsxs)(SortableItem,{id:item.id,className:"flex items-center flex-nowrap gap-2 mb-1",children:["function"==typeof children?children({index,name:`${name}.${index}`}):(0,dist_esm.t_)(children,(child=>(0,react.cloneElement)(child,Object.assign({disabled,readOnly,"data-inner":!0,name:`${name}.${index}${child.props.name?"."+child.props.name:""}`},index>0&&{label:void 0,required:void 0,appendLabel:void 0})))),!fixedList&&(0,jsx_runtime.jsx)(esm.$n,{"aria-label":"Remove item",icon:esm.OO.remove,color:"danger",variant:"link",className:"self-end",disabled:disabled||readOnly||fields.length<=minItems,onClick:()=>remove(index)})]},item.id)))})}),!fixedList&&onAdd&&(0,jsx_runtime.jsx)("div",{className:"flex justify-end",children:(0,jsx_runtime.jsx)(esm.m_,{color:"danger",content:(0,dist_esm.Kg)(error)?`${error}`:t(error?.key,error?.values?{...error?.values,label:t(error.values?.label??"form:badkey",error.values?.path)}:{}),children:(0,jsx_runtime.jsx)(esm.$n,{"aria-label":"Add item",icon:esm.OO.insert,onClick:()=>handleAdd(onAdd()),"data-invalid":!!error,disabled:!!disabled||readOnly,className:classnames_default()(input_ArrayInput_module.addButton,"me-10"),children:addLabel??t("addArray")})})})]})};try{ArrayInput.displayName="ArrayInput",ArrayInput.__docgenInfo={description:"",displayName:"ArrayInput",props:{label:{defaultValue:null,description:"input label",name:"label",required:!1,type:{name:"string"}},appendLabel:{defaultValue:null,description:"append to label end",name:"appendLabel",required:!1,type:{name:"string | number | boolean | Element"}},info:{defaultValue:null,description:"info label at bottom",name:"info",required:!1,type:{name:"string"}},required:{defaultValue:null,description:"required",name:"required",required:!1,type:{name:"boolean"}},disabled:{defaultValue:{value:"false"},description:"disabled input",name:"disabled",required:!1,type:{name:"boolean"}},readOnly:{defaultValue:{value:"false"},description:"read-only input",name:"readOnly",required:!1,type:{name:"boolean"}},name:{defaultValue:null,description:"field name",name:"name",required:!0,type:{name:"string"}},minItems:{defaultValue:{value:"0"},description:"minimum required length",name:"minItems",required:!1,type:{name:"number"}},focusName:{defaultValue:{value:""},description:"field name to focus on add",name:"focusName",required:!1,type:{name:"string"}},enableSorting:{defaultValue:null,description:"enable drag-n-drop sorting",name:"enableSorting",required:!1,type:{name:"boolean"}},addLabel:{defaultValue:null,description:"add item button label",name:"addLabel",required:!1,type:{name:"string"}},fixedList:{defaultValue:null,description:"fixed length list",name:"fixedList",required:!1,type:{name:"boolean"}},arrayRef:{defaultValue:null,description:"",name:"arrayRef",required:!1,type:{name:"Ref<{ addItem: (item: AnyObject) => void; removeItem: (idx: number) => void; }>"}},onAdd:{defaultValue:null,description:"Add item",name:"onAdd",required:!1,type:{name:"(() => AnyObject)"}},width:{defaultValue:null,description:"field width",name:"width",required:!1,type:{name:"string | number"}},inline:{defaultValue:null,description:"inline label and input",name:"inline",required:!1,type:{name:"boolean"}},labelWidth:{defaultValue:null,description:"label width for inline",name:"labelWidth",required:!1,type:{name:"string"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/form/src/input/ArrayInput.tsx#ArrayInput"]={docgenInfo:ArrayInput.__docgenInfo,name:"ArrayInput",path:"packages/form/src/input/ArrayInput.tsx#ArrayInput"})}catch(__react_docgen_typescript_loader_error){}const ErrorIcon=({error="",invalid})=>{const{t}=(0,es.Bd)();return invalid&&(0,jsx_runtime.jsx)(esm.m_,{content:(0,dist_esm.Kg)(error)?`${error}`:t(error?.key,error.values?{...error?.values,label:t(error.values?.label??"form:badkey",error.values?.path)}:{}),placement:"bottom",color:"danger",children:(0,jsx_runtime.jsx)(esm.In,{className:"flex-content first:ms-2 self-center",color:"danger",icon:esm.OO.alert})})};try{ErrorIcon.displayName="ErrorIcon",ErrorIcon.__docgenInfo={description:"",displayName:"ErrorIcon",props:{}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/form/src/internal/ErrorIcon.tsx#ErrorIcon"]={docgenInfo:ErrorIcon.__docgenInfo,name:"ErrorIcon",path:"packages/form/src/internal/ErrorIcon.tsx#ErrorIcon"})}catch(__react_docgen_typescript_loader_error){}const HiddenInput=({hiddenValue,onChange,invalid,error,value="",name})=>((0,react.useEffect)((()=>{onChange?.(hiddenValue)}),[hiddenValue]),(0,jsx_runtime.jsxs)(react.Fragment,{children:[(0,jsx_runtime.jsx)("input",{type:"hidden",onChange,value,name}),(0,jsx_runtime.jsx)(ErrorIcon,{invalid,error})]}));try{HiddenInput.displayName="HiddenInput",HiddenInput.__docgenInfo={description:"",displayName:"HiddenInput",props:{name:{defaultValue:null,description:"field name",name:"name",required:!1,type:{name:"string"}},hiddenValue:{defaultValue:null,description:"hidden value will fire change for form update",name:"hiddenValue",required:!1,type:{name:"any"}},onChange:{defaultValue:null,description:"form onChange handler",name:"onChange",required:!1,type:{name:"((value: AnyObject) => void)"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/form/src/input/Hidden.tsx#HiddenInput"]={docgenInfo:HiddenInput.__docgenInfo,name:"HiddenInput",path:"packages/form/src/input/Hidden.tsx#HiddenInput"})}catch(__react_docgen_typescript_loader_error){}const AvatarInput=({src,size="6rem",fileUrl,uploadHandler,...rest})=>{const{files,list,upload,remove}=useFileUploader((async(data,config)=>await(uploadHandler?.(data,config))),rest.value,!1),[base64,setBase64]=(0,react.useState)("");return(0,react.useEffect)((()=>{if(list?.length){const file=files?.[0]?.file;file&&new Response(file).blob().then((blob=>{const reader=new FileReader;reader.onload=()=>{setBase64(reader.result)},reader.onerror=e=>{console.error("ERROR",e)},reader.readAsDataURL(blob)}))}else setBase64("")}),[files,list]),(0,react.useEffect)((()=>{src&&setBase64(fileUrl?.(src)??src)}),[src]),(0,jsx_runtime.jsxs)("div",{className:"flex flex-nowrap items-end",children:[(0,jsx_runtime.jsxs)("div",{className:"inline-block leading-none rounded-full relative outline overflow-hidden",children:[(0,jsx_runtime.jsx)(esm.eu,{name:"temp",size,avatar:base64}),(0,jsx_runtime.jsxs)("div",{className:"absolute inset-x-0 bottom-0 cursor-pointer bg-opacity-20 hover:bg-opacity-50 bg-black text-white text-xs text-center py-1",children:[(0,jsx_runtime.jsx)("span",{children:"Edit"}),(0,jsx_runtime.jsx)("input",{type:"file",accept:"image/*",className:"absolute inset-0 opacity-0 z-5 cursor-pointer",onChange:e=>[upload(e.target.files),e.target.value=""]})]})]}),(0,jsx_runtime.jsx)(HiddenInput,{hiddenValue:list?.[0]?.path,...rest}),files.map(((file,idx)=>(0,jsx_runtime.jsxs)("div",{className:"px-2 py-1 flex-1",children:[(0,jsx_runtime.jsxs)("div",{className:"flex flex-nowrap gap-1 items-center",children:[(0,jsx_runtime.jsx)("div",{className:"flex-initial truncate pe-2",children:file.filename}),file.error&&(0,jsx_runtime.jsx)("div",{className:"flex-1 truncate px-2",children:(0,jsx_runtime.jsx)("span",{className:"text-danger-600",children:file.error})}),file.progress&&(0,jsx_runtime.jsx)(esm.In,{icon:"mdi mdi-stop-circle",bg:"danger",color:"white",size:"sm",className:"p-[2px]","aria-label":"abort",onClick:()=>file.abort?.()}),!file.progress&&(0,jsx_runtime.jsx)(esm.In,{icon:"mdi mdi-trash-can",color:"danger",size:"sm","aria-label":"remove",onClick:()=>remove(file.key)})]}),file.progress&&(0,jsx_runtime.jsx)(esm.z2,{animate:!0,value:100*file.progress,size:"xxs"})]},idx)))]})};try{AvatarInput.displayName="AvatarInput",AvatarInput.__docgenInfo={description:"",displayName:"AvatarInput",props:{name:{defaultValue:null,description:"field name",name:"name",required:!1,type:{name:"string"}},value:{defaultValue:null,description:"actual avatar storage path",name:"value",required:!1,type:{name:"string"}},src:{defaultValue:null,description:"avatar stream src",name:"src",required:!1,type:{name:"string"}},size:{defaultValue:{value:"6rem"},description:"",name:"size",required:!1,type:{name:"string | number"}},uploadHandler:{defaultValue:null,description:"upload handler to store file in temp storage",name:"uploadHandler",required:!0,type:{name:"UploadHandler"}},fileUrl:{defaultValue:null,description:"",name:"fileUrl",required:!1,type:{name:"((path: string) => string)"}},onChange:{defaultValue:null,description:"change handler\n@param file\n@param base64\n@returns storage path",name:"onChange",required:!1,type:{name:"((path: string) => void)"}},ref:{defaultValue:null,description:"",name:"ref",required:!1,type:{name:"Ref"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/form/src/input/AvatarInput.tsx#AvatarInput"]={docgenInfo:AvatarInput.__docgenInfo,name:"AvatarInput",path:"packages/form/src/input/AvatarInput.tsx#AvatarInput"})}catch(__react_docgen_typescript_loader_error){}var color=__webpack_require__("./node_modules/color/index.js"),color_default=__webpack_require__.n(color),react_color_es=__webpack_require__("./node_modules/react-color/es/index.js"),ColorPicker_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/form/src/input/ColorPicker.module.css"),ColorPicker_module_options={};ColorPicker_module_options.styleTagTransform=styleTagTransform_default(),ColorPicker_module_options.setAttributes=setAttributesWithoutAttributes_default(),ColorPicker_module_options.insert=insertBySelector_default().bind(null,"head"),ColorPicker_module_options.domAPI=styleDomAPI_default(),ColorPicker_module_options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(ColorPicker_module.A,ColorPicker_module_options);const input_ColorPicker_module=ColorPicker_module.A&&ColorPicker_module.A.locals?ColorPicker_module.A.locals:void 0,DEFAULT_SWATCHES=[color_default()("#d7323a").mix(color_default()("#171a1c"),.5).hex(),color_default()("#ff781c").mix(color_default()("#171a1c"),.5).hex(),color_default()("#f7b731").mix(color_default()("#171a1c"),.5).hex(),color_default()("#88ab1b").mix(color_default()("#171a1c"),.5).hex(),color_default()("#22aa85").mix(color_default()("#171a1c"),.5).hex(),color_default()("#399bec").mix(color_default()("#171a1c"),.5).hex(),color_default()("#4862c8").mix(color_default()("#171a1c"),.5).hex(),color_default()("#aa66cf").mix(color_default()("#171a1c"),.5).hex(),color_default()("#f43f7b").mix(color_default()("#171a1c"),.5).hex(),color_default()("#a37f4f").mix(color_default()("#171a1c"),.5).hex(),"#d7323a","#ff781c","#f7b731","#88ab1b","#22aa85","#399bec","#4862c8","#aa66cf","#f43f7b","#a37f4f",color_default()("#d7323a").mix(color_default()("#f1f3f4"),.5).hex(),color_default()("#ff781c").mix(color_default()("#f1f3f4"),.5).hex(),color_default()("#f7b731").mix(color_default()("#f1f3f4"),.5).hex(),color_default()("#88ab1b").mix(color_default()("#f1f3f4"),.5).hex(),color_default()("#22aa85").mix(color_default()("#f1f3f4"),.5).hex(),color_default()("#399bec").mix(color_default()("#f1f3f4"),.5).hex(),color_default()("#4862c8").mix(color_default()("#f1f3f4"),.5).hex(),color_default()("#aa66cf").mix(color_default()("#f1f3f4"),.5).hex(),color_default()("#f43f7b").mix(color_default()("#f1f3f4"),.5).hex(),color_default()("#a37f4f").mix(color_default()("#f1f3f4"),.5).hex(),"#171a1c","#2d3439","#444e55","#5b6971","#71838e","#86959e","#9ca8b0","#b8c1c6","#d5dadd","#f1f3f4"],ColorPicker=(0,react.memo)((({value,onChange,hideAlpha,defaultColor="#fff",swatches=DEFAULT_SWATCHES})=>{const[actualValue,setActualValue]=(0,react.useState)(""),deferred=(0,react.useDeferredValue)(value??defaultColor);(0,react.useEffect)((()=>{setActualValue(deferred??"")}),[deferred]);const handleChange=(0,react.useCallback)((e=>{setActualValue(e??defaultColor),null!=onChange&&(0,react.startTransition)((()=>onChange(e)))}),[onChange]);return(0,jsx_runtime.jsx)(react_color_es.Xq,{width:"16rem",className:input_ColorPicker_module.colorPicker,styles:{default:{hue:{borderRadius:"99px",boxShadow:"0 0 1px 1px var(--color-shadow)"},alpha:{height:"1rem",borderRadius:"99px",backgroundColor:"var(--fabric-bg)",boxShadow:"0 0 1px 1px var(--color-shadow)"},color:{boxShadow:"0 0 1px 1px var(--color-shadow)"},saturation:{boxShadow:"0 0 1px 1px var(--color-shadow)"},activeColor:{boxShadow:"0 0 1px 1px var(--color-shadow)"},picker:{backgroundColor:"var(--fabric-bg)",boxShadow:"0 0 0 1px var(--color-shadow), 0 0 8px var(--fabric-shadow)"},Alpha:{alpha:{paddingRight:"calc(1rem - 2px)"},slider:{width:"calc(1rem - 2px)",borderRadius:"99px",height:"calc(1rem - 2px)",transform:"none"}},Hue:{hue:{paddingRight:"calc(1rem - 2px)"},slider:{width:"calc(1rem - 2px)",borderRadius:"99px",height:"calc(1rem - 2px)",transform:"none"}},Saturation:{circle:{width:"0.5rem",borderRadius:"99px",height:"0.5rem",transform:"translate(-0.25rem, -0.25rem)"}},checkboard:{white:"transparent",black:"red"}}},color:actualValue,presetColors:swatches,disableAlpha:hideAlpha,onChange:({rgb:{a=1,...rgb}})=>setActualValue(color_default()(rgb).alpha(a)[a<1?"hexa":"hex"]()),onChangeComplete:({rgb:{a=1,...rgb}})=>handleChange(color_default()(rgb).alpha(a)[a<1?"hexa":"hex"]())})}));try{ColorPicker.displayName="ColorPicker",ColorPicker.__docgenInfo={description:"",displayName:"ColorPicker",props:{swatches:{defaultValue:null,description:"color swatches",name:"swatches",required:!1,type:{name:"string[]"}},defaultColor:{defaultValue:null,description:"default color",name:"defaultColor",required:!1,type:{name:"string"}},hideAlpha:{defaultValue:null,description:"hide alpha value",name:"hideAlpha",required:!1,type:{name:"boolean"}},value:{defaultValue:null,description:"color value",name:"value",required:!1,type:{name:"string"}},onChange:{defaultValue:null,description:"change handler",name:"onChange",required:!1,type:{name:"((color?: string) => void)"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/form/src/input/ColorPicker.tsx#ColorPicker"]={docgenInfo:ColorPicker.__docgenInfo,name:"ColorPicker",path:"packages/form/src/input/ColorPicker.tsx#ColorPicker"})}catch(__react_docgen_typescript_loader_error){}const ColorInput=({ref,required,disabled,allowClear,invalid,error,value,showPicker,defaultColor="",decorateEnd,decorateStart,onChange,noOutline,...rest})=>{const[actualValue,setActualValue]=(0,react.useState)(""),deferred=(0,react.useDeferredValue)(value??defaultColor);(0,react.useEffect)((()=>{setActualValue(deferred??"")}),[deferred]);const handleChange=(0,react.useCallback)((e=>{setActualValue(e??defaultColor),null!=onChange&&(0,react.startTransition)((()=>onChange(e)))}),[onChange]);return(0,jsx_runtime.jsxs)("div",{className:classnames_default()("flex-content min-h-[1.5em] min-w-[3.5em] self-stretch flex items-center outline-tint-200 rounded",!disabled&&"bg-base",!noOutline&&"bg-[var(--fabric-input)] outline overflow-hidden"),children:[decorateStart&&(0,jsx_runtime.jsx)("div",{className:classnames_default()("text-muted leading-none flex-content",(0,dist_esm.Kg)(decorateStart)&&"px-2"),children:decorateStart}),(0,jsx_runtime.jsxs)(esm.ms,{showArrow:!0,disabled,children:[(0,jsx_runtime.jsx)("button",{"data-ref":"button",className:"flex-1 flex items-center",children:(0,jsx_runtime.jsx)("div",{role:"none",className:"h-[1.5em] min-w-[1.5em] flex-1 flex items-center justify-center self-stretch cursor-pointer m-[0.25em] rounded outline outline-tint-100",style:{backgroundColor:actualValue,opacity:disabled?.65:1,pointerEvents:disabled?"none":void 0},onClick:e=>e.currentTarget.nextElementSibling?.focus(),children:!actualValue&&(0,jsx_runtime.jsx)(esm.In,{size:"md",className:"text-muted",icon:esm.OO.colorSwatch})})}),(0,jsx_runtime.jsx)(ColorPicker,{...rest,onChange:handleChange,defaultColor,value:actualValue})]}),!disabled&&showPicker&&(0,jsx_runtime.jsx)(esm.In,{icon:esm.OO.colorPicker,onClick:()=>window.EyeDropper&&(new window.EyeDropper).open().then((resp=>handleChange(resp.sRGBHex)))}),decorateEnd&&(0,jsx_runtime.jsx)("div",{className:classnames_default()("text-muted leading-none flex-content",(0,dist_esm.Kg)(decorateEnd)&&"px-2"),children:decorateEnd}),!disabled&&allowClear&&actualValue!==defaultColor&&(0,jsx_runtime.jsx)(esm.In,{icon:esm.OO.close,onClick:()=>handleChange(),className:classnames_default()("text-tint-500 hover:text-tint-700 p-[0.25em] flex-content")})]})};try{ColorInput.displayName="ColorInput",ColorInput.__docgenInfo={description:"",displayName:"ColorInput",props:{showPicker:{defaultValue:null,description:"show eydrop picker",name:"showPicker",required:!1,type:{name:"boolean"}},value:{defaultValue:null,description:"value",name:"value",required:!1,type:{name:"string"}},onChange:{defaultValue:null,description:"change handler",name:"onChange",required:!1,type:{name:"((value?: string) => void)"}},onFocus:{defaultValue:null,description:"on focus event handler",name:"onFocus",required:!1,type:{name:"FocusEventHandler"}},onBlur:{defaultValue:null,description:"on blur event handler",name:"onBlur",required:!1,type:{name:"FocusEventHandler"}},onEnterPressed:{defaultValue:null,description:"on enter press callback",name:"onEnterPressed",required:!1,type:{name:"KeyboardEventHandler"}},name:{defaultValue:null,description:"input name",name:"name",required:!1,type:{name:"string"}},label:{defaultValue:null,description:"input label",name:"label",required:!1,type:{name:"string"}},placeholder:{defaultValue:null,description:"input placeholder",name:"placeholder",required:!1,type:{name:"string"}},appendLabel:{defaultValue:null,description:"append to label end",name:"appendLabel",required:!1,type:{name:"string | number | boolean | Element"}},decorateStart:{defaultValue:null,description:"",name:"decorateStart",required:!1,type:{name:"string | number | boolean | Element"}},decorateEnd:{defaultValue:null,description:"",name:"decorateEnd",required:!1,type:{name:"string | number | boolean | Element"}},info:{defaultValue:null,description:"info label at bottom",name:"info",required:!1,type:{name:"string"}},required:{defaultValue:null,description:"required",name:"required",required:!1,type:{name:"boolean"}},disabled:{defaultValue:null,description:"disabled input",name:"disabled",required:!1,type:{name:"boolean"}},readOnly:{defaultValue:null,description:"read-only input",name:"readOnly",required:!1,type:{name:"boolean"}},autoFocus:{defaultValue:null,description:"auto focus when rendered",name:"autoFocus",required:!1,type:{name:"boolean"}},allowClear:{defaultValue:null,description:"show clear button",name:"allowClear",required:!1,type:{name:"boolean"}},invalid:{defaultValue:null,description:"invalid value input",name:"invalid",required:!1,type:{name:"boolean"}},error:{defaultValue:null,description:"error message",name:"error",required:!1,type:{name:"string"}},width:{defaultValue:null,description:"field width",name:"width",required:!1,type:{name:"string | number"}},inline:{defaultValue:null,description:"inline label and input",name:"inline",required:!1,type:{name:"boolean"}},labelWidth:{defaultValue:null,description:"label width for inline",name:"labelWidth",required:!1,type:{name:"string"}},"data-testid":{defaultValue:null,description:"data attribute for test id",name:"data-testid",required:!1,type:{name:"string"}},"data-test-value":{defaultValue:null,description:"data attribute for test value",name:"data-test-value",required:!1,type:{name:"any"}},swatches:{defaultValue:null,description:"color swatches",name:"swatches",required:!1,type:{name:"string[]"}},defaultColor:{defaultValue:{value:""},description:"default color",name:"defaultColor",required:!1,type:{name:"string"}},hideAlpha:{defaultValue:null,description:"hide alpha value",name:"hideAlpha",required:!1,type:{name:"boolean"}},ref:{defaultValue:null,description:"",name:"ref",required:!1,type:{name:"Ref"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/form/src/input/ColorInput.tsx#ColorInput"]={docgenInfo:ColorInput.__docgenInfo,name:"ColorInput",path:"packages/form/src/input/ColorInput.tsx#ColorInput"})}catch(__react_docgen_typescript_loader_error){}var floating_ui_react=__webpack_require__("./node_modules/@floating-ui/react/dist/floating-ui.react.mjs");const InputWrapper=({invalid,error,allowClear,showClear,decorateStart,decorateEnd,children,onClear,noOutline,noBorder,textarea=!1,"data-inner":isInner,"data-open":isOpen,floatingExpand,wrapperRef,width,...rest})=>{const elRef=(0,react.useRef)(null),[isExpanded,setExpanded]=(0,react.useState)(!1),Wrapper=(0,react.useMemo)((()=>isInner||!rest.label?jsx_runtime.Fragment:FieldWrapper),[isInner,rest.label]),wrapperProps=(0,react.useMemo)((()=>isInner||!rest.label?{}:{...rest,width}),[isInner,rest,width]),handleClear=(0,react.useCallback)((e=>{e.currentTarget.parentElement?.querySelector("input,textarea,button")?.focus(),onClear?.()}),[onClear]),doFocus=(0,react.useCallback)((e=>{e.currentTarget.parentElement?.querySelector("input,textarea,button")?.focus()}),[onClear]);(0,react.useEffect)((()=>{isExpanded&&setTimeout((()=>wrapperRef?.current?.querySelector("textarea")?.focus()),50)}),[isExpanded]);const el=(0,jsx_runtime.jsxs)("div",{role:"none",ref:wrapperRef,className:classnames_default()(internal_Field_module.inputWrapper,invalid&&internal_Field_module.invalidWrapper,!noOutline&&!noBorder&&"bg-[var(--fabric-input)] outline overflow-hidden","flex flex-nowrap items-center",textarea?"rounded-capped group":"rounded",isExpanded?"fixed inset-4 z-[99]":floatingExpand?"absolute inset-x-0":"relative",!noOutline&&"after:absolute after:bottom-0 after:h-px after:bg-primary-500 after:mx-auto"),onKeyDown:e=>"Escape"===e.key&&setExpanded(!1),children:[decorateStart&&(0,jsx_runtime.jsx)("div",{onClickCapture:doFocus,className:classnames_default()(internal_Field_module.decorate,"text-muted leading-none flex-content",(0,dist_esm.Kg)(decorateStart)&&"px-1"),children:decorateStart}),(0,jsx_runtime.jsx)(ErrorIcon,{invalid,error}),children,allowClear&&showClear&&(0,jsx_runtime.jsx)(esm.In,{icon:esm.OO.close,onClick:handleClear,className:classnames_default()("text-tint-500 hover:text-tint-700 p-1 z-1 flex-content",internal_Field_module.inputClear,textarea&&"self-start mt-1 me-1")}),decorateEnd&&(0,jsx_runtime.jsx)("div",{onClickCapture:doFocus,className:classnames_default()(internal_Field_module.decorate,"text-muted leading-none flex-content",(0,dist_esm.Kg)(decorateEnd)&&"px-1"),children:decorateEnd}),textarea&&(0,jsx_runtime.jsx)(esm.In,{onClick:()=>setExpanded(!isExpanded),icon:isExpanded?esm.OO.arrowCollapse:esm.OO.arrowExpand,className:"hidden group-hover:block absolute top-0 end-0 bg-base hover:bg-tint-200 p-1 opacity-65 rounded-capped"})]});return(0,jsx_runtime.jsx)(Wrapper,{...wrapperProps,children:(0,jsx_runtime.jsxs)("div",{ref:elRef,className:"flex-1 relative min-h-8",style:{width,flexBasis:width},children:[!isExpanded&&el,isExpanded&&(0,jsx_runtime.jsx)(floating_ui_react.XF,{root:elRef.current?.closest(".theme-base"),children:el})]})})};try{InputWrapper.displayName="InputWrapper",InputWrapper.__docgenInfo={description:"",displayName:"InputWrapper",props:{}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/form/src/internal/InputWrapper.tsx#InputWrapper"]={docgenInfo:InputWrapper.__docgenInfo,name:"InputWrapper",path:"packages/form/src/internal/InputWrapper.tsx#InputWrapper"})}catch(__react_docgen_typescript_loader_error){}const handleEnter=(callback,{stopPropagation=!1,preventDefault=!1}={})=>{const cbHandle=(0,dist_esm.sg)(callback??(()=>{}),100);return e=>{if(!e.shiftKey&&!e.altKey&&!e.metaKey&&"Enter"===e.key&&callback&&(stopPropagation&&e?.stopPropagation(),cbHandle(e),preventDefault))return e.preventDefault(),!1}},getColor=color=>{if(color&&(0,dist_esm._o)(color))return color},getBgClass=bg=>{if(bg&&!(0,dist_esm._o)(bg))return`bg-${bg}`},getColorClass=color=>{if(color&&!(0,dist_esm._o)(color))return`text-${color}`},Input=({ref,name,value,invalid,readOnly,disabled,required,placeholder,autoFocus,error,type="text",onChange,onEnterPressed,...rest})=>{const[actualValue,setActualValue]=(0,react.useState)(""),deferred=(0,react.useDeferredValue)(value),handleEnterPressed=(0,react.useMemo)((()=>handleEnter(onEnterPressed)),[onEnterPressed]);(0,react.useEffect)((()=>{setActualValue(deferred??"")}),[deferred]);const handleChange=(0,react.useCallback)((e=>{const value=e?.target.value;setActualValue(value??""),onChange?.(value??void 0)}),[onchange]);return(0,jsx_runtime.jsx)(InputWrapper,{showClear:!!actualValue,onClear:handleChange,invalid,readOnly,disabled,required,error,...rest,children:(0,jsx_runtime.jsx)("input",{className:"appearance-none bg-transparent py-1 px-2 flex-1 border-none outline-none ring-0 peer","aria-invalid":invalid,"aria-disabled":disabled,"aria-readonly":readOnly,"aria-errormessage":error,placeholder,disabled,readOnly,"data-testid":name,name,size:1,type,ref,autoComplete:"off",autoFocus,value:actualValue,onChange:handleChange,onKeyDown:handleEnterPressed})})};try{Input.displayName="Input",Input.__docgenInfo={description:"",displayName:"Input",props:{type:{defaultValue:{value:"text"},description:"input type",name:"type",required:!1,type:{name:"enum",value:[{value:'"text"'},{value:'"search"'},{value:'"tel"'},{value:'"url"'},{value:'"email"'},{value:'"file"'}]}},value:{defaultValue:null,description:"value",name:"value",required:!1,type:{name:"string"}},onChange:{defaultValue:null,description:"change handler",name:"onChange",required:!1,type:{name:"((value?: string) => void)"}},onFocus:{defaultValue:null,description:"on focus event handler",name:"onFocus",required:!1,type:{name:"FocusEventHandler"}},onBlur:{defaultValue:null,description:"on blur event handler",name:"onBlur",required:!1,type:{name:"FocusEventHandler"}},onEnterPressed:{defaultValue:null,description:"on enter press callback",name:"onEnterPressed",required:!1,type:{name:"KeyboardEventHandler"}},name:{defaultValue:null,description:"input name",name:"name",required:!1,type:{name:"string"}},label:{defaultValue:null,description:"input label",name:"label",required:!1,type:{name:"string"}},placeholder:{defaultValue:null,description:"input placeholder",name:"placeholder",required:!1,type:{name:"string"}},appendLabel:{defaultValue:null,description:"append to label end",name:"appendLabel",required:!1,type:{name:"string | number | boolean | Element"}},decorateStart:{defaultValue:null,description:"",name:"decorateStart",required:!1,type:{name:"string | number | boolean | Element"}},decorateEnd:{defaultValue:null,description:"",name:"decorateEnd",required:!1,type:{name:"string | number | boolean | Element"}},info:{defaultValue:null,description:"info label at bottom",name:"info",required:!1,type:{name:"string"}},required:{defaultValue:null,description:"required",name:"required",required:!1,type:{name:"boolean"}},disabled:{defaultValue:null,description:"disabled input",name:"disabled",required:!1,type:{name:"boolean"}},readOnly:{defaultValue:null,description:"read-only input",name:"readOnly",required:!1,type:{name:"boolean"}},autoFocus:{defaultValue:null,description:"auto focus when rendered",name:"autoFocus",required:!1,type:{name:"boolean"}},allowClear:{defaultValue:null,description:"show clear button",name:"allowClear",required:!1,type:{name:"boolean"}},invalid:{defaultValue:null,description:"invalid value input",name:"invalid",required:!1,type:{name:"boolean"}},error:{defaultValue:null,description:"error message",name:"error",required:!1,type:{name:"string"}},width:{defaultValue:null,description:"field width",name:"width",required:!1,type:{name:"string | number"}},inline:{defaultValue:null,description:"inline label and input",name:"inline",required:!1,type:{name:"boolean"}},labelWidth:{defaultValue:null,description:"label width for inline",name:"labelWidth",required:!1,type:{name:"string"}},"data-testid":{defaultValue:null,description:"data attribute for test id",name:"data-testid",required:!1,type:{name:"string"}},"data-test-value":{defaultValue:null,description:"data attribute for test value",name:"data-test-value",required:!1,type:{name:"any"}},ref:{defaultValue:null,description:"",name:"ref",required:!1,type:{name:"Ref"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/form/src/input/Input.tsx#Input"]={docgenInfo:Input.__docgenInfo,name:"Input",path:"packages/form/src/input/Input.tsx#Input"})}catch(__react_docgen_typescript_loader_error){}const Number_Number=({ref,value,invalid,readOnly,disabled,required,placeholder,autoFocus,name,min,max,step,onChange,onEnterPressed,...rest})=>{const[actualValue,setActualValue]=(0,react.useState)(""),deferred=(0,react.useDeferredValue)(value),handleEnterPressed=(0,react.useMemo)((()=>handleEnter(onEnterPressed)),[onEnterPressed]);(0,react.useEffect)((()=>{setActualValue(deferred??"")}),[deferred]);const handleChange=(0,react.useCallback)((e=>{const number=e?.target.valueAsNumber;setActualValue(number??""),onChange?.(number??void 0)}),[onChange]);return(0,jsx_runtime.jsx)(InputWrapper,{showClear:!!actualValue,onClear:handleChange,invalid,readOnly,disabled,required,...rest,children:(0,jsx_runtime.jsx)("input",{className:"appearance-none bg-transparent py-1 px-2 flex-1 border-none outline-none ring-0","aria-invalid":invalid,"aria-disabled":disabled,"aria-readonly":readOnly,placeholder,disabled,readOnly,"data-testid":name,name,type:"number",size:1,min,max,step,ref,autoComplete:"off",autoFocus,value:actualValue,onChange:handleChange,onKeyDown:handleEnterPressed})})};try{Number_Number.displayName="Number",Number_Number.__docgenInfo={description:"",displayName:"Number",props:{min:{defaultValue:null,description:"minimum value",name:"min",required:!1,type:{name:"number"}},max:{defaultValue:null,description:"maximum value",name:"max",required:!1,type:{name:"number"}},step:{defaultValue:null,description:"increment step",name:"step",required:!1,type:{name:"number"}},value:{defaultValue:null,description:"value",name:"value",required:!1,type:{name:"number"}},onChange:{defaultValue:null,description:"change handler",name:"onChange",required:!1,type:{name:"((value?: number) => void)"}},onFocus:{defaultValue:null,description:"on focus event handler",name:"onFocus",required:!1,type:{name:"FocusEventHandler"}},onBlur:{defaultValue:null,description:"on blur event handler",name:"onBlur",required:!1,type:{name:"FocusEventHandler"}},onEnterPressed:{defaultValue:null,description:"on enter press callback",name:"onEnterPressed",required:!1,type:{name:"KeyboardEventHandler"}},name:{defaultValue:null,description:"input name",name:"name",required:!1,type:{name:"string"}},label:{defaultValue:null,description:"input label",name:"label",required:!1,type:{name:"string"}},placeholder:{defaultValue:null,description:"input placeholder",name:"placeholder",required:!1,type:{name:"string"}},appendLabel:{defaultValue:null,description:"append to label end",name:"appendLabel",required:!1,type:{name:"string | number | boolean | Element"}},decorateStart:{defaultValue:null,description:"",name:"decorateStart",required:!1,type:{name:"string | number | boolean | Element"}},decorateEnd:{defaultValue:null,description:"",name:"decorateEnd",required:!1,type:{name:"string | number | boolean | Element"}},info:{defaultValue:null,description:"info label at bottom",name:"info",required:!1,type:{name:"string"}},required:{defaultValue:null,description:"required",name:"required",required:!1,type:{name:"boolean"}},disabled:{defaultValue:null,description:"disabled input",name:"disabled",required:!1,type:{name:"boolean"}},readOnly:{defaultValue:null,description:"read-only input",name:"readOnly",required:!1,type:{name:"boolean"}},autoFocus:{defaultValue:null,description:"auto focus when rendered",name:"autoFocus",required:!1,type:{name:"boolean"}},allowClear:{defaultValue:null,description:"show clear button",name:"allowClear",required:!1,type:{name:"boolean"}},invalid:{defaultValue:null,description:"invalid value input",name:"invalid",required:!1,type:{name:"boolean"}},error:{defaultValue:null,description:"error message",name:"error",required:!1,type:{name:"string"}},width:{defaultValue:null,description:"field width",name:"width",required:!1,type:{name:"string | number"}},inline:{defaultValue:null,description:"inline label and input",name:"inline",required:!1,type:{name:"boolean"}},labelWidth:{defaultValue:null,description:"label width for inline",name:"labelWidth",required:!1,type:{name:"string"}},"data-testid":{defaultValue:null,description:"data attribute for test id",name:"data-testid",required:!1,type:{name:"string"}},"data-test-value":{defaultValue:null,description:"data attribute for test value",name:"data-test-value",required:!1,type:{name:"any"}},ref:{defaultValue:null,description:"",name:"ref",required:!1,type:{name:"Ref"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/form/src/input/Number.tsx#Number"]={docgenInfo:Number_Number.__docgenInfo,name:"Number",path:"packages/form/src/input/Number.tsx#Number"})}catch(__react_docgen_typescript_loader_error){}const getBoundingClientRect=element=>{const rect=element.getBoundingClientRect();return{top:Math.ceil(rect.top),left:Math.ceil(rect.left),right:Math.ceil(rect.right),width:Math.ceil(rect.width),bottom:Math.ceil(rect.bottom),height:Math.ceil(rect.height)}},sortNumList=arr=>[...arr].map(Number).sort(((a,b)=>a-b)),linearInterpolator_getPercentageForValue=(val,min,max)=>Math.max(0,Math.min(100,(val-min)/(max-min)*100)),linearInterpolator_getValueForClientX=(clientX,trackDims,min,max,isRtl)=>{const{left,right,width}=trackDims;return(max-min)*((isRtl?right-clientX:clientX-left)/width)+min},linearInterpolator_getValueForClientY=(clientY,trackDims,min,max)=>{const{height,bottom}=trackDims;return(max-min)*((bottom-clientY)/height)+min},useRanger=opts=>{const tickSize=opts.tickSize??10,values=opts.values,min=opts.min,max=opts.max,isVertical=opts.vertical,controlledTicks=opts.ticks,steps="steps"in opts?opts.steps:void 0,onChange=opts.onChange,onDrag=opts.onDrag,onDragStart=opts.onDragStart,onDragEnd=opts.onDragEnd,stepSize="stepSize"in opts?opts.stepSize:1,[activeHandleIndex,setActiveHandleIndex]=(0,react.useState)(),[segmentStart,setSegmentStart]=(0,react.useState)(),[tempValues,setTempValues]=(0,react.useState)(),isRtl=(0,esm.OL)(),positionProp=(0,react.useMemo)((()=>isVertical?"bottom":isRtl?"right":"left"),[isVertical,isRtl]),marginProp=(0,react.useMemo)((()=>isVertical?"marginBottom":isRtl?"marginRight":"marginLeft"),[isVertical,isRtl]),getLatest=(val=>{const ref=(0,react.useRef)(val);return ref.current=val,(0,react.useCallback)((()=>ref.current),[])})({activeHandleIndex,segmentStart,onChange,onDrag,onDragStart,onDragEnd,values,tempValues}),trackElRef=(0,react.useRef)(null),segmentElRef=(0,react.useRef)(null),getValueForClientX=(0,react.useCallback)((clientX=>{const trackDims=getBoundingClientRect(trackElRef.current);return linearInterpolator_getValueForClientX(clientX,trackDims,min,max,isRtl)}),[max,min,isRtl]),getValueForClientY=(0,react.useCallback)((clientY=>{const trackDims=getBoundingClientRect(trackElRef.current);return linearInterpolator_getValueForClientY(clientY,trackDims,min,max)}),[max,min]),getNextStep=(0,react.useCallback)(((val,direction)=>{if(steps){const nextIndex=steps.indexOf(val)+direction;return nextIndex>=0&&nextIndex=min&&nextVal<=max?nextVal:val}}),[max,min,stepSize,steps]),roundToStep=(0,react.useCallback)((val=>{let left=min,right=max;if(steps)steps.forEach((step=>{step<=val&&step>left&&(left=step),step>=val&&step{const{activeHandleIndex,onDrag}=getLatest(),clientX="touchmove"===e.type?e.changedTouches[0].clientX:e.clientX,clientY="touchmove"===e.type?e.changedTouches[0].clientY:e.clientY,newValue=isVertical?getValueForClientY(clientY):getValueForClientX(clientX),newRoundedValue=roundToStep(newValue),newValues=[...values.slice(0,activeHandleIndex),newRoundedValue,...values.slice(+activeHandleIndex+1)];onDrag?.(newValues),setTempValues(newValues)}),[getLatest,getValueForClientX,getValueForClientY,roundToStep,values,isVertical]),handleSegmentDrag=(0,react.useCallback)((e=>{const{segmentStart:[segX,segY],tempValues,onDrag}=getLatest(),{left,bottom}=getBoundingClientRect(segmentElRef.current),clientX="touchmove"===e.type?e.changedTouches[0].clientX:e.clientX,clientY="touchmove"===e.type?e.changedTouches[0].clientY:e.clientY,start=getValueForClientX(isVertical?bottom+(clientY-segY):left+(clientX-segX));let diff=roundToStep(start)-tempValues[0];+tempValues[1]+diff>max&&(diff=0);const newValues=[+tempValues[0]+diff,+tempValues[1]+diff];tempValues[0]===newValues[0]&&tempValues[1]===newValues[1]||(onDrag?.(newValues),setTempValues(newValues),setSegmentStart([clientX,clientY]))}),[getLatest,getValueForClientX,getValueForClientY,roundToStep,values,isVertical,max]),handleKeyDown=(0,react.useCallback)(((e,i)=>{const{values,onChange}=getLatest();if(["ArrowLeft","ArrowUp","ArrowRight","ArrowDown"].includes(e.key)){setActiveHandleIndex(i);const direction=["ArrowLeft","ArrowDown"].includes(e.key)?-1:1,newValue=+getNextStep(values[i],direction).toFixed(3),newValues=[...values.slice(0,i),newValue,...values.slice(i+1)],sortedValues=sortNumList(newValues);onChange?.(sortedValues),e.stopPropagation(),e.preventDefault()}}),[getLatest,getNextStep]),handlePress=(0,react.useCallback)(((e,i)=>{const{onDragStart,values}=getLatest();if(-1===i){const clientX="touchmove"===e.type?e.nativeEvent.changedTouches[0].clientX:e.nativeEvent.clientX,clientY="touchmove"===e.type?e.nativeEvent.changedTouches[0].clientY:e.nativeEvent.clientY;setTempValues(values),setSegmentStart([clientX,clientY])}else setActiveHandleIndex(i);const handleRelease=e=>{const{tempValues,onChange,onDragEnd}=getLatest();document.removeEventListener("mousemove",-1===i?handleSegmentDrag:handleDrag),document.removeEventListener("touchmove",-1===i?handleSegmentDrag:handleDrag),document.removeEventListener("mouseup",handleRelease,{capture:!0}),document.removeEventListener("touchend",handleRelease,{capture:!0});const sortedValues=sortNumList(tempValues||values);onDragEnd?.(),onChange?.(sortedValues),setActiveHandleIndex(void 0),setSegmentStart(void 0),setTempValues(void 0)};onDragStart?.(),document.addEventListener("mousemove",-1===i?handleSegmentDrag:handleDrag),document.addEventListener("touchmove",-1===i?handleSegmentDrag:handleDrag),document.addEventListener("mouseup",handleRelease,{capture:!0}),document.addEventListener("touchend",handleRelease,{capture:!0})}),[getLatest,handleDrag]),getPercentageForValue=(0,react.useCallback)((val=>linearInterpolator_getPercentageForValue(val,min,max)),[max,min]),trackClicked=(0,react.useCallback)((e=>{const{onChange,values}=getLatest(),clientX="touchmove"===e.type?e.changedTouches[0].clientX:e.clientX,clientY="touchmove"===e.type?e.changedTouches[0].clientY:e.clientY,newValue=isVertical?getValueForClientY(clientY):getValueForClientX(clientX),newRoundedValue=roundToStep(newValue);let newValues=[newRoundedValue];if(2===values.length)if(values[0]>newRoundedValue)newValues=[newRoundedValue,values[1]];else if(values[1]=newRoundedValue&&(newValues=[newRoundedValue,values[1]]),values[1]-diff<=newRoundedValue&&(newValues=[values[0],newRoundedValue])}onChange(newValues)}),[getLatest,getValueForClientX,getValueForClientY,isVertical]);(0,react.useEffect)((()=>{trackElRef.current?.addEventListener("mousedown",trackClicked)}),[trackClicked]);const ticks=(0,react.useMemo)((()=>{let ticks=controlledTicks??steps;if(!ticks){ticks=[min];const count=tickSize-tickSize%stepSize;for(;ticks[ticks.length-1]({key:i,value,percentage:getPercentageForValue(value),styles:{[positionProp]:`${getPercentageForValue(value)}%`,[marginProp]:"-0.125rem"}})))}),[controlledTicks,getPercentageForValue,max,min,steps,tickSize,positionProp,marginProp]),segments=(0,react.useMemo)((()=>{const sortedValues=sortNumList(tempValues??values);return[...sortedValues,max].map(((value,i)=>{const active=i===sortedValues.length-1;return{key:i,value,active,props:active?{ref:segmentElRef,onMouseDownCapture:e=>{e.stopPropagation(),e.persist(),handlePress(e,-1)},onTouchStartCapture:e=>{e.stopPropagation(),e.persist(),handlePress(e,-1)}}:{},styles:(()=>{const left=getPercentageForValue(sortedValues[i-1]?sortedValues[i-1]:min),width=getPercentageForValue(value)-left;return{[positionProp]:`${left}%`,[isVertical?"height":"width"]:`${width}%`}})()}}))}),[getPercentageForValue,max,min,tempValues,values,positionProp,marginProp]),handles=(0,react.useMemo)((()=>(tempValues??values).map(((value,i)=>({key:i,value,percentage:getPercentageForValue(value),active:i===activeHandleIndex,props:{role:"slider","aria-valuemin":min,"aria-valuemax":max,"aria-valuenow":value,onKeyDown:e=>{e.stopPropagation(),e.persist(),handleKeyDown(e,i)},onMouseDownCapture:e=>{e.stopPropagation(),e.persist(),handlePress(e,i)},onTouchStartCapture:e=>{e.stopPropagation(),e.persist(),handlePress(e,i)}},styles:{[positionProp]:`${getPercentageForValue(value)}%`,[marginProp]:"-0.375rem"},valueStyles:{[positionProp]:`${getPercentageForValue(value)}%`}})))),[activeHandleIndex,getPercentageForValue,handleKeyDown,handlePress,min,max,tempValues,values,positionProp,marginProp]);return{trackElRef,activeHandleIndex,ticks,segments,handles}};try{useRanger.displayName="useRanger",useRanger.__docgenInfo={description:"",displayName:"useRanger",props:{values:{defaultValue:null,description:"",name:"values",required:!0,type:{name:"readonly number[]"}},min:{defaultValue:null,description:"",name:"min",required:!0,type:{name:"number"}},max:{defaultValue:null,description:"",name:"max",required:!0,type:{name:"number"}},tickSize:{defaultValue:null,description:"",name:"tickSize",required:!0,type:{name:"number"}},ticks:{defaultValue:null,description:"",name:"ticks",required:!1,type:{name:"number[]"}},vertical:{defaultValue:null,description:"",name:"vertical",required:!1,type:{name:"boolean"}},onChange:{defaultValue:null,description:"",name:"onChange",required:!0,type:{name:"RangerChangeEvent"}},onDrag:{defaultValue:null,description:"",name:"onDrag",required:!1,type:{name:"RangerChangeEvent"}},onDragStart:{defaultValue:null,description:"",name:"onDragStart",required:!1,type:{name:"(() => void)"}},onDragEnd:{defaultValue:null,description:"",name:"onDragEnd",required:!1,type:{name:"(() => void)"}},debug:{defaultValue:null,description:"",name:"debug",required:!1,type:{name:"boolean"}},stepSize:{defaultValue:null,description:"",name:"stepSize",required:!0,type:{name:"number"}},steps:{defaultValue:null,description:"",name:"steps",required:!0,type:{name:"number[]"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/form/src/ranger/index.tsx#useRanger"]={docgenInfo:useRanger.__docgenInfo,name:"useRanger",path:"packages/form/src/ranger/index.tsx#useRanger"})}catch(__react_docgen_typescript_loader_error){}const Range=({error,name,value,step=1,min=0,max=100,height=192,color,vertical,showLabels,showValue,minLabel,maxLabel,ranges,format,autoFocus,disabled,readOnly,onBlur,onChange,onEnterPressed,onFocus,onSlide,invalid,...rest})=>{const[actualValue,setActualValue]=(0,react.useState)([0,0]),[displayValue,setDisplayValue]=(0,react.useState)(!1),deferred=(0,react.useDeferredValue)(value),minValue=(0,react.useMemo)((()=>ranges?.[0]??min),[min,ranges]),maxValue=(0,react.useMemo)((()=>ranges?.slice(-1)[0]??max),[max,ranges]);(0,react.useEffect)((()=>{setActualValue(deferred??[min,max])}),[deferred,min,max]),(0,react.useEffect)((()=>{setDisplayValue(!!showValue)}),[showValue]);const handleChange=(0,react.useCallback)((val=>{setActualValue(val??[min,max]),onChange?.(val??void 0)}),[onChange,min,max]),minDisplay=(0,react.useMemo)((()=>(0,jsx_runtime.jsx)("span",{className:"text-sm text-dimmed px-2.5 py-px whitespace-nowrap overflow-hidden text-center",children:minLabel??dist_esm.yL.number(min,format)})),[minLabel,min,format]),maxDisplay=(0,react.useMemo)((()=>(0,jsx_runtime.jsx)("span",{className:"text-sm text-dimmed px-2.5 py-px whitespace-nowrap overflow-hidden text-center",children:maxLabel??dist_esm.yL.number(max,format)})),[maxLabel,max,format]),rangerInstance=useRanger({values:actualValue,min:minValue,max:maxValue,stepSize:step,steps:ranges,vertical,tickSize:Math.max((max-min)/10,step),onDrag:val=>onSlide?.(val[0]),onDragStart:()=>setDisplayValue(!0),onDragEnd:()=>setDisplayValue(!!showValue),onChange:values=>handleChange([values[0],values[1]])});return(0,jsx_runtime.jsx)(InputWrapper,{...rest,noOutline:!0,error,invalid,isDisabled:disabled,isReadOnly:readOnly,canClear:!!actualValue,children:(0,jsx_runtime.jsxs)("div",{className:classnames_default()("flex-auto order-3 flex items-center select-none z-0",vertical&&"flex-col w-8",invalid?"text-danger-500":"text-primary-600"),"data-vertical":!!vertical,style:invalid?void 0:{color},children:[showLabels&&(vertical?maxDisplay:minDisplay),(0,jsx_runtime.jsxs)("div",{ref:rangerInstance.trackElRef,className:classnames_default()("flex-auto relative flex items-center",vertical?"my-2 w-8":"mx-2 h-8"),style:{height:vertical?height:void 0},children:[rangerInstance.ticks.map((({value,key,styles})=>(0,jsx_runtime.jsx)("div",{className:classnames_default()("absolute inline-block h-1 w-1 rounded-sm bg-invert opacity-30 leading-[0] z-1",vertical&&"left-1/2 -ml-0.5"),style:styles},key))),rangerInstance.segments.map((({key,styles,active})=>(0,jsx_runtime.jsx)("div",{className:classnames_default()("absolute",active?"bg-current z-1 opacity-90":"bg-invert opacity-5 z-0",vertical?"-bottom-1 left-1/2 -translate-x-1/2":"top-1/2 -translate-y-1/2",!vertical&&(active?"h-1":"h-0.5"),vertical&&(active?"w-1":"w-0.5")),style:styles},key))),rangerInstance.handles.map((({key,value,props,styles,valueStyles})=>(0,jsx_runtime.jsxs)(react.Fragment,{children:[(0,jsx_runtime.jsx)("button",{type:"button",className:classnames_default()("bg-current cursor-pointer appearance-none h-3 w-3 rounded-full z-1 absolute","focus:ring-2 focus:ring-offset-2",vertical&&"left-1/2 -ml-1.5"),...props,style:styles}),displayValue&&(0,jsx_runtime.jsx)("div",{className:classnames_default()("bg-invert text-invert py-px px-2 text-xs absolute rounded z-1 whitespace-nowrap","before:absolute before:h-1.5 before:w-1.5 before:z-[-1] before:bg-invert before:top-1/2 before:-translate-y-1/2 before:rotate-45",vertical?"end-0 ltr:translate-x-full rtl:-translate-x-full translate-y-2":"top-1/2 -translate-y-1/2",!vertical&&(0===key?"-ms-3 ltr:-translate-x-full rtl:translate-x-full ltr:before:translate-x-[0.125rem] rtl:before:-translate-x-[0.125rem] before:end-0":"ms-3 ltr:before:-translate-x-[0.125rem] rtl:before:translate-x-[0.125rem] before:start-0")),"data-align":0===key?"start":"end",style:valueStyles,children:dist_esm.yL.number(value,format)})]},key)))]}),showLabels&&(vertical?minDisplay:maxDisplay)]})})};try{Range.displayName="Range",Range.__docgenInfo={description:"Number Range input",displayName:"Range",props:{min:{defaultValue:{value:"0"},description:"min value",name:"min",required:!1,type:{name:"number"}},max:{defaultValue:{value:"100"},description:"max value",name:"max",required:!1,type:{name:"number"}},step:{defaultValue:{value:"1"},description:"increment step",name:"step",required:!1,type:{name:"number"}},color:{defaultValue:null,description:"Range color",name:"color",required:!1,type:{name:"string"}},height:{defaultValue:{value:"192"},description:"Range height (only vertical)",name:"height",required:!1,type:{name:"number"}},vertical:{defaultValue:null,description:"vertical orientation",name:"vertical",required:!1,type:{name:"boolean"}},showValue:{defaultValue:null,description:"display value tooltip",name:"showValue",required:!1,type:{name:"boolean"}},showLabels:{defaultValue:null,description:"display min/max labels",name:"showLabels",required:!1,type:{name:"boolean"}},minLabel:{defaultValue:null,description:"custom min label",name:"minLabel",required:!1,type:{name:"string"}},maxLabel:{defaultValue:null,description:"custom max label",name:"maxLabel",required:!1,type:{name:"string"}},ranges:{defaultValue:null,description:"step ranges",name:"ranges",required:!1,type:{name:"number[]"}},format:{defaultValue:null,description:"format value",name:"format",required:!1,type:{name:"string"}},onSlide:{defaultValue:null,description:"slide event handler",name:"onSlide",required:!1,type:{name:"((val: number) => void)"}},info:{defaultValue:null,description:"info label at bottom",name:"info",required:!1,type:{name:"string"}},label:{defaultValue:null,description:"input label",name:"label",required:!1,type:{name:"string"}},name:{defaultValue:null,description:"input name",name:"name",required:!1,type:{name:"string"}},width:{defaultValue:null,description:"field width",name:"width",required:!1,type:{name:"string | number"}},onFocus:{defaultValue:null,description:"on focus event handler",name:"onFocus",required:!1,type:{name:"FocusEventHandler"}},onBlur:{defaultValue:null,description:"on blur event handler",name:"onBlur",required:!1,type:{name:"FocusEventHandler"}},onChange:{defaultValue:null,description:"change handler",name:"onChange",required:!1,type:{name:"((value?: [number, number]) => void)"}},autoFocus:{defaultValue:null,description:"auto focus when rendered",name:"autoFocus",required:!1,type:{name:"boolean"}},disabled:{defaultValue:null,description:"disabled input",name:"disabled",required:!1,type:{name:"boolean"}},value:{defaultValue:null,description:"value",name:"value",required:!1,type:{name:"[number, number]"}},readOnly:{defaultValue:null,description:"read-only input",name:"readOnly",required:!1,type:{name:"boolean"}},required:{defaultValue:null,description:"required",name:"required",required:!1,type:{name:"boolean"}},inline:{defaultValue:null,description:"inline label and input",name:"inline",required:!1,type:{name:"boolean"}},"data-testid":{defaultValue:null,description:"data attribute for test id",name:"data-testid",required:!1,type:{name:"string"}},"data-test-value":{defaultValue:null,description:"data attribute for test value",name:"data-test-value",required:!1,type:{name:"any"}},appendLabel:{defaultValue:null,description:"append to label end",name:"appendLabel",required:!1,type:{name:"string | number | boolean | Element"}},error:{defaultValue:null,description:"error message",name:"error",required:!1,type:{name:"string"}},onEnterPressed:{defaultValue:null,description:"on enter press callback",name:"onEnterPressed",required:!1,type:{name:"KeyboardEventHandler"}},decorateStart:{defaultValue:null,description:"",name:"decorateStart",required:!1,type:{name:"string | number | boolean | Element"}},decorateEnd:{defaultValue:null,description:"",name:"decorateEnd",required:!1,type:{name:"string | number | boolean | Element"}},invalid:{defaultValue:null,description:"invalid value input",name:"invalid",required:!1,type:{name:"boolean"}},labelWidth:{defaultValue:null,description:"label width for inline",name:"labelWidth",required:!1,type:{name:"string"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/form/src/input/Range.tsx#Range"]={docgenInfo:Range.__docgenInfo,name:"Range",path:"packages/form/src/input/Range.tsx#Range"})}catch(__react_docgen_typescript_loader_error){}const Switch=({ref,label,checked,invalid,disabled,error,width,color,name,onLabel,offLabel,onLabelColor,offLabelColor,defaultColor,onChange,...rest})=>{const[actualValue,setActualValue]=(0,react.useState)(!1),deferred=(0,react.useDeferredValue)(!!checked);(0,react.useEffect)((()=>{setActualValue(deferred)}),[deferred]);const handleChange=(0,react.useCallback)((e=>{setActualValue(e?.target.checked??!1),onChange?.(e?.target.checked??!1)}),[onChange]);return(0,jsx_runtime.jsxs)("label",{className:classnames_default()(invalid?"ring-danger-500":"ring-primary-500",disabled?"opacity-50 cursor-not-allowed":"hover:opacity-100 cursor-pointer","inline-flex gap-1 py-1 items-center relative cursor-pointer opacity-85 rounded ring-offset-2 has-[:focus-visible]:ring-1"),style:{width},children:[(0,jsx_runtime.jsxs)("div",{className:classnames_default()(actualValue&&getBgClass(color?`${color}-500`:"primary-500"),!actualValue&&(defaultColor?getBgClass(`${defaultColor}-500`):"bg-tint-200"),"relative grid grid-cols-2 items-center h-6 min-w-10 cursor-pointer rounded-full p-1 transition-colors duration-200 ease-in-out"),style:{backgroundColor:getColor(actualValue?color:defaultColor)},children:[(0,jsx_runtime.jsx)("input",{className:classnames_default()("appearance-none absolute opacity-0 inset-0 bg-transparent border-none outline-none ring-0"),"aria-invalid":invalid,"aria-disabled":disabled,disabled,"aria-errormessage":error,type:"checkbox",ref,size:1,tabIndex:0,autoComplete:"off",checked:actualValue,onChange:handleChange,...rest}),(0,jsx_runtime.jsx)("span",{"aria-hidden":"true",className:classnames_default()(!disabled&&"shadow-sm",actualValue?"translate-x-[100%]":"translate-x-0","pointer-events-none inline-block h-4 start-1 absolute rounded-full bg-white ring-0 transition duration-200 ease-in-out"),style:{width:"calc(50% - 0.25rem)"}}),(!!onLabel||!!offLabel)&&(0,jsx_runtime.jsxs)(react.Fragment,{children:[(0,jsx_runtime.jsx)("span",{className:`whitespace-nowrap text-xs px-1 ${getColorClass(onLabelColor??"white")}`,style:{color:getColor(onLabelColor)},children:onLabel??" "}),(0,jsx_runtime.jsx)("span",{className:`whitespace-nowrap text-xs px-1 ${getColorClass(offLabelColor??"base")}`,style:{color:getColor(offLabelColor)},children:offLabel??" "})]})]}),(0,jsx_runtime.jsx)(ErrorIcon,{invalid,error}),label&&(0,jsx_runtime.jsx)("span",{className:"flex-initial leading-5 truncate",children:label})]})};try{Switch.displayName="Switch",Switch.__docgenInfo={description:"",displayName:"Switch",props:{label:{defaultValue:null,description:"Switch label",name:"label",required:!1,type:{name:"string | Element"}},checked:{defaultValue:null,description:"checked",name:"checked",required:!1,type:{name:"boolean"}},onChange:{defaultValue:null,description:"on checked change",name:"onChange",required:!1,type:{name:"((checked: boolean) => void)"}},disabled:{defaultValue:null,description:"disabled input",name:"disabled",required:!1,type:{name:"boolean"}},invalid:{defaultValue:null,description:"invalid value input",name:"invalid",required:!1,type:{name:"boolean"}},error:{defaultValue:null,description:"error message",name:"error",required:!1,type:{name:"string"}},width:{defaultValue:null,description:"field width",name:"width",required:!1,type:{name:"string | number"}},color:{defaultValue:null,description:"cutom Switch icon",name:"color",required:!1,type:{name:"string"}},defaultColor:{defaultValue:null,description:"cutom Switch icon",name:"defaultColor",required:!1,type:{name:"string"}},name:{defaultValue:null,description:"",name:"name",required:!1,type:{name:"string"}},onLabel:{defaultValue:null,description:"",name:"onLabel",required:!1,type:{name:"string"}},onLabelColor:{defaultValue:null,description:"",name:"onLabelColor",required:!1,type:{name:"string"}},offLabel:{defaultValue:null,description:"",name:"offLabel",required:!1,type:{name:"string"}},offLabelColor:{defaultValue:null,description:"",name:"offLabelColor",required:!1,type:{name:"string"}},ref:{defaultValue:null,description:"",name:"ref",required:!1,type:{name:"Ref"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/form/src/input/Switch.tsx#Switch"]={docgenInfo:Switch.__docgenInfo,name:"Switch",path:"packages/form/src/input/Switch.tsx#Switch"})}catch(__react_docgen_typescript_loader_error){}const Textarea=({ref,value,name,invalid,readOnly,disabled,required,placeholder,autoFocus,rows=5,maxRows=12,variableRows,onChange,onEnterPressed,...rest})=>{const[actualValue,setActualValue]=(0,react.useState)(""),[fixedRows,setFixedRows]=(0,react.useState)(rows),deferred=(0,react.useDeferredValue)(value),wrapperRef=(0,react.useRef)(null);(0,react.useEffect)((()=>{setActualValue(deferred??"")}),[deferred]);const handleChange=(0,react.useCallback)((e=>{const value=e?.target.value;setActualValue(value??""),onChange?.(value??void 0)}),[onChange]);return(0,react.useEffect)((()=>{if(variableRows){const lines=actualValue?.split("\n").length??1;setFixedRows(Math.max(rows,Math.min(maxRows,lines)))}else setFixedRows(rows)}),[actualValue,variableRows,rows,maxRows]),(0,jsx_runtime.jsx)(InputWrapper,{showClear:!!actualValue,onClear:handleChange,invalid,readOnly,disabled,required,wrapperRef,textarea:!0,...rest,children:(0,jsx_runtime.jsx)("textarea",{className:"appearance-none self-stretch bg-transparent py-1 px-2 flex-1 border-none outline-none ring-0 min-h-20 resize-none","aria-invalid":invalid,"aria-disabled":disabled,"aria-readonly":readOnly,placeholder,disabled,readOnly,rows:fixedRows,"data-testid":name,name,ref,autoComplete:"off",autoFocus,value:actualValue,onChange:handleChange,onKeyDown:handleEnter(onEnterPressed)})})};try{Textarea.displayName="Textarea",Textarea.__docgenInfo={description:"",displayName:"Textarea",props:{rows:{defaultValue:{value:"5"},description:"textarae rows",name:"rows",required:!1,type:{name:"number"}},maxRows:{defaultValue:{value:"12"},description:"maximum rows",name:"maxRows",required:!1,type:{name:"number"}},variableRows:{defaultValue:null,description:"increment rows on value change",name:"variableRows",required:!1,type:{name:"boolean"}},value:{defaultValue:null,description:"value",name:"value",required:!1,type:{name:"string"}},onChange:{defaultValue:null,description:"change handler",name:"onChange",required:!1,type:{name:"((value?: string) => void)"}},onFocus:{defaultValue:null,description:"on focus event handler",name:"onFocus",required:!1,type:{name:"FocusEventHandler"}},onBlur:{defaultValue:null,description:"on blur event handler",name:"onBlur",required:!1,type:{name:"FocusEventHandler"}},onEnterPressed:{defaultValue:null,description:"on enter press callback",name:"onEnterPressed",required:!1,type:{name:"KeyboardEventHandler"}},name:{defaultValue:null,description:"input name",name:"name",required:!1,type:{name:"string"}},label:{defaultValue:null,description:"input label",name:"label",required:!1,type:{name:"string"}},placeholder:{defaultValue:null,description:"input placeholder",name:"placeholder",required:!1,type:{name:"string"}},appendLabel:{defaultValue:null,description:"append to label end",name:"appendLabel",required:!1,type:{name:"string | number | boolean | Element"}},decorateStart:{defaultValue:null,description:"",name:"decorateStart",required:!1,type:{name:"string | number | boolean | Element"}},decorateEnd:{defaultValue:null,description:"",name:"decorateEnd",required:!1,type:{name:"string | number | boolean | Element"}},info:{defaultValue:null,description:"info label at bottom",name:"info",required:!1,type:{name:"string"}},required:{defaultValue:null,description:"required",name:"required",required:!1,type:{name:"boolean"}},disabled:{defaultValue:null,description:"disabled input",name:"disabled",required:!1,type:{name:"boolean"}},readOnly:{defaultValue:null,description:"read-only input",name:"readOnly",required:!1,type:{name:"boolean"}},autoFocus:{defaultValue:null,description:"auto focus when rendered",name:"autoFocus",required:!1,type:{name:"boolean"}},allowClear:{defaultValue:null,description:"show clear button",name:"allowClear",required:!1,type:{name:"boolean"}},invalid:{defaultValue:null,description:"invalid value input",name:"invalid",required:!1,type:{name:"boolean"}},error:{defaultValue:null,description:"error message",name:"error",required:!1,type:{name:"string"}},width:{defaultValue:null,description:"field width",name:"width",required:!1,type:{name:"string | number"}},inline:{defaultValue:null,description:"inline label and input",name:"inline",required:!1,type:{name:"boolean"}},labelWidth:{defaultValue:null,description:"label width for inline",name:"labelWidth",required:!1,type:{name:"string"}},"data-testid":{defaultValue:null,description:"data attribute for test id",name:"data-testid",required:!1,type:{name:"string"}},"data-test-value":{defaultValue:null,description:"data attribute for test value",name:"data-test-value",required:!1,type:{name:"any"}},ref:{defaultValue:null,description:"",name:"ref",required:!1,type:{name:"Ref"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/form/src/input/Textarea.tsx#Textarea"]={docgenInfo:Textarea.__docgenInfo,name:"Textarea",path:"packages/form/src/input/Textarea.tsx#Textarea"})}catch(__react_docgen_typescript_loader_error){}var floating_ui_dom=__webpack_require__("./node_modules/@floating-ui/dom/dist/floating-ui.dom.mjs"),floating_ui_react_dom=__webpack_require__("./node_modules/@floating-ui/react/node_modules/@floating-ui/react-dom/dist/floating-ui.react-dom.mjs");const Options=({ref,style,items,active,className,itemRef,empty,valueProperty="id",labelProperty="label",itemProps,children,...rest})=>(0,jsx_runtime.jsxs)("div",{ref,className:classnames_default()("bg-base select-none overflow-x-hidden overflow-y-auto",className),style,...rest,children:[0===items.length&&(empty??(0,jsx_runtime.jsx)(esm.HY,{message:(0,jsx_runtime.jsx)(es.x6,{i18nKey:"form:select.emptyList"})})),items.map(((item,index)=>item.___group___?(0,jsx_runtime.jsx)("p",{className:"px-2 py-1 text-muted text-xs sticky -top-px z-2 bg-base border-t",children:item.label},index):item.___create___?(0,jsx_runtime.jsx)("div",{role:"none",tabIndex:active===index?0:-1,ref:el=>itemRef(index,el),"data-active":active===index||void 0,className:classnames_default()("block text-start truncate px-2 py-1 leading-normal cursor-pointer select-none","data-[active]:bg-primary-200 data-[selected]:bg-primary-600 data-[selected]:text-white data-[active]:data-[selected]:underline"),...itemProps(item),children:(0,jsx_runtime.jsx)(es.x6,{i18nKey:"form:select.createOption",values:{query:item.value},components:[(0,jsx_runtime.jsx)("strong",{children:"query"},"t0")]})},index):(0,jsx_runtime.jsx)("div",{role:"none",tabIndex:active===index?0:-1,ref:el=>itemRef(index,el),"data-active":active===index||void 0,className:classnames_default()("block text-start truncate px-2 py-1 leading-normal cursor-pointer","data-[active]:bg-primary-200 data-[selected]:bg-primary-600 data-[selected]:text-white data-[active]:data-[selected]:underline"),...itemProps(item),children:children(item,item[labelProperty]??item)},index)))]});try{Options.displayName="Options",Options.__docgenInfo={description:"",displayName:"Options",props:{}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/form/src/select/Options.tsx#Options"]={docgenInfo:Options.__docgenInfo,name:"Options",path:"packages/form/src/select/Options.tsx#Options"})}catch(__react_docgen_typescript_loader_error){}const makeOption=query=>query,useSelect=({options=dist_esm.Ml,value,autoComplete,multiple=!1,allowCreate=!1,groupProperty="",valueProperty="id",labelProperty="label",createOption=makeOption,matcher,onQuery,onChange,onSelect})=>{const emptyValue=(0,react.useMemo)((()=>multiple?[]:""),[multiple]),deferred=(0,react.useDeferredValue)(value??emptyValue),listRef=(0,react.useRef)([]),focusableRef=(0,react.useRef)(null),listContentRef=(0,react.useRef)([]),optionsRef=(0,react.useRef)([]),macthOption=(0,react.useCallback)(((item,query)=>matcher?.(item,query)??(0,dist_esm.FX)(item[labelProperty]??item,query)),[matcher]),fireChange=(0,react.useCallback)((value=>{setTimeout((()=>{onSelect?.(value??emptyValue),onChange?.(((value,emptyValue,valueProperty="")=>(0,dist_esm.cy)(value)?value.map((val=>val[valueProperty]??val)):value?.[valueProperty]??value??emptyValue)(value,emptyValue,valueProperty))}),50)}),[emptyValue,onSelect,onChange]),[state,dispatch]=(0,react.useReducer)(((state,action)=>{if("open"===action.type){const index=state.items.indexOf(state.multiple?state.value[0]:state.value);return{...state,open:!0,activeIndex:index>-1?index:null}}if("close"===action.type)return{...state,activeIndex:null,open:!1};if("active"===action.type&&state.open)return autoComplete&&null!==action.index&&(state.query=state.items[action.index]),{...state,activeIndex:action.index};if("setValue"===action.type)return{...state,value:action.value,selectedIndex:state.items.indexOf(state.multiple?action.value[0]:action.value)};if("changeValue"===action.type){const newState={...state,value:state.emptyValue,activeIndex:null,selectedIndex:autoComplete?state.multiple?action.value?.length:0:state.items.indexOf(action.value)};if(void 0!==action.value)if(multiple){const values=[];(0,dist_esm.Kg)(action.value)?values.push(...action.value.split(/,\s?/)):values.push(action.value),newState.value=[...state.value],values.forEach((value=>{newState.value=newState.value.includes?.(value)?newState.value.filter((item=>item!==value)):[...newState.value,value]}))}else newState.value=action.value;return state.multiple||(newState.open=!1),fireChange(newState.value),newState}if("removeItem"===action.type){let newValue=state.value;return state.multiple?(newValue=[...newValue],newValue.splice(action.index??-1,1)):newValue="",fireChange(newValue),{...state,value:newValue}}if("startQuery"===action.type)return{...state,loading:!0,query:action.query};if("options"===action.type){const newState={...state,loading:!1,query:action.query};let optionList=[...action.options];autoComplete&&void 0!==action.query&&(optionList=(0,dist_esm.Qq)([action.query,...optionList]));const grouped=(0,dist_esm.$z)(optionList,groupProperty,"");if(action.open&&(newState.open=!0),newState.items=[],allowCreate&&action.query&&newState.items.push({___create___:!0,value:createOption(action.query)}),Object.entries(grouped).forEach((([key,list])=>{key&&newState.items.push({___group___:!0,label:key}),newState.items.push(...list)})),action.setActive){const index=newState.items.findIndex((opt=>!opt.___group___));newState.activeIndex=index>=0?index:null}else newState.activeIndex=null;return listContentRef.current=newState.items,newState}return state}),{multiple,emptyValue,open:!1,loading:!1,activeIndex:null,selectedIndex:null,value:emptyValue,query:void 0,items:[]});(0,react.useEffect)((()=>{if(!multiple){const newOption=(allowCreate||autoComplete)&&deferred?createOption(deferred):void 0,hasValue=options.find((opt=>(opt[valueProperty]??opt)===deferred));optionsRef.current=options,!hasValue&&newOption&&(optionsRef.current=[newOption,...options??[]]),dispatch({type:"options",options:optionsRef.current}),dispatch({type:"setValue",value:hasValue??newOption??""})}if(multiple){optionsRef.current=[];const value=((0,dist_esm.cy)(deferred)?deferred:[]).map((item=>{const newOption=(allowCreate||autoComplete)&&item?createOption(item):void 0,hasValue=options.find((opt=>(opt[valueProperty]??opt)===deferred));return!hasValue&&newOption&&optionsRef.current.push(newOption),hasValue??newOption??""}));optionsRef.current=[...optionsRef.current,...options??[]],dispatch({type:"options",options:optionsRef.current}),dispatch({type:"setValue",value})}}),[deferred,options,multiple,allowCreate,autoComplete,createOption]);const fireQuery=(0,esm.d7)((query=>{Promise.resolve(onQuery?.(query)).then((options=>{const newOptions=[...options];autoComplete&&newOptions.push(...optionsRef.current.filter((opt=>macthOption?.(opt,query)))),dispatch({type:"options",query,options:newOptions,open:!0,setActive:!0})}))}),[onQuery]),handleQuery=(0,react.useCallback)((query=>{if(query){if(onQuery)return dispatch({type:"startQuery",query}),fireQuery(query);dispatch({type:"options",query,open:!0,setActive:!0,options:optionsRef.current.filter((opt=>macthOption?.(opt,query)))})}else dispatch({type:"options",query:"",options:optionsRef.current})}),[macthOption,onQuery]),handleChange=(0,react.useCallback)((value=>{let values=value;if(autoComplete&&multiple&&value&&(values=value.split(/,\s?/)),dispatch({type:"changeValue",value:value?.___create___?value.value:value}),value?.___create___){let val=[value.value];multiple&&(val=value.value.split(/,\s?/)),optionsRef.current=[...optionsRef.current,...val.map(createOption)]}autoComplete&&(optionsRef.current=(0,dist_esm.Qq)([...(0,dist_esm.cy)(values)?values:[values],...optionsRef.current])),dispatch({type:"options",options:optionsRef.current})}),[]),handleRemove=(0,react.useCallback)((index=>{dispatch({type:"removeItem",index})}),[]),setOpen=(0,react.useCallback)((open=>{dispatch({type:open?"open":"close"}),dispatch({type:"options",query:void 0,options:optionsRef.current})}),[]),setActiveIndex=(0,react.useCallback)((index=>{dispatch({type:"active",index})}),[]);return{state,listRef,focusableRef,listContentRef,handleChange,handleRemove,handleQuery,macthOption,setActiveIndex,setOpen,setItemRef:(index,node)=>{listRef.current[index]=node}}};try{useSelect.displayName="useSelect",useSelect.__docgenInfo={description:"",displayName:"useSelect",props:{value:{defaultValue:null,description:"",name:"value",required:!1,type:{name:"any"}},options:{defaultValue:null,description:"",name:"options",required:!1,type:{name:"AnyObject[]"}},multiple:{defaultValue:{value:"false"},description:"",name:"multiple",required:!1,type:{name:"boolean"}},allowCreate:{defaultValue:{value:"false"},description:"",name:"allowCreate",required:!1,type:{name:"boolean"}},groupProperty:{defaultValue:{value:""},description:"",name:"groupProperty",required:!1,type:{name:"any"}},valueProperty:{defaultValue:{value:"id"},description:"",name:"valueProperty",required:!1,type:{name:"any"}},labelProperty:{defaultValue:{value:"label"},description:"",name:"labelProperty",required:!1,type:{name:"any"}},autoComplete:{defaultValue:null,description:"",name:"autoComplete",required:!1,type:{name:"boolean"}},matcher:{defaultValue:null,description:"",name:"matcher",required:!1,type:{name:"((item: AnyObject, query: string) => boolean)"}},createOption:{defaultValue:{value:"(query: string) => query"},description:"",name:"createOption",required:!1,type:{name:"((query: string) => AnyObject)"}},onQuery:{defaultValue:null,description:"",name:"onQuery",required:!1,type:{name:"((query: string) => AnyObject)"}},onSelect:{defaultValue:null,description:"",name:"onSelect",required:!1,type:{name:"((item: AnyObject) => void)"}},onChange:{defaultValue:null,description:"",name:"onChange",required:!1,type:{name:"((value: AnyObject) => void)"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/form/src/select/useSelect.tsx#useSelect"]={docgenInfo:useSelect.__docgenInfo,name:"useSelect",path:"packages/form/src/select/useSelect.tsx#useSelect"})}catch(__react_docgen_typescript_loader_error){}const Select=({ref,name,value,invalid,readOnly,disabled,required,placeholder,autoFocus,error,options,groupProperty,labelProperty="label",valueProperty="id",multiple,searchable,allowCreate,createOption,matcher,renderer,onQuery,onChange,onSelect,onEnterPressed,...rest})=>{const{state,listRef,listContentRef,setOpen,macthOption,handleChange,handleRemove,handleQuery,setItemRef,setActiveIndex}=useSelect({value,options,multiple,groupProperty,labelProperty,valueProperty,allowCreate,createOption,matcher,onChange,onSelect,onQuery}),dropdownKey=(0,react.useId)(),{context,floatingStyles,refs}=(0,floating_ui_react.we)({open:state.open,onOpenChange:(open,evt,reason)=>{!open&&(listRef.current=[]),setOpen(open)},strategy:"fixed",placement:"bottom",whileElementsMounted:floating_ui_dom.ll,middleware:[(0,floating_ui_react_dom.BN)({padding:8}),(0,floating_ui_react_dom.UU)(),(0,floating_ui_react_dom.cY)(2)]}),click=(0,floating_ui_react.kp)(context,{}),dismiss=(0,floating_ui_react.s9)(context,{}),navigation=(0,floating_ui_react.C1)(context,{listRef,activeIndex:state.activeIndex,selectedIndex:state.selectedIndex,loop:!0,virtual:!0,focusItemOnOpen:!1,onNavigate:setActiveIndex}),typeahead=(0,floating_ui_react.lY)(context,{listRef:listContentRef,activeIndex:state.activeIndex,selectedIndex:state.selectedIndex,findMatch:(list,typedString)=>list.find((item=>macthOption(item,typedString))),onMatch(index){state.open&&setActiveIndex(index),!searchable&&!multiple&&!state.open&&handleChange(listContentRef.current[index])}}),{getReferenceProps,getFloatingProps,getItemProps}=(0,floating_ui_react.bv)([dismiss,searchable?void 0:click,navigation,typeahead]),referenceProps=(0,react.useMemo)((()=>{const props=getReferenceProps();return{...props,onBlur(evt){evt.relatedTarget?.closest(`[data-select-dropdown="${dropdownKey}"]`)?refs.domReference.current?.querySelector("input")?.focus():(handleQuery(""),setOpen(!1))},onKeyDown(evt){if("Enter"===evt.key){if(null!==state.activeIndex)return handleChange(listContentRef.current[state.activeIndex]),evt.preventDefault(),evt.stopPropagation(),!1;state.query?handleQuery(""):onEnterPressed?.(evt)}else"Tab"===evt.key&&null!==state.activeIndex?handleChange(listContentRef.current[state.activeIndex]):"Backspace"===evt.key?!state.query&&handleRemove():searchable&&!["ArrowUp","ArrowDown"].includes(evt.key)||(["ArrowUp","ArrowDown"].includes(evt.key)&&null===state.activeIndex&&setActiveIndex(state.selectedIndex),setTimeout((()=>{props.onKeyDown?.(evt)}),50))}}}),[getReferenceProps,onEnterPressed,handleQuery,refs,state.query,state.activeIndex]),floatingProps=(0,react.useMemo)((()=>getFloatingProps({"data-select-dropdown":dropdownKey})),[getFloatingProps]),makeItemProps=(0,react.useCallback)((item=>{const selected=(0,dist_esm.cy)(state.value)?state.value?.includes?.(item):state.value===item;return getItemProps({"data-selected":!!selected||void 0,onClick(){handleChange(item)}})}),[getItemProps,handleChange,state.value]),displayValue=(0,react.useMemo)((()=>(0,dist_esm.cy)(state.value)?state.value.map(((item,index)=>(0,jsx_runtime.jsx)(esm.vu,{onRemove:()=>handleRemove(index),children:renderer?.(item)??item[labelProperty]??item},index))):(0,dist_esm.Im)(state.value)||state.query?void 0:(0,jsx_runtime.jsx)("span",{className:"self-center pointer-events-none select-none",children:renderer?.(state.value)??state.value[labelProperty]??state.value})),[state.value,state.query,placeholder,renderer]),openDropdown=(0,react.useCallback)((()=>{setOpen(!0),refs.domReference.current?.querySelector("input")?.focus()}),[]);return(0,react.useLayoutEffect)((()=>{state.open&&setTimeout((()=>{state.selectedIndex&&listRef.current[state.selectedIndex]?.scrollIntoView({block:"center"})}),100)}),[state.open]),(0,jsx_runtime.jsxs)(InputWrapper,{showClear:!(0,dist_esm.Im)(state.value),onClear:handleChange,invalid,readOnly,disabled,required,error,wrapperRef:refs.setReference,className:state.open?"!z-[99]":"",...rest,children:[(0,jsx_runtime.jsxs)("div",{role:"none","data-select-display":"true",className:classnames_default()("group flex-1 py-1 px-2 truncate text-start flex gap-1 relative min-h-5 justify-start",multiple?"flex-wrap":"flex-nowrap overflow-hidden"),...referenceProps,onMouseUp:e=>e.currentTarget.querySelector("input")?.focus(),children:[displayValue,(0,jsx_runtime.jsx)("input",{readOnly:!searchable||readOnly,disabled,value:state.query??"","aria-invalid":invalid,"data-testid":name,name,size:1,ref,autoFocus,className:classnames_default()("appearance-none bg-transparent outline-none border-none ring-0 flex-1",disabled&&"cursor-not-allowed pointer-events-none",multiple&&"min-w-24"),placeholder:(0,dist_esm.Im)(state.value)?placeholder:"",onChange:evt=>handleQuery(evt.target.value)})]}),!state.loading&&(0,jsx_runtime.jsx)(esm.In,{className:classnames_default()("flex-content p-2 z-0 order-9 text-muted cursor-pointer self-stretch flex items-center h-auto",state.open&&"-scale-y-100 pointer-events-none",disabled&&"pointer-events-none"),onClick:()=>!disabled&&openDropdown(),icon:esm.OO.chevronDown}),state.loading&&(0,jsx_runtime.jsx)(esm.In,{animate:"spin",className:classnames_default()("flex-content p-2 z-0 order-9 text-muted pointer-events-none"),icon:esm.OO.spinner}),state.open&&!state.loading&&(0,jsx_runtime.jsx)(floating_ui_react.XF,{children:(0,jsx_runtime.jsx)(floating_ui_react.s3,{context,initialFocus:-1,visuallyHiddenDismiss:!0,children:(0,jsx_runtime.jsx)(Options,{ref:refs.setFloating,className:"outline shadow-lg max-h-[40vh] z-[var(--z-popover)]",style:{width:refs.reference.current?.getBoundingClientRect().width,...floatingStyles},...floatingProps,items:state.items,active:state.activeIndex,valueProperty,labelProperty,itemRef:setItemRef,itemProps:makeItemProps,children:(item,label)=>renderer?.(item)??label})})})]})};try{Select.displayName="Select",Select.__docgenInfo={description:"",displayName:"Select",props:{options:{defaultValue:null,description:"list options",name:"options",required:!1,type:{name:"T[]"}},groupProperty:{defaultValue:null,description:"group by property name",name:"groupProperty",required:!1,type:{name:"string | number | symbol"}},labelProperty:{defaultValue:{value:'"label" as AnyObject'},description:"label property name",name:"labelProperty",required:!1,type:{name:"string | number | symbol"}},valueProperty:{defaultValue:{value:'"id" as AnyObject'},description:"value property name",name:"valueProperty",required:!1,type:{name:"string | number | symbol"}},searchable:{defaultValue:null,description:"searchable list",name:"searchable",required:!1,type:{name:"boolean"}},allowCreate:{defaultValue:null,description:"allow create item",name:"allowCreate",required:!1,type:{name:"boolean"}},createOption:{defaultValue:null,description:"create new item object",name:"createOption",required:!1,type:{name:"((query: string) => T)"}},onQuery:{defaultValue:null,description:"query handler",name:"onQuery",required:!1,type:{name:"((query: string) => T[] | Promise)"}},renderer:{defaultValue:null,description:"item renderer",name:"renderer",required:!1,type:{name:"((option: T) => ReactNode)"}},matcher:{defaultValue:null,description:"item matcher",name:"matcher",required:!1,type:{name:"((option: T, query: string) => boolean)"}},ref:{defaultValue:null,description:"",name:"ref",required:!1,type:{name:"Ref"}},info:{defaultValue:null,description:"info label at bottom",name:"info",required:!1,type:{name:"string"}},label:{defaultValue:null,description:"input label",name:"label",required:!1,type:{name:"string"}},name:{defaultValue:null,description:"input name",name:"name",required:!1,type:{name:"string"}},width:{defaultValue:null,description:"field width",name:"width",required:!1,type:{name:"string | number"}},onFocus:{defaultValue:null,description:"on focus event handler",name:"onFocus",required:!1,type:{name:"FocusEventHandler"}},onBlur:{defaultValue:null,description:"on blur event handler",name:"onBlur",required:!1,type:{name:"FocusEventHandler"}},autoFocus:{defaultValue:null,description:"auto focus when rendered",name:"autoFocus",required:!1,type:{name:"boolean"}},disabled:{defaultValue:null,description:"disabled input",name:"disabled",required:!1,type:{name:"boolean"}},placeholder:{defaultValue:null,description:"input placeholder",name:"placeholder",required:!1,type:{name:"string"}},readOnly:{defaultValue:null,description:"read-only input",name:"readOnly",required:!1,type:{name:"boolean"}},required:{defaultValue:null,description:"required",name:"required",required:!1,type:{name:"boolean"}},inline:{defaultValue:null,description:"inline label and input",name:"inline",required:!1,type:{name:"boolean"}},"data-testid":{defaultValue:null,description:"data attribute for test id",name:"data-testid",required:!1,type:{name:"string"}},"data-test-value":{defaultValue:null,description:"data attribute for test value",name:"data-test-value",required:!1,type:{name:"any"}},appendLabel:{defaultValue:null,description:"append to label end",name:"appendLabel",required:!1,type:{name:"string | number | boolean | Element"}},error:{defaultValue:null,description:"error message",name:"error",required:!1,type:{name:"string"}},allowClear:{defaultValue:null,description:"show clear button",name:"allowClear",required:!1,type:{name:"boolean"}},onEnterPressed:{defaultValue:null,description:"on enter press callback",name:"onEnterPressed",required:!1,type:{name:"KeyboardEventHandler"}},decorateStart:{defaultValue:null,description:"",name:"decorateStart",required:!1,type:{name:"string | number | boolean | Element"}},decorateEnd:{defaultValue:null,description:"",name:"decorateEnd",required:!1,type:{name:"string | number | boolean | Element"}},invalid:{defaultValue:null,description:"invalid value input",name:"invalid",required:!1,type:{name:"boolean"}},labelWidth:{defaultValue:null,description:"label width for inline",name:"labelWidth",required:!1,type:{name:"string"}},multiple:{defaultValue:null,description:"is multiple selection",name:"multiple",required:!1,type:{name:"boolean"}},value:{defaultValue:null,description:"selected value",name:"value",required:!1,type:{name:"string | string[]"}},onSelect:{defaultValue:null,description:"select handler",name:"onSelect",required:!1,type:{name:"((option: T) => void) | ((option: T[]) => void)"}},onChange:{defaultValue:null,description:"change handler",name:"onChange",required:!1,type:{name:"((value?: string) => void) | ((value?: string[]) => void) | undefined"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/form/src/select/Select.tsx#Select"]={docgenInfo:Select.__docgenInfo,name:"Select",path:"packages/form/src/select/Select.tsx#Select"})}catch(__react_docgen_typescript_loader_error){}const Field=({children,vertical,noOutline,plain,...rest})=>(0,jsx_runtime.jsx)(FieldWrapper,{...rest,children:(0,jsx_runtime.jsx)("div",{className:classnames_default()(internal_Field_module.fieldGroup,!plain&&!noOutline&&"outline",!plain&&"bg-base","flex-1 rounded",!vertical&&"flex flex-nowrap"),children:(0,dist_esm.t_)(children,(child=>(0,react.cloneElement)(child,{"data-inner":!0})))})});try{Field.displayName="Field",Field.__docgenInfo={description:"",displayName:"Field",props:{label:{defaultValue:null,description:"input label",name:"label",required:!1,type:{name:"string"}},appendLabel:{defaultValue:null,description:"append to label end",name:"appendLabel",required:!1,type:{name:"string | number | boolean | Element"}},info:{defaultValue:null,description:"info label at bottom",name:"info",required:!1,type:{name:"string"}},required:{defaultValue:null,description:"required",name:"required",required:!1,type:{name:"boolean"}},noOutline:{defaultValue:null,description:"hide outline",name:"noOutline",required:!1,type:{name:"boolean"}},width:{defaultValue:null,description:"field width",name:"width",required:!1,type:{name:"string | number"}},inline:{defaultValue:null,description:"inline label and input",name:"inline",required:!1,type:{name:"boolean"}},labelWidth:{defaultValue:null,description:"label width for inline",name:"labelWidth",required:!1,type:{name:"string"}},plain:{defaultValue:null,description:"dont apply bg and outline",name:"plain",required:!1,type:{name:"boolean"}},vertical:{defaultValue:null,description:"",name:"vertical",required:!1,type:{name:"boolean"}},className:{defaultValue:null,description:"css classname(s)",name:"className",required:!1,type:{name:"string"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/form/src/input/Field.tsx#Field"]={docgenInfo:Field.__docgenInfo,name:"Field",path:"packages/form/src/input/Field.tsx#Field"})}catch(__react_docgen_typescript_loader_error){}const FileField=({uploadHandler,inline,label,accept,multiple=!1,value,...rest})=>{const{pending,files,list,upload,remove}=useFileUploader((async(data,config)=>await(uploadHandler?.(data,config))),value,multiple);return(0,jsx_runtime.jsxs)(react.Fragment,{children:[(0,jsx_runtime.jsxs)(Field,{plain:!0,inline,label,className:"inline-block",children:[(0,jsx_runtime.jsx)(HiddenInput,{hiddenValue:multiple?list:list?.[0],...rest}),(0,jsx_runtime.jsx)("span",{children:(0,jsx_runtime.jsx)(esm.$n,{badge:pending>0?`${pending}`:void 0,"data-ref":"filebtn",children:(0,jsx_runtime.jsxs)(react.Fragment,{children:[(0,jsx_runtime.jsx)("span",{children:"Add file"}),(0,jsx_runtime.jsx)("input",{type:"file",accept,multiple,className:"absolute inset-0 opacity-0 z-5",onChange:e=>[upload(e.target.files),e.target.value=""]})]})})})]}),(0,jsx_runtime.jsx)("br",{}),(0,jsx_runtime.jsx)("div",{className:"bg-alternate",children:files.map(((file,idx)=>(0,jsx_runtime.jsxs)("div",{className:"px-2 py-1",children:[(0,jsx_runtime.jsxs)("div",{className:"flex flex-nowrap gap-1 items-start",children:[(0,jsx_runtime.jsxs)("div",{className:"flex-1 truncate pe-2",children:[file.filename,(0,jsx_runtime.jsx)("br",{}),(0,jsx_runtime.jsx)("span",{className:"text-xs",children:dist_esm.fO.mime(file.mime)}),(0,jsx_runtime.jsx)("span",{className:"text-xs px-1",children:dist_esm.yL.bytes(file.size)})]}),(0,jsx_runtime.jsx)("div",{className:"flex-initial truncate px-2",children:file.error&&(0,jsx_runtime.jsx)("span",{className:"text-danger-600",children:file.error})}),file.progress&&(0,jsx_runtime.jsx)(esm.In,{icon:"mdi mdi-stop-circle",bg:"danger",color:"white",size:"sm",className:"p-[2px]","aria-label":"abort",onClick:()=>file.abort?.()}),!file.progress&&(0,jsx_runtime.jsx)(esm.In,{icon:"mdi mdi-trash-can",color:"danger",size:"sm","aria-label":"remove",onClick:()=>remove(file.key)})]}),file.progress&&(0,jsx_runtime.jsx)(esm.z2,{animate:!0,value:100*file.progress,size:"xxs"})]},idx)))})]})};try{FileField.displayName="FileField",FileField.__docgenInfo={description:"",displayName:"FileField",props:{datatype:{defaultValue:null,description:"",name:"datatype",required:!1,type:{name:"enum",value:[{value:'"file"'}]}},accept:{defaultValue:null,description:"",name:"accept",required:!1,type:{name:"string"}},id:{defaultValue:null,description:"",name:"id",required:!1,type:{name:"string"}},label:{defaultValue:null,description:"",name:"label",required:!1,type:{name:"string"}},required:{defaultValue:null,description:"",name:"required",required:!1,type:{name:"boolean"}},multiple:{defaultValue:{value:"false"},description:"",name:"multiple",required:!1,type:{name:"boolean"}},defaultValue:{defaultValue:null,description:"",name:"defaultValue",required:!1,type:{name:"any"}},value:{defaultValue:null,description:"",name:"value",required:!1,type:{name:"any"}},inline:{defaultValue:null,description:"",name:"inline",required:!1,type:{name:"boolean"}},fileUrl:{defaultValue:null,description:"",name:"fileUrl",required:!1,type:{name:"((path: string) => string)"}},uploadHandler:{defaultValue:null,description:"",name:"uploadHandler",required:!0,type:{name:"UploadHandler"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/form/src/builder/FileField.tsx#FileField"]={docgenInfo:FileField.__docgenInfo,name:"FileField",path:"packages/form/src/builder/FileField.tsx#FileField"})}catch(__react_docgen_typescript_loader_error){}const FormField=({id,label,required,inline,prefix,autoFocus,defaultValue,fileUrl,uploadHandler,...rest})=>{const{t}=(0,es.Bd)(),fieldName=(0,react.useMemo)((()=>[prefix,id].filter(Boolean).join(".")),[id,prefix]),E=(0,react.useMemo)((()=>"number"===rest.datatype||"decimal"===rest.datatype?Number_Number:"range"===rest.datatype?Range:"boolean"===rest.datatype?Switch:"text"===rest.datatype?Textarea:"color"===rest.datatype?ColorInput:"string"===rest.datatype&&rest.options?Select:Input),[rest.datatype]),props=(0,react.useMemo)((()=>"number"===rest.datatype?{min:rest.min,max:rest.max,step:rest.step??1}:"decimal"===rest.datatype?{min:rest.min,max:rest.max,step:rest.step??.1}:"range"===rest.datatype?{min:rest.min??1,max:rest.max??99,step:rest.step??1,showValue:!0,showLabels:!0}:"text"===rest.datatype?{rows:3}:"color"===rest.datatype?{showPicker:!0}:"string"===rest.datatype&&rest.options?{options:rest.options,multiple:rest.multiple,searchable:!0}:{}),[rest]);return"avatar"===rest.datatype?uploadHandler&&(0,jsx_runtime.jsx)(Controller,{name:fieldName,children:(0,jsx_runtime.jsx)(AvatarInput,{uploadHandler,fileUrl,name:fieldName})}):"file"===rest.datatype?uploadHandler&&(0,jsx_runtime.jsx)(Controller,{name:fieldName,children:(0,jsx_runtime.jsx)(FileField,{uploadHandler,inline,label,id,...rest})}):rest.multiple&&!("options"in rest)?(0,jsx_runtime.jsx)(ArrayInput,{name:fieldName,label:t(label,label),required,onAdd:()=>"",children:(0,jsx_runtime.jsx)(Controller,{children:(0,jsx_runtime.jsx)(E,{...props})})}):(0,jsx_runtime.jsx)(Controller,{name:fieldName,children:(0,jsx_runtime.jsx)(E,{...props,autoFocus,label:t(label,label),placeholder:t(label,label),required,inline})})};try{FormField.displayName="FormField",FormField.__docgenInfo={description:"",displayName:"FormField",props:{datatype:{defaultValue:null,description:"",name:"datatype",required:!0,type:{name:"enum",value:[{value:'"string"'},{value:'"number"'},{value:'"boolean"'},{value:'"text"'},{value:'"color"'},{value:'"avatar"'},{value:'"decimal"'},{value:'"file"'},{value:'"range"'}]}},id:{defaultValue:null,description:"",name:"id",required:!0,type:{name:"string"}},label:{defaultValue:null,description:"",name:"label",required:!0,type:{name:"string"}},required:{defaultValue:null,description:"",name:"required",required:!1,type:{name:"boolean"}},multiple:{defaultValue:null,description:"",name:"multiple",required:!1,type:{name:"boolean"}},defaultValue:{defaultValue:null,description:"",name:"defaultValue",required:!1,type:{name:"any"}},inline:{defaultValue:null,description:"",name:"inline",required:!1,type:{name:"boolean"}},prefix:{defaultValue:null,description:"",name:"prefix",required:!1,type:{name:"string"}},autoFocus:{defaultValue:null,description:"",name:"autoFocus",required:!1,type:{name:"boolean"}},fileUrl:{defaultValue:null,description:"",name:"fileUrl",required:!1,type:{name:"((path: string) => string)"}},uploadHandler:{defaultValue:null,description:"",name:"uploadHandler",required:!1,type:{name:"UploadHandler"}},options:{defaultValue:null,description:"",name:"options",required:!1,type:{name:"string[]"}},regex:{defaultValue:null,description:"",name:"regex",required:!1,type:{name:"string"}},identifierType:{defaultValue:null,description:"",name:"identifierType",required:!1,type:{name:"string"}},min:{defaultValue:null,description:"",name:"min",required:!1,type:{name:"number"}},max:{defaultValue:null,description:"",name:"max",required:!1,type:{name:"number"}},step:{defaultValue:null,description:"",name:"step",required:!1,type:{name:"number"}},accept:{defaultValue:null,description:"",name:"accept",required:!1,type:{name:"string"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/form/src/builder/FormField.tsx#FormField"]={docgenInfo:FormField.__docgenInfo,name:"FormField",path:"packages/form/src/builder/FormField.tsx#FormField"})}catch(__react_docgen_typescript_loader_error){}const makeYupField=field=>{let yupField=dist_esm.hg.string();if("schema"===field.datatype){const child=Object.fromEntries(field.schema.map((field=>[field.id,makeYupField(field)])));yupField=dist_esm.hg.object(child)}return"boolean"===field.datatype&&(yupField=dist_esm.hg.boolean()),"decimal"!==field.datatype&&"number"!==field.datatype&&"range"!==field.datatype||(yupField=dist_esm.hg.number(),!(0,dist_esm.gD)(field.min)&&(yupField=yupField.min(field.min)),!(0,dist_esm.gD)(field.max)&&(yupField=yupField.max(field.max)),"range"===field.datatype&&(yupField=dist_esm.hg.array(yupField))),"string"===field.datatype&&(field.options&&(yupField=yupField.oneOf(field.options)),field.regex&&(yupField=yupField.matches(new RegExp(field.regex)))),"file"===field.datatype&&(yupField=dist_esm.hg.object({filename:dist_esm.hg.string().required(),path:dist_esm.hg.string().required()}).unknown(!0),field.required&&(yupField=yupField.test("is-empty",{key:"form:yup.empty",values:{path:field.id,label:field.label}},(value=>!(0,dist_esm.Im)(value))))),field.required&&(yupField=yupField.required()),field.multiple&&(yupField=dist_esm.hg.array(yupField),field.required&&(yupField=yupField.required().min(1))),yupField.label(field.label)},useFormBuilder=(schema,options={})=>{const filteredSchema=(0,react.useMemo)((()=>schema.filter?.((schm=>!!schm.id))??[]),[schema]),schemaDef=dist_esm.hg.object(Object.fromEntries(filteredSchema.map((field=>[field.id,makeYupField(field)]))));return{formDef:(0,jsx_runtime.jsx)(react.Fragment,{children:filteredSchema.map(((field,idx)=>(0,jsx_runtime.jsx)("div",{className:"mb-4",children:"schema"===field.datatype?null:(0,jsx_runtime.jsx)(FormField,{...field,autoFocus:0===idx,fileUrl:options.fileUrl,uploadHandler:options.uploadHandler,inline:options.inline,prefix:options.prefix})},field.id)))}),schemaDef}},Checkbox=({ref,label,value,name,checked,invalid,disabled,error,width,icon,iconChecked,onChange,...rest})=>{const[actualValue,setActualValue]=(0,react.useState)(!1),deferred=(0,react.useDeferredValue)(!!checked),iconOn=(0,react.useMemo)((()=>iconChecked??icon??esm.OO.checkboxOn),[icon,iconChecked]),iconOff=(0,react.useMemo)((()=>icon??esm.OO.checkboxOff),[icon]);(0,react.useEffect)((()=>{setActualValue(deferred)}),[deferred]);const handleChange=(0,react.useCallback)((e=>{setActualValue(e?.target.checked??!1),onChange?.(e?.target.checked??!1)}),[onChange,value]);return(0,jsx_runtime.jsxs)("label",{className:classnames_default()(invalid?"ring-danger-500":"ring-primary-500",disabled?"opacity-50 cursor-not-allowed":" opacity-85 hover:opacity-100 cursor-pointer","inline-flex gap-1 py-1 items-center relative rounded ring-offset-2 has-[:focus-visible]:ring-1"),style:{width},children:[(0,jsx_runtime.jsx)("input",{className:classnames_default()("appearance-none absolute opacity-0 inset-0 bg-transparent border-none outline-none ring-0"),"aria-invalid":invalid,"aria-disabled":disabled,disabled,"aria-errormessage":error,type:"checkbox",ref,size:1,tabIndex:0,name,autoComplete:"off",checked:actualValue,onChange:handleChange,...rest}),(0,jsx_runtime.jsx)(esm.In,{className:classnames_default()("p-0.5",actualValue&&icon&&!iconChecked&&"bg-primary-500 text-white"),size:"1.25em",color:invalid?"danger":"primary",icon:actualValue?iconOn:iconOff}),(0,jsx_runtime.jsx)(ErrorIcon,{invalid,error}),label&&(0,jsx_runtime.jsx)("span",{className:"flex-initial leading-none truncate",children:label})]})};try{Checkbox.displayName="Checkbox",Checkbox.__docgenInfo={description:"",displayName:"Checkbox",props:{label:{defaultValue:null,description:"checkbox label",name:"label",required:!1,type:{name:"string | Element"}},checked:{defaultValue:null,description:"checked",name:"checked",required:!1,type:{name:"boolean"}},value:{defaultValue:null,description:"value",name:"value",required:!1,type:{name:"string | number"}},onChange:{defaultValue:null,description:"on checked change",name:"onChange",required:!1,type:{name:"((checked: string | number | boolean) => void)"}},disabled:{defaultValue:null,description:"disabled input",name:"disabled",required:!1,type:{name:"boolean"}},invalid:{defaultValue:null,description:"invalid value input",name:"invalid",required:!1,type:{name:"boolean"}},error:{defaultValue:null,description:"error message",name:"error",required:!1,type:{name:"string"}},width:{defaultValue:null,description:"field width",name:"width",required:!1,type:{name:"string | number"}},icon:{defaultValue:null,description:"cutom checkbox icon",name:"icon",required:!1,type:{name:"string"}},iconChecked:{defaultValue:null,description:"cutom checkbox checked icon",name:"iconChecked",required:!1,type:{name:"string"}},name:{defaultValue:null,description:"",name:"name",required:!1,type:{name:"string"}},ref:{defaultValue:null,description:"",name:"ref",required:!1,type:{name:"Ref"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/form/src/input/Checkbox.tsx#Checkbox"]={docgenInfo:Checkbox.__docgenInfo,name:"Checkbox",path:"packages/form/src/input/Checkbox.tsx#Checkbox"})}catch(__react_docgen_typescript_loader_error){}var File_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/form/src/input/File.module.css"),File_module_options={};File_module_options.styleTagTransform=styleTagTransform_default(),File_module_options.setAttributes=setAttributesWithoutAttributes_default(),File_module_options.insert=insertBySelector_default().bind(null,"head"),File_module_options.domAPI=styleDomAPI_default(),File_module_options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(File_module.A,File_module_options);const input_File_module=File_module.A&&File_module.A.locals?File_module.A.locals:void 0,FileExists=prop=>{const[kill,setKill]=(0,react.useState)(!1);return(0,react.useEffect)((()=>{setTimeout((()=>{setKill(!0)}),2e3)})),kill?null:(0,jsx_runtime.jsxs)("div",{className:"bg-danger-500 text-white px-2 rounded text-xs",children:["File [",prop.name,"] already added to list"]})},FileInput=({ref,value,invalid,readOnly,disabled,required,placeholder,autoFocus,error,name,accept,showList=!0,multiple,onChange,onEnterPressed,...rest})=>{const listRef=(0,react.useRef)([]),inputRef=(0,react.useRef)(null),[exists,setExists]=(0,react.useState)([]),[actualValue,setActualValue]=(0,react.useState)(),deferred=(0,react.useDeferredValue)(value),handleEnterPressed=(0,react.useMemo)((()=>handleEnter(onEnterPressed)),[onEnterPressed]);(0,react.useEffect)((()=>{setActualValue(deferred)}),[deferred]);const handleChange=(0,react.useCallback)((e=>{if(setExists([]),multiple)if(e?.target.files){if(showList){const exists=[];Array.from(e.target.files).forEach((file=>{listRef.current.find((ef=>ef.name===file.name))?exists.push(file.name):listRef.current.push(file)})),setActualValue(listRef.current.slice()),setExists(exists)}e.target.value="",onChange?.(listRef.current)}else listRef.current=[],setActualValue(listRef.current),onChange?.(listRef.current);else setActualValue(e?.target.files?.item(0)),onChange?.(e?.target.files?.item(0)??void 0),!e&&inputRef.current&&(inputRef.current.value="")}),[onChange,multiple,showList]),removeFile=(0,react.useCallback)((idx=>{listRef.current.splice(idx,1),setActualValue(listRef.current),onChange?.(listRef.current)}),[onChange]);return(0,jsx_runtime.jsx)(InputWrapper,{showClear:!(0,dist_esm.Im)(actualValue),onClear:handleChange,invalid,readOnly,disabled,required,error,listing:showList&&(0,jsx_runtime.jsxs)(react.Fragment,{children:[(0,dist_esm.cy)(actualValue)&&actualValue?.map?.(((file,idx)=>(0,jsx_runtime.jsxs)("div",{className:"flex gap-1 items-center text-sm text-dimmed py-1 px-2",children:[(0,jsx_runtime.jsxs)("div",{className:"flex-1 truncate",children:[(0,jsx_runtime.jsx)("div",{className:"font-medium",children:file.name}),(0,jsx_runtime.jsx)("span",{className:"text-xs",children:dist_esm.fO.mime(file.type)})]}),(0,jsx_runtime.jsx)("span",{className:"flex-content text-end w-24",children:dist_esm.yL.bytes(file.size)}),(0,jsx_runtime.jsx)(esm.In,{className:"cursor-pointer opacity-30 hover:opacity-80",icon:esm.OO.close,onClick:()=>{removeFile(idx)}})]},idx))),exists.map((name=>(0,jsx_runtime.jsx)(FileExists,{name},(new Date).getTime())))]}),...rest,children:(0,jsx_runtime.jsx)("input",{className:classnames_default()("appearance-none bg-transparent py-1 px-2 flex-1 border-none outline-none ring-0",input_File_module.fileInput,(0,dist_esm.cy)(actualValue)&&actualValue?.length&&"text-[var(--fabric-bg)]"),"aria-invalid":invalid,"aria-disabled":disabled,"aria-readonly":readOnly,"aria-errormessage":error,placeholder,disabled,readOnly,size:1,type:"file",multiple,"data-testid":name,name,accept,ref:(0,dist_esm.Px)(ref,inputRef),autoComplete:"off",autoFocus,onChange:handleChange,onKeyDown:handleEnterPressed})})};try{FileInput.displayName="FileInput",FileInput.__docgenInfo={description:"",displayName:"FileInput",props:{multiple:{defaultValue:null,description:"allow selecting mutiple files",name:"multiple",required:!1,type:{name:"boolean"}},showList:{defaultValue:{value:"true"},description:"show selected file list",name:"showList",required:!1,type:{name:"boolean"}},accept:{defaultValue:null,description:"acceptable file types",name:"accept",required:!1,type:{name:"string"}},value:{defaultValue:null,description:"value",name:"value",required:!1,type:{name:"any"}},onChange:{defaultValue:null,description:"change handler",name:"onChange",required:!1,type:{name:"((value?: any) => void)"}},onFocus:{defaultValue:null,description:"on focus event handler",name:"onFocus",required:!1,type:{name:"FocusEventHandler"}},onBlur:{defaultValue:null,description:"on blur event handler",name:"onBlur",required:!1,type:{name:"FocusEventHandler"}},onEnterPressed:{defaultValue:null,description:"on enter press callback",name:"onEnterPressed",required:!1,type:{name:"KeyboardEventHandler"}},name:{defaultValue:null,description:"input name",name:"name",required:!1,type:{name:"string"}},label:{defaultValue:null,description:"input label",name:"label",required:!1,type:{name:"string"}},placeholder:{defaultValue:null,description:"input placeholder",name:"placeholder",required:!1,type:{name:"string"}},appendLabel:{defaultValue:null,description:"append to label end",name:"appendLabel",required:!1,type:{name:"string | number | boolean | Element"}},decorateStart:{defaultValue:null,description:"",name:"decorateStart",required:!1,type:{name:"string | number | boolean | Element"}},decorateEnd:{defaultValue:null,description:"",name:"decorateEnd",required:!1,type:{name:"string | number | boolean | Element"}},info:{defaultValue:null,description:"info label at bottom",name:"info",required:!1,type:{name:"string"}},required:{defaultValue:null,description:"required",name:"required",required:!1,type:{name:"boolean"}},disabled:{defaultValue:null,description:"disabled input",name:"disabled",required:!1,type:{name:"boolean"}},readOnly:{defaultValue:null,description:"read-only input",name:"readOnly",required:!1,type:{name:"boolean"}},autoFocus:{defaultValue:null,description:"auto focus when rendered",name:"autoFocus",required:!1,type:{name:"boolean"}},allowClear:{defaultValue:null,description:"show clear button",name:"allowClear",required:!1,type:{name:"boolean"}},invalid:{defaultValue:null,description:"invalid value input",name:"invalid",required:!1,type:{name:"boolean"}},error:{defaultValue:null,description:"error message",name:"error",required:!1,type:{name:"string"}},width:{defaultValue:null,description:"field width",name:"width",required:!1,type:{name:"string | number"}},inline:{defaultValue:null,description:"inline label and input",name:"inline",required:!1,type:{name:"boolean"}},labelWidth:{defaultValue:null,description:"label width for inline",name:"labelWidth",required:!1,type:{name:"string"}},"data-testid":{defaultValue:null,description:"data attribute for test id",name:"data-testid",required:!1,type:{name:"string"}},"data-test-value":{defaultValue:null,description:"data attribute for test value",name:"data-test-value",required:!1,type:{name:"any"}},ref:{defaultValue:null,description:"",name:"ref",required:!1,type:{name:"Ref"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/form/src/input/File.tsx#FileInput"]={docgenInfo:FileInput.__docgenInfo,name:"FileInput",path:"packages/form/src/input/File.tsx#FileInput"})}catch(__react_docgen_typescript_loader_error){}const Password=({ref,value,name,strength,invalid,readOnly,disabled,required,placeholder,autoFocus,showToggle,onChange,onEnterPressed,...rest})=>{const{t}=(0,es.Bd)("form"),[show,setShow]=(0,react.useState)(!1),[actualValue,setActualValue]=(0,react.useState)(""),deferred=(0,react.useDeferredValue)(value),handleEnterPressed=(0,react.useMemo)((()=>handleEnter(onEnterPressed)),[onEnterPressed]);(0,react.useEffect)((()=>{setActualValue(deferred??"")}),[deferred]);const handleChange=(0,react.useCallback)((e=>{const value=e?.target.value;setActualValue(value??""),onChange?.(value??void 0)}),[onChange]);return(0,jsx_runtime.jsxs)(InputWrapper,{showClear:!!actualValue,onClear:handleChange,invalid,readOnly,disabled,required,...rest,decorateEnd:showToggle&&(0,jsx_runtime.jsx)(esm.m_,{color:"warning",content:t(show?"password.hide":"password.show"),children:(0,jsx_runtime.jsx)(esm.$n,{tabIndex:-1,color:"warning",variant:"link","aria-label":t(show?"password.hide":"password.show"),icon:show?esm.OO.eyeOff:esm.OO.eye,onClick:()=>setShow(!show)})}),children:[(0,jsx_runtime.jsx)("input",{className:"appearance-none bg-transparent py-1 px-2 flex-1 border-none outline-none ring-0","aria-invalid":invalid,"aria-disabled":disabled,"aria-readonly":readOnly,placeholder,disabled,readOnly,"data-testid":name,name,size:1,type:show?"text":"password",ref,autoComplete:"off",autoFocus,value:actualValue,onChange:handleChange,onKeyDown:handleEnterPressed}),!!strength&&(0,jsx_runtime.jsx)("div",{className:classnames_default()("absolute bottom-px h-[3px] inset-x-0 after:block after:h-full after:bg-dimmed","ltr:bg-gradient-to-r rtl:bg-gradient-to-l from-danger-500 via-marigold-500 to-jade-500"),style:{paddingInlineStart:(strength>1?100:100*strength)+"%"}})]})};try{Password.displayName="Password",Password.__docgenInfo={description:"",displayName:"Password",props:{showToggle:{defaultValue:null,description:"show password toggle",name:"showToggle",required:!1,type:{name:"boolean"}},strength:{defaultValue:null,description:"password strength meter (0-1)",name:"strength",required:!1,type:{name:"number"}},value:{defaultValue:null,description:"value",name:"value",required:!1,type:{name:"string"}},onChange:{defaultValue:null,description:"change handler",name:"onChange",required:!1,type:{name:"((value?: string) => void)"}},onFocus:{defaultValue:null,description:"on focus event handler",name:"onFocus",required:!1,type:{name:"FocusEventHandler"}},onBlur:{defaultValue:null,description:"on blur event handler",name:"onBlur",required:!1,type:{name:"FocusEventHandler"}},onEnterPressed:{defaultValue:null,description:"on enter press callback",name:"onEnterPressed",required:!1,type:{name:"KeyboardEventHandler"}},name:{defaultValue:null,description:"input name",name:"name",required:!1,type:{name:"string"}},label:{defaultValue:null,description:"input label",name:"label",required:!1,type:{name:"string"}},placeholder:{defaultValue:null,description:"input placeholder",name:"placeholder",required:!1,type:{name:"string"}},appendLabel:{defaultValue:null,description:"append to label end",name:"appendLabel",required:!1,type:{name:"string | number | boolean | Element"}},decorateStart:{defaultValue:null,description:"",name:"decorateStart",required:!1,type:{name:"string | number | boolean | Element"}},decorateEnd:{defaultValue:null,description:"",name:"decorateEnd",required:!1,type:{name:"string | number | boolean | Element"}},info:{defaultValue:null,description:"info label at bottom",name:"info",required:!1,type:{name:"string"}},required:{defaultValue:null,description:"required",name:"required",required:!1,type:{name:"boolean"}},disabled:{defaultValue:null,description:"disabled input",name:"disabled",required:!1,type:{name:"boolean"}},readOnly:{defaultValue:null,description:"read-only input",name:"readOnly",required:!1,type:{name:"boolean"}},autoFocus:{defaultValue:null,description:"auto focus when rendered",name:"autoFocus",required:!1,type:{name:"boolean"}},allowClear:{defaultValue:null,description:"show clear button",name:"allowClear",required:!1,type:{name:"boolean"}},invalid:{defaultValue:null,description:"invalid value input",name:"invalid",required:!1,type:{name:"boolean"}},error:{defaultValue:null,description:"error message",name:"error",required:!1,type:{name:"string"}},width:{defaultValue:null,description:"field width",name:"width",required:!1,type:{name:"string | number"}},inline:{defaultValue:null,description:"inline label and input",name:"inline",required:!1,type:{name:"boolean"}},labelWidth:{defaultValue:null,description:"label width for inline",name:"labelWidth",required:!1,type:{name:"string"}},"data-testid":{defaultValue:null,description:"data attribute for test id",name:"data-testid",required:!1,type:{name:"string"}},"data-test-value":{defaultValue:null,description:"data attribute for test value",name:"data-test-value",required:!1,type:{name:"any"}},ref:{defaultValue:null,description:"",name:"ref",required:!1,type:{name:"Ref"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/form/src/input/Password.tsx#Password"]={docgenInfo:Password.__docgenInfo,name:"Password",path:"packages/form/src/input/Password.tsx#Password"})}catch(__react_docgen_typescript_loader_error){}const Radio=({ref,name,label,value,invalid,disabled,error,width,icon,iconChecked,onChange,...rest})=>{const iconOn=(0,react.useMemo)((()=>iconChecked??icon??esm.OO.radioOn),[icon,iconChecked]),iconOff=(0,react.useMemo)((()=>icon??esm.OO.radioOff),[icon]),handleChange=(0,react.useCallback)((e=>{e?.target.checked&&value&&onChange?.(value)}),[onChange,value]);return(0,jsx_runtime.jsxs)("label",{className:classnames_default()(invalid?"ring-danger-500":"ring-primary-500",disabled?"opacity-50 cursor-not-allowed":"hover:opacity-100 cursor-pointer","inline-flex gap-1 py-1 items-center relative cursor-pointer opacity-85 rounded ring-offset-2 has-[:focus-visible]:ring-1"),style:{width},children:[(0,jsx_runtime.jsx)("input",{className:classnames_default()("appearance-none absolute peer opacity-0 inset-0 bg-transparent border-none outline-none ring-0"),"aria-disabled":disabled,disabled,type:"radio",ref,size:1,name,value,autoComplete:"off",onChange:handleChange,...rest}),(0,jsx_runtime.jsx)(esm.In,{className:classnames_default()("p-0.5 hidden peer-checked:inline-block",icon&&!iconChecked&&"bg-primary-500 text-white"),color:invalid?"danger":"primary",size:"1.25em",icon:iconOn}),(0,jsx_runtime.jsx)(esm.In,{className:classnames_default()("p-0.5 peer-checked:hidden"),color:invalid?"danger":"primary",size:"1.25em",icon:iconOff}),label&&(0,jsx_runtime.jsx)("span",{className:"flex-initial leading-none truncate",children:label})]})};try{Radio.displayName="Radio",Radio.__docgenInfo={description:"",displayName:"Radio",props:{name:{defaultValue:null,description:"",name:"name",required:!1,type:{name:"string"}},label:{defaultValue:null,description:"radio label",name:"label",required:!1,type:{name:"string | Element"}},value:{defaultValue:null,description:"value",name:"value",required:!0,type:{name:"string | number"}},onChange:{defaultValue:null,description:"on checked change",name:"onChange",required:!1,type:{name:"((value: string) => void) | ((value: number) => void)"}},disabled:{defaultValue:null,description:"disabled input",name:"disabled",required:!1,type:{name:"boolean"}},invalid:{defaultValue:null,description:"invalid value input",name:"invalid",required:!1,type:{name:"boolean"}},error:{defaultValue:null,description:"error message",name:"error",required:!1,type:{name:"string"}},width:{defaultValue:null,description:"field width",name:"width",required:!1,type:{name:"string | number"}},icon:{defaultValue:null,description:"cutom checkbox icon",name:"icon",required:!1,type:{name:"string"}},iconChecked:{defaultValue:null,description:"cutom checkbox checked icon",name:"iconChecked",required:!1,type:{name:"string"}},ref:{defaultValue:null,description:"",name:"ref",required:!1,type:{name:"Ref"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/form/src/input/Radio.tsx#Radio"]={docgenInfo:Radio.__docgenInfo,name:"Radio",path:"packages/form/src/input/Radio.tsx#Radio"})}catch(__react_docgen_typescript_loader_error){}const RadioGroup=({children,name,className,optionWidth,onChange,...rest})=>(0,jsx_runtime.jsx)(FieldWrapper,{...rest,children:(0,jsx_runtime.jsx)("div",{className,children:(0,dist_esm.t_)(children,(child=>(0,react.cloneElement)(child,{name,onChange,width:optionWidth})))})});try{RadioGroup.displayName="RadioGroup",RadioGroup.__docgenInfo={description:"",displayName:"RadioGroup",props:{label:{defaultValue:null,description:"input label",name:"label",required:!1,type:{name:"string"}},appendLabel:{defaultValue:null,description:"append to label end",name:"appendLabel",required:!1,type:{name:"string | number | boolean | Element"}},info:{defaultValue:null,description:"field info",name:"info",required:!1,type:{name:"string"}},width:{defaultValue:null,description:"field width",name:"width",required:!1,type:{name:"string | number"}},inline:{defaultValue:null,description:"inline label and input",name:"inline",required:!1,type:{name:"boolean"}},labelWidth:{defaultValue:null,description:"label width for inline",name:"labelWidth",required:!1,type:{name:"string"}},optionWidth:{defaultValue:null,description:"label width for inline",name:"optionWidth",required:!1,type:{name:"string"}},name:{defaultValue:null,description:"field name",name:"name",required:!1,type:{name:"string"}},vertical:{defaultValue:null,description:"vertical orientation",name:"vertical",required:!1,type:{name:"boolean"}},onChange:{defaultValue:null,description:"change handler",name:"onChange",required:!1,type:{name:"((value: AnyObject) => void)"}},className:{defaultValue:null,description:"css classname(s)",name:"className",required:!1,type:{name:"string"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/form/src/input/RadioGroup.tsx#RadioGroup"]={docgenInfo:RadioGroup.__docgenInfo,name:"RadioGroup",path:"packages/form/src/input/RadioGroup.tsx#RadioGroup"})}catch(__react_docgen_typescript_loader_error){}const Search=({ref,value,name,invalid,readOnly,disabled,required,searching,placeholder,autoFocus,allowClear=!0,searchOnChange=!0,decorateEnd,decorateStart,onSearch,onChange,onEnterPressed,...rest})=>{const[actualValue,setActualValue]=(0,react.useState)(""),deferred=(0,react.useDeferredValue)(value),refValue=(0,react.useRef)(""),handleSearch=(0,esm.d7)((()=>onSearch?.(refValue.current)),[onSearch],250),handleEnterPressed=(0,react.useMemo)((()=>handleEnter(handleSearch)),[handleSearch]);(0,react.useEffect)((()=>{setActualValue(deferred??"")}),[deferred]);const handleChange=(0,react.useCallback)((e=>{const value=e?.target.value;refValue.current=value??"",setActualValue(value??""),onChange?.(value??void 0),searchOnChange&&handleSearch()}),[onChange,searchOnChange,handleSearch]);return(0,jsx_runtime.jsx)(InputWrapper,{showClear:!!actualValue,onClear:handleChange,allowClear,invalid,readOnly,disabled,required,decorateStart,decorateEnd:(0,jsx_runtime.jsxs)(react.Fragment,{children:[decorateEnd,searching&&(0,jsx_runtime.jsx)(esm.In,{className:"p-2",icon:esm.OO.spinner,animate:"spin"}),!searching&&(0,jsx_runtime.jsx)(esm.$n,{tabIndex:-1,variant:"link","aria-label":"search",disabled:!actualValue,icon:esm.OO.search,onClick:handleSearch})]}),...rest,children:(0,jsx_runtime.jsx)("input",{className:"appearance-none bg-transparent py-1 px-2 flex-1 border-none outline-none ring-0","aria-invalid":invalid,"aria-disabled":disabled,"aria-readonly":readOnly,placeholder,disabled,readOnly,size:1,"data-testid":name,name,type:"search",ref,autoComplete:"off",autoFocus,value:actualValue,onChange:handleChange,onKeyDown:handleEnterPressed})})};try{Search.displayName="Search",Search.__docgenInfo={description:"",displayName:"Search",props:{searching:{defaultValue:null,description:"is searching",name:"searching",required:!1,type:{name:"boolean"}},searchOnChange:{defaultValue:{value:"true"},description:"search on value change",name:"searchOnChange",required:!1,type:{name:"boolean"}},onSearch:{defaultValue:null,description:"search handler",name:"onSearch",required:!1,type:{name:"((query?: string) => void)"}},value:{defaultValue:null,description:"value",name:"value",required:!1,type:{name:"string"}},onChange:{defaultValue:null,description:"change handler",name:"onChange",required:!1,type:{name:"((value?: string) => void)"}},onFocus:{defaultValue:null,description:"on focus event handler",name:"onFocus",required:!1,type:{name:"FocusEventHandler"}},onBlur:{defaultValue:null,description:"on blur event handler",name:"onBlur",required:!1,type:{name:"FocusEventHandler"}},onEnterPressed:{defaultValue:null,description:"on enter press callback",name:"onEnterPressed",required:!1,type:{name:"KeyboardEventHandler"}},name:{defaultValue:null,description:"input name",name:"name",required:!1,type:{name:"string"}},label:{defaultValue:null,description:"input label",name:"label",required:!1,type:{name:"string"}},placeholder:{defaultValue:null,description:"input placeholder",name:"placeholder",required:!1,type:{name:"string"}},appendLabel:{defaultValue:null,description:"append to label end",name:"appendLabel",required:!1,type:{name:"string | number | boolean | Element"}},decorateStart:{defaultValue:null,description:"",name:"decorateStart",required:!1,type:{name:"string | number | boolean | Element"}},decorateEnd:{defaultValue:null,description:"",name:"decorateEnd",required:!1,type:{name:"string | number | boolean | Element"}},info:{defaultValue:null,description:"info label at bottom",name:"info",required:!1,type:{name:"string"}},required:{defaultValue:null,description:"required",name:"required",required:!1,type:{name:"boolean"}},disabled:{defaultValue:null,description:"disabled input",name:"disabled",required:!1,type:{name:"boolean"}},readOnly:{defaultValue:null,description:"read-only input",name:"readOnly",required:!1,type:{name:"boolean"}},autoFocus:{defaultValue:null,description:"auto focus when rendered",name:"autoFocus",required:!1,type:{name:"boolean"}},allowClear:{defaultValue:{value:"true"},description:"show clear button",name:"allowClear",required:!1,type:{name:"boolean"}},invalid:{defaultValue:null,description:"invalid value input",name:"invalid",required:!1,type:{name:"boolean"}},error:{defaultValue:null,description:"error message",name:"error",required:!1,type:{name:"string"}},width:{defaultValue:null,description:"field width",name:"width",required:!1,type:{name:"string | number"}},inline:{defaultValue:null,description:"inline label and input",name:"inline",required:!1,type:{name:"boolean"}},labelWidth:{defaultValue:null,description:"label width for inline",name:"labelWidth",required:!1,type:{name:"string"}},"data-testid":{defaultValue:null,description:"data attribute for test id",name:"data-testid",required:!1,type:{name:"string"}},"data-test-value":{defaultValue:null,description:"data attribute for test value",name:"data-test-value",required:!1,type:{name:"any"}},ref:{defaultValue:null,description:"",name:"ref",required:!1,type:{name:"Ref"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/form/src/input/Search.tsx#Search"]={docgenInfo:Search.__docgenInfo,name:"Search",path:"packages/form/src/input/Search.tsx#Search"})}catch(__react_docgen_typescript_loader_error){}const Slider=({error,name,value,step=1,min=0,max=100,height=192,color,vertical,showLabels,showValue,minLabel,maxLabel,ranges,useInfinity,format,invalid,autoFocus,disabled,readOnly,onBlur,onChange,onEnterPressed,onFocus,onSlide,...rest})=>{const[actualValue,setActualValue]=(0,react.useState)(0),[displayValue,setDisplayValue]=(0,react.useState)(!1),deferred=(0,react.useDeferredValue)(value),minValue=(0,react.useMemo)((()=>ranges?.[0]??min),[min,ranges]),maxValue=(0,react.useMemo)((()=>ranges?.slice(-1)[0]??max),[max,ranges]);(0,react.useEffect)((()=>{setActualValue(useInfinity&&deferred===1/0?max:deferred??min)}),[deferred,min,max,useInfinity]),(0,react.useEffect)((()=>{setDisplayValue(!!showValue)}),[showValue]);const handleChange=(0,react.useCallback)((value=>{const val=useInfinity&&value===max?1/0:value;setActualValue(val??0),onChange?.(val??void 0)}),[onChange,max,useInfinity]),minDisplay=(0,react.useMemo)((()=>(0,jsx_runtime.jsx)("span",{className:"text-sm text-dimmed px-2.5 py-px whitespace-nowrap overflow-hidden text-center",children:minLabel??dist_esm.yL.number(min,format)})),[minLabel,min,format]),maxDisplay=(0,react.useMemo)((()=>(0,jsx_runtime.jsx)("span",{className:"text-sm text-dimmed px-2.5 py-px whitespace-nowrap overflow-hidden text-center",children:maxLabel??(useInfinity?"∞":dist_esm.yL.number(max,format))})),[maxLabel,max,format,useInfinity]),rangerInstance=useRanger({values:[actualValue],min:minValue,max:maxValue,stepSize:step,steps:ranges,vertical,tickSize:Math.max((max-min)/10,step),onDrag:val=>onSlide?.(val[0]),onDragStart:()=>setDisplayValue(!0),onDragEnd:()=>setDisplayValue(!!showValue),onChange:values=>handleChange(values[0])});return(0,jsx_runtime.jsx)(InputWrapper,{...rest,noOutline:!0,error,invalid,isDisabled:disabled,isReadOnly:readOnly,canClear:!!actualValue,children:(0,jsx_runtime.jsxs)("div",{className:classnames_default()("flex-auto order-3 flex items-center select-none relative z-0",vertical&&"flex-col w-8",invalid?"text-danger-500":"text-primary-600"),"data-vertical":!!vertical,style:invalid?void 0:{color},children:[showLabels&&(vertical?maxDisplay:minDisplay),(0,jsx_runtime.jsxs)("div",{ref:rangerInstance.trackElRef,className:classnames_default()("flex-auto relative flex items-center",vertical?"my-2 w-8":"mx-2 h-8"),style:{height:vertical?height:void 0},children:[rangerInstance.ticks.map((({value,key,styles})=>(0,jsx_runtime.jsx)("div",{className:classnames_default()("absolute inline-block h-1 w-1 rounded-sm bg-invert opacity-30 leading-[0] z-1",vertical&&"left-1/2 -ml-0.5"),style:styles},key))),rangerInstance.segments.map((({key,styles,active})=>(0,jsx_runtime.jsx)("div",{className:classnames_default()("absolute",active?"bg-current z-1 opacity-90":"bg-invert opacity-5 z-0",vertical?"-bottom-1 left-1/2 -translate-x-1/2":"top-1/2 -translate-y-1/2",!vertical&&(active?"h-1":"h-0.5"),vertical&&(active?"w-1":"w-0.5")),style:styles},key))),rangerInstance.handles.map((({key,value,props,styles,percentage,valueStyles})=>(0,jsx_runtime.jsxs)(react.Fragment,{children:[(0,jsx_runtime.jsx)("button",{type:"button",className:classnames_default()("bg-current cursor-pointer appearance-none h-3 w-3 rounded-full z-3 absolute","focus:ring-2 focus:ring-offset-2",vertical&&"left-1/2 -ml-1.5"),...props,style:styles}),displayValue&&(0,jsx_runtime.jsx)("div",{className:classnames_default()("bg-invert text-invert py-px px-2 text-xs absolute rounded z-[5] whitespace-nowrap","before:absolute before:h-1.5 before:w-1.5 before:z-[-1] before:bg-invert before:top-1/2 before:-translate-y-1/2 before:rotate-45",vertical?"end-0 ltr:translate-x-full rtl:-translate-x-full translate-y-2":"top-1/2 -translate-y-1/2",!vertical&&(percentage>50?"-ms-3 ltr:-translate-x-full rtl:translate-x-full ltr:before:translate-x-[0.125rem] rtl:before:-translate-x-[0.125rem] before:end-0":"ms-3 ltr:before:-translate-x-[0.125rem] rtl:before:translate-x-[0.125rem] before:start-0")),"data-align":percentage>50?"start":"end",style:valueStyles,children:value===1/0||useInfinity&&value===max?maxLabel??"∞":dist_esm.yL.number(value,format)})]},key)))]}),showLabels&&(vertical?minDisplay:maxDisplay)]})})};try{Slider.displayName="Slider",Slider.__docgenInfo={description:"Number slider input",displayName:"Slider",props:{min:{defaultValue:{value:"0"},description:"min value",name:"min",required:!1,type:{name:"number"}},max:{defaultValue:{value:"100"},description:"max value",name:"max",required:!1,type:{name:"number"}},step:{defaultValue:{value:"1"},description:"increment step",name:"step",required:!1,type:{name:"number"}},color:{defaultValue:null,description:"slider color",name:"color",required:!1,type:{name:"string"}},height:{defaultValue:{value:"192"},description:"slider height (only vertical)",name:"height",required:!1,type:{name:"number"}},vertical:{defaultValue:null,description:"vertical orientation",name:"vertical",required:!1,type:{name:"boolean"}},showValue:{defaultValue:null,description:"display value tooltip",name:"showValue",required:!1,type:{name:"boolean"}},showLabels:{defaultValue:null,description:"display min/max labels",name:"showLabels",required:!1,type:{name:"boolean"}},minLabel:{defaultValue:null,description:"custom min label",name:"minLabel",required:!1,type:{name:"string"}},maxLabel:{defaultValue:null,description:"custom max label",name:"maxLabel",required:!1,type:{name:"string"}},ranges:{defaultValue:null,description:"step ranges",name:"ranges",required:!1,type:{name:"number[]"}},useInfinity:{defaultValue:null,description:"infinity max value",name:"useInfinity",required:!1,type:{name:"true"}},format:{defaultValue:null,description:"format value",name:"format",required:!1,type:{name:"string"}},onSlide:{defaultValue:null,description:"slide event handler",name:"onSlide",required:!1,type:{name:"((val: number) => void)"}},info:{defaultValue:null,description:"info label at bottom",name:"info",required:!1,type:{name:"string"}},label:{defaultValue:null,description:"input label",name:"label",required:!1,type:{name:"string"}},name:{defaultValue:null,description:"input name",name:"name",required:!1,type:{name:"string"}},width:{defaultValue:null,description:"field width",name:"width",required:!1,type:{name:"string | number"}},onFocus:{defaultValue:null,description:"on focus event handler",name:"onFocus",required:!1,type:{name:"FocusEventHandler"}},onBlur:{defaultValue:null,description:"on blur event handler",name:"onBlur",required:!1,type:{name:"FocusEventHandler"}},onChange:{defaultValue:null,description:"change handler",name:"onChange",required:!1,type:{name:"((value?: number) => void)"}},autoFocus:{defaultValue:null,description:"auto focus when rendered",name:"autoFocus",required:!1,type:{name:"boolean"}},disabled:{defaultValue:null,description:"disabled input",name:"disabled",required:!1,type:{name:"boolean"}},value:{defaultValue:null,description:"value",name:"value",required:!1,type:{name:"number"}},readOnly:{defaultValue:null,description:"read-only input",name:"readOnly",required:!1,type:{name:"boolean"}},required:{defaultValue:null,description:"required",name:"required",required:!1,type:{name:"boolean"}},inline:{defaultValue:null,description:"inline label and input",name:"inline",required:!1,type:{name:"boolean"}},"data-testid":{defaultValue:null,description:"data attribute for test id",name:"data-testid",required:!1,type:{name:"string"}},"data-test-value":{defaultValue:null,description:"data attribute for test value",name:"data-test-value",required:!1,type:{name:"any"}},appendLabel:{defaultValue:null,description:"append to label end",name:"appendLabel",required:!1,type:{name:"string | number | boolean | Element"}},error:{defaultValue:null,description:"error message",name:"error",required:!1,type:{name:"string"}},onEnterPressed:{defaultValue:null,description:"on enter press callback",name:"onEnterPressed",required:!1,type:{name:"KeyboardEventHandler"}},decorateStart:{defaultValue:null,description:"",name:"decorateStart",required:!1,type:{name:"string | number | boolean | Element"}},decorateEnd:{defaultValue:null,description:"",name:"decorateEnd",required:!1,type:{name:"string | number | boolean | Element"}},invalid:{defaultValue:null,description:"invalid value input",name:"invalid",required:!1,type:{name:"boolean"}},labelWidth:{defaultValue:null,description:"label width for inline",name:"labelWidth",required:!1,type:{name:"string"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/form/src/input/Slider.tsx#Slider"]={docgenInfo:Slider.__docgenInfo,name:"Slider",path:"packages/form/src/input/Slider.tsx#Slider"})}catch(__react_docgen_typescript_loader_error){}const AutoComplete=({ref,name,value,invalid,readOnly,disabled,required,placeholder,autoFocus,expandOnEdit,error,history,multiple,onChange,onSelect,onInput,onFocus,onBlur,onEnterPressed,...rest})=>{const options=(0,react.useRef)(history),submitRef=(0,react.useRef)(null),{state,listRef,listContentRef,setOpen,macthOption,handleChange,handleRemove,handleQuery,setItemRef,setActiveIndex}=useSelect({value,autoComplete:!0,options:options.current,multiple,onChange,onSelect}),dropdownKey=(0,react.useId)(),{context,floatingStyles,refs}=(0,floating_ui_react.we)({open:state.open,onOpenChange:(open,evt,reason)=>{!open&&(listRef.current=[]),setOpen(open)},strategy:"fixed",placement:"bottom",whileElementsMounted:floating_ui_dom.ll,middleware:[(0,floating_ui_react_dom.BN)({padding:8}),(0,floating_ui_react_dom.UU)(),(0,floating_ui_react_dom.cY)(2)]}),dismiss=(0,floating_ui_react.s9)(context,{}),navigation=(0,floating_ui_react.C1)(context,{listRef,activeIndex:state.activeIndex,selectedIndex:state.selectedIndex,loop:!0,virtual:!0,focusItemOnOpen:!1,onNavigate:setActiveIndex}),typeahead=(0,floating_ui_react.lY)(context,{listRef:listContentRef,activeIndex:state.activeIndex,selectedIndex:state.selectedIndex,findMatch:(list,typedString)=>list.find((item=>macthOption(item,typedString))),onMatch(index){state.open&&setActiveIndex(index)}}),{getReferenceProps,getFloatingProps,getItemProps}=(0,floating_ui_react.bv)([dismiss,navigation,typeahead]),referenceProps=(0,react.useMemo)((()=>{const props=getReferenceProps();return{...props,onFocus,onBlur(evt){evt.relatedTarget?.closest(`[data-select-dropdown="${dropdownKey}"]`)?refs.domReference.current?.querySelector("input")?.focus():(state.open&&handleChange(state.query),handleQuery(""),setOpen(!1),onBlur?.(evt))},onKeyDown(evt){if("Enter"===evt.key){if(evt.preventDefault(),null!==state.activeIndex)return handleChange(listContentRef.current[state.activeIndex]),evt.stopPropagation(),!1;if(void 0!==state.query)return handleChange(""),!1;onEnterPressed?.(evt),submitRef.current?.click()}else"Backspace"===evt.key?!state.query&&multiple&&handleRemove():["ArrowUp","ArrowDown"].includes(evt.key)&&(["ArrowUp","ArrowDown"].includes(evt.key)&&null===state.activeIndex&&setActiveIndex(state.selectedIndex),setTimeout((()=>{props.onKeyDown?.(evt)}),50))}}}),[getReferenceProps,onEnterPressed,handleQuery,onFocus,onBlur,multiple,refs,state.query,state.activeIndex]),floatingProps=(0,react.useMemo)((()=>getFloatingProps({"data-select-dropdown":dropdownKey})),[getFloatingProps]),makeItemProps=(0,react.useCallback)((item=>{const selected=(0,dist_esm.cy)(state.value)?state.value?.includes?.(item):state.value===item;return getItemProps({"data-selected":!!selected||void 0,onClick(){handleChange(item)}})}),[getItemProps,handleChange,state.value]),displayValue=(0,react.useMemo)((()=>{if((0,dist_esm.cy)(state.value))return state.value.map(((item,index)=>(0,jsx_runtime.jsx)(esm.vu,{onRemove:()=>handleRemove(index),children:item},index)))}),[state.value,state.query,placeholder]);(0,react.useLayoutEffect)((()=>{state.open&&setTimeout((()=>{state.selectedIndex&&listRef.current[state.selectedIndex]?.scrollIntoView({block:"center"})}),100)}),[state.open]);const inputValue=(0,react.useMemo)((()=>multiple?state.query??"":state.query??state.value??""),[multiple,state.query,state.value]);return(0,jsx_runtime.jsxs)(InputWrapper,{showClear:!(0,dist_esm.Im)(state.value),onClear:handleChange,invalid,readOnly,disabled,required,error,wrapperRef:refs.setReference,className:!multiple&&expandOnEdit&&state.open?"!z-[99]":"",floatingExpand:!multiple&&expandOnEdit&&state.open,...rest,children:[(0,jsx_runtime.jsxs)("div",{role:"none","data-select-display":"true",className:classnames_default()("group flex-1 py-1 px-2 truncate text-start flex gap-1 relative min-h-5 justify-start",multiple?"flex-wrap":"flex-nowrap overflow-hidden"),onMouseUp:e=>e.currentTarget.querySelector("input")?.focus(),children:[displayValue,(0,jsx_runtime.jsx)("textarea",{readOnly,disabled,value:inputValue,"aria-invalid":invalid,"data-testid":name,name,size:1,onInput,rows:!multiple&&expandOnEdit&&state.open?5:1,className:classnames_default()("appearance-none bg-transparent outline-none border-none ring-0 flex-1 resize-none",disabled&&"cursor-not-allowed pointer-events-none",multiple&&"min-w-24 overflow-hidden",!state.open&&"overflow-hidden whitespace-nowrap"),placeholder:(0,dist_esm.Im)(state.value)?placeholder:"",...referenceProps,onChange:evt=>handleQuery(evt.target.value)}),(0,jsx_runtime.jsx)("button",{type:"submit",ref:submitRef,tabIndex:-1,className:"opacity-0 absolute"})]}),state.loading&&(0,jsx_runtime.jsx)(esm.In,{animate:"spin",className:classnames_default()("flex-content p-2 z-0 order-9 text-muted pointer-events-none"),icon:esm.OO.spinner}),state.open&&!state.loading&&(0,jsx_runtime.jsx)(floating_ui_react.XF,{children:(0,jsx_runtime.jsx)(floating_ui_react.s3,{context,initialFocus:-1,visuallyHiddenDismiss:!0,children:(0,jsx_runtime.jsx)(Options,{ref:refs.setFloating,className:"outline shadow-lg max-h-[40vh] z-[var(--z-popover)]",style:{width:refs.reference.current?.getBoundingClientRect().width,...floatingStyles},...floatingProps,items:state.items,active:state.activeIndex,itemRef:setItemRef,itemProps:makeItemProps,empty:(0,jsx_runtime.jsx)("div",{className:"text-muted text-sm px-2 py-1",children:"No history available"}),children:item=>item})})})]})};try{AutoComplete.displayName="AutoComplete",AutoComplete.__docgenInfo={description:"",displayName:"AutoComplete",props:{info:{defaultValue:null,description:"info label at bottom",name:"info",required:!1,type:{name:"string"}},renderer:{defaultValue:null,description:"item renderer",name:"renderer",required:!1,type:{name:"((option: string) => ReactNode)"}},label:{defaultValue:null,description:"input label",name:"label",required:!1,type:{name:"string"}},ref:{defaultValue:null,description:"",name:"ref",required:!1,type:{name:"Ref"}},name:{defaultValue:null,description:"input name",name:"name",required:!1,type:{name:"string"}},width:{defaultValue:null,description:"field width",name:"width",required:!1,type:{name:"string | number"}},onFocus:{defaultValue:null,description:"on focus event handler",name:"onFocus",required:!1,type:{name:"FocusEventHandler"}},onBlur:{defaultValue:null,description:"on blur event handler",name:"onBlur",required:!1,type:{name:"FocusEventHandler"}},onChange:{defaultValue:null,description:"change handler",name:"onChange",required:!1,type:{name:"((value?: string) => void) | ((value?: string[]) => void) | undefined"}},onSelect:{defaultValue:null,description:"select handler",name:"onSelect",required:!1,type:{name:"((option: string) => void) | ((option: string[]) => void)"}},autoFocus:{defaultValue:null,description:"auto focus when rendered",name:"autoFocus",required:!1,type:{name:"boolean"}},disabled:{defaultValue:null,description:"disabled input",name:"disabled",required:!1,type:{name:"boolean"}},value:{defaultValue:null,description:"selected value",name:"value",required:!1,type:{name:"string | string[]"}},multiple:{defaultValue:null,description:"is multiple selection",name:"multiple",required:!1,type:{name:"boolean"}},placeholder:{defaultValue:null,description:"input placeholder",name:"placeholder",required:!1,type:{name:"string"}},readOnly:{defaultValue:null,description:"read-only input",name:"readOnly",required:!1,type:{name:"boolean"}},required:{defaultValue:null,description:"required",name:"required",required:!1,type:{name:"boolean"}},inline:{defaultValue:null,description:"inline label and input",name:"inline",required:!1,type:{name:"boolean"}},"data-testid":{defaultValue:null,description:"data attribute for test id",name:"data-testid",required:!1,type:{name:"string"}},"data-test-value":{defaultValue:null,description:"data attribute for test value",name:"data-test-value",required:!1,type:{name:"any"}},appendLabel:{defaultValue:null,description:"append to label end",name:"appendLabel",required:!1,type:{name:"string | number | boolean | Element"}},error:{defaultValue:null,description:"error message",name:"error",required:!1,type:{name:"string"}},allowClear:{defaultValue:null,description:"show clear button",name:"allowClear",required:!1,type:{name:"boolean"}},onEnterPressed:{defaultValue:null,description:"on enter press callback",name:"onEnterPressed",required:!1,type:{name:"KeyboardEventHandler"}},decorateStart:{defaultValue:null,description:"",name:"decorateStart",required:!1,type:{name:"string | number | boolean | Element"}},decorateEnd:{defaultValue:null,description:"",name:"decorateEnd",required:!1,type:{name:"string | number | boolean | Element"}},invalid:{defaultValue:null,description:"invalid value input",name:"invalid",required:!1,type:{name:"boolean"}},labelWidth:{defaultValue:null,description:"label width for inline",name:"labelWidth",required:!1,type:{name:"string"}},groupProperty:{defaultValue:null,description:"group by property name",name:"groupProperty",required:!1,type:{name:'number | unique symbol | "big" | "link" | "search" | "small" | "sub" | "sup" | "toString" | "charAt" | "charCodeAt" | "concat" | "indexOf" | "lastIndexOf" | "localeCompare" | "match" | ... 37 more ...'}},labelProperty:{defaultValue:null,description:"label property name",name:"labelProperty",required:!1,type:{name:'number | unique symbol | "big" | "link" | "search" | "small" | "sub" | "sup" | "toString" | "charAt" | "charCodeAt" | "concat" | "indexOf" | "lastIndexOf" | "localeCompare" | "match" | ... 37 more ...'}},valueProperty:{defaultValue:null,description:"value property name",name:"valueProperty",required:!1,type:{name:'number | unique symbol | "big" | "link" | "search" | "small" | "sub" | "sup" | "toString" | "charAt" | "charCodeAt" | "concat" | "indexOf" | "lastIndexOf" | "localeCompare" | "match" | ... 37 more ...'}},searchable:{defaultValue:null,description:"searchable list",name:"searchable",required:!1,type:{name:"boolean"}},matcher:{defaultValue:null,description:"item matcher",name:"matcher",required:!1,type:{name:"((option: string, query: string) => boolean)"}},onQuery:{defaultValue:null,description:"query handler",name:"onQuery",required:!1,type:{name:"((query: string) => string[] | Promise)"}},history:{defaultValue:null,description:"auto-complete history",name:"history",required:!1,type:{name:"string[]"}},expandOnEdit:{defaultValue:null,description:"expand input on edit",name:"expandOnEdit",required:!1,type:{name:"boolean"}},onInput:{defaultValue:null,description:"input change handler",name:"onInput",required:!1,type:{name:"((query: string) => void)"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/form/src/select/AutoComplete.tsx#AutoComplete"]={docgenInfo:AutoComplete.__docgenInfo,name:"AutoComplete",path:"packages/form/src/select/AutoComplete.tsx#AutoComplete"})}catch(__react_docgen_typescript_loader_error){}const List=({ref,name,value,readOnly,disabled,required,placeholder,autoFocus,options,height,groupProperty,labelProperty,valueProperty,multiple,allowCreate,searchable,createOption,matcher,renderer,onQuery,onChange,onSelect,onEnterPressed,invalid,error,allowClear,decorateStart,decorateEnd,"data-inner":isInner,"data-hide-selected":hideSelected,...rest})=>{const Wrapper=(0,react.useMemo)((()=>isInner?react.Fragment:FieldWrapper),[isInner]),wrapperProps=(0,react.useMemo)((()=>isInner?{}:{...rest}),[isInner,rest]),{state,listRef,listContentRef,macthOption,handleChange,handleRemove,handleQuery,setItemRef,setActiveIndex}=useSelect({value,options,multiple,groupProperty,labelProperty,valueProperty,allowCreate,createOption,matcher,onChange,onSelect,onQuery}),dropdownKey=(0,react.useId)(),{context,refs}=(0,floating_ui_react.we)({open:!0,placement:"bottom",whileElementsMounted:floating_ui_dom.ll,middleware:[]}),navigation=(0,floating_ui_react.C1)(context,{listRef,activeIndex:state.activeIndex,selectedIndex:state.selectedIndex,loop:!0,virtual:!0,focusItemOnOpen:!1,onNavigate:setActiveIndex}),typeahead=(0,floating_ui_react.lY)(context,{listRef:listContentRef,activeIndex:state.activeIndex,selectedIndex:state.selectedIndex,findMatch:(list,typedString)=>list.find((item=>macthOption(item,typedString))),onMatch(index){state.open&&setActiveIndex(index)}}),{getReferenceProps,getFloatingProps,getItemProps}=(0,floating_ui_react.bv)([navigation,typeahead]),referenceProps=(0,react.useMemo)((()=>{const props=getReferenceProps();return{...props,onBlur(evt){evt.relatedTarget?.closest(`[data-select-dropdown="${dropdownKey}"]`)?refs.domReference.current?.querySelector("input")?.focus():handleQuery("")},onKeyDown(evt){if("Enter"===evt.key){if(null!==state.activeIndex)return handleChange(listContentRef.current[state.activeIndex]),evt.preventDefault(),evt.stopPropagation(),!1;state.query||onEnterPressed?.(evt)}else"Backspace"===evt.key?!state.query&&handleRemove():searchable&&!["ArrowUp","ArrowDown"].includes(evt.key)||(["ArrowUp","ArrowDown"].includes(evt.key)&&null===state.activeIndex&&setActiveIndex(state.selectedIndex??0),setTimeout((()=>{props.onKeyDown?.(evt)}),50))}}}),[getReferenceProps,onEnterPressed,handleQuery,refs,state.query,state.activeIndex]),floatingProps=(0,react.useMemo)((()=>getFloatingProps({"data-select-dropdown":dropdownKey})),[getFloatingProps]),makeItemProps=(0,react.useCallback)((item=>{const selected=(0,dist_esm.cy)(state.value)?state.value?.includes?.(item):state.value===item;return{...getItemProps({"data-selected":!!selected||void 0,onClick(){handleChange(item)}}),"aria-hidden":void 0}}),[getItemProps,handleChange,state.value]),displayValue=(0,react.useMemo)((()=>(0,dist_esm.cy)(state.value)?state.value.map(((item,index)=>(0,jsx_runtime.jsx)(esm.vu,{onRemove:()=>handleRemove(index),children:renderer?.(item)??item[labelProperty]??item},index))):(0,dist_esm.Im)(state.value)||state.query?void 0:(0,jsx_runtime.jsx)("span",{children:renderer?.(state.value)??state.value[labelProperty]??state.value})),[state.value,state.query,placeholder,renderer]);return(0,react.useLayoutEffect)((()=>{setTimeout((()=>{state.selectedIndex&&listRef.current[state.selectedIndex]?.scrollIntoView({block:"center"})}),100)}),[state.selectedIndex]),(0,jsx_runtime.jsxs)(Wrapper,{...wrapperProps,children:[(0,jsx_runtime.jsx)(InputWrapper,{showClear:!(0,dist_esm.Im)(state.value),onClear:handleChange,invalid,readOnly,disabled,required,error,className:"z-1 rounded-b-none","data-inner":!0,wrapperRef:refs.setReference,children:(0,jsx_runtime.jsxs)("div",{role:"none","data-select-display":"true",className:classnames_default()("group flex-1 py-1 px-2 truncate text-start flex gap-1 relative min-h-5 justify-start",multiple?"flex-wrap":"flex-nowrap overflow-hidden"),...referenceProps,onMouseUp:e=>e.currentTarget.querySelector("input")?.focus(),children:[!hideSelected&&displayValue,(0,jsx_runtime.jsx)("input",{readOnly:!searchable||readOnly,disabled,value:state.query??"","aria-invalid":invalid,"data-testid":name,name,size:1,ref,autoFocus,className:classnames_default()("appearance-none bg-transparent outline-none border-none ring-0 flex-1 min-w-24",disabled&&"cursor-not-allowed pointer-events-none",multiple&&"min-w-24"),placeholder:(0,dist_esm.Im)(state.value)?placeholder:"",onChange:evt=>handleQuery(evt.target.value)})]})}),(0,jsx_runtime.jsx)(floating_ui_react.s3,{context,initialFocus:-1,visuallyHiddenDismiss:!0,children:(0,jsx_runtime.jsx)(Options,{ref:refs.setFloating,className:classnames_default()("max-h-96 z-0 rounded-capped rounded-t-none outline",disabled&&"pointer-events-none opacity-65"),style:{height},...floatingProps,items:state.items,active:state.activeIndex,valueProperty,labelProperty,itemRef:setItemRef,itemProps:makeItemProps,children:(item,label)=>renderer?.(item)??label})})]})};try{List.displayName="List",List.__docgenInfo={description:"",displayName:"List",props:{options:{defaultValue:null,description:"list options",name:"options",required:!1,type:{name:"T[]"}},groupProperty:{defaultValue:null,description:"group by property name",name:"groupProperty",required:!1,type:{name:"string | number | symbol"}},labelProperty:{defaultValue:null,description:"label property name",name:"labelProperty",required:!1,type:{name:"string | number | symbol"}},valueProperty:{defaultValue:null,description:"value property name",name:"valueProperty",required:!1,type:{name:"string | number | symbol"}},searchable:{defaultValue:null,description:"searchable list",name:"searchable",required:!1,type:{name:"boolean"}},allowCreate:{defaultValue:null,description:"allow create item",name:"allowCreate",required:!1,type:{name:"boolean"}},createOption:{defaultValue:null,description:"create new item object",name:"createOption",required:!1,type:{name:"((query: string) => T)"}},onQuery:{defaultValue:null,description:"query handler",name:"onQuery",required:!1,type:{name:"((query: string) => T[] | Promise)"}},renderer:{defaultValue:null,description:"item renderer",name:"renderer",required:!1,type:{name:"((option: T) => ReactNode)"}},matcher:{defaultValue:null,description:"item matcher",name:"matcher",required:!1,type:{name:"((option: T, query: string) => boolean)"}},ref:{defaultValue:null,description:"",name:"ref",required:!1,type:{name:"Ref"}},info:{defaultValue:null,description:"info label at bottom",name:"info",required:!1,type:{name:"string"}},label:{defaultValue:null,description:"input label",name:"label",required:!1,type:{name:"string"}},name:{defaultValue:null,description:"input name",name:"name",required:!1,type:{name:"string"}},width:{defaultValue:null,description:"field width",name:"width",required:!1,type:{name:"string | number"}},onFocus:{defaultValue:null,description:"on focus event handler",name:"onFocus",required:!1,type:{name:"FocusEventHandler"}},onBlur:{defaultValue:null,description:"on blur event handler",name:"onBlur",required:!1,type:{name:"FocusEventHandler"}},autoFocus:{defaultValue:null,description:"auto focus when rendered",name:"autoFocus",required:!1,type:{name:"boolean"}},disabled:{defaultValue:null,description:"disabled input",name:"disabled",required:!1,type:{name:"boolean"}},placeholder:{defaultValue:null,description:"input placeholder",name:"placeholder",required:!1,type:{name:"string"}},readOnly:{defaultValue:null,description:"read-only input",name:"readOnly",required:!1,type:{name:"boolean"}},required:{defaultValue:null,description:"required",name:"required",required:!1,type:{name:"boolean"}},inline:{defaultValue:null,description:"inline label and input",name:"inline",required:!1,type:{name:"boolean"}},"data-testid":{defaultValue:null,description:"data attribute for test id",name:"data-testid",required:!1,type:{name:"string"}},"data-test-value":{defaultValue:null,description:"data attribute for test value",name:"data-test-value",required:!1,type:{name:"any"}},appendLabel:{defaultValue:null,description:"append to label end",name:"appendLabel",required:!1,type:{name:"string | number | boolean | Element"}},error:{defaultValue:null,description:"error message",name:"error",required:!1,type:{name:"string"}},allowClear:{defaultValue:null,description:"show clear button",name:"allowClear",required:!1,type:{name:"boolean"}},onEnterPressed:{defaultValue:null,description:"on enter press callback",name:"onEnterPressed",required:!1,type:{name:"KeyboardEventHandler"}},decorateStart:{defaultValue:null,description:"",name:"decorateStart",required:!1,type:{name:"string | number | boolean | Element"}},decorateEnd:{defaultValue:null,description:"",name:"decorateEnd",required:!1,type:{name:"string | number | boolean | Element"}},invalid:{defaultValue:null,description:"invalid value input",name:"invalid",required:!1,type:{name:"boolean"}},labelWidth:{defaultValue:null,description:"label width for inline",name:"labelWidth",required:!1,type:{name:"string"}},multiple:{defaultValue:null,description:"is multiple selection",name:"multiple",required:!1,type:{name:"boolean"}},value:{defaultValue:null,description:"selected value",name:"value",required:!1,type:{name:"string | string[]"}},onSelect:{defaultValue:null,description:"select handler",name:"onSelect",required:!1,type:{name:"((option: T) => void) | ((option: T[]) => void)"}},onChange:{defaultValue:null,description:"change handler",name:"onChange",required:!1,type:{name:"((value?: string) => void) | ((value?: string[]) => void) | undefined"}},height:{defaultValue:null,description:"",name:"height",required:!1,type:{name:"string | number"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/form/src/select/List.tsx#List"]={docgenInfo:List.__docgenInfo,name:"List",path:"packages/form/src/select/List.tsx#List"})}catch(__react_docgen_typescript_loader_error){}const DualList=({ref,value,options,groupProperty,height="18rem",labelProperty="label",valueProperty="id",renderer,onChange,name,invalid,readOnly,disabled,placeholder,autoFocus,error,...rest})=>{const[actualValue,setActualValue]=(0,react.useState)([]),[leftSelected,setLeftSelected]=(0,react.useState)([]),[rightSelected,setRightSelected]=(0,react.useState)([]),deferred=(0,react.useDeferredValue)(value);(0,react.useEffect)((()=>{setActualValue(options.filter((opt=>deferred?.includes(opt[valueProperty]??opt))))}),[deferred,options]);const[leftOptions,rightOptions]=(0,react.useMemo)((()=>[options.filter((opt=>!actualValue?.includes(opt))),actualValue]),[options,actualValue]),moveAllLeft=(0,react.useCallback)((()=>{setLeftSelected([]),setRightSelected([]),setActualValue([]),onChange?.([])}),[onChange]),moveAllRight=(0,react.useCallback)((()=>{setLeftSelected([]),setRightSelected([]),setActualValue(options),onChange?.(options.map((opt=>`${opt[valueProperty]??opt}`)))}),[onChange,options,valueProperty]),moveLeftSelected=(0,react.useCallback)((()=>{const selected=[...actualValue,...leftSelected];setActualValue(selected),onChange?.(selected.map((opt=>`${opt[valueProperty]??opt}`))),setLeftSelected([])}),[onChange,leftSelected,actualValue]),moveRightSelected=(0,react.useCallback)((()=>{const selected=actualValue.filter((opt=>!rightSelected.includes(opt)));setActualValue(selected),onChange?.(selected.map((opt=>`${opt[valueProperty]??opt}`))),setRightSelected([])}),[onChange,rightSelected,actualValue]),[dragItems,setDragItems]=(0,react.useState)([]),dragLeft=(0,core_esm.PM)({id:"unselected",disabled:!leftSelected.length,data:{supports:["selected"]},attributes:{role:"none"}}),dragRight=(0,core_esm.PM)({id:"selected",disabled:!rightSelected.length,data:{supports:["unselected"]},attributes:{role:"none"}}),dropLeft=(0,core_esm.zM)({id:"unselected",data:{accepts:["selected"]}}),dropRight=(0,core_esm.zM)({id:"selected",data:{accepts:["unselected"]}});return(0,jsx_runtime.jsx)(Field,{...rest,noOutline:!0,plain:!0,children:(0,jsx_runtime.jsxs)(core_esm.Mp,{modifiers:[modifiers_esm.dU],onDragStart:e=>{setDragItems("selected"===e.active.id?rightSelected:leftSelected)},onDragEnd:e=>{setDragItems([])},children:[(0,jsx_runtime.jsx)("div",{className:"flex-1 flex flex-col overflow-hidden p-px",ref:(0,dist_esm.Px)(dragLeft.setNodeRef,dropLeft.setNodeRef),...dragLeft.attributes,...dragLeft.listeners,children:(0,jsx_runtime.jsx)(List,{ref,multiple:!0,allowClear:!0,name,invalid,readOnly,disabled,placeholder,autoFocus,error,height,options:leftOptions,groupProperty,labelProperty,valueProperty,renderer,onSelect:setLeftSelected,"data-inner":!0,"data-hide-selected":!0})}),(0,jsx_runtime.jsx)("div",{className:"self-center mx-2",children:(0,jsx_runtime.jsxs)(esm.e2,{vertical:!0,className:"outline overflow-hidden bg-base",children:[(0,jsx_runtime.jsx)(esm.$n,{rtlFlip:!0,size:"sm",variant:"link","aria-label":"scroll to top",onClick:moveAllLeft,icon:esm.OO.chevronsLeft,disabled:!rightOptions.length}),(0,jsx_runtime.jsx)(esm.$n,{rtlFlip:!0,size:"sm",variant:"link","aria-label":"scroll up",onClick:moveRightSelected,icon:esm.OO.chevronLeft,disabled:!rightSelected.length}),(0,jsx_runtime.jsx)(esm.$n,{rtlFlip:!0,size:"sm",variant:"link","aria-label":"scroll down",onClick:moveLeftSelected,icon:esm.OO.chevronRight,disabled:!leftSelected.length}),(0,jsx_runtime.jsx)(esm.$n,{rtlFlip:!0,size:"sm",variant:"link","aria-label":"scroll to bottom",onClick:moveAllRight,icon:esm.OO.chevronsRight,disabled:!leftOptions.length})]})}),(0,jsx_runtime.jsx)("div",{className:"flex-1 flex flex-col overflow-hidden p-px",ref:(0,dist_esm.Px)(dropRight.setNodeRef,dragRight.setNodeRef),children:(0,jsx_runtime.jsx)(List,{multiple:!0,allowClear:!0,height,options:rightOptions,groupProperty,labelProperty,valueProperty,renderer,onSelect:setRightSelected,"data-inner":!0,"data-hide-selected":!0})}),(0,jsx_runtime.jsx)(core_esm.Hd,{children:dragItems.length>0&&(0,jsx_runtime.jsxs)("span",{children:[dragItems.length," Item(s)"]})})]})})};try{DualList.displayName="DualList",DualList.__docgenInfo={description:"",displayName:"DualList",props:{height:{defaultValue:{value:"18rem"},description:"list height",name:"height",required:!1,type:{name:"string | number"}},options:{defaultValue:null,description:"list options",name:"options",required:!0,type:{name:"T[]"}},value:{defaultValue:null,description:"selected value",name:"value",required:!1,type:{name:"string[]"}},groupProperty:{defaultValue:null,description:"group by property name",name:"groupProperty",required:!1,type:{name:"string | number | symbol"}},labelProperty:{defaultValue:{value:'"label" as AnyObject'},description:"label property name",name:"labelProperty",required:!1,type:{name:"string | number | symbol"}},valueProperty:{defaultValue:{value:'"id" as AnyObject'},description:"value property name",name:"valueProperty",required:!1,type:{name:"string | number | symbol"}},renderer:{defaultValue:null,description:"item renderer",name:"renderer",required:!1,type:{name:"((option: T) => ReactNode)"}},onChange:{defaultValue:null,description:"change handler",name:"onChange",required:!1,type:{name:"((value?: string[]) => void)"}},info:{defaultValue:null,description:"info label at bottom",name:"info",required:!1,type:{name:"string"}},className:{defaultValue:null,description:"css classname(s)",name:"className",required:!1,type:{name:"string"}},label:{defaultValue:null,description:"input label",name:"label",required:!1,type:{name:"string"}},width:{defaultValue:null,description:"field width",name:"width",required:!1,type:{name:"string | number"}},required:{defaultValue:null,description:"required",name:"required",required:!1,type:{name:"boolean"}},inline:{defaultValue:null,description:"inline label and input",name:"inline",required:!1,type:{name:"boolean"}},vertical:{defaultValue:null,description:"",name:"vertical",required:!1,type:{name:"boolean"}},appendLabel:{defaultValue:null,description:"append to label end",name:"appendLabel",required:!1,type:{name:"string | number | boolean | Element"}},labelWidth:{defaultValue:null,description:"label width for inline",name:"labelWidth",required:!1,type:{name:"string"}},noOutline:{defaultValue:null,description:"hide outline",name:"noOutline",required:!1,type:{name:"boolean"}},plain:{defaultValue:null,description:"dont apply bg and outline",name:"plain",required:!1,type:{name:"boolean"}},ref:{defaultValue:null,description:"",name:"ref",required:!1,type:{name:"Ref"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/form/src/select/DualList.tsx#DualList"]={docgenInfo:DualList.__docgenInfo,name:"DualList",path:"packages/form/src/select/DualList.tsx#DualList"})}catch(__react_docgen_typescript_loader_error){}},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/form/src/input/ArrayInput.module.css":(module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer var {\n .tynfL2CeffjfN8K1EOPa [data-ref="fieldWrapper"] {\n flex: 1 1 0%;\n }\n\n .tynfL2CeffjfN8K1EOPa .BP8o_wtcMa2MaKNI36tB .buttonInner {\n color: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n outline: 1px dashed color-mix(in lab, color(from var(--tint) srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n }\n\n .tynfL2CeffjfN8K1EOPa .BP8o_wtcMa2MaKNI36tB [data-invalid="true"].buttonInner {\n color: color-mix(in lab, color(from #f24c3d srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n background-color: color-mix(in lab, color(from #f24c3d srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n outline: 1px dashed color-mix(in lab, color(from #f24c3d srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n }\n}\n',"",{version:3,sources:["webpack://./packages/form/src/input/ArrayInput.module.css"],names:[],mappings:"AAAA;;;;;;;;;;;;;;;;;;;;;EAqBE;;AAEF;IAEI;MACE,YAAY;IACd;;IAEA;MACE,oHAA6B;MAC7B,iIAA0C;IAO5C;;MALE;QACE,gHAA+B;QAC/B,yHAA0C;QAC1C,6HAA4C;MAC9C;AAGN",sourcesContent:['/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer var {\n .arrayInput {\n & [data-ref="fieldWrapper"] {\n flex: 1 1 0%;\n }\n\n & .addButton :global(.buttonInner) {\n color: theme(colors.tint.600);\n outline: 1px dashed theme(colors.tint.600);\n\n &[data-invalid="true"] {\n color: theme(colors.danger.600);\n background-color: theme(colors.danger.100);\n outline: 1px dashed theme(colors.danger.600);\n }\n }\n }\n}\n'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={arrayInput:"tynfL2CeffjfN8K1EOPa",addButton:"BP8o_wtcMa2MaKNI36tB"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/form/src/input/ColorPicker.module.css":(module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .MfdsdKNZRSZbzqaoVGZE {\n --color-shadow: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 65%, color(from var(--tint) srgb r g b / 1));\n }\n\n .MfdsdKNZRSZbzqaoVGZE input {\n padding: 0 4px !important;\n\n line-height: 2;\n color: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 1) 95%, color(from var(--tint) srgb r g b / 1));\n\n background-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 99%, color(from var(--tint) srgb r g b / 1));\n border: 1px solid color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 65%, color(from var(--tint) srgb r g b / 1));\n border-radius: 0.125rem;\n box-shadow: none;\n }\n\n .MfdsdKNZRSZbzqaoVGZE input:focus {\n border-color: var(--primary);\n }\n\n .MfdsdKNZRSZbzqaoVGZE label {\n color: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 1) 95%, color(from var(--tint) srgb r g b / 1));\n }\n\n .MfdsdKNZRSZbzqaoVGZE .flexbox-fix {\n justify-content: center;\n border-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 80%, color(from var(--tint) srgb r g b / 1));\n }\n\n .MfdsdKNZRSZbzqaoVGZE .flexbox-fix > div > div {\n text-align: center;\n }\n\n .MfdsdKNZRSZbzqaoVGZE .flexbox-fix span > div {\n box-shadow: 0 0 1px 1px color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 65%, color(from var(--tint) srgb r g b / 1)) inset !important;\n }\n}\n',"",{version:3,sources:["webpack://./packages/form/src/input/ColorPicker.module.css"],names:[],mappings:"AAAA;;;;;;;;;;;;;;;;;;;;;EAqBE;;AAEF;EACE;IACE,2HAAuC;EAkCzC;;IAhCE;MACE,yBAAyB;;MAEzB,cAAc;MACd,oHAA4B;;MAE5B,6HAA6C;MAC7C,6HAAyC;MACzC,uBAAqC;MACrC,gBAAgB;IAKlB;;MAHE;QACE,4BAAgD;MAClD;;IAGF;MACE,oHAA4B;IAC9B;;IAEA;MACE,uBAAuB;MACvB,yHAAsC;IASxC;;MAPE;QACE,kBAAkB;MACpB;;MAEA;QACE,oJAAgE;MAClE;AAGN",sourcesContent:['/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .colorPicker {\n --color-shadow: theme(borderColor.base);\n\n & input {\n padding: 0 4px !important;\n\n line-height: 2;\n color: theme(textColor.base);\n\n background-color: theme(backgroundColor.base);\n border: 1px solid theme(borderColor.base);\n border-radius: theme(borderRadius.sm);\n box-shadow: none;\n\n &:focus {\n border-color: theme(borderColor.primary.DEFAULT);\n }\n }\n\n & label {\n color: theme(textColor.base);\n }\n\n & :global(.flexbox-fix) {\n justify-content: center;\n border-color: theme(borderColor.muted);\n\n & > div > div {\n text-align: center;\n }\n\n & span > div {\n box-shadow: 0 0 1px 1px theme(borderColor.base) inset !important;\n }\n }\n }\n}\n'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={colorPicker:"MfdsdKNZRSZbzqaoVGZE"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/form/src/input/File.module.css":(module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .rAC6o0xc0slVpg9GF9Gp::-webkit-file-upload-button {\n cursor: pointer;\n\n padding-block: 0;\n\n color: #fefdfc;\n\n opacity: 0.8;\n background-color: color(from var(--primary) srgb r g b / 1);\n border: 0;\n border-radius: var(--rounding);\n }\n\n .rAC6o0xc0slVpg9GF9Gp::-webkit-file-upload-button:hover {\n opacity: 0.9;\n }\n\n .rAC6o0xc0slVpg9GF9Gp[aria-invalid="true"]::-webkit-file-upload-button {\n background-color: color(from #f24c3d srgb r g b / 1);\n }\n\n .rAC6o0xc0slVpg9GF9Gp:disabled::-webkit-file-upload-button {\n pointer-events: none;\n background-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 80%, color(from var(--tint) srgb r g b / 1));\n }\n\n .rAC6o0xc0slVpg9GF9Gp[readOnly] {\n pointer-events: none;\n }\n}\n',"",{version:3,sources:["webpack://./packages/form/src/input/File.module.css"],names:[],mappings:"AAAA;;;;;;;;;;;;;;;;;;;;;EAqBE;;AAEF;IAEI;MACE,eAAe;;MAEf,gBAAgB;;MAEhB,cAA6B;;MAE7B,YAAY;MACZ,2DAAoD;MACpD,SAAS;MACT,8BAA0C;IAK5C;;MAHE;QACE,YAAY;MACd;;IAGF;MACE,oDAAmD;IACrD;;IAEA;MACE,oBAAoB;MACpB,6HAA8C;IAChD;;IAEA;MACE,oBAAoB;IACtB;AAEJ",sourcesContent:['/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .fileInput {\n &::-webkit-file-upload-button {\n cursor: pointer;\n\n padding-block: 0;\n\n color: theme(textColor.white);\n\n opacity: 0.8;\n background-color: theme(backgroundColor.primary.500);\n border: 0;\n border-radius: theme(borderRadius.DEFAULT);\n\n &:hover {\n opacity: 0.9;\n }\n }\n\n &[aria-invalid="true"]::-webkit-file-upload-button {\n background-color: theme(backgroundColor.danger.500);\n }\n\n &:disabled::-webkit-file-upload-button {\n pointer-events: none;\n background-color: theme(backgroundColor.muted);\n }\n\n &[readOnly] {\n pointer-events: none;\n }\n }\n}\n'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={fileInput:"rAC6o0xc0slVpg9GF9Gp"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/form/src/internal/Field.module.css":(module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .hSWeLuprnzOzKdEEcO1s {\n /* later */\n }\n}\n\n@layer var {\n .pEDCemjxYo9YROzImmm9::after {\n inset-inline: 50%;\n transition: all 300ms;\n transition-delay: 100ms;\n }\n\n .pEDCemjxYo9YROzImmm9 .KZIeBwOpLDy2F0eAR5PK:has([data-ref="button"]) {\n display: flex;\n align-self: stretch;\n }\n\n .pEDCemjxYo9YROzImmm9:has(input[disabled], textarea[disabled]) {\n cursor: not-allowed;\n background-color: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n }\n\n .pEDCemjxYo9YROzImmm9:has(input[disabled], textarea[disabled]) input,\n .pEDCemjxYo9YROzImmm9:has(input[disabled], textarea[disabled]) textarea {\n cursor: not-allowed;\n }\n\n .pEDCemjxYo9YROzImmm9:focus-within,\n .pEDCemjxYo9YROzImmm9:has([data-open="true"]) {\n z-index: 1;\n background-color: var(--fabric-input-focus);\n outline-color: var(--primary);\n }\n\n .pEDCemjxYo9YROzImmm9:focus-within:not(:has([aria-readonly="true"]:not([hidden])))::after, .pEDCemjxYo9YROzImmm9:has([data-open="true"]):not(:has([aria-readonly="true"]:not([hidden])))::after {\n inset-inline: 0;\n }\n\n .pEDCemjxYo9YROzImmm9.fixed {\n box-shadow: 0 0 2rem 0.5rem var(--fabric-shadow);\n }\n\n .pEDCemjxYo9YROzImmm9 input,\n .pEDCemjxYo9YROzImmm9 textarea {\n max-width: 100%;\n }\n\n .pEDCemjxYo9YROzImmm9 > input[type="number"] + .xy9HparG_1vsgSrMmHgD {\n margin-inline: -3rem 2rem;\n }\n\n .pEDCemjxYo9YROzImmm9 input::-ms-clear,\n .pEDCemjxYo9YROzImmm9 select::-ms-clear,\n .pEDCemjxYo9YROzImmm9 textarea::-ms-clear {\n display: none;\n }\n\n .pEDCemjxYo9YROzImmm9 input[type="search"]::-webkit-search-cancel-button {\n display: none;\n }\n\n .pEDCemjxYo9YROzImmm9 input[type="password"]:not(:-moz-placeholder-shown) {\n /* stylelint-disable-next-line font-family-no-missing-generic-family-keyword */\n font-family: caption;\n letter-spacing: 2px;\n }\n\n .pEDCemjxYo9YROzImmm9 input[type="password"]:not(:placeholder-shown) {\n /* stylelint-disable-next-line font-family-no-missing-generic-family-keyword */\n font-family: caption;\n letter-spacing: 2px;\n }\n\n .pEDCemjxYo9YROzImmm9 input:-webkit-autofill {\n box-shadow: 0 0 0 999em var(--fabric-input) inset;\n\n -webkit-text-fill-color: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n }\n\n .pEDCemjxYo9YROzImmm9 input:-webkit-autofill:focus {\n box-shadow: 0 0 0 999em var(--fabric-input-focus) inset;\n\n -webkit-text-fill-color: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n }\n\n .pEDCemjxYo9YROzImmm9.mOH444fCvMhqHOQqtF3y {\n outline-color: color(from #f24c3d srgb r g b / 1);\n }\n\n .pEDCemjxYo9YROzImmm9.mOH444fCvMhqHOQqtF3y::after {\n background-color: color(from #f24c3d srgb r g b / 1);\n }\n .zS04CNz_Pu1A_Uf5fHRp > * {\n line-height: 1;\n }\n .zS04CNz_Pu1A_Uf5fHRp > :not(:first-child),\n .zS04CNz_Pu1A_Uf5fHRp > :not(:first-child) > div,\n .zS04CNz_Pu1A_Uf5fHRp > :not(:first-child) > [role="button"],\n .zS04CNz_Pu1A_Uf5fHRp > :not(:first-child) > [data-ref="button"] > [role="button"] {\n border-start-start-radius: 0;\n border-end-start-radius: 0;\n }\n .zS04CNz_Pu1A_Uf5fHRp > :not(:last-child),\n .zS04CNz_Pu1A_Uf5fHRp > :not(:last-child) > div,\n .zS04CNz_Pu1A_Uf5fHRp > :not(:last-child) > [role="button"],\n .zS04CNz_Pu1A_Uf5fHRp > :not(:last-child) > [data-ref="button"] > [role="button"] {\n border-start-end-radius: 0;\n border-end-end-radius: 0;\n }\n}\n',"",{version:3,sources:["webpack://./packages/form/src/internal/Field.module.css"],names:[],mappings:"AAAA;;;;;;;;;;;;;;;;;;;;;EAqBE;;AAEF;EACE;IACE,UAAU;EACZ;AACF;;AAEA;IAEI;MACE,iBAAiB;MACjB,qBAAqB;MACrB,uBAAuB;IACzB;;IAEA;MACE,aAAa;MACb,mBAAmB;IACrB;;IAEA;MACE,mBAAmB;MACnB,6HAAuC;IAMzC;;MAJE;;QAEE,mBAAmB;MACrB;;IAGF;;MAEE,UAAU;MACV,2CAA2C;MAC3C,6BAA6B;IAK/B;;MAHE;QACE,eAAe;MACjB;;IAGF;MACE,gDAAgD;IAClD;;IAEA;;MAEE,eAAe;IACjB;;IAEA;MACE,yBAAyB;IAC3B;;IAEA;;;MAGE,aAAa;IACf;;IAEA;MACE,aAAa;IACf;;IAEA;MACE,8EAA8E;MAC9E,oBAAoB;MACpB,mBAAmB;IACrB;;IAJA;MACE,8EAA8E;MAC9E,oBAAoB;MACpB,mBAAmB;IACrB;;IAEA;MACE,iDAAiD;;MAEjD,wIAAiD;IACnD;;IAEA;MACE,uDAAuD;;MAEvD,wIAAiD;IACnD;;IAEA;MACE,iDAAuC;IAKzC;;MAHE;QACE,oDAA0C;MAC5C;IAKF;MACE,cAAc;IAChB;MAGE;;;;QAIE,4BAA4B;QAC5B,0BAA0B;MAC5B;MAIA;;;;QAIE,0BAA0B;QAC1B,wBAAwB;MAC1B;AAGN",sourcesContent:['/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .fieldWrapper {\n /* later */\n }\n}\n\n@layer var {\n .inputWrapper {\n &::after {\n inset-inline: 50%;\n transition: all 300ms;\n transition-delay: 100ms;\n }\n\n & .decorate:has([data-ref="button"]) {\n display: flex;\n align-self: stretch;\n }\n\n &:has(input[disabled], textarea[disabled]) {\n cursor: not-allowed;\n background-color: theme(colors.tint.50);\n\n & input,\n & textarea {\n cursor: not-allowed;\n }\n }\n\n &:focus-within,\n &:has([data-open="true"]) {\n z-index: 1;\n background-color: var(--fabric-input-focus);\n outline-color: var(--primary);\n\n &:not(:has([aria-readonly="true"]:not([hidden])))::after {\n inset-inline: 0;\n }\n }\n\n &:global(.fixed) {\n box-shadow: 0 0 2rem 0.5rem var(--fabric-shadow);\n }\n\n & input,\n & textarea {\n max-width: 100%;\n }\n\n & > input[type="number"] + .inputClear {\n margin-inline: -3rem 2rem;\n }\n\n & input::-ms-clear,\n & select::-ms-clear,\n & textarea::-ms-clear {\n display: none;\n }\n\n & input[type="search"]::-webkit-search-cancel-button {\n display: none;\n }\n\n & input[type="password"]:not(:placeholder-shown) {\n /* stylelint-disable-next-line font-family-no-missing-generic-family-keyword */\n font-family: caption;\n letter-spacing: 2px;\n }\n\n & input:-webkit-autofill {\n box-shadow: 0 0 0 999em var(--fabric-input) inset;\n\n -webkit-text-fill-color: theme(colors.accent.700);\n }\n\n & input:-webkit-autofill:focus {\n box-shadow: 0 0 0 999em var(--fabric-input-focus) inset;\n\n -webkit-text-fill-color: theme(colors.accent.700);\n }\n\n &.invalidWrapper {\n outline-color: theme(colors.danger.500);\n\n &::after {\n background-color: theme(colors.danger.500);\n }\n }\n }\n\n .fieldGroup {\n > * {\n line-height: 1;\n }\n\n > :not(:first-child) {\n &,\n & > div,\n & > [role="button"],\n & > [data-ref="button"] > [role="button"] {\n border-start-start-radius: 0;\n border-end-start-radius: 0;\n }\n }\n\n > :not(:last-child) {\n &,\n & > div,\n & > [role="button"],\n & > [data-ref="button"] > [role="button"] {\n border-start-end-radius: 0;\n border-end-end-radius: 0;\n }\n }\n }\n}\n'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={fieldWrapper:"hSWeLuprnzOzKdEEcO1s",inputWrapper:"pEDCemjxYo9YROzImmm9",decorate:"KZIeBwOpLDy2F0eAR5PK",inputClear:"xy9HparG_1vsgSrMmHgD",invalidWrapper:"mOH444fCvMhqHOQqtF3y",fieldGroup:"zS04CNz_Pu1A_Uf5fHRp"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___}}]); \ No newline at end of file diff --git a/2547.b6b5739f.iframe.bundle.js b/2547.b6b5739f.iframe.bundle.js new file mode 100644 index 0000000..3cce298 --- /dev/null +++ b/2547.b6b5739f.iframe.bundle.js @@ -0,0 +1 @@ +"use strict";(self.webpackChunkreact_fabric=self.webpackChunkreact_fabric||[]).push([[2547],{"./packages/core/src/components/animations/Animations.tsx":(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{bm:()=>AnimationBars,QK:()=>AnimationIndicator,Cv:()=>AnimationSpinner,Rh:()=>Loading,EA:()=>Skeleton});var jsx_runtime=__webpack_require__("./node_modules/react/jsx-runtime.js"),classnames=__webpack_require__("./node_modules/classnames/index.js"),classnames_default=__webpack_require__.n(classnames),react=__webpack_require__("./node_modules/react/index.js"),useEffectDebugger=__webpack_require__("./packages/core/src/hooks/useEffectDebugger.ts"),utils=__webpack_require__("./packages/core/src/utils/index.ts"),injectStylesIntoStyleTag=__webpack_require__("./node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js"),injectStylesIntoStyleTag_default=__webpack_require__.n(injectStylesIntoStyleTag),styleDomAPI=__webpack_require__("./node_modules/style-loader/dist/runtime/styleDomAPI.js"),styleDomAPI_default=__webpack_require__.n(styleDomAPI),insertBySelector=__webpack_require__("./node_modules/style-loader/dist/runtime/insertBySelector.js"),insertBySelector_default=__webpack_require__.n(insertBySelector),setAttributesWithoutAttributes=__webpack_require__("./node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js"),setAttributesWithoutAttributes_default=__webpack_require__.n(setAttributesWithoutAttributes),insertStyleElement=__webpack_require__("./node_modules/style-loader/dist/runtime/insertStyleElement.js"),insertStyleElement_default=__webpack_require__.n(insertStyleElement),styleTagTransform=__webpack_require__("./node_modules/style-loader/dist/runtime/styleTagTransform.js"),styleTagTransform_default=__webpack_require__.n(styleTagTransform),Animations_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/components/animations/Animations.module.css"),options={};options.styleTagTransform=styleTagTransform_default(),options.setAttributes=setAttributesWithoutAttributes_default(),options.insert=insertBySelector_default().bind(null,"head"),options.domAPI=styleDomAPI_default(),options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(Animations_module.A,options);const animations_Animations_module=Animations_module.A&&Animations_module.A.locals?Animations_module.A.locals:void 0,AnimationIndicator=({className,color,strokeColor,type,...aria})=>{const styles=(0,useEffectDebugger.ZU)((()=>{const s={};return color&&(s.color=(0,utils.oU)(color)),strokeColor&&(s.stroke=(0,utils.oU)(strokeColor)),s}),[color,strokeColor],"Animation styles"),path=(0,react.useMemo)((()=>"check"===type?"M14.1 27.2l7.1 7.2 16.7-16.8":"cross"===type?"M14.1 14.1l23.8 23.8 m0,-23.8 l-23.8,23.8":"question"===type?"M18.949 17.621c0.426-0.787 1.354-1.6 2.108-2.223 1.279-0.984 3.87-1.778 5.805-1.778 3.837 0 6.189 2.689 6.189 6.034 0 2.23-1.193 4.214-3.751 6.346-2.886 2.361-3.497 3.362-3.497 5.788v0c0-2.263 0.689-3.509 3.476-5.772 2.689-2.23 3.772-3.968 3.772-6.362 0-3.772-2.492-6.034-6.789-6.034-2.132 0-3.903 0.722-5.28 1.804-0.82 0.623-1.476 1.377-2.033 2.197zM26 41.329v0-2.948z":"exclaim"===type?"M26.611 10.873c-0.002 1.015-0.002 2.071-0.002 3.086v11.777c0 3.086 0.002 2.232 0 3.288h-0.018c-0.001-1.056 0-0.202 0-3.288v-11.777c0-1.015 0-2.071-0.002-3.086zM26.59 37.472h0.018v3.655h-0.018z":"M26 22L26 41M27 22L27 41M25 22L25 41M26 11L26 16M27 11L27 16M25 11L25 16Z"),[type]);return(0,jsx_runtime.jsxs)("svg",{"data-ref":"animated-indicator",className:classnames_default()(animations_Animations_module.checkAnimation,className,"inline-block rounded-full",color&&(0,utils.Iq)(color)),style:styles,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 52 52","aria-hidden":"true",...aria,children:[(0,jsx_runtime.jsx)("circle",{className:animations_Animations_module.circlePart,cx:"26",cy:"26",r:"25"}),(0,jsx_runtime.jsx)("path",{className:classnames_default()(animations_Animations_module.iconPart,(0,utils.Iq)(strokeColor??"invert")),d:path})]})},AnimationBars=({color="tint",size="2rem"})=>(0,jsx_runtime.jsx)("div",{className:classnames_default()("absolute inset-0 z-10 flex justify-center items-center cursor-wait"),children:(0,jsx_runtime.jsx)("div",{className:classnames_default()("outline outline-tint-500/20 p-4 bg-base/50 backdrop-blur-sm rounded"),children:(0,jsx_runtime.jsx)("div",{className:classnames_default()(animations_Animations_module.bars,(0,utils.Iq)(color+"-500/50")),style:{width:size}})})}),AnimationSpinner=({color="tint-700",size="2rem"})=>(0,jsx_runtime.jsx)("div",{className:classnames_default()("absolute inset-0 z-10 flex justify-center items-center cursor-wait"),"data-testid":"spinner",children:(0,jsx_runtime.jsx)("div",{className:classnames_default()("outline outline-tint-500/20 p-4 bg-base/50 backdrop-blur-sm rounded"),children:(0,jsx_runtime.jsx)("div",{className:classnames_default()(animations_Animations_module.spinner,(0,utils.Iq)(color)),style:{width:size}})})}),Loading=()=>(0,jsx_runtime.jsx)("div",{className:classnames_default()(animations_Animations_module.loader,"area-[loader] relative overflow-x-clip"),"data-testid":"loading",children:(0,jsx_runtime.jsx)("div",{className:"absolute z-10 py-px inset-x-0 top-0 after:h-0.5 after:block after:bg-primary-500"})}),Skeleton=({className,...rest})=>(0,jsx_runtime.jsxs)("div",{className:classnames_default()(className,"p-2 animate-pulse flex gap-2 max-w-lg"),"data-testid":"skeleton",...rest,children:[(0,jsx_runtime.jsx)("div",{className:"bg-tint-100 rounded aspect-square h-12"}),(0,jsx_runtime.jsxs)("div",{className:"flex-1 flex flex-col gap-2",children:[(0,jsx_runtime.jsx)("div",{className:"bg-tint-100 h-3 rounded-full"}),(0,jsx_runtime.jsxs)("div",{className:"flex gap-2",children:[(0,jsx_runtime.jsx)("div",{className:"bg-tint-100 h-2 rounded-full basis-[30%]"}),(0,jsx_runtime.jsx)("div",{className:"bg-tint-100 h-2 rounded-full basis-[60%]"})]}),(0,jsx_runtime.jsxs)("div",{className:"flex gap-2",children:[(0,jsx_runtime.jsx)("div",{className:"bg-tint-100 h-2 rounded-full basis-[30%]"}),(0,jsx_runtime.jsx)("div",{className:"bg-tint-100 h-2 rounded-full basis-[60%]"})]})]})]});try{AnimationIndicator.displayName="AnimationIndicator",AnimationIndicator.__docgenInfo={description:"",displayName:"AnimationIndicator",props:{type:{defaultValue:null,description:"",name:"type",required:!1,type:{name:"enum",value:[{value:'"info"'},{value:'"check"'},{value:'"cross"'},{value:'"question"'},{value:'"exclaim"'}]}},color:{defaultValue:{value:"tint-700"},description:"icon color",name:"color",required:!1,type:{name:"enum",value:[{value:'"primary"'},{value:'"accent"'},{value:'"info"'},{value:'"danger"'},{value:'"success"'},{value:'"warning"'},{value:'"scarlet"'},{value:'"pumpkin"'},{value:'"marigold"'},{value:'"avacado"'},{value:'"jade"'},{value:'"denim"'},{value:'"iris"'},{value:'"lilac"'},{value:'"coral"'},{value:'"wood"'},{value:'"silver"'},{value:'"steel"'},{value:'"olive"'},{value:'"sand"'}]}},strokeColor:{defaultValue:null,description:"icon mark color",name:"strokeColor",required:!1,type:{name:"enum",value:[{value:'"primary"'},{value:'"accent"'},{value:'"info"'},{value:'"danger"'},{value:'"success"'},{value:'"warning"'},{value:'"scarlet"'},{value:'"pumpkin"'},{value:'"marigold"'},{value:'"avacado"'},{value:'"jade"'},{value:'"denim"'},{value:'"iris"'},{value:'"lilac"'},{value:'"coral"'},{value:'"wood"'},{value:'"silver"'},{value:'"steel"'},{value:'"olive"'},{value:'"sand"'}]}},className:{defaultValue:null,description:"css classname(s)",name:"className",required:!1,type:{name:"string"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/components/animations/Animations.tsx#AnimationIndicator"]={docgenInfo:AnimationIndicator.__docgenInfo,name:"AnimationIndicator",path:"packages/core/src/components/animations/Animations.tsx#AnimationIndicator"})}catch(__react_docgen_typescript_loader_error){}try{AnimationBars.displayName="AnimationBars",AnimationBars.__docgenInfo={description:"",displayName:"AnimationBars",props:{color:{defaultValue:{value:"tint-700"},description:"",name:"color",required:!1,type:{name:"string"}},size:{defaultValue:{value:"2rem"},description:"",name:"size",required:!1,type:{name:"string | number"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/components/animations/Animations.tsx#AnimationBars"]={docgenInfo:AnimationBars.__docgenInfo,name:"AnimationBars",path:"packages/core/src/components/animations/Animations.tsx#AnimationBars"})}catch(__react_docgen_typescript_loader_error){}try{AnimationSpinner.displayName="AnimationSpinner",AnimationSpinner.__docgenInfo={description:"",displayName:"AnimationSpinner",props:{color:{defaultValue:{value:"tint-700"},description:"",name:"color",required:!1,type:{name:"string"}},size:{defaultValue:{value:"2rem"},description:"",name:"size",required:!1,type:{name:"string | number"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/components/animations/Animations.tsx#AnimationSpinner"]={docgenInfo:AnimationSpinner.__docgenInfo,name:"AnimationSpinner",path:"packages/core/src/components/animations/Animations.tsx#AnimationSpinner"})}catch(__react_docgen_typescript_loader_error){}try{Skeleton.displayName="Skeleton",Skeleton.__docgenInfo={description:"",displayName:"Skeleton",props:{className:{defaultValue:null,description:"css classname(s)",name:"className",required:!1,type:{name:"string"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/components/animations/Animations.tsx#Skeleton"]={docgenInfo:Skeleton.__docgenInfo,name:"Skeleton",path:"packages/core/src/components/animations/Animations.tsx#Skeleton"})}catch(__react_docgen_typescript_loader_error){}},"./packages/core/src/components/badge/Badge.tsx":(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{E:()=>Badge,l:()=>getBadgeProps});var jsx_runtime=__webpack_require__("./node_modules/react/jsx-runtime.js"),esm=__webpack_require__("./packages/utilities/dist/esm/index.js"),classnames=__webpack_require__("./node_modules/classnames/index.js"),classnames_default=__webpack_require__.n(classnames),react=__webpack_require__("./node_modules/react/index.js"),Icon=__webpack_require__("./packages/core/src/components/icon/Icon.tsx"),injectStylesIntoStyleTag=__webpack_require__("./node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js"),injectStylesIntoStyleTag_default=__webpack_require__.n(injectStylesIntoStyleTag),styleDomAPI=__webpack_require__("./node_modules/style-loader/dist/runtime/styleDomAPI.js"),styleDomAPI_default=__webpack_require__.n(styleDomAPI),insertBySelector=__webpack_require__("./node_modules/style-loader/dist/runtime/insertBySelector.js"),insertBySelector_default=__webpack_require__.n(insertBySelector),setAttributesWithoutAttributes=__webpack_require__("./node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js"),setAttributesWithoutAttributes_default=__webpack_require__.n(setAttributesWithoutAttributes),insertStyleElement=__webpack_require__("./node_modules/style-loader/dist/runtime/insertStyleElement.js"),insertStyleElement_default=__webpack_require__.n(insertStyleElement),styleTagTransform=__webpack_require__("./node_modules/style-loader/dist/runtime/styleTagTransform.js"),styleTagTransform_default=__webpack_require__.n(styleTagTransform),Badge_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/components/badge/Badge.module.css"),options={};options.styleTagTransform=styleTagTransform_default(),options.setAttributes=setAttributesWithoutAttributes_default(),options.insert=insertBySelector_default().bind(null,"head"),options.domAPI=styleDomAPI_default(),options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(Badge_module.A,options);const badge_Badge_module=Badge_module.A&&Badge_module.A.locals?Badge_module.A.locals:void 0,getBadgeProps=badge=>(0,esm.Gv)(badge)?Object.assign({forButton:!0,placement:""},badge):{value:badge,forButton:!0,placement:""},Badge=({ref,className,value,max,ping,block,placement="top-end",children,forButton=!1,icon,iconBg,iconColor,rtlFlip,...rest})=>{const label=(0,react.useMemo)((()=>{if(!(0,esm.gD)(value))return(0,esm.Et)(value)&&max&&value>max?`${max}+`:`${value}`}),[value,max]),innerRef=(0,react.useMemo)((()=>(0,esm.Px)(ref,children?.props.ref)),[ref,children?.props.ref]);return(0,jsx_runtime.jsxs)("div",{className:classnames_default()(forButton?"contents":"relative",block?"block":"inline-block"),children:[children&&(0,react.cloneElement)(children,{...rest,ref:innerRef}),(!!ping||label)&&(0,jsx_runtime.jsxs)("div",{"data-ref":"badge","data-ping":ping,"data-placement":placement,className:classnames_default()(badge_Badge_module.badge,className,"inline-block p-px min-w-2 min-h-2 text-center select-none rounded-full leading-none z-5 pointer-events-none",forButton&&!placement?"relative":"absolute"),children:[label&&(0,jsx_runtime.jsx)("span",{className:"p-1",children:label}),icon&&(0,jsx_runtime.jsx)(Icon.I,{icon,bg:iconBg,color:iconColor,rtlFlip})]})]})};try{getBadgeProps.displayName="getBadgeProps",getBadgeProps.__docgenInfo={description:"",displayName:"getBadgeProps",props:{value:{defaultValue:null,description:"badge value",name:"value",required:!1,type:{name:"string | number"}},max:{defaultValue:null,description:"max value for number display",name:"max",required:!1,type:{name:"number"}},ping:{defaultValue:null,description:"ping animation",name:"ping",required:!1,type:{name:"boolean"}},className:{defaultValue:null,description:"badge CSS className",name:"className",required:!1,type:{name:"string"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/components/badge/Badge.tsx#getBadgeProps"]={docgenInfo:getBadgeProps.__docgenInfo,name:"getBadgeProps",path:"packages/core/src/components/badge/Badge.tsx#getBadgeProps"})}catch(__react_docgen_typescript_loader_error){}try{Badge.displayName="Badge",Badge.__docgenInfo={description:"",displayName:"Badge",props:{block:{defaultValue:null,description:"make wrapper a block element",name:"block",required:!1,type:{name:"boolean"}},value:{defaultValue:null,description:"badge value",name:"value",required:!1,type:{name:"string | number"}},max:{defaultValue:null,description:"max value for number display",name:"max",required:!1,type:{name:"number"}},ping:{defaultValue:null,description:"ping animation",name:"ping",required:!1,type:{name:"boolean"}},placement:{defaultValue:{value:"top-end"},description:"badge placement",name:"placement",required:!1,type:{name:"enum",value:[{value:'"end"'},{value:'"start"'},{value:'"top-start"'},{value:'"top-end"'},{value:'"bottom-start"'},{value:'"bottom-end"'},{value:'"top"'},{value:'"bottom"'}]}},className:{defaultValue:null,description:"css classname(s)",name:"className",required:!1,type:{name:"string"}},ref:{defaultValue:null,description:"",name:"ref",required:!1,type:{name:"Ref"}},icon:{defaultValue:null,description:"svg path / image url",name:"icon",required:!1,type:{name:"string"}},rtlFlip:{defaultValue:null,description:"flip icon in rtl",name:"rtlFlip",required:!1,type:{name:"boolean"}},iconBg:{defaultValue:null,description:"icon background color",name:"iconBg",required:!1,type:{name:"string"}},iconColor:{defaultValue:null,description:"icon color",name:"iconColor",required:!1,type:{name:"string"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/components/badge/Badge.tsx#Badge"]={docgenInfo:Badge.__docgenInfo,name:"Badge",path:"packages/core/src/components/badge/Badge.tsx#Badge"})}catch(__react_docgen_typescript_loader_error){}},"./packages/core/src/components/button/Button.tsx":(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{$:()=>Button});var react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/react/jsx-runtime.js"),_react_fabric_utilities__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./packages/utilities/dist/esm/index.js"),classnames__WEBPACK_IMPORTED_MODULE_2__=__webpack_require__("./node_modules/classnames/index.js"),classnames__WEBPACK_IMPORTED_MODULE_2___default=__webpack_require__.n(classnames__WEBPACK_IMPORTED_MODULE_2__),react__WEBPACK_IMPORTED_MODULE_3__=__webpack_require__("./node_modules/react/index.js"),_hooks_useEffectDebugger__WEBPACK_IMPORTED_MODULE_4__=__webpack_require__("./packages/core/src/hooks/useEffectDebugger.ts"),_hotkeys_HotKey__WEBPACK_IMPORTED_MODULE_5__=__webpack_require__("./packages/core/src/hotkeys/HotKey.tsx"),_hotkeys_HotKeyLabel__WEBPACK_IMPORTED_MODULE_6__=__webpack_require__("./packages/core/src/hotkeys/HotKeyLabel.tsx"),_overlays_tooltip_Tooltip__WEBPACK_IMPORTED_MODULE_7__=__webpack_require__("./packages/core/src/overlays/tooltip/Tooltip.tsx"),_animations_Animations__WEBPACK_IMPORTED_MODULE_8__=__webpack_require__("./packages/core/src/components/animations/Animations.tsx"),_badge_Badge__WEBPACK_IMPORTED_MODULE_9__=__webpack_require__("./packages/core/src/components/badge/Badge.tsx"),_icon_Icon__WEBPACK_IMPORTED_MODULE_10__=__webpack_require__("./packages/core/src/components/icon/Icon.tsx"),_Button_module_css__WEBPACK_IMPORTED_MODULE_11__=__webpack_require__("./packages/core/src/components/button/Button.module.css");const Button=({as,ref,children,className,active,color="primary",icon,iconBg,iconColor,iconAlign="start",altIcon,rtlFlip,rounded,size,disabled,loading,variant,badge,fullWidth,spinOnHover,onClick,actionMessage,stopPropagation,type="button",hotKey,showActionDone,showActionDoneEvent="click",tabIndex=0,"data-ref":dataRef,...aria})=>{const refEl=(0,react__WEBPACK_IMPORTED_MODULE_3__.useRef)(null),[busy,setBusy]=(0,react__WEBPACK_IMPORTED_MODULE_3__.useState)(!1),[actionDone,setActionDone]=(0,react__WEBPACK_IMPORTED_MODULE_3__.useState)(!1),clickHandler=(0,react__WEBPACK_IMPORTED_MODULE_3__.useCallback)((e=>{setBusy(!0),stopPropagation&&e.stopPropagation();const ret=onClick?.(e);Promise.resolve(ret).then((b=>{setBusy(!1),!1!==b&&actionMessage&&"click"===showActionDoneEvent&&setActionDone(!0)}))}),[onClick,disabled,actionMessage,showActionDoneEvent,stopPropagation]);(0,react__WEBPACK_IMPORTED_MODULE_3__.useEffect)((()=>{actionMessage&&showActionDone&&setActionDone(!0)}),[showActionDone,actionMessage]),(0,_hooks_useEffectDebugger__WEBPACK_IMPORTED_MODULE_4__.al)((()=>{if(actionDone){const timer=setTimeout((()=>setActionDone(!1)),2e3);return()=>clearTimeout(timer)}}),[actionDone],"ActionButton done handler");const TooltipWrapper=(0,react__WEBPACK_IMPORTED_MODULE_3__.useMemo)((()=>actionMessage?_overlays_tooltip_Tooltip__WEBPACK_IMPORTED_MODULE_7__.m:react__WEBPACK_IMPORTED_MODULE_3__.Fragment),[actionMessage,actionDone]),tooltipProps=(0,react__WEBPACK_IMPORTED_MODULE_3__.useMemo)((()=>{if(actionDone&&actionMessage)return{content:actionMessage,placement:"top",color,open:!0}}),[actionDone,actionMessage,color]),badgeProps=(0,react__WEBPACK_IMPORTED_MODULE_3__.useMemo)((()=>(0,_badge_Badge__WEBPACK_IMPORTED_MODULE_9__.l)(badge)),[badge]),hotKeyHandler=(0,react__WEBPACK_IMPORTED_MODULE_3__.useRef)((()=>{!disabled&&refEl.current?.click()})),E=as??"button";return(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxs)("div",{className:classnames__WEBPACK_IMPORTED_MODULE_2___default()(_Button_module_css__WEBPACK_IMPORTED_MODULE_11__.A.buttonWrapper,className,"relative align-text-top select-none focus-within:z-1",fullWidth?"block w-full":"inline-block"),"data-ref":dataRef??"button","data-size":size,"data-loading":busy||loading,"data-disabled":disabled,children:[hotKey&&(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_hotkeys_HotKey__WEBPACK_IMPORTED_MODULE_5__.B,{keyCombo:hotKey,handler:hotKeyHandler.current}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(TooltipWrapper,{...tooltipProps,children:(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxs)(E,{ref:(0,_react_fabric_utilities__WEBPACK_IMPORTED_MODULE_1__.Px)(ref,refEl),role:"button",className:classnames__WEBPACK_IMPORTED_MODULE_2___default()(_Button_module_css__WEBPACK_IMPORTED_MODULE_11__.A.button,"pointer-events-auto cursor-pointer select-none flex flex-nowrap w-full h-full items-center border-0 -outline-offset-1 justify-center max-w-72 p-0 font-sans font-medium appearance-none","focus-visible:ring-2 focus-visible:ring-offset-2 buttonInner",fullWidth&&"max-w-full w-full",rounded&&"rounded-full",spinOnHover&&_Button_module_css__WEBPACK_IMPORTED_MODULE_11__.A.spinOnHover),type,disabled,tabIndex,"data-inner-clickable":!0,onClick:clickHandler,"data-color":color,"data-active":active,"data-variant":variant,...aria,children:[icon&&(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_icon_Icon__WEBPACK_IMPORTED_MODULE_10__.I,{className:_Button_module_css__WEBPACK_IMPORTED_MODULE_11__.A.buttonIcon,icon,bg:iconBg,color:iconColor,rtlFlip,"data-align":iconAlign}),(0,react__WEBPACK_IMPORTED_MODULE_3__.isValidElement)(children)&&(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)("div",{className:_Button_module_css__WEBPACK_IMPORTED_MODULE_11__.A.buttonChild,children}),(0,_react_fabric_utilities__WEBPACK_IMPORTED_MODULE_1__.Kg)(children)&&(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)("label",{className:classnames__WEBPACK_IMPORTED_MODULE_2___default()(_Button_module_css__WEBPACK_IMPORTED_MODULE_11__.A.buttonLabel,"truncate"),"data-colored-icon":!!iconBg,children}),!(0,_react_fabric_utilities__WEBPACK_IMPORTED_MODULE_1__.gD)(badge)&&(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_badge_Badge__WEBPACK_IMPORTED_MODULE_9__.E,{...badgeProps}),hotKey&&(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_hotkeys_HotKeyLabel__WEBPACK_IMPORTED_MODULE_6__.z,{keyCombo:hotKey}),altIcon&&(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_icon_Icon__WEBPACK_IMPORTED_MODULE_10__.I,{className:_Button_module_css__WEBPACK_IMPORTED_MODULE_11__.A.altIcon,icon:altIcon,rtlFlip:!0})]})}),actionDone&&(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)("div",{className:classnames__WEBPACK_IMPORTED_MODULE_2___default()("absolute inset-0 overflow-hidden flex justify-center items-center",`bg-${color}-300`,rounded?"rounded-full":"rounded"),children:(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_animations_Animations__WEBPACK_IMPORTED_MODULE_8__.QK,{type:"check",color})})]})};try{Button.displayName="Button",Button.__docgenInfo={description:"Clickable action button",displayName:"Button",props:{iconAlign:{defaultValue:{value:"start"},description:"primary icon alignment",name:"iconAlign",required:!1,type:{name:"enum",value:[{value:'"end"'},{value:'"start"'}]}},altIcon:{defaultValue:null,description:"alternate icon align end (caret, arrow)",name:"altIcon",required:!1,type:{name:"string"}},size:{defaultValue:null,description:"button size",name:"size",required:!1,type:{name:"enum",value:[{value:'"xs"'},{value:'"sm"'},{value:'"md"'},{value:'"lg"'},{value:'"xl"'}]}},color:{defaultValue:{value:"primary"},description:"button color",name:"color",required:!1,type:{name:"any"}},type:{defaultValue:{value:"button"},description:"button type",name:"type",required:!1,type:{name:"enum",value:[{value:'"button"'},{value:'"reset"'},{value:'"submit"'}]}},variant:{defaultValue:null,description:"button styling",name:"variant",required:!1,type:{name:"enum",value:[{value:'"link"'},{value:'"outline"'},{value:'"solid"'}]}},active:{defaultValue:null,description:"active state with click disabled",name:"active",required:!1,type:{name:"boolean"}},loading:{defaultValue:null,description:"loading state with animation and click disabled",name:"loading",required:!1,type:{name:"boolean"}},rounded:{defaultValue:null,description:"full rounded edges",name:"rounded",required:!1,type:{name:"boolean"}},spinOnHover:{defaultValue:null,description:"spin icon on hover",name:"spinOnHover",required:!1,type:{name:"boolean"}},disabled:{defaultValue:null,description:"disabled state",name:"disabled",required:!1,type:{name:"boolean"}},fullWidth:{defaultValue:null,description:"stretch to full width",name:"fullWidth",required:!1,type:{name:"boolean"}},actionMessage:{defaultValue:null,description:"action completed message works best with `onClick` Promise return.\nTo hide completed message onClick/Promise return should be false",name:"actionMessage",required:!1,type:{name:"string"}},showActionDone:{defaultValue:null,description:"manually force show action message",name:"showActionDone",required:!1,type:{name:"boolean"}},showActionDoneEvent:{defaultValue:{value:"click"},description:"show action message `onClick` or manually by setting `showActionDone` true",name:"showActionDoneEvent",required:!1,type:{name:"enum",value:[{value:'"click"'},{value:'"manual"'}]}},onClick:{defaultValue:null,description:"click handler, return Promise to autoset loading state",name:"onClick",required:!1,type:{name:"((e?: MouseEvent) => unknown)"}},badge:{defaultValue:null,description:"badges",name:"badge",required:!1,type:{name:"string | number | BadgeType"}},hotKey:{defaultValue:null,description:"keyboard shortcut",name:"hotKey",required:!1,type:{name:"string"}},stopPropagation:{defaultValue:null,description:"",name:"stopPropagation",required:!1,type:{name:"boolean"}},onMouseOut:{defaultValue:null,description:"",name:"onMouseOut",required:!1,type:{name:"any"}},onMouseOver:{defaultValue:null,description:"",name:"onMouseOver",required:!1,type:{name:"any"}},onMouseMove:{defaultValue:null,description:"",name:"onMouseMove",required:!1,type:{name:"any"}},onMouseEnter:{defaultValue:null,description:"",name:"onMouseEnter",required:!1,type:{name:"any"}},onMouseLeave:{defaultValue:null,description:"",name:"onMouseLeave",required:!1,type:{name:"any"}},onWheel:{defaultValue:null,description:"",name:"onWheel",required:!1,type:{name:"any"}},className:{defaultValue:null,description:"css classname(s)",name:"className",required:!1,type:{name:"string"}},icon:{defaultValue:null,description:"svg path / image url",name:"icon",required:!1,type:{name:"string"}},rtlFlip:{defaultValue:null,description:"flip icon in rtl",name:"rtlFlip",required:!1,type:{name:"boolean"}},iconBg:{defaultValue:null,description:"icon background color",name:"iconBg",required:!1,type:{name:"string"}},iconColor:{defaultValue:null,description:"icon color",name:"iconColor",required:!1,type:{name:"string"}},ref:{defaultValue:null,description:"",name:"ref",required:!1,type:{name:"Ref"}},"data-testid":{defaultValue:null,description:"data attribute for test id",name:"data-testid",required:!1,type:{name:"string"}},"data-test-value":{defaultValue:null,description:"data attribute for test value",name:"data-test-value",required:!1,type:{name:"any"}},as:{defaultValue:null,description:"The component used for the root node.\nEither a string to use a HTML element or a component.",name:"as",required:!1,type:{name:"ElementType"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/components/button/Button.tsx#Button"]={docgenInfo:Button.__docgenInfo,name:"Button",path:"packages/core/src/components/button/Button.tsx#Button"})}catch(__react_docgen_typescript_loader_error){}},"./packages/core/src/components/icon/Icon.tsx":(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{I:()=>Icon});var jsx_runtime=__webpack_require__("./node_modules/react/jsx-runtime.js"),esm=__webpack_require__("./packages/utilities/dist/esm/index.js"),classnames=__webpack_require__("./node_modules/classnames/index.js"),classnames_default=__webpack_require__.n(classnames),react=__webpack_require__("./node_modules/react/index.js"),utils=__webpack_require__("./packages/core/src/utils/index.ts"),injectStylesIntoStyleTag=__webpack_require__("./node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js"),injectStylesIntoStyleTag_default=__webpack_require__.n(injectStylesIntoStyleTag),styleDomAPI=__webpack_require__("./node_modules/style-loader/dist/runtime/styleDomAPI.js"),styleDomAPI_default=__webpack_require__.n(styleDomAPI),insertBySelector=__webpack_require__("./node_modules/style-loader/dist/runtime/insertBySelector.js"),insertBySelector_default=__webpack_require__.n(insertBySelector),setAttributesWithoutAttributes=__webpack_require__("./node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js"),setAttributesWithoutAttributes_default=__webpack_require__.n(setAttributesWithoutAttributes),insertStyleElement=__webpack_require__("./node_modules/style-loader/dist/runtime/insertStyleElement.js"),insertStyleElement_default=__webpack_require__.n(insertStyleElement),styleTagTransform=__webpack_require__("./node_modules/style-loader/dist/runtime/styleTagTransform.js"),styleTagTransform_default=__webpack_require__.n(styleTagTransform),Icon_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/components/icon/Icon.module.css"),options={};options.styleTagTransform=styleTagTransform_default(),options.setAttributes=setAttributesWithoutAttributes_default(),options.insert=insertBySelector_default().bind(null,"head"),options.domAPI=styleDomAPI_default(),options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(Icon_module.A,options);const icon_Icon_module=Icon_module.A&&Icon_module.A.locals?Icon_module.A.locals:void 0,SvgTextSize=["",".875em",".525em",".35em",".25em"],SizeMap={xs:"0.625rem",sm:"0.875rem",md:"1.125rem",lg:"1.5rem",xl:"2rem"},Icon=({ref,icon,bg,color,size="",rtlFlip,animate,rounded,viewBox="0 0 24 24",className,onClick,...rest})=>{const styles=(0,react.useMemo)((()=>{const s={};return bg&&(s.backgroundColor=(0,utils.oU)(bg)),color&&(s.color=(0,utils.oU)(color)),size&&!(size in SizeMap)&&(s.fontSize=size),size&&size in SizeMap&&(s.fontSize=SizeMap[size]),s}),[bg,color,size]),isSvg=(0,react.useMemo)((()=>(0,esm.yX)(icon)),[icon]),iconEl=(0,react.useMemo)((()=>{if(!(0,esm.Kg)(icon))throw Error("Invalid icon expected string");return isSvg?(0,jsx_runtime.jsx)("svg",{viewBox,children:(0,jsx_runtime.jsx)("path",{fill:"currentColor",d:icon.toString()})}):icon?.toString().length<=4?(0,jsx_runtime.jsx)("svg",{role:"img",children:(0,jsx_runtime.jsx)("text",{x:"50%",y:"50%",dy:".1em",dominantBaseline:"middle",textAnchor:"middle",style:{fontSize:SvgTextSize[icon.length]??"1em"},children:icon})}):(0,jsx_runtime.jsx)("i",{className:`${icon}`})}),[icon,isSvg,viewBox]);return(0,jsx_runtime.jsx)("dfn",{...rest,ref,role:"presentation",className:classnames_default()(icon_Icon_module.icon,className,"select-none overflow-hidden inline-block box-content leading-none not-italic text-center",bg&&(0,utils.MN)(bg),color&&(0,utils.Iq)(color),!rounded&&"rounded",rounded&&"rounded-full",animate&&`animate-${animate}`),onClick,"data-flip":rtlFlip,style:styles,"data-clickable":!!onClick,"data-inner-clickable":!!onClick,children:iconEl})};try{Icon.displayName="Icon",Icon.__docgenInfo={description:"An icon is a display component for svg icon path / image",displayName:"Icon",props:{icon:{defaultValue:null,description:"svg path / webfont className / 1-4 letter text",name:"icon",required:!0,type:{name:"string"}},bg:{defaultValue:null,description:"background color (CSS color / tailwind color)",name:"bg",required:!1,type:{name:"string"}},color:{defaultValue:null,description:"icon color (CSS color / tailwind color)",name:"color",required:!1,type:{name:"string"}},rtlFlip:{defaultValue:null,description:"flip icon in rtl",name:"rtlFlip",required:!1,type:{name:"boolean"}},size:{defaultValue:{value:""},description:"icon size",name:"size",required:!1,type:{name:"string | number"}},viewBox:{defaultValue:{value:"0 0 24 24"},description:"viewbox for svg path (default 24)",name:"viewBox",required:!1,type:{name:"string"}},rounded:{defaultValue:null,description:"rounded icon",name:"rounded",required:!1,type:{name:"boolean"}},animate:{defaultValue:null,description:"apply animation",name:"animate",required:!1,type:{name:"enum",value:[{value:'"spin"'},{value:'"pulse"'},{value:'"bounce"'}]}},onClick:{defaultValue:null,description:"click handler",name:"onClick",required:!1,type:{name:"MouseEventHandler"}},className:{defaultValue:null,description:"css classname(s)",name:"className",required:!1,type:{name:"string"}},ref:{defaultValue:null,description:"",name:"ref",required:!1,type:{name:"Ref"}},"data-testid":{defaultValue:null,description:"data attribute for test id",name:"data-testid",required:!1,type:{name:"string"}},"data-test-value":{defaultValue:null,description:"data attribute for test value",name:"data-test-value",required:!1,type:{name:"any"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/components/icon/Icon.tsx#Icon"]={docgenInfo:Icon.__docgenInfo,name:"Icon",path:"packages/core/src/components/icon/Icon.tsx#Icon"})}catch(__react_docgen_typescript_loader_error){}},"./packages/core/src/core/headfoot/HeadFoot.tsx":(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{w:()=>Footer,Y:()=>Header});var jsx_runtime=__webpack_require__("./node_modules/react/jsx-runtime.js"),classnames=__webpack_require__("./node_modules/classnames/index.js"),classnames_default=__webpack_require__.n(classnames),useEffectDebugger=__webpack_require__("./packages/core/src/hooks/useEffectDebugger.ts"),utils=__webpack_require__("./packages/core/src/utils/index.ts"),injectStylesIntoStyleTag=__webpack_require__("./node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js"),injectStylesIntoStyleTag_default=__webpack_require__.n(injectStylesIntoStyleTag),styleDomAPI=__webpack_require__("./node_modules/style-loader/dist/runtime/styleDomAPI.js"),styleDomAPI_default=__webpack_require__.n(styleDomAPI),insertBySelector=__webpack_require__("./node_modules/style-loader/dist/runtime/insertBySelector.js"),insertBySelector_default=__webpack_require__.n(insertBySelector),setAttributesWithoutAttributes=__webpack_require__("./node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js"),setAttributesWithoutAttributes_default=__webpack_require__.n(setAttributesWithoutAttributes),insertStyleElement=__webpack_require__("./node_modules/style-loader/dist/runtime/insertStyleElement.js"),insertStyleElement_default=__webpack_require__.n(insertStyleElement),styleTagTransform=__webpack_require__("./node_modules/style-loader/dist/runtime/styleTagTransform.js"),styleTagTransform_default=__webpack_require__.n(styleTagTransform),HeadFoot_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/core/headfoot/HeadFoot.module.css"),options={};options.styleTagTransform=styleTagTransform_default(),options.setAttributes=setAttributesWithoutAttributes_default(),options.insert=insertBySelector_default().bind(null,"head"),options.domAPI=styleDomAPI_default(),options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(HeadFoot_module.A,options);const headfoot_HeadFoot_module=HeadFoot_module.A&&HeadFoot_module.A.locals?HeadFoot_module.A.locals:void 0,HeadFoot=({as:E,children,className,bg,color,flex,area,dir,align="center",justify="start",...aria})=>{const styles=(0,useEffectDebugger.ZU)((()=>{const s={};return bg&&(s.backgroundColor=(0,utils.oU)(bg)),color&&(s.color=(0,utils.oU)(color)),s}),[bg],"HeadFoot styles");return(0,jsx_runtime.jsx)(E,{dir,className:classnames_default()(headfoot_HeadFoot_module.headfoot,className,bg&&(0,utils.MN)(bg),color&&(0,utils.Iq)(color),"head"===area?"area-head":"area-foot","leading-none",flex&&"flex flex-nowrap",align&&`items-${align}`,justify&&`justify-${justify}`),style:styles,...aria,children})},Header=props=>(0,jsx_runtime.jsx)(HeadFoot,{as:"header",area:"head",...props}),Footer=props=>(0,jsx_runtime.jsx)(HeadFoot,{as:"footer",area:"foot",...props});try{Header.displayName="Header",Header.__docgenInfo={description:"",displayName:"Header",props:{dir:{defaultValue:null,description:"",name:"dir",required:!1,type:{name:"enum",value:[{value:'"ltr"'},{value:'"rtl"'}]}},bg:{defaultValue:null,description:"background color",name:"bg",required:!1,type:{name:"string"}},color:{defaultValue:null,description:"background color",name:"color",required:!1,type:{name:"string"}},className:{defaultValue:null,description:"css classname(s)",name:"className",required:!1,type:{name:"string"}},"data-testid":{defaultValue:null,description:"data attribute for test id",name:"data-testid",required:!1,type:{name:"string"}},"data-test-value":{defaultValue:null,description:"data attribute for test value",name:"data-test-value",required:!1,type:{name:"any"}},flex:{defaultValue:null,description:"",name:"flex",required:!1,type:{name:"boolean"}},align:{defaultValue:{value:"center"},description:"",name:"align",required:!1,type:{name:"enum",value:[{value:'"center"'},{value:'"end"'},{value:'"start"'},{value:'"stretch"'}]}},justify:{defaultValue:{value:"start"},description:"",name:"justify",required:!1,type:{name:"enum",value:[{value:'"center"'},{value:'"end"'},{value:'"start"'},{value:'"between"'}]}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/core/headfoot/HeadFoot.tsx#Header"]={docgenInfo:Header.__docgenInfo,name:"Header",path:"packages/core/src/core/headfoot/HeadFoot.tsx#Header"})}catch(__react_docgen_typescript_loader_error){}try{Footer.displayName="Footer",Footer.__docgenInfo={description:"",displayName:"Footer",props:{dir:{defaultValue:null,description:"",name:"dir",required:!1,type:{name:"enum",value:[{value:'"ltr"'},{value:'"rtl"'}]}},bg:{defaultValue:null,description:"background color",name:"bg",required:!1,type:{name:"string"}},color:{defaultValue:null,description:"background color",name:"color",required:!1,type:{name:"string"}},className:{defaultValue:null,description:"css classname(s)",name:"className",required:!1,type:{name:"string"}},"data-testid":{defaultValue:null,description:"data attribute for test id",name:"data-testid",required:!1,type:{name:"string"}},"data-test-value":{defaultValue:null,description:"data attribute for test value",name:"data-test-value",required:!1,type:{name:"any"}},flex:{defaultValue:null,description:"",name:"flex",required:!1,type:{name:"boolean"}},align:{defaultValue:{value:"center"},description:"",name:"align",required:!1,type:{name:"enum",value:[{value:'"center"'},{value:'"end"'},{value:'"start"'},{value:'"stretch"'}]}},justify:{defaultValue:{value:"start"},description:"",name:"justify",required:!1,type:{name:"enum",value:[{value:'"center"'},{value:'"end"'},{value:'"start"'},{value:'"between"'}]}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/core/headfoot/HeadFoot.tsx#Footer"]={docgenInfo:Footer.__docgenInfo,name:"Footer",path:"packages/core/src/core/headfoot/HeadFoot.tsx#Footer"})}catch(__react_docgen_typescript_loader_error){}},"./packages/core/src/hooks/useEffectDebugger.ts":(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{KI:()=>useLayoutEffectDebugger,ZU:()=>useMemoDebugger,al:()=>useEffectDebugger});var _react_fabric_utilities__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./packages/utilities/dist/esm/index.js"),react__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/react/index.js");const loggerM=(0,_react_fabric_utilities__WEBPACK_IMPORTED_MODULE_0__.Ul)("useMemoDebugger"),loggerE=(0,_react_fabric_utilities__WEBPACK_IMPORTED_MODULE_0__.Ul)("useEffectDebugger"),loggerLE=(0,_react_fabric_utilities__WEBPACK_IMPORTED_MODULE_0__.Ul)("useLayoutEffectDebugger"),compareInputs=(oldInputs,newInputs,prefix,logger)=>{"undefined"!=typeof window&&!0!==window.DEBUG_HOOKS||(oldInputs.length===newInputs.length?oldInputs.forEach(((oldInput,index)=>{const newInput=newInputs[index],diff=[];oldInput!==newInput&&diff.push(`Dep [${index}] has a different value`,oldInput?.type?.name??oldInput?.tagName??oldInput?.name??oldInput?.substr?.(0,24)??oldInput,newInput?.type?.name??newInput?.tagName??newInput?.name??newInput?.substr?.(0,24)??newInput,"\n\n"),diff.length&&logger.debug("Diff",{process:prefix},...diff)})):logger.debug("Deps have a different length",{process:prefix},oldInputs.length,newInputs.length))},useMemoDebugger=(func,inputs,prefix)=>{const oldInputsRef=(0,react__WEBPACK_IMPORTED_MODULE_1__.useRef)(inputs);return(0,react__WEBPACK_IMPORTED_MODULE_1__.useMemo)((()=>{const oldInputs=oldInputsRef.current;return compareInputs(oldInputs,inputs,prefix,loggerM),oldInputsRef.current=inputs,func()}),inputs)},useEffectDebugger=(func,inputs,prefix)=>{const oldInputsRef=(0,react__WEBPACK_IMPORTED_MODULE_1__.useRef)(inputs);(0,react__WEBPACK_IMPORTED_MODULE_1__.useEffect)((()=>{const oldInputs=oldInputsRef.current;return compareInputs(oldInputs,inputs,prefix,loggerE),oldInputsRef.current=inputs,func()}),inputs)},useLayoutEffectDebugger=(func,inputs,prefix)=>{const oldInputsRef=(0,react__WEBPACK_IMPORTED_MODULE_1__.useRef)(inputs);(0,react__WEBPACK_IMPORTED_MODULE_1__.useLayoutEffect)((()=>{const oldInputs=oldInputsRef.current;return compareInputs(oldInputs,inputs,prefix,loggerLE),oldInputsRef.current=inputs,func()}),inputs)}},"./packages/core/src/hooks/useIsRtl.ts":(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{O:()=>useIsRtl});var react__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/react/index.js"),react_i18next__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/react-i18next/dist/es/index.js"),_useEffectDebugger__WEBPACK_IMPORTED_MODULE_2__=__webpack_require__("./packages/core/src/hooks/useEffectDebugger.ts");const useIsRtl=()=>{const{i18n}=(0,react_i18next__WEBPACK_IMPORTED_MODULE_1__.Bd)("core"),[isRtl,setIsRtl]=(0,react__WEBPACK_IMPORTED_MODULE_0__.useState)(!1);return(0,_useEffectDebugger__WEBPACK_IMPORTED_MODULE_2__.KI)((()=>{try{setIsRtl("rtl"===i18n.dir())}catch{}}),[i18n.language],"useIsRtl"),isRtl}},"./packages/core/src/hotkeys/HotKey.tsx":(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{B:()=>HotKey});var _hooks_useEffectDebugger__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./packages/core/src/hooks/useEffectDebugger.ts"),_HotKeyWrapper__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./packages/core/src/hotkeys/HotKeyWrapper.tsx");const HotKey=({keyCombo,global,handler})=>{const{addHotKey,removeHotKey}=(0,_HotKeyWrapper__WEBPACK_IMPORTED_MODULE_1__.zg)();return(0,_hooks_useEffectDebugger__WEBPACK_IMPORTED_MODULE_0__.al)((()=>(addHotKey?.(keyCombo,handler??(()=>{}),global),()=>removeHotKey?.(keyCombo))),[addHotKey,global,handler,keyCombo,removeHotKey],"HotKey add"),null};try{HotKey.displayName="HotKey",HotKey.__docgenInfo={description:"",displayName:"HotKey",props:{keyCombo:{defaultValue:null,description:"Hot key combination\n\nctrl, shift, alt, meta\nenter, space, escape, tab, backspace, delete\nleft, right, up, down",name:"keyCombo",required:!0,type:{name:"string"}},global:{defaultValue:null,description:"Global hot key",name:"global",required:!1,type:{name:"boolean"}},handler:{defaultValue:null,description:"Callback handler",name:"handler",required:!1,type:{name:"(() => void)"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/hotkeys/HotKey.tsx#HotKey"]={docgenInfo:HotKey.__docgenInfo,name:"HotKey",path:"packages/core/src/hotkeys/HotKey.tsx#HotKey"})}catch(__react_docgen_typescript_loader_error){}},"./packages/core/src/hotkeys/HotKeyLabel.tsx":(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{z:()=>HotKeyLabel});var react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/react/jsx-runtime.js"),_hooks_useEffectDebugger__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./packages/core/src/hooks/useEffectDebugger.ts"),_commons__WEBPACK_IMPORTED_MODULE_2__=__webpack_require__("./packages/core/src/hotkeys/commons.ts");const HotKeyLabel=({keyCombo})=>{const label=(0,_hooks_useEffectDebugger__WEBPACK_IMPORTED_MODULE_1__.ZU)((()=>{const item=(0,_commons__WEBPACK_IMPORTED_MODULE_2__.L)({keyCombo}),label=[];return item.alt&&label.push("ALT"),item.ctrl&&label.push("CTRL"),item.meta&&label.push("META"),item.shift&&label.push("SHIFT"),"tab"===item.key.toLowerCase()?label.push("TAB"):"space"===item.key.toLowerCase()?label.push("SPC"):"arrowleft"===item.key.toLowerCase()?label.push("LEFT"):"arrowright"===item.key.toLowerCase()?label.push("RIGHT"):"arrowup"===item.key.toLowerCase()?label.push("UP"):"arrowdown"===item.key.toLowerCase()?label.push("DOWN"):"enter"===item.key.toLowerCase()?label.push("ENTER"):"delete"===item.key.toLowerCase()?label.push("DEL"):"escape"===item.key.toLowerCase()?label.push("ESC"):"backspace"===item.key.toLowerCase()?label.push("BKSPC"):label.push(item.key.toUpperCase()),[(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)("span",{children:label.join(" ")},"label")]}),[keyCombo],"HotKey label");return(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)("kbd",{className:"hotkey-label inline-flex gap-1 select-none self-center font-mono items-center text-[0.625rem] leading-4 bg-tint-500/10 text-base/50 whitespace-nowrap rounded px-2 mx-1",children:label})};try{HotKeyLabel.displayName="HotKeyLabel",HotKeyLabel.__docgenInfo={description:"",displayName:"HotKeyLabel",props:{keyCombo:{defaultValue:null,description:"Hot key combination\n\nctrl, shift, alt, meta\nenter, space, escape, tab, backspace, delete\nleft, right, up, down",name:"keyCombo",required:!0,type:{name:"string"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/hotkeys/HotKeyLabel.tsx#HotKeyLabel"]={docgenInfo:HotKeyLabel.__docgenInfo,name:"HotKeyLabel",path:"packages/core/src/hotkeys/HotKeyLabel.tsx#HotKeyLabel"})}catch(__react_docgen_typescript_loader_error){}},"./packages/core/src/hotkeys/HotKeyWrapper.tsx":(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{O1:()=>HotKeyWrapper,zg:()=>useHotKeys});var react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/react/jsx-runtime.js"),react__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/react/index.js"),_hooks_useEffectDebugger__WEBPACK_IMPORTED_MODULE_2__=__webpack_require__("./packages/core/src/hooks/useEffectDebugger.ts"),_commons__WEBPACK_IMPORTED_MODULE_3__=__webpack_require__("./packages/core/src/hotkeys/commons.ts");const HotKeysContext=(0,react__WEBPACK_IMPORTED_MODULE_1__.createContext)({}),useHotKeys=()=>(0,react__WEBPACK_IMPORTED_MODULE_1__.useContext)(HotKeysContext),HotKeyWrapper=(0,react__WEBPACK_IMPORTED_MODULE_1__.memo)((({children})=>{const refEl=(0,react__WEBPACK_IMPORTED_MODULE_1__.useRef)(null),keyList=(0,react__WEBPACK_IMPORTED_MODULE_1__.useRef)([]),addHotKey=(0,react__WEBPACK_IMPORTED_MODULE_1__.useCallback)(((keyCombo,handler,global=!1)=>keyList.current=[...keyList.current.filter((({_key})=>_key!==keyCombo)),(0,_commons__WEBPACK_IMPORTED_MODULE_3__.L)({keyCombo,handler,global})]),[]),removeHotKey=(0,react__WEBPACK_IMPORTED_MODULE_1__.useCallback)((key=>keyList.current=[...keyList.current.filter((({_key})=>_key!==key))]),[]),handler=(0,react__WEBPACK_IMPORTED_MODULE_1__.useCallback)(((items,event)=>{if(0===items.length)return;const{key:keyCode,code,altKey,ctrlKey,metaKey,shiftKey}=event;if("Enter"!==keyCode&&"Esc"!==keyCode&&["INPUT","TEXTAREA","SELECT"].includes(event.target.tagName))return;const find=items.find((({key,alt,ctrl,meta,shift})=>(key.toLowerCase()===keyCode.toLowerCase()||key.toLowerCase()===code.toLowerCase())&&alt===altKey&&ctrl===ctrlKey&&meta===metaKey&&shift===shiftKey));find?.handler&&(find.handler(),event.preventDefault(),event.stopImmediatePropagation())}),[]),handleGlobal=(0,react__WEBPACK_IMPORTED_MODULE_1__.useCallback)((event=>{handler(keyList.current.filter((i=>i.global)),event)}),[handler]),handleHotKey=(0,react__WEBPACK_IMPORTED_MODULE_1__.useCallback)((event=>{handler(keyList.current.filter((i=>!i.global)),event)}),[handler]);return(0,_hooks_useEffectDebugger__WEBPACK_IMPORTED_MODULE_2__.al)((()=>{const el=refEl.current?.parentElement;if(el)return el.tabIndex=0,el.addEventListener("keydown",handleHotKey),document.addEventListener("keydown",handleGlobal),()=>{el.removeEventListener("keydown",handleHotKey),document.removeEventListener("keydown",handleGlobal)}}),[handleGlobal,handleHotKey],"HotKeyWrapper attach handlers"),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(HotKeysContext.Provider,{value:{addHotKey,removeHotKey},children:(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)("div",{ref:refEl,style:{display:"contents"},children})})}));HotKeyWrapper.displayName="HotKeyProvider";try{HotKeyWrapper.displayName="HotKeyProvider",HotKeyWrapper.__docgenInfo={description:"",displayName:"HotKeyProvider",props:{}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/hotkeys/HotKeyWrapper.tsx#HotKeyProvider"]={docgenInfo:HotKeyProvider.__docgenInfo,name:"HotKeyProvider",path:"packages/core/src/hotkeys/HotKeyWrapper.tsx#HotKeyProvider"})}catch(__react_docgen_typescript_loader_error){}},"./packages/core/src/hotkeys/commons.ts":(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{L:()=>reduceHotKey});const reduceHotKey=({keyCombo,global,handler})=>{const item={key:"",meta:!1,shift:!1,ctrl:!1,alt:!1,_key:keyCombo,handler,global};return keyCombo.split("+").forEach((e=>{"ctrl"===e.trim().toLowerCase()?item.ctrl=!0:"alt"===e.trim().toLowerCase()?item.alt=!0:"meta"===e.trim().toLowerCase()?item.meta=!0:"shift"===e.trim().toLowerCase()?item.shift=!0:"left"===e.trim().toLowerCase()?item.key="arrowleft":"right"===e.trim().toLowerCase()?item.key="arrowright":"up"===e.trim().toLowerCase()?item.key="arrowup":"down"===e.trim().toLowerCase()?item.key="arrowdown":e.trim().toLowerCase().startsWith("del")?item.key="delete":e.trim().toLowerCase().startsWith("esc")?item.key="escape":item.key=e.trim().toLowerCase()})),item}},"./packages/core/src/index.ts":(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{id:()=>Abbr,L4:()=>ActionLabel,Mz:()=>Anchor,bm:()=>Animations.bm,QK:()=>Animations.QK,Cv:()=>Animations.Cv,nC:()=>Aside,eu:()=>Avatar,Z7:()=>AvatarGroup,Ex:()=>Badge.E,BI:()=>Breadcrumbs,$n:()=>Button.$,e2:()=>ButtonGroup,Pq:()=>Callout,Zp:()=>Card,Gd:()=>CardCover,vu:()=>Chip,fv:()=>Col,pJ:()=>Collapsable,ZF:()=>ConfirmButton,mc:()=>Container,UC:()=>Content,tz:()=>ContextMenu,QR:()=>Copy,OO:()=>icons.O,cG:()=>Divider,ms:()=>Dropdown,W2:()=>DropdownDismiss,HY:()=>EmptyContent,tH:()=>ErrorBoundary,mj:()=>overlays.mj,wi:()=>HeadFoot.w,Y9:()=>HeadFoot.Y,In:()=>Icon.I,_V:()=>Image,CU:()=>Mark,W1:()=>Menu,Dr:()=>MenuItem,kI:()=>Meter,aF:()=>overlays.aF,mD:()=>Navigator,YW:()=>Page,Zk:()=>Panel,YZ:()=>PanelGroup,z2:()=>ProgressBar,a3:()=>ProgressCircle,fI:()=>Row,wn:()=>Section,EA:()=>Animations.EA,oz:()=>Tab,Kp:()=>TabPanel,EY:()=>Text,NP:()=>ThemeProvider,hE:()=>Title.h,WK:()=>ToggleButtonGroup,m_:()=>overlays.m_,Ce:()=>Video,LM:()=>Viewport,br:()=>useNavigator,w2:()=>useNotificationService,J$:()=>useOverlayService});var jsx_runtime=__webpack_require__("./node_modules/react/jsx-runtime.js"),classnames=__webpack_require__("./node_modules/classnames/index.js"),classnames_default=__webpack_require__.n(classnames),react=__webpack_require__("./node_modules/react/index.js"),esm=__webpack_require__("./packages/utilities/dist/esm/index.js"),Button_module=__webpack_require__("./packages/core/src/components/button/Button.module.css");const ButtonGroup=({vertical,className,children,variant,rounded,disabled,fullWidth,color,size,...aria})=>(0,jsx_runtime.jsx)("div",{"data-ref":"buttonGroup",className:classnames_default()(Button_module.A.buttonGroup,className,fullWidth?"flex":"inline-flex","flex-nowrap align-middle rounded",vertical&&Button_module.A.vertical,vertical&&"flex-col items-stretch"),...aria,children:(0,esm.t_)(children,(child=>(0,react.cloneElement)(child,{color,size,variant,disabled,rounded,fullWidth,...child.props})))});try{ButtonGroup.displayName="ButtonGroup",ButtonGroup.__docgenInfo={description:"",displayName:"ButtonGroup",props:{vertical:{defaultValue:null,description:"vertical orientation",name:"vertical",required:!1,type:{name:"boolean"}},variant:{defaultValue:null,description:"button styling",name:"variant",required:!1,type:{name:"enum",value:[{value:'"link"'},{value:'"outline"'},{value:'"solid"'}]}},size:{defaultValue:null,description:"button size",name:"size",required:!1,type:{name:"enum",value:[{value:'"xs"'},{value:'"sm"'},{value:'"md"'},{value:'"lg"'},{value:'"xl"'}]}},color:{defaultValue:null,description:"button color",name:"color",required:!1,type:{name:"enum",value:[{value:'"primary"'},{value:'"accent"'},{value:'"info"'},{value:'"danger"'},{value:'"success"'},{value:'"warning"'}]}},rounded:{defaultValue:null,description:"full rounded edges",name:"rounded",required:!1,type:{name:"boolean"}},disabled:{defaultValue:null,description:"disabled state",name:"disabled",required:!1,type:{name:"boolean"}},fullWidth:{defaultValue:null,description:"stretch to full width",name:"fullWidth",required:!1,type:{name:"boolean"}},className:{defaultValue:null,description:"css classname(s)",name:"className",required:!1,type:{name:"string"}},"data-testid":{defaultValue:null,description:"data attribute for test id",name:"data-testid",required:!1,type:{name:"string"}},"data-test-value":{defaultValue:null,description:"data attribute for test value",name:"data-test-value",required:!1,type:{name:"any"}},ref:{defaultValue:null,description:"",name:"ref",required:!1,type:{name:"Ref"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/components/button/ButtonGroup.tsx#ButtonGroup"]={docgenInfo:ButtonGroup.__docgenInfo,name:"ButtonGroup",path:"packages/core/src/components/button/ButtonGroup.tsx#ButtonGroup"})}catch(__react_docgen_typescript_loader_error){}var injectStylesIntoStyleTag=__webpack_require__("./node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js"),injectStylesIntoStyleTag_default=__webpack_require__.n(injectStylesIntoStyleTag),styleDomAPI=__webpack_require__("./node_modules/style-loader/dist/runtime/styleDomAPI.js"),styleDomAPI_default=__webpack_require__.n(styleDomAPI),insertBySelector=__webpack_require__("./node_modules/style-loader/dist/runtime/insertBySelector.js"),insertBySelector_default=__webpack_require__.n(insertBySelector),setAttributesWithoutAttributes=__webpack_require__("./node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js"),setAttributesWithoutAttributes_default=__webpack_require__.n(setAttributesWithoutAttributes),insertStyleElement=__webpack_require__("./node_modules/style-loader/dist/runtime/insertStyleElement.js"),insertStyleElement_default=__webpack_require__.n(insertStyleElement),styleTagTransform=__webpack_require__("./node_modules/style-loader/dist/runtime/styleTagTransform.js"),styleTagTransform_default=__webpack_require__.n(styleTagTransform),ActionLabel_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/components/actionLabel/ActionLabel.module.css"),options={};options.styleTagTransform=styleTagTransform_default(),options.setAttributes=setAttributesWithoutAttributes_default(),options.insert=insertBySelector_default().bind(null,"head"),options.domAPI=styleDomAPI_default(),options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(ActionLabel_module.A,options);const actionLabel_ActionLabel_module=ActionLabel_module.A&&ActionLabel_module.A.locals?ActionLabel_module.A.locals:void 0,ActionLabel=({children,className,align,actions,disabled,...rest})=>{const calculateBasis=(0,react.useCallback)((el=>{if(el){const clone=el.cloneNode(!0);clone.className="",clone.style.left="-200%",clone.style.overflow="hidden",clone.style.position="absolute",clone.style.whiteSpace="nowrap",document.body.appendChild(clone),el.style.setProperty("--width",`${clone.offsetWidth}px`),clone.remove()}}),[]);return(0,jsx_runtime.jsxs)("div",{className:classnames_default()(className,actionLabel_ActionLabel_module.actionLabel,"flex overflow-hidden gap-1 items-center cursor-default select-none"),"data-disabled":disabled,...rest,children:[(0,jsx_runtime.jsx)(ButtonGroup,{ref:calculateBasis,"data-inner-clickable":!0,className:classnames_default()(actionLabel_ActionLabel_module.actions,"overflow-hidden flex-content","end"===align&&"order-2"),children:actions}),(0,jsx_runtime.jsx)("div",{className:"flex-initial truncate",children})]})};try{ActionLabel.displayName="ActionLabel",ActionLabel.__docgenInfo={description:"A simple label component with additional actions (like a button or icon) that becomes visible only when the user hovers over the label,\nuseful in interfaces where space is limited or where it's important to keep the UI clean and focused",displayName:"ActionLabel",props:{align:{defaultValue:null,description:"action buttons aligment",name:"align",required:!1,type:{name:"enum",value:[{value:'"end"'},{value:'"start"'}]}},disabled:{defaultValue:null,description:"disable actions",name:"disabled",required:!1,type:{name:"boolean"}},actions:{defaultValue:null,description:"buttons",name:"actions",required:!0,type:{name:"ReactElement>[]"}},className:{defaultValue:null,description:"css classname(s)",name:"className",required:!1,type:{name:"string"}},"data-testid":{defaultValue:null,description:"data attribute for test id",name:"data-testid",required:!1,type:{name:"string"}},"data-test-value":{defaultValue:null,description:"data attribute for test value",name:"data-test-value",required:!1,type:{name:"any"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/components/actionLabel/ActionLabel.tsx#ActionLabel"]={docgenInfo:ActionLabel.__docgenInfo,name:"ActionLabel",path:"packages/core/src/components/actionLabel/ActionLabel.tsx#ActionLabel"})}catch(__react_docgen_typescript_loader_error){}var Animations=__webpack_require__("./packages/core/src/components/animations/Animations.tsx"),build=__webpack_require__("./node_modules/boring-avatars/build/index.js"),build_default=__webpack_require__.n(build),utils=__webpack_require__("./packages/core/src/utils/index.ts"),Avatar_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/components/avatar/Avatar.module.css"),Avatar_module_options={};Avatar_module_options.styleTagTransform=styleTagTransform_default(),Avatar_module_options.setAttributes=setAttributesWithoutAttributes_default(),Avatar_module_options.insert=insertBySelector_default().bind(null,"head"),Avatar_module_options.domAPI=styleDomAPI_default(),Avatar_module_options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(Avatar_module.A,Avatar_module_options);const avatar_Avatar_module=Avatar_module.A&&Avatar_module.A.locals?Avatar_module.A.locals:void 0,SizeMap={xs:"0.875rem",sm:"1.125rem",md:"1.5rem",lg:"2rem",xl:"2.5rem"},Avatar=({ref,name,avatar,fallbackIcon,bg,color,size="",rounded,variant="beam",className,viewBox="0 0 24 24",onClick,...aria})=>{const[fallback,setFallback]=(0,react.useState)(!0),styles=(0,react.useMemo)((()=>{const s={};return bg&&(s.backgroundColor=(0,utils.oU)(bg)),color&&(s.color=(0,utils.oU)(color)),size&&!(size in SizeMap)&&(s.fontSize=size),size&&size in SizeMap&&(s.fontSize=SizeMap[size]),s}),[bg,color,size]),avatarImage=(0,react.useMemo)((()=>(setFallback(!avatar),avatar&&(0,jsx_runtime.jsxs)("div",{className:"contents",children:[(0,jsx_runtime.jsx)("div",{className:classnames_default()(avatar_Avatar_module.imgPlaceholder,"absolute inset-0 bg-gray animate-pulse")}),(0,jsx_runtime.jsx)("img",{src:avatar,alt:avatar,className:"align-baseline",onError:()=>setFallback(!0),onLoad:e=>e.currentTarget.previousElementSibling?.remove()})]}))),[avatar]),fallbackAvatar=(0,react.useMemo)((()=>{if(fallbackIcon)return(0,esm.yX)(fallbackIcon)?(0,jsx_runtime.jsx)("svg",{viewBox,children:(0,jsx_runtime.jsx)("path",{fill:"currentColor",d:fallbackIcon.toString()})}):(0,jsx_runtime.jsx)("i",{className:fallbackIcon});if("text"===variant){const[,first,second,group]=name.match(/(?=(\w).* (\w).*)|(?=(\w\w).*)/)??[];return(0,jsx_runtime.jsx)("svg",{role:"img",children:(0,jsx_runtime.jsx)("text",{x:"50%",y:"50%",dy:".1em",dominantBaseline:"middle",textAnchor:"middle",style:{fontSize:".5em",fontWeight:500},children:group??`${first}${second}`})})}return(0,jsx_runtime.jsx)(build_default(),{square:!0,size:64,variant,name})}),[name,variant,fallbackIcon]);return(0,jsx_runtime.jsxs)("dfn",{role:"presentation",className:classnames_default()(avatar_Avatar_module.avatar,className,"select-none relative overflow-hidden inline-block box-content leading-none not-italic text-center",bg&&(0,utils.MN)(bg),color&&(0,utils.Iq)(color),!rounded&&"rounded",rounded&&"rounded-full"),onClick,style:styles,"data-clickable":!!onClick,ref,...aria,children:[!fallback&&avatarImage,fallback&&fallbackAvatar]})};try{Avatar.displayName="Avatar",Avatar.__docgenInfo={description:"An avatar is a graphical representation of a user's identity.",displayName:"Avatar",props:{name:{defaultValue:null,description:"avatar name for generated fallback",name:"name",required:!0,type:{name:"string"}},fallbackIcon:{defaultValue:null,description:"svg path",name:"fallbackIcon",required:!1,type:{name:"string"}},avatar:{defaultValue:null,description:"avatar image url",name:"avatar",required:!1,type:{name:"string"}},variant:{defaultValue:{value:"beam"},description:"avatar variant",name:"variant",required:!1,type:{name:"enum",value:[{value:'"text"'},{value:'"beam"'},{value:'"pixel"'},{value:'"bauhaus"'}]}},bg:{defaultValue:null,description:"background color (CSS color / tailwind color)",name:"bg",required:!1,type:{name:"string"}},color:{defaultValue:null,description:"icon color (CSS color / tailwind color)",name:"color",required:!1,type:{name:"string"}},size:{defaultValue:{value:""},description:"icon size",name:"size",required:!1,type:{name:"string | number"}},viewBox:{defaultValue:{value:"0 0 24 24"},description:"viewbox for svg path (default 24)",name:"viewBox",required:!1,type:{name:"string"}},rounded:{defaultValue:null,description:"rounded icon",name:"rounded",required:!1,type:{name:"boolean"}},onClick:{defaultValue:null,description:"click handler",name:"onClick",required:!1,type:{name:"MouseEventHandler"}},className:{defaultValue:null,description:"css classname(s)",name:"className",required:!1,type:{name:"string"}},"data-testid":{defaultValue:null,description:"data attribute for test id",name:"data-testid",required:!1,type:{name:"string"}},"data-test-value":{defaultValue:null,description:"data attribute for test value",name:"data-test-value",required:!1,type:{name:"any"}},ref:{defaultValue:null,description:"",name:"ref",required:!1,type:{name:"Ref"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/components/avatar/Avatar.tsx#Avatar"]={docgenInfo:Avatar.__docgenInfo,name:"Avatar",path:"packages/core/src/components/avatar/Avatar.tsx#Avatar"})}catch(__react_docgen_typescript_loader_error){}var hooks_useEffectDebugger=__webpack_require__("./packages/core/src/hooks/useEffectDebugger.ts");const AvatarGroup_SizeMap={xs:"0.875rem",sm:"1.125rem",md:"1.5rem",lg:"2rem",xl:"2.5rem"},AvatarGroup=({ref,children,className,totalCount,rounded,size,...aria})=>{const styles=(0,hooks_useEffectDebugger.ZU)((()=>{const s={};return size&&!(size in AvatarGroup_SizeMap)&&(s.fontSize=size),size&&size in AvatarGroup_SizeMap&&(s.fontSize=AvatarGroup_SizeMap[size]),s}),[size],"Icon styles"),avatars=(0,react.useMemo)((()=>react.Children.toArray(children).filter(Boolean)),[children]),diff=(0,react.useMemo)((()=>totalCount&&totalCount>avatars.length&&totalCount-avatars.length),[avatars,totalCount]);return(0,jsx_runtime.jsxs)("div",{...aria,ref,className:classnames_default()(avatar_Avatar_module.avatarGroup,className,"inline-flex flex-nowrap",!rounded&&"rounded",rounded&&"rounded-full"),style:styles,children:[avatars,!!diff&&(0,jsx_runtime.jsx)("dfn",{className:classnames_default()(avatar_Avatar_module.avatar,"select-none relative overflow-hidden inline-block box-content leading-none not-italic text-center",avatar_Avatar_module.extra),children:(0,jsx_runtime.jsx)("svg",{children:(0,jsx_runtime.jsx)("text",{x:"50%",y:"50%",dy:".1em",dominantBaseline:"middle",textAnchor:"middle",style:{fontSize:".375em",fontWeight:500},children:`+${diff}`})})})]})};try{AvatarGroup.displayName="AvatarGroup",AvatarGroup.__docgenInfo={description:"Group multiple avatars together",displayName:"AvatarGroup",props:{rounded:{defaultValue:null,description:"rounded icon",name:"rounded",required:!1,type:{name:"boolean"}},size:{defaultValue:null,description:"icon size",name:"size",required:!1,type:{name:"string | number"}},totalCount:{defaultValue:null,description:"max count",name:"totalCount",required:!1,type:{name:"number"}},className:{defaultValue:null,description:"css classname(s)",name:"className",required:!1,type:{name:"string"}},ref:{defaultValue:null,description:"",name:"ref",required:!1,type:{name:"Ref"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/components/avatar/AvatarGroup.tsx#AvatarGroup"]={docgenInfo:AvatarGroup.__docgenInfo,name:"AvatarGroup",path:"packages/core/src/components/avatar/AvatarGroup.tsx#AvatarGroup"})}catch(__react_docgen_typescript_loader_error){}var Badge=__webpack_require__("./packages/core/src/components/badge/Badge.tsx"),types=__webpack_require__("./packages/core/src/typography/types.ts");const Anchor=({ref,as,children,className,bg,color,family,size,...aria})=>{const styles=(0,hooks_useEffectDebugger.ZU)((()=>{const s={};return bg&&(s.backgroundColor=(0,utils.oU)(bg)),color&&(s.color=(0,utils.oU)(color)),size&&!(size in types.F)&&(s.fontSize=size),size&&size in types.F&&(s.fontSize=types.F[size]),s}),[bg,color,size,family],"Link styles"),E=as??"a";return(0,jsx_runtime.jsx)(E,{className:classnames_default()("link",className,family&&`font-${family}`,bg&&(0,utils.MN)(bg),color&&(0,utils.Iq)(color)),style:styles,ref,...aria,children})};try{Anchor.displayName="Anchor",Anchor.__docgenInfo={description:"Typography link component",displayName:"Anchor",props:{bg:{defaultValue:null,description:"link background (CSS color / tailwind color)",name:"bg",required:!1,type:{name:"string"}},color:{defaultValue:null,description:"link color (CSS color / tailwind color)",name:"color",required:!1,type:{name:"any"}},size:{defaultValue:null,description:"link size",name:"size",required:!1,type:{name:"string | number"}},family:{defaultValue:null,description:"font family",name:"family",required:!1,type:{name:"enum",value:[{value:'"sans"'},{value:'"serif"'},{value:'"mono"'}]}},onClick:{defaultValue:null,description:"",name:"onClick",required:!1,type:{name:"MouseEventHandler"}},className:{defaultValue:null,description:"css classname(s)",name:"className",required:!1,type:{name:"string"}},ref:{defaultValue:null,description:"",name:"ref",required:!1,type:{name:"Ref"}},as:{defaultValue:null,description:"The component used for the root node.\nEither a string to use a HTML element or a component.",name:"as",required:!1,type:{name:"ElementType"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/typography/Anchor.tsx#Anchor"]={docgenInfo:Anchor.__docgenInfo,name:"Anchor",path:"packages/core/src/typography/Anchor.tsx#Anchor"})}catch(__react_docgen_typescript_loader_error){}var floating_ui_react=__webpack_require__("./node_modules/@floating-ui/react/dist/floating-ui.react.mjs"),floating_ui_dom=__webpack_require__("./node_modules/@floating-ui/dom/dist/floating-ui.dom.mjs"),floating_ui_react_dom=__webpack_require__("./node_modules/@floating-ui/react/node_modules/@floating-ui/react-dom/dist/floating-ui.react-dom.mjs"),Dropdown_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/components/dropdown/Dropdown.module.css"),Dropdown_module_options={};Dropdown_module_options.styleTagTransform=styleTagTransform_default(),Dropdown_module_options.setAttributes=setAttributesWithoutAttributes_default(),Dropdown_module_options.insert=insertBySelector_default().bind(null,"head"),Dropdown_module_options.domAPI=styleDomAPI_default(),Dropdown_module_options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(Dropdown_module.A,Dropdown_module_options);const dropdown_Dropdown_module=Dropdown_module.A&&Dropdown_module.A.locals?Dropdown_module.A.locals:void 0,DropdownElement=({ref,children,showArrow,closeOnClick,fitToParent=!0,placement="bottom",onClose,onOpen,disabled,plainDropdown,dropdownEvent,dropdownClassName})=>{const arrowRef=(0,react.useRef)(null),[isOpen,setIsOpen]=(0,react.useState)(!1),tree=(0,floating_ui_react.cq)(),[anchor,panel]=(0,react.useMemo)((()=>react.Children.toArray(children)),[children]),{refs,floatingStyles,context}=(0,floating_ui_react.we)({open:isOpen,onOpenChange:(open,_,reason)=>{"reference-press"!==reason&&(setIsOpen(open),(open?onOpen:onClose)?.())},strategy:"fixed",placement,whileElementsMounted:floating_ui_dom.ll,middleware:[(0,floating_ui_react_dom.BN)({padding:8}),(0,floating_ui_react_dom.UU)(),showArrow&&(0,floating_ui_react_dom.cY)(9),showArrow&&(0,floating_ui_react_dom.UE)({element:arrowRef})]}),click=("hover"===dropdownEvent?floating_ui_react.Mk:floating_ui_react.kp)(context,{enabled:!disabled,handleClose:(0,floating_ui_react.iB)({blockPointerEvents:!0})}),dismiss=(0,floating_ui_react.s9)(context,{referencePress:!0}),{getReferenceProps,getFloatingProps}=(0,floating_ui_react.bv)([dismiss,click]),minWidth=(0,react.useMemo)((()=>{if(fitToParent){const el=refs.reference.current?.closest('[data-ref="buttonGroup"]')??refs.reference.current;return el?.offsetWidth}}),[refs,isOpen,fitToParent]),tryClosing=(0,react.useCallback)((e=>{refs.floating.current?.contains(e.target.closest("[data-dropdown-dismiss='false']"))||!closeOnClick&&!refs.floating.current?.contains(e.target.closest("[data-dropdown-dismiss='true']"))||setTimeout((()=>{setIsOpen(!1),onClose?.()}),100)}),[closeOnClick,onClose]),innerRef=(0,react.useMemo)((()=>(0,esm.Px)(ref,anchor.props.ref,refs.setReference)),[ref,anchor.props.ref,refs.setReference]);if((0,react.useEffect)((()=>{disabled&&setIsOpen(!1)}),[disabled]),(0,react.useEffect)((()=>{if(tree)return tree.events.on("close",handleTreeClick),()=>{tree.events.off("close",handleTreeClick)};function handleTreeClick(){setIsOpen(!1)}}),[tree]),!anchor||!panel)throw Error("Dropdown requires two elements [Anchor, Panel]");return(0,jsx_runtime.jsxs)(react.Fragment,{children:[(0,react.cloneElement)(anchor,{...getReferenceProps({onClick:e=>{anchor.props.onClick?.(e),e.stopPropagation()}}),"data-inner-clickable":"true","data-dropdown-open":!!isOpen||void 0,ref:innerRef}),isOpen&&(0,jsx_runtime.jsxs)(floating_ui_react.XF,{root:refs.domReference.current?.closest(".theme-base")??void 0,children:[(0,jsx_runtime.jsx)(floating_ui_react.zR,{}),(0,jsx_runtime.jsx)(floating_ui_react.s3,{context,modal:!0,children:(0,jsx_runtime.jsxs)("div",{ref:el=>{refs.setFloating(el),el?.querySelector("input,textarea,button")?.focus()},style:{minWidth,zIndex:"var(--z-popover)",...floatingStyles},"data-testid":"dropdown-body",...getFloatingProps({onClick:e=>e.stopPropagation()}),children:[(0,jsx_runtime.jsx)("div",{role:"none",className:classnames_default()(dropdown_Dropdown_module.dropdownBody,dropdownClassName,!plainDropdown&&"shadow-lg bg-base ring-1 ring-tint-100","rounded-capped overflow-auto scroll-thin grid max-h-[70vh]"),onMouseUpCapture:tryClosing,children:panel}),showArrow&&(0,jsx_runtime.jsx)(floating_ui_react.ie,{ref:arrowRef,context,strokeWidth:.5,className:"fill-base stroke-muted"})]})})]})]})},Dropdown=props=>(0,jsx_runtime.jsx)(floating_ui_react.P6,{children:(0,jsx_runtime.jsx)(DropdownElement,{...props})}),DropdownDismiss=({children,dismiss=!0})=>{const tree=(0,floating_ui_react.cq)();return(0,jsx_runtime.jsx)("div",{role:"none",className:"contents","data-dropdown-dismiss":dismiss,onMouseUp:()=>dismiss&&setTimeout((()=>tree?.events.emit("close")),50),children})};try{Dropdown.displayName="Dropdown",Dropdown.__docgenInfo={description:"",displayName:"Dropdown",props:{placement:{defaultValue:{value:"bottom"},description:"dropdown placement",name:"placement",required:!1,type:{name:"enum",value:[{value:'"top-start"'},{value:'"top-end"'},{value:'"bottom-start"'},{value:'"bottom-end"'},{value:'"top"'},{value:'"bottom"'},{value:'"right"'},{value:'"left"'},{value:'"right-end"'},{value:'"right-start"'},{value:'"left-end"'},{value:'"left-start"'}]}},showArrow:{defaultValue:null,description:"show dropdown arrow",name:"showArrow",required:!1,type:{name:"boolean"}},fitToParent:{defaultValue:{value:"true"},description:"fit with to anchor' parent element",name:"fitToParent",required:!1,type:{name:"boolean"}},closeOnClick:{defaultValue:null,description:"close dropdown on click",name:"closeOnClick",required:!1,type:{name:"boolean"}},disabled:{defaultValue:null,description:"disable dropdown",name:"disabled",required:!1,type:{name:"boolean"}},plainDropdown:{defaultValue:null,description:"plain dropdown body",name:"plainDropdown",required:!1,type:{name:"boolean"}},dropdownClassName:{defaultValue:null,description:"dropdown body className",name:"dropdownClassName",required:!1,type:{name:"string"}},dropdownEvent:{defaultValue:null,description:"dropdown event",name:"dropdownEvent",required:!1,type:{name:"enum",value:[{value:'"click"'},{value:'"hover"'}]}},onOpen:{defaultValue:null,description:"open handler",name:"onOpen",required:!1,type:{name:"(() => void)"}},onClose:{defaultValue:null,description:"close handler",name:"onClose",required:!1,type:{name:"(() => void)"}},ref:{defaultValue:null,description:"",name:"ref",required:!1,type:{name:"Ref"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/components/dropdown/Dropdown.tsx#Dropdown"]={docgenInfo:Dropdown.__docgenInfo,name:"Dropdown",path:"packages/core/src/components/dropdown/Dropdown.tsx#Dropdown"})}catch(__react_docgen_typescript_loader_error){}try{DropdownDismiss.displayName="DropdownDismiss",DropdownDismiss.__docgenInfo={description:"",displayName:"DropdownDismiss",props:{dismiss:{defaultValue:{value:"true"},description:"",name:"dismiss",required:!1,type:{name:"boolean"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/components/dropdown/Dropdown.tsx#DropdownDismiss"]={docgenInfo:DropdownDismiss.__docgenInfo,name:"DropdownDismiss",path:"packages/core/src/components/dropdown/Dropdown.tsx#DropdownDismiss"})}catch(__react_docgen_typescript_loader_error){}var Breadcrumbs_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/components/breadcrumbs/Breadcrumbs.module.css"),Breadcrumbs_module_options={};Breadcrumbs_module_options.styleTagTransform=styleTagTransform_default(),Breadcrumbs_module_options.setAttributes=setAttributesWithoutAttributes_default(),Breadcrumbs_module_options.insert=insertBySelector_default().bind(null,"head"),Breadcrumbs_module_options.domAPI=styleDomAPI_default(),Breadcrumbs_module_options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(Breadcrumbs_module.A,Breadcrumbs_module_options);const breadcrumbs_Breadcrumbs_module=Breadcrumbs_module.A&&Breadcrumbs_module.A.locals?Breadcrumbs_module.A.locals:void 0,Breadcrumbs=({variant="classic",className,separator="/",children,color,...aria})=>{const[start,overflow,end]=(0,react.useMemo)((()=>{const nodeList=react.Children.toArray(children);return nodeList.length>7?[nodeList.slice(0,3),nodeList.slice(3,-3),nodeList.slice(-3)]:[nodeList]}),[children]);return(0,jsx_runtime.jsxs)("nav",{"data-color":color,"data-variant":variant,className:classnames_default()(breadcrumbs_Breadcrumbs_module.breadcrumbs,className,"flex flex-nowrap items-center"),...aria,children:[start.map(((link,idx)=>(0,jsx_runtime.jsx)("li",{className:breadcrumbs_Breadcrumbs_module.breadcrumbLink,"data-separator":separator,children:link},idx))),overflow&&(0,jsx_runtime.jsxs)(Dropdown,{closeOnClick:!0,showArrow:!0,children:[(0,jsx_runtime.jsx)("li",{className:breadcrumbs_Breadcrumbs_module.breadcrumbLink,"data-separator":separator,children:(0,jsx_runtime.jsx)(Anchor,{children:"..."})}),(0,jsx_runtime.jsx)("div",{"data-color":color,className:classnames_default()(breadcrumbs_Breadcrumbs_module.breadcrumbOverflow,"flex flex-col"),children:overflow})]}),end?.map(((link,idx)=>(0,jsx_runtime.jsx)("li",{className:breadcrumbs_Breadcrumbs_module.breadcrumbLink,"data-separator":separator,children:link},idx)))]})};try{Breadcrumbs.displayName="Breadcrumbs",Breadcrumbs.__docgenInfo={description:"",displayName:"Breadcrumbs",props:{variant:{defaultValue:{value:"classic"},description:"breadcrumb styling",name:"variant",required:!1,type:{name:"enum",value:[{value:'"classic"'},{value:'"modern"'}]}},separator:{defaultValue:{value:"/"},description:"classic breadcrumb spearator",name:"separator",required:!1,type:{name:"string"}},color:{defaultValue:null,description:"breadcrumb color",name:"color",required:!1,type:{name:"enum",value:[{value:'"primary"'},{value:'"accent"'}]}},className:{defaultValue:null,description:"css classname(s)",name:"className",required:!1,type:{name:"string"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/components/breadcrumbs/Breadcrumbs.tsx#Breadcrumbs"]={docgenInfo:Breadcrumbs.__docgenInfo,name:"Breadcrumbs",path:"packages/core/src/components/breadcrumbs/Breadcrumbs.tsx#Breadcrumbs"})}catch(__react_docgen_typescript_loader_error){}var Button=__webpack_require__("./packages/core/src/components/button/Button.tsx"),es=__webpack_require__("./node_modules/react-i18next/dist/es/index.js");const ConfirmButton=({ref,message,color,okLabel,cancelLabel,onClick,loading,placement="bottom",actionMessage,showActionDone,showActionDoneEvent="click",...props})=>{const{t}=(0,es.Bd)("core"),arrowRef=(0,react.useRef)(null),[isOpen,setIsOpen]=(0,react.useState)(!1),[busy,setBusy]=(0,react.useState)(!1),[actionDone,setActionDone]=(0,react.useState)(!1),clickHandler=(0,react.useCallback)((e=>{setBusy(e);const ret=onClick?.(e);e&&Promise.resolve(ret).then((b=>{setBusy(!1),!1!==b&&actionMessage&&"click"===showActionDoneEvent&&setActionDone(!0)}))}),[onClick,actionMessage,showActionDoneEvent]);(0,react.useEffect)((()=>{if(actionDone){const timer=setTimeout((()=>setActionDone(!1)),2e3);return()=>clearTimeout(timer)}}),[actionDone]);const{refs,floatingStyles,context}=(0,floating_ui_react.we)({open:isOpen,onOpenChange(nextOpen,_,reason){setIsOpen(nextOpen),"escape-key"===reason&&clickHandler(!1)},strategy:"fixed",placement,whileElementsMounted:floating_ui_dom.ll,middleware:[(0,floating_ui_react_dom.BN)({padding:8}),(0,floating_ui_react_dom.UU)(),(0,floating_ui_react_dom.cY)(9),(0,floating_ui_react_dom.UE)({element:arrowRef})]}),click=(0,floating_ui_react.kp)(context,{enabled:!props.disabled}),dismiss=(0,floating_ui_react.s9)(context),{getReferenceProps,getFloatingProps}=(0,floating_ui_react.bv)([dismiss,click]),ButtonWrapper=(0,react.useCallback)((({ref,...props})=>(0,jsx_runtime.jsx)(Button.$,{ref,...props})),[]),innerRef=(0,react.useMemo)((()=>(0,esm.Px)(ref,refs.setReference)),[ref,refs.setReference]);return(0,jsx_runtime.jsxs)(react.Fragment,{children:[(0,jsx_runtime.jsx)(ButtonWrapper,{...props,color,loading:busy||loading,showActionDone:actionDone||showActionDone,showActionDoneEvent:"manual",actionMessage,ref:innerRef,...getReferenceProps(),"data-dropdown-open":isOpen}),isOpen&&(0,jsx_runtime.jsx)(floating_ui_react.XF,{children:(0,jsx_runtime.jsx)(floating_ui_react.s3,{modal:!0,context,children:(0,jsx_runtime.jsxs)("div",{"data-color":color,className:classnames_default()("select-none not-italic rounded-capped shadow-lg outline outline-muted bg-base"),ref:refs.setFloating,style:floatingStyles,...getFloatingProps(),children:[(0,jsx_runtime.jsxs)("div",{className:"font-medium ",children:[(0,jsx_runtime.jsx)("p",{className:"py-2 px-4",children:message}),(0,jsx_runtime.jsxs)("div",{className:"flex justify-end py-2 px-4 gap-2",children:[(0,jsx_runtime.jsx)(Button.$,{size:"sm",variant:"link",color,onClick:()=>[clickHandler(!1),setIsOpen(!1)],children:cancelLabel??t("action.cancel")}),(0,jsx_runtime.jsx)(Button.$,{size:"sm",variant:"solid",color,autoFocus:!0,onClick:()=>[clickHandler(!0),setIsOpen(!1)],children:okLabel??t("action.ok")})]})]}),(0,jsx_runtime.jsx)(floating_ui_react.ie,{ref:arrowRef,context,strokeWidth:.5,className:"fill-base stroke-muted"})]})})})]})};try{ConfirmButton.displayName="ConfirmButton",ConfirmButton.__docgenInfo={description:"Button with confirmation dropdown",displayName:"ConfirmButton",props:{message:{defaultValue:null,description:"confirm message",name:"message",required:!0,type:{name:"string"}},okLabel:{defaultValue:null,description:"ok label",name:"okLabel",required:!1,type:{name:"string"}},cancelLabel:{defaultValue:null,description:"ok label",name:"cancelLabel",required:!1,type:{name:"string"}},placement:{defaultValue:{value:"bottom"},description:"dropdown placement",name:"placement",required:!1,type:{name:"enum",value:[{value:'"top-start"'},{value:'"top-end"'},{value:'"bottom-start"'},{value:'"bottom-end"'},{value:'"top"'},{value:'"bottom"'},{value:'"right"'},{value:'"left"'},{value:'"right-end"'},{value:'"right-start"'},{value:'"left-end"'},{value:'"left-start"'}]}},onClick:{defaultValue:null,description:"click handler, return Promise to autoset loading state",name:"onClick",required:!1,type:{name:"(((e: boolean) => unknown) & ((e?: MouseEvent) => unknown))"}},className:{defaultValue:null,description:"css classname(s)",name:"className",required:!1,type:{name:"string"}},ref:{defaultValue:null,description:"",name:"ref",required:!1,type:{name:"Ref"}},color:{defaultValue:null,description:"button color",name:"color",required:!1,type:{name:"any"}},type:{defaultValue:null,description:"button type",name:"type",required:!1,type:{name:"enum",value:[{value:'"button"'},{value:'"reset"'},{value:'"submit"'}]}},onMouseEnter:{defaultValue:null,description:"",name:"onMouseEnter",required:!1,type:{name:"any"}},onMouseLeave:{defaultValue:null,description:"",name:"onMouseLeave",required:!1,type:{name:"any"}},onMouseMove:{defaultValue:null,description:"",name:"onMouseMove",required:!1,type:{name:"any"}},onMouseOut:{defaultValue:null,description:"",name:"onMouseOut",required:!1,type:{name:"any"}},onMouseOver:{defaultValue:null,description:"",name:"onMouseOver",required:!1,type:{name:"any"}},onWheel:{defaultValue:null,description:"",name:"onWheel",required:!1,type:{name:"any"}},disabled:{defaultValue:null,description:"disabled state",name:"disabled",required:!1,type:{name:"boolean"}},loading:{defaultValue:null,description:"loading state with animation and click disabled",name:"loading",required:!1,type:{name:"boolean"}},size:{defaultValue:null,description:"button size",name:"size",required:!1,type:{name:"enum",value:[{value:'"xs"'},{value:'"sm"'},{value:'"md"'},{value:'"lg"'},{value:'"xl"'}]}},"data-testid":{defaultValue:null,description:"data attribute for test id",name:"data-testid",required:!1,type:{name:"string"}},"data-test-value":{defaultValue:null,description:"data attribute for test value",name:"data-test-value",required:!1,type:{name:"any"}},icon:{defaultValue:null,description:"svg path / image url",name:"icon",required:!1,type:{name:"string"}},iconBg:{defaultValue:null,description:"icon background color",name:"iconBg",required:!1,type:{name:"string"}},iconColor:{defaultValue:null,description:"icon color",name:"iconColor",required:!1,type:{name:"string"}},rtlFlip:{defaultValue:null,description:"flip icon in rtl",name:"rtlFlip",required:!1,type:{name:"boolean"}},fullWidth:{defaultValue:null,description:"stretch to full width",name:"fullWidth",required:!1,type:{name:"boolean"}},rounded:{defaultValue:null,description:"full rounded edges",name:"rounded",required:!1,type:{name:"boolean"}},variant:{defaultValue:null,description:"button styling",name:"variant",required:!1,type:{name:"enum",value:[{value:'"link"'},{value:'"outline"'},{value:'"solid"'}]}},active:{defaultValue:null,description:"active state with click disabled",name:"active",required:!1,type:{name:"boolean"}},iconAlign:{defaultValue:null,description:"primary icon alignment",name:"iconAlign",required:!1,type:{name:"enum",value:[{value:'"end"'},{value:'"start"'}]}},altIcon:{defaultValue:null,description:"alternate icon align end (caret, arrow)",name:"altIcon",required:!1,type:{name:"string"}},badge:{defaultValue:null,description:"badges",name:"badge",required:!1,type:{name:"string | number | BadgeType"}},spinOnHover:{defaultValue:null,description:"spin icon on hover",name:"spinOnHover",required:!1,type:{name:"boolean"}},actionMessage:{defaultValue:null,description:"action completed message works best with `onClick` Promise return.\nTo hide completed message onClick/Promise return should be false",name:"actionMessage",required:!1,type:{name:"string"}},stopPropagation:{defaultValue:null,description:"",name:"stopPropagation",required:!1,type:{name:"boolean"}},hotKey:{defaultValue:null,description:"keyboard shortcut",name:"hotKey",required:!1,type:{name:"string"}},showActionDone:{defaultValue:null,description:"manually force show action message",name:"showActionDone",required:!1,type:{name:"boolean"}},showActionDoneEvent:{defaultValue:{value:"click"},description:"show action message `onClick` or manually by setting `showActionDone` true",name:"showActionDoneEvent",required:!1,type:{name:"enum",value:[{value:'"click"'},{value:'"manual"'}]}},as:{defaultValue:null,description:"The component used for the root node.\nEither a string to use a HTML element or a component.",name:"as",required:!1,type:{name:'("button" & ElementType)'}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/components/button/ConfirmButton.tsx#ConfirmButton"]={docgenInfo:ConfirmButton.__docgenInfo,name:"ConfirmButton",path:"packages/core/src/components/button/ConfirmButton.tsx#ConfirmButton"})}catch(__react_docgen_typescript_loader_error){}const ToggleButtonGroup=({vertical,className,children,variant,rounded,disabled,fullWidth,color,size,value,onChange,...aria})=>{const isMultiple=(0,react.useMemo)((()=>(0,esm.cy)(value)),[value]),{currentValue,updateValue}=((value,defaultValue)=>{const[currentValue,updateValue]=(0,react.useState)(defaultValue),deferred=(0,react.useDeferredValue)(value);return(0,hooks_useEffectDebugger.al)((()=>{updateValue(deferred??defaultValue)}),[deferred],"useControlledValue change"),{currentValue,updateValue}})(value,(0,esm.cy)(value)?esm.Ml:""),clickHandler=(0,react.useCallback)((cb=>e=>{let newValue=`${e.currentTarget.dataset.value}`;(0,esm.cy)(currentValue)&&(newValue=currentValue.includes(newValue)?currentValue.filter((v=>v!==newValue)):[...currentValue,newValue]),updateValue(newValue),onChange?.(newValue),cb?.(e)}),[currentValue,onChange]);return(0,jsx_runtime.jsx)("div",{className:classnames_default()(Button_module.A.buttonGroup,className,fullWidth?"flex":"inline-flex","flex-nowrap align-middle",vertical&&Button_module.A.vertical,vertical&&"flex-col"),...aria,children:(0,esm.t_)(children,(child=>(0,react.cloneElement)(child,{color,size,variant,disabled,rounded,fullWidth,...child.props,onClick:clickHandler(child.props.onClick),"data-value":child.props.value,"data-checked":isMultiple?currentValue.includes(child.props.value):currentValue===child.props.value})))})};try{ToggleButtonGroup.displayName="ToggleButtonGroup",ToggleButtonGroup.__docgenInfo={description:"",displayName:"ToggleButtonGroup",props:{vertical:{defaultValue:null,description:"vertical orientation",name:"vertical",required:!1,type:{name:"boolean"}},variant:{defaultValue:null,description:"button styling",name:"variant",required:!1,type:{name:"enum",value:[{value:'"link"'},{value:'"outline"'},{value:'"solid"'}]}},size:{defaultValue:null,description:"button size",name:"size",required:!1,type:{name:"enum",value:[{value:'"xs"'},{value:'"sm"'},{value:'"md"'},{value:'"lg"'},{value:'"xl"'}]}},color:{defaultValue:null,description:"button color",name:"color",required:!1,type:{name:"enum",value:[{value:'"primary"'},{value:'"accent"'},{value:'"info"'},{value:'"danger"'},{value:'"success"'},{value:'"warning"'}]}},rounded:{defaultValue:null,description:"full rounded edges",name:"rounded",required:!1,type:{name:"boolean"}},disabled:{defaultValue:null,description:"disabled state",name:"disabled",required:!1,type:{name:"boolean"}},fullWidth:{defaultValue:null,description:"stretch to full width",name:"fullWidth",required:!1,type:{name:"boolean"}},className:{defaultValue:null,description:"css classname(s)",name:"className",required:!1,type:{name:"string"}},value:{defaultValue:null,description:"",name:"value",required:!0,type:{name:"string | string[]"}},onChange:{defaultValue:null,description:"change handler",name:"onChange",required:!1,type:{name:"((value: string) => void) | ((value: string[]) => void)"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/components/button/ToggleButtonGroup.tsx#ToggleButtonGroup"]={docgenInfo:ToggleButtonGroup.__docgenInfo,name:"ToggleButtonGroup",path:"packages/core/src/components/button/ToggleButtonGroup.tsx#ToggleButtonGroup"})}catch(__react_docgen_typescript_loader_error){}var icons=__webpack_require__("./packages/core/src/types/icons.ts"),Icon=__webpack_require__("./packages/core/src/components/icon/Icon.tsx");const Callout=({children,color="tint",legend,title,icon,border,onClose,className,...aria})=>(0,jsx_runtime.jsxs)("fieldset",{className:classnames_default()(className,"block rounded-capped border max-w-full relative overflow-hidden mb-4",(0,utils.MN)(color+"-50"),(0,utils.Iq)(color+"-700"),(0,utils.Z1)(color+"-300"),"dashed"===border&&"border-dashed","dotted"===border&&"border-dotted"),...aria,children:[legend&&(0,jsx_runtime.jsx)("legend",{className:"px-2 mx-4 font-medium",children:legend}),(0,jsx_runtime.jsxs)("div",{className:classnames_default()("break-words whitespace-break-spaces p-2"),children:[(0,jsx_runtime.jsxs)("div",{className:"flex flex-nowrap items-center text-xl pe-4 gap-2 mb-4 empty:mb-0",children:[icon&&(0,jsx_runtime.jsx)(Icon.I,{icon}),title&&(0,jsx_runtime.jsx)("p",{className:"flex-1",children:title})]}),(0,jsx_runtime.jsx)("div",{className:"pe-4",children})]}),onClose&&(0,jsx_runtime.jsx)(Icon.I,{size:"md",className:classnames_default()("absolute end-2",legend?"top-0":"top-2"),icon:icons.O.close,onClick:onClose})]});try{Callout.displayName="Callout",Callout.__docgenInfo={description:"",displayName:"Callout",props:{color:{defaultValue:{value:"tint"},description:"callout color",name:"color",required:!1,type:{name:"enum",value:[{value:'"primary"'},{value:'"accent"'},{value:'"info"'},{value:'"danger"'},{value:'"success"'},{value:'"warning"'},{value:'"scarlet"'},{value:'"pumpkin"'},{value:'"marigold"'},{value:'"avacado"'},{value:'"jade"'},{value:'"denim"'},{value:'"iris"'},{value:'"lilac"'},{value:'"coral"'},{value:'"wood"'},{value:'"silver"'},{value:'"steel"'},{value:'"olive"'},{value:'"sand"'}]}},legend:{defaultValue:null,description:"legend title",name:"legend",required:!1,type:{name:"string"}},icon:{defaultValue:null,description:"callout icon",name:"icon",required:!1,type:{name:"string"}},title:{defaultValue:null,description:"callout title",name:"title",required:!1,type:{name:"string"}},border:{defaultValue:null,description:"callout border style",name:"border",required:!1,type:{name:"enum",value:[{value:'"solid"'},{value:'"dotted"'},{value:'"dashed"'}]}},onClose:{defaultValue:null,description:"close action handler",name:"onClose",required:!1,type:{name:"(() => void)"}},className:{defaultValue:null,description:"css classname(s)",name:"className",required:!1,type:{name:"string"}},"data-testid":{defaultValue:null,description:"data attribute for test id",name:"data-testid",required:!1,type:{name:"string"}},"data-test-value":{defaultValue:null,description:"data attribute for test value",name:"data-test-value",required:!1,type:{name:"any"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/components/callout/Callout.tsx#Callout"]={docgenInfo:Callout.__docgenInfo,name:"Callout",path:"packages/core/src/components/callout/Callout.tsx#Callout"})}catch(__react_docgen_typescript_loader_error){}const usePropToggle=(isOn=!1,onToggle,key)=>{const toggleRef=(0,react.useRef)(isOn),[toggleOn,setToggleOn]=(0,react.useState)(isOn);(0,hooks_useEffectDebugger.KI)((()=>{toggleRef.current=isOn,setToggleOn(isOn)}),[isOn],"usePropToggle");const doToggle=(0,react.useCallback)((()=>{!1!==onToggle?.(!toggleOn,key)&&(toggleRef.current=!toggleOn,setToggleOn(!toggleOn))}),[toggleOn,onToggle,key]);return[toggleOn,doToggle,toggleRef]};var ErrorBoundary_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/core/boundary/ErrorBoundary.module.css"),ErrorBoundary_module_options={};ErrorBoundary_module_options.styleTagTransform=styleTagTransform_default(),ErrorBoundary_module_options.setAttributes=setAttributesWithoutAttributes_default(),ErrorBoundary_module_options.insert=insertBySelector_default().bind(null,"head"),ErrorBoundary_module_options.domAPI=styleDomAPI_default(),ErrorBoundary_module_options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(ErrorBoundary_module.A,ErrorBoundary_module_options);const boundary_ErrorBoundary_module=ErrorBoundary_module.A&&ErrorBoundary_module.A.locals?ErrorBoundary_module.A.locals:void 0,ErrorIcon=()=>(0,jsx_runtime.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 64 64",className:classnames_default()(boundary_ErrorBoundary_module.boundaryIcon,"size-6 m-2"),children:[(0,jsx_runtime.jsx)("path",{fill:"#808080",d:"M64 32c0 17.673-14.327 32-32 32s-32-14.327-32-32 14.327-32 32-32 32 14.327 32 32z"}),(0,jsx_runtime.jsx)("path",{fill:"#fff",d:"M63.5 32c0 17.397-14.103 31.5-31.5 31.5s-31.5-14.103-31.5-31.5 14.103-31.5 31.5-31.5 31.5 14.103 31.5 31.5z"}),(0,jsx_runtime.jsx)("path",{fill:"#f44336",d:"M60 32c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-15.464 12.536-28 28-28s28 12.536 28 28z"}),(0,jsx_runtime.jsx)("path",{fill:"#fff",d:"M50.667 35.733h-37.333c-1.031 0-1.867-0.835-1.867-1.867v-3.733c0-1.031 0.835-1.867 1.867-1.867h37.333c1.031 0 1.867 0.835 1.867 1.867v3.733c0 1.031-0.835 1.867-1.867 1.867z"})]});var esm_i18next=__webpack_require__("./node_modules/i18next/dist/esm/i18next.js");__webpack_require__("./packages/core/src/hotkeys/HotKeyWrapper.tsx"),__webpack_require__("./node_modules/react-dom/index.js"),__webpack_require__("./packages/core/src/overlays/alert/Alert.tsx"),__webpack_require__("./packages/core/src/overlays/message/Message.tsx"),__webpack_require__("./packages/core/src/overlays/toast/Toast.tsx");const makeProps=obj=>isString(obj)?{message:obj}:isObject(obj)?{...obj}:{message:""},NotificationCenter_NotificationManager=({onLoad})=>{const refItems=useRef({toasts:{},messages:{},alerts:{}}),[messages,setMessages]=useState({}),[toasts,setToasts]=useState({}),[alerts,setAlerts]=useState({}),updateMessages=useRef((()=>{setMessages({...refItems.current.messages})})),updateToasts=useRef((()=>{setToasts({...refItems.current.toasts})})),updateAlerts=useRef((()=>{setAlerts({...refItems.current.alerts})})),handleCloseAll=useRef((()=>{Object.values(refItems.current.messages).forEach((msg=>msg[1]?.(!1))),Object.values(refItems.current.toasts).forEach((msg=>msg[1]?.(!1))),Object.values(refItems.current.alerts).forEach((msg=>msg[1]?.(!1))),refItems.current.messages={},refItems.current.toasts={},refItems.current.alerts={},updateMessages.current(),updateToasts.current(),updateAlerts.current()})),openNotification=useRef((async(map,update,Notif,props,timeout=5e3)=>{let timerRef=null;const obj=makeProps(props);return await new Promise((resolve=>{const key=uuid(),handleClose=(b=!1)=>{clearTimeout(timerRef),setTimeout((()=>{delete map[key],update(),resolve(b)}),250)};map[key]=[_jsx("div",{children:_jsx(Notif,{...obj,onClose:handleClose,onCloseAll:handleCloseAll.current})},key),handleClose],update(),"confirm"!==obj.type&&timeout>0&&(timerRef=setTimeout(handleClose,timeout))}))})),showMessage=useRef((async(props,timeout=5e3)=>await openNotification.current(refItems.current.messages,updateMessages.current,Message,props,timeout))),showToast=useRef((async(props,timeout=5e3)=>await openNotification.current(refItems.current.toasts,updateToasts.current,Toast,props,timeout))),showAlert=useRef((async props=>await openNotification.current(refItems.current.alerts,updateAlerts.current,Alert,props,0))),showError=useRef((async(props,timeout=5e3)=>await openNotification.current(refItems.current.toasts,Toast,{...makeProps(props),color:"danger"},0)));return useEffect((()=>{onLoad({showMessage:showMessage.current,showToast:showToast.current,showAlert:showAlert.current,showError:showError.current,closeAll:handleCloseAll.current})}),[]),_jsxs(Fragment,{children:[createPortal(_jsx("div",{style:{zIndex:"var(--z-overlay)"},className:"ruf-container__overlays pointer-events-none fixed inset-0 p-4 bg-transparent",children:Object.values(alerts).map((([el])=>el))}),document.body),createPortal(_jsx("div",{style:{zIndex:"var(--z-notifications)"},className:"ruf-container__notifs flex flex-nowrap pointer-events-none fixed inset-0 p-2 bg-transparent flex-col-reverse items-center justify-end",children:Object.values(messages).map((([el])=>el))}),document.body),createPortal(_jsx("div",{style:{zIndex:"var(--z-notifications)"},className:"ruf-container__toasts flex flex-nowrap pointer-events-none fixed inset-0 p-4 bg-transparent flex-col items-end justify-end overflow-auto scroll-hide",children:Object.values(toasts).map((([el])=>el))}),document.body)]})};try{NotificationCenter_NotificationManager.displayName="NotificationManager",NotificationCenter_NotificationManager.__docgenInfo={description:"",displayName:"NotificationManager",props:{}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/context/NotificationCenter.tsx#NotificationManager"]={docgenInfo:NotificationCenter_NotificationManager.__docgenInfo,name:"NotificationManager",path:"packages/core/src/context/NotificationCenter.tsx#NotificationManager"})}catch(__react_docgen_typescript_loader_error){}const GlobalContext=(0,react.createContext)({}),ApplicationProvider=({children,errorElement,defaultLocale,defaultCalendar,defaultColorScheme})=>{const[refNotifications,setNotificationRef]=useState({closeAll:()=>{},showAlert:()=>{},showError:()=>{},showMessage:()=>{},showToast:()=>{}}),[colorScheme,setColorScheme]=useState(defaultColorScheme??("undefined"!=typeof window?localStorage.getItem("ruf:colorScheme")??(window.matchMedia("(prefers-color-scheme: dark)").matches?"dark":"light"):"light")),[calendar,setCalendar]=useState(defaultCalendar??("undefined"!=typeof window?localStorage.getItem("ruf:calendar"):void 0)??"gregorian"),[locale,setLocale]=useState(defaultLocale??("undefined"!=typeof window?localStorage.getItem("ruf:locale"):void 0)??"en");useEffect((()=>{if(document.documentElement.lang=locale,document.documentElement.dataset.colorScheme?setColorScheme(document.documentElement.dataset.colorScheme):document.documentElement.dataset.colorScheme=colorScheme,"undefined"!=typeof window)try{i18next.changeLanguage(locale).then((()=>{document.documentElement.dir=i18next.dir()}))}catch{}}),[]);const toggleColorScheme=useCallback((forceTheme=>{const newTheme=forceTheme??("dark"===colorScheme?"light":"dark");return setColorScheme(newTheme),localStorage.setItem("ruf:colorScheme",newTheme),document.documentElement.dataset.colorScheme=newTheme,newTheme}),[colorScheme]),changeLocale=useCallback((locale=>{try{i18next.changeLanguage(locale).then((()=>{localStorage.setItem("ruf:locale",locale),document.documentElement.lang=locale,document.documentElement.dir=i18next.dir()}))}catch{}return setLocale(locale),locale}),[]),changeCalendar=useCallback((calendar=>(setCalendar(calendar),localStorage.setItem("ruf:calendar",calendar),calendar)),[]);return _jsxs(GlobalContext.Provider,{value:{errorElement,changeLocale,changeCalendar,toggleColorScheme,currentLocale:locale,currentCalendar:calendar,currentColorScheme:colorScheme,notificationManager:refNotifications},children:[_jsx(HotKeyWrapper,{children}),_jsx(NotificationManager,{onLoad:setNotificationRef})]})},useGlobals=()=>(0,react.useContext)(GlobalContext),useApplicationContext=()=>{const{errorElement,...rest}=useContext(GlobalContext);return rest},useNotificationService=()=>{const{notificationManager}=(0,react.useContext)(GlobalContext);return notificationManager??{}};try{ApplicationProvider.displayName="ApplicationProvider",ApplicationProvider.__docgenInfo={description:"global context provider",displayName:"ApplicationProvider",props:{errorElement:{defaultValue:null,description:"application default error display",name:"errorElement",required:!1,type:{name:"ComponentType<{ error?: string; }>"}},defaultLocale:{defaultValue:null,description:"",name:"defaultLocale",required:!1,type:{name:"string"}},defaultCalendar:{defaultValue:null,description:"",name:"defaultCalendar",required:!1,type:{name:"enum",value:[{value:'"gregorian"'},{value:'"hijri"'}]}},defaultColorScheme:{defaultValue:null,description:"",name:"defaultColorScheme",required:!1,type:{name:"enum",value:[{value:'"light"'},{value:'"dark"'}]}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/context/Global.tsx#ApplicationProvider"]={docgenInfo:ApplicationProvider.__docgenInfo,name:"ApplicationProvider",path:"packages/core/src/context/Global.tsx#ApplicationProvider"})}catch(__react_docgen_typescript_loader_error){}try{useGlobals.displayName="useGlobals",useGlobals.__docgenInfo={description:"internal usage only",displayName:"useGlobals",props:{}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/context/Global.tsx#useGlobals"]={docgenInfo:useGlobals.__docgenInfo,name:"useGlobals",path:"packages/core/src/context/Global.tsx#useGlobals"})}catch(__react_docgen_typescript_loader_error){}try{useApplicationContext.displayName="useApplicationContext",useApplicationContext.__docgenInfo={description:"global application context",displayName:"useApplicationContext",props:{}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/context/Global.tsx#useApplicationContext"]={docgenInfo:useApplicationContext.__docgenInfo,name:"useApplicationContext",path:"packages/core/src/context/Global.tsx#useApplicationContext"})}catch(__react_docgen_typescript_loader_error){}const DefaultError=({error})=>{const{t}=(0,es.Bd)("core");return(0,jsx_runtime.jsxs)(jsx_runtime.Fragment,{children:[(0,jsx_runtime.jsx)("h6",{children:t("error.title")}),(0,jsx_runtime.jsx)("p",{className:"line-clamp-4",children:error})]})},ErrorMessage=({error,errorElement})=>{const{errorElement:globalError}=useGlobals(),EE=(0,hooks_useEffectDebugger.ZU)((()=>errorElement??globalError??DefaultError),[],"ErrorBoundary element");return(0,jsx_runtime.jsxs)(jsx_runtime.Fragment,{children:[(0,jsx_runtime.jsx)(ErrorIcon,{}),(0,jsx_runtime.jsx)("div",{className:classnames_default()(boundary_ErrorBoundary_module.boundaryMessage,"p-2"),children:(0,jsx_runtime.jsx)(EE,{error})})]})};class ErrorBoundary extends react.Component{static getDerivedStateFromError(error){return{hasError:!0,error:error.message,stack:error.stack}}constructor(props){super(props),this.state={hasError:!1}}componentDidCatch(error){this.setState({hasError:!0,error:error.message,stack:error.stack})}render(){if(this.state.hasError){const{errorElement:E}=this.props;return(0,jsx_runtime.jsx)("div",{className:classnames_default()(boundary_ErrorBoundary_module.errorBoundary,"grid grid-rows-1 overflow-hidden p-0.5 rounded-capped"),children:(0,jsx_runtime.jsxs)("div",{className:classnames_default()(boundary_ErrorBoundary_module.boundaryContent,"overflow-hidden grid rounded-capped"),children:[(0,jsx_runtime.jsx)(ErrorMessage,{error:this.state.error,errorElement:E}),!1]})})}return this.props.children}}try{ErrorBoundary.displayName="ErrorBoundary",ErrorBoundary.__docgenInfo={description:"An error boundary wrapper higher-order component designed to provide consistent error display across the application will trap runtime errors",displayName:"ErrorBoundary",props:{errorElement:{defaultValue:null,description:"custom error display",name:"errorElement",required:!1,type:{name:"ComponentType<{ error?: string; }>"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/core/boundary/ErrorBoundary.tsx#ErrorBoundary"]={docgenInfo:ErrorBoundary.__docgenInfo,name:"ErrorBoundary",path:"packages/core/src/core/boundary/ErrorBoundary.tsx#ErrorBoundary"})}catch(__react_docgen_typescript_loader_error){}var HeadFoot=__webpack_require__("./packages/core/src/core/headfoot/HeadFoot.tsx"),Card_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/components/card/Card.module.css"),Card_module_options={};Card_module_options.styleTagTransform=styleTagTransform_default(),Card_module_options.setAttributes=setAttributesWithoutAttributes_default(),Card_module_options.insert=insertBySelector_default().bind(null,"head"),Card_module_options.domAPI=styleDomAPI_default(),Card_module_options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(Card_module.A,Card_module_options);const card_Card_module=Card_module.A&&Card_module.A.locals?Card_module.A.locals:void 0,Card=({children,className,bodyClassName,selected,selectedRibbon,onClick,flex,draggable,dragKey,dragData,ref,...aria})=>{const[header,body,footer]=(0,react.useMemo)((()=>react.Children.toArray(children).reduce(((ret,node)=>((0,utils.hr)(node,HeadFoot.Y)?ret[0].push(node):(0,utils.hr)(node,HeadFoot.w)?ret[2].push(node):ret[1].push(node),ret)),[[],[],[]])),[children]);return(0,jsx_runtime.jsx)("div",{className:classnames_default()(card_Card_module.cardWrapper,"rounded-capped relative grid",flex&&"flex-1",selected&&selectedRibbon&&card_Card_module.selected,selected&&"outline outline-2 outline-accent-500 outline-offset-2"),children:(0,jsx_runtime.jsx)(ErrorBoundary,{children:(0,jsx_runtime.jsxs)("div",{className:classnames_default()(card_Card_module.card,className,"rounded-capped flex flex-col flex-nowrap overflow-hidden",onClick&&card_Card_module.clickable),draggable,onDragStart:draggable?e=>dragKey&&e.dataTransfer?.setData(dragKey,JSON.stringify(dragData)):void 0,ref,...aria,children:[header,(0,jsx_runtime.jsx)("div",{role:"none",className:classnames_default()(card_Card_module.cardBody,bodyClassName,"flex-1"),onClick,children:body}),footer]})})})};try{Card.displayName="Card",Card.__docgenInfo={description:"",displayName:"Card",props:{flex:{defaultValue:null,description:"apply flex fill styling",name:"flex",required:!1,type:{name:"boolean"}},onClick:{defaultValue:null,description:"click handler",name:"onClick",required:!1,type:{name:"MouseEventHandler"}},bodyClassName:{defaultValue:null,description:"body css classname(s)",name:"bodyClassName",required:!1,type:{name:"string"}},selected:{defaultValue:null,description:"show selected ring",name:"selected",required:!1,type:{name:"boolean"}},selectedRibbon:{defaultValue:null,description:"show tick mark ribbon",name:"selectedRibbon",required:!1,type:{name:"boolean"}},draggable:{defaultValue:null,description:"make card draggable",name:"draggable",required:!1,type:{name:"boolean"}},dragKey:{defaultValue:null,description:"drag event data key",name:"dragKey",required:!1,type:{name:"string"}},dragData:{defaultValue:null,description:"drag event data",name:"dragData",required:!1,type:{name:"any"}},className:{defaultValue:null,description:"css classname(s)",name:"className",required:!1,type:{name:"string"}},"data-testid":{defaultValue:null,description:"data attribute for test id",name:"data-testid",required:!1,type:{name:"string"}},"data-test-value":{defaultValue:null,description:"data attribute for test value",name:"data-test-value",required:!1,type:{name:"any"}},ref:{defaultValue:null,description:"",name:"ref",required:!1,type:{name:"Ref"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/components/card/Card.tsx#Card"]={docgenInfo:Card.__docgenInfo,name:"Card",path:"packages/core/src/components/card/Card.tsx#Card"})}catch(__react_docgen_typescript_loader_error){}var Media_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/components/media/Media.module.css"),Media_module_options={};Media_module_options.styleTagTransform=styleTagTransform_default(),Media_module_options.setAttributes=setAttributesWithoutAttributes_default(),Media_module_options.insert=insertBySelector_default().bind(null,"head"),Media_module_options.domAPI=styleDomAPI_default(),Media_module_options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(Media_module.A,Media_module_options);const media_Media_module=Media_module.A&&Media_module.A.locals?Media_module.A.locals:void 0,Image=({src,alt,reel,fit="cover",className,...aria})=>{const[colorSet,setColorSet]=(0,react.useState)("light"),loadIndicator=(0,react.useMemo)((()=>(0,jsx_runtime.jsx)("div",{className:classnames_default()(media_Media_module.mediaPlaceholder,"absolute z-1 top-1/2 left-1/2 -translate-x-1/2 -translate-y-1/2 text-4xl text-gray animate-pulse"),children:"●●●"})),[src]);return(0,jsx_runtime.jsxs)("div",{"data-ref":"image",className:classnames_default()(media_Media_module.mediaContainer,"relative overflow-hidden bg-gray inline-block",reel&&media_Media_module.mediaReel,className),"data-colorset":colorSet,...aria,children:[loadIndicator,(0,jsx_runtime.jsx)("img",{alt:alt??src,src,loading:"lazy",crossOrigin:"anonymous",className:classnames_default()(media_Media_module.media,"pointer-events-none w-full h-full",fit&&`object-${fit}`),onLoad:e=>{e.currentTarget.previousElementSibling?.remove(),setColorSet((0,esm.TP)(e.currentTarget))}})]})},Video=({src,poster,reel,autoPlay,playOnHover,fit="cover",className,...aria})=>{const videoRef=(0,react.useRef)(null),[state,setState]=(0,react.useState)(!0),[volume,setVolume]=(0,react.useState)(!1);return(0,jsx_runtime.jsxs)("div",{"data-ref":"video",className:classnames_default()(media_Media_module.mediaContainer,"relative overflow-hidden bg-gray inline-block",reel&&media_Media_module.mediaReel,className),onMouseEnter:()=>{playOnHover&&videoRef.current?.play()},onMouseLeave:()=>{playOnHover&&videoRef.current?.pause()},...aria,children:[(0,jsx_runtime.jsx)("div",{className:classnames_default()(media_Media_module.mediaPlaceholder,"absolute z-1 top-1/2 left-1/2 -translate-x-1/2 -translate-y-1/2 text-5xl animate-pulse"),children:"●●●"}),(0,jsx_runtime.jsxs)("video",{loop:!0,ref:videoRef,controls:!1,poster,autoPlay,className:classnames_default()(media_Media_module.media,"pointer-events-none w-full h-full",fit&&`object-${fit}`),onPlay:()=>setState(!0),onPause:()=>setState(!1),onVolumeChange:e=>setVolume(!!e.currentTarget.volume),onLoadedData:e=>{e.currentTarget.volume=0,e.currentTarget.previousElementSibling?.remove()},children:[(0,jsx_runtime.jsx)("source",{src}),(0,jsx_runtime.jsx)("track",{kind:"captions"})]}),(0,jsx_runtime.jsxs)("div",{"data-inner-clickable":!0,className:classnames_default()(media_Media_module.mediaControls,"absolute bottom-6 end-6 rounded-full flex flex-col"),children:[(0,jsx_runtime.jsx)(Button.$,{rounded:!0,variant:"link",className:media_Media_module.mediaControlPlaceholder,icon:icons.O.ellipsis,"aria-label":"controls"}),(0,jsx_runtime.jsx)(Button.$,{rounded:!0,variant:"link","aria-label":"controls",className:media_Media_module.mediaControlAction,onClick:()=>{videoRef.current&&(videoRef.current.volume=videoRef.current.volume?0:1)},icon:volume?icons.O.volumeOn:icons.O.volumeOff}),(0,jsx_runtime.jsx)(Button.$,{rounded:!0,variant:"link","aria-label":"controls",className:media_Media_module.mediaControlAction,onClick:()=>{videoRef.current?.paused?videoRef.current?.play():videoRef.current?.pause()},icon:state?icons.O.pause:icons.O.play})]})]})};try{Image.displayName="Image",Image.__docgenInfo={description:"",displayName:"Image",props:{alt:{defaultValue:null,description:"image alt text",name:"alt",required:!1,type:{name:"string"}},src:{defaultValue:null,description:"media source",name:"src",required:!0,type:{name:"string"}},reel:{defaultValue:null,description:"show media reel decoration",name:"reel",required:!1,type:{name:"boolean"}},fit:{defaultValue:{value:"cover"},description:"media content fit",name:"fit",required:!1,type:{name:"enum",value:[{value:'"fill"'},{value:'"cover"'},{value:'"contain"'}]}},className:{defaultValue:null,description:"css classname(s)",name:"className",required:!1,type:{name:"string"}},"data-testid":{defaultValue:null,description:"data attribute for test id",name:"data-testid",required:!1,type:{name:"string"}},"data-test-value":{defaultValue:null,description:"data attribute for test value",name:"data-test-value",required:!1,type:{name:"any"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/components/media/Media.tsx#Image"]={docgenInfo:Image.__docgenInfo,name:"Image",path:"packages/core/src/components/media/Media.tsx#Image"})}catch(__react_docgen_typescript_loader_error){}try{Video.displayName="Video",Video.__docgenInfo={description:"",displayName:"Video",props:{poster:{defaultValue:null,description:"video poster",name:"poster",required:!1,type:{name:"string"}},autoPlay:{defaultValue:null,description:"auto play video",name:"autoPlay",required:!1,type:{name:"boolean"}},playOnHover:{defaultValue:null,description:"play on mouse over",name:"playOnHover",required:!1,type:{name:"boolean"}},src:{defaultValue:null,description:"media source",name:"src",required:!0,type:{name:"string"}},reel:{defaultValue:null,description:"show media reel decoration",name:"reel",required:!1,type:{name:"boolean"}},fit:{defaultValue:{value:"cover"},description:"media content fit",name:"fit",required:!1,type:{name:"enum",value:[{value:'"fill"'},{value:'"cover"'},{value:'"contain"'}]}},className:{defaultValue:null,description:"css classname(s)",name:"className",required:!1,type:{name:"string"}},"data-testid":{defaultValue:null,description:"data attribute for test id",name:"data-testid",required:!1,type:{name:"string"}},"data-test-value":{defaultValue:null,description:"data attribute for test value",name:"data-test-value",required:!1,type:{name:"any"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/components/media/Media.tsx#Video"]={docgenInfo:Video.__docgenInfo,name:"Video",path:"packages/core/src/components/media/Media.tsx#Video"})}catch(__react_docgen_typescript_loader_error){}const CardCover=({className,children,height=120,justify="end",colorScheme,...aria})=>{const[media,body]=(0,react.useMemo)((()=>react.Children.toArray(children).reduce(((ret,node)=>((0,utils.hr)(node,Image,Video)?ret[0].push(node):ret[1].push(node),ret)),[[],[]])),[children]);return(0,jsx_runtime.jsxs)("div",{style:{height},className:classnames_default()(card_Card_module.cardCover,card_Card_module[colorScheme??"inheritScheme"],"relative z-0"),...aria,children:[media,(0,jsx_runtime.jsx)("div",{className:classnames_default()(card_Card_module.cardCoverContent,"relative pointer-events-none z-1 flex flex-col flex-nowrap p-4 h-full",className,`justify-${justify}`,className),children:body})]})};try{CardCover.displayName="CardCover",CardCover.__docgenInfo={description:"",displayName:"CardCover",props:{height:{defaultValue:{value:"120"},description:"cover height",name:"height",required:!1,type:{name:"string | number"}},colorScheme:{defaultValue:null,description:"cover color scheme",name:"colorScheme",required:!1,type:{name:"enum",value:[{value:'"light"'},{value:'"dark"'}]}},justify:{defaultValue:{value:"end"},description:"justify content",name:"justify",required:!1,type:{name:"enum",value:[{value:'"center"'},{value:'"end"'},{value:'"start"'}]}},className:{defaultValue:null,description:"css classname(s)",name:"className",required:!1,type:{name:"string"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/components/card/CardCover.tsx#CardCover"]={docgenInfo:CardCover.__docgenInfo,name:"CardCover",path:"packages/core/src/components/card/CardCover.tsx#CardCover"})}catch(__react_docgen_typescript_loader_error){}var Chip_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/components/chip/Chip.module.css"),Chip_module_options={};Chip_module_options.styleTagTransform=styleTagTransform_default(),Chip_module_options.setAttributes=setAttributesWithoutAttributes_default(),Chip_module_options.insert=insertBySelector_default().bind(null,"head"),Chip_module_options.domAPI=styleDomAPI_default(),Chip_module_options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(Chip_module.A,Chip_module_options);const chip_Chip_module=Chip_module.A&&Chip_module.A.locals?Chip_module.A.locals:void 0,Chip_SizeMap={xs:"0.625rem",sm:"0.875rem",md:"1.125rem",lg:"1.5rem",xl:"2rem"},Chip=({ref,children,className,size,color,variant,icon,iconBg,iconColor,rtlFlip,disabled,onClick,onIconClick,onRemove,rounded,stopPropagation,as,...aria})=>{const styles=(0,hooks_useEffectDebugger.ZU)((()=>{const s={};return color&&(s.color=(0,utils.oU)(color)),size&&!(size in Chip_SizeMap)&&(s.fontSize=size),size&&size in Chip_SizeMap&&(s.fontSize=Chip_SizeMap[size]),s}),[color,size],"Chip styles"),clickHandler=(0,react.useCallback)((e=>{stopPropagation&&e.stopPropagation(),onClick?.(e)}),[onClick,stopPropagation]),removeHandler=(0,react.useCallback)((e=>{stopPropagation&&e.stopPropagation(),onRemove?.(e)}),[onRemove,stopPropagation]),E=as??"div";return(0,jsx_runtime.jsxs)(E,{ref,role:"term",className:classnames_default()(chip_Chip_module.chip,className,color&&(0,utils.Iq)(color),"select-none inline-flex flex-nowrap items-center max-w-72 text-sm rounded",rounded&&"rounded-full",!!onClick&&chip_Chip_module.clickable,disabled&&chip_Chip_module.disabled),style:styles,"data-variant":variant,"data-inner-clickable":!!onClick,onClick:clickHandler,...aria,children:[icon&&(0,jsx_runtime.jsx)(Icon.I,{className:classnames_default()(chip_Chip_module.chipIcon,"m-1"),icon,bg:iconBg,onClick:onIconClick,color:iconColor,rtlFlip}),children&&(0,jsx_runtime.jsx)("label",{className:classnames_default()(chip_Chip_module.chipLabel,"truncate"),children}),onRemove&&(0,jsx_runtime.jsx)("span",{role:"none",className:classnames_default()(chip_Chip_module.chipRemove,"cursor-pointer pe-1 opacity-65 hover:opacity-90"),onClick:removeHandler,children:"×"})]})};try{Chip.displayName="Chip",Chip.__docgenInfo={description:"",displayName:"Chip",props:{size:{defaultValue:null,description:"chip size",name:"size",required:!1,type:{name:"enum",value:[{value:'"xs"'},{value:'"sm"'},{value:'"md"'},{value:'"lg"'},{value:'"xl"'}]}},color:{defaultValue:null,description:"chip color (CSS color / tailwind color)",name:"color",required:!1,type:{name:"any"}},variant:{defaultValue:null,description:"chip styling",name:"variant",required:!1,type:{name:"enum",value:[{value:'"outline"'},{value:'"solid"'}]}},rounded:{defaultValue:null,description:"full rounded edges",name:"rounded",required:!1,type:{name:"boolean"}},disabled:{defaultValue:null,description:"disabled state",name:"disabled",required:!1,type:{name:"boolean"}},stopPropagation:{defaultValue:null,description:"prevent click propagation",name:"stopPropagation",required:!1,type:{name:"boolean"}},onClick:{defaultValue:null,description:"click handler",name:"onClick",required:!1,type:{name:"MouseEventHandler"}},onIconClick:{defaultValue:null,description:"icon click handler",name:"onIconClick",required:!1,type:{name:"MouseEventHandler"}},onRemove:{defaultValue:null,description:"remove handler",name:"onRemove",required:!1,type:{name:"MouseEventHandler"}},className:{defaultValue:null,description:"css classname(s)",name:"className",required:!1,type:{name:"string"}},icon:{defaultValue:null,description:"svg path / image url",name:"icon",required:!1,type:{name:"string"}},rtlFlip:{defaultValue:null,description:"flip icon in rtl",name:"rtlFlip",required:!1,type:{name:"boolean"}},iconBg:{defaultValue:null,description:"icon background color",name:"iconBg",required:!1,type:{name:"string"}},iconColor:{defaultValue:null,description:"icon color",name:"iconColor",required:!1,type:{name:"string"}},"data-testid":{defaultValue:null,description:"data attribute for test id",name:"data-testid",required:!1,type:{name:"string"}},"data-test-value":{defaultValue:null,description:"data attribute for test value",name:"data-test-value",required:!1,type:{name:"any"}},ref:{defaultValue:null,description:"",name:"ref",required:!1,type:{name:"Ref"}},as:{defaultValue:null,description:"The component used for the root node.\nEither a string to use a HTML element or a component.",name:"as",required:!1,type:{name:"ElementType"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/components/chip/Chip.tsx#Chip"]={docgenInfo:Chip.__docgenInfo,name:"Chip",path:"packages/core/src/components/chip/Chip.tsx#Chip"})}catch(__react_docgen_typescript_loader_error){}var Collapsable_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/components/collapsable/Collapsable.module.css"),Collapsable_module_options={};Collapsable_module_options.styleTagTransform=styleTagTransform_default(),Collapsable_module_options.setAttributes=setAttributesWithoutAttributes_default(),Collapsable_module_options.insert=insertBySelector_default().bind(null,"head"),Collapsable_module_options.domAPI=styleDomAPI_default(),Collapsable_module_options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(Collapsable_module.A,Collapsable_module_options);const collapsable_Collapsable_module=Collapsable_module.A&&Collapsable_module.A.locals?Collapsable_module.A.locals:void 0,Collapsable=({ref,disabled,className,bodyClassName,headerClassName,children,iconAlign,stickyHeader,iconClosed=icons.O.chevronRight,iconOpen=icons.O.chevronDown,open,onClose,onOpen,...aria})=>{const[openState,setOpenState]=(0,react.useState)(open),headRef=(0,react.useRef)(null),bodyRef=(0,react.useRef)(null);(0,react.useImperativeHandle)(ref,(()=>({button:headRef,body:bodyRef,open:!!openState})),[openState]),(0,react.useEffect)((()=>{setOpenState(open)}),[open]);const[head,body]=(0,react.useMemo)((()=>{const[h,...b]=react.Children.toArray(children);return[h,b]}),[children]);return(0,jsx_runtime.jsxs)("div",{className:classnames_default()(collapsable_Collapsable_module.collapsable,className),...aria,children:[(0,jsx_runtime.jsxs)("div",{role:"none",ref:headRef,className:classnames_default()(collapsable_Collapsable_module.collapsableHead,"flex gap-1 flex-nowrap py-2 font-medium cursor-pointer items-center select-none hover:opacity-70",headerClassName,stickyHeader&&"bg-base sticky top-0 px-2 py-1 z-10","end"===iconAlign?"flex-row-reverse":"flex-row"),onClick:()=>!disabled&&setOpenState(!openState),children:[(0,jsx_runtime.jsx)(Icon.I,{size:"1.125em",icon:openState?iconOpen:iconClosed,rtlFlip:!0}),(0,jsx_runtime.jsx)("div",{className:"flex-1 px-2",children:head})]}),openState&&(0,jsx_runtime.jsx)("div",{ref:bodyRef,className:classnames_default()(collapsable_Collapsable_module.collapsableBody,bodyClassName),children:body})]})};try{Collapsable.displayName="Collapsable",Collapsable.__docgenInfo={description:"",displayName:"Collapsable",props:{iconAlign:{defaultValue:null,description:"expand icon alignment",name:"iconAlign",required:!1,type:{name:"enum",value:[{value:'"end"'},{value:'"start"'}]}},bodyClassName:{defaultValue:null,description:"panel body className",name:"bodyClassName",required:!1,type:{name:"string"}},headerClassName:{defaultValue:null,description:"header button className",name:"headerClassName",required:!1,type:{name:"string"}},stickyHeader:{defaultValue:null,description:"Header position sticky",name:"stickyHeader",required:!1,type:{name:"boolean"}},iconOpen:{defaultValue:{value:"CoreIcons.chevronDown"},description:"open state icon",name:"iconOpen",required:!1,type:{name:"string"}},iconClosed:{defaultValue:{value:"CoreIcons.chevronRight"},description:"closed state icon",name:"iconClosed",required:!1,type:{name:"string"}},open:{defaultValue:null,description:"open state",name:"open",required:!1,type:{name:"boolean"}},disabled:{defaultValue:null,description:"disable collapsable",name:"disabled",required:!1,type:{name:"boolean"}},onOpen:{defaultValue:null,description:"open handler",name:"onOpen",required:!1,type:{name:"(() => void)"}},onClose:{defaultValue:null,description:"open handler",name:"onClose",required:!1,type:{name:"(() => void)"}},className:{defaultValue:null,description:"css classname(s)",name:"className",required:!1,type:{name:"string"}},"data-testid":{defaultValue:null,description:"data attribute for test id",name:"data-testid",required:!1,type:{name:"string"}},"data-test-value":{defaultValue:null,description:"data attribute for test value",name:"data-test-value",required:!1,type:{name:"any"}},ref:{defaultValue:null,description:"",name:"ref",required:!1,type:{name:"Ref"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/components/collapsable/Collapsable.tsx#Collapsable"]={docgenInfo:Collapsable.__docgenInfo,name:"Collapsable",path:"packages/core/src/components/collapsable/Collapsable.tsx#Collapsable"})}catch(__react_docgen_typescript_loader_error){}var Divider_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/components/divider/Divider.module.css"),Divider_module_options={};Divider_module_options.styleTagTransform=styleTagTransform_default(),Divider_module_options.setAttributes=setAttributesWithoutAttributes_default(),Divider_module_options.insert=insertBySelector_default().bind(null,"head"),Divider_module_options.domAPI=styleDomAPI_default(),Divider_module_options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(Divider_module.A,Divider_module_options);const divider_Divider_module=Divider_module.A&&Divider_module.A.locals?Divider_module.A.locals:void 0,Divider=({children,color,vertical,fill,align="start",className})=>{const Rule=(0,react.useCallback)((({flex,className})=>(0,jsx_runtime.jsx)("hr",{style:{flex},className:classnames_default()(className,vertical&&"vertical",!flex&&"self-stretch",vertical?divider_Divider_module.vertical:divider_Divider_module.horizontal,color&&(0,utils.Z1)(color+"-200"))})),[color,vertical]);return children?(0,jsx_runtime.jsxs)("div",{className:classnames_default()("flex flex-nowrap items-center",vertical&&"flex-col",className),children:[(0,jsx_runtime.jsx)(Rule,{flex:"start"===align?"0 0 1rem":"1 1 1em"}),(0,jsx_runtime.jsx)("div",{className:classnames_default()("px-2 whitespace-nowrap",vertical?divider_Divider_module.vertical:divider_Divider_module.horizontal,fill&&(0,utils.MN)((color??"tint")+"-200"),!fill&&(0,utils.Iq)((color??"tint")+"-600"),"rounded-full text-[0.75em]",vertical&&"origin-center -rotate-90 z-1"),children}),(0,jsx_runtime.jsx)(Rule,{flex:"end"===align?"0 0 1rem":"1 1 1em"})]}):(0,jsx_runtime.jsx)(Rule,{className})};try{Divider.displayName="Divider",Divider.__docgenInfo={description:"",displayName:"Divider",props:{fill:{defaultValue:null,description:"apply text bg",name:"fill",required:!1,type:{name:"boolean"}},vertical:{defaultValue:null,description:"vertical rule",name:"vertical",required:!1,type:{name:"boolean"}},color:{defaultValue:null,description:"rule color",name:"color",required:!1,type:{name:"enum",value:[{value:'"primary"'},{value:'"accent"'},{value:'"info"'},{value:'"danger"'},{value:'"success"'},{value:'"warning"'},{value:'"scarlet"'},{value:'"pumpkin"'},{value:'"marigold"'},{value:'"avacado"'},{value:'"jade"'},{value:'"denim"'},{value:'"iris"'},{value:'"lilac"'},{value:'"coral"'},{value:'"wood"'},{value:'"silver"'},{value:'"steel"'},{value:'"olive"'},{value:'"sand"'},{value:'"tint"'}]}},align:{defaultValue:{value:"start"},description:"text alignment",name:"align",required:!1,type:{name:"enum",value:[{value:'"center"'},{value:'"end"'},{value:'"start"'}]}},className:{defaultValue:null,description:"css classname(s)",name:"className",required:!1,type:{name:"string"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/components/divider/Divider.tsx#Divider"]={docgenInfo:Divider.__docgenInfo,name:"Divider",path:"packages/core/src/components/divider/Divider.tsx#Divider"})}catch(__react_docgen_typescript_loader_error){}const DropdownTool=({children,className,groupHover,icon,...props})=>(0,jsx_runtime.jsxs)(Dropdown,{...props,children:[(0,jsx_runtime.jsx)(Icon.I,{icon:icon??icons.O.caretDown,className:classnames_default()(className,"outline bg-base flex-content pointer-events-auto cursor-pointer",groupHover&&"hidden group-hover:inline-block data-[dropdown-open]:inline-block")}),children]});try{DropdownTool.displayName="DropdownTool",DropdownTool.__docgenInfo={description:"",displayName:"DropdownTool",props:{className:{defaultValue:null,description:"css classname(s)",name:"className",required:!1,type:{name:"string"}},ref:{defaultValue:null,description:"",name:"ref",required:!1,type:{name:"Ref"}},disabled:{defaultValue:null,description:"disable dropdown",name:"disabled",required:!1,type:{name:"boolean"}},onClose:{defaultValue:null,description:"close handler",name:"onClose",required:!1,type:{name:"(() => void)"}},placement:{defaultValue:null,description:"dropdown placement",name:"placement",required:!1,type:{name:"enum",value:[{value:'"top-start"'},{value:'"top-end"'},{value:'"bottom-start"'},{value:'"bottom-end"'},{value:'"top"'},{value:'"bottom"'},{value:'"right"'},{value:'"left"'},{value:'"right-end"'},{value:'"right-start"'},{value:'"left-end"'},{value:'"left-start"'}]}},onOpen:{defaultValue:null,description:"open handler",name:"onOpen",required:!1,type:{name:"(() => void)"}},showArrow:{defaultValue:null,description:"show dropdown arrow",name:"showArrow",required:!1,type:{name:"boolean"}},fitToParent:{defaultValue:null,description:"fit with to anchor' parent element",name:"fitToParent",required:!1,type:{name:"boolean"}},closeOnClick:{defaultValue:null,description:"close dropdown on click",name:"closeOnClick",required:!1,type:{name:"boolean"}},plainDropdown:{defaultValue:null,description:"plain dropdown body",name:"plainDropdown",required:!1,type:{name:"boolean"}},dropdownClassName:{defaultValue:null,description:"dropdown body className",name:"dropdownClassName",required:!1,type:{name:"string"}},dropdownEvent:{defaultValue:null,description:"dropdown event",name:"dropdownEvent",required:!1,type:{name:"enum",value:[{value:'"click"'},{value:'"hover"'}]}},icon:{defaultValue:null,description:"",name:"icon",required:!1,type:{name:"string"}},groupHover:{defaultValue:null,description:"hide until group hovered",name:"groupHover",required:!1,type:{name:"boolean"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/components/dropdown/DropdownTool.tsx#DropdownTool"]={docgenInfo:DropdownTool.__docgenInfo,name:"DropdownTool",path:"packages/core/src/components/dropdown/DropdownTool.tsx#DropdownTool"})}catch(__react_docgen_typescript_loader_error){}const EmptyContent_SizeMap={"":"1rem",sm:"0.875rem",md:"1.125rem"},DefaultIcon=()=>(0,jsx_runtime.jsxs)("svg",{version:"1.1",viewBox:"0 0 512 512",width:"1em",height:"1em",xmlns:"http://www.w3.org/2000/svg",children:[(0,jsx_runtime.jsx)("path",{opacity:"0.5",fill:"currentColor",d:"M106.1,296.01c-0.46,0-0.92-0.05-1.37-0.14c-0.45-0.09-0.89-0.22-1.31-0.4c-0.42-0.17-0.83-0.39-1.21-0.64c-0.38-0.26-0.74-0.55-1.06-0.87c-0.33-0.33-0.62-0.68-0.87-1.07c-0.26-0.38-0.47-0.78-0.65-1.21c-0.17-0.42-0.31-0.86-0.4-1.31c-0.09-0.45-0.13-0.91-0.13-1.36c0-0.46,0.04-0.92,0.13-1.37s0.23-0.89,0.4-1.31c0.18-0.42,0.39-0.83,0.65-1.21c0.25-0.38,0.54-0.74,0.87-1.06c0.32-0.33,0.68-0.62,1.06-0.87s0.79-0.47,1.21-0.65c0.42-0.17,0.86-0.31,1.31-0.4c0.9-0.18,1.83-0.18,2.73,0c0.45,0.09,0.89,0.23,1.31,0.4c0.43,0.18,0.83,0.4,1.21,0.65s0.74,0.54,1.07,0.87c0.32,0.32,0.61,0.68,0.87,1.06c0.25,0.38,0.47,0.79,0.64,1.21s0.31,0.86,0.4,1.31s0.14,0.91,0.14,1.37c0,0.45-0.05,0.91-0.14,1.36c-0.09,0.45-0.23,0.89-0.4,1.31c-0.17,0.43-0.39,0.83-0.64,1.21c-0.26,0.39-0.55,0.74-0.87,1.07c-0.33,0.32-0.69,0.61-1.07,0.87c-0.38,0.25-0.78,0.47-1.21,0.64c-0.42,0.18-0.86,0.31-1.31,0.4S106.55,296.01,106.1,296.01z"}),(0,jsx_runtime.jsx)("path",{opacity:"0.5",fill:"currentColor",d:"M475.5,458.25H36.5c-8.78,0-16.58-4.58-20.86-12.24c-4.28-7.67-4.09-16.71,0.51-24.19l70.18-114.04c2.03-3.29,6.34-4.32,9.63-2.29c3.29,2.03,4.32,6.34,2.29,9.63L28.07,429.16c-1.91,3.1-1.99,6.84-0.21,10.02s5.01,5.07,8.64,5.07H475.5c3.64,0,6.87-1.9,8.64-5.07s1.7-6.92-0.21-10.02l-219.5-356.7c-1.84-3-4.92-4.71-8.43-4.71s-6.59,1.72-8.43,4.71L124.24,272.88c-2.03,3.29-6.34,4.32-9.63,2.29c-3.29-2.03-4.32-6.34-2.29-9.63L235.64,65.13C240.03,58,247.64,53.75,256,53.75s15.97,4.25,20.36,11.38l219.5,356.7c4.6,7.48,4.79,16.52,0.51,24.19C492.08,453.67,484.28,458.25,475.5,458.25z"}),(0,jsx_runtime.jsx)("path",{opacity:"0.5",fill:"currentColor",d:"M354.79,279.28c-1.85,0-3.65-0.75-4.95-2.05c-0.33-0.32-0.62-0.68-0.87-1.07c-0.26-0.37-0.47-0.78-0.65-1.2c-0.17-0.43-0.31-0.87-0.4-1.31c-0.09-0.45-0.13-0.91-0.13-1.37c0-0.46,0.04-0.92,0.13-1.37c0.09-0.44,0.23-0.89,0.4-1.31c0.18-0.42,0.39-0.83,0.65-1.21c0.25-0.38,0.54-0.74,0.87-1.06c1.62-1.63,4.04-2.37,6.31-1.91c0.45,0.09,0.89,0.22,1.31,0.4c0.43,0.17,0.83,0.39,1.21,0.64c0.39,0.25,0.74,0.55,1.06,0.87c0.33,0.32,0.62,0.68,0.88,1.06c0.25,0.38,0.46,0.79,0.64,1.21c0.18,0.42,0.31,0.87,0.4,1.31c0.09,0.45,0.14,0.91,0.14,1.37c0,0.46-0.05,0.92-0.14,1.37c-0.09,0.44-0.22,0.88-0.4,1.31c-0.18,0.42-0.39,0.83-0.64,1.2c-0.26,0.39-0.55,0.75-0.88,1.07c-0.32,0.32-0.67,0.61-1.06,0.87c-0.38,0.25-0.78,0.47-1.21,0.64c-0.42,0.18-0.86,0.31-1.31,0.4C355.7,279.23,355.24,279.28,354.79,279.28z"}),(0,jsx_runtime.jsx)("path",{opacity:"0.5",fill:"currentColor",d:"M403.86,423.48H108.14c-10.56,0-20.31-5.72-25.46-14.94c-5.15-9.21-4.91-20.52,0.62-29.51l147.86-240.29c5.35-8.69,14.63-13.88,24.84-13.88s19.49,5.19,24.84,13.88l68.87,111.91c2.03,3.29,1,7.6-2.29,9.63c-3.29,2.02-7.6,1-9.63-2.29l-68.87-111.91c-2.78-4.52-7.61-7.22-12.91-7.22s-10.13,2.7-12.91,7.22L95.22,386.37c-2.88,4.67-3,10.55-0.32,15.34c2.68,4.79,7.75,7.77,13.24,7.77h295.72c5.49,0,10.56-2.98,13.24-7.77c2.68-4.79,2.55-10.67-0.32-15.34l-54.14-87.97c-2.03-3.29-1-7.6,2.29-9.63c3.29-2.02,7.61-1,9.63,2.29l54.14,87.97c5.53,8.99,5.77,20.3,0.62,29.51C424.17,417.76,414.42,423.48,403.86,423.48z"}),(0,jsx_runtime.jsx)("path",{fill:"currentColor",d:"M270.12,335.13h-28.24c-6.17,0-11.22-4.83-11.5-10.99l-0.5-11.01c-0.18-3.86,2.81-7.14,6.67-7.31 c3.85-0.21,7.14,2.81,7.31,6.67l0.4,8.64h23.49l5.23-114.15h-33.96l3.79,82.55c0.18,3.86-2.81,7.14-6.67,7.31 c-0.11,0.01-0.22,0.01-0.33,0.01c-3.72,0-6.81-2.93-6.99-6.68l-3.91-85.15c-0.14-3.13,1.01-6.22,3.17-8.48 c2.16-2.26,5.2-3.56,8.33-3.56h39.17c3.13,0,6.16,1.3,8.33,3.56c2.16,2.26,3.32,5.35,3.17,8.48l-5.46,119.12 C281.34,330.3,276.29,335.13,270.12,335.13z"}),(0,jsx_runtime.jsx)("path",{fill:"currentColor",d:"M268.47,394.55h-24.94c-4.83,0-9.39-2.12-12.5-5.81s-4.44-8.54-3.63-13.3l2.69-15.79 c1.34-7.89,8.13-13.61,16.13-13.61h19.56c8,0,14.78,5.73,16.13,13.61l2.69,15.79c0.81,4.76-0.51,9.61-3.63,13.3 S273.3,394.55,268.47,394.55z M246.22,360.04c-1.15,0-2.13,0.83-2.33,1.96l-2.69,15.79c-0.16,0.94,0.26,1.61,0.52,1.92 c0.26,0.31,0.85,0.84,1.8,0.84h24.94c0.95,0,1.54-0.53,1.8-0.84c0.26-0.31,0.68-0.98,0.52-1.92L268.11,362 c-0.19-1.14-1.17-1.96-2.33-1.96H246.22z"})]}),EmptyContent=({children,title,message,icon,className,size,...test})=>(0,jsx_runtime.jsxs)("div",{className:classnames_default()("p-6 flex flex-col items-center area-content",className),style:size&&{fontSize:EmptyContent_SizeMap[size]},...test,children:[(0,jsx_runtime.jsxs)("div",{className:"leading-none",style:{fontSize:"4em"},children:[(0,esm.Kg)(icon)&&(0,jsx_runtime.jsx)(Icon.I,{icon}),(0,react.isValidElement)(icon)&&icon,!icon&&(0,jsx_runtime.jsx)(DefaultIcon,{})]}),title&&(0,jsx_runtime.jsx)("p",{className:"font-medium text-center text-dimmed",style:{fontSize:"1.5em"},children:title}),(0,jsx_runtime.jsx)("p",{className:"font-medium text-center text-muted",style:{fontSize:"0.875em"},children:message}),(0,jsx_runtime.jsx)("div",{className:"flex gap-1 pt-6",children})]});try{EmptyContent.displayName="EmptyContent",EmptyContent.__docgenInfo={description:"",displayName:"EmptyContent",props:{title:{defaultValue:null,description:"empty title",name:"title",required:!1,type:{name:"string | Element"}},message:{defaultValue:null,description:"empty message",name:"message",required:!0,type:{name:"string | Element"}},size:{defaultValue:null,description:"content size",name:"size",required:!1,type:{name:"enum",value:[{value:'"sm"'},{value:'"md"'}]}},icon:{defaultValue:null,description:"empty icon",name:"icon",required:!1,type:{name:"string | ReactElement>"}},className:{defaultValue:null,description:"css classname(s)",name:"className",required:!1,type:{name:"string"}},"data-testid":{defaultValue:null,description:"data attribute for test id",name:"data-testid",required:!1,type:{name:"string"}},"data-test-value":{defaultValue:null,description:"data attribute for test value",name:"data-test-value",required:!1,type:{name:"any"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/components/empty/EmptyContent.tsx#EmptyContent"]={docgenInfo:EmptyContent.__docgenInfo,name:"EmptyContent",path:"packages/core/src/components/empty/EmptyContent.tsx#EmptyContent"})}catch(__react_docgen_typescript_loader_error){}const ContextMenu=({children,menu,disabled})=>{const[isOpen,setIsOpen]=(0,react.useState)(!1),nodeId=(0,floating_ui_react.fI)(),{refs,floatingStyles,context}=(0,floating_ui_react.we)({open:isOpen,nodeId,onOpenChange:(open,evt,reason)=>{const target=evt?.target;target?.closest(".menu-list")||setIsOpen(open)},strategy:"fixed",placement:"bottom-start",whileElementsMounted:floating_ui_dom.ll,middleware:[(0,floating_ui_react_dom.cY)(8),(0,floating_ui_react_dom.UU)()]}),click=(0,floating_ui_react.kp)(context,{toggle:!0,ignoreMouse:!0}),dismiss=(0,floating_ui_react.s9)(context,{bubbles:!0}),{getFloatingProps}=(0,floating_ui_react.bv)([dismiss,click]),handleClick=(0,react.useRef)((e=>{const virtual={getBoundingClientRect:()=>({width:0,height:0,x:e.clientX,y:e.clientY,top:e.clientY,left:e.clientX,right:e.clientX,bottom:e.clientY})};return refs.setReference(virtual),setIsOpen(!0),e.stopImmediatePropagation(),e.preventDefault(),!1})),wrapperRef=(0,react.useRef)(null);(0,react.useEffect)((()=>{const el=wrapperRef.current;if(el&&!disabled)return el?.parentElement?.addEventListener("contextmenu",handleClick.current),()=>{el?.parentElement?.removeEventListener("contextmenu",handleClick.current)}}),[disabled]);const tryClosing=(0,react.useRef)((e=>{e.target?.closest("[data-dropdown-dismiss='true']")&&setTimeout((()=>setIsOpen(!1)),50)}));return(0,jsx_runtime.jsxs)("div",{className:"contents",ref:wrapperRef,onMouseUpCapture:tryClosing.current,children:[children,isOpen&&(0,jsx_runtime.jsx)(floating_ui_react.XF,{root:refs.domReference.current?.closest(".theme-base")??void 0,children:(0,react.cloneElement)(menu,{...getFloatingProps(),style:{...floatingStyles,borderRadius:"var(--rounding)",zIndex:"var(--z-popover)",fontSize:"0.875rem"},className:"bg-base outline rounded-capped shadow-lg",ref:refs.setFloating,onMouseUp:tryClosing.current})})]})};try{ContextMenu.displayName="ContextMenu",ContextMenu.__docgenInfo={description:"",displayName:"ContextMenu",props:{menu:{defaultValue:null,description:"",name:"menu",required:!0,type:{name:"ReactElement<(props: MenuProps) => Element, string | JSXElementConstructor>"}},disabled:{defaultValue:null,description:"",name:"disabled",required:!1,type:{name:"boolean"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/components/menu/ContextMenu.tsx#ContextMenu"]={docgenInfo:ContextMenu.__docgenInfo,name:"ContextMenu",path:"packages/core/src/components/menu/ContextMenu.tsx#ContextMenu"})}catch(__react_docgen_typescript_loader_error){}var HotKeyLabel=__webpack_require__("./packages/core/src/hotkeys/HotKeyLabel.tsx"),overlays=__webpack_require__("./packages/core/src/overlays/index.ts"),Menu_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/components/menu/Menu.module.css"),Menu_module_options={};Menu_module_options.styleTagTransform=styleTagTransform_default(),Menu_module_options.setAttributes=setAttributesWithoutAttributes_default(),Menu_module_options.insert=insertBySelector_default().bind(null,"head"),Menu_module_options.domAPI=styleDomAPI_default(),Menu_module_options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(Menu_module.A,Menu_module_options);const menu_Menu_module=Menu_module.A&&Menu_module.A.locals?Menu_module.A.locals:void 0,MenuItem=({as,label,color="primary",className,icon,iconBg,iconColor,appendLabel,rtlFlip,altIcon,id,active,disabled,onClick,badge,hotKey,minimal,"data-open":childOpen,ref,...aria})=>{const tree=(0,floating_ui_react.cq)(),badgeProps=(0,react.useMemo)((()=>(0,Badge.l)(badge)),[badge]),iconEl=(0,react.useMemo)((()=>{let path=icon;return minimal&&!path&&(path=(0,esm.DB)(label)),(0,jsx_runtime.jsx)(Icon.I,{className:classnames_default()(menu_Menu_module.menuIcon,minimal&&menu_Menu_module.minimal),icon:path??"",bg:iconBg,color:iconColor,rtlFlip})}),[icon,iconBg,iconColor,rtlFlip,minimal,label]),Wrapper=(0,react.useCallback)((({children,...rest})=>minimal?(0,jsx_runtime.jsx)(overlays.m_,{content:label,placement:"right",disabled:childOpen,...rest,children}):(0,jsx_runtime.jsx)(react.Fragment,{children})),[minimal,label,childOpen]),menuLabel=(0,react.useMemo)((()=>(0,jsx_runtime.jsxs)("div",{className:"flex flex-nowrap text-start items-center",children:[iconEl,!minimal&&(0,jsx_runtime.jsx)("label",{className:"flex-1 pe-4 py-[0.375em] truncate",children:label}),appendLabel&&(0,jsx_runtime.jsx)("span",{className:classnames_default()("font-bold whitespace-nowrap text-center leading-none mx-1",minimal&&"absolute inset-x-0 bottom-0 overflow-clip",minimal?"text-[0.5rem]":"text-[0.625rem]",active?"text-white/50":"text-tint-600/50"),children:appendLabel}),badge&&(0,jsx_runtime.jsx)(Badge.E,{...badgeProps,placement:minimal?"end":"",className:classnames_default()("me-1",badgeProps.className)}),hotKey&&(0,jsx_runtime.jsx)(HotKeyLabel.z,{keyCombo:hotKey}),!minimal&&altIcon&&(0,jsx_runtime.jsx)(Icon.I,{className:"text-muted px-1",icon:altIcon,rtlFlip:!0})]})),[iconEl,minimal,appendLabel,label,badge,badgeProps,hotKey,active]),E=as??"button";return(0,jsx_runtime.jsx)(Wrapper,{...aria,children:(0,jsx_runtime.jsx)(E,{ref,"data-dropdown-dismiss":!0,"data-color":color,className:classnames_default()(menu_Menu_module.menuItem,className,active&&menu_Menu_module.active,minimal&&menu_Menu_module.minimal,disabled&&menu_Menu_module.disabled,"rounded-capped relative max-w-[50vw] my-0.5"),"data-active":active,"data-open":childOpen,disabled,"data-id":id,onClick:e=>{!1!==onClick?.(e)&&tree?.events.emit("click")},...minimal?{}:aria,children:menuLabel})})};try{MenuItem.displayName="MenuItem",MenuItem.__docgenInfo={description:"",displayName:"MenuItem",props:{id:{defaultValue:null,description:"menu id passed via menu.onClick",name:"id",required:!1,type:{name:"any"}},label:{defaultValue:null,description:"item label",name:"label",required:!0,type:{name:"string"}},appendLabel:{defaultValue:null,description:"append label badge text",name:"appendLabel",required:!1,type:{name:"string | false"}},color:{defaultValue:{value:"primary"},description:"menu color",name:"color",required:!1,type:{name:"any"}},active:{defaultValue:null,description:"item active",name:"active",required:!1,type:{name:"boolean"}},disabled:{defaultValue:null,description:"item disabled",name:"disabled",required:!1,type:{name:"boolean"}},badge:{defaultValue:null,description:"badge",name:"badge",required:!1,type:{name:"string | number | BadgeType"}},hotKey:{defaultValue:null,description:"keyboard shortcut label",name:"hotKey",required:!1,type:{name:"string"}},altIcon:{defaultValue:null,description:"alternate icon align end (caret, arrow)",name:"altIcon",required:!1,type:{name:"string"}},onClick:{defaultValue:null,description:"click handler",name:"onClick",required:!1,type:{name:"((e: MouseEvent) => unknown)"}},className:{defaultValue:null,description:"css classname(s)",name:"className",required:!1,type:{name:"string"}},"data-testid":{defaultValue:null,description:"data attribute for test id",name:"data-testid",required:!1,type:{name:"string"}},"data-test-value":{defaultValue:null,description:"data attribute for test value",name:"data-test-value",required:!1,type:{name:"any"}},icon:{defaultValue:null,description:"svg path / image url",name:"icon",required:!1,type:{name:"string"}},rtlFlip:{defaultValue:null,description:"flip icon in rtl",name:"rtlFlip",required:!1,type:{name:"boolean"}},iconBg:{defaultValue:null,description:"icon background color",name:"iconBg",required:!1,type:{name:"string"}},iconColor:{defaultValue:null,description:"icon color",name:"iconColor",required:!1,type:{name:"string"}},as:{defaultValue:null,description:"The component used for the root node.\nEither a string to use a HTML element or a component.",name:"as",required:!1,type:{name:"ElementType"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/components/menu/MenuItem.tsx#MenuItem"]={docgenInfo:MenuItem.__docgenInfo,name:"MenuItem",path:"packages/core/src/components/menu/MenuItem.tsx#MenuItem"})}catch(__react_docgen_typescript_loader_error){}const MenuComponent=({children,minimal,menuClassName,onClick,ref,...rest})=>{const[isOpen,setIsOpen]=(0,react.useState)(!1),[activeIndex,setActiveIndex]=(0,react.useState)(null),elementsRef=(0,react.useRef)([]),labelsRef=(0,react.useRef)([]),tree=(0,floating_ui_react.cq)(),nodeId=(0,floating_ui_react.fI)(),parentId=(0,floating_ui_react.R1)(),isNested=null!==parentId,{floatingStyles,refs,context}=(0,floating_ui_react.we)({nodeId,open:!isNested||isOpen,onOpenChange(open,event,reason){isNested&&setIsOpen(open)},placement:isNested?"right-start":"bottom-start",middleware:[(0,floating_ui_react_dom.cY)({mainAxis:isNested?0:4,alignmentAxis:isNested?-4:0}),(0,floating_ui_react_dom.UU)(),(0,floating_ui_react_dom.BN)()],whileElementsMounted:floating_ui_dom.ll}),hover=(0,floating_ui_react.Mk)(context,{delay:{open:75},handleClose:(0,floating_ui_react.iB)({blockPointerEvents:!0})}),click=(0,floating_ui_react.kp)(context,{toggle:!0,ignoreMouse:!0}),role=(0,floating_ui_react.It)(context,{role:"menu"}),dismiss=(0,floating_ui_react.s9)(context,{bubbles:!0}),listNavigation=(0,floating_ui_react.C1)(context,{listRef:elementsRef,activeIndex,nested:isNested,onNavigate:setActiveIndex}),typeahead=(0,floating_ui_react.lY)(context,{listRef:labelsRef,onMatch:isOpen?setActiveIndex:void 0,activeIndex}),{getReferenceProps,getFloatingProps,getItemProps}=(0,floating_ui_react.bv)([click,hover,role,dismiss,listNavigation,typeahead]);(0,react.useEffect)((()=>{if(tree&&parentId)return tree.events.on("click",handleTreeClick),tree.events.on("close",handleTreeClick),tree.events.on("menuopen",onSubMenuOpen),()=>{tree.events.off("click",handleTreeClick),tree.events.off("close",handleTreeClick),tree.events.off("menuopen",onSubMenuOpen)};function handleTreeClick(){setIsOpen(!1)}function onSubMenuOpen(event){event.nodeId!==nodeId&&event.parentId===parentId&&setIsOpen(!1)}}),[tree,nodeId,parentId]),(0,react.useEffect)((()=>{isOpen&&tree&&tree.events.emit("menuopen",{parentId,nodeId})}),[tree,isOpen,nodeId,parentId]);const handleClick=(0,react.useCallback)((e=>{const el=e.target;el.dataset.id&&onClick?.(el.dataset.id)}),[onClick]),Wrapper=isNested?floating_ui_react.XF:react.Fragment,wrapperProps=isNested?{root:refs.domReference.current?.closest(".theme-base")??void 0}:{};return(0,react.useEffect)((()=>{setTimeout((()=>refs.floating.current?.querySelector('[data-active="true"]')?.scrollIntoView({block:"nearest"})),100)}),[isOpen]),(0,react.useEffect)((()=>{isNested&&!isOpen||!activeIndex||setTimeout((()=>{elementsRef.current[activeIndex]?.scrollIntoView({block:"nearest"})}),100)}),[isOpen,activeIndex]),(0,jsx_runtime.jsxs)(floating_ui_react.$c,{id:nodeId,children:[isNested&&(0,jsx_runtime.jsx)(MenuItem,{...getReferenceProps({...rest,id:void 0,"data-dropdown-dismiss":!1,onClick:e=>(e.stopPropagation(),!1)}),"data-open":isOpen,minimal,altIcon:icons.O.chevronRight,ref:(0,esm.Px)(refs.setReference,ref)}),(0,jsx_runtime.jsx)(floating_ui_react.ph,{elementsRef,labelsRef,children:(!isNested||isOpen)&&(0,jsx_runtime.jsxs)(Wrapper,{...wrapperProps,children:[isNested&&(0,jsx_runtime.jsx)(floating_ui_react.zR,{}),(0,jsx_runtime.jsx)(floating_ui_react.s3,{context,modal:!isNested,initialFocus:isNested?-1:0,returnFocus:!isNested,children:(0,jsx_runtime.jsx)("div",{className:classnames_default()(menuClassName,"flex flex-col bg-base p-1 menu-list",isNested&&"outline shadow-lg rounded-capped max-h-96 overflow-auto scroll-thin z-[var(--z-popover)]"),autoFocus:!0,ref:(0,esm.Px)(isNested?refs.setFloating:ref),...getFloatingProps({onClick:isNested?void 0:handleClick}),style:isNested?floatingStyles:rest.style,children:(0,esm.t_)(children,((child,index)=>(labelsRef.current[index]=child.props.label,(0,react.cloneElement)(child,(0,utils.hr)(child,MenuItem,Menu,MenuComponent)?{minimal:!isNested&&minimal,"data-focus":activeIndex===index,ref:el=>elementsRef.current[index]=el,...getItemProps({onClick:child.props.onClick,tabIndex:activeIndex===index?0:-1})}:{}))))})})]})})]})},Menu=props=>{const parentId=(0,floating_ui_react.R1)(),tree=(0,floating_ui_react.cq)();return null===parentId?(0,jsx_runtime.jsx)(floating_ui_react.P6,{children:(0,jsx_runtime.jsx)(MenuComponent,{...props,menuClassName:props.className})}):tree?(0,jsx_runtime.jsx)(MenuComponent,{...props,menuClassName:props.className}):(0,jsx_runtime.jsx)(MenuComponent,{...props})};try{Menu.displayName="Menu",Menu.__docgenInfo={description:"",displayName:"Menu",props:{label:{defaultValue:null,description:"item label",name:"label",required:!1,type:{name:"string"}},minimal:{defaultValue:null,description:"",name:"minimal",required:!1,type:{name:"boolean"}},menuClassName:{defaultValue:null,description:"floating menu className",name:"menuClassName",required:!1,type:{name:"string"}},onClick:{defaultValue:null,description:"click handler",name:"onClick",required:!1,type:{name:"((e: MouseEvent) => unknown) | ((id: string) => unknown)"}},className:{defaultValue:null,description:"css classname(s)",name:"className",required:!1,type:{name:"string"}},id:{defaultValue:null,description:"menu id passed via menu.onClick",name:"id",required:!1,type:{name:"string"}},appendLabel:{defaultValue:null,description:"append label badge text",name:"appendLabel",required:!1,type:{name:"string | false"}},color:{defaultValue:null,description:"menu color",name:"color",required:!1,type:{name:"enum",value:[{value:'"primary"'},{value:'"accent"'},{value:'"info"'},{value:'"danger"'},{value:'"success"'},{value:'"warning"'}]}},active:{defaultValue:null,description:"item active",name:"active",required:!1,type:{name:"boolean"}},disabled:{defaultValue:null,description:"item disabled",name:"disabled",required:!1,type:{name:"boolean"}},badge:{defaultValue:null,description:"badge",name:"badge",required:!1,type:{name:"string | number | BadgeType"}},hotKey:{defaultValue:null,description:"keyboard shortcut label",name:"hotKey",required:!1,type:{name:"string"}},altIcon:{defaultValue:null,description:"alternate icon align end (caret, arrow)",name:"altIcon",required:!1,type:{name:"string"}},"data-testid":{defaultValue:null,description:"data attribute for test id",name:"data-testid",required:!1,type:{name:"string"}},"data-test-value":{defaultValue:null,description:"data attribute for test value",name:"data-test-value",required:!1,type:{name:"any"}},icon:{defaultValue:null,description:"svg path / image url",name:"icon",required:!1,type:{name:"string"}},rtlFlip:{defaultValue:null,description:"flip icon in rtl",name:"rtlFlip",required:!1,type:{name:"boolean"}},iconBg:{defaultValue:null,description:"icon background color",name:"iconBg",required:!1,type:{name:"string"}},iconColor:{defaultValue:null,description:"icon color",name:"iconColor",required:!1,type:{name:"string"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/components/menu/Menu.tsx#Menu"]={docgenInfo:Menu.__docgenInfo,name:"Menu",path:"packages/core/src/components/menu/Menu.tsx#Menu"})}catch(__react_docgen_typescript_loader_error){}var Meter_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/components/meter/Meter.module.css"),Meter_module_options={};Meter_module_options.styleTagTransform=styleTagTransform_default(),Meter_module_options.setAttributes=setAttributesWithoutAttributes_default(),Meter_module_options.insert=insertBySelector_default().bind(null,"head"),Meter_module_options.domAPI=styleDomAPI_default(),Meter_module_options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(Meter_module.A,Meter_module_options);const meter_Meter_module=Meter_module.A&&Meter_module.A.locals?Meter_module.A.locals:void 0,Meter=({value,hideLabel,className,...aria})=>{const activeCount=(0,hooks_useEffectDebugger.ZU)((()=>value/16.67),[value],"Meter activeCount");return(0,jsx_runtime.jsxs)("div",{className:classnames_default()(meter_Meter_module.meter,className,"flex flex-nowrap items-center gap-[2px]"),...aria,children:[[0,1,2,3,4,5].map((step=>(0,jsx_runtime.jsx)("div",{className:classnames_default()(meter_Meter_module.meterBar,"first-of-type:rounded-s last-of-type:rounded-e bg-tint-100 relative outline -outline-offset-1 outline-muted overflow-hidden after:absolute after:inset-0"),"data-active":activeCount>=step,style:{"--width":`${Math.min(100*(activeCount-step),100)}%`}},step))),!hideLabel&&(0,jsx_runtime.jsx)("label",{className:"text-muted",children:esm.yL.percent(value/100)})]})};try{Meter.displayName="Meter",Meter.__docgenInfo={description:"",displayName:"Meter",props:{value:{defaultValue:null,description:"meter value (0-100)",name:"value",required:!0,type:{name:"number"}},hideLabel:{defaultValue:null,description:"hide value label",name:"hideLabel",required:!1,type:{name:"boolean"}},className:{defaultValue:null,description:"css classname(s)",name:"className",required:!1,type:{name:"string"}},"data-testid":{defaultValue:null,description:"data attribute for test id",name:"data-testid",required:!1,type:{name:"string"}},"data-test-value":{defaultValue:null,description:"data attribute for test value",name:"data-test-value",required:!1,type:{name:"any"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/components/meter/Meter.tsx#Meter"]={docgenInfo:Meter.__docgenInfo,name:"Meter",path:"packages/core/src/components/meter/Meter.tsx#Meter"})}catch(__react_docgen_typescript_loader_error){}var HotKey=__webpack_require__("./packages/core/src/hotkeys/HotKey.tsx");const Navigator=({className,onNavigate,color,children,...aria})=>{const navPrev=(0,react.useCallback)((()=>onNavigate(-1)),[onNavigate]),navNext=(0,react.useCallback)((()=>onNavigate(1)),[onNavigate]);return(0,jsx_runtime.jsxs)("div",{className:classnames_default()(className,"inline-flex items-center leading-none"),...aria,children:[(0,jsx_runtime.jsx)(HotKey.B,{keyCombo:"left",handler:navPrev}),(0,jsx_runtime.jsx)(HotKey.B,{keyCombo:"right",handler:navNext}),(0,jsx_runtime.jsx)(Icon.I,{rtlFlip:!0,color,className:"text-[1em] p-1","aria-label":"previous","data-testid":"previous",icon:icons.O.chevronLeft,onClick:e=>[e.stopPropagation(),onNavigate(-1)]}),children,(0,jsx_runtime.jsx)(Icon.I,{rtlFlip:!0,className:"text-[1em] p-1",color,"aria-label":"next","data-testid":"next",icon:icons.O.chevronRight,onClick:e=>[e.stopPropagation(),onNavigate(1)]})]})};try{Navigator.displayName="Navigator",Navigator.__docgenInfo={description:"",displayName:"Navigator",props:{color:{defaultValue:null,description:"navigator button color",name:"color",required:!1,type:{name:"string"}},onNavigate:{defaultValue:null,description:"navigation handler",name:"onNavigate",required:!0,type:{name:"(dir: 1 | -1) => void"}},className:{defaultValue:null,description:"css classname(s)",name:"className",required:!1,type:{name:"string"}},"data-testid":{defaultValue:null,description:"data attribute for test id",name:"data-testid",required:!1,type:{name:"string"}},"data-test-value":{defaultValue:null,description:"data attribute for test value",name:"data-test-value",required:!1,type:{name:"any"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/components/navigator/Navigator.tsx#Navigator"]={docgenInfo:Navigator.__docgenInfo,name:"Navigator",path:"packages/core/src/components/navigator/Navigator.tsx#Navigator"})}catch(__react_docgen_typescript_loader_error){}var Panel_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/components/panel/Panel.module.css"),Panel_module_options={};Panel_module_options.styleTagTransform=styleTagTransform_default(),Panel_module_options.setAttributes=setAttributesWithoutAttributes_default(),Panel_module_options.insert=insertBySelector_default().bind(null,"head"),Panel_module_options.domAPI=styleDomAPI_default(),Panel_module_options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(Panel_module.A,Panel_module_options);const panel_Panel_module=Panel_module.A&&Panel_module.A.locals?Panel_module.A.locals:void 0,Panel=({children,className,titleClassName,headerClassName,title,actions,icon,iconBg,iconColor,rtlFlip,panelId,height,width,minHeight,minWidth,maxHeight,maxWidth,loading,expandable,expanded:_expanded,onExpand,collapsable,collapsed:_collapsed,onCollapse,onClose,onBack,...aria})=>{const[collapsed,toggleCollapse]=usePropToggle(_collapsed,onCollapse,panelId),[expanded,toggleExpand]=usePropToggle(_expanded,onExpand,panelId),hasTools=(0,react.useMemo)((()=>!!expandable||!!collapsable||!!onClose),[expandable,collapsable,onClose]);return(0,jsx_runtime.jsxs)("div",{className:classnames_default()(panel_Panel_module.panel,className,"rounded-capped overflow-hidden outline grid",expanded?"fixed inset-4 z-50":"relative"),"data-ref":"panel","data-collapsed":collapsed,style:expanded?{}:collapsed?{width,minWidth,maxWidth}:{height,width,minWidth,minHeight,maxWidth,maxHeight},...aria,children:[(0,jsx_runtime.jsxs)("header",{role:"none",className:classnames_default()(panel_Panel_module.panelHeader,headerClassName,"flex flex-nowrap items-center area-head"),"data-testid":"panel-header",onClick:collapsable?toggleCollapse:void 0,children:[onBack&&(0,jsx_runtime.jsx)(Icon.I,{"data-ref":"panelBack",className:classnames_default()(panel_Panel_module.panelAction,"cursor-pointer"),icon:icons.O.chevronLeft,onClick:onBack}),icon&&(0,jsx_runtime.jsx)(Icon.I,{icon,bg:iconBg,color:iconColor,rtlFlip,className:"p-2 text-md select-none pointer-events-none"}),(0,jsx_runtime.jsx)("div",{className:classnames_default()(titleClassName,"flex-1 select-none truncate",title&&"py-1 first:px-2"),children:title}),(0,jsx_runtime.jsx)("div",{className:"px-1",children:actions}),hasTools&&(0,jsx_runtime.jsxs)("div",{role:"none",className:"px-1 gap-px flex",onClick:e=>e.stopPropagation(),children:[expandable&&(0,jsx_runtime.jsx)(Icon.I,{"data-ref":"panelExpand",className:classnames_default()(panel_Panel_module.panelAction,"cursor-pointer"),icon:expanded?icons.O.minimize:icons.O.maximize,onClick:toggleExpand}),!expanded&&collapsable&&(0,jsx_runtime.jsx)(Icon.I,{"data-ref":"panelCollapse",className:classnames_default()(panel_Panel_module.panelAction,"cursor-pointer"),icon:collapsed?icons.O.expand:icons.O.collapse,onClick:toggleCollapse}),!expanded&&onClose&&(0,jsx_runtime.jsx)(Icon.I,{"data-ref":"panelClose",className:classnames_default()(panel_Panel_module.panelAction,"cursor-pointer"),icon:icons.O.close,onClick:onClose})]})]}),(!collapsed||expanded)&&(0,jsx_runtime.jsxs)("div",{"data-testid":"panel-body",className:classnames_default()(panel_Panel_module.panelBody,"area-content grid overflow-hidden"),children:[loading&&(0,jsx_runtime.jsx)(Animations.Rh,{}),children]})]})};try{Panel.displayName="Panel",Panel.__docgenInfo={description:"",displayName:"Panel",props:{panelId:{defaultValue:null,description:"panel id used by panel stack",name:"panelId",required:!1,type:{name:"string"}},title:{defaultValue:null,description:"panel title",name:"title",required:!1,type:{name:"string"}},actions:{defaultValue:null,description:"header actions",name:"actions",required:!1,type:{name:"Element"}},headerClassName:{defaultValue:null,description:"header css classname(s)",name:"headerClassName",required:!1,type:{name:"string"}},titleClassName:{defaultValue:null,description:"title css classname(s)",name:"titleClassName",required:!1,type:{name:"string"}},loading:{defaultValue:null,description:"loading state",name:"loading",required:!1,type:{name:"boolean"}},height:{defaultValue:null,description:"height",name:"height",required:!1,type:{name:"string | number"}},width:{defaultValue:null,description:"width",name:"width",required:!1,type:{name:"string | number"}},minHeight:{defaultValue:null,description:"minimum height",name:"minHeight",required:!1,type:{name:"string | number"}},minWidth:{defaultValue:null,description:"minimum width",name:"minWidth",required:!1,type:{name:"string | number"}},maxHeight:{defaultValue:null,description:"maximum height",name:"maxHeight",required:!1,type:{name:"string | number"}},maxWidth:{defaultValue:null,description:"maximum width",name:"maxWidth",required:!1,type:{name:"string | number"}},onClose:{defaultValue:null,description:"close handler",name:"onClose",required:!1,type:{name:"(() => void)"}},className:{defaultValue:null,description:"css classname(s)",name:"className",required:!1,type:{name:"string"}},"data-testid":{defaultValue:null,description:"data attribute for test id",name:"data-testid",required:!1,type:{name:"string"}},"data-test-value":{defaultValue:null,description:"data attribute for test value",name:"data-test-value",required:!1,type:{name:"any"}},icon:{defaultValue:null,description:"svg path / image url",name:"icon",required:!1,type:{name:"string"}},rtlFlip:{defaultValue:null,description:"flip icon in rtl",name:"rtlFlip",required:!1,type:{name:"boolean"}},iconBg:{defaultValue:null,description:"icon background color",name:"iconBg",required:!1,type:{name:"string"}},iconColor:{defaultValue:null,description:"icon color",name:"iconColor",required:!1,type:{name:"string"}},expandable:{defaultValue:null,description:"Allow expanding",name:"expandable",required:!1,type:{name:"boolean"}},expanded:{defaultValue:null,description:"Default expanded",name:"expanded",required:!1,type:{name:"boolean"}},onExpand:{defaultValue:null,description:"Expand event",name:"onExpand",required:!1,type:{name:"((state: boolean) => void)"}},collapsable:{defaultValue:null,description:"Allow collapsing",name:"collapsable",required:!1,type:{name:"boolean"}},collapsed:{defaultValue:null,description:"Default collapsed",name:"collapsed",required:!1,type:{name:"boolean"}},onCollapse:{defaultValue:null,description:"Collapse event",name:"onCollapse",required:!1,type:{name:"((state: boolean) => void)"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/components/panel/Panel.tsx#Panel"]={docgenInfo:Panel.__docgenInfo,name:"Panel",path:"packages/core/src/components/panel/Panel.tsx#Panel"})}catch(__react_docgen_typescript_loader_error){}const PanelGroup=({children,activePanel,onActiveChange})=>{const[expandedPanel,setExpandedPanel]=(0,react.useState)(),panels=(0,hooks_useEffectDebugger.ZU)((()=>react.Children.toArray(children).map(((child,index)=>child.props.panelId||index))),[children],"PanelGroup children");(0,hooks_useEffectDebugger.al)((()=>{setExpandedPanel(activePanel??panels[0])}),[activePanel,panels],"PanelGroup setActive");const changeExpanded=(0,react.useCallback)(((collapsed,id,handler)=>(collapsed||(setExpandedPanel(id),onActiveChange?.(id)),handler?.(collapsed),id!==expandedPanel)),[onActiveChange,expandedPanel]);return(0,jsx_runtime.jsx)("div",{"data-ref":"panelGroup",className:classnames_default()(panel_Panel_module.panelGroup,"flex flex-col overflow-auto area-content p-px"),children:react.Children.toArray(children).map(((child,index)=>(0,react.cloneElement)(child,{panelId:child.props.panelId||index,collapsable:!0,onCollapse:(b,id)=>changeExpanded(b,id,child.props.onCollapse),collapsed:expandedPanel!==(child.props.panelId||index)})))})};try{PanelGroup.displayName="PanelGroup",PanelGroup.__docgenInfo={description:"",displayName:"PanelGroup",props:{activePanel:{defaultValue:null,description:"active panel id / index",name:"activePanel",required:!1,type:{name:"string | number"}},onActiveChange:{defaultValue:null,description:"active change callback",name:"onActiveChange",required:!1,type:{name:"((panelId: string) => void)"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/components/panel/PanelGroup.tsx#PanelGroup"]={docgenInfo:PanelGroup.__docgenInfo,name:"PanelGroup",path:"packages/core/src/components/panel/PanelGroup.tsx#PanelGroup"})}catch(__react_docgen_typescript_loader_error){}const PanelStack=({active,children,className,onPanelChange,onBack,...rest})=>{const stackRef=useRef(null),[history,setHistory]=useState([]),[,startTransition]=useTransition(),panels=useMemo((()=>new Map(Children.toArray(children).map((child=>child.props&&[child.props.panelId??"root",child])))),[children]);useEffect((()=>{startTransition((()=>{onPanelChange?.(history[0]??"root"),stackRef.current?.dispatchEvent(new Event("updatePopper",{bubbles:!0}))}))}),[onPanelChange,history]);const goBack=useCallback((()=>{!1!==onBack?.(history[0],history[1]??"root")&&setHistory(history.slice(1))}),[history,onBack]),currentPanel=useMemo((()=>panels.get(history[0])??panels.values().next().value),[history,panels]),checkMenuClick=useCallback((e=>{const panelKey=e.target?.dataset?.panel;return!panelKey||("back"===panelKey?goBack():"root"===panelKey?!1!==onBack?.(history[0],"root")&&setHistory([]):panels.has(panelKey)&&setHistory([panelKey,...history]),e.stopPropagation(),e.preventDefault(),!1)}),[goBack,history,panels,onBack]);return _jsx("div",{...rest,role:"none",ref:stackRef,className,onClickCapture:checkMenuClick,children:currentPanel&&cloneElement(currentPanel,{onBack:history.length>0?goBack:void 0})})};try{PanelStack.displayName="PanelStack",PanelStack.__docgenInfo={description:"",displayName:"PanelStack",props:{active:{defaultValue:null,description:"active panel id",name:"active",required:!1,type:{name:"string"}},onPanelChange:{defaultValue:null,description:"panel change event callback",name:"onPanelChange",required:!1,type:{name:"((panelId: string) => void)"}},onBack:{defaultValue:null,description:"navigate to previous panel in history",name:"onBack",required:!1,type:{name:"((panelId: string, nextPanelId: string) => boolean)"}},className:{defaultValue:null,description:"css classname(s)",name:"className",required:!1,type:{name:"string"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/components/panel/PanelStack.tsx#PanelStack"]={docgenInfo:PanelStack.__docgenInfo,name:"PanelStack",path:"packages/core/src/components/panel/PanelStack.tsx#PanelStack"})}catch(__react_docgen_typescript_loader_error){}var Progress_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/components/progress/Progress.module.css"),Progress_module_options={};Progress_module_options.styleTagTransform=styleTagTransform_default(),Progress_module_options.setAttributes=setAttributesWithoutAttributes_default(),Progress_module_options.insert=insertBySelector_default().bind(null,"head"),Progress_module_options.domAPI=styleDomAPI_default(),Progress_module_options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(Progress_module.A,Progress_module_options);const progress_Progress_module=Progress_module.A&&Progress_module.A.locals?Progress_module.A.locals:void 0,ProgressBar_SizeMap={"":"0.875rem",xxs:"3px",xs:"0.375rem",sm:"0.625rem",md:"1.125rem",lg:"1.5rem",xl:"2rem"},ProgressBar=({value=0,size,color="primary",label="",animate})=>{const actualValue=(0,hooks_useEffectDebugger.ZU)((()=>Math.min(Math.max(value,0),100)),[value],"ProgressBar value"),progressVar=(0,hooks_useEffectDebugger.ZU)((()=>({"--progress":actualValue})),[actualValue],"ProgressBar cssVar");return(0,jsx_runtime.jsxs)("div",{className:classnames_default()(progress_Progress_module.progressbar,(0,utils.Iq)(color),"block bg-dimmed relative rounded font-bold overflow-hidden whitespace-nowrap"),style:{...progressVar,minHeight:ProgressBar_SizeMap[size??""],fontSize:ProgressBar_SizeMap[size??""]},"data-animate":animate,"aria-hidden":"true",children:[!["xxs","xs","sm"].includes(size??"")&&(0,jsx_runtime.jsxs)("div",{className:"absolute inset-0 text-center z-0 align-top",children:[label," ",esm.yL.percent(actualValue/100)]}),(0,jsx_runtime.jsx)("div",{className:classnames_default()(progress_Progress_module.progressTrack,animate&&progress_Progress_module.progressAnimate,"h-full overflow-clip bg-current relative z-0")}),!["xxs","xs","sm"].includes(size??"")&&(0,jsx_runtime.jsx)("div",{className:classnames_default()("h-full absolute inset-0 overflow-hidden z-1"),"data-label":`${label} ${esm.yL.percent(actualValue/100)}`})]})};try{ProgressBar.displayName="ProgressBar",ProgressBar.__docgenInfo={description:"",displayName:"ProgressBar",props:{value:{defaultValue:{value:"0"},description:"progress value (0-100)",name:"value",required:!1,type:{name:"number"}},size:{defaultValue:null,description:"size",name:"size",required:!1,type:{name:"enum",value:[{value:'"xs"'},{value:'"sm"'},{value:'"md"'},{value:'"lg"'},{value:'"xl"'},{value:'"xxs"'}]}},color:{defaultValue:{value:"primary"},description:"color",name:"color",required:!1,type:{name:"enum",value:[{value:'"primary"'},{value:'"accent"'},{value:'"info"'},{value:'"danger"'},{value:'"success"'},{value:'"warning"'}]}},animate:{defaultValue:null,description:"animate",name:"animate",required:!1,type:{name:"boolean"}},label:{defaultValue:{value:""},description:"progress label",name:"label",required:!1,type:{name:"string"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/components/progress/ProgressBar.tsx#ProgressBar"]={docgenInfo:ProgressBar.__docgenInfo,name:"ProgressBar",path:"packages/core/src/components/progress/ProgressBar.tsx#ProgressBar"})}catch(__react_docgen_typescript_loader_error){}const ProgressCircle_SizeMap={"":"1rem",sm:"0.875rem",md:"1.125rem",lg:"1.5rem",xl:"2rem"},ProgressCircle=({value=0,size="sm",color="primary"})=>{const actualValue=(0,hooks_useEffectDebugger.ZU)((()=>Math.min(Math.max(value,0),100)),[value],"ProgressCirle value"),strokeDashoffset=(0,hooks_useEffectDebugger.ZU)((()=>2*Math.PI*44*(1-actualValue/100)),[actualValue],"ProgressCirle dashOffset");return(0,jsx_runtime.jsxs)("div",{className:classnames_default()("inline-block w-[4em] h-[4em] text-lg relative",(0,utils.Iq)(color)),"aria-hidden":"true",style:{fontSize:ProgressCircle_SizeMap[size]},children:[(0,jsx_runtime.jsxs)("svg",{viewBox:"0 0 100 100",className:classnames_default()("absolute inset-0 w-full h-full stroke-dimmed"),children:[(0,jsx_runtime.jsx)("circle",{cx:"50",cy:"50",r:"44",strokeWidth:"12",strokeOpacity:"0.25",fillOpacity:"0"}),(0,jsx_runtime.jsx)("circle",{cx:"50",cy:"50",r:"44",stroke:"currentColor",strokeWidth:"12",fillOpacity:"0",style:{transform:"rotate(-90deg)",transformOrigin:"center",strokeDasharray:2*Math.PI*44,strokeDashoffset,transition:"stroke-dashoffset 0.5s"}})]}),(0,jsx_runtime.jsx)("span",{className:"flex w-full h-full items-center justify-center select-none font-bold text-[0.625em]",children:esm.yL.percent(actualValue/100)})]})};try{ProgressCircle.displayName="ProgressCircle",ProgressCircle.__docgenInfo={description:"",displayName:"ProgressCircle",props:{value:{defaultValue:{value:"0"},description:"progress value (0-100)",name:"value",required:!1,type:{name:"number"}},size:{defaultValue:{value:"sm"},description:"size",name:"size",required:!1,type:{name:"enum",value:[{value:'"sm"'},{value:'"md"'},{value:'"lg"'},{value:'"xl"'}]}},color:{defaultValue:{value:"primary"},description:"color",name:"color",required:!1,type:{name:"enum",value:[{value:'"primary"'},{value:'"accent"'},{value:'"info"'},{value:'"danger"'},{value:'"success"'},{value:'"warning"'}]}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/components/progress/ProgressCircle.tsx#ProgressCircle"]={docgenInfo:ProgressCircle.__docgenInfo,name:"ProgressCircle",path:"packages/core/src/components/progress/ProgressCircle.tsx#ProgressCircle"})}catch(__react_docgen_typescript_loader_error){}var TabPanel_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/components/tabpanel/TabPanel.module.css"),TabPanel_module_options={};TabPanel_module_options.styleTagTransform=styleTagTransform_default(),TabPanel_module_options.setAttributes=setAttributesWithoutAttributes_default(),TabPanel_module_options.insert=insertBySelector_default().bind(null,"head"),TabPanel_module_options.domAPI=styleDomAPI_default(),TabPanel_module_options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(TabPanel_module.A,TabPanel_module_options);const tabpanel_TabPanel_module=TabPanel_module.A&&TabPanel_module.A.locals?TabPanel_module.A.locals:void 0,Tab=({ref,as,id,className,label,icon,iconBg,iconColor,rtlFlip,badge,disabled,onClose,active,minimal,onClick,tabFlex,color,actions,tooltip,activeClassName,...aria})=>{const badgeProps=(0,react.useMemo)((()=>(0,Badge.l)(badge)),[badge]),tooltipProps=(0,react.useMemo)((()=>(0,esm.Kg)(tooltip)?{content:tooltip}:tooltip??{}),[tooltip]),E=as??"button",W=tooltip?overlays.m_:react.Fragment;return(0,jsx_runtime.jsx)(W,{...tooltipProps,children:(0,jsx_runtime.jsxs)(E,{"data-id":id,disabled,"data-color":color,"data-inner-clickable":!0,className:classnames_default()(tabpanel_TabPanel_module.tabButton,className,active&&"active pointer-events-none",active&&activeClassName,disabled&&"text-tint-500 pointer-events-none",tabFlex?"flex-1":"flex-initial max-w-36 min-w-24","flex items-center justify-center px-1 rounded overflow-hidden"),onClick:()=>!active&&onClick?.(id),ref,...aria,children:[icon&&(0,jsx_runtime.jsx)(Icon.I,{icon,bg:iconBg,color:iconColor,rtlFlip,className:"flex-content"}),!minimal&&(0,jsx_runtime.jsx)("label",{className:"flex-initial truncate text-center px-1 py-1",children:label}),badge&&(0,jsx_runtime.jsx)(Badge.E,{...badgeProps,placement:minimal?"end":"",className:classnames_default()("me-1",badgeProps.className)}),actions&&active&&(0,jsx_runtime.jsx)(DropdownTool,{className:"bg-base/20 me-1 z-5",children:actions}),onClose&&(0,jsx_runtime.jsx)("span",{role:"none",className:classnames_default()("cursor-pointer me-1 opacity-65 hover:opacity-90 pointer-events-auto"),onClick:e=>{onClose?.(),e.stopPropagation()},children:"×"})]})})};try{Tab.displayName="Tab",Tab.__docgenInfo={description:"",displayName:"Tab",props:{id:{defaultValue:null,description:"tab id",name:"id",required:!1,type:{name:"any"}},label:{defaultValue:null,description:"tab label",name:"label",required:!1,type:{name:"string"}},color:{defaultValue:null,description:"tab color",name:"color",required:!1,type:{name:"any"}},badge:{defaultValue:null,description:"tab badge",name:"badge",required:!1,type:{name:"string | number | BadgeType"}},disabled:{defaultValue:null,description:"disabled",name:"disabled",required:!1,type:{name:"boolean"}},tabFlex:{defaultValue:null,description:"tab flex to fill button",name:"tabFlex",required:!1,type:{name:"boolean"}},activeClassName:{defaultValue:null,description:"className for active state",name:"activeClassName",required:!1,type:{name:"string"}},actions:{defaultValue:null,description:"action dropdown body",name:"actions",required:!1,type:{name:"ReactElement>"}},onClose:{defaultValue:null,description:"close handler",name:"onClose",required:!1,type:{name:"(() => unknown)"}},onClick:{defaultValue:null,description:"click handler",name:"onClick",required:!1,type:{name:"((id: string) => unknown)"}},className:{defaultValue:null,description:"css classname(s)",name:"className",required:!1,type:{name:"string"}},ref:{defaultValue:null,description:"",name:"ref",required:!1,type:{name:"Ref"}},"data-testid":{defaultValue:null,description:"data attribute for test id",name:"data-testid",required:!1,type:{name:"string"}},"data-test-value":{defaultValue:null,description:"data attribute for test value",name:"data-test-value",required:!1,type:{name:"any"}},icon:{defaultValue:null,description:"svg path / image url",name:"icon",required:!1,type:{name:"string"}},rtlFlip:{defaultValue:null,description:"flip icon in rtl",name:"rtlFlip",required:!1,type:{name:"boolean"}},iconBg:{defaultValue:null,description:"icon background color",name:"iconBg",required:!1,type:{name:"string"}},iconColor:{defaultValue:null,description:"icon color",name:"iconColor",required:!1,type:{name:"string"}},tooltip:{defaultValue:null,description:"floating tooltip",name:"tooltip",required:!1,type:{name:"string | TooltipType"}},as:{defaultValue:null,description:"The component used for the root node.\nEither a string to use a HTML element or a component.",name:"as",required:!1,type:{name:"ElementType"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/components/tabpanel/Tab.tsx#Tab"]={docgenInfo:Tab.__docgenInfo,name:"Tab",path:"packages/core/src/components/tabpanel/Tab.tsx#Tab"})}catch(__react_docgen_typescript_loader_error){}const TabPanel=({children,headerClassName,orientation="top",activeTab,justify,variant,tabFlex,append,prepend,gap,onBeforeChange,onChange})=>{const[active,setActive]=(0,react.useState)(),[tabs,rest]=(0,react.useMemo)((()=>react.Children.toArray(children).reduce(((ret,node)=>((0,utils.hr)(node,Tab)?ret[0].push(node):ret[1].push(node),ret)),[[],[]])),[children]);(0,react.useEffect)((()=>{setActive(activeTab)}),[activeTab]);const activeTabPanel=(0,react.useMemo)((()=>tabs.find((tab=>tab.props.id===active))?.props.children),[tabs,active]),handleClick=(0,react.useCallback)((id=>{Promise.resolve(onBeforeChange?.(id,active)).then((ret=>{!1!==ret&&(setActive(id),onChange?.(id))}))}),[onBeforeChange,onChange,active]);return(0,jsx_runtime.jsxs)("div",{className:classnames_default()(tabpanel_TabPanel_module.tabPanel,"area-content grid bg-base overflow-hidden"),"data-orientation":orientation,"data-variant":variant??"default",children:[(0,jsx_runtime.jsxs)("div",{className:classnames_default()(tabpanel_TabPanel_module.tabHeader,headerClassName,justify&&`justify-${justify}`,["start","end"].includes(orientation)&&"flex-col","flex flex-nowrap overflow-hidden items-center"),children:[prepend,(0,jsx_runtime.jsx)("div",{className:classnames_default()(tabpanel_TabPanel_module.tabList,justify&&`justify-${justify}`,["start","end"].includes(orientation)&&"flex-col","flex flex-1 flex-nowrap overflow-auto scroll-thin"),style:{gap},children:tabs.map((node=>(0,react.cloneElement)(node,{tabFlex:node.props.tabFlex??tabFlex,onClick:handleClick,active:node.props.id===active})))}),append]}),rest,activeTabPanel]})};try{TabPanel.displayName="TabPanel",TabPanel.__docgenInfo={description:"",displayName:"TabPanel",props:{orientation:{defaultValue:{value:"top"},description:"tab list orientation",name:"orientation",required:!1,type:{name:"enum",value:[{value:'"end"'},{value:'"start"'},{value:'"top"'},{value:'"bottom"'}]}},justify:{defaultValue:null,description:"justify buttons",name:"justify",required:!1,type:{name:"enum",value:[{value:'"center"'},{value:'"end"'},{value:'"start"'}]}},variant:{defaultValue:null,description:"tab variations",name:"variant",required:!1,type:{name:"enum",value:[{value:'"outline"'},{value:'"solid"'},{value:'"soft"'}]}},tabFlex:{defaultValue:null,description:"tab button flex to fill tabs",name:"tabFlex",required:!1,type:{name:"boolean"}},gap:{defaultValue:null,description:"tab button gap",name:"gap",required:!1,type:{name:"number"}},activeTab:{defaultValue:null,description:"current active tab",name:"activeTab",required:!1,type:{name:"string"}},headerClassName:{defaultValue:null,description:"tab list className",name:"headerClassName",required:!1,type:{name:"string"}},append:{defaultValue:null,description:"append element",name:"append",required:!1,type:{name:"ReactElement>"}},prepend:{defaultValue:null,description:"prepend element",name:"prepend",required:!1,type:{name:"ReactElement>"}},onChange:{defaultValue:null,description:"change handler",name:"onChange",required:!1,type:{name:"((id: string) => void)"}},onBeforeChange:{defaultValue:null,description:"before close handler, return false to prevent change",name:"onBeforeChange",required:!1,type:{name:"((nextTab: string, currentTab?: string) => unknown)"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/components/tabpanel/TabPanel.tsx#TabPanel"]={docgenInfo:TabPanel.__docgenInfo,name:"TabPanel",path:"packages/core/src/components/tabpanel/TabPanel.tsx#TabPanel"})}catch(__react_docgen_typescript_loader_error){}var useIsRtl=__webpack_require__("./packages/core/src/hooks/useIsRtl.ts");var Aside_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/core/aside/Aside.module.css"),Aside_module_options={};Aside_module_options.styleTagTransform=styleTagTransform_default(),Aside_module_options.setAttributes=setAttributesWithoutAttributes_default(),Aside_module_options.insert=insertBySelector_default().bind(null,"head"),Aside_module_options.domAPI=styleDomAPI_default(),Aside_module_options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(Aside_module.A,Aside_module_options);const aside_Aside_module=Aside_module.A&&Aside_module.A.locals?Aside_module.A.locals:void 0,Aside=({children,title,icon,iconBg,iconColor,rtlFlip,className,bodyClassName,headerClassName,resizeable,flyout,onFlyout,collapsed,collapsable,onCollapse,actions,loading,align="start",width:wd="20rem",minWidth="2rem",maxWidth="30vw","data-testid":testId,"data-test-value":testValue})=>{const elementRef=(0,react.useRef)(null),[width,setWidth]=(0,react.useState)(wd),[peek,setPeek]=(0,react.useState)(!1),[isCollapsed,toggleCollapse]=usePropToggle(collapsed,onCollapse);(0,react.useEffect)((()=>{setWidth(wd)}),[wd]);const resizeHandleProps=((onResize,{isReverse=!1,isVertical=!1,onStart,onEnd})=>{const refEl=(0,react.useRef)(null),isRtl=(0,useIsRtl.O)(),onResizing=(0,react.useCallback)((evt=>{if(null!=refEl.current){const reversed=1==((isRtl?1:0)^(isReverse?1:0)),box=refEl.current?.getBoundingClientRect(),x=(evt.clientX-(reversed?box.left:box.right))*(reversed?-1:1),y=evt.clientY-box.bottom;onResize({x,y})}}),[onResize,isRtl,isReverse]),onResizeEnd=(0,react.useCallback)((()=>{document.body.style.cursor="unset",document.removeEventListener("mousemove",onResizing),document.removeEventListener("mouseup",onResizeEnd),onEnd?.()}),[onEnd,onResizing]),onResizeStart=(0,react.useCallback)((e=>{e.preventDefault(),document.body.style.cursor=isVertical?"row-resize":"col-resize",document.addEventListener("mousemove",onResizing),document.addEventListener("mouseup",onResizeEnd),onStart?.()}),[onResizing,onResizeEnd,onStart]);return{ref:refEl,onMouseDown:onResizeStart}})((0,react.useRef)((({x})=>{null!=elementRef.current&&setWidth(elementRef.current.offsetWidth+x)})).current,{isReverse:"end"===align}),tryPeek=(0,react.useCallback)((()=>{isCollapsed&&(flyout?(setPeek(!peek),!peek&&onFlyout?.()):toggleCollapse())}),[peek,flyout,isCollapsed,onFlyout,toggleCollapse]);(0,hooks_useEffectDebugger.KI)((()=>{if(peek){const handler=e=>{null==e.target.closest('[data-ref="asideBody"]')&&null==e.target.closest('[data-ref="asidePlaceholder"]')&&setPeek(!1)};return document.addEventListener("mouseup",handler),()=>document.removeEventListener("mouseup",handler)}}),[peek],"Aside peek");const widthStyles=(0,react.useMemo)((()=>({width,minWidth,maxWidth})),[width,minWidth,maxWidth]);return(0,jsx_runtime.jsxs)("aside",{className:classnames_default()(aside_Aside_module.aside,className,"overflow-hidden grid"),"data-align":align,"data-flyout":peek,"data-loading":loading,"data-collapsed":isCollapsed,style:isCollapsed?void 0:widthStyles,"data-testid":testId,"data-test-value":testValue,children:[(0,jsx_runtime.jsxs)("header",{className:classnames_default()(aside_Aside_module.asideHeader,headerClassName,"grid area-head items-center"),"data-testid":"aside-header",children:[title&&(0,jsx_runtime.jsx)("div",{className:classnames_default()(aside_Aside_module.asideTitle,"truncate py-0.5 px-1 select-none pointer-events-none"),children:title}),collapsable&&(0,jsx_runtime.jsx)(Icon.I,{"aria-label":isCollapsed?"expand":"collapse",className:classnames_default()(aside_Aside_module.asideCollapse,"p-2 select-none"),icon:icons.O.chevronLeft,rtlFlip:!0,onClick:toggleCollapse,"data-ref":"asideToggle"}),icon&&(0,jsx_runtime.jsx)(Icon.I,{icon,bg:iconBg,color:iconColor,rtlFlip,className:classnames_default()(aside_Aside_module.asideIcon,"p-1 text-lg select-none pointer-events-none")}),actions&&(0,jsx_runtime.jsx)("div",{className:aside_Aside_module.asideActions,children:actions})]}),loading&&(0,jsx_runtime.jsx)(Animations.Rh,{}),isCollapsed&&(0,jsx_runtime.jsx)("div",{role:"none",onClick:tryPeek,"data-ref":"asidePlaceholder",className:aside_Aside_module.asidePlaceholder}),(0,jsx_runtime.jsx)("section",{ref:elementRef,"data-ref":"asideBody",className:classnames_default()(aside_Aside_module.asideBody,bodyClassName,"overflow-hidden grid"),style:isCollapsed?widthStyles:void 0,"data-testid":"aside-body",children:(0,jsx_runtime.jsx)(ErrorBoundary,{children})}),resizeable&&(0,jsx_runtime.jsx)("div",{...resizeHandleProps,className:classnames_default()(aside_Aside_module.asideResizer,"before:absolute before:inset-0 before:w-1 before:top-1/2 before:-translate-y-1/2 before:transition-all")})]})};try{Aside.displayName="Aside",Aside.__docgenInfo={description:"Side panel",displayName:"Aside",props:{title:{defaultValue:null,description:"page title",name:"title",required:!1,type:{name:"ReactNode"}},align:{defaultValue:{value:"start"},description:"align inline-end",name:"align",required:!1,type:{name:"enum",value:[{value:'"end"'},{value:'"start"'}]}},actions:{defaultValue:null,description:"header actions",name:"actions",required:!1,type:{name:"Elements"}},headerClassName:{defaultValue:null,description:"header class",name:"headerClassName",required:!1,type:{name:"string"}},bodyClassName:{defaultValue:null,description:"header class",name:"bodyClassName",required:!1,type:{name:"string"}},loading:{defaultValue:null,description:"show loading indicator",name:"loading",required:!1,type:{name:"boolean"}},resizeable:{defaultValue:null,description:"allow resize",name:"resizeable",required:!1,type:{name:"boolean"}},flyout:{defaultValue:null,description:"allow flyout with collapsed",name:"flyout",required:!1,type:{name:"boolean"}},onFlyout:{defaultValue:null,description:"event handler when shown",name:"onFlyout",required:!1,type:{name:"(() => void)"}},width:{defaultValue:null,description:"fixed width",name:"width",required:!1,type:{name:"string | number"}},maxWidth:{defaultValue:{value:"30vw"},description:"max width",name:"maxWidth",required:!1,type:{name:"string | number"}},minWidth:{defaultValue:{value:"2rem"},description:"min width",name:"minWidth",required:!1,type:{name:"string | number"}},icon:{defaultValue:null,description:"svg path / image url",name:"icon",required:!1,type:{name:"string"}},rtlFlip:{defaultValue:null,description:"flip icon in rtl",name:"rtlFlip",required:!1,type:{name:"boolean"}},iconBg:{defaultValue:null,description:"icon background color",name:"iconBg",required:!1,type:{name:"string"}},iconColor:{defaultValue:null,description:"icon color",name:"iconColor",required:!1,type:{name:"string"}},collapsable:{defaultValue:null,description:"Allow collapsing",name:"collapsable",required:!1,type:{name:"boolean"}},collapsed:{defaultValue:null,description:"Default collapsed",name:"collapsed",required:!1,type:{name:"boolean"}},onCollapse:{defaultValue:null,description:"Collapse event",name:"onCollapse",required:!1,type:{name:"((state: boolean) => void)"}},className:{defaultValue:null,description:"css classname(s)",name:"className",required:!1,type:{name:"string"}},"data-testid":{defaultValue:null,description:"data attribute for test id",name:"data-testid",required:!1,type:{name:"string"}},"data-test-value":{defaultValue:null,description:"data attribute for test value",name:"data-test-value",required:!1,type:{name:"any"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/core/aside/Aside.tsx#Aside"]={docgenInfo:Aside.__docgenInfo,name:"Aside",path:"packages/core/src/core/aside/Aside.tsx#Aside"})}catch(__react_docgen_typescript_loader_error){}const useDebounce=(callback,deps,delay=100)=>{const timerRef=(0,react.useRef)();return(0,react.useMemo)((()=>{"undefined"!=typeof window&&window.clearTimeout(timerRef.current);const fn=(...args)=>{"undefined"!=typeof window&&(window.clearTimeout(timerRef.current),timerRef.current=window.setTimeout((()=>callback?.(...args)),delay))};return fn.cancel=()=>{"undefined"!=typeof window&&clearTimeout(timerRef.current)},fn}),deps)};var ResizeObserver_es=__webpack_require__("./node_modules/resize-observer-polyfill/dist/ResizeObserver.es.js");var Content_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/core/content/Content.module.css"),Content_module_options={};Content_module_options.styleTagTransform=styleTagTransform_default(),Content_module_options.setAttributes=setAttributesWithoutAttributes_default(),Content_module_options.insert=insertBySelector_default().bind(null,"head"),Content_module_options.domAPI=styleDomAPI_default(),Content_module_options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(Content_module.A,Content_module_options);const content_Content_module=Content_module.A&&Content_module.A.locals?Content_module.A.locals:void 0,Content=({ref,children,className,onScroll,onResize,"data-testid":testId,"data-test-value":testValue})=>{const resizeHandle=(onResize=>{const ref=(0,react.useRef)(null),[,startTransition]=(0,react.useTransition)(),callbackResize=useDebounce((()=>{startTransition((()=>{if(onResize&&null!=ref.current){const{offsetWidth:width,offsetHeight:height}=ref.current;onResize?.({width,height})}}))}),[onResize]);return(0,react.useEffect)((()=>{if(null!=ref.current){const ob=new ResizeObserver_es.A(callbackResize);return ob.observe(ref.current),()=>{ob.disconnect()}}}),[callbackResize,ref]),ref})(onResize),scrollHandler=useDebounce((e=>{const el=e.target;onScroll?.({left:el.scrollLeft,top:el.scrollTop,scrollHeight:el.scrollHeight,scrollWidth:el.scrollWidth,width:el.offsetWidth,height:el.offsetHeight},e)}),[onScroll]);return(0,react.useImperativeHandle)(ref,(()=>resizeHandle.current),[]),(0,jsx_runtime.jsx)("section",{"data-ref":"content","data-testid":testId,"data-test-value":testValue,ref:resizeHandle,onScroll:scrollHandler,className:classnames_default()(content_Content_module.content,"area-content",className),children:(0,jsx_runtime.jsx)(ErrorBoundary,{children})})};try{Content.displayName="Content",Content.__docgenInfo={description:"Scrollable content element",displayName:"Content",props:{onScroll:{defaultValue:null,description:"scroll vevent handler",name:"onScroll",required:!1,type:{name:"((scroll: ScrollObject, event: MouseEvent) => void)"}},onResize:{defaultValue:null,description:"scroll vevent handler",name:"onResize",required:!1,type:{name:"((event: SizeObject) => void)"}},className:{defaultValue:null,description:"css classname(s)",name:"className",required:!1,type:{name:"string"}},ref:{defaultValue:null,description:"",name:"ref",required:!1,type:{name:"Ref"}},"data-testid":{defaultValue:null,description:"data attribute for test id",name:"data-testid",required:!1,type:{name:"string"}},"data-test-value":{defaultValue:null,description:"data attribute for test value",name:"data-test-value",required:!1,type:{name:"any"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/core/content/Content.tsx#Content"]={docgenInfo:Content.__docgenInfo,name:"Content",path:"packages/core/src/core/content/Content.tsx#Content"})}catch(__react_docgen_typescript_loader_error){}var Page_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/core/page/Page.module.css"),Page_module_options={};Page_module_options.styleTagTransform=styleTagTransform_default(),Page_module_options.setAttributes=setAttributesWithoutAttributes_default(),Page_module_options.insert=insertBySelector_default().bind(null,"head"),Page_module_options.domAPI=styleDomAPI_default(),Page_module_options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(Page_module.A,Page_module_options);const page_Page_module=Page_module.A&&Page_module.A.locals?Page_module.A.locals:void 0,Page=({children,paper,title,titleClassName,icon,rtlFlip,iconBg,iconColor,loading,"data-testid":testId,"data-test-value":testValue})=>(0,jsx_runtime.jsxs)("div",{"data-testid":testId,"data-test-value":testValue,"data-loading":loading,className:classnames_default()(page_Page_module.page,"overflow-hidden grid area-content",paper&&"shadow-paper m-[6px] rounded-capped"),children:[title&&(0,jsx_runtime.jsxs)("div",{"data-ref":"pageTitle",className:classnames_default()(page_Page_module.pageTitle,"select-none flex gap-1 items-center justify-center px-1 py-0.5 font-medium text-center",titleClassName),children:[icon&&(0,jsx_runtime.jsx)(Icon.I,{icon,size:"1.25em",rtlFlip,bg:iconBg,color:iconColor}),title]}),loading&&(0,jsx_runtime.jsx)(Animations.Rh,{}),children]});try{Page.displayName="Page",Page.__docgenInfo={description:"The page component used typically for routes, is a structured layout used within an application to organize and display content in a sectioned format, ensuring a consistent and intuitive user experience.",displayName:"Page",props:{title:{defaultValue:null,description:"page title",name:"title",required:!1,type:{name:"string"}},titleClassName:{defaultValue:null,description:"title element className",name:"titleClassName",required:!1,type:{name:"string"}},paper:{defaultValue:null,description:"paper style drop shadow",name:"paper",required:!1,type:{name:"boolean"}},loading:{defaultValue:null,description:"loading indicator",name:"loading",required:!1,type:{name:"boolean"}},icon:{defaultValue:null,description:"svg path / image url",name:"icon",required:!1,type:{name:"string"}},rtlFlip:{defaultValue:null,description:"flip icon in rtl",name:"rtlFlip",required:!1,type:{name:"boolean"}},iconBg:{defaultValue:null,description:"icon background color",name:"iconBg",required:!1,type:{name:"string"}},iconColor:{defaultValue:null,description:"icon color",name:"iconColor",required:!1,type:{name:"string"}},"data-testid":{defaultValue:null,description:"data attribute for test id",name:"data-testid",required:!1,type:{name:"string"}},"data-test-value":{defaultValue:null,description:"data attribute for test value",name:"data-test-value",required:!1,type:{name:"any"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/core/page/Page.tsx#Page"]={docgenInfo:Page.__docgenInfo,name:"Page",path:"packages/core/src/core/page/Page.tsx#Page"})}catch(__react_docgen_typescript_loader_error){}var Responsive_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/core/responsive/Responsive.module.css"),Responsive_module_options={};Responsive_module_options.styleTagTransform=styleTagTransform_default(),Responsive_module_options.setAttributes=setAttributesWithoutAttributes_default(),Responsive_module_options.insert=insertBySelector_default().bind(null,"head"),Responsive_module_options.domAPI=styleDomAPI_default(),Responsive_module_options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(Responsive_module.A,Responsive_module_options);const responsive_Responsive_module=Responsive_module.A&&Responsive_module.A.locals?Responsive_module.A.locals:void 0,Container=({children,fullWidth,className,gutter,...aria})=>(0,jsx_runtime.jsx)("div",{className:classnames_default()(responsive_Responsive_module.container,className,!fullWidth&&"container mx-auto"),"data-gutter":gutter,...aria,children}),Row=({children,gutter,noWrap,orient,align="stretch",justify="start",className,...aria})=>(0,jsx_runtime.jsx)("div",{className:classnames_default()(responsive_Responsive_module.row,className,"flex","row"===orient&&"flex-row","col"===orient&&"flex-col","row-reverse"===orient&&"flex-row-reverse","col-reverse"===orient&&"flex-col-reverse",noWrap?"flex-nowrap":"flex-wrap",`justify-${justify}`,`items-${align}`),"data-gutter":gutter,...aria,children}),Col=({children,flex,align,className,stretchContent,...aria})=>(0,jsx_runtime.jsx)("div",{className:classnames_default()(responsive_Responsive_module.col,className,stretchContent&&responsive_Responsive_module.stretchContent,"auto"===flex&&"flex-content","fill"===flex&&"flex-1","full"===flex&&"flex-full",align&&`self-${align}`),...aria,children});try{Container.displayName="Container",Container.__docgenInfo={description:"Responsive layout container",displayName:"Container",props:{fullWidth:{defaultValue:null,description:"use full width",name:"fullWidth",required:!1,type:{name:"boolean"}},gutter:{defaultValue:null,description:"gutter size",name:"gutter",required:!1,type:{name:"enum",value:[{value:"0"},{value:'"xs"'},{value:'"sm"'},{value:'"md"'},{value:'"lg"'},{value:'"xl"'}]}},className:{defaultValue:null,description:"css classname(s)",name:"className",required:!1,type:{name:"string"}},"data-testid":{defaultValue:null,description:"data attribute for test id",name:"data-testid",required:!1,type:{name:"string"}},"data-test-value":{defaultValue:null,description:"data attribute for test value",name:"data-test-value",required:!1,type:{name:"any"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/core/responsive/Responsive.tsx#Container"]={docgenInfo:Container.__docgenInfo,name:"Container",path:"packages/core/src/core/responsive/Responsive.tsx#Container"})}catch(__react_docgen_typescript_loader_error){}try{Row.displayName="Row",Row.__docgenInfo={description:"",displayName:"Row",props:{noWrap:{defaultValue:null,description:"no wrapping",name:"noWrap",required:!1,type:{name:"boolean"}},gutter:{defaultValue:null,description:"gutter size",name:"gutter",required:!1,type:{name:"enum",value:[{value:"0"},{value:'"xs"'},{value:'"sm"'},{value:'"md"'},{value:'"lg"'},{value:'"xl"'}]}},orient:{defaultValue:null,description:"flex orientation",name:"orient",required:!1,type:{name:"enum",value:[{value:'"col"'},{value:'"row"'},{value:'"row-reverse"'},{value:'"col-reverse"'}]}},align:{defaultValue:{value:"stretch"},description:"align items",name:"align",required:!1,type:{name:"enum",value:[{value:'"center"'},{value:'"end"'},{value:'"start"'},{value:'"stretch"'}]}},justify:{defaultValue:{value:"start"},description:"justify items",name:"justify",required:!1,type:{name:"enum",value:[{value:'"center"'},{value:'"end"'},{value:'"start"'},{value:'"between"'}]}},className:{defaultValue:null,description:"css classname(s)",name:"className",required:!1,type:{name:"string"}},"data-testid":{defaultValue:null,description:"data attribute for test id",name:"data-testid",required:!1,type:{name:"string"}},"data-test-value":{defaultValue:null,description:"data attribute for test value",name:"data-test-value",required:!1,type:{name:"any"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/core/responsive/Responsive.tsx#Row"]={docgenInfo:Row.__docgenInfo,name:"Row",path:"packages/core/src/core/responsive/Responsive.tsx#Row"})}catch(__react_docgen_typescript_loader_error){}try{Col.displayName="Col",Col.__docgenInfo={description:"",displayName:"Col",props:{align:{defaultValue:{value:"stretch"},description:"align items",name:"align",required:!1,type:{name:"enum",value:[{value:'"center"'},{value:'"end"'},{value:'"start"'},{value:'"stretch"'}]}},flex:{defaultValue:null,description:"column flex",name:"flex",required:!1,type:{name:"enum",value:[{value:'"fill"'},{value:'"auto"'},{value:'"full"'}]}},stretchContent:{defaultValue:null,description:"stretch inner content",name:"stretchContent",required:!1,type:{name:"boolean"}},className:{defaultValue:null,description:"css classname(s)",name:"className",required:!1,type:{name:"string"}},"data-testid":{defaultValue:null,description:"data attribute for test id",name:"data-testid",required:!1,type:{name:"string"}},"data-test-value":{defaultValue:null,description:"data attribute for test value",name:"data-test-value",required:!1,type:{name:"any"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/core/responsive/Responsive.tsx#Col"]={docgenInfo:Col.__docgenInfo,name:"Col",path:"packages/core/src/core/responsive/Responsive.tsx#Col"})}catch(__react_docgen_typescript_loader_error){}var Section_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/core/section/Section.module.css"),Section_module_options={};Section_module_options.styleTagTransform=styleTagTransform_default(),Section_module_options.setAttributes=setAttributesWithoutAttributes_default(),Section_module_options.insert=insertBySelector_default().bind(null,"head"),Section_module_options.domAPI=styleDomAPI_default(),Section_module_options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(Section_module.A,Section_module_options);const section_Section_module=Section_module.A&&Section_module.A.locals?Section_module.A.locals:void 0,Section=({children,className,dir,ref})=>(0,jsx_runtime.jsx)("div",{"data-ref":"section",dir,ref,className:classnames_default()(section_Section_module.section,className,"grid area-content overflow-hidden"),children:(0,jsx_runtime.jsx)(ErrorBoundary,{children})});try{Section.displayName="Section",Section.__docgenInfo={description:"The section component provides a structured layout used within a page to organize and display content in a sectioned format, ensuring a consistent and intuitive user experience.",displayName:"Section",props:{className:{defaultValue:null,description:"css classname(s)",name:"className",required:!1,type:{name:"string"}},ref:{defaultValue:null,description:"",name:"ref",required:!1,type:{name:"Ref"}},dir:{defaultValue:null,description:"",name:"dir",required:!1,type:{name:"enum",value:[{value:'"ltr"'},{value:'"rtl"'}]}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/core/section/Section.tsx#Section"]={docgenInfo:Section.__docgenInfo,name:"Section",path:"packages/core/src/core/section/Section.tsx#Section"})}catch(__react_docgen_typescript_loader_error){}var Theme_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/core/theme/Theme.module.css"),Theme_module_options={};Theme_module_options.styleTagTransform=styleTagTransform_default(),Theme_module_options.setAttributes=setAttributesWithoutAttributes_default(),Theme_module_options.insert=insertBySelector_default().bind(null,"head"),Theme_module_options.domAPI=styleDomAPI_default(),Theme_module_options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(Theme_module.A,Theme_module_options);const theme_Theme_module=Theme_module.A&&Theme_module.A.locals?Theme_module.A.locals:void 0,ThemeProvider=({children,branding,primaryColor,accentColor,tintColor,colorScheme,rounding})=>{const styles=(0,react.useMemo)((()=>{const ret={};return primaryColor&&(0,esm._o)(primaryColor)&&(ret["--primary"]=primaryColor),primaryColor&&!(0,esm._o)(primaryColor)&&(ret["--primary"]=`var(--${primaryColor})`),accentColor&&(0,esm._o)(accentColor)&&(ret["--accent"]=accentColor),accentColor&&!(0,esm._o)(accentColor)&&(ret["--accent"]=`var(--${accentColor})`),tintColor&&(0,esm._o)(tintColor)&&(ret["--tint"]=tintColor),tintColor&&!(0,esm._o)(tintColor)&&(ret["--tint"]=`var(--${tintColor})`),ret}),[primaryColor,accentColor,tintColor]);return(0,jsx_runtime.jsx)("div",{style:styles,"data-color-scheme":colorScheme,"data-rounding":rounding,className:classnames_default()(theme_Theme_module.themeProvider,"contents theme-base",branding),children})};try{ThemeProvider.displayName="ThemeProvider",ThemeProvider.__docgenInfo={description:"Theme override",displayName:"ThemeProvider",props:{colorScheme:{defaultValue:null,description:"light/dark color scheme",name:"colorScheme",required:!1,type:{name:"enum",value:[{value:'"light"'},{value:'"dark"'}]}},branding:{defaultValue:null,description:"branding css className\n\n.branding {\n --primary: #color;\n --accent: #color;\n --tint: #color;\n}",name:"branding",required:!1,type:{name:"string"}},primaryColor:{defaultValue:null,description:"primary color",name:"primaryColor",required:!1,type:{name:"string"}},accentColor:{defaultValue:null,description:"accent color",name:"accentColor",required:!1,type:{name:"string"}},tintColor:{defaultValue:null,description:"tint mix color",name:"tintColor",required:!1,type:{name:"string"}},rounding:{defaultValue:null,description:"component rounding",name:"rounding",required:!1,type:{name:"enum",value:[{value:'"full"'},{value:'"minimal"'},{value:'"normal"'}]}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/core/theme/ThemeProvider.tsx#ThemeProvider"]={docgenInfo:ThemeProvider.__docgenInfo,name:"ThemeProvider",path:"packages/core/src/core/theme/ThemeProvider.tsx#ThemeProvider"})}catch(__react_docgen_typescript_loader_error){}var Viewport_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/core/viewport/Viewport.module.css"),Viewport_module_options={};Viewport_module_options.styleTagTransform=styleTagTransform_default(),Viewport_module_options.setAttributes=setAttributesWithoutAttributes_default(),Viewport_module_options.insert=insertBySelector_default().bind(null,"head"),Viewport_module_options.domAPI=styleDomAPI_default(),Viewport_module_options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(Viewport_module.A,Viewport_module_options);const viewport_Viewport_module=Viewport_module.A&&Viewport_module.A.locals?Viewport_module.A.locals:void 0,Viewport=({children})=>(0,jsx_runtime.jsx)("div",{"data-ref":"viewport",className:classnames_default()(viewport_Viewport_module.viewport,"grid overflow-hidden absolute inset-0"),children});try{Viewport.displayName="Viewport",Viewport.__docgenInfo={description:"The application viewport is the main container that defines the visible area where content is displayed and interacted with.",displayName:"Viewport",props:{}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/core/viewport/Viewport.tsx#Viewport"]={docgenInfo:Viewport.__docgenInfo,name:"Viewport",path:"packages/core/src/core/viewport/Viewport.tsx#Viewport"})}catch(__react_docgen_typescript_loader_error){}const ar_namespaceObject=JSON.parse('{"error":{"title":"أُووبس! لقد كسرنا شيئا"},"action":{"ok":"حسنا","add":"اضف جديد","save":"حفظ","more":"أظهر المزيد","less":"عرض أقل","back":"عودة","copy":"ينسخ","copied":"نسخ","close":"قريب","apply":"تطبيق","delete":"حذف","submit":"تقديم","cancel":"إلغاء","preview":"معاينة"}}');((key,languageBundles)=>{const callback=()=>{Object.keys(languageBundles).forEach((lang=>{const bundle=languageBundles[lang];esm_i18next.Ay.addResourceBundle(lang,key,bundle,!0,!1)}))};esm_i18next.Ay.isInitialized?callback():esm_i18next.Ay.on("initialized",callback)})("core",{en:JSON.parse('{"locale":{"en":"English","ar":"عربى","de":"Deutsche","es":"Español","fr":"Français","it":"Italiano","jp":"日本語","ko":"한국어","pt":"Português","ru":"Pусский","zh":"中国人"},"error":{"title":"OOPS! We broke something"},"action":{"ok":"OK","add":"Add New","save":"Save","more":"Show more","less":"Show less","back":"Back","copy":"Copy","copied":"Copied","close":"Close","apply":"Apply","delete":"Delete","submit":"Submit","cancel":"Cancel","preview":"Preview"}}'),ar:ar_namespaceObject});var Tooltip=__webpack_require__("./packages/core/src/overlays/tooltip/Tooltip.tsx"),Typography_module=__webpack_require__("./packages/core/src/typography/Typography.module.css");const AbbrText=({color,children,tooltip,content})=>{const TooltipWrapper=(0,react.useMemo)((()=>tooltip?Tooltip.m:react.Fragment),[tooltip]),tooltipProps=(0,react.useMemo)((()=>({...(0,Tooltip.Y)(tooltip),copyContent:content})),[tooltip,content]);return(0,jsx_runtime.jsx)(TooltipWrapper,{...tooltipProps,children:(0,jsx_runtime.jsx)("abbr",{className:classnames_default()(Typography_module.A.abbr,"whitespace-nowrap",color&&(0,utils.Iq)(color)),style:color?{"--abbr-color":(0,utils.oU)(color)}:void 0,children})})},Abbr=({children,abbr,className,renderer,copyContent="text"})=>{const abbrRender=(0,react.useCallback)(((text,tooltip,color="")=>(0,jsx_runtime.jsx)(AbbrText,{color,tooltip,content:"tooltip"===copyContent?tooltip:text,children:renderer?.([text,tooltip,color])??text})),[renderer,copyContent]),inner=(0,hooks_useEffectDebugger.ZU)((()=>{if((0,esm.Kg)(children)&&!(0,esm.Im)(abbr)){const tokens=(0,esm.qw)(children,abbr.map((([keyword])=>keyword))),titles=abbr.reduce(((t,[a,tooltip="",color=""])=>({...t,[a.toLowerCase()]:{tooltip,color}})),{});return(0,jsx_runtime.jsx)(react.Fragment,{children:tokens.map((([start,text],i)=>{const{tooltip="",color=""}=titles[text.toLowerCase()]??{};return(0,jsx_runtime.jsxs)(react.Fragment,{children:[start,text?abbrRender(text,tooltip,color):null]},i)}))})}return children}),[children,abbr,abbrRender],"TextAbbr inner");return(0,jsx_runtime.jsx)("span",{className,children:inner})};try{Abbr.displayName="Abbr",Abbr.__docgenInfo={description:"Typography abbr component to wrap text parts in `abbr` with tooltip",displayName:"Abbr",props:{copyContent:{defaultValue:{value:"text"},description:"content to copy using the tooltip copy action",name:"copyContent",required:!1,type:{name:"enum",value:[{value:'"text"'},{value:'"tooltip"'}]}},abbr:{defaultValue:null,description:"texts to match and abbreviate within\n\n[textPart, tooltip, color (class name or color string)]",name:"abbr",required:!0,type:{name:"[textPart: string, tooltip: string, color?: string | undefined][]"}},renderer:{defaultValue:null,description:"renderer callback",name:"renderer",required:!1,type:{name:"((part: string[]) => Element)"}},className:{defaultValue:null,description:"css classname(s)",name:"className",required:!1,type:{name:"string"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/typography/Abbr.tsx#Abbr"]={docgenInfo:Abbr.__docgenInfo,name:"Abbr",path:"packages/core/src/typography/Abbr.tsx#Abbr"})}catch(__react_docgen_typescript_loader_error){}const Copy=({text,size,className})=>{const{t}=(0,es.Bd)("core"),doCopy=(0,react.useCallback)((()=>{navigator.clipboard.writeText(text)}),[text]);return(0,jsx_runtime.jsx)(Tooltip.m,{content:t("action.copy"),children:(0,jsx_runtime.jsx)(Button.$,{icon:icons.O.copy,"aria-label":"Copy text",actionMessage:t("action.copied"),variant:"link",size,className:classnames_default()(className,"align-bottom"),onClick:doCopy})})};try{Copy.displayName="Copy",Copy.__docgenInfo={description:"",displayName:"Copy",props:{text:{defaultValue:null,description:"",name:"text",required:!0,type:{name:"string"}},size:{defaultValue:null,description:"button size",name:"size",required:!1,type:{name:"enum",value:[{value:'"xs"'},{value:'"sm"'},{value:'"md"'},{value:'"lg"'},{value:'"xl"'}]}},className:{defaultValue:null,description:"css classname(s)",name:"className",required:!1,type:{name:"string"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/typography/Copy.tsx#Copy"]={docgenInfo:Copy.__docgenInfo,name:"Copy",path:"packages/core/src/typography/Copy.tsx#Copy"})}catch(__react_docgen_typescript_loader_error){}const MarkText=({color,children})=>(0,jsx_runtime.jsx)("mark",{className:classnames_default()(Typography_module.A.mark,"whitespace-nowrap",color&&(0,utils.MN)(color)),style:color?{"--mark-color":(0,utils.oU)(color)}:void 0,children}),Mark=({children,mark,renderer})=>{const abbrRender=(0,react.useCallback)(((text,color="")=>(0,jsx_runtime.jsx)(MarkText,{color,children:renderer?.([text,color])??text})),[renderer]),inner=(0,hooks_useEffectDebugger.ZU)((()=>{if((0,esm.Kg)(children)&&!(0,esm.Im)(mark)){const tokens=(0,esm.qw)(children,mark.map((([keyword])=>keyword))),titles=mark.reduce(((t,[a,color=""])=>({...t,[a.toLowerCase()]:{color}})),{});return(0,jsx_runtime.jsx)(react.Fragment,{children:tokens.map((([start,text],i)=>{const{color=""}=titles[text.toLowerCase()]??{};return(0,jsx_runtime.jsxs)(react.Fragment,{children:[start,text?abbrRender(text,color):null]},i)}))})}return children}),[children,mark,abbrRender],"TextMark inner");return(0,jsx_runtime.jsx)("span",{children:inner})};try{Mark.displayName="Mark",Mark.__docgenInfo={description:"Typography mark component to wrap text parts in `mark`",displayName:"Mark",props:{mark:{defaultValue:null,description:"texts to match and abbreviate within\n\n[textPart, color (class name or color string)]",name:"mark",required:!0,type:{name:"[textPart: string, color?: string | undefined][]"}},renderer:{defaultValue:null,description:"renderer callback",name:"renderer",required:!1,type:{name:"((part: string[]) => Element)"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/typography/Mark.tsx#Mark"]={docgenInfo:Mark.__docgenInfo,name:"Mark",path:"packages/core/src/typography/Mark.tsx#Mark"})}catch(__react_docgen_typescript_loader_error){}const Text=({children,className,inline,bg,color,family,size,clamp,align,...aria})=>{const{t}=(0,es.Bd)("core"),refContainer=(0,react.useRef)(null),[clipped,setClipped]=(0,react.useState)(!1),[showMore,toggleShowMore,refShowMore]=usePropToggle(!1),checkHeight=(0,react.useCallback)((()=>{const el=refContainer.current;el&&(0,esm.Et)(clamp)&&clamp>0&&!refShowMore.current&&setClipped((0,utils.ru)(el.firstElementChild,el)>el.offsetHeight)}),[clamp]);(0,hooks_useEffectDebugger.KI)((()=>{if(refContainer.current){const ob=new ResizeObserver(checkHeight);return ob.observe(refContainer.current),checkHeight(),()=>{ob.disconnect()}}}),[children,checkHeight],"Text check height");const styles=(0,hooks_useEffectDebugger.ZU)((()=>{const s={};return bg&&(s.backgroundColor=(0,utils.oU)(bg)),color&&(s.color=(0,utils.oU)(color)),align&&(s.textAlign=align),size&&!(size in types.F)&&(s.fontSize=size),size&&size in types.F&&(s.fontSize=types.F[size]),s}),[bg,color,size,align,family],"Text styles");return inline?(0,jsx_runtime.jsx)("span",{className,style:styles,...aria,children}):(0,jsx_runtime.jsxs)("article",{className,children:[(0,jsx_runtime.jsx)("div",{ref:refContainer,style:{"--text-clamp":showMore?"unset":clamp??"unset"},children:(0,jsx_runtime.jsx)("div",{className:classnames_default()(Typography_module.A.text,"text-reset mixed-lang px-[2px] whitespace-pre-wrap",family&&`font-${family}`,bg&&(0,utils.MN)(bg),color&&(0,utils.Iq)(color),clamp&&"line-clamp-1"),style:styles,...aria,children})}),clipped&&(0,jsx_runtime.jsx)("div",{className:Typography_module.A.moreLink,children:(0,jsx_runtime.jsxs)("span",{role:"link",tabIndex:0,"data-inner-clickable":!0,onClick:e=>[e.stopPropagation(),toggleShowMore()],children:["...",t("action."+(showMore?"less":"more"))]})})]})};try{Text.displayName="Text",Text.__docgenInfo={description:"Typography text component",displayName:"Text",props:{inline:{defaultValue:null,description:"render text as inline span",name:"inline",required:!1,type:{name:"boolean"}},bg:{defaultValue:null,description:"text background (CSS color / tailwind color)",name:"bg",required:!1,type:{name:"string"}},color:{defaultValue:null,description:"text color (CSS color / tailwind color)",name:"color",required:!1,type:{name:"string"}},size:{defaultValue:null,description:"text size",name:"size",required:!1,type:{name:"string | number"}},family:{defaultValue:null,description:"font family",name:"family",required:!1,type:{name:"enum",value:[{value:'"sans"'},{value:'"serif"'},{value:'"mono"'}]}},align:{defaultValue:null,description:"text align",name:"align",required:!1,type:{name:"enum",value:[{value:'"center"'},{value:'"end"'},{value:'"start"'},{value:'"justify"'}]}},clamp:{defaultValue:null,description:"text line clamp",name:"clamp",required:!1,type:{name:"enum",value:[{value:"1"},{value:"4"},{value:"6"},{value:"7"},{value:"3"},{value:"2"},{value:"9"},{value:"5"},{value:"8"}]}},className:{defaultValue:null,description:"css classname(s)",name:"className",required:!1,type:{name:"string"}},"data-testid":{defaultValue:null,description:"data attribute for test id",name:"data-testid",required:!1,type:{name:"string"}},"data-test-value":{defaultValue:null,description:"data attribute for test value",name:"data-test-value",required:!1,type:{name:"any"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/typography/Text.tsx#Text"]={docgenInfo:Text.__docgenInfo,name:"Text",path:"packages/core/src/typography/Text.tsx#Text"})}catch(__react_docgen_typescript_loader_error){}var Title=__webpack_require__("./packages/core/src/typography/Title.tsx");const useNavigator=(totalCount=0,defaultIndex=0)=>{const[currentIndex,setCurrentIndex]=(0,react.useState)(defaultIndex),refCurrent=(0,react.useRef)(defaultIndex),onNavigate=(0,react.useCallback)((dir=>{-1===dir&&(refCurrent.current=refCurrent.current>0?refCurrent.current-1:totalCount-1),1===dir&&(refCurrent.current=refCurrent.current+1(0,jsx_runtime.jsxs)("span",{className:"text-muted leading-5",children:[currentIndex+1,"/",totalCount]})),[currentIndex,totalCount]),onNavigate,currentIndex,setCurrentIndex}},useOverlayService=ModalOrFlyout=>{const[Overlay,setOverlay]=(0,react.useState)(null);return[Overlay,async({onClose,...props}={})=>await new Promise((resolve=>{setOverlay((0,jsx_runtime.jsx)(ModalOrFlyout,{...props,onClose:args=>{setOverlay(null),resolve(args),onClose?.(args)}}))}))]};try{useOverlayService.displayName="useOverlayService",useOverlayService.__docgenInfo={description:"",displayName:"useOverlayService",props:{}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/hooks/useOverlayService.tsx#useOverlayService"]={docgenInfo:useOverlayService.__docgenInfo,name:"useOverlayService",path:"packages/core/src/hooks/useOverlayService.tsx#useOverlayService"})}catch(__react_docgen_typescript_loader_error){}},"./packages/core/src/overlays/alert/Alert.tsx":(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{F:()=>Alert});var jsx_runtime=__webpack_require__("./node_modules/react/jsx-runtime.js"),floating_ui_react=__webpack_require__("./node_modules/@floating-ui/react/dist/floating-ui.react.mjs"),classnames=__webpack_require__("./node_modules/classnames/index.js"),classnames_default=__webpack_require__.n(classnames),react=__webpack_require__("./node_modules/react/index.js"),es=__webpack_require__("./node_modules/react-i18next/dist/es/index.js"),Animations=__webpack_require__("./packages/core/src/components/animations/Animations.tsx"),Button=__webpack_require__("./packages/core/src/components/button/Button.tsx"),Icon=__webpack_require__("./packages/core/src/components/icon/Icon.tsx"),icons=__webpack_require__("./packages/core/src/types/icons.ts"),Title=__webpack_require__("./packages/core/src/typography/Title.tsx"),utils=__webpack_require__("./packages/core/src/utils/index.ts"),injectStylesIntoStyleTag=__webpack_require__("./node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js"),injectStylesIntoStyleTag_default=__webpack_require__.n(injectStylesIntoStyleTag),styleDomAPI=__webpack_require__("./node_modules/style-loader/dist/runtime/styleDomAPI.js"),styleDomAPI_default=__webpack_require__.n(styleDomAPI),insertBySelector=__webpack_require__("./node_modules/style-loader/dist/runtime/insertBySelector.js"),insertBySelector_default=__webpack_require__.n(insertBySelector),setAttributesWithoutAttributes=__webpack_require__("./node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js"),setAttributesWithoutAttributes_default=__webpack_require__.n(setAttributesWithoutAttributes),insertStyleElement=__webpack_require__("./node_modules/style-loader/dist/runtime/insertStyleElement.js"),insertStyleElement_default=__webpack_require__.n(insertStyleElement),styleTagTransform=__webpack_require__("./node_modules/style-loader/dist/runtime/styleTagTransform.js"),styleTagTransform_default=__webpack_require__.n(styleTagTransform),Alert_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/overlays/alert/Alert.module.css"),options={};options.styleTagTransform=styleTagTransform_default(),options.setAttributes=setAttributesWithoutAttributes_default(),options.insert=insertBySelector_default().bind(null,"head"),options.domAPI=styleDomAPI_default(),options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(Alert_module.A,options);const alert_Alert_module=Alert_module.A&&Alert_module.A.locals?Alert_module.A.locals:void 0,Alert=({title,message,color="primary",icon,rtlFlip,actions,onClose,type,okLabel,cancelLabel,placeholder,defaultValue})=>{const{t}=(0,es.Bd)("core"),[value,setValue]=(0,react.useState)(defaultValue),{refs,context}=(0,floating_ui_react.we)({open:!0,onOpenChange:()=>{handleClose(!1)}}),dismiss=(0,floating_ui_react.s9)(context,{outsidePressEvent:"mousedown",escapeKey:!0}),role=(0,floating_ui_react.It)(context),{getFloatingProps}=(0,floating_ui_react.bv)([dismiss,role]),iconType=(0,react.useMemo)((()=>{if(icon)return(0,jsx_runtime.jsx)(Icon.I,{icon,size:"md",rtlFlip,color:color+"-600"});switch(color){case"danger":return(0,jsx_runtime.jsx)(Animations.QK,{type:"cross",className:(0,utils.Iq)(color+"-600")});case"success":return(0,jsx_runtime.jsx)(Animations.QK,{type:"check",className:(0,utils.Iq)(color+"-600")});case"warning":return(0,jsx_runtime.jsx)(Animations.QK,{type:"exclaim",className:(0,utils.Iq)(color+"-600")});default:return(0,jsx_runtime.jsx)(Animations.QK,{type:"confirm"===type?"question":"info",className:(0,utils.Iq)(color+"-600")})}}),[color,type,icon]),handleClose=(0,react.useCallback)((ret=>{refs.floating.current&&(refs.floating.current.dataset.show="false"),setTimeout((()=>{onClose(ret)}),250)}),[onClose]);return(0,react.useLayoutEffect)((()=>{setTimeout((()=>refs.floating.current&&(refs.floating.current.dataset.show="true")),100)}),[]),(0,jsx_runtime.jsx)(floating_ui_react.XF,{children:(0,jsx_runtime.jsx)(floating_ui_react.zR,{lockScroll:!0,style:{zIndex:"var(--z-overlay-mask)"},className:"bg-base/50 backdrop-blur-sm grid place-items-center",children:(0,jsx_runtime.jsx)(floating_ui_react.s3,{context,children:(0,jsx_runtime.jsxs)("dialog",{role:"alertdialog",className:classnames_default()(alert_Alert_module.alert,(0,utils.Z1)(color+"-300"),"grid bg-base border-2 pointer-events-auto overflow-hidden rounded-capped select-none","min-w-72 max-w-sm p-6 relative outline-0 shadow-lg"),ref:refs.setFloating,...getFloatingProps(),children:[(0,jsx_runtime.jsx)("div",{className:classnames_default()("area-[icon] text-lg py-2"),children:iconType}),(0,jsx_runtime.jsx)(Title.h,{className:"font-medium area-[title]",children:title}),(0,jsx_runtime.jsx)("p",{className:"area-[message] py-4",children:message}),"prompt"===type&&(0,jsx_runtime.jsx)("input",{value,placeholder,className:classnames_default()("border rounded focus:border-primary-500"),ref:e=>null!=e&&setTimeout((()=>e.focus()),100),onBlur:e=>e.target.focus(),onChange:e=>setValue(e.target.value),onKeyDown:e=>"Enter"===e.key&&handleClose(value)}),(0,jsx_runtime.jsxs)("div",{className:"flex gap-1 justify-center flex-nowrap pt-2 area-[actions]",children:[(0,jsx_runtime.jsx)("div",{className:"contents",onClickCapture:e=>handleClose(e.target.value),children:actions}),"confirm"===type&&(0,jsx_runtime.jsx)(Button.$,{size:"sm",variant:"link",color,onClick:()=>handleClose(!1),children:cancelLabel??t("action.cancel","Cancel")}),(0,jsx_runtime.jsx)(Button.$,{size:"sm",variant:"solid",color,onClick:()=>handleClose(!0),children:okLabel??t("action.ok","OK")})]}),(0,jsx_runtime.jsx)("div",{className:"absolute top-2 end-2",children:(0,jsx_runtime.jsx)(Button.$,{size:"sm",variant:"link",className:"m-0",color,onClick:()=>handleClose(!1),icon:icons.O.close,"aria-label":"close"})})]})})})})};try{Alert.displayName="Alert",Alert.__docgenInfo={description:"",displayName:"Alert",props:{type:{defaultValue:null,description:"toast type",name:"type",required:!1,type:{name:"enum",value:[{value:'"alert"'},{value:'"confirm"'},{value:'"prompt"'}]}},title:{defaultValue:null,description:"toast title",name:"title",required:!1,type:{name:"string"}},message:{defaultValue:null,description:"toast text",name:"message",required:!0,type:{name:"string | Element"}},color:{defaultValue:{value:"primary"},description:"theme color",name:"color",required:!1,type:{name:"enum",value:[{value:'"primary"'},{value:'"accent"'},{value:'"info"'},{value:'"danger"'},{value:'"success"'},{value:'"warning"'}]}},actions:{defaultValue:null,description:"extra action button",name:"actions",required:!1,type:{name:"Elements"}},okLabel:{defaultValue:null,description:"ok label",name:"okLabel",required:!1,type:{name:"string"}},cancelLabel:{defaultValue:null,description:"cancel label",name:"cancelLabel",required:!1,type:{name:"string"}},placeholder:{defaultValue:null,description:"placeholder for prompt",name:"placeholder",required:!1,type:{name:"string"}},defaultValue:{defaultValue:null,description:"default value for prompt",name:"defaultValue",required:!1,type:{name:"string"}},icon:{defaultValue:null,description:"svg path / image url",name:"icon",required:!1,type:{name:"string"}},rtlFlip:{defaultValue:null,description:"flip icon in rtl",name:"rtlFlip",required:!1,type:{name:"boolean"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/overlays/alert/Alert.tsx#Alert"]={docgenInfo:Alert.__docgenInfo,name:"Alert",path:"packages/core/src/overlays/alert/Alert.tsx#Alert"})}catch(__react_docgen_typescript_loader_error){}},"./packages/core/src/overlays/index.ts":(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{Fc:()=>Alert.F,mj:()=>Flyout,QB:()=>Message.Q,aF:()=>Modal,y8:()=>Toast.y,m_:()=>Tooltip.m});var Alert=__webpack_require__("./packages/core/src/overlays/alert/Alert.tsx"),jsx_runtime=__webpack_require__("./node_modules/react/jsx-runtime.js"),floating_ui_react=__webpack_require__("./node_modules/@floating-ui/react/dist/floating-ui.react.mjs"),classnames=__webpack_require__("./node_modules/classnames/index.js"),classnames_default=__webpack_require__.n(classnames),react=__webpack_require__("./node_modules/react/index.js"),Animations=__webpack_require__("./packages/core/src/components/animations/Animations.tsx"),Icon=__webpack_require__("./packages/core/src/components/icon/Icon.tsx"),HeadFoot=__webpack_require__("./packages/core/src/core/headfoot/HeadFoot.tsx"),HotKeyWrapper=__webpack_require__("./packages/core/src/hotkeys/HotKeyWrapper.tsx"),icons=__webpack_require__("./packages/core/src/types/icons.ts"),injectStylesIntoStyleTag=__webpack_require__("./node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js"),injectStylesIntoStyleTag_default=__webpack_require__.n(injectStylesIntoStyleTag),styleDomAPI=__webpack_require__("./node_modules/style-loader/dist/runtime/styleDomAPI.js"),styleDomAPI_default=__webpack_require__.n(styleDomAPI),insertBySelector=__webpack_require__("./node_modules/style-loader/dist/runtime/insertBySelector.js"),insertBySelector_default=__webpack_require__.n(insertBySelector),setAttributesWithoutAttributes=__webpack_require__("./node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js"),setAttributesWithoutAttributes_default=__webpack_require__.n(setAttributesWithoutAttributes),insertStyleElement=__webpack_require__("./node_modules/style-loader/dist/runtime/insertStyleElement.js"),insertStyleElement_default=__webpack_require__.n(insertStyleElement),styleTagTransform=__webpack_require__("./node_modules/style-loader/dist/runtime/styleTagTransform.js"),styleTagTransform_default=__webpack_require__.n(styleTagTransform),Flyout_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/overlays/flyout/Flyout.module.css"),options={};options.styleTagTransform=styleTagTransform_default(),options.setAttributes=setAttributesWithoutAttributes_default(),options.insert=insertBySelector_default().bind(null,"head"),options.domAPI=styleDomAPI_default(),options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(Flyout_module.A,options);const flyout_Flyout_module=Flyout_module.A&&Flyout_module.A.locals?Flyout_module.A.locals:void 0,Flyout=({icon,iconBg,iconColor,iconClassName,rtlFlip,title,actions,closeOnClick,headerClassName,onClose,onBeforeClose,children,loading,size,width,minWidth,hideMask,align="start",...aria})=>{const{refs,context}=(0,floating_ui_react.we)({open:!0,onOpenChange:()=>{handleClose(!1)}}),dismiss=(0,floating_ui_react.s9)(context,{outsidePressEvent:"mousedown",escapeKey:!0}),role=(0,floating_ui_react.It)(context),{getFloatingProps}=(0,floating_ui_react.bv)([dismiss,role]),handleClose=(0,react.useCallback)(((...args)=>{Promise.resolve(onBeforeClose?.(...args)).then((ret=>{!1!==ret&&(refs.floating.current&&(refs.floating.current.dataset.show="false"),setTimeout((()=>{onClose?.(...args)}),250)),!1===ret&&setTimeout((()=>refs.floating.current?.querySelector('[role="dialog"]')?.focus()),50)}))}),[onBeforeClose,onClose]);(0,react.useEffect)((()=>{setTimeout((()=>{refs.floating.current&&(refs.floating.current.dataset.show="true"),refs.floating.current?.querySelector('[role="dialog"]')?.focus()}),50)}),[]);const tryClosing=(0,react.useCallback)((e=>{(closeOnClick||e.target.closest("[data-flyout-dismiss='true']"))&&setTimeout((()=>{handleClose()}),100)}),[closeOnClick,handleClose]),Wrapper=(0,react.useCallback)((({children})=>hideMask?(0,jsx_runtime.jsx)(react.Fragment,{children}):(0,jsx_runtime.jsx)(floating_ui_react.zR,{lockScroll:!0,style:{zIndex:"var(--z-overlay-mask)"},className:"bg-base/10 backdrop-blur-sm transition-all",children})),[hideMask,handleClose]);return(0,jsx_runtime.jsx)(floating_ui_react.XF,{children:(0,jsx_runtime.jsx)(Wrapper,{children:(0,jsx_runtime.jsx)(floating_ui_react.s3,{context,children:(0,jsx_runtime.jsx)(Wrapper,{children:(0,jsx_runtime.jsx)("div",{"data-align":align,className:classnames_default()(flyout_Flyout_module.flyout,"fixed inset-y-0 overflow-hidden flex flex-col flex-nowrap pointer-events-auto shadow-xl","start"===align?"start-0":"end-0","sm"===size&&"w-[20rem]","md"===size&&"w-[40rem]","lg"===size&&"w-[60vw]","xl"===size&&"w-[80vw]"),style:{width,minWidth},onMouseUpCapture:tryClosing,ref:refs.setFloating,...getFloatingProps(),...aria,...aria,children:(0,jsx_runtime.jsxs)(HotKeyWrapper.O1,{children:[(0,jsx_runtime.jsxs)(HeadFoot.Y,{flex:!0,className:classnames_default()(flyout_Flyout_module.flyoutHeader,headerClassName),children:[icon&&(0,jsx_runtime.jsx)(Icon.I,{icon,bg:iconBg,color:iconColor,className:classnames_default()(iconClassName,"p-1"),rtlFlip}),(0,jsx_runtime.jsx)("label",{className:"flex-1 truncate py-2 px-1",children:title}),actions,(0,jsx_runtime.jsx)(Icon.I,{"data-ref":"panelClose",className:classnames_default()(flyout_Flyout_module.panelAction,"cursor-pointer p-1 text-xl self-stretch"),icon:icons.O.close,onClick:()=>handleClose(!1)})]}),loading&&(0,jsx_runtime.jsx)(Animations.Rh,{}),(0,jsx_runtime.jsx)("div",{role:"dialog",className:classnames_default()(flyout_Flyout_module.flyoutBody,"flex-1 grid overflow-hidden"),tabIndex:0,children})]})})})})})})};try{Flyout.displayName="Flyout",Flyout.__docgenInfo={description:"",displayName:"Flyout",props:{align:{defaultValue:{value:"start"},description:"flyout alignment",name:"align",required:!1,type:{name:"enum",value:[{value:'"end"'},{value:'"start"'}]}},headerClassName:{defaultValue:null,description:"header className",name:"headerClassName",required:!1,type:{name:"string"}},iconClassName:{defaultValue:null,description:"icon className",name:"iconClassName",required:!1,type:{name:"string"}},loading:{defaultValue:null,description:"show loading indicator",name:"loading",required:!1,type:{name:"boolean"}},title:{defaultValue:null,description:"modal title",name:"title",required:!1,type:{name:"string | false | Element"}},actions:{defaultValue:null,description:"header actions",name:"actions",required:!1,type:{name:"Elements"}},size:{defaultValue:null,description:"modal size",name:"size",required:!1,type:{name:"enum",value:[{value:'"sm"'},{value:'"md"'},{value:'"lg"'},{value:'"xl"'},{value:'"screen"'}]}},width:{defaultValue:null,description:"width",name:"width",required:!1,type:{name:"string | number"}},minWidth:{defaultValue:null,description:"minimum width",name:"minWidth",required:!1,type:{name:"string | number"}},hideMask:{defaultValue:null,description:"hide backdrop mask",name:"hideMask",required:!1,type:{name:"boolean"}},closeOnClick:{defaultValue:null,description:"close flyout on any click",name:"closeOnClick",required:!1,type:{name:"boolean"}},onClose:{defaultValue:null,description:"close handler",name:"onClose",required:!0,type:{name:"(...args: AnyObject) => void"}},onBeforeClose:{defaultValue:null,description:"before close handler, return false to prevent close",name:"onBeforeClose",required:!1,type:{name:"((...args: AnyObject) => unknown)"}},"data-testid":{defaultValue:null,description:"data attribute for test id",name:"data-testid",required:!1,type:{name:"string"}},"data-test-value":{defaultValue:null,description:"data attribute for test value",name:"data-test-value",required:!1,type:{name:"any"}},icon:{defaultValue:null,description:"svg path / image url",name:"icon",required:!1,type:{name:"string"}},rtlFlip:{defaultValue:null,description:"flip icon in rtl",name:"rtlFlip",required:!1,type:{name:"boolean"}},iconBg:{defaultValue:null,description:"icon background color",name:"iconBg",required:!1,type:{name:"string"}},iconColor:{defaultValue:null,description:"icon color",name:"iconColor",required:!1,type:{name:"string"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/overlays/flyout/Flyout.tsx#Flyout"]={docgenInfo:Flyout.__docgenInfo,name:"Flyout",path:"packages/core/src/overlays/flyout/Flyout.tsx#Flyout"})}catch(__react_docgen_typescript_loader_error){}var Message=__webpack_require__("./packages/core/src/overlays/message/Message.tsx"),Modal_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/overlays/modal/Modal.module.css"),Modal_module_options={};Modal_module_options.styleTagTransform=styleTagTransform_default(),Modal_module_options.setAttributes=setAttributesWithoutAttributes_default(),Modal_module_options.insert=insertBySelector_default().bind(null,"head"),Modal_module_options.domAPI=styleDomAPI_default(),Modal_module_options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(Modal_module.A,Modal_module_options);const modal_Modal_module=Modal_module.A&&Modal_module.A.locals?Modal_module.A.locals:void 0,Modal=({icon,iconBg,iconColor,iconClassName,rtlFlip,title,actions,headerClassName,onClose,onBeforeClose,children,loading,size,width,height,minHeight,minWidth,...aria})=>{const{refs,context}=(0,floating_ui_react.we)({open:!0,onOpenChange:()=>{handleClose(!1)}}),dismiss=(0,floating_ui_react.s9)(context,{outsidePressEvent:"mousedown",escapeKey:!0}),role=(0,floating_ui_react.It)(context),{getFloatingProps}=(0,floating_ui_react.bv)([dismiss,role]),handleClose=(0,react.useCallback)(((...args)=>{Promise.resolve(onBeforeClose?.(...args)).then((ret=>{!1!==ret&&(refs.floating.current&&(refs.floating.current.dataset.show="false"),setTimeout((()=>{onClose?.(...args)}),250)),!1===ret&&setTimeout((()=>refs.floating.current?.querySelector("[role='dialog']")?.focus()),50)}))}),[onBeforeClose,onClose]);return(0,react.useEffect)((()=>{setTimeout((()=>{refs.floating.current&&(refs.floating.current.dataset.show="true"),refs.floating.current?.querySelector("[role='dialog']")?.focus()}),50)}),[]),(0,jsx_runtime.jsx)(floating_ui_react.XF,{children:(0,jsx_runtime.jsx)(floating_ui_react.zR,{lockScroll:!0,style:{zIndex:"var(--z-overlay-mask)"},className:"bg-base/20 backdrop-blur-sm grid place-items-center",children:(0,jsx_runtime.jsx)(floating_ui_react.s3,{context,children:(0,jsx_runtime.jsx)("dialog",{className:classnames_default()(modal_Modal_module.modal,"rounded-capped relative overflow-hidden flex flex-col flex-nowrap","ring-1 ring-tint-100 ring-offset-1 focus-within:ring-primary-300 shadow-xl","sm"===size&&"w-[20rem]","md"===size&&"w-[40rem]","lg"===size&&"w-[60vw]","xl"===size&&"w-[80vw]","screen"===size&&"w-screen h-screen"),style:{width,height,minHeight,minWidth},ref:refs.setFloating,...getFloatingProps(),...aria,children:(0,jsx_runtime.jsxs)(HotKeyWrapper.O1,{children:[(0,jsx_runtime.jsxs)(HeadFoot.Y,{flex:!0,className:classnames_default()(modal_Modal_module.modalHeader,headerClassName),children:[icon&&(0,jsx_runtime.jsx)(Icon.I,{icon,bg:iconBg,color:iconColor,className:classnames_default()(iconClassName,"p-1"),rtlFlip}),(0,jsx_runtime.jsx)("label",{className:"flex-1 truncate py-2 px-1",children:title}),actions,(0,jsx_runtime.jsx)(Icon.I,{"data-ref":"panelClose",className:classnames_default()(modal_Modal_module.panelAction,"cursor-pointer p-1 text-xl self-stretch"),icon:icons.O.close,onClick:()=>handleClose(!1)})]}),loading&&(0,jsx_runtime.jsx)(Animations.Rh,{}),(0,jsx_runtime.jsx)("div",{role:"dialog",className:classnames_default()(modal_Modal_module.modalBody,"flex-1 grid overflow-hidden"),tabIndex:0,children})]})})})})})};try{Modal.displayName="Modal",Modal.__docgenInfo={description:"",displayName:"Modal",props:{headerClassName:{defaultValue:null,description:"header className",name:"headerClassName",required:!1,type:{name:"string"}},iconClassName:{defaultValue:null,description:"icon className",name:"iconClassName",required:!1,type:{name:"string"}},loading:{defaultValue:null,description:"show loading indicator",name:"loading",required:!1,type:{name:"boolean"}},title:{defaultValue:null,description:"modal title",name:"title",required:!1,type:{name:"string | false | Element"}},actions:{defaultValue:null,description:"header actions",name:"actions",required:!1,type:{name:"Elements"}},size:{defaultValue:null,description:"modal size",name:"size",required:!1,type:{name:"enum",value:[{value:'"sm"'},{value:'"md"'},{value:'"lg"'},{value:'"xl"'},{value:'"screen"'}]}},height:{defaultValue:null,description:"height",name:"height",required:!1,type:{name:"string | number"}},width:{defaultValue:null,description:"width",name:"width",required:!1,type:{name:"string | number"}},minHeight:{defaultValue:null,description:"minimum height",name:"minHeight",required:!1,type:{name:"string | number"}},minWidth:{defaultValue:null,description:"minimum width",name:"minWidth",required:!1,type:{name:"string | number"}},onClose:{defaultValue:null,description:"close handler",name:"onClose",required:!1,type:{name:"((...args: AnyObject) => void)"}},onBeforeClose:{defaultValue:null,description:"before close handler, return false to prevent close",name:"onBeforeClose",required:!1,type:{name:"((...args: AnyObject) => unknown)"}},"data-testid":{defaultValue:null,description:"data attribute for test id",name:"data-testid",required:!1,type:{name:"string"}},"data-test-value":{defaultValue:null,description:"data attribute for test value",name:"data-test-value",required:!1,type:{name:"any"}},icon:{defaultValue:null,description:"svg path / image url",name:"icon",required:!1,type:{name:"string"}},rtlFlip:{defaultValue:null,description:"flip icon in rtl",name:"rtlFlip",required:!1,type:{name:"boolean"}},iconBg:{defaultValue:null,description:"icon background color",name:"iconBg",required:!1,type:{name:"string"}},iconColor:{defaultValue:null,description:"icon color",name:"iconColor",required:!1,type:{name:"string"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/overlays/modal/Modal.tsx#Modal"]={docgenInfo:Modal.__docgenInfo,name:"Modal",path:"packages/core/src/overlays/modal/Modal.tsx#Modal"})}catch(__react_docgen_typescript_loader_error){}var Toast=__webpack_require__("./packages/core/src/overlays/toast/Toast.tsx"),Tooltip=__webpack_require__("./packages/core/src/overlays/tooltip/Tooltip.tsx")},"./packages/core/src/overlays/message/Message.tsx":(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{Q:()=>Message});var jsx_runtime=__webpack_require__("./node_modules/react/jsx-runtime.js"),classnames=__webpack_require__("./node_modules/classnames/index.js"),classnames_default=__webpack_require__.n(classnames),react=__webpack_require__("./node_modules/react/index.js"),Icon=__webpack_require__("./packages/core/src/components/icon/Icon.tsx"),utils=__webpack_require__("./packages/core/src/utils/index.ts"),injectStylesIntoStyleTag=__webpack_require__("./node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js"),injectStylesIntoStyleTag_default=__webpack_require__.n(injectStylesIntoStyleTag),styleDomAPI=__webpack_require__("./node_modules/style-loader/dist/runtime/styleDomAPI.js"),styleDomAPI_default=__webpack_require__.n(styleDomAPI),insertBySelector=__webpack_require__("./node_modules/style-loader/dist/runtime/insertBySelector.js"),insertBySelector_default=__webpack_require__.n(insertBySelector),setAttributesWithoutAttributes=__webpack_require__("./node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js"),setAttributesWithoutAttributes_default=__webpack_require__.n(setAttributesWithoutAttributes),insertStyleElement=__webpack_require__("./node_modules/style-loader/dist/runtime/insertStyleElement.js"),insertStyleElement_default=__webpack_require__.n(insertStyleElement),styleTagTransform=__webpack_require__("./node_modules/style-loader/dist/runtime/styleTagTransform.js"),styleTagTransform_default=__webpack_require__.n(styleTagTransform),Message_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/overlays/message/Message.module.css"),options={};options.styleTagTransform=styleTagTransform_default(),options.setAttributes=setAttributesWithoutAttributes_default(),options.insert=insertBySelector_default().bind(null,"head"),options.domAPI=styleDomAPI_default(),options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(Message_module.A,options);const message_Message_module=Message_module.A&&Message_module.A.locals?Message_module.A.locals:void 0,Message=({title,message,color,icon,rtlFlip,actions,onClose})=>{const elRef=(0,react.useRef)(null),handleClose=(0,react.useCallback)((ret=>{elRef.current&&(elRef.current.dataset.show="false"),setTimeout((()=>{onClose(ret)}),250)}),[onClose]);return(0,react.useLayoutEffect)((()=>{setTimeout((()=>elRef.current&&(elRef.current.dataset.show="true")),100)}),[]),(0,jsx_runtime.jsxs)("div",{className:classnames_default()(message_Message_module.message,color?(0,utils.MN)(color+"-300"):"bg-invert",color?(0,utils.Iq)(color+"-900"):"text-invert","flex flex-nowrap gap-1 px-8 relative justify-center max-w-md pointer-events-auto rounded mb-2 select-none"),ref:elRef,children:[icon&&(0,jsx_runtime.jsx)(Icon.I,{icon,size:"md",rtlFlip}),title&&(0,jsx_runtime.jsx)("div",{className:"font-medium",children:title}),(0,jsx_runtime.jsx)("div",{className:"truncate flex-initial",children:message}),actions&&(0,jsx_runtime.jsx)("div",{className:"flex gap-1 flex-nowrap",onClickCapture:e=>handleClose(e.target.value),children:actions}),(0,jsx_runtime.jsx)("div",{role:"none",className:"cursor-pointer opacity-65 absolute end-1 hover:opacity-90",onClick:()=>handleClose(),children:"×"})]})};try{Message.displayName="Message",Message.__docgenInfo={description:"",displayName:"Message",props:{title:{defaultValue:null,description:"message title",name:"title",required:!1,type:{name:"string"}},message:{defaultValue:null,description:"message text",name:"message",required:!0,type:{name:"string | Element"}},color:{defaultValue:null,description:"theme color",name:"color",required:!1,type:{name:"enum",value:[{value:'"primary"'},{value:'"accent"'},{value:'"info"'},{value:'"danger"'},{value:'"success"'},{value:'"warning"'}]}},actions:{defaultValue:null,description:"extra action button",name:"actions",required:!1,type:{name:"Elements"}},icon:{defaultValue:null,description:"svg path / image url",name:"icon",required:!1,type:{name:"string"}},rtlFlip:{defaultValue:null,description:"flip icon in rtl",name:"rtlFlip",required:!1,type:{name:"boolean"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/overlays/message/Message.tsx#Message"]={docgenInfo:Message.__docgenInfo,name:"Message",path:"packages/core/src/overlays/message/Message.tsx#Message"})}catch(__react_docgen_typescript_loader_error){}},"./packages/core/src/overlays/toast/Toast.tsx":(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{y:()=>Toast});var jsx_runtime=__webpack_require__("./node_modules/react/jsx-runtime.js"),classnames=__webpack_require__("./node_modules/classnames/index.js"),classnames_default=__webpack_require__.n(classnames),react=__webpack_require__("./node_modules/react/index.js"),es=__webpack_require__("./node_modules/react-i18next/dist/es/index.js"),Animations=__webpack_require__("./packages/core/src/components/animations/Animations.tsx"),Button=__webpack_require__("./packages/core/src/components/button/Button.tsx"),Icon=__webpack_require__("./packages/core/src/components/icon/Icon.tsx"),icons=__webpack_require__("./packages/core/src/types/icons.ts"),utils=__webpack_require__("./packages/core/src/utils/index.ts"),injectStylesIntoStyleTag=__webpack_require__("./node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js"),injectStylesIntoStyleTag_default=__webpack_require__.n(injectStylesIntoStyleTag),styleDomAPI=__webpack_require__("./node_modules/style-loader/dist/runtime/styleDomAPI.js"),styleDomAPI_default=__webpack_require__.n(styleDomAPI),insertBySelector=__webpack_require__("./node_modules/style-loader/dist/runtime/insertBySelector.js"),insertBySelector_default=__webpack_require__.n(insertBySelector),setAttributesWithoutAttributes=__webpack_require__("./node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js"),setAttributesWithoutAttributes_default=__webpack_require__.n(setAttributesWithoutAttributes),insertStyleElement=__webpack_require__("./node_modules/style-loader/dist/runtime/insertStyleElement.js"),insertStyleElement_default=__webpack_require__.n(insertStyleElement),styleTagTransform=__webpack_require__("./node_modules/style-loader/dist/runtime/styleTagTransform.js"),styleTagTransform_default=__webpack_require__.n(styleTagTransform),Toast_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/overlays/toast/Toast.module.css"),options={};options.styleTagTransform=styleTagTransform_default(),options.setAttributes=setAttributesWithoutAttributes_default(),options.insert=insertBySelector_default().bind(null,"head"),options.domAPI=styleDomAPI_default(),options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(Toast_module.A,options);const toast_Toast_module=Toast_module.A&&Toast_module.A.locals?Toast_module.A.locals:void 0,Toast=({title,message,color="primary",icon,rtlFlip,actions,onClose,onCloseAll,type,okLabel,cancelLabel})=>{const{t}=(0,es.Bd)("core"),iconType=(0,react.useMemo)((()=>{if(icon)return(0,jsx_runtime.jsx)(Icon.I,{icon,size:"md",rtlFlip,color:color+"-600"});switch(color){case"danger":return(0,jsx_runtime.jsx)(Animations.QK,{type:"cross",className:(0,utils.Iq)(color+"-600")});case"success":return(0,jsx_runtime.jsx)(Animations.QK,{type:"check",className:(0,utils.Iq)(color+"-600")});case"warning":return(0,jsx_runtime.jsx)(Animations.QK,{type:"exclaim",className:(0,utils.Iq)(color+"-600")});default:return(0,jsx_runtime.jsx)(Animations.QK,{type:"confirm"===type?"question":"info",className:(0,utils.Iq)(color+"-600")})}}),[color,type,icon]),elRef=(0,react.useRef)(null),handleClose=(0,react.useCallback)((ret=>{elRef.current&&(elRef.current.dataset.show="false"),setTimeout((()=>{onClose(ret)}),250)}),[onClose]);return(0,react.useLayoutEffect)((()=>{setTimeout((()=>elRef.current&&(elRef.current.dataset.show="true")),100)}),[]),(0,jsx_runtime.jsxs)("div",{role:"alert",className:classnames_default()(toast_Toast_module.toast,(0,utils.Z1)(color+"-300"),"flex flex-nowrap max-w-sm bg-base min-w-72 border pointer-events-auto relative overflow-hidden rounded-capped mt-4 select-none"),ref:elRef,children:[(0,jsx_runtime.jsx)("div",{className:classnames_default()("flex-initial p-2",(0,utils.MN)(color+"-100")),children:iconType}),(0,jsx_runtime.jsxs)("div",{className:classnames_default()((0,utils.MN)(color+"-50/50"),"flex flex-col flex-1 flex-nowrap overflow-hidden p-2"),children:[(0,jsx_runtime.jsxs)("div",{className:"flex flex-nowrap gap-2 items-start",children:[(0,jsx_runtime.jsx)("div",{className:"font-medium flex-1",children:title}),(0,jsx_runtime.jsxs)("div",{children:[(0,jsx_runtime.jsx)(Button.$,{size:"sm",variant:"link",className:"m-0",color,icon:icons.O.closeAll,"aria-label":"close-all",onClick:onCloseAll}),(0,jsx_runtime.jsx)(Button.$,{size:"sm",variant:"link",className:"m-0",color,icon:icons.O.close,"aria-label":"close",onClick:()=>handleClose(!1)})]})]}),(0,jsx_runtime.jsx)("div",{children:message}),("confirm"===type||actions)&&(0,jsx_runtime.jsxs)("div",{className:"flex gap-1 justify-end flex-nowrap pt-2",children:[(0,jsx_runtime.jsx)("div",{className:"contents",onClickCapture:e=>handleClose(e.target.value),children:actions}),"confirm"===type&&(0,jsx_runtime.jsxs)(react.Fragment,{children:[(0,jsx_runtime.jsx)("div",{className:"flex-1"}),(0,jsx_runtime.jsx)(Button.$,{size:"sm",variant:"link",color,onClick:()=>handleClose(!1),children:cancelLabel??t("action.cancel","Cancel")}),(0,jsx_runtime.jsx)(Button.$,{size:"sm",variant:"solid",color,onClick:()=>handleClose(!0),children:okLabel??t("action.ok","OK")})]})]})]})]})};try{Toast.displayName="Toast",Toast.__docgenInfo={description:"",displayName:"Toast",props:{type:{defaultValue:null,description:"toast type",name:"type",required:!1,type:{name:"enum",value:[{value:'"alert"'},{value:'"confirm"'}]}},title:{defaultValue:null,description:"toast title",name:"title",required:!1,type:{name:"string"}},message:{defaultValue:null,description:"toast text",name:"message",required:!0,type:{name:"string | Element"}},color:{defaultValue:{value:"primary"},description:"theme color",name:"color",required:!1,type:{name:"enum",value:[{value:'"primary"'},{value:'"accent"'},{value:'"info"'},{value:'"danger"'},{value:'"success"'},{value:'"warning"'}]}},actions:{defaultValue:null,description:"extra action button",name:"actions",required:!1,type:{name:"Elements"}},okLabel:{defaultValue:null,description:"ok label",name:"okLabel",required:!1,type:{name:"string"}},cancelLabel:{defaultValue:null,description:"cancel label",name:"cancelLabel",required:!1,type:{name:"string"}},icon:{defaultValue:null,description:"svg path / image url",name:"icon",required:!1,type:{name:"string"}},rtlFlip:{defaultValue:null,description:"flip icon in rtl",name:"rtlFlip",required:!1,type:{name:"boolean"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/overlays/toast/Toast.tsx#Toast"]={docgenInfo:Toast.__docgenInfo,name:"Toast",path:"packages/core/src/overlays/toast/Toast.tsx#Toast"})}catch(__react_docgen_typescript_loader_error){}},"./packages/core/src/overlays/tooltip/Tooltip.tsx":(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{m:()=>Tooltip,Y:()=>getTooltipProps});var jsx_runtime=__webpack_require__("./node_modules/react/jsx-runtime.js"),floating_ui_react=__webpack_require__("./node_modules/@floating-ui/react/dist/floating-ui.react.mjs"),floating_ui_dom=__webpack_require__("./node_modules/@floating-ui/dom/dist/floating-ui.dom.mjs"),floating_ui_react_dom=__webpack_require__("./node_modules/@floating-ui/react/node_modules/@floating-ui/react-dom/dist/floating-ui.react-dom.mjs"),esm=__webpack_require__("./packages/utilities/dist/esm/index.js"),classnames=__webpack_require__("./node_modules/classnames/index.js"),classnames_default=__webpack_require__.n(classnames),react=__webpack_require__("./node_modules/react/index.js"),Icon=__webpack_require__("./packages/core/src/components/icon/Icon.tsx"),useIsRtl=__webpack_require__("./packages/core/src/hooks/useIsRtl.ts"),icons=__webpack_require__("./packages/core/src/types/icons.ts"),injectStylesIntoStyleTag=__webpack_require__("./node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js"),injectStylesIntoStyleTag_default=__webpack_require__.n(injectStylesIntoStyleTag),styleDomAPI=__webpack_require__("./node_modules/style-loader/dist/runtime/styleDomAPI.js"),styleDomAPI_default=__webpack_require__.n(styleDomAPI),insertBySelector=__webpack_require__("./node_modules/style-loader/dist/runtime/insertBySelector.js"),insertBySelector_default=__webpack_require__.n(insertBySelector),setAttributesWithoutAttributes=__webpack_require__("./node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js"),setAttributesWithoutAttributes_default=__webpack_require__.n(setAttributesWithoutAttributes),insertStyleElement=__webpack_require__("./node_modules/style-loader/dist/runtime/insertStyleElement.js"),insertStyleElement_default=__webpack_require__.n(insertStyleElement),styleTagTransform=__webpack_require__("./node_modules/style-loader/dist/runtime/styleTagTransform.js"),styleTagTransform_default=__webpack_require__.n(styleTagTransform),Tooltip_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/overlays/tooltip/Tooltip.module.css"),options={};options.styleTagTransform=styleTagTransform_default(),options.setAttributes=setAttributesWithoutAttributes_default(),options.insert=insertBySelector_default().bind(null,"head"),options.domAPI=styleDomAPI_default(),options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(Tooltip_module.A,options);const tooltip_Tooltip_module=Tooltip_module.A&&Tooltip_module.A.locals?Tooltip_module.A.locals:void 0,getTooltipProps=(tooltip,innerRef)=>(0,esm.Kg)(tooltip)||(0,react.isValidElement)(tooltip)?{ref:innerRef,placement:"top",content:tooltip}:(0,esm.Gv)(tooltip)?Object.assign({ref:innerRef,placement:"top"},tooltip):void 0,Tooltip=({ref,children,color,content,open,copyContent,disabled,placement:_placement,...rest})=>{const arrowRef=(0,react.useRef)(null),isRtl=(0,useIsRtl.O)(),[isOpen,setIsOpen]=(0,react.useState)(open);(0,react.useEffect)((()=>{setIsOpen(open)}),[open]);const placement=(0,react.useMemo)((()=>isRtl?_placement?.includes("left")?_placement.replace("left","right"):_placement?.replace("right","left")??"top":_placement??"top"),[_placement,isRtl]),{refs,floatingStyles,context}=(0,floating_ui_react.we)({open:isOpen,strategy:"fixed",onOpenChange:open||disabled?void 0:setIsOpen,whileElementsMounted:floating_ui_dom.ll,placement,middleware:[(0,floating_ui_react_dom.BN)({padding:8}),(0,floating_ui_react_dom.UU)(),(0,floating_ui_react_dom.cY)(9),(0,floating_ui_react_dom.UE)({element:arrowRef})]}),hover=(0,floating_ui_react.Mk)(context,{restMs:250,delay:{open:1e3},handleClose:copyContent?(0,floating_ui_react.iB)({buffer:1}):void 0}),{getReferenceProps,getFloatingProps}=(0,floating_ui_react.bv)([open?void 0:hover]);(0,react.useEffect)((()=>{context.update()}),[content]);const innerRef=(0,react.useMemo)((()=>(0,esm.Px)(ref,children.props.ref,refs.setReference)),[ref,children.props.ref,refs.setReference]),copyEl=(0,react.useMemo)((()=>{if(copyContent){const copyText=(0,esm.Kg)(copyContent)?copyContent:content,handler=()=>{setIsOpen(!1),navigator.clipboard.writeText(copyText.toString())};return(0,jsx_runtime.jsx)("span",{role:"none",className:"ms-2 cursor-pointer text-dimmed flex-content opacity-75 hover:opacity-90 active:opacity-60",onClick:handler,children:(0,jsx_runtime.jsx)(Icon.I,{icon:icons.O.copy})})}return null}),[copyContent,content]);return(0,jsx_runtime.jsxs)(react.Fragment,{children:[(0,react.cloneElement)(children,{ref:innerRef,...open?{}:getReferenceProps(rest)}),isOpen&&content&&(0,jsx_runtime.jsx)(floating_ui_react.XF,{children:(0,jsx_runtime.jsxs)("dfn",{"data-ref":"tooltip","data-color":color,className:classnames_default()(tooltip_Tooltip_module.tooltip,"select-none text-sm not-italic flex py-1 px-2 !max-w-64 rounded shadow-md bg-current"),ref:refs.setFloating,style:floatingStyles,...getFloatingProps(),children:[(0,jsx_runtime.jsx)("span",{className:classnames_default()("font-medium text-dimmed flex-1",(0,esm.Kg)(content)&&"whitespace-pre-wrap mixed-lang"),children:content}),copyEl,(0,jsx_runtime.jsx)(floating_ui_react.ie,{ref:arrowRef,context})]})})]})};try{Tooltip.displayName="Tooltip",Tooltip.__docgenInfo={description:"",displayName:"Tooltip",props:{open:{defaultValue:null,description:"force open",name:"open",required:!1,type:{name:"boolean"}},copyContent:{defaultValue:null,description:"show copy action, pass string as copy content",name:"copyContent",required:!1,type:{name:"string | boolean"}},disabled:{defaultValue:null,description:"",name:"disabled",required:!1,type:{name:"boolean"}},content:{defaultValue:null,description:"tooltip content",name:"content",required:!1,type:{name:"string | Element"}},color:{defaultValue:null,description:"tooltip color",name:"color",required:!1,type:{name:"enum",value:[{value:'"primary"'},{value:'"accent"'},{value:'"info"'},{value:'"danger"'},{value:'"success"'},{value:'"warning"'}]}},placement:{defaultValue:null,description:"tooltip placement",name:"placement",required:!1,type:{name:"enum",value:[{value:'"top-start"'},{value:'"top-end"'},{value:'"bottom-start"'},{value:'"bottom-end"'},{value:'"top"'},{value:'"bottom"'},{value:'"right"'},{value:'"left"'},{value:'"right-end"'},{value:'"right-start"'},{value:'"left-end"'},{value:'"left-start"'}]}},ref:{defaultValue:null,description:"",name:"ref",required:!1,type:{name:"Ref"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/overlays/tooltip/Tooltip.tsx#Tooltip"]={docgenInfo:Tooltip.__docgenInfo,name:"Tooltip",path:"packages/core/src/overlays/tooltip/Tooltip.tsx#Tooltip"})}catch(__react_docgen_typescript_loader_error){}},"./packages/core/src/types/icons.ts":(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{var CoreIcons;__webpack_require__.d(__webpack_exports__,{O:()=>CoreIcons}),function(CoreIcons){CoreIcons.chevronDown="M6.173 7.29l5.827 5.827 5.827-5.827 1.79 1.803-7.617 7.617-7.617-7.617 1.79-1.803z",CoreIcons.chevronLeft="M16.94 18.107l-6.107-6.107 6.107-6.12-1.88-1.88-8 8 8 8 1.88-1.893z",CoreIcons.chevronRight="M7.453 18.107l6.107-6.107-6.107-6.12 1.88-1.88 8 8-8 8-1.88-1.893z",CoreIcons.chevronUp="M6.171 16.705l5.829-5.816 5.829 5.816 1.791-1.791-7.619-7.619-7.619 7.619 1.791 1.791z",CoreIcons.chevronsDown="M17.959 3.295l1.831 1.831-7.79 7.79-7.79-7.79 1.831-1.831 5.959 5.946 5.959-5.946zM17.959 11.085l1.831 1.831-7.79 7.79-7.79-7.79 1.831-1.831 5.959 5.946 5.959-5.946z",CoreIcons.chevronsLeft="M20.94 5.88l-1.88-1.88-8 8 8 8 1.88-1.88-6.107-6.12 6.107-6.12zM12.94 5.88l-1.88-1.88-8 8 8 8 1.88-1.88-6.107-6.12 6.107-6.12z",CoreIcons.chevronsRight="M3.060 5.88l1.88-1.88 8 8-8 8-1.88-1.88 6.107-6.12-6.107-6.12zM11.060 5.88l1.88-1.88 8 8-8 8-1.88-1.88 6.107-6.12-6.107-6.12z",CoreIcons.chevronsUp="M6.041 20.705l-1.831-1.831 7.79-7.79 7.79 7.79-1.831 1.831-5.959-5.946-5.959 5.946zM6.041 12.915l-1.831-1.831 7.79-7.79 7.79 7.79-1.831 1.831-5.959-5.946-5.959 5.946z",CoreIcons.pageFirst="M20.273 18.12l-6.12-6.12 6.12-6.12-1.88-1.88-8 8 8 8 1.88-1.88zM3.727 4h2.667v16h-2.667v-16z",CoreIcons.pageLast="M3.727 5.88l6.12 6.12-6.12 6.12 1.88 1.88 8-8-8-8-1.88 1.88zM17.607 4h2.667v16h-2.667v-16z",CoreIcons.arrowDown="M18.293 11.293l-5.293 5.293v-11.586c0-0.552-0.448-1-1-1s-1 0.448-1 1v11.586l-5.293-5.293c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414l7 7c0.092 0.092 0.202 0.166 0.324 0.217 0.245 0.101 0.521 0.101 0.766 0 0.118-0.049 0.228-0.121 0.324-0.217l7-7c0.391-0.391 0.391-1.024 0-1.414s-1.024-0.391-1.414 0z",CoreIcons.arrowLeft="M12.707 18.293l-5.293-5.293h11.586c0.552 0 1-0.448 1-1s-0.448-1-1-1h-11.586l5.293-5.293c0.391-0.391 0.391-1.024 0-1.414s-1.024-0.391-1.414 0l-7 7c-0.096 0.096-0.168 0.206-0.217 0.324-0.051 0.122-0.076 0.253-0.076 0.383 0 0.256 0.098 0.512 0.293 0.707l7 7c0.391 0.391 1.024 0.391 1.414 0s0.391-1.024 0-1.414z",CoreIcons.arrowRight="M11.293 5.707l5.293 5.293h-11.586c-0.552 0-1 0.448-1 1s0.448 1 1 1h11.586l-5.293 5.293c-0.391 0.391-0.391 1.024 0 1.414s1.024 0.391 1.414 0l7-7c0.092-0.092 0.166-0.202 0.217-0.324 0.101-0.245 0.101-0.521 0-0.766-0.049-0.118-0.121-0.228-0.217-0.324l-7-7c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414z",CoreIcons.arrowUp="M5.707 12.707l5.293-5.293v11.586c0 0.552 0.448 1 1 1s1-0.448 1-1v-11.586l5.293 5.293c0.391 0.391 1.024 0.391 1.414 0s0.391-1.024 0-1.414l-7-7c-0.092-0.092-0.202-0.166-0.324-0.217s-0.253-0.076-0.383-0.076c-0.256 0-0.512 0.098-0.707 0.293l-7 7c-0.391 0.391-0.391 1.024 0 1.414s1.024 0.391 1.414 0z",CoreIcons.arrowExpand="M10,21V19H6.41L10.91,14.5L9.5,13.09L5,17.59V14H3V21H10M14.5,10.91L19,6.41V10H21V3H14V5H17.59L13.09,9.5L14.5,10.91Z",CoreIcons.arrowCollapse="M19.5,3.09L15,7.59V4H13V11H20V9H16.41L20.91,4.5L19.5,3.09M4,13V15H7.59L3.09,19.5L4.5,20.91L9,16.41V20H11V13H4Z",CoreIcons.close="M5.293 6.707l5.293 5.293-5.293 5.293c-0.391 0.391-0.391 1.024 0 1.414s1.024 0.391 1.414 0l5.293-5.293 5.293 5.293c0.391 0.391 1.024 0.391 1.414 0s0.391-1.024 0-1.414l-5.293-5.293 5.293-5.293c0.391-0.391 0.391-1.024 0-1.414s-1.024-0.391-1.414 0l-5.293 5.293-5.293-5.293c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414z",CoreIcons.closeAll="M21.707 17.293l-5.293-5.293 5.293-5.293c0.391-0.391 0.391-1.024 0-1.414s-1.024-0.391-1.414 0l-6 6c-0.391 0.391-0.391 1.024 0 1.414l6 6c0.391 0.391 1.024 0.391 1.414 0s0.391-1.024 0-1.414zM2.293 6.707l5.293 5.293-5.293 5.293c-0.391 0.391-0.391 1.024 0 1.414s1.024 0.391 1.414 0l5.293-5.293 5.293 5.293c0.391 0.391 1.024 0.391 1.414 0s0.391-1.024 0-1.414l-5.293-5.293 5.293-5.293c0.391-0.391 0.391-1.024 0-1.414s-1.024-0.391-1.414 0l-5.293 5.293-5.293-5.293c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414z",CoreIcons.maximize="M8 2h-3c-0.828 0-1.58 0.337-2.121 0.879s-0.879 1.293-0.879 2.121v3c0 0.552 0.448 1 1 1s1-0.448 1-1v-3c0-0.276 0.111-0.525 0.293-0.707s0.431-0.293 0.707-0.293h3c0.552 0 1-0.448 1-1s-0.448-1-1-1zM22 8v-3c0-0.828-0.337-1.58-0.879-2.121s-1.293-0.879-2.121-0.879h-3c-0.552 0-1 0.448-1 1s0.448 1 1 1h3c0.276 0 0.525 0.111 0.707 0.293s0.293 0.431 0.293 0.707v3c0 0.552 0.448 1 1 1s1-0.448 1-1zM16 22h3c0.828 0 1.58-0.337 2.121-0.879s0.879-1.293 0.879-2.121v-3c0-0.552-0.448-1-1-1s-1 0.448-1 1v3c0 0.276-0.111 0.525-0.293 0.707s-0.431 0.293-0.707 0.293h-3c-0.552 0-1 0.448-1 1s0.448 1 1 1zM2 16v3c0 0.828 0.337 1.58 0.879 2.121s1.293 0.879 2.121 0.879h3c0.552 0 1-0.448 1-1s-0.448-1-1-1h-3c-0.276 0-0.525-0.111-0.707-0.293s-0.293-0.431-0.293-0.707v-3c0-0.552-0.448-1-1-1s-1 0.448-1 1z",CoreIcons.minimize="M7 3v3c0 0.276-0.111 0.525-0.293 0.707s-0.431 0.293-0.707 0.293h-3c-0.552 0-1 0.448-1 1s0.448 1 1 1h3c0.828 0 1.58-0.337 2.121-0.879s0.879-1.293 0.879-2.121v-3c0-0.552-0.448-1-1-1s-1 0.448-1 1zM21 7h-3c-0.276 0-0.525-0.111-0.707-0.293s-0.293-0.431-0.293-0.707v-3c0-0.552-0.448-1-1-1s-1 0.448-1 1v3c0 0.828 0.337 1.58 0.879 2.121s1.293 0.879 2.121 0.879h3c0.552 0 1-0.448 1-1s-0.448-1-1-1zM17 21v-3c0-0.276 0.111-0.525 0.293-0.707s0.431-0.293 0.707-0.293h3c0.552 0 1-0.448 1-1s-0.448-1-1-1h-3c-0.828 0-1.58 0.337-2.121 0.879s-0.879 1.293-0.879 2.121v3c0 0.552 0.448 1 1 1s1-0.448 1-1zM3 17h3c0.276 0 0.525 0.111 0.707 0.293s0.293 0.431 0.293 0.707v3c0 0.552 0.448 1 1 1s1-0.448 1-1v-3c0-0.828-0.337-1.58-0.879-2.121s-1.293-0.879-2.121-0.879h-3c-0.552 0-1 0.448-1 1s0.448 1 1 1z",CoreIcons.caretDown="M7,10L12,15L17,10H7Z",CoreIcons.caretLeft="M14.016 6.984v10.031l-5.016-5.016z",CoreIcons.caretRight="M9.984 17.016v-10.031l5.016 5.016z",CoreIcons.caretUp="M7,15L12,10L17,15H7Z",CoreIcons.expand="M5 2c-0.828 0-1.58 0.337-2.121 0.879s-0.879 1.293-0.879 2.121v14c0 0.828 0.337 1.58 0.879 2.121s1.293 0.879 2.121 0.879h14c0.828 0 1.58-0.337 2.121-0.879s0.879-1.293 0.879-2.121v-14c0-0.828-0.337-1.58-0.879-2.121s-1.293-0.879-2.121-0.879zM5 4h14c0.276 0 0.525 0.111 0.707 0.293s0.293 0.431 0.293 0.707v14c0 0.276-0.111 0.525-0.293 0.707s-0.431 0.293-0.707 0.293h-14c-0.276 0-0.525-0.111-0.707-0.293s-0.293-0.431-0.293-0.707v-14c0-0.276 0.111-0.525 0.293-0.707s0.431-0.293 0.707-0.293zM8 13h3v3c0 0.552 0.448 1 1 1s1-0.448 1-1v-3h3c0.552 0 1-0.448 1-1s-0.448-1-1-1h-3v-3c0-0.552-0.448-1-1-1s-1 0.448-1 1v3h-3c-0.552 0-1 0.448-1 1s0.448 1 1 1z",CoreIcons.collapse="M5 2c-0.828 0-1.58 0.337-2.121 0.879s-0.879 1.293-0.879 2.121v14c0 0.828 0.337 1.58 0.879 2.121s1.293 0.879 2.121 0.879h14c0.828 0 1.58-0.337 2.121-0.879s0.879-1.293 0.879-2.121v-14c0-0.828-0.337-1.58-0.879-2.121s-1.293-0.879-2.121-0.879zM5 4h14c0.276 0 0.525 0.111 0.707 0.293s0.293 0.431 0.293 0.707v14c0 0.276-0.111 0.525-0.293 0.707s-0.431 0.293-0.707 0.293h-14c-0.276 0-0.525-0.111-0.707-0.293s-0.293-0.431-0.293-0.707v-14c0-0.276 0.111-0.525 0.293-0.707s0.431-0.293 0.707-0.293zM8 13h8c0.552 0 1-0.448 1-1s-0.448-1-1-1h-8c-0.552 0-1 0.448-1 1s0.448 1 1 1z",CoreIcons.expandActive="M17,13H13V17H11V13H7V11H11V7H13V11H17M19,3H5C3.89,3 3,3.89 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V5C21,3.89 20.1,3 19,3Z",CoreIcons.collapseActive="M17,13H7V11H17M19,3H5C3.89,3 3,3.89 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V5C21,3.89 20.1,3 19,3Z",CoreIcons.expandAll="M5.293 16.707l6 6c0.391 0.391 1.024 0.391 1.414 0l6-6c0.391-0.391 0.391-1.024 0-1.414s-1.024-0.391-1.414 0l-5.293 5.293-5.293-5.293c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414zM18.707 7.293l-6-6c-0.391-0.391-1.024-0.391-1.414 0l-6 6c-0.391 0.391-0.391 1.024 0 1.414s1.024 0.391 1.414 0l5.293-5.293 5.293 5.293c0.391 0.391 1.024 0.391 1.414 0s0.391-1.024 0-1.414z",CoreIcons.colapseAll="M18.707 21.293l-6-6c-0.391-0.391-1.024-0.391-1.414 0l-6 6c-0.391 0.391-0.391 1.024 0 1.414s1.024 0.391 1.414 0l5.293-5.293 5.293 5.293c0.391 0.391 1.024 0.391 1.414 0s0.391-1.024 0-1.414zM5.293 2.707l6 6c0.391 0.391 1.024 0.391 1.414 0l6-6c0.391-0.391 0.391-1.024 0-1.414s-1.024-0.391-1.414 0l-5.293 5.293-5.293-5.293c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414z",CoreIcons.folderClosed="M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z",CoreIcons.folderOpen="M6.1,10L4,18V8H21A2,2 0 0,0 19,6H12L10,4H4A2,2 0 0,0 2,6V18A2,2 0 0,0 4,20H19C19.9,20 20.7,19.4 20.9,18.5L23.2,10H6.1M19,18H6L7.6,12H20.6L19,18Z",CoreIcons.zoomIn="M16.041 15.856c-0.034 0.026-0.067 0.055-0.099 0.087s-0.060 0.064-0.087 0.099c-1.258 1.213-2.969 1.958-4.855 1.958-1.933 0-3.682-0.782-4.95-2.050s-2.050-3.017-2.050-4.95 0.782-3.682 2.050-4.95 3.017-2.050 4.95-2.050 3.682 0.782 4.95 2.050 2.050 3.017 2.050 4.95c0 1.886-0.745 3.597-1.959 4.856zM21.707 20.293l-3.675-3.675c1.231-1.54 1.968-3.493 1.968-5.618 0-2.485-1.008-4.736-2.636-6.364s-3.879-2.636-6.364-2.636-4.736 1.008-6.364 2.636-2.636 3.879-2.636 6.364 1.008 4.736 2.636 6.364 3.879 2.636 6.364 2.636c2.125 0 4.078-0.737 5.618-1.968l3.675 3.675c0.391 0.391 1.024 0.391 1.414 0s0.391-1.024 0-1.414zM8 12h2v2c0 0.552 0.448 1 1 1s1-0.448 1-1v-2h2c0.552 0 1-0.448 1-1s-0.448-1-1-1h-2v-2c0-0.552-0.448-1-1-1s-1 0.448-1 1v2h-2c-0.552 0-1 0.448-1 1s0.448 1 1 1z",CoreIcons.zoomOut="M16.041 15.856c-0.034 0.026-0.067 0.055-0.099 0.087s-0.060 0.064-0.087 0.099c-1.258 1.213-2.969 1.958-4.855 1.958-1.933 0-3.682-0.782-4.95-2.050s-2.050-3.017-2.050-4.95 0.782-3.682 2.050-4.95 3.017-2.050 4.95-2.050 3.682 0.782 4.95 2.050 2.050 3.017 2.050 4.95c0 1.886-0.745 3.597-1.959 4.856zM21.707 20.293l-3.675-3.675c1.231-1.54 1.968-3.493 1.968-5.618 0-2.485-1.008-4.736-2.636-6.364s-3.879-2.636-6.364-2.636-4.736 1.008-6.364 2.636-2.636 3.879-2.636 6.364 1.008 4.736 2.636 6.364 3.879 2.636 6.364 2.636c2.125 0 4.078-0.737 5.618-1.968l3.675 3.675c0.391 0.391 1.024 0.391 1.414 0s0.391-1.024 0-1.414zM8 12h6c0.552 0 1-0.448 1-1s-0.448-1-1-1h-6c-0.552 0-1 0.448-1 1s0.448 1 1 1z",CoreIcons.sortDesc="M19 17H22L18 21L14 17H17V3H19M2 17H12V19H2M6 5V7H2V5M2 11H9V13H2V11Z",CoreIcons.sortAsc="M19 7H22L18 3L14 7H17V21H19M2 17H12V19H2M6 5V7H2V5M2 11H9V13H2V11Z",CoreIcons.refresh="M19.547 14.667c-0.736 2.083-2.245 3.67-4.094 4.553s-4.031 1.061-6.114 0.325-3.67-2.245-4.553-4.094-1.061-4.031-0.325-6.114 2.245-3.67 4.094-4.553 4.031-1.061 6.114-0.325c1.188 0.42 2.209 1.088 2.987 1.882l2.824 2.659h-3.48c-0.552 0-1 0.448-1 1s0.448 1 1 1h5.997c0.004 0 0.009 0 0.013 0 0.137-0.001 0.267-0.030 0.386-0.082 0.119-0.051 0.229-0.126 0.324-0.225 0.012-0.012 0.023-0.025 0.034-0.038 0.076-0.087 0.134-0.184 0.175-0.287s0.065-0.213 0.069-0.328c0.002-0.014 0.002-0.028 0.002-0.042v-5.998c0-0.552-0.448-1-1-1s-1 0.448-1 1v3.685l-2.916-2.745c-0.993-1.012-2.274-1.846-3.748-2.366-2.604-0.921-5.336-0.698-7.644 0.405s-4.197 3.088-5.117 5.692-0.696 5.335 0.406 7.643 3.088 4.197 5.692 5.117 5.335 0.697 7.643-0.406 4.197-3.088 5.117-5.692c0.184-0.521-0.089-1.092-0.61-1.276s-1.092 0.089-1.276 0.61z",CoreIcons.search="M16.041 15.856c-0.034 0.026-0.067 0.055-0.099 0.087s-0.060 0.064-0.087 0.099c-1.258 1.213-2.969 1.958-4.855 1.958-1.933 0-3.682-0.782-4.95-2.050s-2.050-3.017-2.050-4.95 0.782-3.682 2.050-4.95 3.017-2.050 4.95-2.050 3.682 0.782 4.95 2.050 2.050 3.017 2.050 4.95c0 1.886-0.745 3.597-1.959 4.856zM21.707 20.293l-3.675-3.675c1.231-1.54 1.968-3.493 1.968-5.618 0-2.485-1.008-4.736-2.636-6.364s-3.879-2.636-6.364-2.636-4.736 1.008-6.364 2.636-2.636 3.879-2.636 6.364 1.008 4.736 2.636 6.364 3.879 2.636 6.364 2.636c2.125 0 4.078-0.737 5.618-1.968l3.675 3.675c0.391 0.391 1.024 0.391 1.414 0s0.391-1.024 0-1.414z",CoreIcons.filter="M6,13H18V11H6M3,6V8H21V6M10,18H14V16H10V18Z",CoreIcons.funnel="M19.845 4l-6.609 7.814c-0.147 0.173-0.236 0.399-0.236 0.646v6.922l-2-1v-5.922c0.001-0.227-0.077-0.457-0.236-0.646l-6.609-7.814zM22 2h-20c-0.552 0-1 0.448-1 1 0 0.247 0.089 0.473 0.236 0.646l7.764 9.18v6.174c0 0.389 0.222 0.727 0.553 0.894l4 2c0.494 0.247 1.095 0.047 1.342-0.447 0.072-0.146 0.106-0.301 0.105-0.447v-8.174l7.764-9.18c0.357-0.422 0.304-1.053-0.118-1.409-0.189-0.16-0.419-0.238-0.646-0.237z",CoreIcons.ellipsis="M14 12c0-0.552-0.225-1.053-0.586-1.414s-0.862-0.586-1.414-0.586-1.053 0.225-1.414 0.586-0.586 0.862-0.586 1.414 0.225 1.053 0.586 1.414 0.862 0.586 1.414 0.586 1.053-0.225 1.414-0.586 0.586-0.862 0.586-1.414zM14 5c0-0.552-0.225-1.053-0.586-1.414s-0.862-0.586-1.414-0.586-1.053 0.225-1.414 0.586-0.586 0.862-0.586 1.414 0.225 1.053 0.586 1.414 0.862 0.586 1.414 0.586 1.053-0.225 1.414-0.586 0.586-0.862 0.586-1.414zM14 19c0-0.552-0.225-1.053-0.586-1.414s-0.862-0.586-1.414-0.586-1.053 0.225-1.414 0.586-0.586 0.862-0.586 1.414 0.225 1.053 0.586 1.414 0.862 0.586 1.414 0.586 1.053-0.225 1.414-0.586 0.586-0.862 0.586-1.414z",CoreIcons.funnelPlus="M15 17H18V14H20V17H23V19H20V22H18V19H15V17M13 19.88C13.04 20.18 12.94 20.5 12.72 20.71C12.32 21.1 11.69 21.1 11.3 20.71L7.29 16.7C7.06 16.47 6.96 16.16 7 15.87V10.75L2.21 4.62C1.87 4.19 1.95 3.56 2.38 3.22C2.57 3.08 2.78 3 3 3V3H17V3C17.22 3 17.43 3.08 17.62 3.22C18.05 3.56 18.13 4.19 17.79 4.62L13 10.75V19.88M5.04 5L9 10.07V15.58L11 17.58V10.05L14.96 5H5.04Z",CoreIcons.funnelRemove="M14.73,20.83L17.58,18L14.73,15.17L16.15,13.76L19,16.57L21.8,13.76L23.22,15.17L20.41,18L23.22,20.83L21.8,22.24L19,19.4L16.15,22.24L14.73,20.83M13,19.88C13.04,20.18 12.94,20.5 12.71,20.71C12.32,21.1 11.69,21.1 11.3,20.71L7.29,16.7C7.06,16.47 6.96,16.16 7,15.87V10.75L2.21,4.62C1.87,4.19 1.95,3.56 2.38,3.22C2.57,3.08 2.78,3 3,3V3H17V3C17.22,3 17.43,3.08 17.62,3.22C18.05,3.56 18.13,4.19 17.79,4.62L13,10.75V19.88M5.04,5L9,10.06V15.58L11,17.58V10.05L14.96,5H5.04Z",CoreIcons.funnelMinus="M15 17H23V19H15V17M13 19.88C13.04 20.18 12.94 20.5 12.72 20.71C12.32 21.1 11.69 21.1 11.3 20.71L7.29 16.7C7.06 16.47 6.96 16.16 7 15.87V10.75L2.21 4.62C1.87 4.19 1.95 3.56 2.38 3.22C2.57 3.08 2.78 3 3 3V3H17V3C17.22 3 17.43 3.08 17.62 3.22C18.05 3.56 18.13 4.19 17.79 4.62L13 10.75V19.88M5.04 5L9 10.07V15.58L11 17.58V10.05L14.96 5H5.04Z",CoreIcons.cut="M7.378 16.551c0.011 0.012 0.023 0.025 0.035 0.036s0.024 0.023 0.036 0.035c0.343 0.359 0.551 0.843 0.551 1.378 0 0.553-0.223 1.051-0.586 1.414s-0.861 0.586-1.414 0.586-1.051-0.223-1.414-0.586-0.586-0.861-0.586-1.414 0.223-1.051 0.586-1.414 0.861-0.586 1.414-0.586c0.535 0 1.019 0.208 1.378 0.551zM13.764 15.188l5.53 5.52c0.391 0.39 1.024 0.39 1.414-0.001s0.39-1.024-0.001-1.414l-5.53-5.52c-0.391-0.39-1.024-0.39-1.414 0.001s-0.39 1.024 0.001 1.414zM7.449 7.378c-0.012 0.011-0.024 0.023-0.036 0.035s-0.024 0.024-0.035 0.036c-0.359 0.343-0.843 0.551-1.378 0.551-0.553 0-1.051-0.223-1.414-0.586s-0.586-0.861-0.586-1.414 0.223-1.051 0.586-1.414 0.861-0.586 1.414-0.586 1.051 0.223 1.414 0.586 0.586 0.861 0.586 1.414c0 0.535-0.208 1.019-0.551 1.378zM8.032 9.446l2.554 2.554-2.554 2.554c-0.596-0.352-1.291-0.554-2.032-0.554-1.104 0-2.106 0.449-2.828 1.172s-1.172 1.724-1.172 2.828 0.449 2.106 1.172 2.828 1.724 1.172 2.828 1.172 2.106-0.449 2.828-1.172 1.172-1.724 1.172-2.828c0-0.741-0.202-1.436-0.554-2.032l11.261-11.261c0.391-0.391 0.391-1.024 0-1.414s-1.024-0.391-1.414 0l-7.293 7.293-2.554-2.554c0.352-0.596 0.554-1.291 0.554-2.032 0-1.104-0.449-2.106-1.172-2.828s-1.724-1.172-2.828-1.172-2.106 0.449-2.828 1.172-1.172 1.724-1.172 2.828 0.449 2.106 1.172 2.828 1.724 1.172 2.828 1.172c0.741 0 1.436-0.202 2.032-0.554z",CoreIcons.copy="M11 8c-0.828 0-1.58 0.337-2.121 0.879s-0.879 1.293-0.879 2.121v9c0 0.828 0.337 1.58 0.879 2.121s1.293 0.879 2.121 0.879h9c0.828 0 1.58-0.337 2.121-0.879s0.879-1.293 0.879-2.121v-9c0-0.828-0.337-1.58-0.879-2.121s-1.293-0.879-2.121-0.879zM11 10h9c0.276 0 0.525 0.111 0.707 0.293s0.293 0.431 0.293 0.707v9c0 0.276-0.111 0.525-0.293 0.707s-0.431 0.293-0.707 0.293h-9c-0.276 0-0.525-0.111-0.707-0.293s-0.293-0.431-0.293-0.707v-9c0-0.276 0.111-0.525 0.293-0.707s0.431-0.293 0.707-0.293zM5 14h-1c-0.276 0-0.525-0.111-0.707-0.293s-0.293-0.431-0.293-0.707v-9c0-0.276 0.111-0.525 0.293-0.707s0.431-0.293 0.707-0.293h9c0.276 0 0.525 0.111 0.707 0.293s0.293 0.431 0.293 0.707v1c0 0.552 0.448 1 1 1s1-0.448 1-1v-1c0-0.828-0.337-1.58-0.879-2.121s-1.293-0.879-2.121-0.879h-9c-0.828 0-1.58 0.337-2.121 0.879s-0.879 1.293-0.879 2.121v9c0 0.828 0.337 1.58 0.879 2.121s1.293 0.879 2.121 0.879h1c0.552 0 1-0.448 1-1s-0.448-1-1-1z",CoreIcons.clipboard="M7 5c0 0.552 0.225 1.053 0.586 1.414s0.862 0.586 1.414 0.586h6c0.552 0 1.053-0.225 1.414-0.586s0.586-0.862 0.586-1.414h1c0.276 0 0.525 0.111 0.707 0.293s0.293 0.431 0.293 0.707v14c0 0.276-0.111 0.525-0.293 0.707s-0.431 0.293-0.707 0.293h-12c-0.276 0-0.525-0.111-0.707-0.293s-0.293-0.431-0.293-0.707v-14c0-0.276 0.111-0.525 0.293-0.707s0.431-0.293 0.707-0.293zM9 1c-0.552 0-1.053 0.225-1.414 0.586s-0.586 0.862-0.586 1.414h-1c-0.828 0-1.58 0.337-2.121 0.879s-0.879 1.293-0.879 2.121v14c0 0.828 0.337 1.58 0.879 2.121s1.293 0.879 2.121 0.879h12c0.828 0 1.58-0.337 2.121-0.879s0.879-1.293 0.879-2.121v-14c0-0.828-0.337-1.58-0.879-2.121s-1.293-0.879-2.121-0.879h-1c0-0.552-0.225-1.053-0.586-1.414s-0.862-0.586-1.414-0.586zM9 3h6v2h-6z",CoreIcons.download="M20 15v4c0 0.276-0.111 0.525-0.293 0.707s-0.431 0.293-0.707 0.293h-14c-0.276 0-0.525-0.111-0.707-0.293s-0.293-0.431-0.293-0.707v-4c0-0.552-0.448-1-1-1s-1 0.448-1 1v4c0 0.828 0.337 1.58 0.879 2.121s1.293 0.879 2.121 0.879h14c0.828 0 1.58-0.337 2.121-0.879s0.879-1.293 0.879-2.121v-4c0-0.552-0.448-1-1-1s-1 0.448-1 1zM13 12.586v-9.586c0-0.552-0.448-1-1-1s-1 0.448-1 1v9.586l-3.293-3.293c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414l5 5c0.092 0.092 0.202 0.166 0.324 0.217s0.253 0.076 0.383 0.076c0.256 0 0.512-0.098 0.707-0.293l5-5c0.391-0.391 0.391-1.024 0-1.414s-1.024-0.391-1.414 0z",CoreIcons.upload="M20 15v4c0 0.276-0.111 0.525-0.293 0.707s-0.431 0.293-0.707 0.293h-14c-0.276 0-0.525-0.111-0.707-0.293s-0.293-0.431-0.293-0.707v-4c0-0.552-0.448-1-1-1s-1 0.448-1 1v4c0 0.828 0.337 1.58 0.879 2.121s1.293 0.879 2.121 0.879h14c0.828 0 1.58-0.337 2.121-0.879s0.879-1.293 0.879-2.121v-4c0-0.552-0.448-1-1-1s-1 0.448-1 1zM11 5.414v9.586c0 0.552 0.448 1 1 1s1-0.448 1-1v-9.586l3.293 3.293c0.391 0.391 1.024 0.391 1.414 0s0.391-1.024 0-1.414l-5-5c-0.092-0.092-0.202-0.166-0.324-0.217-0.245-0.101-0.521-0.101-0.766 0-0.118 0.049-0.228 0.121-0.324 0.217l-5 5c-0.391 0.391-0.391 1.024 0 1.414s1.024 0.391 1.414 0z",CoreIcons.external="M17 13v6c0 0.276-0.111 0.525-0.293 0.707s-0.431 0.293-0.707 0.293h-11c-0.276 0-0.525-0.111-0.707-0.293s-0.293-0.431-0.293-0.707v-11c0-0.276 0.111-0.525 0.293-0.707s0.431-0.293 0.707-0.293h6c0.552 0 1-0.448 1-1s-0.448-1-1-1h-6c-0.828 0-1.58 0.337-2.121 0.879s-0.879 1.293-0.879 2.121v11c0 0.828 0.337 1.58 0.879 2.121s1.293 0.879 2.121 0.879h11c0.828 0 1.58-0.337 2.121-0.879s0.879-1.293 0.879-2.121v-6c0-0.552-0.448-1-1-1s-1 0.448-1 1zM10.707 14.707l9.293-9.293v3.586c0 0.552 0.448 1 1 1s1-0.448 1-1v-6c0-0.136-0.027-0.265-0.076-0.383s-0.121-0.228-0.216-0.323c-0.001-0.001-0.001-0.001-0.002-0.002-0.092-0.092-0.202-0.166-0.323-0.216-0.118-0.049-0.247-0.076-0.383-0.076h-6c-0.552 0-1 0.448-1 1s0.448 1 1 1h3.586l-9.293 9.293c-0.391 0.391-0.391 1.024 0 1.414s1.024 0.391 1.414 0z",CoreIcons.exporter="M12,1L8,5H11V14H13V5H16M18,23H6C4.89,23 4,22.1 4,21V9A2,2 0 0,1 6,7H9V9H6V21H18V9H15V7H18A2,2 0 0,1 20,9V21A2,2 0 0,1 18,23Z",CoreIcons.dragHandle="M9,3H11V5H9V3M13,3H15V5H13V3M9,7H11V9H9V7M13,7H15V9H13V7M9,11H11V13H9V11M13,11H15V13H13V11M9,15H11V17H9V15M13,15H15V17H13V15M9,19H11V21H9V19M13,19H15V21H13V19Z",CoreIcons.calendar="M7 2v1h-2c-0.828 0-1.58 0.337-2.121 0.879s-0.879 1.293-0.879 2.121v14c0 0.828 0.337 1.58 0.879 2.121s1.293 0.879 2.121 0.879h14c0.828 0 1.58-0.337 2.121-0.879s0.879-1.293 0.879-2.121v-14c0-0.828-0.337-1.58-0.879-2.121s-1.293-0.879-2.121-0.879h-2v-1c0-0.552-0.448-1-1-1s-1 0.448-1 1v1h-6v-1c0-0.552-0.448-1-1-1s-1 0.448-1 1zM20 9h-16v-3c0-0.276 0.111-0.525 0.293-0.707s0.431-0.293 0.707-0.293h2v1c0 0.552 0.448 1 1 1s1-0.448 1-1v-1h6v1c0 0.552 0.448 1 1 1s1-0.448 1-1v-1h2c0.276 0 0.525 0.111 0.707 0.293s0.293 0.431 0.293 0.707zM4 11h16v9c0 0.276-0.111 0.525-0.293 0.707s-0.431 0.293-0.707 0.293h-14c-0.276 0-0.525-0.111-0.707-0.293s-0.293-0.431-0.293-0.707z",CoreIcons.calendarHijri="M2.572 22.285h18.857v-13.715h-18.857v13.715zM7.715 6v-3.857c0-0.241-0.188-0.428-0.428-0.428h-0.857c-0.241 0-0.428 0.188-0.428 0.428v3.857c0 0.241 0.188 0.428 0.428 0.428h0.857c0.241 0 0.428-0.188 0.428-0.428zM18 6v-3.857c0-0.241-0.188-0.428-0.428-0.428h-0.857c-0.241 0-0.428 0.188-0.428 0.428v3.857c0 0.241 0.188 0.428 0.428 0.428h0.857c0.241 0 0.428-0.188 0.428-0.428zM23.143 5.143v17.143c0 0.938-0.777 1.715-1.715 1.715h-18.857c-0.938 0-1.715-0.777-1.715-1.715v-17.143c0-0.938 0.777-1.714 1.715-1.714h1.714v-1.285c0-1.178 0.965-2.143 2.143-2.143h0.857c1.178 0 2.143 0.965 2.143 2.143v1.285h5.143v-1.285c0-1.178 0.965-2.143 2.143-2.143h0.857c1.178 0 2.143 0.965 2.143 2.143v1.285h1.715c0.938 0 1.715 0.777 1.715 1.714zM13.389 19.885c-2.461 0-4.48-2.033-4.48-4.51 0-2.495 1.982-4.51 4.53-4.51 0.873 0 1.747 0.352 1.747 0.352-0.994-0.699-2.028-1.047-3.102-1.047-1.459 0-2.699 0.505-3.719 1.516s-1.53 2.24-1.53 3.69c0 1.44 0.508 2.667 1.523 3.683s2.243 1.523 3.683 1.523c1.861 0 3.001-0.961 3.145-1.055 0 0-0.923 0.359-1.796 0.359zM14.425 15.663l-0.465 1.443 1.226-0.887 1.219 0.887-0.465-1.443 1.226-0.882h-1.515l-0.465-1.44-0.472 1.44h-1.515l1.226 0.882z",CoreIcons.clock="M23 12c0-3.037-1.232-5.789-3.222-7.778s-4.741-3.222-7.778-3.222-5.789 1.232-7.778 3.222-3.222 4.741-3.222 7.778 1.232 5.789 3.222 7.778 4.741 3.222 7.778 3.222 5.789-1.232 7.778-3.222 3.222-4.741 3.222-7.778zM21 12c0 2.486-1.006 4.734-2.636 6.364s-3.878 2.636-6.364 2.636-4.734-1.006-6.364-2.636-2.636-3.878-2.636-6.364 1.006-4.734 2.636-6.364 3.878-2.636 6.364-2.636 4.734 1.006 6.364 2.636 2.636 3.878 2.636 6.364zM11 6v6c0 0.389 0.222 0.727 0.553 0.894l4 2c0.494 0.247 1.095 0.047 1.342-0.447s0.047-1.095-0.447-1.342l-3.448-1.723v-5.382c0-0.552-0.448-1-1-1s-1 0.448-1 1z",CoreIcons.pin="M16,12V4H17V2H7V4H8V12L6,14V16H11.2V22H12.8V16H18V14L16,12M8.8,14L10,12.8V4H14V12.8L15.2,14H8.8Z",CoreIcons.eye="M0.106 11.553c-0.136 0.274-0.146 0.603 0 0.894 0 0 0.396 0.789 1.12 1.843 0.451 0.656 1.038 1.432 1.757 2.218 0.894 0.979 2.004 1.987 3.319 2.8 1.595 0.986 3.506 1.692 5.698 1.692s4.103-0.706 5.698-1.692c1.315-0.813 2.425-1.821 3.319-2.8 0.718-0.786 1.306-1.562 1.757-2.218 0.724-1.054 1.12-1.843 1.12-1.843 0.136-0.274 0.146-0.603 0-0.894 0 0-0.396-0.789-1.12-1.843-0.451-0.656-1.038-1.432-1.757-2.218-0.894-0.979-2.004-1.987-3.319-2.8-1.595-0.986-3.506-1.692-5.698-1.692s-4.103 0.706-5.698 1.692c-1.315 0.813-2.425 1.821-3.319 2.8-0.719 0.786-1.306 1.561-1.757 2.218-0.724 1.054-1.12 1.843-1.12 1.843zM2.14 12c0.163-0.281 0.407-0.681 0.734-1.158 0.41-0.596 0.94-1.296 1.585-2.001 0.805-0.881 1.775-1.756 2.894-2.448 1.35-0.834 2.901-1.393 4.647-1.393s3.297 0.559 4.646 1.393c1.119 0.692 2.089 1.567 2.894 2.448 0.644 0.705 1.175 1.405 1.585 2.001 0.328 0.477 0.572 0.876 0.734 1.158-0.163 0.281-0.407 0.681-0.734 1.158-0.41 0.596-0.94 1.296-1.585 2.001-0.805 0.881-1.775 1.756-2.894 2.448-1.349 0.834-2.9 1.393-4.646 1.393s-3.297-0.559-4.646-1.393c-1.119-0.692-2.089-1.567-2.894-2.448-0.644-0.705-1.175-1.405-1.585-2.001-0.328-0.477-0.572-0.877-0.735-1.158zM16 12c0-1.104-0.449-2.106-1.172-2.828s-1.724-1.172-2.828-1.172-2.106 0.449-2.828 1.172-1.172 1.724-1.172 2.828 0.449 2.106 1.172 2.828 1.724 1.172 2.828 1.172 2.106-0.449 2.828-1.172 1.172-1.724 1.172-2.828zM14 12c0 0.553-0.223 1.051-0.586 1.414s-0.861 0.586-1.414 0.586-1.051-0.223-1.414-0.586-0.586-0.861-0.586-1.414 0.223-1.051 0.586-1.414 0.861-0.586 1.414-0.586 1.051 0.223 1.414 0.586 0.586 0.861 0.586 1.414z",CoreIcons.eyeOff="M10.128 5.214c0.651-0.152 1.296-0.221 1.86-0.214 1.758 0 3.309 0.559 4.658 1.393 1.119 0.692 2.089 1.567 2.894 2.448 0.644 0.705 1.175 1.405 1.585 2.001 0.327 0.475 0.57 0.874 0.733 1.155-0.546 0.953-1.16 1.821-1.778 2.542-0.359 0.419-0.311 1.051 0.108 1.41s1.051 0.311 1.41-0.108c0.818-0.954 1.611-2.112 2.283-3.37 0.148-0.279 0.163-0.618 0.013-0.919 0 0-0.396-0.789-1.12-1.843-0.451-0.656-1.038-1.432-1.757-2.218-0.894-0.979-2.004-1.987-3.319-2.8-1.595-0.985-3.506-1.691-5.686-1.691-0.734-0.009-1.54 0.079-2.34 0.266-0.538 0.126-0.872 0.664-0.746 1.202s0.664 0.872 1.202 0.746zM10.027 11.442l2.531 2.531c-0.182 0.061-0.372 0.094-0.563 0.101-0.513 0.018-1.030-0.159-1.434-0.536s-0.617-0.88-0.635-1.393c-0.008-0.238 0.025-0.476 0.101-0.704zM5.983 7.397l2.553 2.553c-0.434 0.691-0.636 1.484-0.608 2.266 0.036 1.022 0.463 2.033 1.271 2.785s1.846 1.107 2.868 1.071c0.692-0.024 1.379-0.228 1.984-0.608l2.322 2.322c-1.378 0.799-2.895 1.196-4.384 1.214-1.734 0-3.285-0.559-4.634-1.393-1.119-0.692-2.089-1.567-2.894-2.448-0.644-0.705-1.175-1.405-1.585-2.001-0.326-0.475-0.57-0.873-0.732-1.154 1.050-1.822 2.376-3.379 3.841-4.607zM0.293 1.707l4.271 4.271c-1.731 1.479-3.269 3.358-4.445 5.549-0.148 0.279-0.164 0.619-0.013 0.92 0 0 0.396 0.789 1.12 1.843 0.451 0.656 1.038 1.432 1.757 2.218 0.894 0.979 2.004 1.987 3.319 2.8 1.595 0.986 3.506 1.692 5.71 1.692 1.993-0.024 4.019-0.601 5.815-1.759l4.466 4.466c0.391 0.391 1.024 0.391 1.414 0s0.391-1.024 0-1.414l-8.876-8.876c-0.002-0.002-0.005-0.005-0.007-0.007l-4.209-4.21c-0.008-0.007-0.016-0.016-0.024-0.024l-8.884-8.883c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414z",CoreIcons.invertDisable="M19 3H5C3.9 3 3 3.9 3 5V19C3 20.1 3.9 21 5 21H19C20.1 21 21 20.1 21 19V5C21 3.9 20.1 3 19 3M19 19H5V5H19V19M7 17V7H17",CoreIcons.invertExclude="M9,5C10.04,5 11.06,5.24 12,5.68C12.94,5.24 13.96,5 15,5A7,7 0 0,1 22,12A7,7 0 0,1 15,19C13.96,19 12.94,18.76 12,18.32C11.06,18.76 10.04,19 9,19A7,7 0 0,1 2,12A7,7 0 0,1 9,5M15,7L14,7.11C15.28,8.41 16,10.17 16,12C16,13.83 15.28,15.59 14,16.9L15,17A5,5 0 0,0 20,12A5,5 0 0,0 15,7M8.5,12C8.5,13.87 9.29,15.56 10.56,16.75L11.56,16.29C10.31,15.29 9.5,13.74 9.5,12C9.5,10.26 10.31,8.71 11.56,7.71L10.56,7.25C9.29,8.44 8.5,10.13 8.5,12Z",CoreIcons.lock="M5 12h14c0.276 0 0.525 0.111 0.707 0.293s0.293 0.431 0.293 0.707v7c0 0.276-0.111 0.525-0.293 0.707s-0.431 0.293-0.707 0.293h-14c-0.276 0-0.525-0.111-0.707-0.293s-0.293-0.431-0.293-0.707v-7c0-0.276 0.111-0.525 0.293-0.707s0.431-0.293 0.707-0.293zM18 10v-3c0-1.657-0.673-3.158-1.757-4.243s-2.586-1.757-4.243-1.757-3.158 0.673-4.243 1.757-1.757 2.586-1.757 4.243v3h-1c-0.828 0-1.58 0.337-2.121 0.879s-0.879 1.293-0.879 2.121v7c0 0.828 0.337 1.58 0.879 2.121s1.293 0.879 2.121 0.879h14c0.828 0 1.58-0.337 2.121-0.879s0.879-1.293 0.879-2.121v-7c0-0.828-0.337-1.58-0.879-2.121s-1.293-0.879-2.121-0.879zM8 10v-3c0-1.105 0.447-2.103 1.172-2.828s1.723-1.172 2.828-1.172 2.103 0.447 2.828 1.172 1.172 1.723 1.172 2.828v3z",CoreIcons.unlock="M5 12h14c0.276 0 0.525 0.111 0.707 0.293s0.293 0.431 0.293 0.707v7c0 0.276-0.111 0.525-0.293 0.707s-0.431 0.293-0.707 0.293h-14c-0.276 0-0.525-0.111-0.707-0.293s-0.293-0.431-0.293-0.707v-7c0-0.276 0.111-0.525 0.293-0.707s0.431-0.293 0.707-0.293zM8 10v-3c-0.001-1.106 0.445-2.105 1.169-2.831 0.723-0.724 1.719-1.172 2.821-1.174 1.030 0.003 1.948 0.378 2.652 1 0.638 0.565 1.097 1.332 1.28 2.209 0.113 0.541 0.642 0.888 1.183 0.775s0.888-0.642 0.775-1.183c-0.272-1.307-0.958-2.454-1.912-3.299-1.060-0.938-2.452-1.504-3.973-1.502-1.657 0.002-3.157 0.676-4.241 1.762s-1.756 2.587-1.754 4.243v3h-1c-0.828 0-1.58 0.337-2.121 0.879s-0.879 1.293-0.879 2.121v7c0 0.828 0.337 1.58 0.879 2.121s1.293 0.879 2.121 0.879h14c0.828 0 1.58-0.337 2.121-0.879s0.879-1.293 0.879-2.121v-7c0-0.828-0.337-1.58-0.879-2.121s-1.293-0.879-2.121-0.879z",CoreIcons.edit="M12 21h9c0.552 0 1-0.448 1-1s-0.448-1-1-1h-9c-0.552 0-1 0.448-1 1s0.448 1 1 1zM15.793 2.793l-12.5 12.5c-0.122 0.121-0.217 0.28-0.263 0.465l-1 4c-0.039 0.15-0.042 0.318 0 0.485 0.134 0.536 0.677 0.862 1.213 0.728l4-1c0.167-0.041 0.33-0.129 0.465-0.263l12.5-12.5c0.609-0.609 0.914-1.41 0.914-2.207s-0.305-1.598-0.914-2.207-1.411-0.915-2.208-0.915-1.598 0.305-2.207 0.914zM17.207 4.207c0.219-0.219 0.504-0.328 0.793-0.328s0.574 0.109 0.793 0.328 0.328 0.504 0.328 0.793-0.109 0.574-0.328 0.793l-12.304 12.304-2.115 0.529 0.529-2.115z",CoreIcons.console="M4.707 17.707l6-6c0.391-0.391 0.391-1.024 0-1.414l-6-6c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414l5.293 5.293-5.293 5.293c-0.391 0.391-0.391 1.024 0 1.414s1.024 0.391 1.414 0zM12 20h8c0.552 0 1-0.448 1-1s-0.448-1-1-1h-8c-0.552 0-1 0.448-1 1s0.448 1 1 1z",CoreIcons.backspace="M21 5c0.276 0 0.525 0.111 0.707 0.293s0.293 0.431 0.293 0.707v12c0 0.276-0.111 0.525-0.293 0.707s-0.431 0.293-0.707 0.293h-12.546l-6.125-7 6.125-7zM21 3h-13c-0.3 0-0.568 0.132-0.753 0.341l-7 8c-0.333 0.38-0.326 0.942 0 1.317l7 8c0.198 0.226 0.474 0.341 0.753 0.342h13c0.828 0 1.58-0.337 2.121-0.879s0.879-1.293 0.879-2.121v-12c0-0.828-0.337-1.58-0.879-2.121s-1.293-0.879-2.121-0.879zM11.293 9.707l2.293 2.293-2.293 2.293c-0.391 0.391-0.391 1.024 0 1.414s1.024 0.391 1.414 0l2.293-2.293 2.293 2.293c0.391 0.391 1.024 0.391 1.414 0s0.391-1.024 0-1.414l-2.293-2.293 2.293-2.293c0.391-0.391 0.391-1.024 0-1.414s-1.024-0.391-1.414 0l-2.293 2.293-2.293-2.293c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414z",CoreIcons.insert="M12,20C7.59,20 4,16.41 4,12C4,7.59 7.59,4 12,4C16.41,4 20,7.59 20,12C20,16.41 16.41,20 12,20M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2M13,7H11V11H7V13H11V17H13V13H17V11H13V7Z",CoreIcons.remove="M23 12c0-3.037-1.232-5.789-3.222-7.778s-4.741-3.222-7.778-3.222-5.789 1.232-7.778 3.222-3.222 4.741-3.222 7.778 1.232 5.789 3.222 7.778 4.741 3.222 7.778 3.222 5.789-1.232 7.778-3.222 3.222-4.741 3.222-7.778zM21 12c0 2.486-1.006 4.734-2.636 6.364s-3.878 2.636-6.364 2.636-4.734-1.006-6.364-2.636-2.636-3.878-2.636-6.364 1.006-4.734 2.636-6.364 3.878-2.636 6.364-2.636 4.734 1.006 6.364 2.636 2.636 3.878 2.636 6.364zM8 13h8c0.552 0 1-0.448 1-1s-0.448-1-1-1h-8c-0.552 0-1 0.448-1 1s0.448 1 1 1z",CoreIcons.trash="M18 7v13c0 0.276-0.111 0.525-0.293 0.707s-0.431 0.293-0.707 0.293h-10c-0.276 0-0.525-0.111-0.707-0.293s-0.293-0.431-0.293-0.707v-13zM17 5v-1c0-0.828-0.337-1.58-0.879-2.121s-1.293-0.879-2.121-0.879h-4c-0.828 0-1.58 0.337-2.121 0.879s-0.879 1.293-0.879 2.121v1h-4c-0.552 0-1 0.448-1 1s0.448 1 1 1h1v13c0 0.828 0.337 1.58 0.879 2.121s1.293 0.879 2.121 0.879h10c0.828 0 1.58-0.337 2.121-0.879s0.879-1.293 0.879-2.121v-13h1c0.552 0 1-0.448 1-1s-0.448-1-1-1zM9 5v-1c0-0.276 0.111-0.525 0.293-0.707s0.431-0.293 0.707-0.293h4c0.276 0 0.525 0.111 0.707 0.293s0.293 0.431 0.293 0.707v1zM9 11v6c0 0.552 0.448 1 1 1s1-0.448 1-1v-6c0-0.552-0.448-1-1-1s-1 0.448-1 1zM13 11v6c0 0.552 0.448 1 1 1s1-0.448 1-1v-6c0-0.552-0.448-1-1-1s-1 0.448-1 1z",CoreIcons.menu="M3 13h18c0.552 0 1-0.448 1-1s-0.448-1-1-1h-18c-0.552 0-1 0.448-1 1s0.448 1 1 1zM3 7h18c0.552 0 1-0.448 1-1s-0.448-1-1-1h-18c-0.552 0-1 0.448-1 1s0.448 1 1 1zM3 19h18c0.552 0 1-0.448 1-1s-0.448-1-1-1h-18c-0.552 0-1 0.448-1 1s0.448 1 1 1z",CoreIcons.config="M16 12c0-1.104-0.449-2.106-1.172-2.828s-1.724-1.172-2.828-1.172-2.106 0.449-2.828 1.172-1.172 1.724-1.172 2.828 0.449 2.106 1.172 2.828 1.724 1.172 2.828 1.172 2.106-0.449 2.828-1.172 1.172-1.724 1.172-2.828zM14 12c0 0.553-0.223 1.051-0.586 1.414s-0.861 0.586-1.414 0.586-1.051-0.223-1.414-0.586-0.586-0.861-0.586-1.414 0.223-1.051 0.586-1.414 0.861-0.586 1.414-0.586 1.051 0.223 1.414 0.586 0.586 0.861 0.586 1.414zM20.315 15.404c0.046-0.105 0.112-0.191 0.192-0.257 0.112-0.092 0.251-0.146 0.403-0.147h0.090c0.828 0 1.58-0.337 2.121-0.879s0.879-1.293 0.879-2.121-0.337-1.58-0.879-2.121-1.293-0.879-2.121-0.879h-0.159c-0.11-0.001-0.215-0.028-0.308-0.076-0.127-0.066-0.23-0.172-0.292-0.312-0.003-0.029-0.004-0.059-0.004-0.089-0.024-0.055-0.040-0.111-0.049-0.168 0.020-0.334 0.077-0.454 0.168-0.547l0.062-0.062c0.585-0.586 0.878-1.356 0.877-2.122s-0.294-1.536-0.881-2.122c-0.586-0.585-1.356-0.878-2.122-0.877s-1.536 0.294-2.12 0.879l-0.046 0.046c-0.083 0.080-0.183 0.136-0.288 0.166-0.14 0.039-0.291 0.032-0.438-0.033-0.101-0.044-0.187-0.11-0.253-0.19-0.092-0.112-0.146-0.251-0.147-0.403v-0.090c0-0.828-0.337-1.58-0.879-2.121s-1.293-0.879-2.121-0.879-1.58 0.337-2.121 0.879-0.879 1.293-0.879 2.121v0.159c-0.001 0.11-0.028 0.215-0.076 0.308-0.066 0.127-0.172 0.23-0.312 0.292-0.029 0.003-0.059 0.004-0.089 0.004-0.055 0.024-0.111 0.040-0.168 0.049-0.335-0.021-0.455-0.078-0.548-0.169l-0.062-0.062c-0.586-0.585-1.355-0.878-2.122-0.878s-1.535 0.294-2.122 0.882c-0.585 0.586-0.878 1.355-0.878 2.122s0.294 1.536 0.879 2.12l0.048 0.047c0.080 0.083 0.136 0.183 0.166 0.288 0.039 0.14 0.032 0.291-0.031 0.434-0.006 0.016-0.013 0.034-0.021 0.052-0.041 0.109-0.108 0.203-0.191 0.275-0.11 0.095-0.25 0.153-0.383 0.156h-0.090c-0.828 0-1.58 0.337-2.121 0.879s-0.879 1.294-0.879 2.122 0.337 1.58 0.879 2.121 1.293 0.879 2.121 0.879h0.159c0.11 0.001 0.215 0.028 0.308 0.076 0.128 0.067 0.233 0.174 0.296 0.321 0.024 0.055 0.040 0.111 0.049 0.168-0.020 0.334-0.077 0.454-0.168 0.547l-0.062 0.062c-0.585 0.586-0.878 1.356-0.877 2.122s0.294 1.536 0.881 2.122c0.586 0.585 1.356 0.878 2.122 0.877s1.536-0.294 2.12-0.879l0.047-0.048c0.083-0.080 0.183-0.136 0.288-0.166 0.14-0.039 0.291-0.032 0.434 0.031 0.016 0.006 0.034 0.013 0.052 0.021 0.109 0.041 0.203 0.108 0.275 0.191 0.095 0.11 0.153 0.25 0.156 0.383v0.092c0 0.828 0.337 1.58 0.879 2.121s1.293 0.879 2.121 0.879 1.58-0.337 2.121-0.879 0.879-1.293 0.879-2.121v-0.159c0.001-0.11 0.028-0.215 0.076-0.308 0.067-0.128 0.174-0.233 0.321-0.296 0.055-0.024 0.111-0.040 0.168-0.049 0.334 0.020 0.454 0.077 0.547 0.168l0.062 0.062c0.586 0.585 1.356 0.878 2.122 0.877s1.536-0.294 2.122-0.881c0.585-0.586 0.878-1.356 0.877-2.122s-0.294-1.536-0.879-2.12l-0.048-0.047c-0.080-0.083-0.136-0.183-0.166-0.288-0.039-0.14-0.032-0.291 0.031-0.434zM18.396 9.302c-0.012-0.201-0.038-0.297-0.076-0.382v0.080c0 0.043 0.003 0.084 0.008 0.125 0.021 0.060 0.043 0.119 0.068 0.177 0.004 0.090 0.005 0.091 0.005 0.092 0.249 0.581 0.684 1.030 1.208 1.303 0.371 0.193 0.785 0.298 1.211 0.303h0.18c0.276 0 0.525 0.111 0.707 0.293s0.293 0.431 0.293 0.707-0.111 0.525-0.293 0.707-0.431 0.293-0.707 0.293h-0.090c-0.637 0.003-1.22 0.228-1.675 0.603-0.323 0.266-0.581 0.607-0.75 0.993-0.257 0.582-0.288 1.21-0.127 1.782 0.119 0.423 0.341 0.814 0.652 1.136l0.072 0.073c0.196 0.196 0.294 0.45 0.294 0.707s-0.097 0.512-0.292 0.707c-0.197 0.197-0.451 0.295-0.709 0.295s-0.512-0.097-0.707-0.292l-0.061-0.061c-0.463-0.453-1.040-0.702-1.632-0.752-0.437-0.037-0.882 0.034-1.293 0.212-0.578 0.248-1.027 0.683-1.3 1.206-0.193 0.371-0.298 0.785-0.303 1.211v0.181c0 0.276-0.111 0.525-0.293 0.707s-0.43 0.292-0.706 0.292-0.525-0.111-0.707-0.293-0.293-0.431-0.293-0.707v-0.090c-0.015-0.66-0.255-1.242-0.644-1.692-0.284-0.328-0.646-0.585-1.058-0.744-0.575-0.247-1.193-0.274-1.756-0.116-0.423 0.119-0.814 0.341-1.136 0.652l-0.073 0.072c-0.196 0.196-0.45 0.294-0.707 0.294s-0.512-0.097-0.707-0.292c-0.197-0.197-0.295-0.451-0.295-0.709s0.097-0.512 0.292-0.707l0.061-0.061c0.453-0.463 0.702-1.040 0.752-1.632 0.037-0.437-0.034-0.882-0.212-1.293-0.248-0.578-0.683-1.027-1.206-1.3-0.371-0.193-0.785-0.298-1.211-0.303l-0.18 0.001c-0.276 0-0.525-0.111-0.707-0.293s-0.293-0.431-0.293-0.707 0.111-0.525 0.293-0.707 0.431-0.293 0.707-0.293h0.090c0.66-0.015 1.242-0.255 1.692-0.644 0.328-0.284 0.585-0.646 0.744-1.058 0.247-0.575 0.274-1.193 0.116-1.756-0.119-0.423-0.341-0.814-0.652-1.136l-0.073-0.073c-0.196-0.196-0.294-0.45-0.294-0.707s0.097-0.512 0.292-0.707c0.197-0.197 0.451-0.295 0.709-0.295s0.512 0.097 0.707 0.292l0.061 0.061c0.463 0.453 1.040 0.702 1.632 0.752 0.37 0.032 0.745-0.014 1.101-0.137 0.096-0.012 0.186-0.036 0.266-0.072-0.031 0.001-0.061 0.003-0.089 0.004-0.201 0.012-0.297 0.038-0.382 0.076h0.080c0.043 0 0.084-0.003 0.125-0.008 0.060-0.021 0.119-0.043 0.177-0.068 0.090-0.004 0.091-0.005 0.092-0.005 0.581-0.249 1.030-0.684 1.303-1.208 0.193-0.37 0.298-0.785 0.303-1.21v-0.181c0-0.276 0.111-0.525 0.293-0.707s0.431-0.293 0.707-0.293 0.525 0.111 0.707 0.293 0.293 0.431 0.293 0.707v0.090c0.003 0.637 0.228 1.22 0.603 1.675 0.266 0.323 0.607 0.581 0.996 0.751 0.578 0.255 1.206 0.286 1.778 0.125 0.423-0.119 0.814-0.341 1.136-0.652l0.073-0.072c0.196-0.196 0.45-0.294 0.707-0.294s0.512 0.097 0.707 0.292c0.197 0.197 0.295 0.451 0.295 0.709s-0.097 0.512-0.292 0.707l-0.061 0.061c-0.453 0.463-0.702 1.040-0.752 1.632-0.032 0.37 0.014 0.745 0.137 1.101 0.012 0.095 0.037 0.185 0.072 0.266-0.001-0.032-0.002-0.062-0.004-0.089z",CoreIcons.settings="M5 10v-7c0-0.552-0.448-1-1-1s-1 0.448-1 1v7c0 0.552 0.448 1 1 1s1-0.448 1-1zM13 21v-9c0-0.552-0.448-1-1-1s-1 0.448-1 1v9c0 0.552 0.448 1 1 1s1-0.448 1-1zM21 12v-9c0-0.552-0.448-1-1-1s-1 0.448-1 1v9c0 0.552 0.448 1 1 1s1-0.448 1-1zM1 15h2v6c0 0.552 0.448 1 1 1s1-0.448 1-1v-6h2c0.552 0 1-0.448 1-1s-0.448-1-1-1h-6c-0.552 0-1 0.448-1 1s0.448 1 1 1zM9 9h6c0.552 0 1-0.448 1-1s-0.448-1-1-1h-2v-4c0-0.552-0.448-1-1-1s-1 0.448-1 1v4h-2c-0.552 0-1 0.448-1 1s0.448 1 1 1zM17 17h2v4c0 0.552 0.448 1 1 1s1-0.448 1-1v-4h2c0.552 0 1-0.448 1-1s-0.448-1-1-1h-6c-0.552 0-1 0.448-1 1s0.448 1 1 1z",CoreIcons.notAllowed="M23 12c0-3.037-1.232-5.789-3.222-7.778s-4.741-3.222-7.778-3.222-5.789 1.232-7.778 3.222-3.222 4.741-3.222 7.778 1.232 5.789 3.222 7.778 4.741 3.222 7.778 3.222 5.789-1.232 7.778-3.222 3.222-4.741 3.222-7.778zM19.032 17.618l-12.65-12.65c1.54-1.232 3.493-1.968 5.618-1.968 2.486 0 4.734 1.006 6.364 2.636s2.636 3.878 2.636 6.364c0 2.125-0.736 4.078-1.968 5.618zM4.968 6.382l12.65 12.65c-1.54 1.232-3.493 1.968-5.618 1.968-2.486 0-4.734-1.006-6.364-2.636s-2.636-3.878-2.636-6.364c0-2.125 0.736-4.078 1.968-5.618z",CoreIcons.tick="M19.293 5.293l-10.293 10.293-4.293-4.293c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414l5 5c0.391 0.391 1.024 0.391 1.414 0l11-11c0.391-0.391 0.391-1.024 0-1.414s-1.024-0.391-1.414 0z",CoreIcons.target="M23 12c0-3.037-1.232-5.789-3.222-7.778s-4.741-3.222-7.778-3.222-5.789 1.232-7.778 3.222-3.222 4.741-3.222 7.778 1.232 5.789 3.222 7.778 4.741 3.222 7.778 3.222 5.789-1.232 7.778-3.222 3.222-4.741 3.222-7.778zM21 12c0 2.486-1.006 4.734-2.636 6.364s-3.878 2.636-6.364 2.636-4.734-1.006-6.364-2.636-2.636-3.878-2.636-6.364 1.006-4.734 2.636-6.364 3.878-2.636 6.364-2.636 4.734 1.006 6.364 2.636 2.636 3.878 2.636 6.364zM19 12c0-1.933-0.785-3.684-2.050-4.95s-3.017-2.050-4.95-2.050-3.684 0.785-4.95 2.050-2.050 3.017-2.050 4.95 0.785 3.684 2.050 4.95 3.017 2.050 4.95 2.050 3.684-0.785 4.95-2.050 2.050-3.017 2.050-4.95zM17 12c0 1.381-0.559 2.63-1.464 3.536s-2.155 1.464-3.536 1.464-2.63-0.559-3.536-1.464-1.464-2.155-1.464-3.536 0.559-2.63 1.464-3.536 2.155-1.464 3.536-1.464 2.63 0.559 3.536 1.464 1.464 2.155 1.464 3.536zM15 12c0-0.828-0.337-1.58-0.879-2.121s-1.293-0.879-2.121-0.879-1.58 0.337-2.121 0.879-0.879 1.293-0.879 2.121 0.337 1.58 0.879 2.121 1.293 0.879 2.121 0.879 1.58-0.337 2.121-0.879 0.879-1.293 0.879-2.121zM13 12c0 0.276-0.111 0.525-0.293 0.707s-0.431 0.293-0.707 0.293-0.525-0.111-0.707-0.293-0.293-0.431-0.293-0.707 0.111-0.525 0.293-0.707 0.431-0.293 0.707-0.293 0.525 0.111 0.707 0.293 0.293 0.431 0.293 0.707z",CoreIcons.sun="M18 12c0-1.657-0.673-3.158-1.757-4.243s-2.586-1.757-4.243-1.757-3.158 0.673-4.243 1.757-1.757 2.586-1.757 4.243 0.673 3.158 1.757 4.243 2.586 1.757 4.243 1.757 3.158-0.673 4.243-1.757 1.757-2.586 1.757-4.243zM16 12c0 1.105-0.447 2.103-1.172 2.828s-1.723 1.172-2.828 1.172-2.103-0.447-2.828-1.172-1.172-1.723-1.172-2.828 0.447-2.103 1.172-2.828 1.723-1.172 2.828-1.172 2.103 0.447 2.828 1.172 1.172 1.723 1.172 2.828zM11 1v2c0 0.552 0.448 1 1 1s1-0.448 1-1v-2c0-0.552-0.448-1-1-1s-1 0.448-1 1zM11 21v2c0 0.552 0.448 1 1 1s1-0.448 1-1v-2c0-0.552-0.448-1-1-1s-1 0.448-1 1zM3.513 4.927l1.42 1.42c0.391 0.391 1.024 0.391 1.414 0s0.391-1.024 0-1.414l-1.42-1.42c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414zM17.653 19.067l1.42 1.42c0.391 0.391 1.024 0.391 1.414 0s0.391-1.024 0-1.414l-1.42-1.42c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414zM1 13h2c0.552 0 1-0.448 1-1s-0.448-1-1-1h-2c-0.552 0-1 0.448-1 1s0.448 1 1 1zM21 13h2c0.552 0 1-0.448 1-1s-0.448-1-1-1h-2c-0.552 0-1 0.448-1 1s0.448 1 1 1zM4.927 20.487l1.42-1.42c0.391-0.391 0.391-1.024 0-1.414s-1.024-0.391-1.414 0l-1.42 1.42c-0.391 0.391-0.391 1.024 0 1.414s1.024 0.391 1.414 0zM19.067 6.347l1.42-1.42c0.391-0.391 0.391-1.024 0-1.414s-1.024-0.391-1.414 0l-1.42 1.42c-0.391 0.391-0.391 1.024 0 1.414s1.024 0.391 1.414 0z",CoreIcons.moon="M21.996 12.882c0.022-0.233-0.038-0.476-0.188-0.681-0.325-0.446-0.951-0.544-1.397-0.219-0.95 0.693-2.060 1.086-3.188 1.162-1.368 0.092-2.765-0.283-3.95-1.158-1.333-0.985-2.139-2.415-2.367-3.935s0.124-3.124 1.109-4.456c0.142-0.191 0.216-0.435 0.191-0.691-0.053-0.55-0.542-0.952-1.092-0.898-2.258 0.22-4.314 1.18-5.895 2.651-1.736 1.615-2.902 3.847-3.137 6.386-0.254 2.749 0.631 5.343 2.266 7.311s4.022 3.313 6.772 3.567 5.343-0.631 7.311-2.266 3.313-4.022 3.567-6.772zM19.567 14.674c-0.49 1.363-1.335 2.543-2.416 3.441-1.576 1.309-3.648 2.016-5.848 1.813s-4.108-1.278-5.417-2.854-2.016-3.648-1.813-5.848c0.187-2.032 1.117-3.814 2.507-5.106 0.782-0.728 1.71-1.3 2.731-1.672-0.456 1.264-0.577 2.606-0.384 3.899 0.303 2.023 1.38 3.934 3.156 5.247 1.578 1.167 3.448 1.668 5.272 1.545 0.752-0.050 1.496-0.207 2.21-0.465z",CoreIcons.login="M15 4h4c0.276 0 0.525 0.111 0.707 0.293s0.293 0.431 0.293 0.707v14c0 0.276-0.111 0.525-0.293 0.707s-0.431 0.293-0.707 0.293h-4c-0.552 0-1 0.448-1 1s0.448 1 1 1h4c0.828 0 1.58-0.337 2.121-0.879s0.879-1.293 0.879-2.121v-14c0-0.828-0.337-1.58-0.879-2.121s-1.293-0.879-2.121-0.879h-4c-0.552 0-1 0.448-1 1s0.448 1 1 1zM12.586 11h-9.586c-0.552 0-1 0.448-1 1s0.448 1 1 1h9.586l-3.293 3.293c-0.391 0.391-0.391 1.024 0 1.414s1.024 0.391 1.414 0l5-5c0.096-0.096 0.168-0.206 0.217-0.324s0.076-0.247 0.076-0.383c0-0.13-0.025-0.261-0.076-0.383-0.049-0.118-0.121-0.228-0.217-0.324l-5-5c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414z",CoreIcons.logout="M9 20h-4c-0.276 0-0.525-0.111-0.707-0.293s-0.293-0.431-0.293-0.707v-14c0-0.276 0.111-0.525 0.293-0.707s0.431-0.293 0.707-0.293h4c0.552 0 1-0.448 1-1s-0.448-1-1-1h-4c-0.828 0-1.58 0.337-2.121 0.879s-0.879 1.293-0.879 2.121v14c0 0.828 0.337 1.58 0.879 2.121s1.293 0.879 2.121 0.879h4c0.552 0 1-0.448 1-1s-0.448-1-1-1zM18.586 11h-9.586c-0.552 0-1 0.448-1 1s0.448 1 1 1h9.586l-3.293 3.293c-0.391 0.391-0.391 1.024 0 1.414s1.024 0.391 1.414 0l5-5c0.092-0.092 0.166-0.202 0.217-0.324 0.15-0.362 0.078-0.795-0.217-1.090l-5-5c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414z",CoreIcons.phone="M23 16.92c0.016-0.714-0.236-1.404-0.673-1.943-0.46-0.566-1.129-0.967-1.925-1.080-0.8-0.098-1.695-0.314-2.586-0.646-0.433-0.159-0.893-0.218-1.344-0.174-0.663 0.064-1.307 0.349-1.819 0.855l-0.72 0.72c-1.77-1.117-3.36-2.667-4.583-4.589l0.726-0.726c0.322-0.33 0.563-0.726 0.707-1.156 0.212-0.632 0.214-1.336-0.039-2.011-0.289-0.753-0.518-1.644-0.644-2.595-0.104-0.714-0.456-1.345-0.963-1.804-0.539-0.486-1.256-0.779-2.027-0.771h-2.996c-0.088 0-0.182 0.004-0.273 0.012-0.824 0.075-1.542 0.478-2.033 1.066s-0.758 1.367-0.683 2.199c0.3 3.076 1.365 6.243 3.216 9.102 1.502 2.413 3.648 4.623 6.298 6.306 2.568 1.697 5.684 2.862 9.086 3.231 0.092 0.009 0.191 0.013 0.288 0.013 0.828-0.003 1.578-0.343 2.118-0.887s0.873-1.297 0.87-2.121zM21 16.92v3c0.001 0.28-0.109 0.53-0.29 0.712s-0.429 0.295-0.706 0.296c-3.149-0.336-5.961-1.391-8.263-2.912-2.428-1.543-4.359-3.537-5.702-5.694-1.697-2.62-2.655-5.481-2.924-8.238-0.024-0.268 0.064-0.526 0.229-0.724s0.403-0.33 0.678-0.355l3.088-0.005c0.271-0.003 0.507 0.094 0.687 0.256 0.17 0.154 0.288 0.366 0.323 0.608 0.142 1.072 0.408 2.117 0.757 3.025 0.081 0.216 0.080 0.447 0.010 0.658-0.049 0.145-0.131 0.281-0.242 0.395l-1.262 1.261c-0.324 0.324-0.379 0.814-0.162 1.201 1.584 2.785 3.839 4.957 6.381 6.378 0.397 0.222 0.882 0.144 1.195-0.166l1.27-1.27c0.166-0.164 0.377-0.257 0.598-0.279 0.152-0.015 0.31 0.005 0.459 0.060 1.022 0.381 2.070 0.636 3.034 0.754 0.241 0.034 0.462 0.166 0.615 0.355 0.147 0.181 0.231 0.412 0.226 0.682z",CoreIcons.message="M22 15v-10c0-0.828-0.337-1.58-0.879-2.121s-1.293-0.879-2.121-0.879h-14c-0.828 0-1.58 0.337-2.121 0.879s-0.879 1.293-0.879 2.121v16c0 0.256 0.098 0.512 0.293 0.707 0.391 0.391 1.024 0.391 1.414 0l3.707-3.707h11.586c0.828 0 1.58-0.337 2.121-0.879s0.879-1.293 0.879-2.121zM20 15c0 0.276-0.111 0.525-0.293 0.707s-0.431 0.293-0.707 0.293h-12c-0.276 0-0.526 0.112-0.707 0.293l-2.293 2.293v-13.586c0-0.276 0.111-0.525 0.293-0.707s0.431-0.293 0.707-0.293h14c0.276 0 0.525 0.111 0.707 0.293s0.293 0.431 0.293 0.707z",CoreIcons.mail="M3 7.921l8.427 5.899c0.34 0.235 0.795 0.246 1.147 0l8.426-5.899v10.079c0 0.272-0.11 0.521-0.295 0.705s-0.433 0.295-0.705 0.295h-16c-0.272 0-0.521-0.11-0.705-0.295s-0.295-0.433-0.295-0.705zM1 5.983c0 0.010 0 0.020 0 0.030v11.987c0 0.828 0.34 1.579 0.88 2.12s1.292 0.88 2.12 0.88h16c0.828 0 1.579-0.34 2.12-0.88s0.88-1.292 0.88-2.12v-11.988c0-0.010 0-0.020 0-0.030-0.005-0.821-0.343-1.565-0.88-2.102-0.541-0.54-1.292-0.88-2.12-0.88h-16c-0.828 0-1.579 0.34-2.12 0.88-0.537 0.537-0.875 1.281-0.88 2.103zM20.894 5.554l-8.894 6.225-8.894-6.225c0.048-0.096 0.112-0.183 0.188-0.259 0.185-0.185 0.434-0.295 0.706-0.295h16c0.272 0 0.521 0.11 0.705 0.295 0.076 0.076 0.14 0.164 0.188 0.259z",CoreIcons.clip="M20.733 10.343l-9.19 9.19c-0.977 0.977-2.256 1.465-3.538 1.465s-2.561-0.488-3.538-1.465-1.465-2.256-1.465-3.538 0.488-2.561 1.465-3.538l9.19-9.19c0.586-0.586 1.353-0.879 2.123-0.879s1.536 0.293 2.123 0.879 0.879 1.353 0.879 2.123-0.293 1.536-0.879 2.123l-9.2 9.19c-0.196 0.196-0.451 0.294-0.708 0.294s-0.512-0.098-0.708-0.293-0.293-0.45-0.293-0.708 0.098-0.512 0.293-0.708l8.49-8.48c0.391-0.39 0.391-1.023 0.001-1.414s-1.023-0.391-1.414-0.001l-8.49 8.48c-0.586 0.586-0.879 1.356-0.879 2.122s0.293 1.536 0.879 2.122 1.356 0.879 2.122 0.879 1.536-0.293 2.122-0.879l9.2-9.19c0.977-0.977 1.465-2.258 1.465-3.537s-0.489-2.561-1.465-3.537-2.258-1.465-3.537-1.465-2.561 0.489-3.537 1.465l-9.19 9.19c-1.367 1.367-2.051 3.161-2.051 4.952s0.684 3.585 2.051 4.952 3.161 2.051 4.952 2.051 3.585-0.684 4.952-2.051l9.19-9.19c0.391-0.391 0.391-1.024 0-1.414s-1.024-0.391-1.414 0z",CoreIcons.map="M7 3.723v13.697l-5 2.857v-13.697zM17 20.277v-13.697l5-2.857v13.696zM15.535 22.885c0.082 0.043 0.17 0.075 0.263 0.094 0.033 0.007 0.067 0.012 0.101 0.015s0.068 0.005 0.102 0.005c-0.001 0.001-0.001 0.001-0.001 0.001s0 0 0.001 0c0.173 0 0.344-0.046 0.496-0.132l0.015-0.009 6.985-3.991c0.32-0.183 0.501-0.518 0.503-0.868v-16c0-0.552-0.448-1-1-1-0.183 0-0.354 0.049-0.496 0.132l-6.535 3.734-7.503-3.752c-0.083-0.042-0.171-0.075-0.264-0.094-0.034-0.007-0.067-0.012-0.101-0.015s-0.068-0.005-0.102-0.005c0.001 0 0.001 0 0.001 0s0 0-0.001 0c-0.173 0-0.344 0.046-0.495 0.132l-0.015 0.008-6.985 3.992c-0.321 0.183-0.502 0.518-0.504 0.868v16c0 0.552 0.448 1 1 1 0.183 0 0.354-0.049 0.496-0.132l6.535-3.734zM15 6.618v13.764l-6-3v-13.764z",CoreIcons.mapPin="M22 10c0-2.761-1.12-5.263-2.929-7.071s-4.31-2.929-7.071-2.929-5.263 1.12-7.071 2.929-2.929 4.31-2.929 7.071c0 0.569 0.053 1.128 0.15 1.676 0.274 1.548 0.899 3.004 1.682 4.32 2.732 4.591 7.613 7.836 7.613 7.836 0.331 0.217 0.765 0.229 1.109 0 0 0 4.882-3.245 7.613-7.836 0.783-1.316 1.408-2.772 1.682-4.32 0.098-0.548 0.151-1.107 0.151-1.676zM20 10c0 0.444-0.041 0.887-0.119 1.328-0.221 1.25-0.737 2.478-1.432 3.646-1.912 3.214-5.036 5.747-6.369 6.74-1.398-0.916-4.588-3.477-6.53-6.74-0.695-1.168-1.211-2.396-1.432-3.646-0.077-0.441-0.118-0.884-0.118-1.328 0-2.209 0.894-4.208 2.343-5.657s3.448-2.343 5.657-2.343 4.208 0.894 5.657 2.343 2.343 3.448 2.343 5.657zM16 10c0-1.104-0.449-2.106-1.172-2.828s-1.724-1.172-2.828-1.172-2.106 0.449-2.828 1.172-1.172 1.724-1.172 2.828 0.449 2.106 1.172 2.828 1.724 1.172 2.828 1.172 2.106-0.449 2.828-1.172 1.172-1.724 1.172-2.828zM14 10c0 0.553-0.223 1.051-0.586 1.414s-0.861 0.586-1.414 0.586-1.051-0.223-1.414-0.586-0.586-0.861-0.586-1.414 0.223-1.051 0.586-1.414 0.861-0.586 1.414-0.586 1.051 0.223 1.414 0.586 0.586 0.861 0.586 1.414z",CoreIcons.thumbDown="M11 15c0-0.552-0.448-1-1-1h-5.679c-0.065-0.002-0.153-0.011-0.153-0.011-0.273-0.041-0.502-0.188-0.655-0.396s-0.225-0.47-0.184-0.742l1.38-8.998c0.037-0.239 0.156-0.448 0.325-0.6 0.179-0.161 0.415-0.256 0.686-0.253h10.28v9.788l-3.608 8.118c-0.307-0.098-0.582-0.268-0.806-0.492-0.363-0.363-0.586-0.861-0.586-1.414zM9 16v3c0 1.104 0.449 2.106 1.172 2.828s1.724 1.172 2.828 1.172c0.405 0 0.754-0.241 0.914-0.594l4-9c0.060-0.134 0.087-0.275 0.086-0.406v-11c0-0.552-0.448-1-1-1h-11.28c-0.767-0.009-1.482 0.281-2.021 0.763-0.505 0.452-0.857 1.076-0.967 1.783l-1.38 9.002c-0.125 0.82 0.096 1.614 0.55 2.231s1.147 1.063 1.965 1.187c0.165 0.025 0.333 0.037 0.492 0.034zM17 3h2.67c0.361-0.006 0.674 0.119 0.912 0.332 0.213 0.191 0.364 0.45 0.418 0.746v6.787c-0.037 0.34-0.208 0.63-0.455 0.833-0.235 0.194-0.537 0.306-0.861 0.301l-2.684 0.001c-0.552 0-1 0.448-1 1s0.448 1 1 1h2.656c0.81 0.012 1.569-0.27 2.16-0.756 0.622-0.511 1.059-1.251 1.176-2.11 0.005-0.040 0.008-0.087 0.008-0.134v-7c0-0.042-0.003-0.089-0.009-0.137-0.111-0.803-0.505-1.51-1.075-2.020-0.6-0.537-1.397-0.858-2.246-0.842h-2.67c-0.552 0-1 0.448-1 1s0.448 1 1 1z",CoreIcons.thumbUp="M13 9c0 0.552 0.448 1 1 1h5.679c0.065 0.002 0.153 0.011 0.153 0.011 0.273 0.041 0.502 0.188 0.655 0.396s0.225 0.47 0.184 0.742l-1.38 8.998c-0.037 0.239-0.156 0.448-0.325 0.6-0.18 0.161-0.415 0.256-0.686 0.253h-10.28v-9.788l3.608-8.118c0.307 0.098 0.582 0.268 0.806 0.492 0.363 0.363 0.586 0.861 0.586 1.414zM15 8v-3c0-1.104-0.449-2.106-1.172-2.828s-1.724-1.172-2.828-1.172c-0.405 0-0.754 0.241-0.914 0.594l-4 9c-0.060 0.134-0.087 0.275-0.086 0.406v11c0 0.552 0.448 1 1 1h11.28c0.767 0.009 1.482-0.281 2.021-0.763 0.505-0.452 0.857-1.076 0.967-1.783l1.38-9.002c0.125-0.82-0.096-1.614-0.55-2.231s-1.147-1.063-1.965-1.187c-0.165-0.025-0.333-0.037-0.492-0.034zM7 21h-3c-0.276 0-0.525-0.111-0.707-0.293s-0.293-0.431-0.293-0.707v-7c0-0.276 0.111-0.525 0.293-0.707s0.431-0.293 0.707-0.293h3c0.552 0 1-0.448 1-1s-0.448-1-1-1h-3c-0.828 0-1.58 0.337-2.121 0.879s-0.879 1.293-0.879 2.121v7c0 0.828 0.337 1.58 0.879 2.121s1.293 0.879 2.121 0.879h3c0.552 0 1-0.448 1-1s-0.448-1-1-1z",CoreIcons.spinner="M24 12c-0.030-1.567-0.37-3.129-0.998-4.558-0.626-1.43-1.534-2.725-2.649-3.795s-2.436-1.918-3.867-2.476c-1.43-0.561-2.967-0.829-4.486-0.796-1.519 0.030-3.031 0.36-4.414 0.969-1.384 0.607-2.638 1.488-3.673 2.568s-1.855 2.36-2.395 3.745c-0.542 1.384-0.8 2.872-0.767 4.342 0.030 1.471 0.351 2.933 0.941 4.27 0.588 1.338 1.441 2.551 2.487 3.552s2.284 1.793 3.624 2.314c1.339 0.523 2.776 0.771 4.199 0.739 1.423-0.030 2.835-0.341 4.127-0.912 1.293-0.569 2.464-1.394 3.43-2.406s1.731-2.209 2.233-3.502c0.305-0.784 0.513-1.603 0.622-2.433 0.029 0.002 0.059 0.003 0.088 0.003 0.828 0 1.5-0.672 1.5-1.5 0-0.042-0.002-0.084-0.006-0.125h0.006zM21.617 15.983c-0.55 1.247-1.347 2.377-2.324 3.309s-2.133 1.668-3.381 2.151c-1.248 0.485-2.585 0.714-3.911 0.682-1.327-0.030-2.639-0.322-3.84-0.855-1.201-0.531-2.289-1.301-3.187-2.243s-1.606-2.057-2.070-3.259c-0.466-1.202-0.685-2.489-0.653-3.768 0.031-1.279 0.312-2.541 0.826-3.696 0.512-1.155 1.254-2.202 2.162-3.066s1.981-1.544 3.138-1.989c1.156-0.447 2.394-0.656 3.624-0.624 1.23 0.031 2.443 0.303 3.552 0.798 1.11 0.493 2.115 1.207 2.944 2.081s1.481 1.905 1.908 3.016c0.428 1.111 0.628 2.298 0.596 3.48h0.006c-0.003 0.041-0.006 0.083-0.006 0.125 0 0.774 0.586 1.41 1.338 1.491-0.146 0.816-0.387 1.613-0.721 2.367z",CoreIcons.file="M17.586 7h-2.586v-2.586zM20.707 7.293l-6-6c-0.092-0.092-0.202-0.166-0.324-0.217s-0.253-0.076-0.383-0.076h-8c-0.828 0-1.58 0.337-2.121 0.879s-0.879 1.293-0.879 2.121v16c0 0.828 0.337 1.58 0.879 2.121s1.293 0.879 2.121 0.879h12c0.828 0 1.58-0.337 2.121-0.879s0.879-1.293 0.879-2.121v-12c0-0.276-0.112-0.526-0.293-0.707zM13 3v5c0 0.552 0.448 1 1 1h5v11c0 0.276-0.111 0.525-0.293 0.707s-0.431 0.293-0.707 0.293h-12c-0.276 0-0.525-0.111-0.707-0.293s-0.293-0.431-0.293-0.707v-16c0-0.276 0.111-0.525 0.293-0.707s0.431-0.293 0.707-0.293zM16 12h-8c-0.552 0-1 0.448-1 1s0.448 1 1 1h8c0.552 0 1-0.448 1-1s-0.448-1-1-1zM16 16h-8c-0.552 0-1 0.448-1 1s0.448 1 1 1h8c0.552 0 1-0.448 1-1s-0.448-1-1-1zM10 8h-2c-0.552 0-1 0.448-1 1s0.448 1 1 1h2c0.552 0 1-0.448 1-1s-0.448-1-1-1z",CoreIcons.image="M5 2c-0.828 0-1.58 0.337-2.121 0.879s-0.879 1.293-0.879 2.121v14c0 0.828 0.337 1.58 0.879 2.121s1.293 0.879 2.121 0.879h14c0.828 0 1.58-0.337 2.121-0.879s0.879-1.293 0.879-2.121v-14c0-0.828-0.337-1.58-0.879-2.121s-1.293-0.879-2.121-0.879zM11 8.5c0-0.69-0.281-1.316-0.732-1.768s-1.078-0.732-1.768-0.732-1.316 0.281-1.768 0.732-0.732 1.078-0.732 1.768 0.281 1.316 0.732 1.768 1.078 0.732 1.768 0.732 1.316-0.281 1.768-0.732 0.732-1.078 0.732-1.768zM9 8.5c0 0.138-0.055 0.262-0.146 0.354s-0.216 0.146-0.354 0.146-0.262-0.055-0.354-0.146-0.146-0.216-0.146-0.354 0.055-0.262 0.146-0.354 0.216-0.146 0.354-0.146 0.262 0.055 0.354 0.146 0.146 0.216 0.146 0.354zM7.414 20l8.586-8.586 4 4v3.586c0 0.276-0.111 0.525-0.293 0.707s-0.431 0.293-0.707 0.293zM20 12.586l-3.293-3.293c-0.391-0.391-1.024-0.391-1.414 0l-10.644 10.644c-0.135-0.050-0.255-0.129-0.356-0.23-0.182-0.182-0.293-0.431-0.293-0.707v-14c0-0.276 0.111-0.525 0.293-0.707s0.431-0.293 0.707-0.293h14c0.276 0 0.525 0.111 0.707 0.293s0.293 0.431 0.293 0.707z",CoreIcons.audio="M8 18c0 0.553-0.223 1.051-0.586 1.414s-0.861 0.586-1.414 0.586-1.051-0.223-1.414-0.586-0.586-0.861-0.586-1.414 0.223-1.051 0.586-1.414 0.861-0.586 1.414-0.586 1.051 0.223 1.414 0.586 0.586 0.861 0.586 1.414zM22 16v-13c0-0.050-0.004-0.107-0.014-0.164-0.091-0.545-0.606-0.913-1.151-0.822l-12 2c-0.476 0.081-0.835 0.492-0.835 0.986v9.535c-0.588-0.34-1.272-0.535-2-0.535-1.104 0-2.106 0.449-2.828 1.172s-1.172 1.724-1.172 2.828 0.449 2.106 1.172 2.828 1.724 1.172 2.828 1.172 2.106-0.449 2.828-1.172 1.172-1.724 1.172-2.828v-12.153l10-1.667v8.355c-0.588-0.34-1.272-0.535-2-0.535-1.104 0-2.106 0.449-2.828 1.172s-1.172 1.724-1.172 2.828 0.449 2.106 1.172 2.828 1.724 1.172 2.828 1.172 2.106-0.449 2.828-1.172 1.172-1.724 1.172-2.828zM20 16c0 0.553-0.223 1.051-0.586 1.414s-0.861 0.586-1.414 0.586-1.051-0.223-1.414-0.586-0.586-0.861-0.586-1.414 0.223-1.051 0.586-1.414 0.861-0.586 1.414-0.586 1.051 0.223 1.414 0.586 0.586 0.861 0.586 1.414z",CoreIcons.video="M16 11h-8v-8h8zM8 13h8v8h-8zM6 6h-3v-1.82c0-0.326 0.131-0.62 0.346-0.834s0.508-0.346 0.834-0.346h1.82zM3 8h3v3h-3zM6 16h-3v-3h3zM3 18h3v3h-1.82c-0.326 0-0.62-0.131-0.834-0.346s-0.346-0.508-0.346-0.834zM21 16h-3v-3h3zM18 18h3v1.82c0 0.326-0.131 0.62-0.346 0.834s-0.508 0.346-0.834 0.346h-1.82zM21 6h-3v-3h1.82c0.326 0 0.62 0.131 0.834 0.346s0.346 0.508 0.346 0.834zM23 7v-2.82c0-0.878-0.357-1.674-0.931-2.249s-1.371-0.931-2.249-0.931h-15.64c-0.878 0-1.674 0.357-2.249 0.931s-0.931 1.371-0.931 2.249v15.64c0 0.878 0.357 1.674 0.931 2.249s1.371 0.931 2.249 0.931h15.64c0.878 0 1.674-0.357 2.249-0.931s0.931-1.371 0.931-2.249zM18 8h3v3h-3z",CoreIcons.mic="M12 2c0.553 0 1.051 0.223 1.414 0.586s0.586 0.861 0.586 1.414v8c0 0.553-0.223 1.051-0.586 1.414s-0.861 0.586-1.414 0.586-1.051-0.223-1.414-0.586-0.586-0.861-0.586-1.414v-8c0-0.553 0.223-1.051 0.586-1.414s0.861-0.586 1.414-0.586zM12 0c-1.104 0-2.106 0.449-2.828 1.172s-1.172 1.724-1.172 2.828v8c0 1.104 0.449 2.106 1.172 2.828s1.724 1.172 2.828 1.172 2.106-0.449 2.828-1.172 1.172-1.724 1.172-2.828v-8c0-1.104-0.449-2.106-1.172-2.828s-1.724-1.172-2.828-1.172zM8 24h8c0.552 0 1-0.448 1-1s-0.448-1-1-1h-3v-2.062c1.809-0.226 3.432-1.056 4.657-2.281 1.446-1.447 2.343-3.448 2.343-5.657v-2c0-0.552-0.448-1-1-1s-1 0.448-1 1v2c0 1.657-0.67 3.156-1.757 4.243s-2.586 1.757-4.243 1.757-3.156-0.67-4.243-1.757-1.757-2.586-1.757-4.243v-2c0-0.552-0.448-1-1-1s-1 0.448-1 1v2c0 2.209 0.897 4.21 2.343 5.657 1.225 1.225 2.847 2.055 4.657 2.281v2.062h-3c-0.552 0-1 0.448-1 1s0.448 1 1 1z",CoreIcons.play="M5.541 2.159c-0.153-0.1-0.34-0.159-0.541-0.159-0.552 0-1 0.448-1 1v18c-0.001 0.182 0.050 0.372 0.159 0.541 0.299 0.465 0.917 0.599 1.382 0.3l14-9c0.114-0.072 0.219-0.174 0.3-0.3 0.299-0.465 0.164-1.083-0.3-1.382zM6 4.832l11.151 7.168-11.151 7.168z",CoreIcons.pause="M6 3c-0.552 0-1 0.448-1 1v16c0 0.552 0.448 1 1 1h4c0.552 0 1-0.448 1-1v-16c0-0.552-0.448-1-1-1zM7 5h2v14h-2zM14 3c-0.552 0-1 0.448-1 1v16c0 0.552 0.448 1 1 1h4c0.552 0 1-0.448 1-1v-16c0-0.552-0.448-1-1-1zM15 5h2v14h-2z",CoreIcons.stop="M18,18H6V6H18V18Z",CoreIcons.volumeOn="M10 7.081v9.839l-3.375-2.7c-0.17-0.137-0.388-0.22-0.625-0.22h-3v-4h3c0.218 0.001 0.439-0.071 0.625-0.219zM10.375 4.219l-4.726 3.781h-3.649c-0.552 0-1 0.448-1 1v6c0 0.552 0.448 1 1 1h3.649l4.726 3.781c0.431 0.345 1.061 0.275 1.406-0.156 0.148-0.185 0.22-0.407 0.219-0.625v-14c0-0.552-0.448-1-1-1-0.237 0-0.455 0.083-0.625 0.219zM18.363 5.637c1.757 1.758 2.635 4.059 2.635 6.364 0 2.304-0.878 4.605-2.635 6.362-0.39 0.391-0.39 1.024 0 1.414s1.024 0.39 1.414 0c2.147-2.147 3.22-4.963 3.221-7.776s-1.074-5.63-3.221-7.778c-0.39-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414zM14.833 9.167c0.781 0.781 1.171 1.803 1.171 2.828s-0.39 2.047-1.171 2.828c-0.39 0.391-0.39 1.024 0 1.414s1.024 0.39 1.414 0c1.171-1.171 1.757-2.708 1.757-4.242s-0.586-3.071-1.757-4.242c-0.39-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414z",CoreIcons.volumeOff="M10 7.081v9.839l-3.375-2.7c-0.17-0.137-0.388-0.22-0.625-0.22h-3v-4h3c0.218 0.001 0.439-0.071 0.625-0.219zM10.375 4.219l-4.726 3.781h-3.649c-0.552 0-1 0.448-1 1v6c0 0.552 0.448 1 1 1h3.649l4.726 3.781c0.431 0.345 1.061 0.275 1.406-0.156 0.148-0.185 0.22-0.407 0.219-0.625v-14c0-0.552-0.448-1-1-1-0.237 0-0.455 0.083-0.625 0.219zM16.293 9.707l2.293 2.293-2.293 2.293c-0.391 0.391-0.391 1.024 0 1.414s1.024 0.391 1.414 0l2.293-2.293 2.293 2.293c0.391 0.391 1.024 0.391 1.414 0s0.391-1.024 0-1.414l-2.293-2.293 2.293-2.293c0.391-0.391 0.391-1.024 0-1.414s-1.024-0.391-1.414 0l-2.293 2.293-2.293-2.293c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414z",CoreIcons.alignLeft="M3,3H21V5H3V3M3,7H15V9H3V7M3,11H21V13H3V11M3,15H15V17H3V15M3,19H21V21H3V19Z",CoreIcons.alignCenter="M3,3H21V5H3V3M7,7H17V9H7V7M3,11H21V13H3V11M7,15H17V17H7V15M3,19H21V21H3V19Z",CoreIcons.alignRight="M3,3H21V5H3V3M9,7H21V9H9V7M3,11H21V13H3V11M9,15H21V17H9V15M3,19H21V21H3V19Z",CoreIcons.alignJustify="M3,3H21V5H3V3M3,7H21V9H3V7M3,11H21V13H3V11M3,15H21V17H3V15M3,19H21V21H3V19Z",CoreIcons.formatBold="M13.5,15.5H10V12.5H13.5A1.5,1.5 0 0,1 15,14A1.5,1.5 0 0,1 13.5,15.5M10,6.5H13A1.5,1.5 0 0,1 14.5,8A1.5,1.5 0 0,1 13,9.5H10M15.6,10.79C16.57,10.11 17.25,9 17.25,8C17.25,5.74 15.5,4 13.25,4H7V18H14.04C16.14,18 17.75,16.3 17.75,14.21C17.75,12.69 16.89,11.39 15.6,10.79Z",CoreIcons.formatItalic="M10,4V7H12.21L8.79,15H6V18H14V15H11.79L15.21,7H18V4H10Z",CoreIcons.formatUnderline="M5,21H19V19H5V21M12,17A6,6 0 0,0 18,11V3H15.5V11A3.5,3.5 0 0,1 12,14.5A3.5,3.5 0 0,1 8.5,11V3H6V11A6,6 0 0,0 12,17Z",CoreIcons.formatStrikethrough="M7.2 9.8C6 7.5 7.7 4.8 10.1 4.3C13.2 3.3 17.7 4.7 17.6 8.5H14.6C14.6 8.2 14.5 7.9 14.5 7.7C14.3 7.1 13.9 6.8 13.3 6.6C12.5 6.3 11.2 6.4 10.5 6.9C9 8.2 10.4 9.5 12 10H7.4C7.3 9.9 7.3 9.8 7.2 9.8M21 13V11H3V13H12.6C12.8 13.1 13 13.1 13.2 13.2C13.8 13.5 14.3 13.7 14.5 14.3C14.6 14.7 14.7 15.2 14.5 15.6C14.3 16.1 13.9 16.3 13.4 16.5C11.6 17 9.4 16.3 9.5 14.1H6.5C6.4 16.7 8.6 18.5 11 18.8C14.8 19.6 19.3 17.2 17.3 12.9L21 13Z",CoreIcons.formatClear="M6,5V5.18L8.82,8H11.22L10.5,9.68L12.6,11.78L14.21,8H20V5H6M3.27,5L2,6.27L8.97,13.24L6.5,19H9.5L11.07,15.34L16.73,21L18,19.73L3.55,5.27L3.27,5Z",CoreIcons.formatIndentDecrease="M11,13H21V11H11M11,9H21V7H11M3,3V5H21V3M3,21H21V19H3M3,12L7,16V8M11,17H21V15H11V17Z",CoreIcons.formatIndentIncrease="M11,13H21V11H11M11,9H21V7H11M3,3V5H21V3M11,17H21V15H11M3,8V16L7,12M3,21H21V19H3V21Z",CoreIcons.formatListBullet="M7,5H21V7H7V5M7,13V11H21V13H7M4,4.5A1.5,1.5 0 0,1 5.5,6A1.5,1.5 0 0,1 4,7.5A1.5,1.5 0 0,1 2.5,6A1.5,1.5 0 0,1 4,4.5M4,10.5A1.5,1.5 0 0,1 5.5,12A1.5,1.5 0 0,1 4,13.5A1.5,1.5 0 0,1 2.5,12A1.5,1.5 0 0,1 4,10.5M7,19V17H21V19H7M4,16.5A1.5,1.5 0 0,1 5.5,18A1.5,1.5 0 0,1 4,19.5A1.5,1.5 0 0,1 2.5,18A1.5,1.5 0 0,1 4,16.5Z",CoreIcons.formatListNumber="M7,13V11H21V13H7M7,19V17H21V19H7M7,7V5H21V7H7M3,8V5H2V4H4V8H3M2,17V16H5V20H2V19H4V18.5H3V17.5H4V17H2M4.25,10A0.75,0.75 0 0,1 5,10.75C5,10.95 4.92,11.14 4.79,11.27L3.12,13H5V14H2V13.08L4,11H2V10H4.25Z",CoreIcons.formatText="M18.5,4L19.66,8.35L18.7,8.61C18.25,7.74 17.79,6.87 17.26,6.43C16.73,6 16.11,6 15.5,6H13V16.5C13,17 13,17.5 13.33,17.75C13.67,18 14.33,18 15,18V19H9V18C9.67,18 10.33,18 10.67,17.75C11,17.5 11,17 11,16.5V6H8.5C7.89,6 7.27,6 6.74,6.43C6.21,6.87 5.75,7.74 5.3,8.61L4.34,8.35L5.5,4H18.5Z",CoreIcons.formatFill="M19,11.5C19,11.5 17,13.67 17,15A2,2 0 0,0 19,17A2,2 0 0,0 21,15C21,13.67 19,11.5 19,11.5M5.21,10L10,5.21L14.79,10M16.56,8.94L7.62,0L6.21,1.41L8.59,3.79L3.44,8.94C2.85,9.5 2.85,10.47 3.44,11.06L8.94,16.56C9.23,16.85 9.62,17 10,17C10.38,17 10.77,16.85 11.06,16.56L16.56,11.06C17.15,10.47 17.15,9.5 16.56,8.94Z",CoreIcons.formatHilight="M4,17L6.75,14.25L6.72,14.23C6.14,13.64 6.14,12.69 6.72,12.11L11.46,7.37L15.7,11.61L10.96,16.35C10.39,16.93 9.46,16.93 8.87,16.37L8.24,17H4M15.91,2.91C16.5,2.33 17.45,2.33 18.03,2.91L20.16,5.03C20.74,5.62 20.74,6.57 20.16,7.16L16.86,10.45L12.62,6.21L15.91,2.91Z",CoreIcons.formatParagraph="M13,4A4,4 0 0,1 17,8A4,4 0 0,1 13,12H11V18H9V4H13M13,10A2,2 0 0,0 15,8A2,2 0 0,0 13,6H11V10H13Z",CoreIcons.formatCommentBlock="M9,22A1,1 0 0,1 8,21V18H4A2,2 0 0,1 2,16V4C2,2.89 2.9,2 4,2H20A2,2 0 0,1 22,4V16A2,2 0 0,1 20,18H13.9L10.2,21.71C10,21.9 9.75,22 9.5,22V22H9M10,16V19.08L13.08,16H20V4H4V16H10M6,7H18V9H6V7M6,11H15V13H6V11Z",CoreIcons.formatQuoteBlock="M10,7L8,11H11V17H5V11L7,7H10M18,7L16,11H19V17H13V11L15,7H18Z",CoreIcons.formatCodeBlock="M5.59 3.41L7 4.82L3.82 8L7 11.18L5.59 12.6L1 8L5.59 3.41M11.41 3.41L16 8L11.41 12.6L10 11.18L13.18 8L10 4.82L11.41 3.41M22 6V18C22 19.11 21.11 20 20 20H4C2.9 20 2 19.11 2 18V14H4V18H20V6H17.03V4H20C21.11 4 22 4.89 22 6Z",CoreIcons.chartColumn="M22,21H2V3H4V19H6V10H10V19H12V6H16V19H18V14H22V21Z",CoreIcons.chartBar="M3 2v20h18v-2h-16v-2h9v-4h-9v-2h13v-4h-13v-2h5v-4h-7z",CoreIcons.chartLine="M16,11.78L20.24,4.45L21.97,5.45L16.74,14.5L10.23,10.75L5.46,19H22V21H2V3H4V17.54L9.5,8L16,11.78Z",CoreIcons.chartRadar="M12,5L19.6,10.5L16.7,19.4H7.3L4.4,10.5L12,5M12,2.5L2,9.8L5.8,21.5H18.1L22,9.8L12,2.5Z",CoreIcons.chartPie="M11,2V22C5.9,21.5 2,17.2 2,12C2,6.8 5.9,2.5 11,2M13,2V11H22C21.5,6.2 17.8,2.5 13,2M13,13V22C17.7,21.5 21.5,17.8 22,13H13Z",CoreIcons.chartLineStacked="M17.45,15.18L22,6.81V19L22,21H2V3H4V15.54L4,19H4.31L6,19H6.57L10.96,11.44L17.45,15.18M22,3L21.97,3.45L17,11L10,6L6,12V3H22Z",CoreIcons.chartBarStacked="M3 2v20h18v-2h-16v-2h2v-4h-2v-2h3v-4h-3v-2h2v-4h-4zM10 6v-4h-2v4h2zM18 12v-4h-3v4h3zM9 8v4h5v-4h-5zM14 18v-4h-2v4h2zM8 14v4h3v-4h-3z",CoreIcons.chartColumnStacked="M22,21H2V3H4V19H6V17H10V19H12V16H16V19H18V17H22V21M18,14H22V16H18V14M12,6H16V9H12V6M16,15H12V10H16V15M6,10H10V12H6V10M10,16H6V13H10V16Z",CoreIcons.chartActivityScatter="M2,2H4V20H22V22H2V2M9,10A3,3 0 0,1 12,13A3,3 0 0,1 9,16A3,3 0 0,1 6,13A3,3 0 0,1 9,10M13,2A3,3 0 0,1 16,5A3,3 0 0,1 13,8A3,3 0 0,1 10,5A3,3 0 0,1 13,2M18,12A3,3 0 0,1 21,15A3,3 0 0,1 18,18A3,3 0 0,1 15,15A3,3 0 0,1 18,12Z",CoreIcons.chartActivityCalendar="M2,4V6H4V4H2M20,4V6H22V4H20M2,7V9H4V7H2M5,7V9H7V7H5M14,7V9H16V7H14M17,7V9H19V7H17M20,7V9H22V7H20M2,10V12H4V10H2M5,10V12H7V10H5M8,10V12H10V10H8M11,10V12H13V10H11M14,10V12H16V10H14M17,10V12H19V10H17M20,10V12H22V10H20M2,13V15H4V13H2M5,13V15H7V13H5M8,13V15H10V13H8M11,13V15H13V13H11M14,13V15H16V13H14M17,13V15H19V13H17M20,13V15H22V13H20M5",CoreIcons.palette="M12,22A10,10 0 0,1 2,12A10,10 0 0,1 12,2C17.5,2 22,6 22,11A6,6 0 0,1 16,17H14.2C13.9,17 13.7,17.2 13.7,17.5C13.7,17.6 13.8,17.7 13.8,17.8C14.2,18.3 14.4,18.9 14.4,19.5C14.5,20.9 13.4,22 12,22M12,4A8,8 0 0,0 4,12A8,8 0 0,0 12,20C12.3,20 12.5,19.8 12.5,19.5C12.5,19.3 12.4,19.2 12.4,19.1C12,18.6 11.8,18.1 11.8,17.5C11.8,16.1 12.9,15 14.3,15H16A4,4 0 0,0 20,11C20,7.1 16.4,4 12,4M6.5,10C7.3,10 8,10.7 8,11.5C8,12.3 7.3,13 6.5,13C5.7,13 5,12.3 5,11.5C5,10.7 5.7,10 6.5,10M9.5,6C10.3,6 11,6.7 11,7.5C11,8.3 10.3,9 9.5,9C8.7,9 8,8.3 8,7.5C8,6.7 8.7,6 9.5,6M14.5,6C15.3,6 16,6.7 16,7.5C16,8.3 15.3,9 14.5,9C13.7,9 13,8.3 13,7.5C13,6.7 13.7,6 14.5,6M17.5,10C18.3,10 19,10.7 19,11.5C19,12.3 18.3,13 17.5,13C16.7,13 16,12.3 16,11.5C16,10.7 16.7,10 17.5,10Z",CoreIcons.widget="M16.7 4.5L19.5 7.3L16.7 10.1L13.9 7.3L16.7 4.5M9 5V9H5V5H9M19 15V19H15V15H19M16.7 1.7L11 7.3L16.7 13H13V21H21V13H16.7L22.3 7.3L16.7 1.7M11 3H3V11H11V3M9 15V19H5V15H9M11 13H3V21H11V13Z",CoreIcons.checkboxOff="M19,3H5C3.89,3 3,3.89 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V5C21,3.89 20.1,3 19,3M19,5V19H5V5H19Z",CoreIcons.checkboxOn="M10,17L5,12L6.41,10.58L10,14.17L17.59,6.58L19,8M19,3H5C3.89,3 3,3.89 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V5C21,3.89 20.1,3 19,3Z",CoreIcons.checkboxInt="M19,3H5A2,2 0 0,0 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V5A2,2 0 0,0 19,3M19,19H5V5H19V19M17,17H7V7H17V17Z",CoreIcons.radioOff="M12,20A8,8 0 0,1 4,12A8,8 0 0,1 12,4A8,8 0 0,1 20,12A8,8 0 0,1 12,20M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2Z",CoreIcons.radioOn="M12,20A8,8 0 0,1 4,12A8,8 0 0,1 12,4A8,8 0 0,1 20,12A8,8 0 0,1 12,20M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2M12,7A5,5 0 0,0 7,12A5,5 0 0,0 12,17A5,5 0 0,0 17,12A5,5 0 0,0 12,7Z",CoreIcons.colorSwatch="M16 14V12H17.61C17.85 12.71 18 13.39 18 14H16M15.58 8C15.12 7.29 14.65 6.61 14.2 6H14V8H15.58M16 12V10H14V12H16M16 8.68V10H16.74C16.5 9.56 16.26 9.11 16 8.68M12 16V14H14V12H12V10H14V8H12V6H14V5.73C12.9 4.26 12 3.25 12 3.25S6 10 6 14C6 17.31 8.69 20 12 20V18H14V16H12M14 19.65C14.75 19.39 15.42 19 16 18.46V18H14V19.65M14 16H16V14H14V16M16 18H16.46C17 17.42 17.39 16.75 17.65 16H16V18Z",CoreIcons.colorPicker="M19.35,11.72L17.22,13.85L15.81,12.43L8.1,20.14L3.5,22L2,20.5L3.86,15.9L11.57,8.19L10.15,6.78L12.28,4.65L19.35,11.72M16.76,3C17.93,1.83 19.83,1.83 21,3C22.17,4.17 22.17,6.07 21,7.24L19.08,9.16L14.84,4.92L16.76,3M5.56,17.03L4.5,19.5L6.97,18.44L14.4,11L13,9.6L5.56,17.03Z",CoreIcons.info="M23 12c0-3.037-1.232-5.789-3.222-7.778s-4.741-3.222-7.778-3.222-5.789 1.232-7.778 3.222-3.222 4.741-3.222 7.778 1.232 5.789 3.222 7.778 4.741 3.222 7.778 3.222 5.789-1.232 7.778-3.222 3.222-4.741 3.222-7.778zM21 12c0 2.486-1.006 4.734-2.636 6.364s-3.878 2.636-6.364 2.636-4.734-1.006-6.364-2.636-2.636-3.878-2.636-6.364 1.006-4.734 2.636-6.364 3.878-2.636 6.364-2.636 4.734 1.006 6.364 2.636 2.636 3.878 2.636 6.364zM13 16v-4c0-0.552-0.448-1-1-1s-1 0.448-1 1v4c0 0.552 0.448 1 1 1s1-0.448 1-1zM12 9c0.552 0 1-0.448 1-1s-0.448-1-1-1-1 0.448-1 1 0.448 1 1 1z",CoreIcons.alert="M23 12c0-3.037-1.232-5.789-3.222-7.778s-4.741-3.222-7.778-3.222-5.789 1.232-7.778 3.222-3.222 4.741-3.222 7.778 1.232 5.789 3.222 7.778 4.741 3.222 7.778 3.222 5.789-1.232 7.778-3.222 3.222-4.741 3.222-7.778zM21 12c0 2.486-1.006 4.734-2.636 6.364s-3.878 2.636-6.364 2.636-4.734-1.006-6.364-2.636-2.636-3.878-2.636-6.364 1.006-4.734 2.636-6.364 3.878-2.636 6.364-2.636 4.734 1.006 6.364 2.636 2.636 3.878 2.636 6.364zM11 8v4c0 0.552 0.448 1 1 1s1-0.448 1-1v-4c0-0.552-0.448-1-1-1s-1 0.448-1 1zM12 17c0.552 0 1-0.448 1-1s-0.448-1-1-1-1 0.448-1 1 0.448 1 1 1z",CoreIcons.error="M23 12c0-3.037-1.232-5.789-3.222-7.778s-4.741-3.222-7.778-3.222-5.789 1.232-7.778 3.222-3.222 4.741-3.222 7.778 1.232 5.789 3.222 7.778 4.741 3.222 7.778 3.222 5.789-1.232 7.778-3.222 3.222-4.741 3.222-7.778zM21 12c0 2.486-1.006 4.734-2.636 6.364s-3.878 2.636-6.364 2.636-4.734-1.006-6.364-2.636-2.636-3.878-2.636-6.364 1.006-4.734 2.636-6.364 3.878-2.636 6.364-2.636 4.734 1.006 6.364 2.636 2.636 3.878 2.636 6.364zM8.293 9.707l2.293 2.293-2.293 2.293c-0.391 0.391-0.391 1.024 0 1.414s1.024 0.391 1.414 0l2.293-2.293 2.293 2.293c0.391 0.391 1.024 0.391 1.414 0s0.391-1.024 0-1.414l-2.293-2.293 2.293-2.293c0.391-0.391 0.391-1.024 0-1.414s-1.024-0.391-1.414 0l-2.293 2.293-2.293-2.293c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414z",CoreIcons.success="M21 11.080v0.92c-0.001 2.485-1.009 4.733-2.64 6.362s-3.88 2.634-6.365 2.632-4.734-1.009-6.362-2.64-2.634-3.879-2.633-6.365 1.009-4.733 2.64-6.362 3.88-2.634 6.365-2.633c1.33 0.001 2.586 0.289 3.649 0.775 0.502 0.23 1.096 0.008 1.325-0.494s0.008-1.096-0.494-1.325c-1.327-0.606-2.866-0.955-4.479-0.956-3.037-0.002-5.789 1.229-7.78 3.217s-3.224 4.74-3.226 7.777 1.229 5.789 3.217 7.78 4.739 3.225 7.776 3.226 5.789-1.229 7.78-3.217 3.225-4.739 3.227-7.777v-0.92c0-0.552-0.448-1-1-1s-1 0.448-1 1zM21.293 3.293l-9.293 9.302-2.293-2.292c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414l3 3c0.391 0.391 1.024 0.39 1.415 0l10-10.010c0.39-0.391 0.39-1.024-0.001-1.414s-1.024-0.39-1.414 0.001z",CoreIcons.warning="M11.148 4.374c0.073-0.123 0.185-0.242 0.334-0.332 0.236-0.143 0.506-0.178 0.756-0.116s0.474 0.216 0.614 0.448l8.466 14.133c0.070 0.12 0.119 0.268 0.128 0.434-0.015 0.368-0.119 0.591-0.283 0.759-0.18 0.184-0.427 0.298-0.693 0.301l-16.937-0.001c-0.152-0.001-0.321-0.041-0.481-0.134-0.239-0.138-0.399-0.359-0.466-0.607s-0.038-0.519 0.092-0.745zM9.432 3.346l-8.47 14.14c-0.422 0.731-0.506 1.55-0.308 2.29s0.68 1.408 1.398 1.822c0.464 0.268 0.976 0.4 1.475 0.402h16.943c0.839-0.009 1.587-0.354 2.123-0.902s0.864-1.303 0.855-2.131c-0.006-0.536-0.153-1.044-0.406-1.474l-8.474-14.147c-0.432-0.713-1.11-1.181-1.854-1.363s-1.561-0.081-2.269 0.349c-0.429 0.26-0.775 0.615-1.012 1.014zM11 9v4c0 0.552 0.448 1 1 1s1-0.448 1-1v-4c0-0.552-0.448-1-1-1s-1 0.448-1 1zM12 18c0.552 0 1-0.448 1-1s-0.448-1-1-1-1 0.448-1 1 0.448 1 1 1z",CoreIcons.question="M23 12c0-3.037-1.232-5.789-3.222-7.778s-4.741-3.222-7.778-3.222-5.789 1.232-7.778 3.222-3.222 4.741-3.222 7.778 1.232 5.789 3.222 7.778 4.741 3.222 7.778 3.222 5.789-1.232 7.778-3.222 3.222-4.741 3.222-7.778zM21 12c0 2.486-1.006 4.734-2.636 6.364s-3.878 2.636-6.364 2.636-4.734-1.006-6.364-2.636-2.636-3.878-2.636-6.364 1.006-4.734 2.636-6.364 3.878-2.636 6.364-2.636 4.734 1.006 6.364 2.636 2.636 3.878 2.636 6.364zM10.033 9.332c0.183-0.521 0.559-0.918 1.022-1.14s1.007-0.267 1.528-0.083c0.458 0.161 0.819 0.47 1.050 0.859 0.183 0.307 0.284 0.665 0.286 1.037 0 0.155-0.039 0.309-0.117 0.464-0.080 0.16-0.203 0.325-0.368 0.49-0.709 0.709-1.831 1.092-1.831 1.092-0.524 0.175-0.807 0.741-0.632 1.265s0.741 0.807 1.265 0.632c0 0 1.544-0.506 2.613-1.575 0.279-0.279 0.545-0.614 0.743-1.010 0.2-0.4 0.328-0.858 0.328-1.369-0.004-0.731-0.204-1.437-0.567-2.049-0.463-0.778-1.19-1.402-2.105-1.724-1.042-0.366-2.135-0.275-3.057 0.167s-1.678 1.238-2.044 2.28c-0.184 0.521 0.090 1.092 0.611 1.275s1.092-0.091 1.275-0.611zM12 18c0.552 0 1-0.448 1-1s-0.448-1-1-1-1 0.448-1 1 0.448 1 1 1z",CoreIcons.mediaRotateCW="M16.89,15.5L18.31,16.89C19.21,15.73 19.76,14.39 19.93,13H17.91C17.77,13.87 17.43,14.72 16.89,15.5M13,17.9V19.92C14.39,19.75 15.74,19.21 16.9,18.31L15.46,16.87C14.71,17.41 13.87,17.76 13,17.9M19.93,11C19.76,9.61 19.21,8.27 18.31,7.11L16.89,8.53C17.43,9.28 17.77,10.13 17.91,11M15.55,5.55L11,1V4.07C7.06,4.56 4,7.92 4,12C4,16.08 7.05,19.44 11,19.93V17.91C8.16,17.43 6,14.97 6,12C6,9.03 8.16,6.57 11,6.09V10L15.55,5.55Z",CoreIcons.mediaRotateCCW="M13,4.07V1L8.45,5.55L13,10V6.09C15.84,6.57 18,9.03 18,12C18,14.97 15.84,17.43 13,17.91V19.93C16.95,19.44 20,16.08 20,12C20,7.92 16.95,4.56 13,4.07M7.1,18.32C8.26,19.22 9.61,19.76 11,19.93V17.9C10.13,17.75 9.29,17.41 8.54,16.87L7.1,18.32M6.09,13H4.07C4.24,14.39 4.79,15.73 5.69,16.89L7.1,15.47C6.58,14.72 6.23,13.88 6.09,13M7.11,8.53L5.7,7.11C4.8,8.27 4.24,9.61 4.07,11H6.09C6.23,10.13 6.58,9.28 7.11,8.53Z",CoreIcons.mediaFitToView="M20,2H4C2.89,2 2,2.89 2,4V20C2,21.11 2.89,22 4,22H20C21.11,22 22,21.11 22,20V4C22,2.89 21.11,2 20,2M20,20H4V4H20M13,8V10H11V8H9L12,5L15,8M16,15V13H14V11H16V9L19,12M10,13H8V15L5,12L8,9V11H10M15,16L12,19L9,16H11V14H13V16",CoreIcons.mediaSrt="M18,11H16.5V10.5H14.5V13.5H16.5V13H18V14A1,1 0 0,1 17,15H14A1,1 0 0,1 13,14V10A1,1 0 0,1 14,9H17A1,1 0 0,1 18,10M11,11H9.5V10.5H7.5V13.5H9.5V13H11V14A1,1 0 0,1 10,15H7A1,1 0 0,1 6,14V10A1,1 0 0,1 7,9H10A1,1 0 0,1 11,10M19,4H5C3.89,4 3,4.89 3,6V18A2,2 0 0,0 5,20H19A2,2 0 0,0 21,18V6C21,4.89 20.1,4 19,4Z",CoreIcons.mediaAspect="M19,12H17V15H14V17H19V12M7,9H10V7H5V12H7V9M21,3H3A2,2 0 0,0 1,5V19A2,2 0 0,0 3,21H21A2,2 0 0,0 23,19V5A2,2 0 0,0 21,3M21,19H3V5H21V19Z",CoreIcons.mediaZoomer="M15 0.004c-4.97 0-9 4.030-9 9 0 1.52 0.38 2.95 1.046 4.206l-6.258 6.256 0.005 0.005c-0.489 0.481-0.794 1.147-0.794 1.887 0 1.462 1.185 2.647 2.647 2.647 0.739 0 1.406-0.304 1.886-0.794l-0.002-0.001 6.256-6.255c1.257 0.668 2.689 1.050 4.213 1.050 4.97 0 9-4.030 9-9s-4.030-9-9-9zM3.596 22.273c-0.241 0.25-0.576 0.407-0.95 0.407-0.731 0-1.324-0.592-1.324-1.323 0-0.373 0.157-0.707 0.407-0.95l-0.007-0.006 6.050-6.050c0.529 0.713 1.159 1.343 1.87 1.874l-6.047 6.047zM15 16.505c-4.142 0-7.5-3.359-7.5-7.5s3.358-7.5 7.5-7.5c4.141 0 7.5 3.358 7.5 7.5s-3.359 7.5-7.5 7.5zM15 3.754c0.206 0 0.375 0.168 0.375 0.375s-0.169 0.375-0.375 0.375c-2.486 0-4.5 2.015-4.5 4.5 0 0.207-0.168 0.375-0.375 0.375s-0.375-0.168-0.375-0.375c0-2.9 2.35-5.25 5.25-5.25z",CoreIcons.mediaOrient="M7.34,6.41L0.86,12.9L7.35,19.38L13.84,12.9L7.34,6.41M3.69,12.9L7.35,9.24L11,12.9L7.34,16.56L3.69,12.9M19.36,6.64C17.61,4.88 15.3,4 13,4V0.76L8.76,5L13,9.24V6C14.79,6 16.58,6.68 17.95,8.05C20.68,10.78 20.68,15.22 17.95,17.95C16.58,19.32 14.79,20 13,20C12.03,20 11.06,19.79 10.16,19.39L8.67,20.88C10,21.62 11.5,22 13,22C15.3,22 17.61,21.12 19.36,19.36C22.88,15.85 22.88,10.15 19.36,6.64Z",CoreIcons.mediaCrop="M7,17V1H5V5H1V7H5V17A2,2 0 0,0 7,19H17V23H19V19H23V17M17,15H19V7C19,5.89 18.1,5 17,5H9V7H17V15Z",CoreIcons.mediaImage="M19,19H5V5H19M19,3H5A2,2 0 0,0 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V5A2,2 0 0,0 19,3M13.96,12.29L11.21,15.83L9.25,13.47L6.5,17H17.5L13.96,12.29Z",CoreIcons.mediaVideo="M15,8V16H5V8H15M16,6H4A1,1 0 0,0 3,7V17A1,1 0 0,0 4,18H16A1,1 0 0,0 17,17V13.5L21,17.5V6.5L17,10.5V7A1,1 0 0,0 16,6Z",CoreIcons.mediaAudio="M17.3,11C17.3,14 14.76,16.1 12,16.1C9.24,16.1 6.7,14 6.7,11H5C5,14.41 7.72,17.23 11,17.72V21H13V17.72C16.28,17.23 19,14.41 19,11M10.8,4.9C10.8,4.24 11.34,3.7 12,3.7C12.66,3.7 13.2,4.24 13.2,4.9L13.19,11.1C13.19,11.76 12.66,12.3 12,12.3C11.34,12.3 10.8,11.76 10.8,11.1M12,14A3,3 0 0,0 15,11V5A3,3 0 0,0 12,2A3,3 0 0,0 9,5V11A3,3 0 0,0 12,14Z",CoreIcons.mediaVideoBroken="M3.41,1.86L2,3.27L4.73,6H4A1,1 0 0,0 3,7V17A1,1 0 0,0 4,18H16C16.21,18 16.39,17.92 16.55,17.82L19.73,21L21.14,19.59L12.28,10.73L3.41,1.86M5,16V8H6.73L14.73,16H5M15,8V10.61L21,16.61V6.5L17,10.5V7A1,1 0 0,0 16,6H10.39L12.39,8H15Z",CoreIcons.mediaAudioBroken="M19,11C19,12.19 18.66,13.3 18.1,14.28L16.87,13.05C17.14,12.43 17.3,11.74 17.3,11H19M15,11.16L9,5.18V5A3,3 0 0,1 12,2A3,3 0 0,1 15,5V11L15,11.16M4.27,3L21,19.73L19.73,21L15.54,16.81C14.77,17.27 13.91,17.58 13,17.72V21H11V17.72C7.72,17.23 5,14.41 5,11H6.7C6.7,14 9.24,16.1 12,16.1C12.81,16.1 13.6,15.91 14.31,15.58L12.65,13.92L12,14A3,3 0 0,1 9,11V10.28L3,4.27L4.27,3Z",CoreIcons.mediaImageBroken="M22 20.7L3.3 2L2 3.3L3 4.3V19C3 20.1 3.9 21 5 21H19.7L20.7 22L22 20.7M5 19V6.3L12.6 13.9L11.1 15.8L9 13.1L6 17H15.7L17.7 19H5M8.8 5L6.8 3H19C20.1 3 21 3.9 21 5V17.2L19 15.2V5H8.8",CoreIcons.mediaNsfw="M2,5.27L3.28,4L20,20.72L18.73,22L15.65,18.92C14.5,19.3 13.28,19.5 12,19.5C7,19.5 2.73,16.39 1,12C1.69,10.24 2.79,8.69 4.19,7.46L2,5.27M12,9A3,3 0 0,1 15,12C15,12.35 14.94,12.69 14.83,13L11,9.17C11.31,9.06 11.65,9 12,9M12,4.5C17,4.5 21.27,7.61 23,12C22.18,14.08 20.79,15.88 19,17.19L17.58,15.76C18.94,14.82 20.06,13.54 20.82,12C19.17,8.64 15.76,6.5 12,6.5C10.91,6.5 9.84,6.68 8.84,7L7.3,5.47C8.74,4.85 10.33,4.5 12,4.5M3.18,12C4.83,15.36 8.24,17.5 12,17.5C12.69,17.5 13.37,17.43 14,17.29L11.72,15C10.29,14.85 9.15,13.71 9,12.28L5.6,8.87C4.61,9.72 3.78,10.78 3.18,12Z",CoreIcons.mediaSplitter="M3 15V17H5V15M15 19V21H17V19M19 3H5C3.9 3 3 3.9 3 5V9H5V5H19V9H21V5C21 3.9 20.1 3 19 3M21 19H19V21C20.1 21 21 20.1 21 19M1 11V13H23V11M7 19V21H9V19M19 15V17H21V15M11 19V21H13V19M3 19C3 20.1 3.9 21 5 21V19Z",CoreIcons.mediaPlay="M8,5.14V19.14L19,12.14L8,5.14Z",CoreIcons.mediaPause="M14,19H18V5H14M6,19H10V5H6V19Z",CoreIcons.mediaContrast="M12 2A10 10 0 0 0 2 12A10 10 0 0 0 12 22A10 10 0 0 0 22 12A10 10 0 0 0 12 2M12 4A8 8 0 0 1 20 12A8 8 0 0 1 12 20V4Z",CoreIcons.mediaEqs="M7 3H5V9H7V3M19 3H17V13H19V3M3 13H5V21H7V13H9V11H3V13M15 7H13V3H11V7H9V9H15V7M11 21H13V11H11V21M15 15V17H17V21H19V17H21V15H15Z",CoreIcons.mediaCaptionOff="M5,4C4.45,4 4,4.18 3.59,4.57C3.2,4.96 3,5.44 3,6V18C3,18.56 3.2,19.04 3.59,19.43C4,19.82 4.45,20 5,20H19C19.5,20 20,19.81 20.39,19.41C20.8,19 21,18.53 21,18V6C21,5.47 20.8,5 20.39,4.59C20,4.19 19.5,4 19,4H5M4.5,5.5H19.5V18.5H4.5V5.5M7,9C6.7,9 6.47,9.09 6.28,9.28C6.09,9.47 6,9.7 6,10V14C6,14.3 6.09,14.53 6.28,14.72C6.47,14.91 6.7,15 7,15H10C10.27,15 10.5,14.91 10.71,14.72C10.91,14.53 11,14.3 11,14V13H9.5V13.5H7.5V10.5H9.5V11H11V10C11,9.7 10.91,9.47 10.71,9.28C10.5,9.09 10.27,9 10,9H7M14,9C13.73,9 13.5,9.09 13.29,9.28C13.09,9.47 13,9.7 13,10V14C13,14.3 13.09,14.53 13.29,14.72C13.5,14.91 13.73,15 14,15H17C17.3,15 17.53,14.91 17.72,14.72C17.91,14.53 18,14.3 18,14V13H16.5V13.5H14.5V10.5H16.5V11H18V10C18,9.7 17.91,9.47 17.72,9.28C17.53,9.09 17.3,9 17,9H14Z",CoreIcons.mediaCaptionOn="M18,11H16.5V10.5H14.5V13.5H16.5V13H18V14A1,1 0 0,1 17,15H14A1,1 0 0,1 13,14V10A1,1 0 0,1 14,9H17A1,1 0 0,1 18,10M11,11H9.5V10.5H7.5V13.5H9.5V13H11V14A1,1 0 0,1 10,15H7A1,1 0 0,1 6,14V10A1,1 0 0,1 7,9H10A1,1 0 0,1 11,10M19,4H5C3.89,4 3,4.89 3,6V18A2,2 0 0,0 5,20H19A2,2 0 0,0 21,18V6C21,4.89 20.1,4 19,4Z",CoreIcons.mediaChannel="M12,12A3,3 0 0,0 9,15A3,3 0 0,0 12,18A3,3 0 0,0 15,15A3,3 0 0,0 12,12M12,20A5,5 0 0,1 7,15A5,5 0 0,1 12,10A5,5 0 0,1 17,15A5,5 0 0,1 12,20M12,4A2,2 0 0,1 14,6A2,2 0 0,1 12,8C10.89,8 10,7.1 10,6C10,4.89 10.89,4 12,4M17,2H7C5.89,2 5,2.89 5,4V20A2,2 0 0,0 7,22H17A2,2 0 0,0 19,20V4C19,2.89 18.1,2 17,2Z",CoreIcons.mediaVolume0="M3,9H7L12,4V20L7,15H3V9M16.59,12L14,9.41L15.41,8L18,10.59L20.59,8L22,9.41L19.41,12L22,14.59L20.59,16L18,13.41L15.41,16L14,14.59L16.59,12Z",CoreIcons.mediaVolume1="M7,9V15H11L16,20V4L11,9H7Z",CoreIcons.mediaVolume2="M5,9V15H9L14,20V4L9,9M18.5,12C18.5,10.23 17.5,8.71 16,7.97V16C17.5,15.29 18.5,13.76 18.5,12Z",CoreIcons.mediaVolume3="M14,3.23V5.29C16.89,6.15 19,8.83 19,12C19,15.17 16.89,17.84 14,18.7V20.77C18,19.86 21,16.28 21,12C21,7.72 18,4.14 14,3.23M16.5,12C16.5,10.23 15.5,8.71 14,7.97V16C15.5,15.29 16.5,13.76 16.5,12M3,9V15H7L12,20V4L7,9H3Z",CoreIcons.mediaComment="M9,22A1,1 0 0,1 8,21V18H4A2,2 0 0,1 2,16V4C2,2.89 2.9,2 4,2H20A2,2 0 0,1 22,4V16A2,2 0 0,1 20,18H13.9L10.2,21.71C10,21.9 9.75,22 9.5,22V22H9M10,16V19.08L13.08,16H20V4H4V16H10M6,7H18V9H6V7M6,11H15V13H6V11Z",CoreIcons.mediaCommentAdd="M9,22A1,1 0 0,1 8,21V18H4A2,2 0 0,1 2,16V4C2,2.89 2.9,2 4,2H20A2,2 0 0,1 22,4V16A2,2 0 0,1 20,18H13.9L10.2,21.71C10,21.9 9.75,22 9.5,22V22H9M10,16V19.08L13.08,16H20V4H4V16H10M11,6H13V9H16V11H13V14H11V11H8V9H11V6Z"}(CoreIcons||(CoreIcons={}))},"./packages/core/src/typography/Title.tsx":(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{h:()=>Title});var react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/react/jsx-runtime.js"),classnames__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/classnames/index.js"),classnames__WEBPACK_IMPORTED_MODULE_1___default=__webpack_require__.n(classnames__WEBPACK_IMPORTED_MODULE_1__),_hooks_useEffectDebugger__WEBPACK_IMPORTED_MODULE_2__=__webpack_require__("./packages/core/src/hooks/useEffectDebugger.ts"),_utils__WEBPACK_IMPORTED_MODULE_3__=__webpack_require__("./packages/core/src/utils/index.ts"),_types__WEBPACK_IMPORTED_MODULE_4__=__webpack_require__("./packages/core/src/typography/types.ts"),_Typography_module_css__WEBPACK_IMPORTED_MODULE_5__=__webpack_require__("./packages/core/src/typography/Typography.module.css");const Title=({children,className,as,bg,color,size,align,family,...aria})=>{const styles=(0,_hooks_useEffectDebugger__WEBPACK_IMPORTED_MODULE_2__.ZU)((()=>{const s={};return bg&&(s.backgroundColor=(0,_utils__WEBPACK_IMPORTED_MODULE_3__.oU)(bg)),color&&(s.color=(0,_utils__WEBPACK_IMPORTED_MODULE_3__.oU)(color)),align&&(s.textAlign=align),size&&!(size in _types__WEBPACK_IMPORTED_MODULE_4__.m)&&(s.fontSize=size),size&&size in _types__WEBPACK_IMPORTED_MODULE_4__.m&&(s.fontSize=_types__WEBPACK_IMPORTED_MODULE_4__.m[size]),s}),[bg,color,size,align],"Title styles"),E=as??"p";return(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(E,{className:classnames__WEBPACK_IMPORTED_MODULE_1___default()(_Typography_module_css__WEBPACK_IMPORTED_MODULE_5__.A.title,"px-[2px] py-1 truncate whitespace-pre-wrap",className,family&&`font-${family}`,!as&&"text-lg",bg&&(0,_utils__WEBPACK_IMPORTED_MODULE_3__.MN)(bg),color&&(0,_utils__WEBPACK_IMPORTED_MODULE_3__.Iq)(color)),style:styles,...aria,children})};try{Title.displayName="Title",Title.__docgenInfo={description:"Typography title component",displayName:"Title",props:{as:{defaultValue:null,description:"",name:"as",required:!1,type:{name:'ElementType, HTMLHeadingElement>, "h1" | "h2" | "h3" | "h4" | "h5" | "h6">'}},bg:{defaultValue:null,description:"title background",name:"bg",required:!1,type:{name:"string"}},color:{defaultValue:null,description:"title color (CSS color / tailwind color)",name:"color",required:!1,type:{name:"string"}},size:{defaultValue:null,description:"title size (CSS color / tailwind color)",name:"size",required:!1,type:{name:"string | number"}},family:{defaultValue:null,description:"font family",name:"family",required:!1,type:{name:"enum",value:[{value:'"sans"'},{value:'"serif"'},{value:'"mono"'}]}},align:{defaultValue:null,description:"text align",name:"align",required:!1,type:{name:"enum",value:[{value:'"center"'},{value:'"end"'},{value:'"start"'},{value:'"justify"'}]}},className:{defaultValue:null,description:"css classname(s)",name:"className",required:!1,type:{name:"string"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/typography/Title.tsx#Title"]={docgenInfo:Title.__docgenInfo,name:"Title",path:"packages/core/src/typography/Title.tsx#Title"})}catch(__react_docgen_typescript_loader_error){}},"./packages/core/src/typography/types.ts":(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{F:()=>TextSizeMap,m:()=>TitleSizeMap});const TitleSizeMap={xs:"0.875rem",sm:"1.125rem",md:"1.5rem",lg:"1.75rem",xl:"2rem"},TextSizeMap={xs:"0.75rem",sm:"0.875rem",md:"1.125rem",lg:"1.5rem",xl:"1.75rem"}},"./packages/core/src/utils/index.ts":(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{ru:()=>calculateTextHeight,MN:()=>getBgClass,Z1:()=>getBorderClass,oU:()=>getColor,Iq:()=>getColorClass,hr:()=>nodeCheck});const getCssStyle=(element,property)=>getComputedStyle(element).getPropertyValue(property),calculateTextHeight=(element,styleRoot)=>{const clone=element.cloneNode(!0);clone.style.font=getCssStyle(styleRoot??element,"font"),clone.style.width=`${element.offsetWidth}px`,clone.style.padding=getCssStyle(styleRoot??element,"padding"),clone.style.lineHeight=getCssStyle(styleRoot??element,"line-height"),clone.style.letterSpacing=getCssStyle(styleRoot??element,"letter-spacing"),clone.style.webkitLineClamp="unset",clone.style.position="absolute",clone.style.left="-10000%",document.body.appendChild(clone);const height=clone.offsetHeight;return clone.remove(),height};var esm=__webpack_require__("./packages/utilities/dist/esm/index.js");const getColor=color=>{if(color&&(0,esm._o)(color))return color},getBgClass=bg=>{if(bg&&!(0,esm._o)(bg))return`bg-${bg}`},getColorClass=color=>{if(color&&!(0,esm._o)(color))return`text-${color}`},getBorderClass=color=>{if(color&&!(0,esm._o)(color))return`border-${color}`},nodeCheck=(node,...types)=>(0,esm.Gv)(node)&&"type"in node&&types.includes(node.type)},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/components/actionLabel/ActionLabel.module.css":(module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .GnepkPCNzqTqvXTNOvuA > .WuIfYZBNS4hqdiK7wugp {\n --width: 4rem;\n\n width: 0;\n }\n\n .GnepkPCNzqTqvXTNOvuA:not([data-disabled="true"]):hover > .WuIfYZBNS4hqdiK7wugp {\n width: var(--width);\n transition: all cubic-bezier(0.215, 0.61, 0.355, 1) 100ms;\n transition-delay: 500ms;\n }\n}\n',"",{version:3,sources:["webpack://./packages/core/src/components/actionLabel/ActionLabel.module.css"],names:[],mappings:"AAAA;;;;;;;;;;;;;;;;;;;;;EAqBE;;AAEF;IAEI;MACE,aAAa;;MAEb,QAAQ;IACV;;IAEA;MACE,mBAAmB;MACnB,yDAAyD;MACzD,uBAAuB;IACzB;AAEJ",sourcesContent:['/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .actionLabel {\n & > .actions {\n --width: 4rem;\n\n width: 0;\n }\n\n &:not([data-disabled="true"]):hover > .actions {\n width: var(--width);\n transition: all cubic-bezier(0.215, 0.61, 0.355, 1) 100ms;\n transition-delay: 500ms;\n }\n }\n}\n'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={actionLabel:"GnepkPCNzqTqvXTNOvuA",actions:"WuIfYZBNS4hqdiK7wugp"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/components/animations/Animations.module.css":(module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n @keyframes fDTRZjAezfKL2yDt9tDH {\n 0%,\n 25% {\n background-position:\n 0 50%,\n 0 calc(50% - 2px),\n 0 calc(50% + 2px),\n 50% 50%,\n 50% calc(50% - 2px),\n 50% calc(50% + 2px),\n 100% 50%,\n 100% calc(50% - 2px),\n 100% calc(50% + 2px);\n background-size:\n 8px 0,\n 8px 4px,\n 8px 4px,\n 8px 0,\n 8px 4px,\n 8px 4px,\n 8px 0,\n 8px 4px,\n 8px 4px;\n }\n\n 50% {\n background-position:\n 0 50%,\n 0 calc(0% - 2px),\n 0 calc(100% + 2px),\n 50% 50%,\n 50% calc(50% - 2px),\n 50% calc(50% + 2px),\n 100% 50%,\n 100% calc(50% - 2px),\n 100% calc(50% + 2px);\n background-size:\n 8px 100%,\n 8px 4px,\n 8px 4px,\n 8px 0,\n 8px 4px,\n 8px 4px,\n 8px 0,\n 8px 4px,\n 8px 4px;\n }\n\n 75% {\n background-position:\n 0 50%,\n 0 calc(0% - 2px),\n 0 calc(100% + 2px),\n 50% 50%,\n 50% calc(0% - 2px),\n 50% calc(100% + 2px),\n 100% 50%,\n 100% calc(50% - 2px),\n 100% calc(50% + 2px);\n background-size:\n 8px 100%,\n 8px 4px,\n 8px 4px,\n 8px 100%,\n 8px 4px,\n 8px 4px,\n 8px 0,\n 8px 4px,\n 8px 4px;\n }\n\n 95%,\n 100% {\n background-position:\n 0 50%,\n 0 calc(0% - 2px),\n 0 calc(100% + 2px),\n 50% 50%,\n 50% calc(0% - 2px),\n 50% calc(100% + 2px),\n 100% 50%,\n 100% calc(0% - 2px),\n 100% calc(100% + 2px);\n background-size:\n 8px 100%,\n 8px 4px,\n 8px 4px,\n 8px 100%,\n 8px 4px,\n 8px 4px,\n 8px 100%,\n 8px 4px,\n 8px 4px;\n }\n }\n\n .CwdcYDurMBW31qoLYgyX {\n --c: linear-gradient(currentcolor 0 0);\n --r1: radial-gradient(farthest-side at bottom, currentcolor 93%, #0000);\n --r2: radial-gradient(farthest-side at top, currentcolor 93%, #0000);\n\n aspect-ratio: 1;\n background: var(--c), var(--r1), var(--r2), var(--c), var(--r1), var(--r2),\n var(--c), var(--r1), var(--r2);\n background-repeat: no-repeat;\n animation: fDTRZjAezfKL2yDt9tDH 1s infinite alternate;\n }\n\n @keyframes IHA9I8fpRzPMbdlsXAYC {\n to {\n transform: rotate(1turn);\n }\n }\n\n .wLyQ9xcE373AT8l_oqLm {\n --b: 8px;\n\n aspect-ratio: 1;\n\n background: conic-gradient(#0000 10%, currentcolor) content-box;\n border-radius: 50%;\n\n -webkit-mask: repeating-conic-gradient(\n #0000 0deg,\n #000 1deg 20deg,\n #0000 21deg 36deg\n ),\n radial-gradient(\n farthest-side,\n #0000 calc(100% - var(--b) - 1px),\n #000 calc(100% - var(--b))\n );\n\n mask: repeating-conic-gradient(\n #0000 0deg,\n #000 1deg 20deg,\n #0000 21deg 36deg\n ),\n radial-gradient(\n farthest-side,\n #0000 calc(100% - var(--b) - 1px),\n #000 calc(100% - var(--b))\n );\n\n animation: IHA9I8fpRzPMbdlsXAYC 2s infinite steps(10);\n\n -webkit-mask-composite: destination-in;\n\n mask-composite: destination-in;\n -webkit-mask-composite: source-in, xor;\n mask-composite: intersect;\n }\n\n @keyframes Zdk1Gm5VjXqdOgDyWX7N {\n from {\n transform: translateX(calc(-100% * var(--multiplier)));\n }\n\n to {\n transform: translateX(calc(100% * var(--multiplier)));\n }\n }\n\n .Zdk1Gm5VjXqdOgDyWX7N {\n --multiplier: 1;\n }\n\n .Zdk1Gm5VjXqdOgDyWX7N > div {\n height: calc(0.125rem + 2px);\n }\n\n .Zdk1Gm5VjXqdOgDyWX7N > div::after {\n animation: Zdk1Gm5VjXqdOgDyWX7N 1s cubic-bezier(0.65, 0, 0.45, 1) infinite;\n }\n\n [dir="rtl"] .Zdk1Gm5VjXqdOgDyWX7N {\n --multiplier: -1;\n }\n\n @keyframes l1as8GLPRCMwfHezx8cl {\n 100% {\n stroke-dashoffset: 0;\n }\n }\n\n @keyframes q9vrPJjOni5h0lb8JKf2 {\n 0%,\n 100% {\n transform: none;\n }\n\n 50% {\n transform: scale3d(1.1, 1.1, 1);\n }\n }\n\n @keyframes nu7ornrP9CRxymM0JEHR {\n 100% {\n box-shadow: inset 0 0 0 1em currentcolor;\n }\n }\n\n .Xst7xCffGZZ2BbE0322f {\n width: 1.5em;\n height: 1.5em;\n\n color: var(--primary);\n\n box-shadow: inset 0 0 0 currentcolor;\n\n fill: transparent;\n stroke-miterlimit: 10;\n stroke-width: 4px;\n\n animation:\n nu7ornrP9CRxymM0JEHR 0.4s ease-in-out 0.4s forwards,\n q9vrPJjOni5h0lb8JKf2 0.3s ease-in-out 0.9s both;\n animation-delay: 0.75s;\n }\n\n .Xst7xCffGZZ2BbE0322f .VlzTCqx3XTIT5h6kd0Vx {\n fill: transparent;\n stroke: currentcolor;\n stroke-dasharray: 166;\n stroke-dashoffset: 166;\n stroke-miterlimit: 10;\n stroke-width: 8px;\n\n animation: l1as8GLPRCMwfHezx8cl 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;\n animation-delay: 0.25s;\n }\n\n .Xst7xCffGZZ2BbE0322f .hRvJtG0ixDHgbOz17nkd {\n transform-origin: 50% 50%;\n\n stroke: currentcolor;\n stroke-dasharray: 48;\n stroke-dashoffset: 48;\n\n animation: l1as8GLPRCMwfHezx8cl 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;\n animation-delay: 0.75s;\n }\n}\n',"",{version:3,sources:["webpack://./packages/core/src/components/animations/Animations.module.css"],names:[],mappings:"AAAA;;;;;;;;;;;;;;;;;;;;;EAqBE;;AAEF;EACE;IACE;;MAEE;;;;;;;;;4BASsB;MACtB;;;;;;;;;eASS;IACX;;IAEA;MACE;;;;;;;;;4BASsB;MACtB;;;;;;;;;eASS;IACX;;IAEA;MACE;;;;;;;;;4BASsB;MACtB;;;;;;;;;eASS;IACX;;IAEA;;MAEE;;;;;;;;;6BASuB;MACvB;;;;;;;;;eASS;IACX;EACF;;EAEA;IACE,sCAAsC;IACtC,uEAAuE;IACvE,oEAAoE;;IAEpE,eAAe;IACf;oCACgC;IAChC,4BAA4B;IAC5B,qDAAmC;EACrC;;EAEA;IACE;MACE,wBAAwB;IAC1B;EACF;;EAEA;IACE,QAAQ;;IAER,eAAe;;IAEf,+DAA+D;IAC/D,kBAAkB;;IAElB;;;;;;;;;OASG;;YATH;;;;;;;;;OASG;;IAEH,qDAAmC;;IAEnC,sCAA8B;;YAA9B,8BAA8B;IAC9B,sCAAyB;YAAzB,yBAAyB;EAC3B;;EAEA;IACE;MACE,sDAAsD;IACxD;;IAEA;MACE,qDAAqD;IACvD;EACF;;EAEA;IACE,eAAe;EAajB;;IAXE;MACE,4BAA4B;IAK9B;;MAHE;QACE,0EAA4D;MAC9D;;IAGF;MACE,gBAAgB;IAClB;;EAGF;IACE;MACE,oBAAoB;IACtB;EACF;;EAEA;IACE;;MAEE,eAAe;IACjB;;IAEA;MACE,+BAA+B;IACjC;EACF;;EAEA;IACE;MACE,wCAAwC;IAC1C;EACF;;EAEA;IACE,YAAY;IACZ,aAAa;;IAEb,qBAAoC;;IAEpC,oCAAoC;;IAEpC,iBAAiB;IACjB,qBAAqB;IACrB,iBAAiB;;IAEjB;;qDAEwC;IACxC,sBAAsB;EAwBxB;;IAtBE;MACE,iBAAiB;MACjB,oBAAoB;MACpB,qBAAqB;MACrB,sBAAsB;MACtB,qBAAqB;MACrB,iBAAiB;;MAEjB,4EAAoE;MACpE,sBAAsB;IACxB;;IAEA;MACE,yBAAyB;;MAEzB,oBAAoB;MACpB,oBAAoB;MACpB,qBAAqB;;MAErB,iFAAyE;MACzE,sBAAsB;IACxB;AAEJ",sourcesContent:['/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n @keyframes l2 {\n 0%,\n 25% {\n background-position:\n 0 50%,\n 0 calc(50% - 2px),\n 0 calc(50% + 2px),\n 50% 50%,\n 50% calc(50% - 2px),\n 50% calc(50% + 2px),\n 100% 50%,\n 100% calc(50% - 2px),\n 100% calc(50% + 2px);\n background-size:\n 8px 0,\n 8px 4px,\n 8px 4px,\n 8px 0,\n 8px 4px,\n 8px 4px,\n 8px 0,\n 8px 4px,\n 8px 4px;\n }\n\n 50% {\n background-position:\n 0 50%,\n 0 calc(0% - 2px),\n 0 calc(100% + 2px),\n 50% 50%,\n 50% calc(50% - 2px),\n 50% calc(50% + 2px),\n 100% 50%,\n 100% calc(50% - 2px),\n 100% calc(50% + 2px);\n background-size:\n 8px 100%,\n 8px 4px,\n 8px 4px,\n 8px 0,\n 8px 4px,\n 8px 4px,\n 8px 0,\n 8px 4px,\n 8px 4px;\n }\n\n 75% {\n background-position:\n 0 50%,\n 0 calc(0% - 2px),\n 0 calc(100% + 2px),\n 50% 50%,\n 50% calc(0% - 2px),\n 50% calc(100% + 2px),\n 100% 50%,\n 100% calc(50% - 2px),\n 100% calc(50% + 2px);\n background-size:\n 8px 100%,\n 8px 4px,\n 8px 4px,\n 8px 100%,\n 8px 4px,\n 8px 4px,\n 8px 0,\n 8px 4px,\n 8px 4px;\n }\n\n 95%,\n 100% {\n background-position:\n 0 50%,\n 0 calc(0% - 2px),\n 0 calc(100% + 2px),\n 50% 50%,\n 50% calc(0% - 2px),\n 50% calc(100% + 2px),\n 100% 50%,\n 100% calc(0% - 2px),\n 100% calc(100% + 2px);\n background-size:\n 8px 100%,\n 8px 4px,\n 8px 4px,\n 8px 100%,\n 8px 4px,\n 8px 4px,\n 8px 100%,\n 8px 4px,\n 8px 4px;\n }\n }\n\n .bars {\n --c: linear-gradient(currentcolor 0 0);\n --r1: radial-gradient(farthest-side at bottom, currentcolor 93%, #0000);\n --r2: radial-gradient(farthest-side at top, currentcolor 93%, #0000);\n\n aspect-ratio: 1;\n background: var(--c), var(--r1), var(--r2), var(--c), var(--r1), var(--r2),\n var(--c), var(--r1), var(--r2);\n background-repeat: no-repeat;\n animation: l2 1s infinite alternate;\n }\n\n @keyframes l4 {\n to {\n transform: rotate(1turn);\n }\n }\n\n .spinner {\n --b: 8px;\n\n aspect-ratio: 1;\n\n background: conic-gradient(#0000 10%, currentcolor) content-box;\n border-radius: 50%;\n\n mask: repeating-conic-gradient(\n #0000 0deg,\n #000 1deg 20deg,\n #0000 21deg 36deg\n ),\n radial-gradient(\n farthest-side,\n #0000 calc(100% - var(--b) - 1px),\n #000 calc(100% - var(--b))\n );\n\n animation: l4 2s infinite steps(10);\n\n mask-composite: destination-in;\n mask-composite: intersect;\n }\n\n @keyframes loader {\n from {\n transform: translateX(calc(-100% * var(--multiplier)));\n }\n\n to {\n transform: translateX(calc(100% * var(--multiplier)));\n }\n }\n\n .loader {\n --multiplier: 1;\n\n & > div {\n height: calc(0.125rem + 2px);\n\n &::after {\n animation: loader 1s cubic-bezier(0.65, 0, 0.45, 1) infinite;\n }\n }\n\n :global([dir="rtl"]) & {\n --multiplier: -1;\n }\n }\n\n @keyframes check-stroke {\n 100% {\n stroke-dashoffset: 0;\n }\n }\n\n @keyframes check-scale {\n 0%,\n 100% {\n transform: none;\n }\n\n 50% {\n transform: scale3d(1.1, 1.1, 1);\n }\n }\n\n @keyframes check-fill {\n 100% {\n box-shadow: inset 0 0 0 1em currentcolor;\n }\n }\n\n .checkAnimation {\n width: 1.5em;\n height: 1.5em;\n\n color: theme(colors.primary.DEFAULT);\n\n box-shadow: inset 0 0 0 currentcolor;\n\n fill: transparent;\n stroke-miterlimit: 10;\n stroke-width: 4px;\n\n animation:\n check-fill 0.4s ease-in-out 0.4s forwards,\n check-scale 0.3s ease-in-out 0.9s both;\n animation-delay: 0.75s;\n\n & .circlePart {\n fill: transparent;\n stroke: currentcolor;\n stroke-dasharray: 166;\n stroke-dashoffset: 166;\n stroke-miterlimit: 10;\n stroke-width: 8px;\n\n animation: check-stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;\n animation-delay: 0.25s;\n }\n\n & .iconPart {\n transform-origin: 50% 50%;\n\n stroke: currentcolor;\n stroke-dasharray: 48;\n stroke-dashoffset: 48;\n\n animation: check-stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;\n animation-delay: 0.75s;\n }\n }\n}\n'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={bars:"CwdcYDurMBW31qoLYgyX",l2:"fDTRZjAezfKL2yDt9tDH",spinner:"wLyQ9xcE373AT8l_oqLm",l4:"IHA9I8fpRzPMbdlsXAYC",loader:"Zdk1Gm5VjXqdOgDyWX7N",checkAnimation:"Xst7xCffGZZ2BbE0322f","check-fill":"nu7ornrP9CRxymM0JEHR","check-scale":"q9vrPJjOni5h0lb8JKf2",circlePart:"VlzTCqx3XTIT5h6kd0Vx","check-stroke":"l1as8GLPRCMwfHezx8cl",iconPart:"hRvJtG0ixDHgbOz17nkd"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/components/avatar/Avatar.module.css":(module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .xDeriZsuSTrbYfdL8zXJ {\n width: 1em;\n height: 1em;\n\n vertical-align: -0.125em;\n\n border-radius: var(--rounding);\n box-shadow: 0 0 1px color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 65%, color(from var(--tint) srgb r g b / 1));\n }\n\n .xDeriZsuSTrbYfdL8zXJ > i,\n .xDeriZsuSTrbYfdL8zXJ > svg,\n .xDeriZsuSTrbYfdL8zXJ > img {\n pointer-events: none;\n\n overflow: hidden;\n display: block;\n\n width: 1em;\n height: 1em;\n\n line-height: 1;\n\n -o-object-fit: cover;\n\n object-fit: cover;\n background-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 90%, color(from var(--tint) srgb r g b / 1));\n border-radius: inherit;\n\n fill: currentcolor;\n }\n\n .xDeriZsuSTrbYfdL8zXJ > i::before {\n line-height: 1;\n }\n\n .xDeriZsuSTrbYfdL8zXJ > .vbOAyzgYBrAiJW404xYA {\n z-index: -1;\n }\n .oZstpGXzq5pNcZntU_9p > .xDeriZsuSTrbYfdL8zXJ {\n box-shadow:\n 0 0 0 1px color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 80%, color(from var(--tint) srgb r g b / 1)),\n 0 0 0 0.125em var(--fabric-bg);\n }\n\n .oZstpGXzq5pNcZntU_9p > .xDeriZsuSTrbYfdL8zXJ:not(:first-child) {\n margin-inline-start: -0.125em;\n }\n\n .oZstpGXzq5pNcZntU_9p .YkOM7xZVhijSs5SNuWgQ {\n width: 1em;\n height: 1em;\n font-size: inherit;\n border-radius: inherit;\n }\n}\n\n@layer util {\n .oZstpGXzq5pNcZntU_9p > .xDeriZsuSTrbYfdL8zXJ {\n font-size: inherit;\n border-radius: inherit;\n }\n}\n',"",{version:3,sources:["webpack://./packages/core/src/components/avatar/Avatar.module.css"],names:[],mappings:"AAAA;;;;;;;;;;;;;;;;;;;;;EAqBE;;AAEF;EACE;IACE,UAAU;IACV,WAAW;;IAEX,wBAAwB;;IAExB,8BAA8B;IAC9B,+HAA2C;EA6B7C;;IA3BE;;;MAGE,oBAAoB;;MAEpB,gBAAgB;MAChB,cAAc;;MAEd,UAAU;MACV,WAAW;;MAEX,cAAc;;MAEd,oBAAiB;;SAAjB,iBAAiB;MACjB,6HAA+C;MAC/C,sBAAsB;;MAEtB,kBAAkB;IACpB;;IAEA;MACE,cAAc;IAChB;;IAEA;MACE,WAAW;IACb;IAIA;MACE;;sCAEgC;IAKlC;;MAHE;QACE,6BAA6B;MAC/B;;IAGF;MACE,UAAU;MACV,WAAW;MACX,kBAAkB;MAClB,sBAAsB;IACxB;AAEJ;;AAEA;IAEI;MACE,kBAAkB;MAClB,sBAAsB;IACxB;AAEJ",sourcesContent:['/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .avatar {\n width: 1em;\n height: 1em;\n\n vertical-align: -0.125em;\n\n border-radius: var(--rounding);\n box-shadow: 0 0 1px theme(borderColor.base);\n\n & > i,\n & > svg,\n & > img {\n pointer-events: none;\n\n overflow: hidden;\n display: block;\n\n width: 1em;\n height: 1em;\n\n line-height: 1;\n\n object-fit: cover;\n background-color: theme(backgroundColor.dimmed);\n border-radius: inherit;\n\n fill: currentcolor;\n }\n\n & > i::before {\n line-height: 1;\n }\n\n & > .imagePlaceholder {\n z-index: -1;\n }\n }\n\n .avatarGroup {\n & > .avatar {\n box-shadow:\n 0 0 0 1px theme(borderColor.muted),\n 0 0 0 0.125em var(--fabric-bg);\n\n &:not(:first-child) {\n margin-inline-start: -0.125em;\n }\n }\n\n & .avatarGroup--extra {\n width: 1em;\n height: 1em;\n font-size: inherit;\n border-radius: inherit;\n }\n }\n}\n\n@layer util {\n .avatarGroup {\n & > .avatar {\n font-size: inherit;\n border-radius: inherit;\n }\n }\n}\n'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={avatar:"xDeriZsuSTrbYfdL8zXJ",imagePlaceholder:"vbOAyzgYBrAiJW404xYA",avatarGroup:"oZstpGXzq5pNcZntU_9p","avatarGroup--extra":"YkOM7xZVhijSs5SNuWgQ"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/components/badge/Badge.module.css":(module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n @keyframes FjnrMpPUQwZhZ44cVS95 {\n 0% {\n transform: scale(1);\n opacity: 0.7;\n }\n\n 100% {\n transform: scale(3);\n opacity: 0;\n }\n }\n\n .Ue5BMYnH0MXHteos6uKj {\n --tw-bg-opacity: 1;\n\n box-sizing: content-box;\n color: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 1) 95%, color(from var(--tint) srgb r g b / 1));\n background-color: color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n outline: 0.5px solid color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 99%, color(from var(--tint) srgb r g b / 1));\n }\n\n .Ue5BMYnH0MXHteos6uKj > span {\n font-size: 0.625em;\n font-weight: 500;\n line-height: 1;\n vertical-align: 0.125em;\n }\n\n .Ue5BMYnH0MXHteos6uKj[data-ping="true"] {\n --translate: calc(50%);\n }\n\n .Ue5BMYnH0MXHteos6uKj[data-ping="true"]::before {\n content: "";\n\n position: absolute;\n z-index: -1;\n inset: 0;\n\n background-color: inherit;\n border-radius: 999px;\n\n animation: FjnrMpPUQwZhZ44cVS95 1s linear infinite;\n }\n\n .Ue5BMYnH0MXHteos6uKj:not([data-ping="true"]) {\n --translate: 0.75rem;\n\n min-width: 1em;\n }\n\n .Ue5BMYnH0MXHteos6uKj[data-placement="top"] {\n top: 0;\n left: 50%;\n transform: translate(-50%, -50%);\n }\n\n .Ue5BMYnH0MXHteos6uKj[data-placement="top-start"] {\n top: 0;\n inset-inline-start: 0;\n }\n\n [dir="ltr"] .Ue5BMYnH0MXHteos6uKj[data-placement="top-start"] {\n transform: translate(calc(var(--translate) * -1), -50%);\n }\n\n [dir="rtl"] .Ue5BMYnH0MXHteos6uKj[data-placement="top-start"] {\n transform: translate(calc(var(--translate) * 1), -50%);\n }\n\n .Ue5BMYnH0MXHteos6uKj[data-placement="top-end"] {\n top: 0;\n inset-inline-end: 0;\n }\n\n [dir="ltr"] .Ue5BMYnH0MXHteos6uKj[data-placement="top-end"] {\n transform: translate(calc(var(--translate) * 1), -50%);\n }\n\n [dir="rtl"] .Ue5BMYnH0MXHteos6uKj[data-placement="top-end"] {\n transform: translate(calc(var(--translate) * -1), -50%);\n }\n\n .Ue5BMYnH0MXHteos6uKj[data-placement="bottom"] {\n bottom: 0;\n left: 50%;\n transform: translate(-50%, 50%);\n }\n\n .Ue5BMYnH0MXHteos6uKj[data-placement="bottom-start"] {\n bottom: 0;\n inset-inline-start: 0;\n }\n\n [dir="ltr"] .Ue5BMYnH0MXHteos6uKj[data-placement="bottom-start"] {\n transform: translate(calc(var(--translate) * -1), -50%);\n }\n\n [dir="rtl"] .Ue5BMYnH0MXHteos6uKj[data-placement="bottom-start"] {\n transform: translate(calc(var(--translate) * 1), -50%);\n }\n\n .Ue5BMYnH0MXHteos6uKj[data-placement="bottom-end"] {\n bottom: 0;\n inset-inline-end: 0;\n }\n\n [dir="ltr"] .Ue5BMYnH0MXHteos6uKj[data-placement="bottom-end"] {\n transform: translate(calc(var(--translate) * 1), -50%);\n }\n\n [dir="rtl"] .Ue5BMYnH0MXHteos6uKj[data-placement="bottom-end"] {\n transform: translate(calc(var(--translate) * -1), -50%);\n }\n\n .Ue5BMYnH0MXHteos6uKj[data-placement="start"] {\n top: 50%;\n inset-inline-start: 0;\n }\n\n [dir="ltr"] .Ue5BMYnH0MXHteos6uKj[data-placement="start"] {\n transform: translate(-50%, -50%);\n }\n\n [dir="rtl"] .Ue5BMYnH0MXHteos6uKj[data-placement="start"] {\n transform: translate(50%, -50%);\n }\n\n .Ue5BMYnH0MXHteos6uKj[data-placement="end"] {\n top: 50%;\n inset-inline-end: 0;\n }\n\n [dir="ltr"] .Ue5BMYnH0MXHteos6uKj[data-placement="end"] {\n transform: translate(50%, -50%);\n }\n\n [dir="rtl"] .Ue5BMYnH0MXHteos6uKj[data-placement="end"] {\n transform: translate(-50%, -50%);\n }\n}\n',"",{version:3,sources:["webpack://./packages/core/src/components/badge/Badge.module.css"],names:[],mappings:"AAAA;;;;;;;;;;;;;;;;;;;;;EAqBE;;AAEF;EACE;IACE;MACE,mBAAmB;MACnB,YAAY;IACd;;IAEA;MACE,mBAAmB;MACnB,UAAU;IACZ;EACF;;EAEA;IACE,kBAAkB;;IAElB,uBAAuB;IACvB,oHAA4B;IAC5B,mKAA6D;IAC7D,gIAAgD;EAyHlD;;IAvHE;MACE,kBAAkB;MAClB,gBAAgB;MAChB,cAAc;MACd,uBAAuB;IACzB;;IAEA;MACE,sBAAsB;IAcxB;;MAZE;QACE,WAAW;;QAEX,kBAAkB;QAClB,WAAW;QACX,QAAQ;;QAER,yBAAyB;QACzB,oBAAoB;;QAEpB,kDAAoC;MACtC;;IAGF;MACE,oBAAoB;;MAEpB,cAAc;IAChB;;IAEA;MACE,MAAM;MACN,SAAS;MACT,gCAAgC;IAClC;;IAEA;MACE,MAAM;MACN,qBAAqB;IASvB;;MAPE;QACE,uDAAuD;MACzD;;MAEA;QACE,sDAAsD;MACxD;;IAGF;MACE,MAAM;MACN,mBAAmB;IASrB;;MAPE;QACE,sDAAsD;MACxD;;MAEA;QACE,uDAAuD;MACzD;;IAGF;MACE,SAAS;MACT,SAAS;MACT,+BAA+B;IACjC;;IAEA;MACE,SAAS;MACT,qBAAqB;IASvB;;MAPE;QACE,uDAAuD;MACzD;;MAEA;QACE,sDAAsD;MACxD;;IAGF;MACE,SAAS;MACT,mBAAmB;IASrB;;MAPE;QACE,sDAAsD;MACxD;;MAEA;QACE,uDAAuD;MACzD;;IAGF;MACE,QAAQ;MACR,qBAAqB;IASvB;;MAPE;QACE,gCAAgC;MAClC;;MAEA;QACE,+BAA+B;MACjC;;IAGF;MACE,QAAQ;MACR,mBAAmB;IASrB;;MAPE;QACE,+BAA+B;MACjC;;MAEA;QACE,gCAAgC;MAClC;AAGN",sourcesContent:['/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n @keyframes pinger {\n 0% {\n transform: scale(1);\n opacity: 0.7;\n }\n\n 100% {\n transform: scale(3);\n opacity: 0;\n }\n }\n\n .badge {\n --tw-bg-opacity: 1;\n\n box-sizing: content-box;\n color: theme(textColor.base);\n background-color: theme(colors.tint.200/var(--tw-bg-opacity));\n outline: 0.5px solid theme(backgroundColor.base);\n\n & > span {\n font-size: 0.625em;\n font-weight: 500;\n line-height: 1;\n vertical-align: 0.125em;\n }\n\n &[data-ping="true"] {\n --translate: calc(50%);\n\n &::before {\n content: "";\n\n position: absolute;\n z-index: -1;\n inset: 0;\n\n background-color: inherit;\n border-radius: 999px;\n\n animation: pinger 1s linear infinite;\n }\n }\n\n &:not([data-ping="true"]) {\n --translate: 0.75rem;\n\n min-width: 1em;\n }\n\n &[data-placement="top"] {\n top: 0;\n left: 50%;\n transform: translate(-50%, -50%);\n }\n\n &[data-placement="top-start"] {\n top: 0;\n inset-inline-start: 0;\n\n :global([dir="ltr"]) & {\n transform: translate(calc(var(--translate) * -1), -50%);\n }\n\n :global([dir="rtl"]) & {\n transform: translate(calc(var(--translate) * 1), -50%);\n }\n }\n\n &[data-placement="top-end"] {\n top: 0;\n inset-inline-end: 0;\n\n :global([dir="ltr"]) & {\n transform: translate(calc(var(--translate) * 1), -50%);\n }\n\n :global([dir="rtl"]) & {\n transform: translate(calc(var(--translate) * -1), -50%);\n }\n }\n\n &[data-placement="bottom"] {\n bottom: 0;\n left: 50%;\n transform: translate(-50%, 50%);\n }\n\n &[data-placement="bottom-start"] {\n bottom: 0;\n inset-inline-start: 0;\n\n :global([dir="ltr"]) & {\n transform: translate(calc(var(--translate) * -1), -50%);\n }\n\n :global([dir="rtl"]) & {\n transform: translate(calc(var(--translate) * 1), -50%);\n }\n }\n\n &[data-placement="bottom-end"] {\n bottom: 0;\n inset-inline-end: 0;\n\n :global([dir="ltr"]) & {\n transform: translate(calc(var(--translate) * 1), -50%);\n }\n\n :global([dir="rtl"]) & {\n transform: translate(calc(var(--translate) * -1), -50%);\n }\n }\n\n &[data-placement="start"] {\n top: 50%;\n inset-inline-start: 0;\n\n :global([dir="ltr"]) & {\n transform: translate(-50%, -50%);\n }\n\n :global([dir="rtl"]) & {\n transform: translate(50%, -50%);\n }\n }\n\n &[data-placement="end"] {\n top: 50%;\n inset-inline-end: 0;\n\n :global([dir="ltr"]) & {\n transform: translate(50%, -50%);\n }\n\n :global([dir="rtl"]) & {\n transform: translate(-50%, -50%);\n }\n }\n }\n}\n'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={badge:"Ue5BMYnH0MXHteos6uKj",pinger:"FjnrMpPUQwZhZ44cVS95"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/components/breadcrumbs/Breadcrumbs.module.css":(module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .IU9WAMWhHs4Cc1NuewrX,\n .Il6X6sLn94ps4kW1cmaI {\n --color: var(--primary);\n }\n\n .IU9WAMWhHs4Cc1NuewrX[data-color="accent"], .Il6X6sLn94ps4kW1cmaI[data-color="accent"] {\n --color: var(--accent);\n }\n\n .IU9WAMWhHs4Cc1NuewrX[data-color="info"], .Il6X6sLn94ps4kW1cmaI[data-color="info"] {\n --color: #00bfff;\n }\n\n .IU9WAMWhHs4Cc1NuewrX[data-color="danger"], .Il6X6sLn94ps4kW1cmaI[data-color="danger"] {\n --color: #f24c3d;\n }\n\n .IU9WAMWhHs4Cc1NuewrX[data-color="success"], .Il6X6sLn94ps4kW1cmaI[data-color="success"] {\n --color: #44bc69;\n }\n\n .IU9WAMWhHs4Cc1NuewrX[data-color="warning"], .Il6X6sLn94ps4kW1cmaI[data-color="warning"] {\n --color: #edaa00;\n }\n\n .IU9WAMWhHs4Cc1NuewrX .link, .Il6X6sLn94ps4kW1cmaI .link {\n padding: 0.25em 0.5em;\n text-decoration: none;\n }\n :is(.Il6X6sLn94ps4kW1cmaI,.IU9WAMWhHs4Cc1NuewrX[data-variant="classic"]) .link {\n color: color-mix(in lab, var(--color) 90%, var(--fabric-text));\n }\n\n :is(.Il6X6sLn94ps4kW1cmaI,.IU9WAMWhHs4Cc1NuewrX[data-variant="classic"]) .link:hover {\n color: color-mix(in lab, var(--color) 99%, var(--fabric-text));\n text-decoration: underline;\n background-color: color-mix(in lab, color(from var(--tint) srgb r g b / 50%) 10%, color(from var(--fabric-bg) srgb r g b / 50%));\n }\n\n :is(.Il6X6sLn94ps4kW1cmaI,.IU9WAMWhHs4Cc1NuewrX[data-variant="classic"]) .link:active {\n color: color-mix(in lab, var(--color) 85%, var(--fabric-text));\n background-color: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n }\n .IU9WAMWhHs4Cc1NuewrX[data-variant="classic"] > .A6_FX4O6EGspZSstNRWA {\n list-style: none;\n }\n\n .IU9WAMWhHs4Cc1NuewrX[data-variant="classic"] > .A6_FX4O6EGspZSstNRWA::after {\n content: attr(data-separator);\n display: inline-block;\n margin-inline: 0.125em;\n color: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n }\n\n .IU9WAMWhHs4Cc1NuewrX[data-variant="classic"] > .A6_FX4O6EGspZSstNRWA:last-child::after {\n content: unset;\n }\n\n [data-ref="viewport"] .IU9WAMWhHs4Cc1NuewrX {\n grid-area: crumbbar;\n padding: 0 0.25rem;\n }\n}\n\n@layer var {\n .IU9WAMWhHs4Cc1NuewrX[data-variant="classic"] > .link {\n overflow: hidden;\n max-width: 24rem;\n text-overflow: ellipsis;\n white-space: nowrap;\n }\n\n .IU9WAMWhHs4Cc1NuewrX[data-variant="classic"] > .A6_FX4O6EGspZSstNRWA:last-child > .link {\n pointer-events: none;\n color: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n }\n .IU9WAMWhHs4Cc1NuewrX[data-variant="modern"] > .A6_FX4O6EGspZSstNRWA {\n --linkcolor: color-mix(in lab, var(--color) 50%, var(--fabric-bg));\n\n position: relative;\n list-style: none;\n border-radius: var(--rounding);\n }\n\n .IU9WAMWhHs4Cc1NuewrX[data-variant="modern"] > .A6_FX4O6EGspZSstNRWA:last-child {\n --color: color(from var(--tint) srgb r g b / 1);\n\n pointer-events: none;\n }\n\n .IU9WAMWhHs4Cc1NuewrX[data-variant="modern"] > .A6_FX4O6EGspZSstNRWA:first-child > .link {\n border-start-start-radius: var(--rounding);\n border-end-start-radius: var(--rounding);\n }\n\n .IU9WAMWhHs4Cc1NuewrX[data-variant="modern"] > .A6_FX4O6EGspZSstNRWA:last-child > .link {\n border-start-end-radius: var(--rounding);\n border-end-end-radius: var(--rounding);\n }\n\n .IU9WAMWhHs4Cc1NuewrX[data-variant="modern"] > .A6_FX4O6EGspZSstNRWA:not(:first-child) {\n margin-inline-start: -1em;\n }\n\n .IU9WAMWhHs4Cc1NuewrX[data-variant="modern"] > .A6_FX4O6EGspZSstNRWA:not(:first-child)::before {\n content: "";\n\n display: inline-block;\n\n vertical-align: middle;\n\n border: 0.625em solid transparent;\n border-block-color: var(--linkcolor);\n border-inline-end-color: var(--linkcolor);\n }\n\n .IU9WAMWhHs4Cc1NuewrX[data-variant="modern"] > .A6_FX4O6EGspZSstNRWA:not(:first-child) > .link {\n margin-inline-start: -0.625em;\n }\n .IU9WAMWhHs4Cc1NuewrX[data-variant="modern"] > .A6_FX4O6EGspZSstNRWA:not(:last-child)::after {\n content: "";\n\n display: inline-block;\n\n vertical-align: middle;\n\n border: 0.625em solid transparent;\n border-inline-start-color: var(--linkcolor);\n }\n\n .IU9WAMWhHs4Cc1NuewrX[data-variant="modern"] > .A6_FX4O6EGspZSstNRWA > .link {\n display: inline-block;\n\n padding: 0.125em 0.5em;\n\n line-height: 1;\n color: color-mix(in lab, var(--color) 50%, var(--fabric-text));\n vertical-align: middle;\n\n background-color: var(--linkcolor);\n }\n\n .IU9WAMWhHs4Cc1NuewrX[data-variant="modern"] > .A6_FX4O6EGspZSstNRWA:hover {\n --linkcolor: color-mix(in lab, var(--color) 65%, var(--fabric-bg));\n }\n\n .IU9WAMWhHs4Cc1NuewrX[data-variant="modern"] > .A6_FX4O6EGspZSstNRWA:active {\n --linkcolor: color-mix(in lab, var(--color) 35%, var(--fabric-bg));\n }\n}\n',"",{version:3,sources:["webpack://./packages/core/src/components/breadcrumbs/Breadcrumbs.module.css"],names:[],mappings:"AAAA;;;;;;;;;;;;;;;;;;;;;EAqBE;;AAEF;EACE;;IAEE,uBAAsC;EA0BxC;;IAxBE;MACE,sBAAqC;IACvC;;IAEA;MACE,gBAAmC;IACrC;;IAEA;MACE,gBAAqC;IACvC;;IAEA;MACE,gBAAsC;IACxC;;IAEA;MACE,gBAAsC;IACxC;;IAEA;MACE,qBAAqB;MACrB,qBAAqB;IACvB;IAKA;MACE,8DAA8D;IAChE;;IAEA;MACE,8DAA8D;MAC9D,0BAA0B;MAC1B,iIAA2C;IAC7C;;IAEA;MACE,8DAA8D;MAC9D,6HAAuC;IACzC;IAIA;MACE,gBAAgB;IAYlB;;MAVE;QACE,6BAA6B;QAC7B,qBAAqB;QACrB,sBAAsB;QACtB,kHAA6B;MAC/B;;MAEA;QACE,cAAc;MAChB;;EAIJ;IACE,mBAAmB;IACnB,kBAAkB;EACpB;AACF;;AAEA;IAEI;MACE,gBAAgB;MAChB,gBAAgB;MAChB,uBAAuB;MACvB,mBAAmB;IACrB;;IAEA;MACE,oBAAoB;MACpB,oHAA6B;IAC/B;IAIA;MACE,kEAAkE;;MAElE,kBAAkB;MAClB,gBAAgB;MAChB,8BAA8B;IAsEhC;;MApEE;QACE,+CAA+B;;QAE/B,oBAAoB;MACtB;;MAEA;QACE,0CAA0C;QAC1C,wCAAwC;MAC1C;;MAEA;QACE,wCAAwC;QACxC,sCAAsC;MACxC;;MAEA;QACE,yBAAyB;MAiB3B;;QAfE;UACE,WAAW;;UAEX,qBAAqB;;UAErB,sBAAsB;;UAEtB,iCAAiC;UACjC,oCAAoC;UACpC,yCAAyC;QAC3C;;QAEA;UACE,6BAA6B;QAC/B;QAIA;UACE,WAAW;;UAEX,qBAAqB;;UAErB,sBAAsB;;UAEtB,iCAAiC;UACjC,2CAA2C;QAC7C;;MAGF;QACE,qBAAqB;;QAErB,sBAAsB;;QAEtB,cAAc;QACd,8DAA8D;QAC9D,sBAAsB;;QAEtB,kCAAkC;MACpC;;MAEA;QACE,kEAAkE;MACpE;;MAEA;QACE,kEAAkE;MACpE;AAGN",sourcesContent:['/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .breadcrumbs,\n .breadcrumbOverflow {\n --color: theme(colors.primary.DEFAULT);\n\n &[data-color="accent"] {\n --color: theme(colors.accent.DEFAULT);\n }\n\n &[data-color="info"] {\n --color: theme(colors.info.DEFAULT);\n }\n\n &[data-color="danger"] {\n --color: theme(colors.danger.DEFAULT);\n }\n\n &[data-color="success"] {\n --color: theme(colors.success.DEFAULT);\n }\n\n &[data-color="warning"] {\n --color: theme(colors.warning.DEFAULT);\n }\n\n & :global(.link) {\n padding: 0.25em 0.5em;\n text-decoration: none;\n }\n }\n\n .breadcrumbOverflow,\n .breadcrumbs[data-variant="classic"] {\n & :global(.link) {\n color: color-mix(in lab, var(--color) 90%, var(--fabric-text));\n }\n\n & :global(.link):hover {\n color: color-mix(in lab, var(--color) 99%, var(--fabric-text));\n text-decoration: underline;\n background-color: theme(colors.tint.50/50%);\n }\n\n & :global(.link):active {\n color: color-mix(in lab, var(--color) 85%, var(--fabric-text));\n background-color: theme(colors.tint.50);\n }\n }\n\n .breadcrumbs[data-variant="classic"] {\n & > .breadcrumbLink {\n list-style: none;\n\n &::after {\n content: attr(data-separator);\n display: inline-block;\n margin-inline: 0.125em;\n color: theme(colors.tint.300);\n }\n\n &:last-child::after {\n content: unset;\n }\n }\n }\n\n [data-ref="viewport"] .breadcrumbs {\n grid-area: crumbbar;\n padding: 0 0.25rem;\n }\n}\n\n@layer var {\n .breadcrumbs[data-variant="classic"] {\n & > :global(.link) {\n overflow: hidden;\n max-width: 24rem;\n text-overflow: ellipsis;\n white-space: nowrap;\n }\n\n & > .breadcrumbLink:last-child > :global(.link) {\n pointer-events: none;\n color: theme(colors.tint.600);\n }\n }\n\n .breadcrumbs[data-variant="modern"] {\n & > .breadcrumbLink {\n --linkcolor: color-mix(in lab, var(--color) 50%, var(--fabric-bg));\n\n position: relative;\n list-style: none;\n border-radius: var(--rounding);\n\n &:last-child {\n --color: theme(colors.tint.500);\n\n pointer-events: none;\n }\n\n &:first-child > :global(.link) {\n border-start-start-radius: var(--rounding);\n border-end-start-radius: var(--rounding);\n }\n\n &:last-child > :global(.link) {\n border-start-end-radius: var(--rounding);\n border-end-end-radius: var(--rounding);\n }\n\n &:not(:first-child) {\n margin-inline-start: -1em;\n\n &::before {\n content: "";\n\n display: inline-block;\n\n vertical-align: middle;\n\n border: 0.625em solid transparent;\n border-block-color: var(--linkcolor);\n border-inline-end-color: var(--linkcolor);\n }\n\n & > :global(.link) {\n margin-inline-start: -0.625em;\n }\n }\n\n &:not(:last-child) {\n &::after {\n content: "";\n\n display: inline-block;\n\n vertical-align: middle;\n\n border: 0.625em solid transparent;\n border-inline-start-color: var(--linkcolor);\n }\n }\n\n & > :global(.link) {\n display: inline-block;\n\n padding: 0.125em 0.5em;\n\n line-height: 1;\n color: color-mix(in lab, var(--color) 50%, var(--fabric-text));\n vertical-align: middle;\n\n background-color: var(--linkcolor);\n }\n\n &:hover {\n --linkcolor: color-mix(in lab, var(--color) 65%, var(--fabric-bg));\n }\n\n &:active {\n --linkcolor: color-mix(in lab, var(--color) 35%, var(--fabric-bg));\n }\n }\n }\n}\n'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={breadcrumbs:"IU9WAMWhHs4Cc1NuewrX",breadcrumbOverflow:"Il6X6sLn94ps4kW1cmaI",breadcrumbLink:"A6_FX4O6EGspZSstNRWA"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/components/button/Button.module.css":(module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .QpTd_VegJKNxT5g0cMfZ {\n --color: color(from var(--primary) srgb r g b / 1);\n\n font-size: 1rem;\n border-radius: var(--rounding);\n }\n\n .QpTd_VegJKNxT5g0cMfZ .VYpTNtmwiVtPzrPfrTRw {\n color: var(--text);\n\n background-color: var(--bg);\n background-image: var(--click-gradient);\n border-radius: inherit;\n outline: 1px solid var(--outline);\n }\n .QpTd_VegJKNxT5g0cMfZ .VYpTNtmwiVtPzrPfrTRw.Ms8HNRvf1Ot0zVzY0eVZ:hover .nHrEEvEai7K0xYVRNs6a {\n animation: spin 2s linear infinite;\n }\n\n .QpTd_VegJKNxT5g0cMfZ .VYpTNtmwiVtPzrPfrTRw > * {\n pointer-events: none;\n }\n\n .QpTd_VegJKNxT5g0cMfZ .VYpTNtmwiVtPzrPfrTRw:not(:disabled) input[type="file"] {\n pointer-events: auto;\n }\n\n .QpTd_VegJKNxT5g0cMfZ .VYpTNtmwiVtPzrPfrTRw:not(:disabled) input[type="file"]::-webkit-file-upload-button {\n cursor: pointer;\n position: absolute;\n inset: 0;\n }\n\n .QpTd_VegJKNxT5g0cMfZ .idSDa3Ea7Eq4L8qZGMue {\n border-radius: 9999px;\n }\n\n .QpTd_VegJKNxT5g0cMfZ .wiXAMAgictyHDfzFIsN9 {\n order: 1;\n padding: 0.5em 1em;\n line-height: 1;\n }\n\n :is(.QpTd_VegJKNxT5g0cMfZ .wiXAMAgictyHDfzFIsN9) + .ZNnBRwcyrY2kEdJLwjjg {\n margin-inline-start: -1em;\n }\n\n .QpTd_VegJKNxT5g0cMfZ .aQzN0Ps7NW_FtXhbjmJD {\n order: 1;\n padding: 0.5em;\n line-height: 1;\n }\n\n .QpTd_VegJKNxT5g0cMfZ .nHrEEvEai7K0xYVRNs6a {\n padding: 0.3889em;\n font-size: 1.125em;\n }\n\n .QpTd_VegJKNxT5g0cMfZ .hotkey-label {\n align-self: center;\n order: 3;\n }\n\n .QpTd_VegJKNxT5g0cMfZ .ZNnBRwcyrY2kEdJLwjjg {\n align-self: center;\n order: 4;\n padding: 0.125em 0.5em;\n }\n\n .QpTd_VegJKNxT5g0cMfZ [data-ref="badge"] {\n align-self: center;\n order: 2;\n margin-inline-end: 0.5em;\n }\n .ycw8aOS5V_HAKrWZr290 > .QpTd_VegJKNxT5g0cMfZ {\n flex: 0 1 1em;\n }\n\n .ycw8aOS5V_HAKrWZr290:not(.v1UvzdKf3jmFLXEiVisQ) + .ycw8aOS5V_HAKrWZr290:not(.v1UvzdKf3jmFLXEiVisQ) {\n margin-inline-start: 0.5rem;\n }\n}\n\n@layer util {\n .QpTd_VegJKNxT5g0cMfZ[data-size="xs"] {\n font-size: 0.625rem;\n }\n\n .QpTd_VegJKNxT5g0cMfZ[data-size="sm"] {\n font-size: 0.875rem;\n }\n\n .QpTd_VegJKNxT5g0cMfZ[data-size="md"] {\n font-size: 1.125rem;\n }\n\n .QpTd_VegJKNxT5g0cMfZ[data-size="lg"] {\n font-size: 1.25rem;\n }\n\n .QpTd_VegJKNxT5g0cMfZ[data-size="xl"] {\n font-size: 1.5rem;\n }\n\n .VYpTNtmwiVtPzrPfrTRw {\n --bg: color-mix(in lab, var(--fabric-bg) 99%, var(--tint));\n --outline: color-mix(in lab, var(--bg) 90%, var(--fabric-text));\n --text: color-mix(in lab, var(--color) 80%, var(--fabric-text));\n --bg-hover: color-mix(in lab, var(--color) 18%, var(--fabric-bg));\n --bg-click: color-mix(in lab, var(--color) 25%, var(--fabric-bg));\n --bg-active: color-mix(in lab, var(--color) 36%, var(--fabric-bg));\n }\n\n .VYpTNtmwiVtPzrPfrTRw[data-color="accent"] {\n --color: color(from var(--accent) srgb r g b / 1);\n }\n\n .VYpTNtmwiVtPzrPfrTRw[data-color="info"] {\n --color: color(from #00bfff srgb r g b / 1);\n }\n\n .VYpTNtmwiVtPzrPfrTRw[data-color="danger"] {\n --color: color(from #f24c3d srgb r g b / 1);\n }\n\n .VYpTNtmwiVtPzrPfrTRw[data-color="success"] {\n --color: color(from #44bc69 srgb r g b / 1);\n }\n\n .VYpTNtmwiVtPzrPfrTRw[data-color="warning"] {\n --color: color(from #edaa00 srgb r g b / 1);\n }\n\n .VYpTNtmwiVtPzrPfrTRw[data-variant="outline"] {\n --outline: var(--color);\n }\n\n .VYpTNtmwiVtPzrPfrTRw[data-variant="solid"] {\n --outline: var(--color);\n --bg: color-mix(in lab, var(--color) 96%, var(--fabric-text));\n --text: #fefdfc;\n --bg-hover: color-mix(in lab, var(--color) 90%, var(--fabric-bg));\n --bg-click: color-mix(in lab, var(--color) 80%, #191a1b);\n --bg-active: color-mix(in lab, var(--color) 70%, #191a1b);\n }\n\n .VYpTNtmwiVtPzrPfrTRw[data-variant="solid"] .hotkey-label {\n color: rgb(254 253 252 / 70%);\n background-color: color-mix(in lab, color(from var(--black) srgb r g b / 30%) 90%, color(from var(--tint) srgb r g b / 30%));\n }\n\n .VYpTNtmwiVtPzrPfrTRw[data-variant="link"] {\n --bg: transparent;\n --outline: transparent;\n\n background-image: none;\n box-shadow: none;\n }\n\n .VYpTNtmwiVtPzrPfrTRw[data-color="invert"] {\n --bg: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 5%, color(from var(--fabric-text) srgb r g b / 1));\n --text: color-mix(in lab, var(--color) 90%, color-mix(in lab, color(from var(--fabric-text) srgb r g b / 1) 5%, color(from var(--fabric-bg) srgb r g b / 1)));\n --bg-hover: color-mix(\n in lab,\n var(--color) 15%,\n color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 5%, color(from var(--fabric-text) srgb r g b / 1))\n );\n --bg-click: color-mix(\n in lab,\n var(--color) 35%,\n color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 5%, color(from var(--fabric-text) srgb r g b / 1))\n );\n }\n\n .nHrEEvEai7K0xYVRNs6a[data-align="start"] {\n order: 0;\n }\n\n .nHrEEvEai7K0xYVRNs6a[data-align="start"] + .wiXAMAgictyHDfzFIsN9[data-colored-icon="false"] {\n margin-inline-start: -1em;\n }\n\n .nHrEEvEai7K0xYVRNs6a[data-align="end"] {\n order: 2;\n }\n\n .nHrEEvEai7K0xYVRNs6a[data-align="end"] ~ .wiXAMAgictyHDfzFIsN9[data-colored-icon="false"] {\n margin-inline-end: -1em;\n }\n}\n\n@layer var {\n .QpTd_VegJKNxT5g0cMfZ {\n height: unset;\n padding: unset;\n }\n\n .QpTd_VegJKNxT5g0cMfZ[data-disabled="true"] {\n cursor: not-allowed;\n }\n\n .QpTd_VegJKNxT5g0cMfZ[data-disabled="true"] .VYpTNtmwiVtPzrPfrTRw {\n pointer-events: none;\n opacity: 0.5;\n background-image: var(--active-gradient);\n }\n\n .QpTd_VegJKNxT5g0cMfZ[data-loading="true"] {\n cursor: wait;\n }\n\n .QpTd_VegJKNxT5g0cMfZ[data-loading="true"] .VYpTNtmwiVtPzrPfrTRw {\n pointer-events: none;\n background-image: var(--progress-gradient);\n background-size: 1em 1em;\n }\n\n .QpTd_VegJKNxT5g0cMfZ[data-loading="true"] .VYpTNtmwiVtPzrPfrTRw {\n animation: bgprogress 750ms linear infinite;\n }\n\n .QpTd_VegJKNxT5g0cMfZ[data-loading="true"] .VYpTNtmwiVtPzrPfrTRw:not([data-variant="solid"]) {\n background-color: color-mix(in lab, var(--color) 15%, var(--fabric-bg));\n }\n\n .QpTd_VegJKNxT5g0cMfZ.btn-dashed > .VYpTNtmwiVtPzrPfrTRw {\n color: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n outline: 1px dashed color-mix(in lab, color(from var(--tint) srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n }\n\n .QpTd_VegJKNxT5g0cMfZ.btn-dashed > .VYpTNtmwiVtPzrPfrTRw[data-invalid="true"] {\n color: color-mix(in lab, color(from #f24c3d srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n background-color: color-mix(in lab, color(from #f24c3d srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n outline: 1px dashed color-mix(in lab, color(from #f24c3d srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n }\n\n .VYpTNtmwiVtPzrPfrTRw {\n --tw-ring-color: var(--color);\n }\n\n .VYpTNtmwiVtPzrPfrTRw:hover {\n background-color: var(--bg-hover);\n }\n\n .VYpTNtmwiVtPzrPfrTRw:active {\n background-color: var(--bg-click);\n background-image: var(--active-gradient);\n }\n\n .VYpTNtmwiVtPzrPfrTRw:active .nHrEEvEai7K0xYVRNs6a,\n .VYpTNtmwiVtPzrPfrTRw:active .wiXAMAgictyHDfzFIsN9 {\n transform: translateY(1px);\n }\n\n .VYpTNtmwiVtPzrPfrTRw[data-active="true"],\n .VYpTNtmwiVtPzrPfrTRw[data-checked="true"],\n .VYpTNtmwiVtPzrPfrTRw[data-dropdown-open="true"] {\n background-color: var(--bg-active);\n background-image: none;\n }\n\n .VYpTNtmwiVtPzrPfrTRw[data-dropdown-open="true"] {\n pointer-events: none;\n }\n\n .VYpTNtmwiVtPzrPfrTRw[data-active="true"] {\n pointer-events: none;\n }\n .ycw8aOS5V_HAKrWZr290 > .QpTd_VegJKNxT5g0cMfZ {\n margin: 0;\n }\n\n .ycw8aOS5V_HAKrWZr290 > .QpTd_VegJKNxT5g0cMfZ .VYpTNtmwiVtPzrPfrTRw[data-variant="link"] {\n --outline: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 99%, color(from var(--tint) srgb r g b / 1));\n }\n .ycw8aOS5V_HAKrWZr290:not(.XvoxN0KaGg329Ek8A7RD) > :not(:first-child)::before {\n content: "";\n\n position: absolute;\n inset-block: 5%;\n inset-inline-start: -0.5px;\n\n border-inline-start: 0.5px solid color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 65%, color(from var(--tint) srgb r g b / 1));\n }\n\n .ycw8aOS5V_HAKrWZr290.QtusWqN7NyJZHz96DG7G:not(.XvoxN0KaGg329Ek8A7RD) > :not(:first-child) {\n margin-inline-start: 2px;\n }\n\n .ycw8aOS5V_HAKrWZr290.QtusWqN7NyJZHz96DG7G:not(.XvoxN0KaGg329Ek8A7RD) > :not(:first-child)::before {\n inset-inline-start: -1.5px;\n }\n\n .ycw8aOS5V_HAKrWZr290:not(.XvoxN0KaGg329Ek8A7RD) > :not(:last-child) .VYpTNtmwiVtPzrPfrTRw {\n border-start-end-radius: 0;\n border-end-end-radius: 0;\n }\n\n .ycw8aOS5V_HAKrWZr290:not(.XvoxN0KaGg329Ek8A7RD) > :not(:first-child) .VYpTNtmwiVtPzrPfrTRw {\n border-start-start-radius: 0;\n border-end-start-radius: 0;\n }\n .ycw8aOS5V_HAKrWZr290.XvoxN0KaGg329Ek8A7RD > :not(:first-child)::before {\n content: "";\n\n position: absolute;\n inset-block-start: -0.5px;\n inset-inline: 5%;\n\n border-block-start: 0.5px solid color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 65%, color(from var(--tint) srgb r g b / 1));\n }\n\n .ycw8aOS5V_HAKrWZr290.XvoxN0KaGg329Ek8A7RD.QtusWqN7NyJZHz96DG7G > :not(:first-child) {\n margin-block-start: 1px;\n }\n\n .ycw8aOS5V_HAKrWZr290.XvoxN0KaGg329Ek8A7RD.QtusWqN7NyJZHz96DG7G > :not(:first-child)::before {\n inset-block-start: -1px;\n }\n\n .ycw8aOS5V_HAKrWZr290.XvoxN0KaGg329Ek8A7RD > :not(:last-child) .VYpTNtmwiVtPzrPfrTRw {\n border-end-start-radius: 0;\n border-end-end-radius: 0;\n }\n\n .ycw8aOS5V_HAKrWZr290.XvoxN0KaGg329Ek8A7RD > :not(:first-child) .VYpTNtmwiVtPzrPfrTRw {\n border-start-start-radius: 0;\n border-start-end-radius: 0;\n }\n}\n',"",{version:3,sources:["webpack://./packages/core/src/components/button/Button.module.css"],names:[],mappings:"AAAA;;;;;;;;;;;;;;;;;;;;;EAqBE;;AAEF;EACE;IACE,kDAAkC;;IAElC,eAAe;IACf,8BAA8B;EAwEhC;;IAtEE;MACE,kBAAkB;;MAElB,2BAA2B;MAC3B,uCAAuC;MACvC,sBAAsB;MACtB,iCAAiC;IAqBnC;QAlBI;UACE,kCAAkC;QACpC;;MAGF;QACE,oBAAoB;MACtB;;MAEA;QACE,oBAAoB;MAOtB;;QALE;UACE,eAAe;UACf,kBAAkB;UAClB,QAAQ;QACV;;IAIJ;MACE,qBAAqB;IACvB;;IAEA;MACE,QAAQ;MACR,kBAAkB;MAClB,cAAc;IAKhB;;MAHE;QACE,yBAAyB;MAC3B;;IAGF;MACE,QAAQ;MACR,cAAc;MACd,cAAc;IAChB;;IAEA;MACE,iBAAiB;MACjB,kBAAkB;IACpB;;IAEA;MACE,kBAAkB;MAClB,QAAQ;IACV;;IAEA;MACE,kBAAkB;MAClB,QAAQ;MACR,sBAAsB;IACxB;;IAEA;MACE,kBAAkB;MAClB,QAAQ;MACR,wBAAwB;IAC1B;IAIA;MACE,aAAa;IACf;;IAEA;MACE,2BAA2B;IAC7B;AAEJ;;AAEA;IAEI;MACE,mBAAmB;IACrB;;IAEA;MACE,mBAAmB;IACrB;;IAEA;MACE,mBAAmB;IACrB;;IAEA;MACE,kBAAkB;IACpB;;IAEA;MACE,iBAAiB;IACnB;;EAGF;IACE,0DAA0D;IAC1D,+DAA+D;IAC/D,+DAA+D;IAC/D,iEAAiE;IACjE,iEAAiE;IACjE,kEAAkE;EA8DpE;;IA5DE;MACE,iDAAiC;IACnC;;IAEA;MACE,2CAA+B;IACjC;;IAEA;MACE,2CAAiC;IACnC;;IAEA;MACE,2CAAkC;IACpC;;IAEA;MACE,2CAAkC;IACpC;;IAEA;MACE,uBAAuB;IACzB;;IAEA;MACE,uBAAuB;MACvB,6DAA6D;MAC7D,eAA2B;MAC3B,iEAAiE;MACjE,wDAAoE;MACpE,yDAAqE;IAMvE;;MAJE;QACE,6BAA8B;QAC9B,6HAAiD;MACnD;;IAGF;MACE,iBAAiB;MACjB,sBAAsB;;MAEtB,sBAAsB;MACtB,gBAAgB;IAClB;;IAEA;MACE,uHAAmC;MACnC,8JAAoE;MACpE;;;;OAIC;MACD;;;;OAIC;IACH;;EAGF;IACE,QAAQ;EAKV;;IAHE;MACE,yBAAyB;IAC3B;;EAGF;IACE,QAAQ;EAKV;;IAHE;MACE,uBAAuB;IACzB;AAEJ;;AAEA;EACE;IACE,aAAa;IACb,cAAc;EAwChB;;IAtCE;MACE,mBAAmB;IAOrB;;MALE;QACE,oBAAoB;QACpB,YAAY;QACZ,wCAAwC;MAC1C;;IAGF;MACE,YAAY;IAed;;MAbE;QACE,oBAAoB;QACpB,0CAA0C;QAC1C,wBAAwB;MAK1B;;QAHE;UACE,2CAA2C;QAC7C;;MAGF;QACE,uEAAuE;MACzE;;IAGF;MACE,oHAA6B;MAC7B,iIAA0C;IAO5C;;MALE;QACE,gHAA+B;QAC/B,yHAA0C;QAC1C,6HAA4C;MAC9C;;EAIJ;IACE,6BAA6B;EA8B/B;;IA5BE;MACE,iCAAiC;IACnC;;IAEA;MACE,iCAAiC;MACjC,wCAAwC;IAM1C;;MAJE;;QAEE,0BAA0B;MAC5B;;IAGF;;;MAGE,kCAAkC;MAClC,sBAAsB;IACxB;;IAEA;MACE,oBAAoB;IACtB;;IAEA;MACE,oBAAoB;IACtB;IAIA;MACE,SAAS;IAKX;;MAHE;QACE,sHAAsC;MACxC;QAKE;UACE,WAAW;;UAEX,kBAAkB;UAClB,eAAe;UACf,0BAA0B;;UAE1B,4IAAwD;QAC1D;;MAGF;QACE,wBAAwB;MAK1B;;QAHE;UACE,0BAA0B;QAC5B;;MAGF;QACE,0BAA0B;QAC1B,wBAAwB;MAC1B;;MAEA;QACE,4BAA4B;QAC5B,0BAA0B;MAC5B;QAKE;UACE,WAAW;;UAEX,kBAAkB;UAClB,yBAAyB;UACzB,gBAAgB;;UAEhB,2IAAuD;QACzD;;MAGF;QACE,uBAAuB;MAKzB;;QAHE;UACE,uBAAuB;QACzB;;MAGF;QACE,0BAA0B;QAC1B,wBAAwB;MAC1B;;MAEA;QACE,4BAA4B;QAC5B,0BAA0B;MAC5B;AAGN",sourcesContent:['/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .buttonWrapper {\n --color: theme(colors.primary.500);\n\n font-size: 1rem;\n border-radius: var(--rounding);\n\n & .button {\n color: var(--text);\n\n background-color: var(--bg);\n background-image: var(--click-gradient);\n border-radius: inherit;\n outline: 1px solid var(--outline);\n\n &.spinOnHover:hover .buttonIcon {\n & :global {\n animation: spin 2s linear infinite;\n }\n }\n\n & > * {\n pointer-events: none;\n }\n\n &:not(:disabled) input[type="file"] {\n pointer-events: auto;\n\n &::-webkit-file-upload-button {\n cursor: pointer;\n position: absolute;\n inset: 0;\n }\n }\n }\n\n & .rounded {\n border-radius: 9999px;\n }\n\n & .buttonLabel {\n order: 1;\n padding: 0.5em 1em;\n line-height: 1;\n\n & + .altIcon {\n margin-inline-start: -1em;\n }\n }\n\n & .buttonChild {\n order: 1;\n padding: 0.5em;\n line-height: 1;\n }\n\n & .buttonIcon {\n padding: 0.3889em;\n font-size: 1.125em;\n }\n\n & :global(.hotkey-label) {\n align-self: center;\n order: 3;\n }\n\n & .altIcon {\n align-self: center;\n order: 4;\n padding: 0.125em 0.5em;\n }\n\n & [data-ref="badge"] {\n align-self: center;\n order: 2;\n margin-inline-end: 0.5em;\n }\n }\n\n .buttonGroup {\n & > .buttonWrapper {\n flex: 0 1 1em;\n }\n\n &:not(.flex) + &:not(.flex) {\n margin-inline-start: 0.5rem;\n }\n }\n}\n\n@layer util {\n .buttonWrapper {\n &[data-size="xs"] {\n font-size: 0.625rem;\n }\n\n &[data-size="sm"] {\n font-size: 0.875rem;\n }\n\n &[data-size="md"] {\n font-size: 1.125rem;\n }\n\n &[data-size="lg"] {\n font-size: 1.25rem;\n }\n\n &[data-size="xl"] {\n font-size: 1.5rem;\n }\n }\n\n .button {\n --bg: color-mix(in lab, var(--fabric-bg) 99%, var(--tint));\n --outline: color-mix(in lab, var(--bg) 90%, var(--fabric-text));\n --text: color-mix(in lab, var(--color) 80%, var(--fabric-text));\n --bg-hover: color-mix(in lab, var(--color) 18%, var(--fabric-bg));\n --bg-click: color-mix(in lab, var(--color) 25%, var(--fabric-bg));\n --bg-active: color-mix(in lab, var(--color) 36%, var(--fabric-bg));\n\n &[data-color="accent"] {\n --color: theme(colors.accent.500);\n }\n\n &[data-color="info"] {\n --color: theme(colors.info.500);\n }\n\n &[data-color="danger"] {\n --color: theme(colors.danger.500);\n }\n\n &[data-color="success"] {\n --color: theme(colors.success.500);\n }\n\n &[data-color="warning"] {\n --color: theme(colors.warning.500);\n }\n\n &[data-variant="outline"] {\n --outline: var(--color);\n }\n\n &[data-variant="solid"] {\n --outline: var(--color);\n --bg: color-mix(in lab, var(--color) 96%, var(--fabric-text));\n --text: theme(colors.white);\n --bg-hover: color-mix(in lab, var(--color) 90%, var(--fabric-bg));\n --bg-click: color-mix(in lab, var(--color) 80%, theme(colors.black));\n --bg-active: color-mix(in lab, var(--color) 70%, theme(colors.black));\n\n & :global(.hotkey-label) {\n color: theme(colors.white/70%);\n background-color: theme(backgroundColor.dark/30%);\n }\n }\n\n &[data-variant="link"] {\n --bg: transparent;\n --outline: transparent;\n\n background-image: none;\n box-shadow: none;\n }\n\n &[data-color="invert"] {\n --bg: theme(backgroundColor.invert);\n --text: color-mix(in lab, var(--color) 90%, theme(textColor.invert));\n --bg-hover: color-mix(\n in lab,\n var(--color) 15%,\n theme(backgroundColor.invert)\n );\n --bg-click: color-mix(\n in lab,\n var(--color) 35%,\n theme(backgroundColor.invert)\n );\n }\n }\n\n .buttonIcon[data-align="start"] {\n order: 0;\n\n & + .buttonLabel[data-colored-icon="false"] {\n margin-inline-start: -1em;\n }\n }\n\n .buttonIcon[data-align="end"] {\n order: 2;\n\n & ~ .buttonLabel[data-colored-icon="false"] {\n margin-inline-end: -1em;\n }\n }\n}\n\n@layer var {\n .buttonWrapper {\n height: unset;\n padding: unset;\n\n &[data-disabled="true"] {\n cursor: not-allowed;\n\n & .button {\n pointer-events: none;\n opacity: 0.5;\n background-image: var(--active-gradient);\n }\n }\n\n &[data-loading="true"] {\n cursor: wait;\n\n & .button {\n pointer-events: none;\n background-image: var(--progress-gradient);\n background-size: 1em 1em;\n\n & :global {\n animation: bgprogress 750ms linear infinite;\n }\n }\n\n & .button:not([data-variant="solid"]) {\n background-color: color-mix(in lab, var(--color) 15%, var(--fabric-bg));\n }\n }\n\n &:global(.btn-dashed) > .button {\n color: theme(colors.tint.600);\n outline: 1px dashed theme(colors.tint.600);\n\n &[data-invalid="true"] {\n color: theme(colors.danger.600);\n background-color: theme(colors.danger.100);\n outline: 1px dashed theme(colors.danger.600);\n }\n }\n }\n\n .button {\n --tw-ring-color: var(--color);\n\n &:hover {\n background-color: var(--bg-hover);\n }\n\n &:active {\n background-color: var(--bg-click);\n background-image: var(--active-gradient);\n\n .buttonIcon,\n .buttonLabel {\n transform: translateY(1px);\n }\n }\n\n &[data-active="true"],\n &[data-checked="true"],\n &[data-dropdown-open="true"] {\n background-color: var(--bg-active);\n background-image: none;\n }\n\n &[data-dropdown-open="true"] {\n pointer-events: none;\n }\n\n &[data-active="true"] {\n pointer-events: none;\n }\n }\n\n .buttonGroup {\n & > .buttonWrapper {\n margin: 0;\n\n & .button[data-variant="link"] {\n --outline: theme(backgroundColor.base);\n }\n }\n\n &:not(.vertical) {\n & > :not(:first-child) {\n &::before {\n content: "";\n\n position: absolute;\n inset-block: 5%;\n inset-inline-start: -0.5px;\n\n border-inline-start: 0.5px solid theme(borderColor.base);\n }\n }\n\n &.separator > :not(:first-child) {\n margin-inline-start: 2px;\n\n &::before {\n inset-inline-start: -1.5px;\n }\n }\n\n & > :not(:last-child) .button {\n border-start-end-radius: 0;\n border-end-end-radius: 0;\n }\n\n & > :not(:first-child) .button {\n border-start-start-radius: 0;\n border-end-start-radius: 0;\n }\n }\n\n &.vertical {\n & > :not(:first-child) {\n &::before {\n content: "";\n\n position: absolute;\n inset-block-start: -0.5px;\n inset-inline: 5%;\n\n border-block-start: 0.5px solid theme(borderColor.base);\n }\n }\n\n &.separator > :not(:first-child) {\n margin-block-start: 1px;\n\n &::before {\n inset-block-start: -1px;\n }\n }\n\n & > :not(:last-child) .button {\n border-end-start-radius: 0;\n border-end-end-radius: 0;\n }\n\n & > :not(:first-child) .button {\n border-start-start-radius: 0;\n border-start-end-radius: 0;\n }\n }\n }\n}\n'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={buttonWrapper:"QpTd_VegJKNxT5g0cMfZ",button:"VYpTNtmwiVtPzrPfrTRw",spinOnHover:"Ms8HNRvf1Ot0zVzY0eVZ",buttonIcon:"nHrEEvEai7K0xYVRNs6a",rounded:"idSDa3Ea7Eq4L8qZGMue",buttonLabel:"wiXAMAgictyHDfzFIsN9",altIcon:"ZNnBRwcyrY2kEdJLwjjg",buttonChild:"aQzN0Ps7NW_FtXhbjmJD",buttonGroup:"ycw8aOS5V_HAKrWZr290",flex:"v1UvzdKf3jmFLXEiVisQ",vertical:"XvoxN0KaGg329Ek8A7RD",separator:"QtusWqN7NyJZHz96DG7G"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/components/card/Card.module.css":(module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .IUcqmHjDniNCA9ugwaJr.Unw02_Z7NJZcJKoDdHML::before {\n content: "";\n\n position: absolute;\n z-index: 5;\n top: -4px;\n inset-inline-start: -4px;\n\n border-top: 1rem solid color(from var(--accent) srgb r g b / 1);\n border-bottom: 1rem solid transparent;\n border-inline-start: 1rem solid color(from var(--accent) srgb r g b / 1);\n border-inline-end: 1rem solid transparent;\n border-start-start-radius: var(--rounding-cap);\n }\n\n .IUcqmHjDniNCA9ugwaJr.Unw02_Z7NJZcJKoDdHML::after {\n content: "✓";\n\n position: absolute;\n z-index: 5;\n top: -4px;\n inset-inline-start: -4px;\n\n padding: 4px;\n\n line-height: 1;\n color: #fefdfc;\n }\n\n .n3Y1COH2zF3brYb1IKg1 {\n background-color: var(--fabric-bg);\n box-shadow: 0 0 0 1px color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 80%, color(from var(--tint) srgb r g b / 1));\n }\n\n .n3Y1COH2zF3brYb1IKg1 > * {\n background-color: transparent;\n }\n .n3Y1COH2zF3brYb1IKg1 .fbz2sEZpx6k0esC7eQeA.BJ4rpzKLuR3cHJbMPf8Y:has([data-colorset="dark"]) > .PrbU7qdEW4BPvYBaFe_w,\n .n3Y1COH2zF3brYb1IKg1 .fbz2sEZpx6k0esC7eQeA.E8jGrGiyKjzNpp4nJi61 > .PrbU7qdEW4BPvYBaFe_w {\n color: var(--white);\n text-shadow: 0 0 2px var(--black);\n background-image: linear-gradient(to bottom, #0000 0, #0006 100%);\n }\n\n .n3Y1COH2zF3brYb1IKg1 .fbz2sEZpx6k0esC7eQeA.BJ4rpzKLuR3cHJbMPf8Y:has([data-colorset="light"]) > .PrbU7qdEW4BPvYBaFe_w,\n .n3Y1COH2zF3brYb1IKg1 .fbz2sEZpx6k0esC7eQeA.YyY1jHpwcBG7dEwd_aGI > .PrbU7qdEW4BPvYBaFe_w {\n color: var(--black);\n text-shadow: 0 0 2px var(--white);\n background-image: linear-gradient(to bottom, #fff0 0, #fff6 100%);\n }\n\n .n3Y1COH2zF3brYb1IKg1 .BtXyDzHfZ9NOHfm2oA21 {\n padding: 1rem;\n }\n\n .n3Y1COH2zF3brYb1IKg1.sYUJd86FDRWmK7fyAWEk {\n box-shadow:\n 0 0 0 1px color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 72%, color(from var(--tint) srgb r g b / 1)),\n 0 1px 2px 0 var(--fabric-shadow);\n transition: box-shadow 0ms;\n }\n\n .n3Y1COH2zF3brYb1IKg1.sYUJd86FDRWmK7fyAWEk:has(.BtXyDzHfZ9NOHfm2oA21:hover):not(:has([data-inner-clickable="true"]:hover)) {\n box-shadow:\n 0 0 0 1px color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 72%, color(from var(--tint) srgb r g b / 1)),\n 0 1px 4px 0 var(--fabric-shadow),\n 0 8px 16px 0 color-mix(in lab, var(--fabric-shadow) 35%, #0000);\n transition-delay: 150ms;\n }\n\n .n3Y1COH2zF3brYb1IKg1.sYUJd86FDRWmK7fyAWEk:has(.BtXyDzHfZ9NOHfm2oA21:active):not(:has([data-inner-clickable="true"]:hover)) {\n transform: translateY(1px);\n box-shadow: 0 0 0 1px color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 72%, color(from var(--tint) srgb r g b / 1));\n transition-delay: 0ms;\n }\n\n .n3Y1COH2zF3brYb1IKg1.sYUJd86FDRWmK7fyAWEk .BtXyDzHfZ9NOHfm2oA21 {\n cursor: pointer;\n }\n\n .n3Y1COH2zF3brYb1IKg1.sYUJd86FDRWmK7fyAWEk .BtXyDzHfZ9NOHfm2oA21::after {\n pointer-events: none;\n content: "";\n\n position: absolute;\n z-index: 5;\n inset: 0;\n\n background-image: linear-gradient(\n 175deg,\n rgb(255 255 255 / 5%) 0%,\n transparent 18%,\n transparent 72%,\n rgb(0 0 0 / 5%) 100%\n );\n }\n}\n\n@layer util {\n .n3Y1COH2zF3brYb1IKg1 .BtXyDzHfZ9NOHfm2oA21 > * {\n grid-area: unset;\n background-color: transparent;\n }\n .n3Y1COH2zF3brYb1IKg1 .fbz2sEZpx6k0esC7eQeA > [data-ref="image"],\n .n3Y1COH2zF3brYb1IKg1 .fbz2sEZpx6k0esC7eQeA > [data-ref="video"] {\n position: absolute;\n z-index: 0;\n inset: 0;\n }\n .n3Y1COH2zF3brYb1IKg1 .fbz2sEZpx6k0esC7eQeA .PrbU7qdEW4BPvYBaFe_w > * {\n flex: 0 0 auto;\n }\n}\n',"",{version:3,sources:["webpack://./packages/core/src/components/card/Card.module.css"],names:[],mappings:"AAAA;;;;;;;;;;;;;;;;;;;;;EAqBE;;AAEF;IAEI;MACE,WAAW;;MAEX,kBAAkB;MAClB,UAAU;MACV,SAAS;MACT,wBAAwB;;MAExB,+DAA+C;MAC/C,qCAAqC;MACrC,wEAAwD;MACxD,yCAAyC;MACzC,8CAA8C;IAChD;;IAEA;MACE,YAAY;;MAEZ,kBAAkB;MAClB,UAAU;MACV,SAAS;MACT,wBAAwB;;MAExB,YAAY;;MAEZ,cAAc;MACd,cAA0B;IAC5B;;EAGF;IACE,kCAAkC;IAClC,iIAA8C;EAmEhD;;IAjEE;MACE,6BAA6B;IAC/B;MAGE;;QAEE,mBAAmB;QACnB,iCAAiC;QACjC,iEAAiE;MACnE;;MAEA;;QAEE,mBAAmB;QACnB,iCAAiC;QACjC,iEAAiE;MACnE;;IAGF;MACE,aAAa;IACf;;IAEA;MACE;;wCAEkC;MAClC,0BAA0B;IAoC5B;;MAlCE;QACE;;;yEAGiE;QACjE,uBAAuB;MACzB;;MAEA;QACE,0BAA0B;QAC1B,iIAA+C;QAC/C,qBAAqB;MACvB;;MAEA;QACE,eAAe;MAkBjB;;QAhBE;UACE,oBAAoB;UACpB,WAAW;;UAEX,kBAAkB;UAClB,UAAU;UACV,QAAQ;;UAER;;;;;;WAMC;QACH;AAIR;;AAEA;MAGM;QACE,gBAAgB;QAChB,6BAA6B;MAC/B;MAIA;;QAEE,kBAAkB;QAClB,UAAU;QACV,QAAQ;MACV;QAGE;UACE,cAAc;QAChB;AAIR",sourcesContent:['/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .cardWrapper.selected {\n &::before {\n content: "";\n\n position: absolute;\n z-index: 5;\n top: -4px;\n inset-inline-start: -4px;\n\n border-top: 1rem solid theme(colors.accent.500);\n border-bottom: 1rem solid transparent;\n border-inline-start: 1rem solid theme(colors.accent.500);\n border-inline-end: 1rem solid transparent;\n border-start-start-radius: var(--rounding-cap);\n }\n\n &::after {\n content: "✓";\n\n position: absolute;\n z-index: 5;\n top: -4px;\n inset-inline-start: -4px;\n\n padding: 4px;\n\n line-height: 1;\n color: theme(colors.white);\n }\n }\n\n .card {\n background-color: var(--fabric-bg);\n box-shadow: 0 0 0 1px theme(borderColor.muted);\n\n & > * {\n background-color: transparent;\n }\n\n & .cardCover {\n &.inheritScheme:has([data-colorset="dark"]) > .cardCoverContent,\n &.dark > .cardCoverContent {\n color: var(--white);\n text-shadow: 0 0 2px var(--black);\n background-image: linear-gradient(to bottom, #0000 0, #0006 100%);\n }\n\n &.inheritScheme:has([data-colorset="light"]) > .cardCoverContent,\n &.light > .cardCoverContent {\n color: var(--black);\n text-shadow: 0 0 2px var(--white);\n background-image: linear-gradient(to bottom, #fff0 0, #fff6 100%);\n }\n }\n\n & .cardBody {\n padding: 1rem;\n }\n\n &.clickable {\n box-shadow:\n 0 0 0 1px theme(borderColor.dimmed),\n 0 1px 2px 0 var(--fabric-shadow);\n transition: box-shadow 0ms;\n\n &:has(.cardBody:hover):not(:has([data-inner-clickable="true"]:hover)) {\n box-shadow:\n 0 0 0 1px theme(borderColor.dimmed),\n 0 1px 4px 0 var(--fabric-shadow),\n 0 8px 16px 0 color-mix(in lab, var(--fabric-shadow) 35%, #0000);\n transition-delay: 150ms;\n }\n\n &:has(.cardBody:active):not(:has([data-inner-clickable="true"]:hover)) {\n transform: translateY(1px);\n box-shadow: 0 0 0 1px theme(borderColor.dimmed);\n transition-delay: 0ms;\n }\n\n & .cardBody {\n cursor: pointer;\n\n &::after {\n pointer-events: none;\n content: "";\n\n position: absolute;\n z-index: 5;\n inset: 0;\n\n background-image: linear-gradient(\n 175deg,\n rgb(255 255 255 / 5%) 0%,\n transparent 18%,\n transparent 72%,\n rgb(0 0 0 / 5%) 100%\n );\n }\n }\n }\n }\n}\n\n@layer util {\n .card {\n & .cardBody {\n & > * {\n grid-area: unset;\n background-color: transparent;\n }\n }\n\n & .cardCover {\n & > [data-ref="image"],\n & > [data-ref="video"] {\n position: absolute;\n z-index: 0;\n inset: 0;\n }\n\n & .cardCoverContent {\n & > * {\n flex: 0 0 auto;\n }\n }\n }\n }\n}\n'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={cardWrapper:"IUcqmHjDniNCA9ugwaJr",selected:"Unw02_Z7NJZcJKoDdHML",card:"n3Y1COH2zF3brYb1IKg1",cardCover:"fbz2sEZpx6k0esC7eQeA",inheritScheme:"BJ4rpzKLuR3cHJbMPf8Y",cardCoverContent:"PrbU7qdEW4BPvYBaFe_w",dark:"E8jGrGiyKjzNpp4nJi61",light:"YyY1jHpwcBG7dEwd_aGI",cardBody:"BtXyDzHfZ9NOHfm2oA21",clickable:"sYUJd86FDRWmK7fyAWEk"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/components/chip/Chip.module.css":(module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .e8Ntd3E2x84wOs3f0SWw {\n --blank-gradient: linear-gradient(to bottom, #00000005 0%, #0000 10%);\n\n color: color(from var(--tint) srgb r g b / 1);\n background-image: var(--blank-gradient);\n outline: 1px solid color-mix(in lab, currentcolor 20%, var(--fabric-bg));\n outline-offset: -1px;\n }\n\n .e8Ntd3E2x84wOs3f0SWw > .wTjetcaWNtxsWbBajWqA {\n padding: 0 0.5em;\n }\n :is(.e8Ntd3E2x84wOs3f0SWw > .mezeA4fOOcGgWcAyF9gM) + .wTjetcaWNtxsWbBajWqA {\n margin-inline-start: -0.5em;\n }\n\n .e8Ntd3E2x84wOs3f0SWw > .SEaeLlDxnfbNkEXuvgPv {\n /* mayble add styles later */\n }\n\n .e8Ntd3E2x84wOs3f0SWw.I4LzMmf7NAOFweh98NVL {\n cursor: pointer;\n background-image: var(--click-gradient);\n }\n\n .e8Ntd3E2x84wOs3f0SWw.I4LzMmf7NAOFweh98NVL.NEEGM3fjGRcqMtWP1jur {\n pointer-events: none;\n opacity: 0.5;\n }\n}\n\n@layer var {\n .e8Ntd3E2x84wOs3f0SWw {\n height: unset;\n padding: unset;\n background-color: color-mix(in lab, currentcolor 10%, var(--fabric-bg));\n }\n\n .e8Ntd3E2x84wOs3f0SWw[data-variant="outline"] {\n outline-color: color-mix(in lab, currentcolor 50%, var(--fabric-bg));\n box-shadow: 0 0 2px color-mix(in lab, currentcolor 50%, var(--tint)) inset;\n }\n\n .e8Ntd3E2x84wOs3f0SWw > * {\n color: color-mix(in lab, currentcolor 50%, var(--fabric-text));\n }\n .e8Ntd3E2x84wOs3f0SWw.I4LzMmf7NAOFweh98NVL:hover {\n background-color: color-mix(in lab, currentcolor 20%, var(--fabric-bg));\n }\n\n .e8Ntd3E2x84wOs3f0SWw.I4LzMmf7NAOFweh98NVL:active,\n .e8Ntd3E2x84wOs3f0SWw.I4LzMmf7NAOFweh98NVL[data-dropdown-open="true"] {\n background-color: color-mix(in lab, currentcolor 15%, var(--fabric-bg));\n background-image: var(--active-gradient);\n }\n\n .e8Ntd3E2x84wOs3f0SWw.I4LzMmf7NAOFweh98NVL[data-dropdown-open="true"] {\n pointer-events: none;\n }\n\n .e8Ntd3E2x84wOs3f0SWw[data-variant="solid"] {\n background-color: color-mix(in lab, currentcolor 35%, var(--fabric-bg));\n outline-color: color-mix(in lab, currentcolor 50%, var(--fabric-bg));\n }\n\n .e8Ntd3E2x84wOs3f0SWw[data-variant="solid"] > * {\n color: color-mix(in lab, currentcolor 5%, var(--fabric-text));\n }\n .e8Ntd3E2x84wOs3f0SWw.I4LzMmf7NAOFweh98NVL[data-variant="solid"]:hover {\n background-color: color-mix(\n in lab,\n currentcolor 45%,\n var(--fabric-bg)\n );\n }\n\n .e8Ntd3E2x84wOs3f0SWw.I4LzMmf7NAOFweh98NVL[data-variant="solid"]:active,\n .e8Ntd3E2x84wOs3f0SWw.I4LzMmf7NAOFweh98NVL[data-variant="solid"][data-dropdown-open="true"] {\n background-color: color-mix(\n in lab,\n currentcolor 30%,\n var(--fabric-bg)\n );\n }\n}\n',"",{version:3,sources:["webpack://./packages/core/src/components/chip/Chip.module.css"],names:[],mappings:"AAAA;;;;;;;;;;;;;;;;;;;;;EAqBE;;AAEF;EACE;IACE,qEAAqE;;IAErE,6CAA6B;IAC7B,uCAAuC;IACvC,wEAAwE;IACxE,oBAAoB;EAyBtB;;IAvBE;MACE,gBAAgB;IAClB;MAGE;QACE,2BAA2B;MAC7B;;IAGF;MACE,4BAA4B;IAC9B;;IAEA;MACE,eAAe;MACf,uCAAuC;IAMzC;;MAJE;QACE,oBAAoB;QACpB,YAAY;MACd;AAGN;;AAEA;EACE;IACE,aAAa;IACb,cAAc;IACd,uEAAuE;EAsDzE;;IApDE;MACE,oEAAoE;MACpE,0EAA0E;IAC5E;;IAEA;MACE,8DAA8D;IAChE;MAGE;QACE,uEAAuE;MACzE;;MAEA;;QAEE,uEAAuE;QACvE,wCAAwC;MAC1C;;MAEA;QACE,oBAAoB;MACtB;;IAGF;MACE,uEAAuE;MACvE,oEAAoE;IAwBtE;;MAtBE;QACE,6DAA6D;MAC/D;QAGE;UACE;;;;WAIC;QACH;;QAEA;;UAEE;;;;WAIC;QACH;AAIR",sourcesContent:['/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .chip {\n --blank-gradient: linear-gradient(to bottom, #00000005 0%, #0000 10%);\n\n color: theme(colors.tint.500);\n background-image: var(--blank-gradient);\n outline: 1px solid color-mix(in lab, currentcolor 20%, var(--fabric-bg));\n outline-offset: -1px;\n\n & > .chipLabel {\n padding: 0 0.5em;\n }\n\n & > .chipIcon {\n & + .chipLabel {\n margin-inline-start: -0.5em;\n }\n }\n\n & > .chipRemove {\n /* mayble add styles later */\n }\n\n &.clickable {\n cursor: pointer;\n background-image: var(--click-gradient);\n\n &.disabled {\n pointer-events: none;\n opacity: 0.5;\n }\n }\n }\n}\n\n@layer var {\n .chip {\n height: unset;\n padding: unset;\n background-color: color-mix(in lab, currentcolor 10%, var(--fabric-bg));\n\n &[data-variant="outline"] {\n outline-color: color-mix(in lab, currentcolor 50%, var(--fabric-bg));\n box-shadow: 0 0 2px color-mix(in lab, currentcolor 50%, var(--tint)) inset;\n }\n\n > * {\n color: color-mix(in lab, currentcolor 50%, var(--fabric-text));\n }\n\n &.clickable {\n &:hover {\n background-color: color-mix(in lab, currentcolor 20%, var(--fabric-bg));\n }\n\n &:active,\n &[data-dropdown-open="true"] {\n background-color: color-mix(in lab, currentcolor 15%, var(--fabric-bg));\n background-image: var(--active-gradient);\n }\n\n &[data-dropdown-open="true"] {\n pointer-events: none;\n }\n }\n\n &[data-variant="solid"] {\n background-color: color-mix(in lab, currentcolor 35%, var(--fabric-bg));\n outline-color: color-mix(in lab, currentcolor 50%, var(--fabric-bg));\n\n & > * {\n color: color-mix(in lab, currentcolor 5%, var(--fabric-text));\n }\n\n &.clickable {\n &:hover {\n background-color: color-mix(\n in lab,\n currentcolor 45%,\n var(--fabric-bg)\n );\n }\n\n &:active,\n &[data-dropdown-open="true"] {\n background-color: color-mix(\n in lab,\n currentcolor 30%,\n var(--fabric-bg)\n );\n }\n }\n }\n }\n}\n'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={chip:"e8Ntd3E2x84wOs3f0SWw",chipLabel:"wTjetcaWNtxsWbBajWqA",chipIcon:"mezeA4fOOcGgWcAyF9gM",chipRemove:"SEaeLlDxnfbNkEXuvgPv",clickable:"I4LzMmf7NAOFweh98NVL",disabled:"NEEGM3fjGRcqMtWP1jur"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/components/collapsable/Collapsable.module.css":(module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .TmWn41rdVekwbHaYyhda + .TmWn41rdVekwbHaYyhda {\n border-top: 1px solid color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 65%, color(from var(--tint) srgb r g b / 1));\n }\n}\n',"",{version:3,sources:["webpack://./packages/core/src/components/collapsable/Collapsable.module.css"],names:[],mappings:"AAAA;;;;;;;;;;;;;;;;;;;;;EAqBE;;AAEF;IAEI;MACE,iIAA6C;IAC/C;AAEJ",sourcesContent:['/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .collapsable {\n & + & {\n border-top: 1px solid theme(borderColor.base);\n }\n }\n}\n'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={collapsable:"TmWn41rdVekwbHaYyhda"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/components/divider/Divider.module.css":(module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .eKCoqeokYBcDrPbyXbRy {\n margin-inline: 0.25rem;\n }\n\n .RnqHewkPwUCyc6Z0L5Gd {\n margin-block: 0.25rem;\n }\n}\n',"",{version:3,sources:["webpack://./packages/core/src/components/divider/Divider.module.css"],names:[],mappings:"AAAA;;;;;;;;;;;;;;;;;;;;;EAqBE;;AAEF;EACE;IACE,sBAAsB;EACxB;;EAEA;IACE,qBAAqB;EACvB;AACF",sourcesContent:['/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .vertical {\n margin-inline: 0.25rem;\n }\n\n .horizontal {\n margin-block: 0.25rem;\n }\n}\n'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={vertical:"eKCoqeokYBcDrPbyXbRy",horizontal:"RnqHewkPwUCyc6Z0L5Gd"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/components/dropdown/Dropdown.module.css":(module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer var {\n .MbkRpTla1nZTTdG5zuSA {\n grid-template: 1fr /1fr;\n }\n\n .MbkRpTla1nZTTdG5zuSA [data-ref="card"],\n .MbkRpTla1nZTTdG5zuSA [data-ref="panel"],\n .MbkRpTla1nZTTdG5zuSA [data-ref="panelGroup"] {\n grid-area: unset;\n\n border-top: 0;\n border-inline: 0;\n outline: 0;\n box-shadow: none;\n }\n}\n',"",{version:3,sources:["webpack://./packages/core/src/components/dropdown/Dropdown.module.css"],names:[],mappings:"AAAA;;;;;;;;;;;;;;;;;;;;;EAqBE;;AAEF;EACE;IACE,uBAAuB;EAYzB;;IAVE;;;MAGE,gBAAgB;;MAEhB,aAAa;MACb,gBAAgB;MAChB,UAAU;MACV,gBAAgB;IAClB;AAEJ",sourcesContent:['/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer var {\n .dropdownBody {\n grid-template: 1fr /1fr;\n\n & [data-ref="card"],\n & [data-ref="panel"],\n & [data-ref="panelGroup"] {\n grid-area: unset;\n\n border-top: 0;\n border-inline: 0;\n outline: 0;\n box-shadow: none;\n }\n }\n}\n'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={dropdownBody:"MbkRpTla1nZTTdG5zuSA"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/components/icon/Icon.module.css":(module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .dyXAlDHOeSEnZp_wUsCK {\n position: relative;\n width: 1em;\n height: 1em;\n vertical-align: -0.125em;\n }\n\n .dyXAlDHOeSEnZp_wUsCK > i,\n .dyXAlDHOeSEnZp_wUsCK > svg,\n .dyXAlDHOeSEnZp_wUsCK > img {\n pointer-events: none;\n\n overflow: hidden;\n display: block;\n\n width: 1em;\n height: 1em;\n\n line-height: 1;\n\n -o-object-fit: cover;\n\n object-fit: cover;\n border-radius: inherit;\n\n fill: currentcolor;\n }\n\n .dyXAlDHOeSEnZp_wUsCK > i::before {\n line-height: 1;\n }\n\n .dyXAlDHOeSEnZp_wUsCK[data-clickable="true"] {\n opacity: 0.75;\n }\n\n .dyXAlDHOeSEnZp_wUsCK[data-clickable="true"]:hover {\n opacity: 0.9;\n background-color: color(from var(--fabric-text) srgb r g b / 10%);\n }\n\n .dyXAlDHOeSEnZp_wUsCK[data-clickable="true"]:active {\n opacity: 0.5;\n }\n\n [dir="rtl"] .dyXAlDHOeSEnZp_wUsCK[data-flip="true"] {\n transform: scaleX(-1);\n }\n}\n',"",{version:3,sources:["webpack://./packages/core/src/components/icon/Icon.module.css"],names:[],mappings:"AAAA;;;;;;;;;;;;;;;;;;;;;EAqBE;;AAEF;EACE;IACE,kBAAkB;IAClB,UAAU;IACV,WAAW;IACX,wBAAwB;EAqC1B;;IAnCE;;;MAGE,oBAAoB;;MAEpB,gBAAgB;MAChB,cAAc;;MAEd,UAAU;MACV,WAAW;;MAEX,cAAc;;MAEd,oBAAiB;;SAAjB,iBAAiB;MACjB,sBAAsB;;MAEtB,kBAAkB;IACpB;;IAEA;MACE,cAAc;IAChB;;IAEA;MACE,aAAa;IAUf;;MARE;QACE,YAAY;QACZ,iEAAwC;MAC1C;;MAEA;QACE,YAAY;MACd;;EAIJ;IACE,qBAAqB;EACvB;AACF",sourcesContent:['/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .icon {\n position: relative;\n width: 1em;\n height: 1em;\n vertical-align: -0.125em;\n\n & > i,\n & > svg,\n & > img {\n pointer-events: none;\n\n overflow: hidden;\n display: block;\n\n width: 1em;\n height: 1em;\n\n line-height: 1;\n\n object-fit: cover;\n border-radius: inherit;\n\n fill: currentcolor;\n }\n\n & > i::before {\n line-height: 1;\n }\n\n &[data-clickable="true"] {\n opacity: 0.75;\n\n &:hover {\n opacity: 0.9;\n background-color: theme(colors.text/10%);\n }\n\n &:active {\n opacity: 0.5;\n }\n }\n }\n\n [dir="rtl"] .icon[data-flip="true"] {\n transform: scaleX(-1);\n }\n}\n'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={icon:"dyXAlDHOeSEnZp_wUsCK"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/components/media/Media.module.css":(module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .HHwc9ElqPz6TOZFJ5LGR.IIKpIoFANwtSBVTdwKrW::after,\n .HHwc9ElqPz6TOZFJ5LGR.IIKpIoFANwtSBVTdwKrW::before {\n content: "";\n\n position: absolute;\n inset-inline: 0;\n\n height: 0.5rem;\n\n background-image: linear-gradient(\n to right,\n #222c 0,\n #222c 0.25rem,\n #fff8 0.25rem,\n #fff8 0.75rem,\n #222c 0.75rem,\n #222c 1rem\n );\n background-repeat: repeat-x;\n background-position: center center;\n background-size: 1rem;\n border: 0.125rem solid #222c;\n }\n\n .HHwc9ElqPz6TOZFJ5LGR.IIKpIoFANwtSBVTdwKrW::before {\n top: 0;\n }\n\n .HHwc9ElqPz6TOZFJ5LGR.IIKpIoFANwtSBVTdwKrW::after {\n bottom: 0;\n }\n\n .HHwc9ElqPz6TOZFJ5LGR .TgZ8ShMHRBEN_NoC5SiV {\n /* might add styles later */\n }\n .HHwc9ElqPz6TOZFJ5LGR .EA0thdiSfJoHrIGbxGi0 [data-ref="button"] {\n margin: 0;\n }\n\n .HHwc9ElqPz6TOZFJ5LGR .EA0thdiSfJoHrIGbxGi0 [data-ref="button"] > :first-child {\n color: #fff;\n background-color: rgb(25 26 27 / 50%);\n }\n\n .HHwc9ElqPz6TOZFJ5LGR .EA0thdiSfJoHrIGbxGi0 [data-ref="button"] > :first-child:hover {\n color: color-mix(in lab, color(from var(--primary) srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n background-color: rgb(25 26 27 / 80%);\n }\n\n .HHwc9ElqPz6TOZFJ5LGR .EA0thdiSfJoHrIGbxGi0 .sN0R8NjajemnuB19FsVg > :first-child {\n background-color: rgb(25 26 27 / 70%);\n }\n\n .HHwc9ElqPz6TOZFJ5LGR .EA0thdiSfJoHrIGbxGi0 .VUI5Xma9EwtGxfjD4dm0 {\n /* might add styles later */\n }\n\n :is(.HHwc9ElqPz6TOZFJ5LGR .EA0thdiSfJoHrIGbxGi0) .sN0R8NjajemnuB19FsVg + .sN0R8NjajemnuB19FsVg {\n margin-top: 8px;\n }\n\n .irqHppriMhoe_lY96ySx {\n /* might add styles later */\n }\n}\n\n@layer util {\n :scope .EA0thdiSfJoHrIGbxGi0:hover .VUI5Xma9EwtGxfjD4dm0 {\n display: none;\n }\n :scope .EA0thdiSfJoHrIGbxGi0:not(:hover) .sN0R8NjajemnuB19FsVg {\n display: none;\n }\n}\n',"",{version:3,sources:["webpack://./packages/core/src/components/media/Media.module.css"],names:[],mappings:"AAAA;;;;;;;;;;;;;;;;;;;;;EAqBE;;AAEF;MAGM;;QAEE,WAAW;;QAEX,kBAAkB;QAClB,eAAe;;QAEf,cAAc;;QAEd;;;;;;;;SAQC;QACD,2BAA2B;QAC3B,kCAAkC;QAClC,qBAAqB;QACrB,4BAA4B;MAC9B;;MAEA;QACE,MAAM;MACR;;MAEA;QACE,SAAS;MACX;;IAGF;MACE,2BAA2B;IAC7B;MAGE;QACE,SAAS;MAWX;;QATE;UACE,WAAW;UACX,qCAAyC;QAM3C;;UAJE;YACE,uHAAgC;YAChC,qCAAyC;UAC3C;;MAIJ;QACE,qCAAyC;MAC3C;;MAEA;QACE,2BAA2B;MAC7B;;MAEA;QACE,eAAe;MACjB;;EAIJ;IACE,2BAA2B;EAC7B;AACF;;AAEA;MAGM;QACE,aAAa;MACf;MAIA;QACE,aAAa;MACf;AAGN",sourcesContent:['/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .mediaContainer {\n &.mediaReel {\n &::after,\n &::before {\n content: "";\n\n position: absolute;\n inset-inline: 0;\n\n height: 0.5rem;\n\n background-image: linear-gradient(\n to right,\n #222c 0,\n #222c 0.25rem,\n #fff8 0.25rem,\n #fff8 0.75rem,\n #222c 0.75rem,\n #222c 1rem\n );\n background-repeat: repeat-x;\n background-position: center center;\n background-size: 1rem;\n border: 0.125rem solid #222c;\n }\n\n &::before {\n top: 0;\n }\n\n &::after {\n bottom: 0;\n }\n }\n\n & .mediaPlaceholder {\n /* might add styles later */\n }\n\n & .mediaControls {\n & [data-ref="button"] {\n margin: 0;\n\n & > :first-child {\n color: #fff;\n background-color: theme(colors.black/50%);\n\n &:hover {\n color: theme(colors.primary.600);\n background-color: theme(colors.black/80%);\n }\n }\n }\n\n & .mediaControlAction > :first-child {\n background-color: theme(colors.black/70%);\n }\n\n & .mediaControlPlaceholder {\n /* might add styles later */\n }\n\n & .mediaControlAction + .mediaControlAction {\n margin-top: 8px;\n }\n }\n }\n\n .media {\n /* might add styles later */\n }\n}\n\n@layer util {\n & .mediaControls {\n &:hover {\n & .mediaControlPlaceholder {\n display: none;\n }\n }\n\n &:not(:hover) {\n & .mediaControlAction {\n display: none;\n }\n }\n }\n}\n'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={mediaContainer:"HHwc9ElqPz6TOZFJ5LGR",mediaReel:"IIKpIoFANwtSBVTdwKrW",mediaPlaceholder:"TgZ8ShMHRBEN_NoC5SiV",mediaControls:"EA0thdiSfJoHrIGbxGi0",mediaControlAction:"sN0R8NjajemnuB19FsVg",mediaControlPlaceholder:"VUI5Xma9EwtGxfjD4dm0",media:"irqHppriMhoe_lY96ySx"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/components/menu/Menu.module.css":(module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .P2n3yXn3aQeAej5VYU0Z {\n --color: var(--primary);\n }\n\n .P2n3yXn3aQeAej5VYU0Z[data-color="accent"] {\n --color: var(--accent);\n }\n\n .P2n3yXn3aQeAej5VYU0Z[data-color="info"] {\n --color: #00bfff;\n }\n\n .P2n3yXn3aQeAej5VYU0Z[data-color="danger"] {\n --color: #f24c3d;\n }\n\n .P2n3yXn3aQeAej5VYU0Z[data-color="success"] {\n --color: #44bc69;\n }\n\n .P2n3yXn3aQeAej5VYU0Z[data-color="warning"] {\n --color: #edaa00;\n }\n}\n\n@layer var {\n .P2n3yXn3aQeAej5VYU0Z {\n color: color-mix(in lab, var(--color) 80%, var(--fabric-text));\n }\n\n .P2n3yXn3aQeAej5VYU0Z > * {\n pointer-events: none;\n }\n\n .P2n3yXn3aQeAej5VYU0Z[data-focus="true"] {\n background-color: color(from var(--color) srgb r g b / 15%);\n }\n\n .P2n3yXn3aQeAej5VYU0Z:active {\n background-color: color(from var(--color) srgb r g b / 35%);\n }\n\n .P2n3yXn3aQeAej5VYU0Z[data-open="true"] {\n background-color: color(from var(--color) srgb r g b / 10%);\n }\n\n .P2n3yXn3aQeAej5VYU0Z.wDPOmnGBR2ysaL9f2HVI,\n .P2n3yXn3aQeAej5VYU0Z.active {\n pointer-events: none;\n background-color: color(from var(--color) srgb r g b / 20%);\n }\n\n .P2n3yXn3aQeAej5VYU0Z.wDPOmnGBR2ysaL9f2HVI > div, .P2n3yXn3aQeAej5VYU0Z.active > div {\n box-shadow: 4px 0 0 var(--color) inset;\n }\n\n [dir="rtl"] :is(.P2n3yXn3aQeAej5VYU0Z.wDPOmnGBR2ysaL9f2HVI > div), [dir="rtl"] :is(.P2n3yXn3aQeAej5VYU0Z.active > div) {\n box-shadow: -4px 0 0 var(--color) inset;\n }\n\n .P2n3yXn3aQeAej5VYU0Z.Gai5quIvKoDCEcZebGtR {\n pointer-events: none;\n color: color(from var(--tint) srgb r g b / 1);\n opacity: 0.5;\n }\n\n .P2n3yXn3aQeAej5VYU0Z.Gai5quIvKoDCEcZebGtR > label ~ * {\n display: none;\n }\n\n .aNQ8r0dca6frXsxdBEQX {\n padding: 0.3em;\n font-size: 1.25em;\n }\n\n .aNQ8r0dca6frXsxdBEQX.NyL9eqbBpHAKUkmadj7R {\n padding: 0.375em;\n font-size: 1.5em;\n font-weight: 500;\n }\n\n .menu-list.hide-icons .aNQ8r0dca6frXsxdBEQX {\n width: 0.125em;\n }\n}\n',"",{version:3,sources:["webpack://./packages/core/src/components/menu/Menu.module.css"],names:[],mappings:"AAAA;;;;;;;;;;;;;;;;;;;;;EAqBE;;AAEF;EACE;IACE,uBAAsC;EAqBxC;;IAnBE;MACE,sBAAqC;IACvC;;IAEA;MACE,gBAAmC;IACrC;;IAEA;MACE,gBAAqC;IACvC;;IAEA;MACE,gBAAsC;IACxC;;IAEA;MACE,gBAAsC;IACxC;AAEJ;;AAEA;EACE;IACE,8DAA8D;EAyChE;;IAvCE;MACE,oBAAoB;IACtB;;IAEA;MACE,2DAA2D;IAC7D;;IAEA;MACE,2DAA2D;IAC7D;;IAEA;MACE,2DAA2D;IAC7D;;IAEA;;MAEE,oBAAoB;MACpB,2DAA2D;IAS7D;;MAPE;QACE,sCAAsC;MAKxC;;QAHE;UACE,uCAAuC;QACzC;;IAIJ;MACE,oBAAoB;MACpB,6CAAgC;MAChC,YAAY;IAKd;;MAHE;QACE,aAAa;MACf;;EAIJ;IACE,cAAc;IACd,iBAAiB;EAOnB;;IALE;MACE,gBAAgB;MAChB,gBAAgB;MAChB,gBAAgB;IAClB;;EAGF;IACE,cAAc;EAChB;AACF",sourcesContent:['/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .menuItem {\n --color: theme(colors.primary.DEFAULT);\n\n &[data-color="accent"] {\n --color: theme(colors.accent.DEFAULT);\n }\n\n &[data-color="info"] {\n --color: theme(colors.info.DEFAULT);\n }\n\n &[data-color="danger"] {\n --color: theme(colors.danger.DEFAULT);\n }\n\n &[data-color="success"] {\n --color: theme(colors.success.DEFAULT);\n }\n\n &[data-color="warning"] {\n --color: theme(colors.warning.DEFAULT);\n }\n }\n}\n\n@layer var {\n .menuItem {\n color: color-mix(in lab, var(--color) 80%, var(--fabric-text));\n\n > * {\n pointer-events: none;\n }\n\n &[data-focus="true"] {\n background-color: color(from var(--color) srgb r g b / 15%);\n }\n\n &:active {\n background-color: color(from var(--color) srgb r g b / 35%);\n }\n\n &[data-open="true"] {\n background-color: color(from var(--color) srgb r g b / 10%);\n }\n\n &.active,\n &:global(.active) {\n pointer-events: none;\n background-color: color(from var(--color) srgb r g b / 20%);\n\n & > div {\n box-shadow: 4px 0 0 var(--color) inset;\n\n :global([dir="rtl"]) & {\n box-shadow: -4px 0 0 var(--color) inset;\n }\n }\n }\n\n &.disabled {\n pointer-events: none;\n color: theme(textColor.tint.500);\n opacity: 0.5;\n\n & > label ~ * {\n display: none;\n }\n }\n }\n\n .menuIcon {\n padding: 0.3em;\n font-size: 1.25em;\n\n &.minimal {\n padding: 0.375em;\n font-size: 1.5em;\n font-weight: 500;\n }\n }\n\n :global(.menu-list.hide-icons) .menuIcon {\n width: 0.125em;\n }\n}\n'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={menuItem:"P2n3yXn3aQeAej5VYU0Z",active:"wDPOmnGBR2ysaL9f2HVI",disabled:"Gai5quIvKoDCEcZebGtR",menuIcon:"aNQ8r0dca6frXsxdBEQX",minimal:"NyL9eqbBpHAKUkmadj7R"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/components/meter/Meter.module.css":(module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .A4QiFVAvmszULlfby45S .NpH_Sf9s_4j_Mt9Wkqvq {\n flex: 1 1 1rem;\n\n min-width: 1rem;\n max-width: 12rem;\n height: 0.5em;\n\n line-height: 1;\n }\n\n .A4QiFVAvmszULlfby45S .NpH_Sf9s_4j_Mt9Wkqvq::after {\n width: var(--width);\n }\n\n .A4QiFVAvmszULlfby45S > label {\n font-size: max(0.75rem, 0.5em);\n line-height: 1;\n }\n .A4QiFVAvmszULlfby45S .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(1)::after, .A4QiFVAvmszULlfby45S .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(2)::after, .A4QiFVAvmszULlfby45S .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(3)::after, .A4QiFVAvmszULlfby45S .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(4)::after, .A4QiFVAvmszULlfby45S .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(5)::after, .A4QiFVAvmszULlfby45S .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(6)::after {\n opacity: 0.85;\n background-color: currentColor;\n }\n\n .A4QiFVAvmszULlfby45S .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(1) {\n color: #eb5e28;\n }\n\n .A4QiFVAvmszULlfby45S .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(2) {\n color: #f9a03f;\n }\n\n .A4QiFVAvmszULlfby45S .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(3) {\n color: #f3c053;\n }\n\n .A4QiFVAvmszULlfby45S .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(4) {\n color: #a1c349;\n }\n\n .A4QiFVAvmszULlfby45S .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(5) {\n color: #87a330;\n }\n\n .A4QiFVAvmszULlfby45S .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(6) {\n color: #6a8532;\n }\n\n .A4QiFVAvmszULlfby45S[class*="text-primary"] .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"],\n .A4QiFVAvmszULlfby45S[class*="text-accent"] .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"],\n .A4QiFVAvmszULlfby45S[class*="text-info"] .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"],\n .A4QiFVAvmszULlfby45S[class*="text-danger"] .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"],\n .A4QiFVAvmszULlfby45S[class*="text-success"] .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"],\n .A4QiFVAvmszULlfby45S[class*="text-warning"] .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"] {\n color: currentColor;\n }\n\n .A4QiFVAvmszULlfby45S[class*="text-primary"] .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(1)::after, .A4QiFVAvmszULlfby45S[class*="text-accent"] .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(1)::after, .A4QiFVAvmszULlfby45S[class*="text-info"] .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(1)::after, .A4QiFVAvmszULlfby45S[class*="text-danger"] .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(1)::after, .A4QiFVAvmszULlfby45S[class*="text-success"] .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(1)::after, .A4QiFVAvmszULlfby45S[class*="text-warning"] .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(1)::after {\n opacity: 0.2;\n }\n\n .A4QiFVAvmszULlfby45S[class*="text-primary"] .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(2)::after, .A4QiFVAvmszULlfby45S[class*="text-accent"] .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(2)::after, .A4QiFVAvmszULlfby45S[class*="text-info"] .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(2)::after, .A4QiFVAvmszULlfby45S[class*="text-danger"] .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(2)::after, .A4QiFVAvmszULlfby45S[class*="text-success"] .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(2)::after, .A4QiFVAvmszULlfby45S[class*="text-warning"] .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(2)::after {\n opacity: 0.35;\n }\n\n .A4QiFVAvmszULlfby45S[class*="text-primary"] .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(3)::after, .A4QiFVAvmszULlfby45S[class*="text-accent"] .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(3)::after, .A4QiFVAvmszULlfby45S[class*="text-info"] .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(3)::after, .A4QiFVAvmszULlfby45S[class*="text-danger"] .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(3)::after, .A4QiFVAvmszULlfby45S[class*="text-success"] .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(3)::after, .A4QiFVAvmszULlfby45S[class*="text-warning"] .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(3)::after {\n opacity: 0.5;\n }\n\n .A4QiFVAvmszULlfby45S[class*="text-primary"] .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(4)::after, .A4QiFVAvmszULlfby45S[class*="text-accent"] .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(4)::after, .A4QiFVAvmszULlfby45S[class*="text-info"] .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(4)::after, .A4QiFVAvmszULlfby45S[class*="text-danger"] .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(4)::after, .A4QiFVAvmszULlfby45S[class*="text-success"] .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(4)::after, .A4QiFVAvmszULlfby45S[class*="text-warning"] .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(4)::after {\n opacity: 0.65;\n }\n\n .A4QiFVAvmszULlfby45S[class*="text-primary"] .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(5)::after, .A4QiFVAvmszULlfby45S[class*="text-accent"] .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(5)::after, .A4QiFVAvmszULlfby45S[class*="text-info"] .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(5)::after, .A4QiFVAvmszULlfby45S[class*="text-danger"] .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(5)::after, .A4QiFVAvmszULlfby45S[class*="text-success"] .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(5)::after, .A4QiFVAvmszULlfby45S[class*="text-warning"] .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(5)::after {\n opacity: 0.8;\n }\n\n .A4QiFVAvmszULlfby45S[class*="text-primary"] .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(6)::after, .A4QiFVAvmszULlfby45S[class*="text-accent"] .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(6)::after, .A4QiFVAvmszULlfby45S[class*="text-info"] .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(6)::after, .A4QiFVAvmszULlfby45S[class*="text-danger"] .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(6)::after, .A4QiFVAvmszULlfby45S[class*="text-success"] .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(6)::after, .A4QiFVAvmszULlfby45S[class*="text-warning"] .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(6)::after {\n opacity: 0.95;\n }\n}\n',"",{version:3,sources:["webpack://./packages/core/src/components/meter/Meter.module.css"],names:[],mappings:"AAAA;;;;;;;;;;;;;;;;;;;;;EAqBE;;AAEF;IAEI;MACE,cAAc;;MAEd,eAAe;MACf,gBAAgB;MAChB,aAAa;;MAEb,cAAc;IAKhB;;MAHE;QACE,mBAAmB;MACrB;;IAGF;MACE,8BAA8B;MAC9B,cAAc;IAChB;QASI;UACE,aAAa;UACb,8BAA8B;QAChC;;MAGF;QACE,cAAc;MAChB;;MAEA;QACE,cAAc;MAChB;;MAEA;QACE,cAAc;MAChB;;MAEA;QACE,cAAc;MAChB;;MAEA;QACE,cAAc;MAChB;;MAEA;QACE,cAAc;MAChB;;IAGF;;;;;;MAME,mBAAmB;IAyBrB;;MAvBE;QACE,YAAY;MACd;;MAEA;QACE,aAAa;MACf;;MAEA;QACE,YAAY;MACd;;MAEA;QACE,aAAa;MACf;;MAEA;QACE,YAAY;MACd;;MAEA;QACE,aAAa;MACf;AAGN",sourcesContent:['/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .meter {\n & .meterBar {\n flex: 1 1 1rem;\n\n min-width: 1rem;\n max-width: 12rem;\n height: 0.5em;\n\n line-height: 1;\n\n &::after {\n width: var(--width);\n }\n }\n\n & > label {\n font-size: max(0.75rem, 0.5em);\n line-height: 1;\n }\n\n & .meterBar[data-active="true"] {\n &:nth-child(1),\n &:nth-child(2),\n &:nth-child(3),\n &:nth-child(4),\n &:nth-child(5),\n &:nth-child(6) {\n &::after {\n opacity: 0.85;\n background-color: currentColor;\n }\n }\n\n &:nth-child(1) {\n color: #eb5e28;\n }\n\n &:nth-child(2) {\n color: #f9a03f;\n }\n\n &:nth-child(3) {\n color: #f3c053;\n }\n\n &:nth-child(4) {\n color: #a1c349;\n }\n\n &:nth-child(5) {\n color: #87a330;\n }\n\n &:nth-child(6) {\n color: #6a8532;\n }\n }\n\n &[class*="text-primary"] .meterBar[data-active="true"],\n &[class*="text-accent"] .meterBar[data-active="true"],\n &[class*="text-info"] .meterBar[data-active="true"],\n &[class*="text-danger"] .meterBar[data-active="true"],\n &[class*="text-success"] .meterBar[data-active="true"],\n &[class*="text-warning"] .meterBar[data-active="true"] {\n color: currentColor;\n\n &:nth-child(1)::after {\n opacity: 0.2;\n }\n\n &:nth-child(2)::after {\n opacity: 0.35;\n }\n\n &:nth-child(3)::after {\n opacity: 0.5;\n }\n\n &:nth-child(4)::after {\n opacity: 0.65;\n }\n\n &:nth-child(5)::after {\n opacity: 0.8;\n }\n\n &:nth-child(6)::after {\n opacity: 0.95;\n }\n }\n }\n}\n'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={meter:"A4QiFVAvmszULlfby45S",meterBar:"NpH_Sf9s_4j_Mt9Wkqvq"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/components/panel/Panel.module.css":(module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .akpuXzNaM7z6bRfkG8OK {\n grid-template: "head" auto "content" 1fr / 1fr;\n background-color: color(from var(--fabric-bg) srgb r g b / 1);\n }\n\n .akpuXzNaM7z6bRfkG8OK > * {\n background-color: transparent;\n }\n\n .akpuXzNaM7z6bRfkG8OK.fixed {\n box-shadow: 0 0 18px var(--fabric-shadow);\n }\n\n .akpuXzNaM7z6bRfkG8OK .CFCvtz229_01ddq8M57p {\n background-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 90%, color(from var(--tint) srgb r g b / 1));\n }\n\n .akpuXzNaM7z6bRfkG8OK .QE80WeyiPuHRBvXO9LTN {\n padding: 0.25rem;\n }\n\n .akpuXzNaM7z6bRfkG8OK .ZQ13J_eD9_VKi5vGJTFT {\n grid-template: "head head head" auto ". loader ." auto "side-s content side-e" 1fr "foot foot foot" auto / auto 1fr auto;\n }\n}\n\n@layer util {\n .AXr4h6SyViJj9gmgr9KB > .akpuXzNaM7z6bRfkG8OK[data-collapsed="true"] {\n flex: 0 0 auto;\n }\n\n .AXr4h6SyViJj9gmgr9KB > .akpuXzNaM7z6bRfkG8OK[data-collapsed="false"] {\n flex: 1 1 auto;\n min-height: 15rem;\n }\n\n .AXr4h6SyViJj9gmgr9KB > .akpuXzNaM7z6bRfkG8OK[data-collapsed="false"] [data-ref="panelCollapse"] {\n pointer-events: none;\n color: var(--tint);\n opacity: 0.25;\n }\n\n .AXr4h6SyViJj9gmgr9KB > .akpuXzNaM7z6bRfkG8OK:not(:first-child) {\n border-start-start-radius: 0;\n border-start-end-radius: 0;\n }\n\n .AXr4h6SyViJj9gmgr9KB > .akpuXzNaM7z6bRfkG8OK:not(:last-child) {\n border-bottom: 1px solid color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 99%, color(from var(--tint) srgb r g b / 1));\n border-end-start-radius: 0;\n border-end-end-radius: 0;\n }\n\n [data-ref="asideBody"] > .AXr4h6SyViJj9gmgr9KB > .akpuXzNaM7z6bRfkG8OK {\n border-radius: 0;\n outline: 0;\n }\n}\n',"",{version:3,sources:["webpack://./packages/core/src/components/panel/Panel.module.css"],names:[],mappings:"AAAA;;;;;;;;;;;;;;;;;;;;;EAqBE;;AAEF;EACE;IACE,8CAA8C;IAC9C,6DAAkC;EAqBpC;;IAnBE;MACE,6BAA6B;IAC/B;;IAEA;MACE,yCAA+C;IACjD;;IAEA;MACE,6HAA+C;IACjD;;IAEA;MACE,gBAAgB;IAClB;;IAEA;MACE,wHAAwH;IAC1H;AAEJ;;AAEA;MAGM;QACE,cAAc;MAChB;;MAEA;QACE,cAAc;QACd,iBAAiB;MAOnB;;QALE;UACE,oBAAoB;UACpB,kBAAkB;UAClB,aAAa;QACf;;IAIJ;MACE,4BAA4B;MAC5B,0BAA0B;IAC5B;;IAEA;MACE,oIAAoD;MACpD,0BAA0B;MAC1B,wBAAwB;IAC1B;;EAGF;IACE,gBAAgB;IAChB,UAAU;EACZ;AACF",sourcesContent:['/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .panel {\n grid-template: "head" auto "content" 1fr / 1fr;\n background-color: theme(colors.bg);\n\n & > * {\n background-color: transparent;\n }\n\n &:global(.fixed) {\n box-shadow: 0 0 18px theme(boxShadowColor.base);\n }\n\n & .panelHeader {\n background-color: theme(backgroundColor.dimmed);\n }\n\n & .panelAction {\n padding: 0.25rem;\n }\n\n & .panelBody {\n grid-template: "head head head" auto ". loader ." auto "side-s content side-e" 1fr "foot foot foot" auto / auto 1fr auto;\n }\n }\n}\n\n@layer util {\n .panelGroup {\n & > .panel {\n &[data-collapsed="true"] {\n flex: 0 0 auto;\n }\n\n &[data-collapsed="false"] {\n flex: 1 1 auto;\n min-height: 15rem;\n\n [data-ref="panelCollapse"] {\n pointer-events: none;\n color: var(--tint);\n opacity: 0.25;\n }\n }\n }\n\n & > .panel:not(:first-child) {\n border-start-start-radius: 0;\n border-start-end-radius: 0;\n }\n\n & > .panel:not(:last-child) {\n border-bottom: 1px solid theme(backgroundColor.base);\n border-end-start-radius: 0;\n border-end-end-radius: 0;\n }\n }\n\n [data-ref="asideBody"] > .panelGroup > .panel {\n border-radius: 0;\n outline: 0;\n }\n}\n'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={panel:"akpuXzNaM7z6bRfkG8OK",panelHeader:"CFCvtz229_01ddq8M57p",panelAction:"QE80WeyiPuHRBvXO9LTN",panelBody:"ZQ13J_eD9_VKi5vGJTFT",panelGroup:"AXr4h6SyViJj9gmgr9KB"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/components/progress/Progress.module.css":(module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .Vez1yjdKodoa9F08vLmD {\n height: 1em;\n box-shadow: 0 0 4px 0 color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 72%, color(from var(--tint) srgb r g b / 1)) inset;\n }\n\n .Vez1yjdKodoa9F08vLmD > div:last-child {\n width: calc(var(--progress) * 1%);\n }\n\n .Vez1yjdKodoa9F08vLmD > div:last-child::after {\n content: attr(data-label);\n\n position: absolute;\n inset-block: 0;\n inset-inline-start: 0;\n\n width: calc((100 / var(--progress)) * 100%);\n padding: 0.75em;\n\n font-size: 0.5em;\n line-height: 0.5em;\n color: var(--white);\n text-align: center;\n vertical-align: middle;\n }\n\n .Vez1yjdKodoa9F08vLmD .VgtQ3ysHlp4xFiTEkTyF {\n width: calc(var(--progress) * 1%);\n transition: width 0.5s;\n }\n\n .Vez1yjdKodoa9F08vLmD > div:first-child {\n padding: 0.75em;\n font-size: 0.5em;\n line-height: 0.5em;\n }\n\n .KMyHvns5J_qBx_FTytUe {\n background-image: var(--progress-gradient);\n background-size: 1rem 1rem;\n }\n\n .KMyHvns5J_qBx_FTytUe {\n animation: progress 750ms linear infinite;\n }\n}\n',"",{version:3,sources:["webpack://./packages/core/src/components/progress/Progress.module.css"],names:[],mappings:"AAAA;;;;;;;;;;;;;;;;;;;;;EAqBE;;AAEF;EACE;IACE,WAAW;IACX,uIAAwD;EAiC1D;;IA/BE;MACE,iCAAiC;IAkBnC;;MAhBE;QACE,yBAAyB;;QAEzB,kBAAkB;QAClB,cAAc;QACd,qBAAqB;;QAErB,2CAA2C;QAC3C,eAAe;;QAEf,gBAAgB;QAChB,kBAAkB;QAClB,mBAAmB;QACnB,kBAAkB;QAClB,sBAAsB;MACxB;;IAGF;MACE,iCAAiC;MACjC,sBAAsB;IACxB;;IAEA;MACE,eAAe;MACf,gBAAgB;MAChB,kBAAkB;IACpB;;EAGF;IACE,0CAA0C;IAC1C,0BAA0B;EAK5B;;IAHE;MACE,yCAAyC;IAC3C;AAEJ",sourcesContent:['/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .progressbar {\n height: 1em;\n box-shadow: 0 0 4px 0 theme(boxShadowColor.dimmed) inset;\n\n & > div:last-child {\n width: calc(var(--progress) * 1%);\n\n &::after {\n content: attr(data-label);\n\n position: absolute;\n inset-block: 0;\n inset-inline-start: 0;\n\n width: calc((100 / var(--progress)) * 100%);\n padding: 0.75em;\n\n font-size: 0.5em;\n line-height: 0.5em;\n color: var(--white);\n text-align: center;\n vertical-align: middle;\n }\n }\n\n .progressTrack {\n width: calc(var(--progress) * 1%);\n transition: width 0.5s;\n }\n\n & > div:first-child {\n padding: 0.75em;\n font-size: 0.5em;\n line-height: 0.5em;\n }\n }\n\n .progressAnimate {\n background-image: var(--progress-gradient);\n background-size: 1rem 1rem;\n\n & :global {\n animation: progress 750ms linear infinite;\n }\n }\n}\n'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={progressbar:"Vez1yjdKodoa9F08vLmD",progressTrack:"VgtQ3ysHlp4xFiTEkTyF",progressAnimate:"KMyHvns5J_qBx_FTytUe"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/components/tabpanel/TabPanel.module.css":(module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .XZghJ0kTEEzkX7juD7fj {\n --color: color(from var(--primary) srgb r g b / 1);\n }\n\n .XZghJ0kTEEzkX7juD7fj > .FqV3Z6yms2RFt2JeqnN1 {\n grid-area: tablist;\n }\n .XZghJ0kTEEzkX7juD7fj > .FqV3Z6yms2RFt2JeqnN1 > .x7VI5eMt9C7YXH3GGR36 > .yg5yp7CLT6JMU7bGGepb[data-color="accent"] {\n --color: color(from var(--accent) srgb r g b / 1);\n }\n\n .XZghJ0kTEEzkX7juD7fj > .FqV3Z6yms2RFt2JeqnN1 > .x7VI5eMt9C7YXH3GGR36 > .yg5yp7CLT6JMU7bGGepb[data-color="info"] {\n --color: color(from #00bfff srgb r g b / 1);\n }\n\n .XZghJ0kTEEzkX7juD7fj > .FqV3Z6yms2RFt2JeqnN1 > .x7VI5eMt9C7YXH3GGR36 > .yg5yp7CLT6JMU7bGGepb[data-color="danger"] {\n --color: color(from #f24c3d srgb r g b / 1);\n }\n\n .XZghJ0kTEEzkX7juD7fj > .FqV3Z6yms2RFt2JeqnN1 > .x7VI5eMt9C7YXH3GGR36 > .yg5yp7CLT6JMU7bGGepb[data-color="success"] {\n --color: color(from #44bc69 srgb r g b / 1);\n }\n\n .XZghJ0kTEEzkX7juD7fj > .FqV3Z6yms2RFt2JeqnN1 > .x7VI5eMt9C7YXH3GGR36 > .yg5yp7CLT6JMU7bGGepb[data-color="warning"] {\n --color: color(from #edaa00 srgb r g b / 1);\n }\n\n .XZghJ0kTEEzkX7juD7fj > .FqV3Z6yms2RFt2JeqnN1 > .x7VI5eMt9C7YXH3GGR36 > .yg5yp7CLT6JMU7bGGepb:not(.active):hover {\n color: color-mix(in lab, var(--color) 65%, var(--fabric-text));\n background-color: color-mix(in lab, color(from var(--tint) srgb r g b / 50%) 27%, color(from var(--fabric-bg) srgb r g b / 50%));\n }\n\n .XZghJ0kTEEzkX7juD7fj > .FqV3Z6yms2RFt2JeqnN1 > .x7VI5eMt9C7YXH3GGR36 > .yg5yp7CLT6JMU7bGGepb.active {\n --active-color: var(--color);\n\n font-weight: 500;\n color: color-mix(in lab, var(--color) 65%, var(--fabric-text));\n }\n .XZghJ0kTEEzkX7juD7fj[data-variant="outline"] .x7VI5eMt9C7YXH3GGR36 > .yg5yp7CLT6JMU7bGGepb.active {\n --active-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 99%, color(from var(--tint) srgb r g b / 1));\n --active-border: 0 0 0 1px color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 65%, color(from var(--tint) srgb r g b / 1)) inset;\n\n background-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 99%, color(from var(--tint) srgb r g b / 1));\n }\n .XZghJ0kTEEzkX7juD7fj[data-variant="solid"] .x7VI5eMt9C7YXH3GGR36 > .yg5yp7CLT6JMU7bGGepb.active {\n color: #fefdfc;\n background-color: var(--color);\n }\n .XZghJ0kTEEzkX7juD7fj[data-variant="soft"] .x7VI5eMt9C7YXH3GGR36 > .yg5yp7CLT6JMU7bGGepb.active {\n background-color: color-mix(in lab, var(--color) 20%, var(--fabric-bg));\n }\n\n .XZghJ0kTEEzkX7juD7fj[data-orientation="top"] {\n grid-template: "tablist" auto "content" 1fr / 1fr;\n padding-inline: 2px;\n }\n\n .XZghJ0kTEEzkX7juD7fj[data-orientation="top"] .FqV3Z6yms2RFt2JeqnN1 {\n box-shadow: 0 -1px 0 color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 72%, color(from var(--tint) srgb r g b / 1)) inset;\n }\n\n .XZghJ0kTEEzkX7juD7fj[data-orientation="bottom"] {\n grid-template: "content" 1fr "tablist" auto / 1fr;\n padding-inline: 2px;\n }\n\n .XZghJ0kTEEzkX7juD7fj[data-orientation="bottom"] .FqV3Z6yms2RFt2JeqnN1 {\n margin-top: 1px;\n box-shadow: 0 1px 0 color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 72%, color(from var(--tint) srgb r g b / 1)) inset;\n }\n\n .XZghJ0kTEEzkX7juD7fj[data-orientation="start"] {\n grid-template: "tablist content" 1fr / auto 1fr;\n padding-block: 2px;\n }\n\n .XZghJ0kTEEzkX7juD7fj[data-orientation="start"] .FqV3Z6yms2RFt2JeqnN1 {\n box-shadow: -1px 0 0 color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 72%, color(from var(--tint) srgb r g b / 1)) inset;\n }\n\n .XZghJ0kTEEzkX7juD7fj[data-orientation="end"] {\n grid-template: "content tablist" 1fr / 1fr auto;\n padding-block: 2px;\n }\n\n .XZghJ0kTEEzkX7juD7fj[data-orientation="end"] .FqV3Z6yms2RFt2JeqnN1 {\n box-shadow: 1px 0 0 color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 72%, color(from var(--tint) srgb r g b / 1)) inset;\n }\n}\n\n@layer util {\n .XZghJ0kTEEzkX7juD7fj .x7VI5eMt9C7YXH3GGR36 > .yg5yp7CLT6JMU7bGGepb.active {\n pointer-events: none;\n }\n .XZghJ0kTEEzkX7juD7fj[data-orientation="top"] .x7VI5eMt9C7YXH3GGR36 > .yg5yp7CLT6JMU7bGGepb.active {\n box-shadow:\n 0 -2px 0 var(--active-color) inset,\n var(--active-border, 0 0 0 transparent);\n }\n .XZghJ0kTEEzkX7juD7fj[data-orientation="bottom"] .x7VI5eMt9C7YXH3GGR36 > .yg5yp7CLT6JMU7bGGepb.active {\n box-shadow:\n 0 2px 0 var(--active-color) inset,\n var(--active-border, 0 0 0 transparent);\n }\n .XZghJ0kTEEzkX7juD7fj[data-orientation="start"] .x7VI5eMt9C7YXH3GGR36 > .yg5yp7CLT6JMU7bGGepb.active {\n box-shadow:\n -2px 0 0 var(--active-color) inset,\n var(--active-border, 0 0 0 transparent);\n }\n .XZghJ0kTEEzkX7juD7fj[data-orientation="end"] .x7VI5eMt9C7YXH3GGR36 > .yg5yp7CLT6JMU7bGGepb.active {\n box-shadow:\n 2px 0 0 var(--active-color) inset,\n var(--active-border, 0 0 0 transparent);\n }\n\n .XZghJ0kTEEzkX7juD7fj[data-orientation="top"] .x7VI5eMt9C7YXH3GGR36 > .yg5yp7CLT6JMU7bGGepb {\n margin-top: 2px;\n margin-inline: 1px;\n border-end-start-radius: 0;\n border-end-end-radius: 0;\n }\n\n .XZghJ0kTEEzkX7juD7fj[data-orientation="bottom"] .x7VI5eMt9C7YXH3GGR36 > .yg5yp7CLT6JMU7bGGepb {\n margin-bottom: 2px;\n margin-inline: 1px;\n border-start-start-radius: 0;\n border-start-end-radius: 0;\n }\n\n .XZghJ0kTEEzkX7juD7fj[data-orientation="start"] .x7VI5eMt9C7YXH3GGR36 > .yg5yp7CLT6JMU7bGGepb {\n margin-block: 1px;\n margin-inline-start: 2px;\n border-start-end-radius: 0;\n border-end-end-radius: 0;\n }\n\n .XZghJ0kTEEzkX7juD7fj[data-orientation="end"] .x7VI5eMt9C7YXH3GGR36 > .yg5yp7CLT6JMU7bGGepb {\n margin-block: 1px;\n margin-inline-end: 2px;\n border-start-start-radius: 0;\n border-end-start-radius: 0;\n }\n}\n',"",{version:3,sources:["webpack://./packages/core/src/components/tabpanel/TabPanel.module.css"],names:[],mappings:"AAAA;;;;;;;;;;;;;;;;;;;;;EAqBE;;AAEF;EACE;IACE,kDAAkC;EAkGpC;;IAhGE;MACE,kBAAkB;IAmCpB;QAhCI;UACE,iDAAiC;QACnC;;QAEA;UACE,2CAA+B;QACjC;;QAEA;UACE,2CAAiC;QACnC;;QAEA;UACE,2CAAkC;QACpC;;QAEA;UACE,2CAAkC;QACpC;;QAEA;UACE,8DAA8D;UAC9D,iIAA4C;QAC9C;;QAEA;UACE,4BAA4B;;UAE5B,gBAAgB;UAChB,8DAA8D;QAChE;MAKF;QACE,2HAA2C;QAC3C,4IAAwD;;QAExD,6HAA6C;MAC/C;MAIA;QACE,cAA0B;QAC1B,8BAA8B;MAChC;MAIA;QACE,uEAAuE;MACzE;;IAGF;MACE,iDAAiD;MACjD,mBAAmB;IAKrB;;MAHE;QACE,sIAAoD;MACtD;;IAGF;MACE,iDAAiD;MACjD,mBAAmB;IAMrB;;MAJE;QACE,eAAe;QACf,qIAAmD;MACrD;;IAGF;MACE,+CAA+C;MAC/C,kBAAkB;IAKpB;;MAHE;QACE,sIAAoD;MACtD;;IAGF;MACE,+CAA+C;MAC/C,kBAAkB;IAKpB;;MAHE;QACE,qIAAmD;MACrD;AAGN;;AAEA;IAEI;MACE,oBAAoB;IACtB;MAGE;QACE;;iDAEyC;MAC3C;MAIA;QACE;;iDAEyC;MAC3C;MAIA;QACE;;iDAEyC;MAC3C;MAIA;QACE;;iDAEyC;MAC3C;;IAGF;MACE,eAAe;MACf,kBAAkB;MAClB,0BAA0B;MAC1B,wBAAwB;IAC1B;;IAEA;MACE,kBAAkB;MAClB,kBAAkB;MAClB,4BAA4B;MAC5B,0BAA0B;IAC5B;;IAEA;MACE,iBAAiB;MACjB,wBAAwB;MACxB,0BAA0B;MAC1B,wBAAwB;IAC1B;;IAEA;MACE,iBAAiB;MACjB,sBAAsB;MACtB,4BAA4B;MAC5B,0BAA0B;IAC5B;AAEJ",sourcesContent:['/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .tabPanel {\n --color: theme(colors.primary.500);\n\n & > .tabHeader {\n grid-area: tablist;\n\n & > .tabList > .tabButton {\n &[data-color="accent"] {\n --color: theme(colors.accent.500);\n }\n\n &[data-color="info"] {\n --color: theme(colors.info.500);\n }\n\n &[data-color="danger"] {\n --color: theme(colors.danger.500);\n }\n\n &[data-color="success"] {\n --color: theme(colors.success.500);\n }\n\n &[data-color="warning"] {\n --color: theme(colors.warning.500);\n }\n\n &:not(:global(.active)):hover {\n color: color-mix(in lab, var(--color) 65%, var(--fabric-text));\n background-color: theme(colors.tint.100/50%);\n }\n\n &:global(.active) {\n --active-color: var(--color);\n\n font-weight: 500;\n color: color-mix(in lab, var(--color) 65%, var(--fabric-text));\n }\n }\n }\n\n &[data-variant="outline"] {\n & .tabList > .tabButton:global(.active) {\n --active-color: theme(backgroundColor.base);\n --active-border: 0 0 0 1px theme(borderColor.base) inset;\n\n background-color: theme(backgroundColor.base);\n }\n }\n\n &[data-variant="solid"] {\n & .tabList > .tabButton:global(.active) {\n color: theme(colors.white);\n background-color: var(--color);\n }\n }\n\n &[data-variant="soft"] {\n & .tabList > .tabButton:global(.active) {\n background-color: color-mix(in lab, var(--color) 20%, var(--fabric-bg));\n }\n }\n\n &[data-orientation="top"] {\n grid-template: "tablist" auto "content" 1fr / 1fr;\n padding-inline: 2px;\n\n .tabHeader {\n box-shadow: 0 -1px 0 theme(borderColor.dimmed) inset;\n }\n }\n\n &[data-orientation="bottom"] {\n grid-template: "content" 1fr "tablist" auto / 1fr;\n padding-inline: 2px;\n\n .tabHeader {\n margin-top: 1px;\n box-shadow: 0 1px 0 theme(borderColor.dimmed) inset;\n }\n }\n\n &[data-orientation="start"] {\n grid-template: "tablist content" 1fr / auto 1fr;\n padding-block: 2px;\n\n .tabHeader {\n box-shadow: -1px 0 0 theme(borderColor.dimmed) inset;\n }\n }\n\n &[data-orientation="end"] {\n grid-template: "content tablist" 1fr / 1fr auto;\n padding-block: 2px;\n\n .tabHeader {\n box-shadow: 1px 0 0 theme(borderColor.dimmed) inset;\n }\n }\n }\n}\n\n@layer util {\n .tabPanel {\n & .tabList > .tabButton:global(.active) {\n pointer-events: none;\n }\n\n &[data-orientation="top"] .tabList {\n & > .tabButton:global(.active) {\n box-shadow:\n 0 -2px 0 var(--active-color) inset,\n var(--active-border, 0 0 0 transparent);\n }\n }\n\n &[data-orientation="bottom"] .tabList {\n & > .tabButton:global(.active) {\n box-shadow:\n 0 2px 0 var(--active-color) inset,\n var(--active-border, 0 0 0 transparent);\n }\n }\n\n &[data-orientation="start"] .tabList {\n & > .tabButton:global(.active) {\n box-shadow:\n -2px 0 0 var(--active-color) inset,\n var(--active-border, 0 0 0 transparent);\n }\n }\n\n &[data-orientation="end"] .tabList {\n & > .tabButton:global(.active) {\n box-shadow:\n 2px 0 0 var(--active-color) inset,\n var(--active-border, 0 0 0 transparent);\n }\n }\n\n &[data-orientation="top"] .tabList > .tabButton {\n margin-top: 2px;\n margin-inline: 1px;\n border-end-start-radius: 0;\n border-end-end-radius: 0;\n }\n\n &[data-orientation="bottom"] .tabList > .tabButton {\n margin-bottom: 2px;\n margin-inline: 1px;\n border-start-start-radius: 0;\n border-start-end-radius: 0;\n }\n\n &[data-orientation="start"] .tabList > .tabButton {\n margin-block: 1px;\n margin-inline-start: 2px;\n border-start-end-radius: 0;\n border-end-end-radius: 0;\n }\n\n &[data-orientation="end"] .tabList > .tabButton {\n margin-block: 1px;\n margin-inline-end: 2px;\n border-start-start-radius: 0;\n border-end-start-radius: 0;\n }\n }\n}\n'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={tabPanel:"XZghJ0kTEEzkX7juD7fj",tabHeader:"FqV3Z6yms2RFt2JeqnN1",tabList:"x7VI5eMt9C7YXH3GGR36",tabButton:"yg5yp7CLT6JMU7bGGepb"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/core/aside/Aside.module.css":(module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .iqR7CCFAC7uAYkF2nZg7 {\n --aside-bg: color-mix(in lab, var(--fabric-bg) 95%, var(--tint));\n --aside-border: color-mix(in lab, var(--fabric-bg) 75%, var(--tint));\n\n background-color: var(--aside-bg);\n }\n\n .iqR7CCFAC7uAYkF2nZg7[data-align="start"] {\n grid-area: side-s;\n grid-template:\n "head resizer" auto\n "loader resizer" auto\n "content resizer" 1fr / 1fr auto;\n border-inline-end: 1px solid var(--aside-border);\n }\n\n .iqR7CCFAC7uAYkF2nZg7[data-align="start"] .qVosTYkklb6mfYA2McW7 {\n grid-template-areas: "icon title actions collapse";\n grid-template-columns: auto 1fr auto auto;\n }\n\n .iqR7CCFAC7uAYkF2nZg7[data-align="end"] {\n grid-area: side-e;\n grid-template:\n "resizer head" auto\n "resizer loader" auto\n "resizer content" 1fr / auto 1fr;\n border-inline-start: 1px solid var(--aside-border);\n }\n\n .iqR7CCFAC7uAYkF2nZg7[data-align="end"] .qVosTYkklb6mfYA2McW7 {\n grid-template-areas: "collapse icon title actions";\n grid-template-columns: auto auto 1fr auto;\n }\n\n .iqR7CCFAC7uAYkF2nZg7[data-align="end"] .iXJYSbhcwDyN7MAfo2TJ {\n transform: scaleX(-1);\n }\n\n .iqR7CCFAC7uAYkF2nZg7 .f_pmIhLyJ0DxcVE4_qNR {\n grid-area: content;\n grid-template: "head" auto "content" 1fr "foot" auto / 1fr;\n }\n\n .iqR7CCFAC7uAYkF2nZg7 .f_pmIhLyJ0DxcVE4_qNR > [data-ref="content"] {\n background-color: transparent;\n }\n\n .iqR7CCFAC7uAYkF2nZg7 .qVosTYkklb6mfYA2McW7 {\n font-weight: 500;\n color: color-mix(in lab, color(from var(--primary) srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n }\n\n .iqR7CCFAC7uAYkF2nZg7 .qVosTYkklb6mfYA2McW7:not(:empty) {\n border-bottom: 1px solid var(--aside-border);\n }\n\n .iqR7CCFAC7uAYkF2nZg7 .qtkXIXQdWp2tDoHVqHQO {\n grid-area: title;\n }\n\n .iqR7CCFAC7uAYkF2nZg7 .BgFAC1qEcJXCcU13UlEx {\n grid-area: icon;\n }\n\n .iqR7CCFAC7uAYkF2nZg7 .cDtVTouWxHAsQrri1spP {\n grid-area: actions;\n }\n\n .iqR7CCFAC7uAYkF2nZg7 .iXJYSbhcwDyN7MAfo2TJ {\n grid-area: collapse;\n }\n\n .iqR7CCFAC7uAYkF2nZg7 .iXJYSbhcwDyN7MAfo2TJ:hover {\n background-color: color-mix(in lab, var(--fabric-text) 10%, #0000);\n }\n\n .iqR7CCFAC7uAYkF2nZg7 .bj_wgIi8NNtaRlbcA5bw {\n z-index: 4;\n grid-area: content;\n background-color: var(--aside-bg);\n }\n\n .iqR7CCFAC7uAYkF2nZg7 .fVDnpE9drdVfXvnHf6sM {\n cursor: col-resize;\n position: relative;\n grid-area: resizer;\n width: 0.25rem;\n }\n\n .iqR7CCFAC7uAYkF2nZg7 .fVDnpE9drdVfXvnHf6sM::before {\n height: 32px;\n border: 1px solid color-mix(in lab, color(from var(--tint) srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n border-width: 0 1.5px;\n }\n\n .iqR7CCFAC7uAYkF2nZg7 .fVDnpE9drdVfXvnHf6sM:hover::before,\n .iqR7CCFAC7uAYkF2nZg7 .fVDnpE9drdVfXvnHf6sM:active::before {\n height: 100%;\n background-color: color-mix(in lab, color(from var(--primary) srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n border-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 99%, color(from var(--tint) srgb r g b / 1));\n border-width: 0 1.25px;\n }\n}\n\n@layer util {\n .f_pmIhLyJ0DxcVE4_qNR,\n .qVosTYkklb6mfYA2McW7 {\n width: unset;\n height: unset;\n margin: unset;\n }\n .f_pmIhLyJ0DxcVE4_qNR > [data-ref="content"] {\n background-color: transparent;\n }\n\n .iqR7CCFAC7uAYkF2nZg7[data-collapsed="true"] {\n position: relative;\n overflow: visible;\n width: 2rem;\n }\n\n .iqR7CCFAC7uAYkF2nZg7[data-collapsed="true"] .f_pmIhLyJ0DxcVE4_qNR {\n position: absolute;\n z-index: -1;\n inset: 0;\n\n background-color: var(--aside-bg);\n\n transition: transform cubic-bezier(0.4, 0, 0.2, 1) 150ms;\n }\n\n .iqR7CCFAC7uAYkF2nZg7[data-collapsed="true"] .qVosTYkklb6mfYA2McW7 {\n position: absolute;\n z-index: 5;\n width: 2rem;\n }\n\n .iqR7CCFAC7uAYkF2nZg7[data-collapsed="true"] .qtkXIXQdWp2tDoHVqHQO {\n position: absolute;\n top: 1rem;\n grid-area: unset;\n font-size: 1rem;\n }\n\n .iqR7CCFAC7uAYkF2nZg7[data-collapsed="true"] .BgFAC1qEcJXCcU13UlEx {\n margin-inline: 2px;\n }\n\n .iqR7CCFAC7uAYkF2nZg7[data-collapsed="true"] .iXJYSbhcwDyN7MAfo2TJ + .BgFAC1qEcJXCcU13UlEx,\n .iqR7CCFAC7uAYkF2nZg7[data-collapsed="true"] .fVDnpE9drdVfXvnHf6sM {\n display: none;\n }\n [dir="ltr"] .iqR7CCFAC7uAYkF2nZg7[data-align="start"][data-collapsed="true"] .f_pmIhLyJ0DxcVE4_qNR, [dir="rtl"] .iqR7CCFAC7uAYkF2nZg7[data-align="end"][data-collapsed="true"] .f_pmIhLyJ0DxcVE4_qNR {\n right: unset;\n transform: translateX(-100%);\n grid-area: unset;\n }\n\n [dir="ltr"] .iqR7CCFAC7uAYkF2nZg7[data-align="start"][data-collapsed="true"] .qtkXIXQdWp2tDoHVqHQO, [dir="rtl"] .iqR7CCFAC7uAYkF2nZg7[data-align="end"][data-collapsed="true"] .qtkXIXQdWp2tDoHVqHQO {\n right: calc(2rem + 2px);\n transform-origin: 100% 100%;\n transform: rotate(-90deg) translateY(2rem);\n }\n\n [dir="ltr"] .iqR7CCFAC7uAYkF2nZg7[data-align="start"][data-collapsed="true"] .iXJYSbhcwDyN7MAfo2TJ, [dir="rtl"] .iqR7CCFAC7uAYkF2nZg7[data-align="end"][data-collapsed="true"] .iXJYSbhcwDyN7MAfo2TJ {\n transform: scaleX(-1);\n }\n\n [dir="ltr"] .iqR7CCFAC7uAYkF2nZg7[data-align="start"][data-collapsed="true"][data-flyout="true"] .f_pmIhLyJ0DxcVE4_qNR, [dir="rtl"] .iqR7CCFAC7uAYkF2nZg7[data-align="end"][data-collapsed="true"][data-flyout="true"] .f_pmIhLyJ0DxcVE4_qNR {\n z-index: 3;\n transform: translateX(2rem);\n box-shadow: 0 0 1rem 0 var(--fabric-shadow);\n }\n [dir="ltr"] .iqR7CCFAC7uAYkF2nZg7[data-align="end"][data-collapsed="true"] .f_pmIhLyJ0DxcVE4_qNR, [dir="rtl"] .iqR7CCFAC7uAYkF2nZg7[data-align="start"][data-collapsed="true"] .f_pmIhLyJ0DxcVE4_qNR {\n left: unset;\n transform: translateX(100%);\n grid-area: unset;\n }\n\n [dir="ltr"] .iqR7CCFAC7uAYkF2nZg7[data-align="end"][data-collapsed="true"] .qtkXIXQdWp2tDoHVqHQO, [dir="rtl"] .iqR7CCFAC7uAYkF2nZg7[data-align="start"][data-collapsed="true"] .qtkXIXQdWp2tDoHVqHQO {\n left: calc(2rem + 2px);\n transform-origin: 0 100%;\n transform: rotate(90deg) translateY(2rem);\n }\n\n [dir="ltr"] .iqR7CCFAC7uAYkF2nZg7[data-align="end"][data-collapsed="true"] .iXJYSbhcwDyN7MAfo2TJ, [dir="rtl"] .iqR7CCFAC7uAYkF2nZg7[data-align="start"][data-collapsed="true"] .iXJYSbhcwDyN7MAfo2TJ {\n transform: scaleX(1);\n }\n\n [dir="ltr"] .iqR7CCFAC7uAYkF2nZg7[data-align="end"][data-collapsed="true"][data-flyout="true"] .f_pmIhLyJ0DxcVE4_qNR, [dir="rtl"] .iqR7CCFAC7uAYkF2nZg7[data-align="start"][data-collapsed="true"][data-flyout="true"] .f_pmIhLyJ0DxcVE4_qNR {\n z-index: 3;\n transform: translateX(-2rem);\n box-shadow: 0 0 1rem 0 var(--fabric-shadow);\n }\n}\n',"",{version:3,sources:["webpack://./packages/core/src/core/aside/Aside.module.css"],names:[],mappings:"AAAA;;;;;;;;;;;;;;;;;;;;;EAqBE;;AAEF;EACE;IACE,gEAAgE;IAChE,oEAAoE;;IAEpE,iCAAiC;EAkGnC;;IAhGE;MACE,iBAAiB;MACjB;;;wCAGkC;MAClC,gDAAgD;IAMlD;;MAJE;QACE,kDAAkD;QAClD,yCAAyC;MAC3C;;IAGF;MACE,iBAAiB;MACjB;;;wCAGkC;MAClC,kDAAkD;IAUpD;;MARE;QACE,kDAAkD;QAClD,yCAAyC;MAC3C;;MAEA;QACE,qBAAqB;MACvB;;IAGF;MACE,kBAAkB;MAClB,0DAA0D;IAK5D;;MAHE;QACE,6BAA6B;MAC/B;;IAGF;MACE,gBAAgB;MAChB,uHAAgC;IAKlC;;MAHE;QACE,4CAA4C;MAC9C;;IAGF;MACE,gBAAgB;IAClB;;IAEA;MACE,eAAe;IACjB;;IAEA;MACE,kBAAkB;IACpB;;IAEA;MACE,mBAAmB;IAKrB;;MAHE;QACE,kEAAkE;MACpE;;IAGF;MACE,UAAU;MACV,kBAAkB;MAClB,iCAAiC;IACnC;;IAEA;MACE,kBAAkB;MAClB,kBAAkB;MAClB,kBAAkB;MAClB,cAAc;IAehB;;MAbE;QACE,YAAY;QACZ,+HAAwC;QACxC,qBAAqB;MACvB;;MAEA;;QAEE,YAAY;QACZ,kIAA2C;QAC3C,yHAAyC;QACzC,sBAAsB;MACxB;AAGN;;AAEA;EACE;;IAEE,YAAY;IACZ,aAAa;IACb,aAAa;EACf;IAGE;MACE,6BAA6B;IAC/B;;EAGF;IACE,kBAAkB;IAClB,iBAAiB;IACjB,WAAW;EAiCb;;IA/BE;MACE,kBAAkB;MAClB,WAAW;MACX,QAAQ;;MAER,iCAAiC;;MAEjC,wDAAwD;IAC1D;;IAEA;MACE,kBAAkB;MAClB,UAAU;MACV,WAAW;IACb;;IAEA;MACE,kBAAkB;MAClB,SAAS;MACT,gBAAgB;MAChB,eAAe;IACjB;;IAEA;MACE,kBAAkB;IACpB;;IAEA;;MAEE,aAAa;IACf;IAKA;MACE,YAAY;MACZ,4BAA4B;MAC5B,gBAAgB;IAClB;;IAEA;MACE,uBAAuB;MACvB,2BAA2B;MAC3B,0CAA0C;IAC5C;;IAEA;MACE,qBAAqB;IACvB;;IAEA;MACE,UAAU;MACV,2BAA2B;MAC3B,2CAA2C;IAC7C;IAKA;MACE,WAAW;MACX,2BAA2B;MAC3B,gBAAgB;IAClB;;IAEA;MACE,sBAAsB;MACtB,wBAAwB;MACxB,yCAAyC;IAC3C;;IAEA;MACE,oBAAoB;IACtB;;IAEA;MACE,UAAU;MACV,4BAA4B;MAC5B,2CAA2C;IAC7C;AAEJ",sourcesContent:['/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .aside {\n --aside-bg: color-mix(in lab, var(--fabric-bg) 95%, var(--tint));\n --aside-border: color-mix(in lab, var(--fabric-bg) 75%, var(--tint));\n\n background-color: var(--aside-bg);\n\n &[data-align="start"] {\n grid-area: side-s;\n grid-template:\n "head resizer" auto\n "loader resizer" auto\n "content resizer" 1fr / 1fr auto;\n border-inline-end: 1px solid var(--aside-border);\n\n & .asideHeader {\n grid-template-areas: "icon title actions collapse";\n grid-template-columns: auto 1fr auto auto;\n }\n }\n\n &[data-align="end"] {\n grid-area: side-e;\n grid-template:\n "resizer head" auto\n "resizer loader" auto\n "resizer content" 1fr / auto 1fr;\n border-inline-start: 1px solid var(--aside-border);\n\n & .asideHeader {\n grid-template-areas: "collapse icon title actions";\n grid-template-columns: auto auto 1fr auto;\n }\n\n & .asideCollapse {\n transform: scaleX(-1);\n }\n }\n\n & .asideBody {\n grid-area: content;\n grid-template: "head" auto "content" 1fr "foot" auto / 1fr;\n\n & > [data-ref="content"] {\n background-color: transparent;\n }\n }\n\n & .asideHeader {\n font-weight: 500;\n color: theme(colors.primary.600);\n\n &:not(:empty) {\n border-bottom: 1px solid var(--aside-border);\n }\n }\n\n & .asideTitle {\n grid-area: title;\n }\n\n & .asideIcon {\n grid-area: icon;\n }\n\n .asideActions {\n grid-area: actions;\n }\n\n & .asideCollapse {\n grid-area: collapse;\n\n &:hover {\n background-color: color-mix(in lab, var(--fabric-text) 10%, #0000);\n }\n }\n\n & .asidePlaceholder {\n z-index: 4;\n grid-area: content;\n background-color: var(--aside-bg);\n }\n\n & .asideResizer {\n cursor: col-resize;\n position: relative;\n grid-area: resizer;\n width: 0.25rem;\n\n &::before {\n height: 32px;\n border: 1px solid theme(colors.tint.700);\n border-width: 0 1.5px;\n }\n\n &:hover::before,\n &:active::before {\n height: 100%;\n background-color: theme(colors.primary.600);\n border-color: theme(backgroundColor.base);\n border-width: 0 1.25px;\n }\n }\n }\n}\n\n@layer util {\n .asideBody,\n .asideHeader {\n width: unset;\n height: unset;\n margin: unset;\n }\n\n .asideBody {\n & > [data-ref="content"] {\n background-color: transparent;\n }\n }\n\n .aside[data-collapsed="true"] {\n position: relative;\n overflow: visible;\n width: 2rem;\n\n & .asideBody {\n position: absolute;\n z-index: -1;\n inset: 0;\n\n background-color: var(--aside-bg);\n\n transition: transform cubic-bezier(0.4, 0, 0.2, 1) 150ms;\n }\n\n & .asideHeader {\n position: absolute;\n z-index: 5;\n width: 2rem;\n }\n\n & .asideTitle {\n position: absolute;\n top: 1rem;\n grid-area: unset;\n font-size: 1rem;\n }\n\n .asideIcon {\n margin-inline: 2px;\n }\n\n & .asideCollapse + .asideIcon,\n & .asideResizer {\n display: none;\n }\n }\n\n [dir="ltr"] .aside[data-align="start"][data-collapsed="true"],\n [dir="rtl"] .aside[data-align="end"][data-collapsed="true"] {\n & .asideBody {\n right: unset;\n transform: translateX(-100%);\n grid-area: unset;\n }\n\n & .asideTitle {\n right: calc(2rem + 2px);\n transform-origin: 100% 100%;\n transform: rotate(-90deg) translateY(2rem);\n }\n\n & .asideCollapse {\n transform: scaleX(-1);\n }\n\n &[data-flyout="true"] .asideBody {\n z-index: 3;\n transform: translateX(2rem);\n box-shadow: 0 0 1rem 0 var(--fabric-shadow);\n }\n }\n\n [dir="ltr"] .aside[data-align="end"][data-collapsed="true"],\n [dir="rtl"] .aside[data-align="start"][data-collapsed="true"] {\n & .asideBody {\n left: unset;\n transform: translateX(100%);\n grid-area: unset;\n }\n\n & .asideTitle {\n left: calc(2rem + 2px);\n transform-origin: 0 100%;\n transform: rotate(90deg) translateY(2rem);\n }\n\n & .asideCollapse {\n transform: scaleX(1);\n }\n\n &[data-flyout="true"] .asideBody {\n z-index: 3;\n transform: translateX(-2rem);\n box-shadow: 0 0 1rem 0 var(--fabric-shadow);\n }\n }\n}\n'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={aside:"iqR7CCFAC7uAYkF2nZg7",asideHeader:"qVosTYkklb6mfYA2McW7",asideCollapse:"iXJYSbhcwDyN7MAfo2TJ",asideBody:"f_pmIhLyJ0DxcVE4_qNR",asideTitle:"qtkXIXQdWp2tDoHVqHQO",asideIcon:"BgFAC1qEcJXCcU13UlEx",asideActions:"cDtVTouWxHAsQrri1spP",asidePlaceholder:"bj_wgIi8NNtaRlbcA5bw",asideResizer:"fVDnpE9drdVfXvnHf6sM"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/core/boundary/ErrorBoundary.module.css":(module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .DIWBb5GbTjhgB8vGpeFD {\n grid-area: inherit;\n align-self: flex-start;\n\n max-height: calc(100% - 2rem);\n margin: 1rem;\n\n background-color: color(from #f24c3d srgb r g b / 1);\n background-image: repeating-linear-gradient(\n 135deg,\n rgba(255 255 255 / 50%) 0 4px,\n rgba(255 255 255 / 20%) 4px 8px\n );\n }\n\n .DIWBb5GbTjhgB8vGpeFD .txe9YJcXcmtJgy2gIHpv {\n grid-template: "icon message" auto "detail detail" auto / auto 1fr;\n background-color: var(--fabric-bg);\n }\n\n .DIWBb5GbTjhgB8vGpeFD .LWBgQOxLsfi6F7Dlqhvh {\n grid-area: icon;\n }\n\n .DIWBb5GbTjhgB8vGpeFD .awueCArTiTkB4rLzZIgm {\n grid-area: message;\n }\n\n .DIWBb5GbTjhgB8vGpeFD .mBlVa6HBkgZn67dU9o1N {\n grid-area: detail;\n grid-template-rows: auto 1fr;\n }\n\n .DIWBb5GbTjhgB8vGpeFD .mBlVa6HBkgZn67dU9o1N .NmX4aK_X3_9wV2uj_jph {\n /* might add styles later */\n }\n\n .DIWBb5GbTjhgB8vGpeFD .FxEymIUTqTkbLMDZE1ew {\n /* might add styles later */\n }\n}\n',"",{version:3,sources:["webpack://./packages/core/src/core/boundary/ErrorBoundary.module.css"],names:[],mappings:"AAAA;;;;;;;;;;;;;;;;;;;;;EAqBE;;AAEF;EACE;IACE,kBAAkB;IAClB,sBAAsB;;IAEtB,6BAA6B;IAC7B,YAAY;;IAEZ,oDAA0C;IAC1C;;;;KAIC;EA2BH;;IAzBE;MACE,kEAAkE;MAClE,kCAAkC;IACpC;;IAEA;MACE,eAAe;IACjB;;IAEA;MACE,kBAAkB;IACpB;;IAEA;MACE,iBAAiB;MACjB,4BAA4B;IAK9B;;MAHE;QACE,2BAA2B;MAC7B;;IAGF;MACE,2BAA2B;IAC7B;AAEJ",sourcesContent:['/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .errorBoundary {\n grid-area: inherit;\n align-self: flex-start;\n\n max-height: calc(100% - 2rem);\n margin: 1rem;\n\n background-color: theme(colors.danger.500);\n background-image: repeating-linear-gradient(\n 135deg,\n rgba(255 255 255 / 50%) 0 4px,\n rgba(255 255 255 / 20%) 4px 8px\n );\n\n & .boundaryContent {\n grid-template: "icon message" auto "detail detail" auto / auto 1fr;\n background-color: var(--fabric-bg);\n }\n\n & .boundaryIcon {\n grid-area: icon;\n }\n\n & .boundaryMessage {\n grid-area: message;\n }\n\n & .boundaryDetail {\n grid-area: detail;\n grid-template-rows: auto 1fr;\n\n & .boundaryLink {\n /* might add styles later */\n }\n }\n\n & .boundaryStack {\n /* might add styles later */\n }\n }\n}\n'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={errorBoundary:"DIWBb5GbTjhgB8vGpeFD",boundaryContent:"txe9YJcXcmtJgy2gIHpv",boundaryIcon:"LWBgQOxLsfi6F7Dlqhvh",boundaryMessage:"awueCArTiTkB4rLzZIgm",boundaryDetail:"mBlVa6HBkgZn67dU9o1N",boundaryLink:"NmX4aK_X3_9wV2uj_jph",boundaryStack:"FxEymIUTqTkbLMDZE1ew"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/core/content/Content.module.css":(module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .iT3Of3DLczjDZvnPujyo {\n --fabric-content: color-mix(in lab, var(--fabric-bg) 97%, var(--tint));\n\n overflow: auto;\n padding: 1rem;\n background-color: var(--fabric-content);\n }\n}\n\n@layer util {\n .iT3Of3DLczjDZvnPujyo {\n width: unset;\n height: unset;\n margin: unset;\n }\n}\n',"",{version:3,sources:["webpack://./packages/core/src/core/content/Content.module.css"],names:[],mappings:"AAAA;;;;;;;;;;;;;;;;;;;;;EAqBE;;AAEF;EACE;IACE,sEAAsE;;IAEtE,cAAc;IACd,aAAa;IACb,uCAAuC;EACzC;AACF;;AAEA;EACE;IACE,YAAY;IACZ,aAAa;IACb,aAAa;EACf;AACF",sourcesContent:['/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .content {\n --fabric-content: color-mix(in lab, var(--fabric-bg) 97%, var(--tint));\n\n overflow: auto;\n padding: 1rem;\n background-color: var(--fabric-content);\n }\n}\n\n@layer util {\n .content {\n width: unset;\n height: unset;\n margin: unset;\n }\n}\n'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={content:"iT3Of3DLczjDZvnPujyo"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/core/headfoot/HeadFoot.module.css":(module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .q2eqy6yvIILeRveHQDtZ {\n gap: 2px;\n }\n\n .q2eqy6yvIILeRveHQDtZ .WA_QPG5u_p54mI16fP3P + .WA_QPG5u_p54mI16fP3P {\n margin-inline-start: 0.25rem;\n }\n}\n\n@layer util {\n .q2eqy6yvIILeRveHQDtZ {\n width: unset;\n height: unset;\n margin: unset;\n }\n}\n',"",{version:3,sources:["webpack://./packages/core/src/core/headfoot/HeadFoot.module.css"],names:[],mappings:"AAAA;;;;;;;;;;;;;;;;;;;;;EAqBE;;AAEF;EACE;IACE,QAAQ;EAKV;;IAHE;MACE,4BAA4B;IAC9B;AAEJ;;AAEA;EACE;IACE,YAAY;IACZ,aAAa;IACb,aAAa;EACf;AACF",sourcesContent:['/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .headfoot {\n gap: 2px;\n\n .buttonWrapper + .buttonWrapper {\n margin-inline-start: 0.25rem;\n }\n }\n}\n\n@layer util {\n .headfoot {\n width: unset;\n height: unset;\n margin: unset;\n }\n}\n'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={headfoot:"q2eqy6yvIILeRveHQDtZ",buttonWrapper:"WA_QPG5u_p54mI16fP3P"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/core/page/Page.module.css":(module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .bw_h8RxjLtK7xTZOzXIx {\n --fabric-page: color-mix(in lab, var(--fabric-bg) 94%, var(--tint));\n --fabric-page-title: color-mix(in lab, var(--fabric-bg) 90%, var(--tint));\n\n grid-template: "title title title" auto "head head head" auto ". loader ." auto "side-s content side-e" 1fr "foot foot foot" auto / auto 1fr auto;\n background-color: var(--fabric-page);\n }\n\n .bw_h8RxjLtK7xTZOzXIx .sXw9XqIEd0pAGTlsdAHT {\n grid-area: title;\n color: color-mix(in lab, color(from var(--primary) srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n background-color: var(--fabric-page-title);\n }\n}\n\n@layer util {\n .sXw9XqIEd0pAGTlsdAHT {\n width: unset;\n height: unset;\n margin: unset;\n }\n}\n',"",{version:3,sources:["webpack://./packages/core/src/core/page/Page.module.css"],names:[],mappings:"AAAA;;;;;;;;;;;;;;;;;;;;;EAqBE;;AAEF;EACE;IACE,mEAAmE;IACnE,yEAAyE;;IAEzE,iJAAiJ;IACjJ,oCAAoC;EAOtC;;IALE;MACE,gBAAgB;MAChB,uHAAgC;MAChC,0CAA0C;IAC5C;AAEJ;;AAEA;EACE;IACE,YAAY;IACZ,aAAa;IACb,aAAa;EACf;AACF",sourcesContent:['/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .page {\n --fabric-page: color-mix(in lab, var(--fabric-bg) 94%, var(--tint));\n --fabric-page-title: color-mix(in lab, var(--fabric-bg) 90%, var(--tint));\n\n grid-template: "title title title" auto "head head head" auto ". loader ." auto "side-s content side-e" 1fr "foot foot foot" auto / auto 1fr auto;\n background-color: var(--fabric-page);\n\n .pageTitle {\n grid-area: title;\n color: theme(colors.primary.600);\n background-color: var(--fabric-page-title);\n }\n }\n}\n\n@layer util {\n .pageTitle {\n width: unset;\n height: unset;\n margin: unset;\n }\n}\n'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={page:"bw_h8RxjLtK7xTZOzXIx",pageTitle:"sXw9XqIEd0pAGTlsdAHT"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/core/responsive/Responsive.module.css":(module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .hpxi4CS28yita56b9sOX {\n margin: calc(-0.5 * var(--gutter));\n }\n\n .hpxi4CS28yita56b9sOX + .hpxi4CS28yita56b9sOX {\n margin-top: calc(0.5 * var(--gutter));\n }\n\n .Yz6GeoCqmKMeau_uMQ2_ {\n flex: 0 0 auto;\n max-width: calc((12 / 12) * 100% - var(--gutter, 0px));\n margin: calc(0.5 * var(--gutter));\n }\n\n .Yz6GeoCqmKMeau_uMQ2_.wA4KuFNP5_1Q92ykvLJD > * {\n min-width: 100%;\n min-height: 100%;\n }\n .ignuvms7MMXotIhHAMiG[data-gutter="0"],\n .hpxi4CS28yita56b9sOX[data-gutter="0"] {\n --gutter: 0px;\n }\n .ignuvms7MMXotIhHAMiG[data-gutter="xs"],\n .hpxi4CS28yita56b9sOX[data-gutter="xs"] {\n --gutter: 2px;\n }\n .ignuvms7MMXotIhHAMiG[data-gutter="sm"],\n .hpxi4CS28yita56b9sOX[data-gutter="sm"] {\n --gutter: 0.25rem;\n }\n .ignuvms7MMXotIhHAMiG[data-gutter="md"],\n .hpxi4CS28yita56b9sOX[data-gutter="md"] {\n --gutter: 0.75rem;\n }\n .ignuvms7MMXotIhHAMiG[data-gutter="lg"],\n .hpxi4CS28yita56b9sOX[data-gutter="lg"] {\n --gutter: 1rem;\n }\n .ignuvms7MMXotIhHAMiG[data-gutter="xl"],\n .hpxi4CS28yita56b9sOX[data-gutter="xl"] {\n --gutter: 1.5rem;\n }\n}\n',"",{version:3,sources:["webpack://./packages/core/src/core/responsive/Responsive.module.css"],names:[],mappings:"AAAA;;;;;;;;;;;;;;;;;;;;;EAqBE;;AAEF;EACE;IACE,kCAAkC;EAKpC;;IAHE;MACE,qCAAqC;IACvC;;EAGF;IACE,cAAc;IACd,sDAAsD;IACtD,iCAAiC;EAMnC;;IAJE;MACE,eAAe;MACf,gBAAgB;IAClB;IAIA;;MAEE,aAAa;IACf;IAIA;;MAEE,aAAa;IACf;IAIA;;MAEE,iBAAiB;IACnB;IAIA;;MAEE,iBAAiB;IACnB;IAIA;;MAEE,cAAc;IAChB;IAIA;;MAEE,gBAAgB;IAClB;AAEJ",sourcesContent:['/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .row {\n margin: calc(-0.5 * var(--gutter));\n\n & + .row {\n margin-top: calc(0.5 * var(--gutter));\n }\n }\n\n .col {\n flex: 0 0 auto;\n max-width: calc((12 / 12) * 100% - var(--gutter, 0px));\n margin: calc(0.5 * var(--gutter));\n\n &.stretchContent > * {\n min-width: 100%;\n min-height: 100%;\n }\n }\n\n [data-gutter="0"] {\n &.container,\n &.row {\n --gutter: 0px;\n }\n }\n\n [data-gutter="xs"] {\n &.container,\n &.row {\n --gutter: 2px;\n }\n }\n\n [data-gutter="sm"] {\n &.container,\n &.row {\n --gutter: 0.25rem;\n }\n }\n\n [data-gutter="md"] {\n &.container,\n &.row {\n --gutter: 0.75rem;\n }\n }\n\n [data-gutter="lg"] {\n &.container,\n &.row {\n --gutter: 1rem;\n }\n }\n\n [data-gutter="xl"] {\n &.container,\n &.row {\n --gutter: 1.5rem;\n }\n }\n}\n'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={row:"hpxi4CS28yita56b9sOX",col:"Yz6GeoCqmKMeau_uMQ2_",stretchContent:"wA4KuFNP5_1Q92ykvLJD",container:"ignuvms7MMXotIhHAMiG"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/core/section/Section.module.css":(module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .Of4tTl8AUorfrEJSg9nX {\n grid-template: "head head head" auto "side-s content side-e" 1fr "foot foot foot" auto / auto 1fr auto;\n }\n}\n',"",{version:3,sources:["webpack://./packages/core/src/core/section/Section.module.css"],names:[],mappings:"AAAA;;;;;;;;;;;;;;;;;;;;;EAqBE;;AAEF;EACE;IACE,sGAAsG;EACxG;AACF",sourcesContent:['/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .section {\n grid-template: "head head head" auto "side-s content side-e" 1fr "foot foot foot" auto / auto 1fr auto;\n }\n}\n'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={section:"Of4tTl8AUorfrEJSg9nX"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/core/theme/Theme.module.css":(module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .y52Cooh48Q4M3_MBo9A0 > * {\n background-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 99%, color(from var(--tint) srgb r g b / 1));\n }\n}\n',"",{version:3,sources:["webpack://./packages/core/src/core/theme/Theme.module.css"],names:[],mappings:"AAAA;;;;;;;;;;;;;;;;;;;;;EAqBE;;AAEF;IAEI;MACE,6HAA6C;IAC/C;AAEJ",sourcesContent:['/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .themeProvider {\n & > * {\n background-color: theme(backgroundColor.base);\n }\n }\n}\n'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={themeProvider:"y52Cooh48Q4M3_MBo9A0"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/core/viewport/Viewport.module.css":(module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .Q3CSO8_MsNMPhJ3ycPaK {\n --fabric-viewport: color-mix(in lab, var(--fabric-bg) 76%, var(--tint));\n\n grid-template: "head head head" auto "crumbbar crumbbar crumbbar" auto "side-s content side-e" 1fr "foot foot foot" auto / auto 1fr auto;\n color: var(--fabric-text);\n background-color: var(--fabric-viewport);\n }\n}\n',"",{version:3,sources:["webpack://./packages/core/src/core/viewport/Viewport.module.css"],names:[],mappings:"AAAA;;;;;;;;;;;;;;;;;;;;;EAqBE;;AAEF;EACE;IACE,uEAAuE;;IAEvE,wIAAwI;IACxI,yBAAyB;IACzB,wCAAwC;EAC1C;AACF",sourcesContent:['/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .viewport {\n --fabric-viewport: color-mix(in lab, var(--fabric-bg) 76%, var(--tint));\n\n grid-template: "head head head" auto "crumbbar crumbbar crumbbar" auto "side-s content side-e" 1fr "foot foot foot" auto / auto 1fr auto;\n color: var(--fabric-text);\n background-color: var(--fabric-viewport);\n }\n}\n'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={viewport:"Q3CSO8_MsNMPhJ3ycPaK"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/overlays/alert/Alert.module.css":(module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .FEaFBhIivtBr7ubvemrd {\n z-index: var(--z-overlay);\n\n grid-template: "icon title" auto "icon message" auto "input input" auto "actions actions" auto / auto 1fr;\n gap: 0.5rem 1rem;\n\n margin-top: -100%;\n\n opacity: 0;\n\n transition:\n margin 0.4s,\n opacity 0.3s 0.2s;\n }\n\n .FEaFBhIivtBr7ubvemrd[data-show="true"] {\n margin-top: 0;\n opacity: 1;\n }\n}\n',"",{version:3,sources:["webpack://./packages/core/src/overlays/alert/Alert.module.css"],names:[],mappings:"AAAA;;;;;;;;;;;;;;;;;;;;;EAqBE;;AAEF;EACE;IACE,yBAAyB;;IAEzB,yGAAyG;IACzG,gBAAgB;;IAEhB,iBAAiB;;IAEjB,UAAU;;IAEV;;uBAEmB;EAMrB;;IAJE;MACE,aAAa;MACb,UAAU;IACZ;AAEJ",sourcesContent:['/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .alert {\n z-index: var(--z-overlay);\n\n grid-template: "icon title" auto "icon message" auto "input input" auto "actions actions" auto / auto 1fr;\n gap: 0.5rem 1rem;\n\n margin-top: -100%;\n\n opacity: 0;\n\n transition:\n margin 0.4s,\n opacity 0.3s 0.2s;\n\n &[data-show="true"] {\n margin-top: 0;\n opacity: 1;\n }\n }\n}\n'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={alert:"FEaFBhIivtBr7ubvemrd"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/overlays/flyout/Flyout.module.css":(module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .mNGm8FZTStVMlRgA3fIO {\n z-index: var(--z-overlay);\n width: 32rem;\n max-width: 70vw;\n transition: margin 0.5s;\n }\n\n .mNGm8FZTStVMlRgA3fIO .wGmoXwWAi8iASm7CMjkP {\n background-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 99%, color(from var(--tint) srgb r g b / 1));\n border-bottom: 0.5px solid color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 72%, color(from var(--tint) srgb r g b / 1));\n }\n\n .mNGm8FZTStVMlRgA3fIO .cXHIx0FHY6Zq0IKSrMz7 {\n grid-template: "head head head" auto ". loader ." auto "side-s content side-e" 1fr "foot foot foot" auto / auto 1fr auto;\n }\n\n .mNGm8FZTStVMlRgA3fIO[data-align="start"] {\n margin-inline-start: -100%;\n }\n\n .mNGm8FZTStVMlRgA3fIO[data-align="end"] {\n margin-inline-end: -100%;\n }\n\n .mNGm8FZTStVMlRgA3fIO[data-show="true"] {\n margin: 0;\n }\n}\n',"",{version:3,sources:["webpack://./packages/core/src/overlays/flyout/Flyout.module.css"],names:[],mappings:"AAAA;;;;;;;;;;;;;;;;;;;;;EAqBE;;AAEF;EACE;IACE,yBAAyB;IACzB,YAAY;IACZ,eAAe;IACf,uBAAuB;EAsBzB;;IApBE;MACE,6HAA6C;MAC7C,sIAAoD;IACtD;;IAEA;MACE,wHAAwH;IAC1H;;IAEA;MACE,0BAA0B;IAC5B;;IAEA;MACE,wBAAwB;IAC1B;;IAEA;MACE,SAAS;IACX;AAEJ",sourcesContent:['/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .flyout {\n z-index: var(--z-overlay);\n width: 32rem;\n max-width: 70vw;\n transition: margin 0.5s;\n\n & .flyoutHeader {\n background-color: theme(backgroundColor.base);\n border-bottom: 0.5px solid theme(borderColor.dimmed);\n }\n\n & .flyoutBody {\n grid-template: "head head head" auto ". loader ." auto "side-s content side-e" 1fr "foot foot foot" auto / auto 1fr auto;\n }\n\n &[data-align="start"] {\n margin-inline-start: -100%;\n }\n\n &[data-align="end"] {\n margin-inline-end: -100%;\n }\n\n &[data-show="true"] {\n margin: 0;\n }\n }\n}\n'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={flyout:"mNGm8FZTStVMlRgA3fIO",flyoutHeader:"wGmoXwWAi8iASm7CMjkP",flyoutBody:"cXHIx0FHY6Zq0IKSrMz7"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/overlays/message/Message.module.css":(module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .gyXM4YJbi8gOel9wtldD {\n margin-top: -100%;\n opacity: 0;\n transition:\n margin 0.4s,\n opacity 0.3s 0.2s;\n }\n\n .gyXM4YJbi8gOel9wtldD[data-show="true"] {\n margin-top: 0;\n opacity: 1;\n }\n}\n',"",{version:3,sources:["webpack://./packages/core/src/overlays/message/Message.module.css"],names:[],mappings:"AAAA;;;;;;;;;;;;;;;;;;;;;EAqBE;;AAEF;EACE;IACE,iBAAiB;IACjB,UAAU;IACV;;uBAEmB;EAMrB;;IAJE;MACE,aAAa;MACb,UAAU;IACZ;AAEJ",sourcesContent:['/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .message {\n margin-top: -100%;\n opacity: 0;\n transition:\n margin 0.4s,\n opacity 0.3s 0.2s;\n\n &[data-show="true"] {\n margin-top: 0;\n opacity: 1;\n }\n }\n}\n'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={message:"gyXM4YJbi8gOel9wtldD"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/overlays/modal/Modal.module.css":(module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .Wzfob7p1wecTOAlZau2c {\n z-index: var(--z-overlay);\n\n width: 32rem;\n max-width: 90vw;\n max-height: 90vh;\n margin-top: -100%;\n\n opacity: 0;\n\n transition:\n margin 0.4s,\n opacity 0.3s 0.2s;\n }\n\n .Wzfob7p1wecTOAlZau2c[data-show="true"] {\n margin-top: 0;\n opacity: 1;\n }\n\n .Wzfob7p1wecTOAlZau2c .RUNfDZlWrgq3sszsPF1r {\n background-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 99%, color(from var(--tint) srgb r g b / 1));\n border-bottom: 0.5px solid color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 72%, color(from var(--tint) srgb r g b / 1));\n }\n\n .Wzfob7p1wecTOAlZau2c .j6Fwxqi5FKflDpL_rp64 {\n grid-template: "head head head" auto ". loader ." auto "side-s content side-e" 1fr "foot foot foot" auto / auto 1fr auto;\n }\n}\n',"",{version:3,sources:["webpack://./packages/core/src/overlays/modal/Modal.module.css"],names:[],mappings:"AAAA;;;;;;;;;;;;;;;;;;;;;EAqBE;;AAEF;EACE;IACE,yBAAyB;;IAEzB,YAAY;IACZ,eAAe;IACf,gBAAgB;IAChB,iBAAiB;;IAEjB,UAAU;;IAEV;;uBAEmB;EAerB;;IAbE;MACE,aAAa;MACb,UAAU;IACZ;;IAEA;MACE,6HAA6C;MAC7C,sIAAoD;IACtD;;IAEA;MACE,wHAAwH;IAC1H;AAEJ",sourcesContent:['/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .modal {\n z-index: var(--z-overlay);\n\n width: 32rem;\n max-width: 90vw;\n max-height: 90vh;\n margin-top: -100%;\n\n opacity: 0;\n\n transition:\n margin 0.4s,\n opacity 0.3s 0.2s;\n\n &[data-show="true"] {\n margin-top: 0;\n opacity: 1;\n }\n\n & .modalHeader {\n background-color: theme(backgroundColor.base);\n border-bottom: 0.5px solid theme(borderColor.dimmed);\n }\n\n & .modalBody {\n grid-template: "head head head" auto ". loader ." auto "side-s content side-e" 1fr "foot foot foot" auto / auto 1fr auto;\n }\n }\n}\n'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={modal:"Wzfob7p1wecTOAlZau2c",modalHeader:"RUNfDZlWrgq3sszsPF1r",modalBody:"j6Fwxqi5FKflDpL_rp64"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/overlays/toast/Toast.module.css":(module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .reDYdWdzfuJI8d0magBb {\n margin-bottom: -100%;\n opacity: 0;\n transition:\n margin 0.4s,\n opacity 0.3s 0.2s;\n }\n\n .reDYdWdzfuJI8d0magBb[data-show="true"] {\n margin-bottom: 0;\n opacity: 1;\n }\n}\n',"",{version:3,sources:["webpack://./packages/core/src/overlays/toast/Toast.module.css"],names:[],mappings:"AAAA;;;;;;;;;;;;;;;;;;;;;EAqBE;;AAEF;EACE;IACE,oBAAoB;IACpB,UAAU;IACV;;uBAEmB;EAMrB;;IAJE;MACE,gBAAgB;MAChB,UAAU;IACZ;AAEJ",sourcesContent:['/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .toast {\n margin-bottom: -100%;\n opacity: 0;\n transition:\n margin 0.4s,\n opacity 0.3s 0.2s;\n\n &[data-show="true"] {\n margin-bottom: 0;\n opacity: 1;\n }\n }\n}\n'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={toast:"reDYdWdzfuJI8d0magBb"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/overlays/tooltip/Tooltip.module.css":(module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .LoXcEpwmL9Agrto9L3lg {\n z-index: var(--z-tooltip);\n color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 90%, color(from var(--tint) srgb r g b / 1));\n }\n\n .LoXcEpwmL9Agrto9L3lg[data-color="primary"] {\n color: color-mix(in lab, color(from var(--primary) srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n }\n\n .LoXcEpwmL9Agrto9L3lg[data-color="accent"] {\n color: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n }\n\n .LoXcEpwmL9Agrto9L3lg[data-color="info"] {\n color: color-mix(in lab, color(from #00bfff srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n }\n\n .LoXcEpwmL9Agrto9L3lg[data-color="danger"] {\n color: color-mix(in lab, color(from #f24c3d srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n }\n\n .LoXcEpwmL9Agrto9L3lg[data-color="success"] {\n color: color-mix(in lab, color(from #44bc69 srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n }\n\n .LoXcEpwmL9Agrto9L3lg[data-color="warning"] {\n color: color-mix(in lab, color(from #edaa00 srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n }\n}\n',"",{version:3,sources:["webpack://./packages/core/src/overlays/tooltip/Tooltip.module.css"],names:[],mappings:"AAAA;;;;;;;;;;;;;;;;;;;;;EAqBE;;AAEF;EACE;IACE,yBAAyB;IACzB,kHAAoC;EAyBtC;;IAvBE;MACE,qHAAgC;IAClC;;IAEA;MACE,oHAA+B;IACjC;;IAEA;MACE,8GAA6B;IAC/B;;IAEA;MACE,8GAA+B;IACjC;;IAEA;MACE,8GAAgC;IAClC;;IAEA;MACE,8GAAgC;IAClC;AAEJ",sourcesContent:['/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .tooltip {\n z-index: var(--z-tooltip);\n color: theme(backgroundColor.dimmed);\n\n &[data-color="primary"] {\n color: theme(colors.primary.200);\n }\n\n &[data-color="accent"] {\n color: theme(colors.accent.200);\n }\n\n &[data-color="info"] {\n color: theme(colors.info.200);\n }\n\n &[data-color="danger"] {\n color: theme(colors.danger.200);\n }\n\n &[data-color="success"] {\n color: theme(colors.success.200);\n }\n\n &[data-color="warning"] {\n color: theme(colors.warning.200);\n }\n }\n}\n'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={tooltip:"LoXcEpwmL9Agrto9L3lg"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/typography/Typography.module.css":(module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .Qh57xsVax8MNms8Txi3D {\n line-height: 1.125;\n }\n\n .WEJ9kSOg9P9T6T7rrbEV {\n margin: -0.25rem 0 0.25rem;\n text-align: end;\n }\n\n .WEJ9kSOg9P9T6T7rrbEV > span {\n cursor: pointer;\n -webkit-user-select: none;\n -moz-user-select: none;\n user-select: none;\n font-size: 0.75rem;\n color: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n }\n\n .WEJ9kSOg9P9T6T7rrbEV > span:hover {\n color: color(from var(--accent) srgb r g b / 1);\n text-decoration: underline;\n text-underline-offset: 2px;\n }\n}\n\n@layer util {\n .eNMv6REpuE0TlJsrjPln {\n -webkit-line-clamp: var(--text-clamp);\n }\n\n .cUk0ErlECbvfecnVltlw {\n --abbr-color: var(--accent);\n\n color: color-mix(in lab, var(--abbr-color) 50%, var(--fabric-text));\n }\n\n .Mxw_MrVKZrPlTWAd1jFA {\n --mark-color: var(--primary);\n\n background-color: color-mix(\n in lab,\n var(--mark-color) 25%,\n var(--fabric-bg)\n );\n }\n}\n',"",{version:3,sources:["webpack://./packages/core/src/typography/Typography.module.css"],names:[],mappings:"AAAA;;;;;;;;;;;;;;;;;;;;;EAqBE;;AAEF;EACE;IACE,kBAAkB;EACpB;;EAEA;IACE,0BAA0B;IAC1B,eAAe;EAcjB;;IAZE;MACE,eAAe;MACf,yBAAiB;SAAjB,sBAAiB;cAAjB,iBAAiB;MACjB,kBAAkB;MAClB,sHAA+B;IAOjC;;MALE;QACE,+CAA+B;QAC/B,0BAA0B;QAC1B,0BAA0B;MAC5B;AAGN;;AAEA;EACE;IACE,qCAAqC;EACvC;;EAEA;IACE,2BAA2B;;IAE3B,mEAAmE;EACrE;;EAEA;IACE,4BAA4B;;IAE5B;;;;KAIC;EACH;AACF",sourcesContent:['/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .title {\n line-height: 1.125;\n }\n\n .moreLink {\n margin: -0.25rem 0 0.25rem;\n text-align: end;\n\n & > span {\n cursor: pointer;\n user-select: none;\n font-size: 0.75rem;\n color: theme(colors.accent.700);\n\n &:hover {\n color: theme(colors.accent.500);\n text-decoration: underline;\n text-underline-offset: 2px;\n }\n }\n }\n}\n\n@layer util {\n .text {\n -webkit-line-clamp: var(--text-clamp);\n }\n\n .abbr {\n --abbr-color: var(--accent);\n\n color: color-mix(in lab, var(--abbr-color) 50%, var(--fabric-text));\n }\n\n .mark {\n --mark-color: var(--primary);\n\n background-color: color-mix(\n in lab,\n var(--mark-color) 25%,\n var(--fabric-bg)\n );\n }\n}\n'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={title:"Qh57xsVax8MNms8Txi3D",moreLink:"WEJ9kSOg9P9T6T7rrbEV",text:"eNMv6REpuE0TlJsrjPln",abbr:"cUk0ErlECbvfecnVltlw",mark:"Mxw_MrVKZrPlTWAd1jFA"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./packages/core/src/components/button/Button.module.css":(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_style_loader_dist_runtime_injectStylesIntoStyleTag_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js"),_node_modules_style_loader_dist_runtime_injectStylesIntoStyleTag_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_style_loader_dist_runtime_injectStylesIntoStyleTag_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_style_loader_dist_runtime_styleDomAPI_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/style-loader/dist/runtime/styleDomAPI.js"),_node_modules_style_loader_dist_runtime_styleDomAPI_js__WEBPACK_IMPORTED_MODULE_1___default=__webpack_require__.n(_node_modules_style_loader_dist_runtime_styleDomAPI_js__WEBPACK_IMPORTED_MODULE_1__),_node_modules_style_loader_dist_runtime_insertBySelector_js__WEBPACK_IMPORTED_MODULE_2__=__webpack_require__("./node_modules/style-loader/dist/runtime/insertBySelector.js"),_node_modules_style_loader_dist_runtime_insertBySelector_js__WEBPACK_IMPORTED_MODULE_2___default=__webpack_require__.n(_node_modules_style_loader_dist_runtime_insertBySelector_js__WEBPACK_IMPORTED_MODULE_2__),_node_modules_style_loader_dist_runtime_setAttributesWithoutAttributes_js__WEBPACK_IMPORTED_MODULE_3__=__webpack_require__("./node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js"),_node_modules_style_loader_dist_runtime_setAttributesWithoutAttributes_js__WEBPACK_IMPORTED_MODULE_3___default=__webpack_require__.n(_node_modules_style_loader_dist_runtime_setAttributesWithoutAttributes_js__WEBPACK_IMPORTED_MODULE_3__),_node_modules_style_loader_dist_runtime_insertStyleElement_js__WEBPACK_IMPORTED_MODULE_4__=__webpack_require__("./node_modules/style-loader/dist/runtime/insertStyleElement.js"),_node_modules_style_loader_dist_runtime_insertStyleElement_js__WEBPACK_IMPORTED_MODULE_4___default=__webpack_require__.n(_node_modules_style_loader_dist_runtime_insertStyleElement_js__WEBPACK_IMPORTED_MODULE_4__),_node_modules_style_loader_dist_runtime_styleTagTransform_js__WEBPACK_IMPORTED_MODULE_5__=__webpack_require__("./node_modules/style-loader/dist/runtime/styleTagTransform.js"),_node_modules_style_loader_dist_runtime_styleTagTransform_js__WEBPACK_IMPORTED_MODULE_5___default=__webpack_require__.n(_node_modules_style_loader_dist_runtime_styleTagTransform_js__WEBPACK_IMPORTED_MODULE_5__),_node_modules_css_loader_dist_cjs_js_ruleSet_1_rules_7_use_1_node_modules_postcss_loader_dist_cjs_js_ruleSet_1_rules_7_use_2_Button_module_css__WEBPACK_IMPORTED_MODULE_6__=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/components/button/Button.module.css"),options={};options.styleTagTransform=_node_modules_style_loader_dist_runtime_styleTagTransform_js__WEBPACK_IMPORTED_MODULE_5___default(),options.setAttributes=_node_modules_style_loader_dist_runtime_setAttributesWithoutAttributes_js__WEBPACK_IMPORTED_MODULE_3___default(),options.insert=_node_modules_style_loader_dist_runtime_insertBySelector_js__WEBPACK_IMPORTED_MODULE_2___default().bind(null,"head"),options.domAPI=_node_modules_style_loader_dist_runtime_styleDomAPI_js__WEBPACK_IMPORTED_MODULE_1___default(),options.insertStyleElement=_node_modules_style_loader_dist_runtime_insertStyleElement_js__WEBPACK_IMPORTED_MODULE_4___default();_node_modules_style_loader_dist_runtime_injectStylesIntoStyleTag_js__WEBPACK_IMPORTED_MODULE_0___default()(_node_modules_css_loader_dist_cjs_js_ruleSet_1_rules_7_use_1_node_modules_postcss_loader_dist_cjs_js_ruleSet_1_rules_7_use_2_Button_module_css__WEBPACK_IMPORTED_MODULE_6__.A,options);const __WEBPACK_DEFAULT_EXPORT__=_node_modules_css_loader_dist_cjs_js_ruleSet_1_rules_7_use_1_node_modules_postcss_loader_dist_cjs_js_ruleSet_1_rules_7_use_2_Button_module_css__WEBPACK_IMPORTED_MODULE_6__.A&&_node_modules_css_loader_dist_cjs_js_ruleSet_1_rules_7_use_1_node_modules_postcss_loader_dist_cjs_js_ruleSet_1_rules_7_use_2_Button_module_css__WEBPACK_IMPORTED_MODULE_6__.A.locals?_node_modules_css_loader_dist_cjs_js_ruleSet_1_rules_7_use_1_node_modules_postcss_loader_dist_cjs_js_ruleSet_1_rules_7_use_2_Button_module_css__WEBPACK_IMPORTED_MODULE_6__.A.locals:void 0},"./packages/core/src/typography/Typography.module.css":(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_style_loader_dist_runtime_injectStylesIntoStyleTag_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js"),_node_modules_style_loader_dist_runtime_injectStylesIntoStyleTag_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_style_loader_dist_runtime_injectStylesIntoStyleTag_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_style_loader_dist_runtime_styleDomAPI_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/style-loader/dist/runtime/styleDomAPI.js"),_node_modules_style_loader_dist_runtime_styleDomAPI_js__WEBPACK_IMPORTED_MODULE_1___default=__webpack_require__.n(_node_modules_style_loader_dist_runtime_styleDomAPI_js__WEBPACK_IMPORTED_MODULE_1__),_node_modules_style_loader_dist_runtime_insertBySelector_js__WEBPACK_IMPORTED_MODULE_2__=__webpack_require__("./node_modules/style-loader/dist/runtime/insertBySelector.js"),_node_modules_style_loader_dist_runtime_insertBySelector_js__WEBPACK_IMPORTED_MODULE_2___default=__webpack_require__.n(_node_modules_style_loader_dist_runtime_insertBySelector_js__WEBPACK_IMPORTED_MODULE_2__),_node_modules_style_loader_dist_runtime_setAttributesWithoutAttributes_js__WEBPACK_IMPORTED_MODULE_3__=__webpack_require__("./node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js"),_node_modules_style_loader_dist_runtime_setAttributesWithoutAttributes_js__WEBPACK_IMPORTED_MODULE_3___default=__webpack_require__.n(_node_modules_style_loader_dist_runtime_setAttributesWithoutAttributes_js__WEBPACK_IMPORTED_MODULE_3__),_node_modules_style_loader_dist_runtime_insertStyleElement_js__WEBPACK_IMPORTED_MODULE_4__=__webpack_require__("./node_modules/style-loader/dist/runtime/insertStyleElement.js"),_node_modules_style_loader_dist_runtime_insertStyleElement_js__WEBPACK_IMPORTED_MODULE_4___default=__webpack_require__.n(_node_modules_style_loader_dist_runtime_insertStyleElement_js__WEBPACK_IMPORTED_MODULE_4__),_node_modules_style_loader_dist_runtime_styleTagTransform_js__WEBPACK_IMPORTED_MODULE_5__=__webpack_require__("./node_modules/style-loader/dist/runtime/styleTagTransform.js"),_node_modules_style_loader_dist_runtime_styleTagTransform_js__WEBPACK_IMPORTED_MODULE_5___default=__webpack_require__.n(_node_modules_style_loader_dist_runtime_styleTagTransform_js__WEBPACK_IMPORTED_MODULE_5__),_node_modules_css_loader_dist_cjs_js_ruleSet_1_rules_7_use_1_node_modules_postcss_loader_dist_cjs_js_ruleSet_1_rules_7_use_2_Typography_module_css__WEBPACK_IMPORTED_MODULE_6__=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/typography/Typography.module.css"),options={};options.styleTagTransform=_node_modules_style_loader_dist_runtime_styleTagTransform_js__WEBPACK_IMPORTED_MODULE_5___default(),options.setAttributes=_node_modules_style_loader_dist_runtime_setAttributesWithoutAttributes_js__WEBPACK_IMPORTED_MODULE_3___default(),options.insert=_node_modules_style_loader_dist_runtime_insertBySelector_js__WEBPACK_IMPORTED_MODULE_2___default().bind(null,"head"),options.domAPI=_node_modules_style_loader_dist_runtime_styleDomAPI_js__WEBPACK_IMPORTED_MODULE_1___default(),options.insertStyleElement=_node_modules_style_loader_dist_runtime_insertStyleElement_js__WEBPACK_IMPORTED_MODULE_4___default();_node_modules_style_loader_dist_runtime_injectStylesIntoStyleTag_js__WEBPACK_IMPORTED_MODULE_0___default()(_node_modules_css_loader_dist_cjs_js_ruleSet_1_rules_7_use_1_node_modules_postcss_loader_dist_cjs_js_ruleSet_1_rules_7_use_2_Typography_module_css__WEBPACK_IMPORTED_MODULE_6__.A,options);const __WEBPACK_DEFAULT_EXPORT__=_node_modules_css_loader_dist_cjs_js_ruleSet_1_rules_7_use_1_node_modules_postcss_loader_dist_cjs_js_ruleSet_1_rules_7_use_2_Typography_module_css__WEBPACK_IMPORTED_MODULE_6__.A&&_node_modules_css_loader_dist_cjs_js_ruleSet_1_rules_7_use_1_node_modules_postcss_loader_dist_cjs_js_ruleSet_1_rules_7_use_2_Typography_module_css__WEBPACK_IMPORTED_MODULE_6__.A.locals?_node_modules_css_loader_dist_cjs_js_ruleSet_1_rules_7_use_1_node_modules_postcss_loader_dist_cjs_js_ruleSet_1_rules_7_use_2_Typography_module_css__WEBPACK_IMPORTED_MODULE_6__.A.locals:void 0}}]); \ No newline at end of file diff --git a/2547.f88bd82f.iframe.bundle.js b/2547.f88bd82f.iframe.bundle.js deleted file mode 100644 index e529fa5..0000000 --- a/2547.f88bd82f.iframe.bundle.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";(self.webpackChunkreact_fabric=self.webpackChunkreact_fabric||[]).push([[2547],{"./packages/core/src/components/animations/Animations.tsx":(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{bm:()=>AnimationBars,QK:()=>AnimationIndicator,Cv:()=>AnimationSpinner,Rh:()=>Loading,EA:()=>Skeleton});var jsx_runtime=__webpack_require__("./node_modules/react/jsx-runtime.js"),classnames=__webpack_require__("./node_modules/classnames/index.js"),classnames_default=__webpack_require__.n(classnames),react=__webpack_require__("./node_modules/react/index.js"),useEffectDebugger=__webpack_require__("./packages/core/src/hooks/useEffectDebugger.ts"),utils=__webpack_require__("./packages/core/src/utils/index.ts"),injectStylesIntoStyleTag=__webpack_require__("./node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js"),injectStylesIntoStyleTag_default=__webpack_require__.n(injectStylesIntoStyleTag),styleDomAPI=__webpack_require__("./node_modules/style-loader/dist/runtime/styleDomAPI.js"),styleDomAPI_default=__webpack_require__.n(styleDomAPI),insertBySelector=__webpack_require__("./node_modules/style-loader/dist/runtime/insertBySelector.js"),insertBySelector_default=__webpack_require__.n(insertBySelector),setAttributesWithoutAttributes=__webpack_require__("./node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js"),setAttributesWithoutAttributes_default=__webpack_require__.n(setAttributesWithoutAttributes),insertStyleElement=__webpack_require__("./node_modules/style-loader/dist/runtime/insertStyleElement.js"),insertStyleElement_default=__webpack_require__.n(insertStyleElement),styleTagTransform=__webpack_require__("./node_modules/style-loader/dist/runtime/styleTagTransform.js"),styleTagTransform_default=__webpack_require__.n(styleTagTransform),Animations_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/components/animations/Animations.module.css"),options={};options.styleTagTransform=styleTagTransform_default(),options.setAttributes=setAttributesWithoutAttributes_default(),options.insert=insertBySelector_default().bind(null,"head"),options.domAPI=styleDomAPI_default(),options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(Animations_module.A,options);const animations_Animations_module=Animations_module.A&&Animations_module.A.locals?Animations_module.A.locals:void 0,AnimationIndicator=({className,color,strokeColor,type,...aria})=>{const styles=(0,useEffectDebugger.ZU)((()=>{const s={};return color&&(s.color=(0,utils.oU)(color)),strokeColor&&(s.stroke=(0,utils.oU)(strokeColor)),s}),[color,strokeColor],"Animation styles"),path=(0,react.useMemo)((()=>"check"===type?"M14.1 27.2l7.1 7.2 16.7-16.8":"cross"===type?"M14.1 14.1l23.8 23.8 m0,-23.8 l-23.8,23.8":"question"===type?"M18.949 17.621c0.426-0.787 1.354-1.6 2.108-2.223 1.279-0.984 3.87-1.778 5.805-1.778 3.837 0 6.189 2.689 6.189 6.034 0 2.23-1.193 4.214-3.751 6.346-2.886 2.361-3.497 3.362-3.497 5.788v0c0-2.263 0.689-3.509 3.476-5.772 2.689-2.23 3.772-3.968 3.772-6.362 0-3.772-2.492-6.034-6.789-6.034-2.132 0-3.903 0.722-5.28 1.804-0.82 0.623-1.476 1.377-2.033 2.197zM26 41.329v0-2.948z":"exclaim"===type?"M26.611 10.873c-0.002 1.015-0.002 2.071-0.002 3.086v11.777c0 3.086 0.002 2.232 0 3.288h-0.018c-0.001-1.056 0-0.202 0-3.288v-11.777c0-1.015 0-2.071-0.002-3.086zM26.59 37.472h0.018v3.655h-0.018z":"M26 22L26 41M27 22L27 41M25 22L25 41M26 11L26 16M27 11L27 16M25 11L25 16Z"),[type]);return(0,jsx_runtime.jsxs)("svg",{"data-ref":"animated-indicator",className:classnames_default()(animations_Animations_module.checkAnimation,className,"inline-block rounded-full",color&&(0,utils.Iq)(color)),style:styles,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 52 52","aria-hidden":"true",...aria,children:[(0,jsx_runtime.jsx)("circle",{className:animations_Animations_module.circlePart,cx:"26",cy:"26",r:"25"}),(0,jsx_runtime.jsx)("path",{className:classnames_default()(animations_Animations_module.iconPart,(0,utils.Iq)(strokeColor??"invert")),d:path})]})},AnimationBars=({color="tint",size="2rem"})=>(0,jsx_runtime.jsx)("div",{className:classnames_default()("absolute inset-0 z-10 flex justify-center items-center cursor-wait"),children:(0,jsx_runtime.jsx)("div",{className:classnames_default()("outline outline-tint-500/20 p-4 bg-base/50 backdrop-blur-sm rounded"),children:(0,jsx_runtime.jsx)("div",{className:classnames_default()(animations_Animations_module.bars,(0,utils.Iq)(color+"-500/50")),style:{width:size}})})}),AnimationSpinner=({color="tint-700",size="2rem"})=>(0,jsx_runtime.jsx)("div",{className:classnames_default()("absolute inset-0 z-10 flex justify-center items-center cursor-wait"),"data-testid":"spinner",children:(0,jsx_runtime.jsx)("div",{className:classnames_default()("outline outline-tint-500/20 p-4 bg-base/50 backdrop-blur-sm rounded"),children:(0,jsx_runtime.jsx)("div",{className:classnames_default()(animations_Animations_module.spinner,(0,utils.Iq)(color)),style:{width:size}})})}),Loading=()=>(0,jsx_runtime.jsx)("div",{className:classnames_default()(animations_Animations_module.loader,"area-[loader] relative overflow-x-clip"),"data-testid":"loading",children:(0,jsx_runtime.jsx)("div",{className:"absolute z-10 py-px inset-x-0 top-0 after:h-0.5 after:block after:bg-primary-500"})}),Skeleton=({className,...rest})=>(0,jsx_runtime.jsxs)("div",{className:classnames_default()(className,"p-2 animate-pulse flex gap-2 max-w-lg"),"data-testid":"skeleton",...rest,children:[(0,jsx_runtime.jsx)("div",{className:"bg-tint-100 rounded aspect-square h-12"}),(0,jsx_runtime.jsxs)("div",{className:"flex-1 flex flex-col gap-2",children:[(0,jsx_runtime.jsx)("div",{className:"bg-tint-100 h-3 rounded-full"}),(0,jsx_runtime.jsxs)("div",{className:"flex gap-2",children:[(0,jsx_runtime.jsx)("div",{className:"bg-tint-100 h-2 rounded-full basis-[30%]"}),(0,jsx_runtime.jsx)("div",{className:"bg-tint-100 h-2 rounded-full basis-[60%]"})]}),(0,jsx_runtime.jsxs)("div",{className:"flex gap-2",children:[(0,jsx_runtime.jsx)("div",{className:"bg-tint-100 h-2 rounded-full basis-[30%]"}),(0,jsx_runtime.jsx)("div",{className:"bg-tint-100 h-2 rounded-full basis-[60%]"})]})]})]});try{AnimationIndicator.displayName="AnimationIndicator",AnimationIndicator.__docgenInfo={description:"",displayName:"AnimationIndicator",props:{type:{defaultValue:null,description:"",name:"type",required:!1,type:{name:"enum",value:[{value:'"info"'},{value:'"check"'},{value:'"cross"'},{value:'"question"'},{value:'"exclaim"'}]}},color:{defaultValue:{value:"tint-700"},description:"icon color",name:"color",required:!1,type:{name:"enum",value:[{value:'"primary"'},{value:'"accent"'},{value:'"info"'},{value:'"danger"'},{value:'"success"'},{value:'"warning"'},{value:'"scarlet"'},{value:'"pumpkin"'},{value:'"marigold"'},{value:'"avacado"'},{value:'"jade"'},{value:'"denim"'},{value:'"iris"'},{value:'"lilac"'},{value:'"coral"'},{value:'"wood"'},{value:'"silver"'},{value:'"steel"'},{value:'"olive"'},{value:'"sand"'}]}},strokeColor:{defaultValue:null,description:"icon mark color",name:"strokeColor",required:!1,type:{name:"enum",value:[{value:'"primary"'},{value:'"accent"'},{value:'"info"'},{value:'"danger"'},{value:'"success"'},{value:'"warning"'},{value:'"scarlet"'},{value:'"pumpkin"'},{value:'"marigold"'},{value:'"avacado"'},{value:'"jade"'},{value:'"denim"'},{value:'"iris"'},{value:'"lilac"'},{value:'"coral"'},{value:'"wood"'},{value:'"silver"'},{value:'"steel"'},{value:'"olive"'},{value:'"sand"'}]}},className:{defaultValue:null,description:"css classname(s)",name:"className",required:!1,type:{name:"string"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/components/animations/Animations.tsx#AnimationIndicator"]={docgenInfo:AnimationIndicator.__docgenInfo,name:"AnimationIndicator",path:"packages/core/src/components/animations/Animations.tsx#AnimationIndicator"})}catch(__react_docgen_typescript_loader_error){}try{AnimationBars.displayName="AnimationBars",AnimationBars.__docgenInfo={description:"",displayName:"AnimationBars",props:{color:{defaultValue:{value:"tint-700"},description:"",name:"color",required:!1,type:{name:"string"}},size:{defaultValue:{value:"2rem"},description:"",name:"size",required:!1,type:{name:"string | number"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/components/animations/Animations.tsx#AnimationBars"]={docgenInfo:AnimationBars.__docgenInfo,name:"AnimationBars",path:"packages/core/src/components/animations/Animations.tsx#AnimationBars"})}catch(__react_docgen_typescript_loader_error){}try{AnimationSpinner.displayName="AnimationSpinner",AnimationSpinner.__docgenInfo={description:"",displayName:"AnimationSpinner",props:{color:{defaultValue:{value:"tint-700"},description:"",name:"color",required:!1,type:{name:"string"}},size:{defaultValue:{value:"2rem"},description:"",name:"size",required:!1,type:{name:"string | number"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/components/animations/Animations.tsx#AnimationSpinner"]={docgenInfo:AnimationSpinner.__docgenInfo,name:"AnimationSpinner",path:"packages/core/src/components/animations/Animations.tsx#AnimationSpinner"})}catch(__react_docgen_typescript_loader_error){}try{Skeleton.displayName="Skeleton",Skeleton.__docgenInfo={description:"",displayName:"Skeleton",props:{className:{defaultValue:null,description:"css classname(s)",name:"className",required:!1,type:{name:"string"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/components/animations/Animations.tsx#Skeleton"]={docgenInfo:Skeleton.__docgenInfo,name:"Skeleton",path:"packages/core/src/components/animations/Animations.tsx#Skeleton"})}catch(__react_docgen_typescript_loader_error){}},"./packages/core/src/components/badge/Badge.tsx":(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{E:()=>Badge,l:()=>getBadgeProps});var jsx_runtime=__webpack_require__("./node_modules/react/jsx-runtime.js"),esm=__webpack_require__("./packages/utilities/dist/esm/index.js"),classnames=__webpack_require__("./node_modules/classnames/index.js"),classnames_default=__webpack_require__.n(classnames),react=__webpack_require__("./node_modules/react/index.js"),Icon=__webpack_require__("./packages/core/src/components/icon/Icon.tsx"),injectStylesIntoStyleTag=__webpack_require__("./node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js"),injectStylesIntoStyleTag_default=__webpack_require__.n(injectStylesIntoStyleTag),styleDomAPI=__webpack_require__("./node_modules/style-loader/dist/runtime/styleDomAPI.js"),styleDomAPI_default=__webpack_require__.n(styleDomAPI),insertBySelector=__webpack_require__("./node_modules/style-loader/dist/runtime/insertBySelector.js"),insertBySelector_default=__webpack_require__.n(insertBySelector),setAttributesWithoutAttributes=__webpack_require__("./node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js"),setAttributesWithoutAttributes_default=__webpack_require__.n(setAttributesWithoutAttributes),insertStyleElement=__webpack_require__("./node_modules/style-loader/dist/runtime/insertStyleElement.js"),insertStyleElement_default=__webpack_require__.n(insertStyleElement),styleTagTransform=__webpack_require__("./node_modules/style-loader/dist/runtime/styleTagTransform.js"),styleTagTransform_default=__webpack_require__.n(styleTagTransform),Badge_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/components/badge/Badge.module.css"),options={};options.styleTagTransform=styleTagTransform_default(),options.setAttributes=setAttributesWithoutAttributes_default(),options.insert=insertBySelector_default().bind(null,"head"),options.domAPI=styleDomAPI_default(),options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(Badge_module.A,options);const badge_Badge_module=Badge_module.A&&Badge_module.A.locals?Badge_module.A.locals:void 0,getBadgeProps=badge=>(0,esm.Gv)(badge)?Object.assign({forButton:!0,placement:""},badge):{value:badge,forButton:!0,placement:""},Badge=({ref,className,value,max,ping,block,placement="top-end",children,forButton=!1,icon,iconBg,iconColor,rtlFlip,...rest})=>{const label=(0,react.useMemo)((()=>{if(!(0,esm.gD)(value))return(0,esm.Et)(value)&&max&&value>max?`${max}+`:`${value}`}),[value,max]),innerRef=(0,react.useMemo)((()=>(0,esm.Px)(ref,children?.props.ref)),[ref,children?.props.ref]);return(0,jsx_runtime.jsxs)("div",{className:classnames_default()(forButton?"contents":"relative",block?"block":"inline-block"),children:[children&&(0,react.cloneElement)(children,{...rest,ref:innerRef}),(!!ping||label)&&(0,jsx_runtime.jsxs)("div",{"data-ref":"badge","data-ping":ping,"data-placement":placement,className:classnames_default()(badge_Badge_module.badge,className,"inline-block p-px min-w-2 min-h-2 text-center select-none rounded-full leading-none z-5 pointer-events-none",forButton&&!placement?"relative":"absolute"),children:[label&&(0,jsx_runtime.jsx)("span",{className:"p-1",children:label}),icon&&(0,jsx_runtime.jsx)(Icon.I,{icon,bg:iconBg,color:iconColor,rtlFlip})]})]})};try{getBadgeProps.displayName="getBadgeProps",getBadgeProps.__docgenInfo={description:"",displayName:"getBadgeProps",props:{value:{defaultValue:null,description:"badge value",name:"value",required:!1,type:{name:"string | number"}},max:{defaultValue:null,description:"max value for number display",name:"max",required:!1,type:{name:"number"}},ping:{defaultValue:null,description:"ping animation",name:"ping",required:!1,type:{name:"boolean"}},className:{defaultValue:null,description:"badge CSS className",name:"className",required:!1,type:{name:"string"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/components/badge/Badge.tsx#getBadgeProps"]={docgenInfo:getBadgeProps.__docgenInfo,name:"getBadgeProps",path:"packages/core/src/components/badge/Badge.tsx#getBadgeProps"})}catch(__react_docgen_typescript_loader_error){}try{Badge.displayName="Badge",Badge.__docgenInfo={description:"",displayName:"Badge",props:{block:{defaultValue:null,description:"make wrapper a block element",name:"block",required:!1,type:{name:"boolean"}},value:{defaultValue:null,description:"badge value",name:"value",required:!1,type:{name:"string | number"}},max:{defaultValue:null,description:"max value for number display",name:"max",required:!1,type:{name:"number"}},ping:{defaultValue:null,description:"ping animation",name:"ping",required:!1,type:{name:"boolean"}},placement:{defaultValue:{value:"top-end"},description:"badge placement",name:"placement",required:!1,type:{name:"enum",value:[{value:'"end"'},{value:'"start"'},{value:'"top-start"'},{value:'"top-end"'},{value:'"bottom-start"'},{value:'"bottom-end"'},{value:'"top"'},{value:'"bottom"'}]}},className:{defaultValue:null,description:"css classname(s)",name:"className",required:!1,type:{name:"string"}},ref:{defaultValue:null,description:"",name:"ref",required:!1,type:{name:"Ref"}},icon:{defaultValue:null,description:"svg path / image url",name:"icon",required:!1,type:{name:"string"}},rtlFlip:{defaultValue:null,description:"flip icon in rtl",name:"rtlFlip",required:!1,type:{name:"boolean"}},iconBg:{defaultValue:null,description:"icon background color",name:"iconBg",required:!1,type:{name:"string"}},iconColor:{defaultValue:null,description:"icon color",name:"iconColor",required:!1,type:{name:"string"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/components/badge/Badge.tsx#Badge"]={docgenInfo:Badge.__docgenInfo,name:"Badge",path:"packages/core/src/components/badge/Badge.tsx#Badge"})}catch(__react_docgen_typescript_loader_error){}},"./packages/core/src/components/button/Button.tsx":(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{$:()=>Button});var react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/react/jsx-runtime.js"),_react_fabric_utilities__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./packages/utilities/dist/esm/index.js"),classnames__WEBPACK_IMPORTED_MODULE_2__=__webpack_require__("./node_modules/classnames/index.js"),classnames__WEBPACK_IMPORTED_MODULE_2___default=__webpack_require__.n(classnames__WEBPACK_IMPORTED_MODULE_2__),react__WEBPACK_IMPORTED_MODULE_3__=__webpack_require__("./node_modules/react/index.js"),_hooks_useEffectDebugger__WEBPACK_IMPORTED_MODULE_4__=__webpack_require__("./packages/core/src/hooks/useEffectDebugger.ts"),_hotkeys_HotKey__WEBPACK_IMPORTED_MODULE_5__=__webpack_require__("./packages/core/src/hotkeys/HotKey.tsx"),_hotkeys_HotKeyLabel__WEBPACK_IMPORTED_MODULE_6__=__webpack_require__("./packages/core/src/hotkeys/HotKeyLabel.tsx"),_overlays_tooltip_Tooltip__WEBPACK_IMPORTED_MODULE_7__=__webpack_require__("./packages/core/src/overlays/tooltip/Tooltip.tsx"),_animations_Animations__WEBPACK_IMPORTED_MODULE_8__=__webpack_require__("./packages/core/src/components/animations/Animations.tsx"),_badge_Badge__WEBPACK_IMPORTED_MODULE_9__=__webpack_require__("./packages/core/src/components/badge/Badge.tsx"),_icon_Icon__WEBPACK_IMPORTED_MODULE_10__=__webpack_require__("./packages/core/src/components/icon/Icon.tsx"),_Button_module_css__WEBPACK_IMPORTED_MODULE_11__=__webpack_require__("./packages/core/src/components/button/Button.module.css");const Button=({as,ref,children,className,active,color="primary",icon,iconBg,iconColor,iconAlign="start",altIcon,rtlFlip,rounded,size,disabled,loading,variant,badge,fullWidth,spinOnHover,onClick,actionMessage,stopPropagation,type="button",hotKey,showActionDone,showActionDoneEvent="click",tabIndex=0,"data-ref":dataRef,...aria})=>{const refEl=(0,react__WEBPACK_IMPORTED_MODULE_3__.useRef)(null),[busy,setBusy]=(0,react__WEBPACK_IMPORTED_MODULE_3__.useState)(!1),[actionDone,setActionDone]=(0,react__WEBPACK_IMPORTED_MODULE_3__.useState)(!1),clickHandler=(0,react__WEBPACK_IMPORTED_MODULE_3__.useCallback)((e=>{setBusy(!0),stopPropagation&&e.stopPropagation();const ret=onClick?.(e);Promise.resolve(ret).then((b=>{setBusy(!1),!1!==b&&actionMessage&&"click"===showActionDoneEvent&&setActionDone(!0)}))}),[onClick,disabled,actionMessage,showActionDoneEvent,stopPropagation]);(0,react__WEBPACK_IMPORTED_MODULE_3__.useEffect)((()=>{actionMessage&&showActionDone&&setActionDone(!0)}),[showActionDone,actionMessage]),(0,_hooks_useEffectDebugger__WEBPACK_IMPORTED_MODULE_4__.al)((()=>{if(actionDone){const timer=setTimeout((()=>setActionDone(!1)),2e3);return()=>clearTimeout(timer)}}),[actionDone],"ActionButton done handler");const TooltipWrapper=(0,react__WEBPACK_IMPORTED_MODULE_3__.useMemo)((()=>actionMessage?_overlays_tooltip_Tooltip__WEBPACK_IMPORTED_MODULE_7__.m:react__WEBPACK_IMPORTED_MODULE_3__.Fragment),[actionMessage,actionDone]),tooltipProps=(0,react__WEBPACK_IMPORTED_MODULE_3__.useMemo)((()=>{if(actionDone&&actionMessage)return{content:actionMessage,placement:"top",color,open:!0}}),[actionDone,actionMessage,color]),badgeProps=(0,react__WEBPACK_IMPORTED_MODULE_3__.useMemo)((()=>(0,_badge_Badge__WEBPACK_IMPORTED_MODULE_9__.l)(badge)),[badge]),hotKeyHandler=(0,react__WEBPACK_IMPORTED_MODULE_3__.useRef)((()=>{!disabled&&refEl.current?.click()})),E=as??"button";return(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxs)("div",{className:classnames__WEBPACK_IMPORTED_MODULE_2___default()(_Button_module_css__WEBPACK_IMPORTED_MODULE_11__.A.buttonWrapper,className,"relative align-text-top select-none focus-within:z-1",fullWidth?"block w-full":"inline-block"),"data-ref":dataRef??"button","data-size":size,"data-loading":busy||loading,"data-disabled":disabled,children:[hotKey&&(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_hotkeys_HotKey__WEBPACK_IMPORTED_MODULE_5__.B,{keyCombo:hotKey,handler:hotKeyHandler.current}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(TooltipWrapper,{...tooltipProps,children:(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxs)(E,{ref:(0,_react_fabric_utilities__WEBPACK_IMPORTED_MODULE_1__.Px)(ref,refEl),role:"button",className:classnames__WEBPACK_IMPORTED_MODULE_2___default()(_Button_module_css__WEBPACK_IMPORTED_MODULE_11__.A.button,"pointer-events-auto cursor-pointer select-none flex flex-nowrap w-full h-full items-center border-0 -outline-offset-1 justify-center max-w-72 p-0 font-sans font-medium appearance-none","focus-visible:ring-2 focus-visible:ring-offset-2 buttonInner",fullWidth&&"max-w-full w-full",rounded&&"rounded-full",spinOnHover&&_Button_module_css__WEBPACK_IMPORTED_MODULE_11__.A.spinOnHover),type,disabled,tabIndex,"data-inner-clickable":!0,onClick:clickHandler,"data-color":color,"data-active":active,"data-variant":variant,...aria,children:[icon&&(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_icon_Icon__WEBPACK_IMPORTED_MODULE_10__.I,{className:_Button_module_css__WEBPACK_IMPORTED_MODULE_11__.A.buttonIcon,icon,bg:iconBg,color:iconColor,rtlFlip,"data-align":iconAlign}),(0,react__WEBPACK_IMPORTED_MODULE_3__.isValidElement)(children)&&(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)("div",{className:_Button_module_css__WEBPACK_IMPORTED_MODULE_11__.A.buttonChild,children}),(0,_react_fabric_utilities__WEBPACK_IMPORTED_MODULE_1__.Kg)(children)&&(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)("label",{className:classnames__WEBPACK_IMPORTED_MODULE_2___default()(_Button_module_css__WEBPACK_IMPORTED_MODULE_11__.A.buttonLabel,"truncate"),"data-colored-icon":!!iconBg,children}),!(0,_react_fabric_utilities__WEBPACK_IMPORTED_MODULE_1__.gD)(badge)&&(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_badge_Badge__WEBPACK_IMPORTED_MODULE_9__.E,{...badgeProps}),hotKey&&(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_hotkeys_HotKeyLabel__WEBPACK_IMPORTED_MODULE_6__.z,{keyCombo:hotKey}),altIcon&&(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_icon_Icon__WEBPACK_IMPORTED_MODULE_10__.I,{className:_Button_module_css__WEBPACK_IMPORTED_MODULE_11__.A.altIcon,icon:altIcon,rtlFlip:!0})]})}),actionDone&&(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)("div",{className:classnames__WEBPACK_IMPORTED_MODULE_2___default()("absolute inset-0 overflow-hidden flex justify-center items-center",`bg-${color}-300`,rounded?"rounded-full":"rounded"),children:(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_animations_Animations__WEBPACK_IMPORTED_MODULE_8__.QK,{type:"check",color})})]})};try{Button.displayName="Button",Button.__docgenInfo={description:"Clickable action button",displayName:"Button",props:{iconAlign:{defaultValue:{value:"start"},description:"primary icon alignment",name:"iconAlign",required:!1,type:{name:"enum",value:[{value:'"end"'},{value:'"start"'}]}},altIcon:{defaultValue:null,description:"alternate icon align end (caret, arrow)",name:"altIcon",required:!1,type:{name:"string"}},size:{defaultValue:null,description:"button size",name:"size",required:!1,type:{name:"enum",value:[{value:'"xs"'},{value:'"sm"'},{value:'"md"'},{value:'"lg"'},{value:'"xl"'}]}},color:{defaultValue:{value:"primary"},description:"button color",name:"color",required:!1,type:{name:"any"}},type:{defaultValue:{value:"button"},description:"button type",name:"type",required:!1,type:{name:"enum",value:[{value:'"button"'},{value:'"reset"'},{value:'"submit"'}]}},variant:{defaultValue:null,description:"button styling",name:"variant",required:!1,type:{name:"enum",value:[{value:'"link"'},{value:'"outline"'},{value:'"solid"'}]}},active:{defaultValue:null,description:"active state with click disabled",name:"active",required:!1,type:{name:"boolean"}},loading:{defaultValue:null,description:"loading state with animation and click disabled",name:"loading",required:!1,type:{name:"boolean"}},rounded:{defaultValue:null,description:"full rounded edges",name:"rounded",required:!1,type:{name:"boolean"}},spinOnHover:{defaultValue:null,description:"spin icon on hover",name:"spinOnHover",required:!1,type:{name:"boolean"}},disabled:{defaultValue:null,description:"disabled state",name:"disabled",required:!1,type:{name:"boolean"}},fullWidth:{defaultValue:null,description:"stretch to full width",name:"fullWidth",required:!1,type:{name:"boolean"}},actionMessage:{defaultValue:null,description:"action completed message works best with `onClick` Promise return.\nTo hide completed message onClick/Promise return should be false",name:"actionMessage",required:!1,type:{name:"string"}},showActionDone:{defaultValue:null,description:"manually force show action message",name:"showActionDone",required:!1,type:{name:"boolean"}},showActionDoneEvent:{defaultValue:{value:"click"},description:"show action message `onClick` or manually by setting `showActionDone` true",name:"showActionDoneEvent",required:!1,type:{name:"enum",value:[{value:'"click"'},{value:'"manual"'}]}},onClick:{defaultValue:null,description:"click handler, return Promise to autoset loading state",name:"onClick",required:!1,type:{name:"((e?: MouseEvent) => unknown)"}},badge:{defaultValue:null,description:"badges",name:"badge",required:!1,type:{name:"string | number | BadgeType"}},hotKey:{defaultValue:null,description:"keyboard shortcut",name:"hotKey",required:!1,type:{name:"string"}},stopPropagation:{defaultValue:null,description:"",name:"stopPropagation",required:!1,type:{name:"boolean"}},onMouseOut:{defaultValue:null,description:"",name:"onMouseOut",required:!1,type:{name:"any"}},onMouseOver:{defaultValue:null,description:"",name:"onMouseOver",required:!1,type:{name:"any"}},onMouseMove:{defaultValue:null,description:"",name:"onMouseMove",required:!1,type:{name:"any"}},onMouseEnter:{defaultValue:null,description:"",name:"onMouseEnter",required:!1,type:{name:"any"}},onMouseLeave:{defaultValue:null,description:"",name:"onMouseLeave",required:!1,type:{name:"any"}},onWheel:{defaultValue:null,description:"",name:"onWheel",required:!1,type:{name:"any"}},className:{defaultValue:null,description:"css classname(s)",name:"className",required:!1,type:{name:"string"}},icon:{defaultValue:null,description:"svg path / image url",name:"icon",required:!1,type:{name:"string"}},rtlFlip:{defaultValue:null,description:"flip icon in rtl",name:"rtlFlip",required:!1,type:{name:"boolean"}},iconBg:{defaultValue:null,description:"icon background color",name:"iconBg",required:!1,type:{name:"string"}},iconColor:{defaultValue:null,description:"icon color",name:"iconColor",required:!1,type:{name:"string"}},ref:{defaultValue:null,description:"",name:"ref",required:!1,type:{name:"Ref"}},"data-testid":{defaultValue:null,description:"data attribute for test id",name:"data-testid",required:!1,type:{name:"string"}},"data-test-value":{defaultValue:null,description:"data attribute for test value",name:"data-test-value",required:!1,type:{name:"any"}},as:{defaultValue:null,description:"The component used for the root node.\nEither a string to use a HTML element or a component.",name:"as",required:!1,type:{name:"ElementType"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/components/button/Button.tsx#Button"]={docgenInfo:Button.__docgenInfo,name:"Button",path:"packages/core/src/components/button/Button.tsx#Button"})}catch(__react_docgen_typescript_loader_error){}},"./packages/core/src/components/icon/Icon.tsx":(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{I:()=>Icon});var jsx_runtime=__webpack_require__("./node_modules/react/jsx-runtime.js"),esm=__webpack_require__("./packages/utilities/dist/esm/index.js"),classnames=__webpack_require__("./node_modules/classnames/index.js"),classnames_default=__webpack_require__.n(classnames),react=__webpack_require__("./node_modules/react/index.js"),utils=__webpack_require__("./packages/core/src/utils/index.ts"),injectStylesIntoStyleTag=__webpack_require__("./node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js"),injectStylesIntoStyleTag_default=__webpack_require__.n(injectStylesIntoStyleTag),styleDomAPI=__webpack_require__("./node_modules/style-loader/dist/runtime/styleDomAPI.js"),styleDomAPI_default=__webpack_require__.n(styleDomAPI),insertBySelector=__webpack_require__("./node_modules/style-loader/dist/runtime/insertBySelector.js"),insertBySelector_default=__webpack_require__.n(insertBySelector),setAttributesWithoutAttributes=__webpack_require__("./node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js"),setAttributesWithoutAttributes_default=__webpack_require__.n(setAttributesWithoutAttributes),insertStyleElement=__webpack_require__("./node_modules/style-loader/dist/runtime/insertStyleElement.js"),insertStyleElement_default=__webpack_require__.n(insertStyleElement),styleTagTransform=__webpack_require__("./node_modules/style-loader/dist/runtime/styleTagTransform.js"),styleTagTransform_default=__webpack_require__.n(styleTagTransform),Icon_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/components/icon/Icon.module.css"),options={};options.styleTagTransform=styleTagTransform_default(),options.setAttributes=setAttributesWithoutAttributes_default(),options.insert=insertBySelector_default().bind(null,"head"),options.domAPI=styleDomAPI_default(),options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(Icon_module.A,options);const icon_Icon_module=Icon_module.A&&Icon_module.A.locals?Icon_module.A.locals:void 0,SvgTextSize=["",".875em",".525em",".35em",".25em"],SizeMap={xs:"0.625rem",sm:"0.875rem",md:"1.125rem",lg:"1.5rem",xl:"2rem"},Icon=({ref,icon,bg,color,size="",rtlFlip,animate,rounded,viewBox="0 0 24 24",className,onClick,...rest})=>{const styles=(0,react.useMemo)((()=>{const s={};return bg&&(s.backgroundColor=(0,utils.oU)(bg)),color&&(s.color=(0,utils.oU)(color)),size&&!(size in SizeMap)&&(s.fontSize=size),size&&size in SizeMap&&(s.fontSize=SizeMap[size]),s}),[bg,color,size]),isSvg=(0,react.useMemo)((()=>(0,esm.yX)(icon)),[icon]),iconEl=(0,react.useMemo)((()=>{if(!(0,esm.Kg)(icon))throw Error("Invalid icon expected string");return isSvg?(0,jsx_runtime.jsx)("svg",{viewBox,children:(0,jsx_runtime.jsx)("path",{fill:"currentColor",d:icon.toString()})}):icon?.toString().length<=4?(0,jsx_runtime.jsx)("svg",{role:"img",children:(0,jsx_runtime.jsx)("text",{x:"50%",y:"50%",dy:".1em",dominantBaseline:"middle",textAnchor:"middle",style:{fontSize:SvgTextSize[icon.length]??"1em"},children:icon})}):(0,jsx_runtime.jsx)("i",{className:`${icon}`})}),[icon,isSvg,viewBox]);return(0,jsx_runtime.jsx)("dfn",{...rest,ref,role:"presentation",className:classnames_default()(icon_Icon_module.icon,className,"select-none overflow-hidden inline-block box-content leading-none not-italic text-center",bg&&(0,utils.MN)(bg),color&&(0,utils.Iq)(color),!rounded&&"rounded",rounded&&"rounded-full",animate&&`animate-${animate}`),onClick,"data-flip":rtlFlip,style:styles,"data-clickable":!!onClick,"data-inner-clickable":!!onClick,children:iconEl})};try{Icon.displayName="Icon",Icon.__docgenInfo={description:"An icon is a display component for svg icon path / image",displayName:"Icon",props:{icon:{defaultValue:null,description:"svg path / webfont className / 1-4 letter text",name:"icon",required:!0,type:{name:"string"}},bg:{defaultValue:null,description:"background color (CSS color / tailwind color)",name:"bg",required:!1,type:{name:"string"}},color:{defaultValue:null,description:"icon color (CSS color / tailwind color)",name:"color",required:!1,type:{name:"string"}},rtlFlip:{defaultValue:null,description:"flip icon in rtl",name:"rtlFlip",required:!1,type:{name:"boolean"}},size:{defaultValue:{value:""},description:"icon size",name:"size",required:!1,type:{name:"string | number"}},viewBox:{defaultValue:{value:"0 0 24 24"},description:"viewbox for svg path (default 24)",name:"viewBox",required:!1,type:{name:"string"}},rounded:{defaultValue:null,description:"rounded icon",name:"rounded",required:!1,type:{name:"boolean"}},animate:{defaultValue:null,description:"apply animation",name:"animate",required:!1,type:{name:"enum",value:[{value:'"spin"'},{value:'"pulse"'},{value:'"bounce"'}]}},onClick:{defaultValue:null,description:"click handler",name:"onClick",required:!1,type:{name:"MouseEventHandler"}},className:{defaultValue:null,description:"css classname(s)",name:"className",required:!1,type:{name:"string"}},ref:{defaultValue:null,description:"",name:"ref",required:!1,type:{name:"Ref"}},"data-testid":{defaultValue:null,description:"data attribute for test id",name:"data-testid",required:!1,type:{name:"string"}},"data-test-value":{defaultValue:null,description:"data attribute for test value",name:"data-test-value",required:!1,type:{name:"any"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/components/icon/Icon.tsx#Icon"]={docgenInfo:Icon.__docgenInfo,name:"Icon",path:"packages/core/src/components/icon/Icon.tsx#Icon"})}catch(__react_docgen_typescript_loader_error){}},"./packages/core/src/core/headfoot/HeadFoot.tsx":(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{w:()=>Footer,Y:()=>Header});var jsx_runtime=__webpack_require__("./node_modules/react/jsx-runtime.js"),classnames=__webpack_require__("./node_modules/classnames/index.js"),classnames_default=__webpack_require__.n(classnames),useEffectDebugger=__webpack_require__("./packages/core/src/hooks/useEffectDebugger.ts"),utils=__webpack_require__("./packages/core/src/utils/index.ts"),injectStylesIntoStyleTag=__webpack_require__("./node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js"),injectStylesIntoStyleTag_default=__webpack_require__.n(injectStylesIntoStyleTag),styleDomAPI=__webpack_require__("./node_modules/style-loader/dist/runtime/styleDomAPI.js"),styleDomAPI_default=__webpack_require__.n(styleDomAPI),insertBySelector=__webpack_require__("./node_modules/style-loader/dist/runtime/insertBySelector.js"),insertBySelector_default=__webpack_require__.n(insertBySelector),setAttributesWithoutAttributes=__webpack_require__("./node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js"),setAttributesWithoutAttributes_default=__webpack_require__.n(setAttributesWithoutAttributes),insertStyleElement=__webpack_require__("./node_modules/style-loader/dist/runtime/insertStyleElement.js"),insertStyleElement_default=__webpack_require__.n(insertStyleElement),styleTagTransform=__webpack_require__("./node_modules/style-loader/dist/runtime/styleTagTransform.js"),styleTagTransform_default=__webpack_require__.n(styleTagTransform),HeadFoot_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/core/headfoot/HeadFoot.module.css"),options={};options.styleTagTransform=styleTagTransform_default(),options.setAttributes=setAttributesWithoutAttributes_default(),options.insert=insertBySelector_default().bind(null,"head"),options.domAPI=styleDomAPI_default(),options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(HeadFoot_module.A,options);const headfoot_HeadFoot_module=HeadFoot_module.A&&HeadFoot_module.A.locals?HeadFoot_module.A.locals:void 0,HeadFoot=({as:E,children,className,bg,color,flex,area,dir,align="center",justify="start",...aria})=>{const styles=(0,useEffectDebugger.ZU)((()=>{const s={};return bg&&(s.backgroundColor=(0,utils.oU)(bg)),color&&(s.color=(0,utils.oU)(color)),s}),[bg],"HeadFoot styles");return(0,jsx_runtime.jsx)(E,{dir,className:classnames_default()(headfoot_HeadFoot_module.headfoot,className,bg&&(0,utils.MN)(bg),color&&(0,utils.Iq)(color),"head"===area?"area-head":"area-foot","leading-none",flex&&"flex flex-nowrap",align&&`items-${align}`,justify&&`justify-${justify}`),style:styles,...aria,children})},Header=props=>(0,jsx_runtime.jsx)(HeadFoot,{as:"header",area:"head",...props}),Footer=props=>(0,jsx_runtime.jsx)(HeadFoot,{as:"footer",area:"foot",...props});try{Header.displayName="Header",Header.__docgenInfo={description:"",displayName:"Header",props:{dir:{defaultValue:null,description:"",name:"dir",required:!1,type:{name:"enum",value:[{value:'"ltr"'},{value:'"rtl"'}]}},bg:{defaultValue:null,description:"background color",name:"bg",required:!1,type:{name:"string"}},color:{defaultValue:null,description:"background color",name:"color",required:!1,type:{name:"string"}},className:{defaultValue:null,description:"css classname(s)",name:"className",required:!1,type:{name:"string"}},"data-testid":{defaultValue:null,description:"data attribute for test id",name:"data-testid",required:!1,type:{name:"string"}},"data-test-value":{defaultValue:null,description:"data attribute for test value",name:"data-test-value",required:!1,type:{name:"any"}},flex:{defaultValue:null,description:"",name:"flex",required:!1,type:{name:"boolean"}},align:{defaultValue:{value:"center"},description:"",name:"align",required:!1,type:{name:"enum",value:[{value:'"center"'},{value:'"end"'},{value:'"start"'},{value:'"stretch"'}]}},justify:{defaultValue:{value:"start"},description:"",name:"justify",required:!1,type:{name:"enum",value:[{value:'"center"'},{value:'"end"'},{value:'"start"'},{value:'"between"'}]}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/core/headfoot/HeadFoot.tsx#Header"]={docgenInfo:Header.__docgenInfo,name:"Header",path:"packages/core/src/core/headfoot/HeadFoot.tsx#Header"})}catch(__react_docgen_typescript_loader_error){}try{Footer.displayName="Footer",Footer.__docgenInfo={description:"",displayName:"Footer",props:{dir:{defaultValue:null,description:"",name:"dir",required:!1,type:{name:"enum",value:[{value:'"ltr"'},{value:'"rtl"'}]}},bg:{defaultValue:null,description:"background color",name:"bg",required:!1,type:{name:"string"}},color:{defaultValue:null,description:"background color",name:"color",required:!1,type:{name:"string"}},className:{defaultValue:null,description:"css classname(s)",name:"className",required:!1,type:{name:"string"}},"data-testid":{defaultValue:null,description:"data attribute for test id",name:"data-testid",required:!1,type:{name:"string"}},"data-test-value":{defaultValue:null,description:"data attribute for test value",name:"data-test-value",required:!1,type:{name:"any"}},flex:{defaultValue:null,description:"",name:"flex",required:!1,type:{name:"boolean"}},align:{defaultValue:{value:"center"},description:"",name:"align",required:!1,type:{name:"enum",value:[{value:'"center"'},{value:'"end"'},{value:'"start"'},{value:'"stretch"'}]}},justify:{defaultValue:{value:"start"},description:"",name:"justify",required:!1,type:{name:"enum",value:[{value:'"center"'},{value:'"end"'},{value:'"start"'},{value:'"between"'}]}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/core/headfoot/HeadFoot.tsx#Footer"]={docgenInfo:Footer.__docgenInfo,name:"Footer",path:"packages/core/src/core/headfoot/HeadFoot.tsx#Footer"})}catch(__react_docgen_typescript_loader_error){}},"./packages/core/src/hooks/useEffectDebugger.ts":(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{KI:()=>useLayoutEffectDebugger,ZU:()=>useMemoDebugger,al:()=>useEffectDebugger});var _react_fabric_utilities__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./packages/utilities/dist/esm/index.js"),react__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/react/index.js");const loggerM=(0,_react_fabric_utilities__WEBPACK_IMPORTED_MODULE_0__.Ul)("useMemoDebugger"),loggerE=(0,_react_fabric_utilities__WEBPACK_IMPORTED_MODULE_0__.Ul)("useEffectDebugger"),loggerLE=(0,_react_fabric_utilities__WEBPACK_IMPORTED_MODULE_0__.Ul)("useLayoutEffectDebugger"),compareInputs=(oldInputs,newInputs,prefix,logger)=>{"undefined"!=typeof window&&!0!==window.DEBUG_HOOKS||(oldInputs.length===newInputs.length?oldInputs.forEach(((oldInput,index)=>{const newInput=newInputs[index],diff=[];oldInput!==newInput&&diff.push(`Dep [${index}] has a different value`,oldInput?.type?.name??oldInput?.tagName??oldInput?.name??oldInput?.substr?.(0,24)??oldInput,newInput?.type?.name??newInput?.tagName??newInput?.name??newInput?.substr?.(0,24)??newInput,"\n\n"),diff.length&&logger.debug("Diff",{process:prefix},...diff)})):logger.debug("Deps have a different length",{process:prefix},oldInputs.length,newInputs.length))},useMemoDebugger=(func,inputs,prefix)=>{const oldInputsRef=(0,react__WEBPACK_IMPORTED_MODULE_1__.useRef)(inputs);return(0,react__WEBPACK_IMPORTED_MODULE_1__.useMemo)((()=>{const oldInputs=oldInputsRef.current;return compareInputs(oldInputs,inputs,prefix,loggerM),oldInputsRef.current=inputs,func()}),inputs)},useEffectDebugger=(func,inputs,prefix)=>{const oldInputsRef=(0,react__WEBPACK_IMPORTED_MODULE_1__.useRef)(inputs);(0,react__WEBPACK_IMPORTED_MODULE_1__.useEffect)((()=>{const oldInputs=oldInputsRef.current;return compareInputs(oldInputs,inputs,prefix,loggerE),oldInputsRef.current=inputs,func()}),inputs)},useLayoutEffectDebugger=(func,inputs,prefix)=>{const oldInputsRef=(0,react__WEBPACK_IMPORTED_MODULE_1__.useRef)(inputs);(0,react__WEBPACK_IMPORTED_MODULE_1__.useLayoutEffect)((()=>{const oldInputs=oldInputsRef.current;return compareInputs(oldInputs,inputs,prefix,loggerLE),oldInputsRef.current=inputs,func()}),inputs)}},"./packages/core/src/hooks/useIsRtl.ts":(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{O:()=>useIsRtl});var react__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/react/index.js"),react_i18next__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/react-i18next/dist/es/index.js"),_useEffectDebugger__WEBPACK_IMPORTED_MODULE_2__=__webpack_require__("./packages/core/src/hooks/useEffectDebugger.ts");const useIsRtl=()=>{const{i18n}=(0,react_i18next__WEBPACK_IMPORTED_MODULE_1__.Bd)("core"),[isRtl,setIsRtl]=(0,react__WEBPACK_IMPORTED_MODULE_0__.useState)(!1);return(0,_useEffectDebugger__WEBPACK_IMPORTED_MODULE_2__.KI)((()=>{try{setIsRtl("rtl"===i18n.dir())}catch{}}),[i18n.language],"useIsRtl"),isRtl}},"./packages/core/src/hotkeys/HotKey.tsx":(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{B:()=>HotKey});var _hooks_useEffectDebugger__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./packages/core/src/hooks/useEffectDebugger.ts"),_HotKeyWrapper__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./packages/core/src/hotkeys/HotKeyWrapper.tsx");const HotKey=({keyCombo,global,handler})=>{const{addHotKey,removeHotKey}=(0,_HotKeyWrapper__WEBPACK_IMPORTED_MODULE_1__.zg)();return(0,_hooks_useEffectDebugger__WEBPACK_IMPORTED_MODULE_0__.al)((()=>(addHotKey?.(keyCombo,handler??(()=>{}),global),()=>removeHotKey?.(keyCombo))),[addHotKey,global,handler,keyCombo,removeHotKey],"HotKey add"),null};try{HotKey.displayName="HotKey",HotKey.__docgenInfo={description:"",displayName:"HotKey",props:{keyCombo:{defaultValue:null,description:"Hot key combination\n\nctrl, shift, alt, meta\nenter, space, escape, tab, backspace, delete\nleft, right, up, down",name:"keyCombo",required:!0,type:{name:"string"}},global:{defaultValue:null,description:"Global hot key",name:"global",required:!1,type:{name:"boolean"}},handler:{defaultValue:null,description:"Callback handler",name:"handler",required:!1,type:{name:"(() => void)"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/hotkeys/HotKey.tsx#HotKey"]={docgenInfo:HotKey.__docgenInfo,name:"HotKey",path:"packages/core/src/hotkeys/HotKey.tsx#HotKey"})}catch(__react_docgen_typescript_loader_error){}},"./packages/core/src/hotkeys/HotKeyLabel.tsx":(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{z:()=>HotKeyLabel});var react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/react/jsx-runtime.js"),_hooks_useEffectDebugger__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./packages/core/src/hooks/useEffectDebugger.ts"),_commons__WEBPACK_IMPORTED_MODULE_2__=__webpack_require__("./packages/core/src/hotkeys/commons.ts");const HotKeyLabel=({keyCombo})=>{const label=(0,_hooks_useEffectDebugger__WEBPACK_IMPORTED_MODULE_1__.ZU)((()=>{const item=(0,_commons__WEBPACK_IMPORTED_MODULE_2__.L)({keyCombo}),label=[];return item.alt&&label.push("ALT"),item.ctrl&&label.push("CTRL"),item.meta&&label.push("META"),item.shift&&label.push("SHIFT"),"tab"===item.key.toLowerCase()?label.push("TAB"):"space"===item.key.toLowerCase()?label.push("SPC"):"arrowleft"===item.key.toLowerCase()?label.push("LEFT"):"arrowright"===item.key.toLowerCase()?label.push("RIGHT"):"arrowup"===item.key.toLowerCase()?label.push("UP"):"arrowdown"===item.key.toLowerCase()?label.push("DOWN"):"enter"===item.key.toLowerCase()?label.push("ENTER"):"delete"===item.key.toLowerCase()?label.push("DEL"):"escape"===item.key.toLowerCase()?label.push("ESC"):"backspace"===item.key.toLowerCase()?label.push("BKSPC"):label.push(item.key.toUpperCase()),[(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)("span",{children:label.join(" ")},"label")]}),[keyCombo],"HotKey label");return(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)("kbd",{className:"hotkey-label inline-flex gap-1 select-none self-center font-mono items-center text-[0.625rem] leading-4 bg-tint-500/10 text-base/50 whitespace-nowrap rounded px-2 mx-1",children:label})};try{HotKeyLabel.displayName="HotKeyLabel",HotKeyLabel.__docgenInfo={description:"",displayName:"HotKeyLabel",props:{keyCombo:{defaultValue:null,description:"Hot key combination\n\nctrl, shift, alt, meta\nenter, space, escape, tab, backspace, delete\nleft, right, up, down",name:"keyCombo",required:!0,type:{name:"string"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/hotkeys/HotKeyLabel.tsx#HotKeyLabel"]={docgenInfo:HotKeyLabel.__docgenInfo,name:"HotKeyLabel",path:"packages/core/src/hotkeys/HotKeyLabel.tsx#HotKeyLabel"})}catch(__react_docgen_typescript_loader_error){}},"./packages/core/src/hotkeys/HotKeyWrapper.tsx":(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{O1:()=>HotKeyWrapper,zg:()=>useHotKeys});var react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/react/jsx-runtime.js"),react__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/react/index.js"),_hooks_useEffectDebugger__WEBPACK_IMPORTED_MODULE_2__=__webpack_require__("./packages/core/src/hooks/useEffectDebugger.ts"),_commons__WEBPACK_IMPORTED_MODULE_3__=__webpack_require__("./packages/core/src/hotkeys/commons.ts");const HotKeysContext=(0,react__WEBPACK_IMPORTED_MODULE_1__.createContext)({}),useHotKeys=()=>(0,react__WEBPACK_IMPORTED_MODULE_1__.useContext)(HotKeysContext),HotKeyWrapper=(0,react__WEBPACK_IMPORTED_MODULE_1__.memo)((({children})=>{const refEl=(0,react__WEBPACK_IMPORTED_MODULE_1__.useRef)(null),keyList=(0,react__WEBPACK_IMPORTED_MODULE_1__.useRef)([]),addHotKey=(0,react__WEBPACK_IMPORTED_MODULE_1__.useCallback)(((keyCombo,handler,global=!1)=>keyList.current=[...keyList.current.filter((({_key})=>_key!==keyCombo)),(0,_commons__WEBPACK_IMPORTED_MODULE_3__.L)({keyCombo,handler,global})]),[]),removeHotKey=(0,react__WEBPACK_IMPORTED_MODULE_1__.useCallback)((key=>keyList.current=[...keyList.current.filter((({_key})=>_key!==key))]),[]),handler=(0,react__WEBPACK_IMPORTED_MODULE_1__.useCallback)(((items,event)=>{if(0===items.length)return;const{key:keyCode,code,altKey,ctrlKey,metaKey,shiftKey}=event;if("Enter"!==keyCode&&"Esc"!==keyCode&&["INPUT","TEXTAREA","SELECT"].includes(event.target.tagName))return;const find=items.find((({key,alt,ctrl,meta,shift})=>(key.toLowerCase()===keyCode.toLowerCase()||key.toLowerCase()===code.toLowerCase())&&alt===altKey&&ctrl===ctrlKey&&meta===metaKey&&shift===shiftKey));find?.handler&&(find.handler(),event.preventDefault(),event.stopImmediatePropagation())}),[]),handleGlobal=(0,react__WEBPACK_IMPORTED_MODULE_1__.useCallback)((event=>{handler(keyList.current.filter((i=>i.global)),event)}),[handler]),handleHotKey=(0,react__WEBPACK_IMPORTED_MODULE_1__.useCallback)((event=>{handler(keyList.current.filter((i=>!i.global)),event)}),[handler]);return(0,_hooks_useEffectDebugger__WEBPACK_IMPORTED_MODULE_2__.al)((()=>{const el=refEl.current?.parentElement;if(el)return el.tabIndex=0,el.addEventListener("keydown",handleHotKey),document.addEventListener("keydown",handleGlobal),()=>{el.removeEventListener("keydown",handleHotKey),document.removeEventListener("keydown",handleGlobal)}}),[handleGlobal,handleHotKey],"HotKeyWrapper attach handlers"),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(HotKeysContext.Provider,{value:{addHotKey,removeHotKey},children:(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)("div",{ref:refEl,style:{display:"contents"},children})})}));HotKeyWrapper.displayName="HotKeyProvider";try{HotKeyWrapper.displayName="HotKeyProvider",HotKeyWrapper.__docgenInfo={description:"",displayName:"HotKeyProvider",props:{}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/hotkeys/HotKeyWrapper.tsx#HotKeyProvider"]={docgenInfo:HotKeyProvider.__docgenInfo,name:"HotKeyProvider",path:"packages/core/src/hotkeys/HotKeyWrapper.tsx#HotKeyProvider"})}catch(__react_docgen_typescript_loader_error){}},"./packages/core/src/hotkeys/commons.ts":(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{L:()=>reduceHotKey});const reduceHotKey=({keyCombo,global,handler})=>{const item={key:"",meta:!1,shift:!1,ctrl:!1,alt:!1,_key:keyCombo,handler,global};return keyCombo.split("+").forEach((e=>{"ctrl"===e.trim().toLowerCase()?item.ctrl=!0:"alt"===e.trim().toLowerCase()?item.alt=!0:"meta"===e.trim().toLowerCase()?item.meta=!0:"shift"===e.trim().toLowerCase()?item.shift=!0:"left"===e.trim().toLowerCase()?item.key="arrowleft":"right"===e.trim().toLowerCase()?item.key="arrowright":"up"===e.trim().toLowerCase()?item.key="arrowup":"down"===e.trim().toLowerCase()?item.key="arrowdown":e.trim().toLowerCase().startsWith("del")?item.key="delete":e.trim().toLowerCase().startsWith("esc")?item.key="escape":item.key=e.trim().toLowerCase()})),item}},"./packages/core/src/index.ts":(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{id:()=>Abbr,L4:()=>ActionLabel,Mz:()=>Anchor,bm:()=>Animations.bm,QK:()=>Animations.QK,Cv:()=>Animations.Cv,nC:()=>Aside,eu:()=>Avatar,Z7:()=>AvatarGroup,Ex:()=>Badge.E,BI:()=>Breadcrumbs,$n:()=>Button.$,e2:()=>ButtonGroup,Pq:()=>Callout,Zp:()=>Card,Gd:()=>CardCover,vu:()=>Chip,fv:()=>Col,pJ:()=>Collapsable,ZF:()=>ConfirmButton,mc:()=>Container,UC:()=>Content,tz:()=>ContextMenu,QR:()=>Copy,OO:()=>icons.O,cG:()=>Divider,ms:()=>Dropdown,W2:()=>DropdownDismiss,HY:()=>EmptyContent,tH:()=>ErrorBoundary,mj:()=>overlays.mj,wi:()=>HeadFoot.w,Y9:()=>HeadFoot.Y,In:()=>Icon.I,_V:()=>Image,CU:()=>Mark,W1:()=>Menu,Dr:()=>MenuItem,kI:()=>Meter,aF:()=>overlays.aF,mD:()=>Navigator,YW:()=>Page,Zk:()=>Panel,YZ:()=>PanelGroup,z2:()=>ProgressBar,a3:()=>ProgressCircle,fI:()=>Row,wn:()=>Section,EA:()=>Animations.EA,oz:()=>Tab,Kp:()=>TabPanel,EY:()=>Text,NP:()=>ThemeProvider,hE:()=>Title.h,WK:()=>ToggleButtonGroup,m_:()=>overlays.m_,Ce:()=>Video,LM:()=>Viewport,br:()=>useNavigator,w2:()=>useNotificationService,J$:()=>useOverlayService});var jsx_runtime=__webpack_require__("./node_modules/react/jsx-runtime.js"),classnames=__webpack_require__("./node_modules/classnames/index.js"),classnames_default=__webpack_require__.n(classnames),react=__webpack_require__("./node_modules/react/index.js"),esm=__webpack_require__("./packages/utilities/dist/esm/index.js"),Button_module=__webpack_require__("./packages/core/src/components/button/Button.module.css");const ButtonGroup=({vertical,className,children,variant,rounded,disabled,fullWidth,color,size,...aria})=>(0,jsx_runtime.jsx)("div",{"data-ref":"buttonGroup",className:classnames_default()(Button_module.A.buttonGroup,className,fullWidth?"flex":"inline-flex","flex-nowrap align-middle rounded",vertical&&Button_module.A.vertical,vertical&&"flex-col items-stretch"),...aria,children:(0,esm.t_)(children,(child=>(0,react.cloneElement)(child,{color,size,variant,disabled,rounded,fullWidth,...child.props})))});try{ButtonGroup.displayName="ButtonGroup",ButtonGroup.__docgenInfo={description:"",displayName:"ButtonGroup",props:{vertical:{defaultValue:null,description:"vertical orientation",name:"vertical",required:!1,type:{name:"boolean"}},variant:{defaultValue:null,description:"button styling",name:"variant",required:!1,type:{name:"enum",value:[{value:'"link"'},{value:'"outline"'},{value:'"solid"'}]}},size:{defaultValue:null,description:"button size",name:"size",required:!1,type:{name:"enum",value:[{value:'"xs"'},{value:'"sm"'},{value:'"md"'},{value:'"lg"'},{value:'"xl"'}]}},color:{defaultValue:null,description:"button color",name:"color",required:!1,type:{name:"enum",value:[{value:'"primary"'},{value:'"accent"'},{value:'"info"'},{value:'"danger"'},{value:'"success"'},{value:'"warning"'}]}},rounded:{defaultValue:null,description:"full rounded edges",name:"rounded",required:!1,type:{name:"boolean"}},disabled:{defaultValue:null,description:"disabled state",name:"disabled",required:!1,type:{name:"boolean"}},fullWidth:{defaultValue:null,description:"stretch to full width",name:"fullWidth",required:!1,type:{name:"boolean"}},className:{defaultValue:null,description:"css classname(s)",name:"className",required:!1,type:{name:"string"}},"data-testid":{defaultValue:null,description:"data attribute for test id",name:"data-testid",required:!1,type:{name:"string"}},"data-test-value":{defaultValue:null,description:"data attribute for test value",name:"data-test-value",required:!1,type:{name:"any"}},ref:{defaultValue:null,description:"",name:"ref",required:!1,type:{name:"Ref"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/components/button/ButtonGroup.tsx#ButtonGroup"]={docgenInfo:ButtonGroup.__docgenInfo,name:"ButtonGroup",path:"packages/core/src/components/button/ButtonGroup.tsx#ButtonGroup"})}catch(__react_docgen_typescript_loader_error){}var injectStylesIntoStyleTag=__webpack_require__("./node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js"),injectStylesIntoStyleTag_default=__webpack_require__.n(injectStylesIntoStyleTag),styleDomAPI=__webpack_require__("./node_modules/style-loader/dist/runtime/styleDomAPI.js"),styleDomAPI_default=__webpack_require__.n(styleDomAPI),insertBySelector=__webpack_require__("./node_modules/style-loader/dist/runtime/insertBySelector.js"),insertBySelector_default=__webpack_require__.n(insertBySelector),setAttributesWithoutAttributes=__webpack_require__("./node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js"),setAttributesWithoutAttributes_default=__webpack_require__.n(setAttributesWithoutAttributes),insertStyleElement=__webpack_require__("./node_modules/style-loader/dist/runtime/insertStyleElement.js"),insertStyleElement_default=__webpack_require__.n(insertStyleElement),styleTagTransform=__webpack_require__("./node_modules/style-loader/dist/runtime/styleTagTransform.js"),styleTagTransform_default=__webpack_require__.n(styleTagTransform),ActionLabel_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/components/actionLabel/ActionLabel.module.css"),options={};options.styleTagTransform=styleTagTransform_default(),options.setAttributes=setAttributesWithoutAttributes_default(),options.insert=insertBySelector_default().bind(null,"head"),options.domAPI=styleDomAPI_default(),options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(ActionLabel_module.A,options);const actionLabel_ActionLabel_module=ActionLabel_module.A&&ActionLabel_module.A.locals?ActionLabel_module.A.locals:void 0,ActionLabel=({children,className,align,actions,disabled,...rest})=>{const calculateBasis=(0,react.useCallback)((el=>{if(el){const clone=el.cloneNode(!0);clone.className="",clone.style.left="-200%",clone.style.overflow="hidden",clone.style.position="absolute",clone.style.whiteSpace="nowrap",document.body.appendChild(clone),el.style.setProperty("--width",`${clone.offsetWidth}px`),clone.remove()}}),[]);return(0,jsx_runtime.jsxs)("div",{className:classnames_default()(className,actionLabel_ActionLabel_module.actionLabel,"flex overflow-hidden gap-1 items-center cursor-default select-none"),"data-disabled":disabled,...rest,children:[(0,jsx_runtime.jsx)(ButtonGroup,{ref:calculateBasis,"data-inner-clickable":!0,className:classnames_default()(actionLabel_ActionLabel_module.actions,"overflow-hidden flex-content","end"===align&&"order-2"),children:actions}),(0,jsx_runtime.jsx)("div",{className:"flex-initial truncate",children})]})};try{ActionLabel.displayName="ActionLabel",ActionLabel.__docgenInfo={description:"A simple label component with additional actions (like a button or icon) that becomes visible only when the user hovers over the label,\nuseful in interfaces where space is limited or where it's important to keep the UI clean and focused",displayName:"ActionLabel",props:{align:{defaultValue:null,description:"action buttons aligment",name:"align",required:!1,type:{name:"enum",value:[{value:'"end"'},{value:'"start"'}]}},disabled:{defaultValue:null,description:"disable actions",name:"disabled",required:!1,type:{name:"boolean"}},actions:{defaultValue:null,description:"buttons",name:"actions",required:!0,type:{name:"ReactElement>[]"}},className:{defaultValue:null,description:"css classname(s)",name:"className",required:!1,type:{name:"string"}},"data-testid":{defaultValue:null,description:"data attribute for test id",name:"data-testid",required:!1,type:{name:"string"}},"data-test-value":{defaultValue:null,description:"data attribute for test value",name:"data-test-value",required:!1,type:{name:"any"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/components/actionLabel/ActionLabel.tsx#ActionLabel"]={docgenInfo:ActionLabel.__docgenInfo,name:"ActionLabel",path:"packages/core/src/components/actionLabel/ActionLabel.tsx#ActionLabel"})}catch(__react_docgen_typescript_loader_error){}var Animations=__webpack_require__("./packages/core/src/components/animations/Animations.tsx"),build=__webpack_require__("./node_modules/boring-avatars/build/index.js"),build_default=__webpack_require__.n(build),utils=__webpack_require__("./packages/core/src/utils/index.ts"),Avatar_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/components/avatar/Avatar.module.css"),Avatar_module_options={};Avatar_module_options.styleTagTransform=styleTagTransform_default(),Avatar_module_options.setAttributes=setAttributesWithoutAttributes_default(),Avatar_module_options.insert=insertBySelector_default().bind(null,"head"),Avatar_module_options.domAPI=styleDomAPI_default(),Avatar_module_options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(Avatar_module.A,Avatar_module_options);const avatar_Avatar_module=Avatar_module.A&&Avatar_module.A.locals?Avatar_module.A.locals:void 0,SizeMap={xs:"0.875rem",sm:"1.125rem",md:"1.5rem",lg:"2rem",xl:"2.5rem"},Avatar=({ref,name,avatar,fallbackIcon,bg,color,size="",rounded,variant="beam",className,viewBox="0 0 24 24",onClick,...aria})=>{const[fallback,setFallback]=(0,react.useState)(!0),styles=(0,react.useMemo)((()=>{const s={};return bg&&(s.backgroundColor=(0,utils.oU)(bg)),color&&(s.color=(0,utils.oU)(color)),size&&!(size in SizeMap)&&(s.fontSize=size),size&&size in SizeMap&&(s.fontSize=SizeMap[size]),s}),[bg,color,size]),avatarImage=(0,react.useMemo)((()=>(setFallback(!avatar),avatar&&(0,jsx_runtime.jsxs)("div",{className:"contents",children:[(0,jsx_runtime.jsx)("div",{className:classnames_default()(avatar_Avatar_module.imgPlaceholder,"absolute inset-0 bg-gray animate-pulse")}),(0,jsx_runtime.jsx)("img",{src:avatar,alt:avatar,className:"align-baseline",onError:()=>setFallback(!0),onLoad:e=>e.currentTarget.previousElementSibling?.remove()})]}))),[avatar]),fallbackAvatar=(0,react.useMemo)((()=>{if(fallbackIcon)return(0,esm.yX)(fallbackIcon)?(0,jsx_runtime.jsx)("svg",{viewBox,children:(0,jsx_runtime.jsx)("path",{fill:"currentColor",d:fallbackIcon.toString()})}):(0,jsx_runtime.jsx)("i",{className:fallbackIcon});if("text"===variant){const[,first,second,group]=name.match(/(?=(\w).* (\w).*)|(?=(\w\w).*)/)??[];return(0,jsx_runtime.jsx)("svg",{role:"img",children:(0,jsx_runtime.jsx)("text",{x:"50%",y:"50%",dy:".1em",dominantBaseline:"middle",textAnchor:"middle",style:{fontSize:".5em",fontWeight:500},children:group??`${first}${second}`})})}return(0,jsx_runtime.jsx)(build_default(),{square:!0,size:64,variant,name})}),[name,variant,fallbackIcon]);return(0,jsx_runtime.jsxs)("dfn",{role:"presentation",className:classnames_default()(avatar_Avatar_module.avatar,className,"select-none relative overflow-hidden inline-block box-content leading-none not-italic text-center",bg&&(0,utils.MN)(bg),color&&(0,utils.Iq)(color),!rounded&&"rounded",rounded&&"rounded-full"),onClick,style:styles,"data-clickable":!!onClick,ref,...aria,children:[!fallback&&avatarImage,fallback&&fallbackAvatar]})};try{Avatar.displayName="Avatar",Avatar.__docgenInfo={description:"An avatar is a graphical representation of a user's identity.",displayName:"Avatar",props:{name:{defaultValue:null,description:"avatar name for generated fallback",name:"name",required:!0,type:{name:"string"}},fallbackIcon:{defaultValue:null,description:"svg path",name:"fallbackIcon",required:!1,type:{name:"string"}},avatar:{defaultValue:null,description:"avatar image url",name:"avatar",required:!1,type:{name:"string"}},variant:{defaultValue:{value:"beam"},description:"avatar variant",name:"variant",required:!1,type:{name:"enum",value:[{value:'"text"'},{value:'"beam"'},{value:'"pixel"'},{value:'"bauhaus"'}]}},bg:{defaultValue:null,description:"background color (CSS color / tailwind color)",name:"bg",required:!1,type:{name:"string"}},color:{defaultValue:null,description:"icon color (CSS color / tailwind color)",name:"color",required:!1,type:{name:"string"}},size:{defaultValue:{value:""},description:"icon size",name:"size",required:!1,type:{name:"string | number"}},viewBox:{defaultValue:{value:"0 0 24 24"},description:"viewbox for svg path (default 24)",name:"viewBox",required:!1,type:{name:"string"}},rounded:{defaultValue:null,description:"rounded icon",name:"rounded",required:!1,type:{name:"boolean"}},onClick:{defaultValue:null,description:"click handler",name:"onClick",required:!1,type:{name:"MouseEventHandler"}},className:{defaultValue:null,description:"css classname(s)",name:"className",required:!1,type:{name:"string"}},"data-testid":{defaultValue:null,description:"data attribute for test id",name:"data-testid",required:!1,type:{name:"string"}},"data-test-value":{defaultValue:null,description:"data attribute for test value",name:"data-test-value",required:!1,type:{name:"any"}},ref:{defaultValue:null,description:"",name:"ref",required:!1,type:{name:"Ref"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/components/avatar/Avatar.tsx#Avatar"]={docgenInfo:Avatar.__docgenInfo,name:"Avatar",path:"packages/core/src/components/avatar/Avatar.tsx#Avatar"})}catch(__react_docgen_typescript_loader_error){}var hooks_useEffectDebugger=__webpack_require__("./packages/core/src/hooks/useEffectDebugger.ts");const AvatarGroup_SizeMap={xs:"0.875rem",sm:"1.125rem",md:"1.5rem",lg:"2rem",xl:"2.5rem"},AvatarGroup=({ref,children,className,totalCount,rounded,size,...aria})=>{const styles=(0,hooks_useEffectDebugger.ZU)((()=>{const s={};return size&&!(size in AvatarGroup_SizeMap)&&(s.fontSize=size),size&&size in AvatarGroup_SizeMap&&(s.fontSize=AvatarGroup_SizeMap[size]),s}),[size],"Icon styles"),avatars=(0,react.useMemo)((()=>react.Children.toArray(children).filter(Boolean)),[children]),diff=(0,react.useMemo)((()=>totalCount&&totalCount>avatars.length&&totalCount-avatars.length),[avatars,totalCount]);return(0,jsx_runtime.jsxs)("div",{...aria,ref,className:classnames_default()(avatar_Avatar_module.avatarGroup,className,"inline-flex flex-nowrap",!rounded&&"rounded",rounded&&"rounded-full"),style:styles,children:[avatars,!!diff&&(0,jsx_runtime.jsx)("dfn",{className:classnames_default()(avatar_Avatar_module.avatar,"select-none relative overflow-hidden inline-block box-content leading-none not-italic text-center",avatar_Avatar_module.extra),children:(0,jsx_runtime.jsx)("svg",{children:(0,jsx_runtime.jsx)("text",{x:"50%",y:"50%",dy:".1em",dominantBaseline:"middle",textAnchor:"middle",style:{fontSize:".375em",fontWeight:500},children:`+${diff}`})})})]})};try{AvatarGroup.displayName="AvatarGroup",AvatarGroup.__docgenInfo={description:"Group multiple avatars together",displayName:"AvatarGroup",props:{rounded:{defaultValue:null,description:"rounded icon",name:"rounded",required:!1,type:{name:"boolean"}},size:{defaultValue:null,description:"icon size",name:"size",required:!1,type:{name:"string | number"}},totalCount:{defaultValue:null,description:"max count",name:"totalCount",required:!1,type:{name:"number"}},className:{defaultValue:null,description:"css classname(s)",name:"className",required:!1,type:{name:"string"}},ref:{defaultValue:null,description:"",name:"ref",required:!1,type:{name:"Ref"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/components/avatar/AvatarGroup.tsx#AvatarGroup"]={docgenInfo:AvatarGroup.__docgenInfo,name:"AvatarGroup",path:"packages/core/src/components/avatar/AvatarGroup.tsx#AvatarGroup"})}catch(__react_docgen_typescript_loader_error){}var Badge=__webpack_require__("./packages/core/src/components/badge/Badge.tsx"),types=__webpack_require__("./packages/core/src/typography/types.ts");const Anchor=({ref,as,children,className,bg,color,family,size,...aria})=>{const styles=(0,hooks_useEffectDebugger.ZU)((()=>{const s={};return bg&&(s.backgroundColor=(0,utils.oU)(bg)),color&&(s.color=(0,utils.oU)(color)),size&&!(size in types.F)&&(s.fontSize=size),size&&size in types.F&&(s.fontSize=types.F[size]),s}),[bg,color,size,family],"Link styles"),E=as??"a";return(0,jsx_runtime.jsx)(E,{className:classnames_default()("link",className,family&&`font-${family}`,bg&&(0,utils.MN)(bg),color&&(0,utils.Iq)(color)),style:styles,ref,...aria,children})};try{Anchor.displayName="Anchor",Anchor.__docgenInfo={description:"Typography link component",displayName:"Anchor",props:{bg:{defaultValue:null,description:"link background (CSS color / tailwind color)",name:"bg",required:!1,type:{name:"string"}},color:{defaultValue:null,description:"link color (CSS color / tailwind color)",name:"color",required:!1,type:{name:"any"}},size:{defaultValue:null,description:"link size",name:"size",required:!1,type:{name:"string | number"}},family:{defaultValue:null,description:"font family",name:"family",required:!1,type:{name:"enum",value:[{value:'"sans"'},{value:'"serif"'},{value:'"mono"'}]}},onClick:{defaultValue:null,description:"",name:"onClick",required:!1,type:{name:"MouseEventHandler"}},className:{defaultValue:null,description:"css classname(s)",name:"className",required:!1,type:{name:"string"}},ref:{defaultValue:null,description:"",name:"ref",required:!1,type:{name:"Ref"}},as:{defaultValue:null,description:"The component used for the root node.\nEither a string to use a HTML element or a component.",name:"as",required:!1,type:{name:"ElementType"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/typography/Anchor.tsx#Anchor"]={docgenInfo:Anchor.__docgenInfo,name:"Anchor",path:"packages/core/src/typography/Anchor.tsx#Anchor"})}catch(__react_docgen_typescript_loader_error){}var floating_ui_react=__webpack_require__("./node_modules/@floating-ui/react/dist/floating-ui.react.mjs"),floating_ui_dom=__webpack_require__("./node_modules/@floating-ui/dom/dist/floating-ui.dom.mjs"),floating_ui_react_dom=__webpack_require__("./node_modules/@floating-ui/react/node_modules/@floating-ui/react-dom/dist/floating-ui.react-dom.mjs"),Dropdown_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/components/dropdown/Dropdown.module.css"),Dropdown_module_options={};Dropdown_module_options.styleTagTransform=styleTagTransform_default(),Dropdown_module_options.setAttributes=setAttributesWithoutAttributes_default(),Dropdown_module_options.insert=insertBySelector_default().bind(null,"head"),Dropdown_module_options.domAPI=styleDomAPI_default(),Dropdown_module_options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(Dropdown_module.A,Dropdown_module_options);const dropdown_Dropdown_module=Dropdown_module.A&&Dropdown_module.A.locals?Dropdown_module.A.locals:void 0,DropdownElement=({ref,children,showArrow,closeOnClick,fitToParent=!0,placement="bottom",onClose,onOpen,disabled,plainDropdown,dropdownEvent,dropdownClassName})=>{const arrowRef=(0,react.useRef)(null),[isOpen,setIsOpen]=(0,react.useState)(!1),tree=(0,floating_ui_react.cq)(),[anchor,panel]=(0,react.useMemo)((()=>react.Children.toArray(children)),[children]),{refs,floatingStyles,context}=(0,floating_ui_react.we)({open:isOpen,onOpenChange:(open,_,reason)=>{"reference-press"!==reason&&(setIsOpen(open),(open?onOpen:onClose)?.())},strategy:"fixed",placement,whileElementsMounted:floating_ui_dom.ll,middleware:[(0,floating_ui_react_dom.BN)({padding:8}),(0,floating_ui_react_dom.UU)(),showArrow&&(0,floating_ui_react_dom.cY)(9),showArrow&&(0,floating_ui_react_dom.UE)({element:arrowRef})]}),click=("hover"===dropdownEvent?floating_ui_react.Mk:floating_ui_react.kp)(context,{enabled:!disabled,handleClose:(0,floating_ui_react.iB)({blockPointerEvents:!0})}),dismiss=(0,floating_ui_react.s9)(context,{referencePress:!0}),{getReferenceProps,getFloatingProps}=(0,floating_ui_react.bv)([dismiss,click]),minWidth=(0,react.useMemo)((()=>{if(fitToParent){const el=refs.reference.current?.closest('[data-ref="buttonGroup"]')??refs.reference.current;return el?.offsetWidth}}),[refs,isOpen,fitToParent]),tryClosing=(0,react.useCallback)((e=>{refs.floating.current?.contains(e.target.closest("[data-dropdown-dismiss='false']"))||!closeOnClick&&!refs.floating.current?.contains(e.target.closest("[data-dropdown-dismiss='true']"))||setTimeout((()=>{setIsOpen(!1),onClose?.()}),100)}),[closeOnClick,onClose]),innerRef=(0,react.useMemo)((()=>(0,esm.Px)(ref,anchor.props.ref,refs.setReference)),[ref,anchor.props.ref,refs.setReference]);if((0,react.useEffect)((()=>{disabled&&setIsOpen(!1)}),[disabled]),(0,react.useEffect)((()=>{if(tree)return tree.events.on("close",handleTreeClick),()=>{tree.events.off("close",handleTreeClick)};function handleTreeClick(){setIsOpen(!1)}}),[tree]),!anchor||!panel)throw Error("Dropdown requires two elements [Anchor, Panel]");return(0,jsx_runtime.jsxs)(react.Fragment,{children:[(0,react.cloneElement)(anchor,{...getReferenceProps({onClick:e=>{anchor.props.onClick?.(e),e.stopPropagation()}}),"data-inner-clickable":"true","data-dropdown-open":!!isOpen||void 0,ref:innerRef}),isOpen&&(0,jsx_runtime.jsxs)(floating_ui_react.XF,{root:refs.domReference.current?.closest(".theme-base")??void 0,children:[(0,jsx_runtime.jsx)(floating_ui_react.zR,{}),(0,jsx_runtime.jsx)(floating_ui_react.s3,{context,modal:!0,children:(0,jsx_runtime.jsxs)("div",{ref:el=>{refs.setFloating(el),el?.querySelector("input,textarea,button")?.focus()},style:{minWidth,zIndex:"var(--z-popover)",...floatingStyles},"data-testid":"dropdown-body",...getFloatingProps({onClick:e=>e.stopPropagation()}),children:[(0,jsx_runtime.jsx)("div",{role:"none",className:classnames_default()(dropdown_Dropdown_module.dropdownBody,dropdownClassName,!plainDropdown&&"shadow-lg bg-base ring-1 ring-tint-100","rounded-capped overflow-auto scroll-thin grid max-h-[70vh]"),onMouseUpCapture:tryClosing,children:panel}),showArrow&&(0,jsx_runtime.jsx)(floating_ui_react.ie,{ref:arrowRef,context,strokeWidth:.5,className:"fill-base stroke-muted"})]})})]})]})},Dropdown=props=>(0,jsx_runtime.jsx)(floating_ui_react.P6,{children:(0,jsx_runtime.jsx)(DropdownElement,{...props})}),DropdownDismiss=({children,dismiss=!0})=>{const tree=(0,floating_ui_react.cq)();return(0,jsx_runtime.jsx)("div",{role:"none",className:"contents","data-dropdown-dismiss":dismiss,onMouseUp:()=>dismiss&&setTimeout((()=>tree?.events.emit("close")),50),children})};try{Dropdown.displayName="Dropdown",Dropdown.__docgenInfo={description:"",displayName:"Dropdown",props:{placement:{defaultValue:{value:"bottom"},description:"dropdown placement",name:"placement",required:!1,type:{name:"enum",value:[{value:'"top-start"'},{value:'"top-end"'},{value:'"bottom-start"'},{value:'"bottom-end"'},{value:'"top"'},{value:'"bottom"'},{value:'"right"'},{value:'"left"'},{value:'"right-end"'},{value:'"right-start"'},{value:'"left-end"'},{value:'"left-start"'}]}},showArrow:{defaultValue:null,description:"show dropdown arrow",name:"showArrow",required:!1,type:{name:"boolean"}},fitToParent:{defaultValue:{value:"true"},description:"fit with to anchor' parent element",name:"fitToParent",required:!1,type:{name:"boolean"}},closeOnClick:{defaultValue:null,description:"close dropdown on click",name:"closeOnClick",required:!1,type:{name:"boolean"}},disabled:{defaultValue:null,description:"disable dropdown",name:"disabled",required:!1,type:{name:"boolean"}},plainDropdown:{defaultValue:null,description:"plain dropdown body",name:"plainDropdown",required:!1,type:{name:"boolean"}},dropdownClassName:{defaultValue:null,description:"dropdown body className",name:"dropdownClassName",required:!1,type:{name:"string"}},dropdownEvent:{defaultValue:null,description:"dropdown event",name:"dropdownEvent",required:!1,type:{name:"enum",value:[{value:'"click"'},{value:'"hover"'}]}},onOpen:{defaultValue:null,description:"open handler",name:"onOpen",required:!1,type:{name:"(() => void)"}},onClose:{defaultValue:null,description:"close handler",name:"onClose",required:!1,type:{name:"(() => void)"}},ref:{defaultValue:null,description:"",name:"ref",required:!1,type:{name:"Ref"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/components/dropdown/Dropdown.tsx#Dropdown"]={docgenInfo:Dropdown.__docgenInfo,name:"Dropdown",path:"packages/core/src/components/dropdown/Dropdown.tsx#Dropdown"})}catch(__react_docgen_typescript_loader_error){}try{DropdownDismiss.displayName="DropdownDismiss",DropdownDismiss.__docgenInfo={description:"",displayName:"DropdownDismiss",props:{dismiss:{defaultValue:{value:"true"},description:"",name:"dismiss",required:!1,type:{name:"boolean"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/components/dropdown/Dropdown.tsx#DropdownDismiss"]={docgenInfo:DropdownDismiss.__docgenInfo,name:"DropdownDismiss",path:"packages/core/src/components/dropdown/Dropdown.tsx#DropdownDismiss"})}catch(__react_docgen_typescript_loader_error){}var Breadcrumbs_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/components/breadcrumbs/Breadcrumbs.module.css"),Breadcrumbs_module_options={};Breadcrumbs_module_options.styleTagTransform=styleTagTransform_default(),Breadcrumbs_module_options.setAttributes=setAttributesWithoutAttributes_default(),Breadcrumbs_module_options.insert=insertBySelector_default().bind(null,"head"),Breadcrumbs_module_options.domAPI=styleDomAPI_default(),Breadcrumbs_module_options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(Breadcrumbs_module.A,Breadcrumbs_module_options);const breadcrumbs_Breadcrumbs_module=Breadcrumbs_module.A&&Breadcrumbs_module.A.locals?Breadcrumbs_module.A.locals:void 0,Breadcrumbs=({variant="classic",className,separator="/",children,color,...aria})=>{const[start,overflow,end]=(0,react.useMemo)((()=>{const nodeList=react.Children.toArray(children);return nodeList.length>7?[nodeList.slice(0,3),nodeList.slice(3,-3),nodeList.slice(-3)]:[nodeList]}),[children]);return(0,jsx_runtime.jsxs)("nav",{"data-color":color,"data-variant":variant,className:classnames_default()(breadcrumbs_Breadcrumbs_module.breadcrumbs,className,"flex flex-nowrap items-center"),...aria,children:[start.map(((link,idx)=>(0,jsx_runtime.jsx)("li",{className:breadcrumbs_Breadcrumbs_module.breadcrumbLink,"data-separator":separator,children:link},idx))),overflow&&(0,jsx_runtime.jsxs)(Dropdown,{closeOnClick:!0,showArrow:!0,children:[(0,jsx_runtime.jsx)("li",{className:breadcrumbs_Breadcrumbs_module.breadcrumbLink,"data-separator":separator,children:(0,jsx_runtime.jsx)(Anchor,{children:"..."})}),(0,jsx_runtime.jsx)("div",{"data-color":color,className:classnames_default()(breadcrumbs_Breadcrumbs_module.breadcrumbOverflow,"flex flex-col"),children:overflow})]}),end?.map(((link,idx)=>(0,jsx_runtime.jsx)("li",{className:breadcrumbs_Breadcrumbs_module.breadcrumbLink,"data-separator":separator,children:link},idx)))]})};try{Breadcrumbs.displayName="Breadcrumbs",Breadcrumbs.__docgenInfo={description:"",displayName:"Breadcrumbs",props:{variant:{defaultValue:{value:"classic"},description:"breadcrumb styling",name:"variant",required:!1,type:{name:"enum",value:[{value:'"classic"'},{value:'"modern"'}]}},separator:{defaultValue:{value:"/"},description:"classic breadcrumb spearator",name:"separator",required:!1,type:{name:"string"}},color:{defaultValue:null,description:"breadcrumb color",name:"color",required:!1,type:{name:"enum",value:[{value:'"primary"'},{value:'"accent"'}]}},className:{defaultValue:null,description:"css classname(s)",name:"className",required:!1,type:{name:"string"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/components/breadcrumbs/Breadcrumbs.tsx#Breadcrumbs"]={docgenInfo:Breadcrumbs.__docgenInfo,name:"Breadcrumbs",path:"packages/core/src/components/breadcrumbs/Breadcrumbs.tsx#Breadcrumbs"})}catch(__react_docgen_typescript_loader_error){}var Button=__webpack_require__("./packages/core/src/components/button/Button.tsx"),es=__webpack_require__("./node_modules/react-i18next/dist/es/index.js");const ConfirmButton=({ref,message,color,okLabel,cancelLabel,onClick,loading,placement="bottom",actionMessage,showActionDone,showActionDoneEvent="click",...props})=>{const{t}=(0,es.Bd)("core"),arrowRef=(0,react.useRef)(null),[isOpen,setIsOpen]=(0,react.useState)(!1),[busy,setBusy]=(0,react.useState)(!1),[actionDone,setActionDone]=(0,react.useState)(!1),clickHandler=(0,react.useCallback)((e=>{setBusy(e);const ret=onClick?.(e);e&&Promise.resolve(ret).then((b=>{setBusy(!1),!1!==b&&actionMessage&&"click"===showActionDoneEvent&&setActionDone(!0)}))}),[onClick,actionMessage,showActionDoneEvent]);(0,react.useEffect)((()=>{if(actionDone){const timer=setTimeout((()=>setActionDone(!1)),2e3);return()=>clearTimeout(timer)}}),[actionDone]);const{refs,floatingStyles,context}=(0,floating_ui_react.we)({open:isOpen,onOpenChange(nextOpen,_,reason){setIsOpen(nextOpen),"escape-key"===reason&&clickHandler(!1)},strategy:"fixed",placement,whileElementsMounted:floating_ui_dom.ll,middleware:[(0,floating_ui_react_dom.BN)({padding:8}),(0,floating_ui_react_dom.UU)(),(0,floating_ui_react_dom.cY)(9),(0,floating_ui_react_dom.UE)({element:arrowRef})]}),click=(0,floating_ui_react.kp)(context,{enabled:!props.disabled}),dismiss=(0,floating_ui_react.s9)(context),{getReferenceProps,getFloatingProps}=(0,floating_ui_react.bv)([dismiss,click]),ButtonWrapper=(0,react.useCallback)((({ref,...props})=>(0,jsx_runtime.jsx)(Button.$,{ref,...props})),[]),innerRef=(0,react.useMemo)((()=>(0,esm.Px)(ref,refs.setReference)),[ref,refs.setReference]);return(0,jsx_runtime.jsxs)(react.Fragment,{children:[(0,jsx_runtime.jsx)(ButtonWrapper,{...props,color,loading:busy||loading,showActionDone:actionDone||showActionDone,showActionDoneEvent:"manual",actionMessage,ref:innerRef,...getReferenceProps(),"data-dropdown-open":isOpen}),isOpen&&(0,jsx_runtime.jsx)(floating_ui_react.XF,{children:(0,jsx_runtime.jsx)(floating_ui_react.s3,{modal:!0,context,children:(0,jsx_runtime.jsxs)("div",{"data-color":color,className:classnames_default()("select-none not-italic rounded-capped shadow-lg outline outline-muted bg-base"),ref:refs.setFloating,style:floatingStyles,...getFloatingProps(),children:[(0,jsx_runtime.jsxs)("div",{className:"font-medium ",children:[(0,jsx_runtime.jsx)("p",{className:"py-2 px-4",children:message}),(0,jsx_runtime.jsxs)("div",{className:"flex justify-end py-2 px-4 gap-2",children:[(0,jsx_runtime.jsx)(Button.$,{size:"sm",variant:"link",color,onClick:()=>[clickHandler(!1),setIsOpen(!1)],children:cancelLabel??t("action.cancel")}),(0,jsx_runtime.jsx)(Button.$,{size:"sm",variant:"solid",color,autoFocus:!0,onClick:()=>[clickHandler(!0),setIsOpen(!1)],children:okLabel??t("action.ok")})]})]}),(0,jsx_runtime.jsx)(floating_ui_react.ie,{ref:arrowRef,context,strokeWidth:.5,className:"fill-base stroke-muted"})]})})})]})};try{ConfirmButton.displayName="ConfirmButton",ConfirmButton.__docgenInfo={description:"Button with confirmation dropdown",displayName:"ConfirmButton",props:{message:{defaultValue:null,description:"confirm message",name:"message",required:!0,type:{name:"string"}},okLabel:{defaultValue:null,description:"ok label",name:"okLabel",required:!1,type:{name:"string"}},cancelLabel:{defaultValue:null,description:"ok label",name:"cancelLabel",required:!1,type:{name:"string"}},placement:{defaultValue:{value:"bottom"},description:"dropdown placement",name:"placement",required:!1,type:{name:"enum",value:[{value:'"top-start"'},{value:'"top-end"'},{value:'"bottom-start"'},{value:'"bottom-end"'},{value:'"top"'},{value:'"bottom"'},{value:'"right"'},{value:'"left"'},{value:'"right-end"'},{value:'"right-start"'},{value:'"left-end"'},{value:'"left-start"'}]}},onClick:{defaultValue:null,description:"click handler, return Promise to autoset loading state",name:"onClick",required:!1,type:{name:"(((e: boolean) => unknown) & ((e?: MouseEvent) => unknown))"}},className:{defaultValue:null,description:"css classname(s)",name:"className",required:!1,type:{name:"string"}},ref:{defaultValue:null,description:"",name:"ref",required:!1,type:{name:"Ref"}},color:{defaultValue:null,description:"button color",name:"color",required:!1,type:{name:"any"}},type:{defaultValue:null,description:"button type",name:"type",required:!1,type:{name:"enum",value:[{value:'"button"'},{value:'"reset"'},{value:'"submit"'}]}},onMouseEnter:{defaultValue:null,description:"",name:"onMouseEnter",required:!1,type:{name:"any"}},onMouseLeave:{defaultValue:null,description:"",name:"onMouseLeave",required:!1,type:{name:"any"}},onMouseMove:{defaultValue:null,description:"",name:"onMouseMove",required:!1,type:{name:"any"}},onMouseOut:{defaultValue:null,description:"",name:"onMouseOut",required:!1,type:{name:"any"}},onMouseOver:{defaultValue:null,description:"",name:"onMouseOver",required:!1,type:{name:"any"}},onWheel:{defaultValue:null,description:"",name:"onWheel",required:!1,type:{name:"any"}},disabled:{defaultValue:null,description:"disabled state",name:"disabled",required:!1,type:{name:"boolean"}},loading:{defaultValue:null,description:"loading state with animation and click disabled",name:"loading",required:!1,type:{name:"boolean"}},size:{defaultValue:null,description:"button size",name:"size",required:!1,type:{name:"enum",value:[{value:'"xs"'},{value:'"sm"'},{value:'"md"'},{value:'"lg"'},{value:'"xl"'}]}},"data-testid":{defaultValue:null,description:"data attribute for test id",name:"data-testid",required:!1,type:{name:"string"}},"data-test-value":{defaultValue:null,description:"data attribute for test value",name:"data-test-value",required:!1,type:{name:"any"}},rounded:{defaultValue:null,description:"full rounded edges",name:"rounded",required:!1,type:{name:"boolean"}},variant:{defaultValue:null,description:"button styling",name:"variant",required:!1,type:{name:"enum",value:[{value:'"link"'},{value:'"outline"'},{value:'"solid"'}]}},icon:{defaultValue:null,description:"svg path / image url",name:"icon",required:!1,type:{name:"string"}},iconBg:{defaultValue:null,description:"icon background color",name:"iconBg",required:!1,type:{name:"string"}},iconColor:{defaultValue:null,description:"icon color",name:"iconColor",required:!1,type:{name:"string"}},rtlFlip:{defaultValue:null,description:"flip icon in rtl",name:"rtlFlip",required:!1,type:{name:"boolean"}},active:{defaultValue:null,description:"active state with click disabled",name:"active",required:!1,type:{name:"boolean"}},iconAlign:{defaultValue:null,description:"primary icon alignment",name:"iconAlign",required:!1,type:{name:"enum",value:[{value:'"end"'},{value:'"start"'}]}},altIcon:{defaultValue:null,description:"alternate icon align end (caret, arrow)",name:"altIcon",required:!1,type:{name:"string"}},badge:{defaultValue:null,description:"badges",name:"badge",required:!1,type:{name:"string | number | BadgeType"}},fullWidth:{defaultValue:null,description:"stretch to full width",name:"fullWidth",required:!1,type:{name:"boolean"}},spinOnHover:{defaultValue:null,description:"spin icon on hover",name:"spinOnHover",required:!1,type:{name:"boolean"}},actionMessage:{defaultValue:null,description:"action completed message works best with `onClick` Promise return.\nTo hide completed message onClick/Promise return should be false",name:"actionMessage",required:!1,type:{name:"string"}},stopPropagation:{defaultValue:null,description:"",name:"stopPropagation",required:!1,type:{name:"boolean"}},hotKey:{defaultValue:null,description:"keyboard shortcut",name:"hotKey",required:!1,type:{name:"string"}},showActionDone:{defaultValue:null,description:"manually force show action message",name:"showActionDone",required:!1,type:{name:"boolean"}},showActionDoneEvent:{defaultValue:{value:"click"},description:"show action message `onClick` or manually by setting `showActionDone` true",name:"showActionDoneEvent",required:!1,type:{name:"enum",value:[{value:'"click"'},{value:'"manual"'}]}},as:{defaultValue:null,description:"The component used for the root node.\nEither a string to use a HTML element or a component.",name:"as",required:!1,type:{name:'("button" & ElementType)'}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/components/button/ConfirmButton.tsx#ConfirmButton"]={docgenInfo:ConfirmButton.__docgenInfo,name:"ConfirmButton",path:"packages/core/src/components/button/ConfirmButton.tsx#ConfirmButton"})}catch(__react_docgen_typescript_loader_error){}const ToggleButtonGroup=({vertical,className,children,variant,rounded,disabled,fullWidth,color,size,value,onChange,...aria})=>{const isMultiple=(0,react.useMemo)((()=>(0,esm.cy)(value)),[value]),{currentValue,updateValue}=((value,defaultValue)=>{const[currentValue,updateValue]=(0,react.useState)(defaultValue),deferred=(0,react.useDeferredValue)(value);return(0,hooks_useEffectDebugger.al)((()=>{updateValue(deferred??defaultValue)}),[deferred],"useControlledValue change"),{currentValue,updateValue}})(value,(0,esm.cy)(value)?esm.Ml:""),clickHandler=(0,react.useCallback)((cb=>e=>{let newValue=`${e.currentTarget.dataset.value}`;(0,esm.cy)(currentValue)&&(newValue=currentValue.includes(newValue)?currentValue.filter((v=>v!==newValue)):[...currentValue,newValue]),updateValue(newValue),onChange?.(newValue),cb?.(e)}),[currentValue,onChange]);return(0,jsx_runtime.jsx)("div",{className:classnames_default()(Button_module.A.buttonGroup,className,fullWidth?"flex":"inline-flex","flex-nowrap align-middle",vertical&&Button_module.A.vertical,vertical&&"flex-col"),...aria,children:(0,esm.t_)(children,(child=>(0,react.cloneElement)(child,{color,size,variant,disabled,rounded,fullWidth,...child.props,onClick:clickHandler(child.props.onClick),"data-value":child.props.value,"data-checked":isMultiple?currentValue.includes(child.props.value):currentValue===child.props.value})))})};try{ToggleButtonGroup.displayName="ToggleButtonGroup",ToggleButtonGroup.__docgenInfo={description:"",displayName:"ToggleButtonGroup",props:{vertical:{defaultValue:null,description:"vertical orientation",name:"vertical",required:!1,type:{name:"boolean"}},variant:{defaultValue:null,description:"button styling",name:"variant",required:!1,type:{name:"enum",value:[{value:'"link"'},{value:'"outline"'},{value:'"solid"'}]}},size:{defaultValue:null,description:"button size",name:"size",required:!1,type:{name:"enum",value:[{value:'"xs"'},{value:'"sm"'},{value:'"md"'},{value:'"lg"'},{value:'"xl"'}]}},color:{defaultValue:null,description:"button color",name:"color",required:!1,type:{name:"enum",value:[{value:'"primary"'},{value:'"accent"'},{value:'"info"'},{value:'"danger"'},{value:'"success"'},{value:'"warning"'}]}},rounded:{defaultValue:null,description:"full rounded edges",name:"rounded",required:!1,type:{name:"boolean"}},disabled:{defaultValue:null,description:"disabled state",name:"disabled",required:!1,type:{name:"boolean"}},fullWidth:{defaultValue:null,description:"stretch to full width",name:"fullWidth",required:!1,type:{name:"boolean"}},className:{defaultValue:null,description:"css classname(s)",name:"className",required:!1,type:{name:"string"}},value:{defaultValue:null,description:"",name:"value",required:!0,type:{name:"string | string[]"}},onChange:{defaultValue:null,description:"change handler",name:"onChange",required:!1,type:{name:"((value: string) => void) | ((value: string[]) => void)"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/components/button/ToggleButtonGroup.tsx#ToggleButtonGroup"]={docgenInfo:ToggleButtonGroup.__docgenInfo,name:"ToggleButtonGroup",path:"packages/core/src/components/button/ToggleButtonGroup.tsx#ToggleButtonGroup"})}catch(__react_docgen_typescript_loader_error){}var icons=__webpack_require__("./packages/core/src/types/icons.ts"),Icon=__webpack_require__("./packages/core/src/components/icon/Icon.tsx");const Callout=({children,color="tint",legend,title,icon,border,onClose,className,...aria})=>(0,jsx_runtime.jsxs)("fieldset",{className:classnames_default()(className,"block rounded-capped border max-w-full relative overflow-hidden mb-4",(0,utils.MN)(color+"-50"),(0,utils.Iq)(color+"-700"),(0,utils.Z1)(color+"-300"),"dashed"===border&&"border-dashed","dotted"===border&&"border-dotted"),...aria,children:[legend&&(0,jsx_runtime.jsx)("legend",{className:"px-2 mx-4 font-medium",children:legend}),(0,jsx_runtime.jsxs)("div",{className:classnames_default()("break-words whitespace-break-spaces p-2"),children:[(0,jsx_runtime.jsxs)("div",{className:"flex flex-nowrap items-center text-xl pe-4 gap-2 mb-4 empty:mb-0",children:[icon&&(0,jsx_runtime.jsx)(Icon.I,{icon}),title&&(0,jsx_runtime.jsx)("p",{className:"flex-1",children:title})]}),(0,jsx_runtime.jsx)("div",{className:"pe-4",children})]}),onClose&&(0,jsx_runtime.jsx)(Icon.I,{size:"md",className:classnames_default()("absolute end-2",legend?"top-0":"top-2"),icon:icons.O.close,onClick:onClose})]});try{Callout.displayName="Callout",Callout.__docgenInfo={description:"",displayName:"Callout",props:{color:{defaultValue:{value:"tint"},description:"callout color",name:"color",required:!1,type:{name:"enum",value:[{value:'"primary"'},{value:'"accent"'},{value:'"info"'},{value:'"danger"'},{value:'"success"'},{value:'"warning"'},{value:'"scarlet"'},{value:'"pumpkin"'},{value:'"marigold"'},{value:'"avacado"'},{value:'"jade"'},{value:'"denim"'},{value:'"iris"'},{value:'"lilac"'},{value:'"coral"'},{value:'"wood"'},{value:'"silver"'},{value:'"steel"'},{value:'"olive"'},{value:'"sand"'}]}},legend:{defaultValue:null,description:"legend title",name:"legend",required:!1,type:{name:"string"}},icon:{defaultValue:null,description:"callout icon",name:"icon",required:!1,type:{name:"string"}},title:{defaultValue:null,description:"callout title",name:"title",required:!1,type:{name:"string"}},border:{defaultValue:null,description:"callout border style",name:"border",required:!1,type:{name:"enum",value:[{value:'"solid"'},{value:'"dotted"'},{value:'"dashed"'}]}},onClose:{defaultValue:null,description:"close action handler",name:"onClose",required:!1,type:{name:"(() => void)"}},className:{defaultValue:null,description:"css classname(s)",name:"className",required:!1,type:{name:"string"}},"data-testid":{defaultValue:null,description:"data attribute for test id",name:"data-testid",required:!1,type:{name:"string"}},"data-test-value":{defaultValue:null,description:"data attribute for test value",name:"data-test-value",required:!1,type:{name:"any"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/components/callout/Callout.tsx#Callout"]={docgenInfo:Callout.__docgenInfo,name:"Callout",path:"packages/core/src/components/callout/Callout.tsx#Callout"})}catch(__react_docgen_typescript_loader_error){}const usePropToggle=(isOn=!1,onToggle,key)=>{const toggleRef=(0,react.useRef)(isOn),[toggleOn,setToggleOn]=(0,react.useState)(isOn);(0,hooks_useEffectDebugger.KI)((()=>{toggleRef.current=isOn,setToggleOn(isOn)}),[isOn],"usePropToggle");const doToggle=(0,react.useCallback)((()=>{!1!==onToggle?.(!toggleOn,key)&&(toggleRef.current=!toggleOn,setToggleOn(!toggleOn))}),[toggleOn,onToggle,key]);return[toggleOn,doToggle,toggleRef]};var ErrorBoundary_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/core/boundary/ErrorBoundary.module.css"),ErrorBoundary_module_options={};ErrorBoundary_module_options.styleTagTransform=styleTagTransform_default(),ErrorBoundary_module_options.setAttributes=setAttributesWithoutAttributes_default(),ErrorBoundary_module_options.insert=insertBySelector_default().bind(null,"head"),ErrorBoundary_module_options.domAPI=styleDomAPI_default(),ErrorBoundary_module_options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(ErrorBoundary_module.A,ErrorBoundary_module_options);const boundary_ErrorBoundary_module=ErrorBoundary_module.A&&ErrorBoundary_module.A.locals?ErrorBoundary_module.A.locals:void 0,ErrorIcon=()=>(0,jsx_runtime.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 64 64",className:classnames_default()(boundary_ErrorBoundary_module.boundaryIcon,"size-6 m-2"),children:[(0,jsx_runtime.jsx)("path",{fill:"#808080",d:"M64 32c0 17.673-14.327 32-32 32s-32-14.327-32-32 14.327-32 32-32 32 14.327 32 32z"}),(0,jsx_runtime.jsx)("path",{fill:"#fff",d:"M63.5 32c0 17.397-14.103 31.5-31.5 31.5s-31.5-14.103-31.5-31.5 14.103-31.5 31.5-31.5 31.5 14.103 31.5 31.5z"}),(0,jsx_runtime.jsx)("path",{fill:"#f44336",d:"M60 32c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-15.464 12.536-28 28-28s28 12.536 28 28z"}),(0,jsx_runtime.jsx)("path",{fill:"#fff",d:"M50.667 35.733h-37.333c-1.031 0-1.867-0.835-1.867-1.867v-3.733c0-1.031 0.835-1.867 1.867-1.867h37.333c1.031 0 1.867 0.835 1.867 1.867v3.733c0 1.031-0.835 1.867-1.867 1.867z"})]});var esm_i18next=__webpack_require__("./node_modules/i18next/dist/esm/i18next.js");__webpack_require__("./packages/core/src/hotkeys/HotKeyWrapper.tsx"),__webpack_require__("./node_modules/react-dom/index.js"),__webpack_require__("./packages/core/src/overlays/alert/Alert.tsx"),__webpack_require__("./packages/core/src/overlays/message/Message.tsx"),__webpack_require__("./packages/core/src/overlays/toast/Toast.tsx");const makeProps=obj=>isString(obj)?{message:obj}:isObject(obj)?{...obj}:{message:""},NotificationCenter_NotificationManager=({onLoad})=>{const refItems=useRef({toasts:{},messages:{},alerts:{}}),[messages,setMessages]=useState({}),[toasts,setToasts]=useState({}),[alerts,setAlerts]=useState({}),updateMessages=useRef((()=>{setMessages({...refItems.current.messages})})),updateToasts=useRef((()=>{setToasts({...refItems.current.toasts})})),updateAlerts=useRef((()=>{setAlerts({...refItems.current.alerts})})),handleCloseAll=useRef((()=>{Object.values(refItems.current.messages).forEach((msg=>msg[1]?.(!1))),Object.values(refItems.current.toasts).forEach((msg=>msg[1]?.(!1))),Object.values(refItems.current.alerts).forEach((msg=>msg[1]?.(!1))),refItems.current.messages={},refItems.current.toasts={},refItems.current.alerts={},updateMessages.current(),updateToasts.current(),updateAlerts.current()})),openNotification=useRef((async(map,update,Notif,props,timeout=5e3)=>{let timerRef=null;const obj=makeProps(props);return await new Promise((resolve=>{const key=uuid(),handleClose=(b=!1)=>{clearTimeout(timerRef),setTimeout((()=>{delete map[key],update(),resolve(b)}),250)};map[key]=[_jsx("div",{children:_jsx(Notif,{...obj,onClose:handleClose,onCloseAll:handleCloseAll.current})},key),handleClose],update(),"confirm"!==obj.type&&timeout>0&&(timerRef=setTimeout(handleClose,timeout))}))})),showMessage=useRef((async(props,timeout=5e3)=>await openNotification.current(refItems.current.messages,updateMessages.current,Message,props,timeout))),showToast=useRef((async(props,timeout=5e3)=>await openNotification.current(refItems.current.toasts,updateToasts.current,Toast,props,timeout))),showAlert=useRef((async props=>await openNotification.current(refItems.current.alerts,updateAlerts.current,Alert,props,0))),showError=useRef((async(props,timeout=5e3)=>await openNotification.current(refItems.current.toasts,Toast,{...makeProps(props),color:"danger"},0)));return useEffect((()=>{onLoad({showMessage:showMessage.current,showToast:showToast.current,showAlert:showAlert.current,showError:showError.current,closeAll:handleCloseAll.current})}),[]),_jsxs(Fragment,{children:[createPortal(_jsx("div",{style:{zIndex:"var(--z-overlay)"},className:"ruf-container__overlays pointer-events-none fixed inset-0 p-4 bg-transparent",children:Object.values(alerts).map((([el])=>el))}),document.body),createPortal(_jsx("div",{style:{zIndex:"var(--z-notifications)"},className:"ruf-container__notifs flex flex-nowrap pointer-events-none fixed inset-0 p-2 bg-transparent flex-col-reverse items-center justify-end",children:Object.values(messages).map((([el])=>el))}),document.body),createPortal(_jsx("div",{style:{zIndex:"var(--z-notifications)"},className:"ruf-container__toasts flex flex-nowrap pointer-events-none fixed inset-0 p-4 bg-transparent flex-col items-end justify-end overflow-auto scroll-hide",children:Object.values(toasts).map((([el])=>el))}),document.body)]})};try{NotificationCenter_NotificationManager.displayName="NotificationManager",NotificationCenter_NotificationManager.__docgenInfo={description:"",displayName:"NotificationManager",props:{}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/context/NotificationCenter.tsx#NotificationManager"]={docgenInfo:NotificationCenter_NotificationManager.__docgenInfo,name:"NotificationManager",path:"packages/core/src/context/NotificationCenter.tsx#NotificationManager"})}catch(__react_docgen_typescript_loader_error){}const GlobalContext=(0,react.createContext)({}),ApplicationProvider=({children,errorElement,defaultLocale,defaultCalendar,defaultColorScheme})=>{const[refNotifications,setNotificationRef]=useState({closeAll:()=>{},showAlert:()=>{},showError:()=>{},showMessage:()=>{},showToast:()=>{}}),[colorScheme,setColorScheme]=useState(defaultColorScheme??("undefined"!=typeof window?localStorage.getItem("ruf:colorScheme")??(window.matchMedia("(prefers-color-scheme: dark)").matches?"dark":"light"):"light")),[calendar,setCalendar]=useState(defaultCalendar??("undefined"!=typeof window?localStorage.getItem("ruf:calendar"):void 0)??"gregorian"),[locale,setLocale]=useState(defaultLocale??("undefined"!=typeof window?localStorage.getItem("ruf:locale"):void 0)??"en");useEffect((()=>{if(document.documentElement.lang=locale,document.documentElement.dataset.colorScheme?setColorScheme(document.documentElement.dataset.colorScheme):document.documentElement.dataset.colorScheme=colorScheme,"undefined"!=typeof window)try{i18next.changeLanguage(locale).then((()=>{document.documentElement.dir=i18next.dir()}))}catch{}}),[]);const toggleColorScheme=useCallback((forceTheme=>{const newTheme=forceTheme??("dark"===colorScheme?"light":"dark");return setColorScheme(newTheme),localStorage.setItem("ruf:colorScheme",newTheme),document.documentElement.dataset.colorScheme=newTheme,newTheme}),[colorScheme]),changeLocale=useCallback((locale=>{try{i18next.changeLanguage(locale).then((()=>{localStorage.setItem("ruf:locale",locale),document.documentElement.lang=locale,document.documentElement.dir=i18next.dir()}))}catch{}return setLocale(locale),locale}),[]),changeCalendar=useCallback((calendar=>(setCalendar(calendar),localStorage.setItem("ruf:calendar",calendar),calendar)),[]);return _jsxs(GlobalContext.Provider,{value:{errorElement,changeLocale,changeCalendar,toggleColorScheme,currentLocale:locale,currentCalendar:calendar,currentColorScheme:colorScheme,notificationManager:refNotifications},children:[_jsx(HotKeyWrapper,{children}),_jsx(NotificationManager,{onLoad:setNotificationRef})]})},useGlobals=()=>(0,react.useContext)(GlobalContext),useApplicationContext=()=>{const{errorElement,...rest}=useContext(GlobalContext);return rest},useNotificationService=()=>{const{notificationManager}=(0,react.useContext)(GlobalContext);return notificationManager??{}};try{ApplicationProvider.displayName="ApplicationProvider",ApplicationProvider.__docgenInfo={description:"global context provider",displayName:"ApplicationProvider",props:{errorElement:{defaultValue:null,description:"application default error display",name:"errorElement",required:!1,type:{name:"ComponentType<{ error?: string; }>"}},defaultLocale:{defaultValue:null,description:"",name:"defaultLocale",required:!1,type:{name:"string"}},defaultCalendar:{defaultValue:null,description:"",name:"defaultCalendar",required:!1,type:{name:"enum",value:[{value:'"gregorian"'},{value:'"hijri"'}]}},defaultColorScheme:{defaultValue:null,description:"",name:"defaultColorScheme",required:!1,type:{name:"enum",value:[{value:'"light"'},{value:'"dark"'}]}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/context/Global.tsx#ApplicationProvider"]={docgenInfo:ApplicationProvider.__docgenInfo,name:"ApplicationProvider",path:"packages/core/src/context/Global.tsx#ApplicationProvider"})}catch(__react_docgen_typescript_loader_error){}try{useGlobals.displayName="useGlobals",useGlobals.__docgenInfo={description:"internal usage only",displayName:"useGlobals",props:{}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/context/Global.tsx#useGlobals"]={docgenInfo:useGlobals.__docgenInfo,name:"useGlobals",path:"packages/core/src/context/Global.tsx#useGlobals"})}catch(__react_docgen_typescript_loader_error){}try{useApplicationContext.displayName="useApplicationContext",useApplicationContext.__docgenInfo={description:"global application context",displayName:"useApplicationContext",props:{}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/context/Global.tsx#useApplicationContext"]={docgenInfo:useApplicationContext.__docgenInfo,name:"useApplicationContext",path:"packages/core/src/context/Global.tsx#useApplicationContext"})}catch(__react_docgen_typescript_loader_error){}const DefaultError=({error})=>{const{t}=(0,es.Bd)("core");return(0,jsx_runtime.jsxs)(jsx_runtime.Fragment,{children:[(0,jsx_runtime.jsx)("h6",{children:t("error.title")}),(0,jsx_runtime.jsx)("p",{className:"line-clamp-4",children:error})]})},ErrorMessage=({error,errorElement})=>{const{errorElement:globalError}=useGlobals(),EE=(0,hooks_useEffectDebugger.ZU)((()=>errorElement??globalError??DefaultError),[],"ErrorBoundary element");return(0,jsx_runtime.jsxs)(jsx_runtime.Fragment,{children:[(0,jsx_runtime.jsx)(ErrorIcon,{}),(0,jsx_runtime.jsx)("div",{className:classnames_default()(boundary_ErrorBoundary_module.boundaryMessage,"p-2"),children:(0,jsx_runtime.jsx)(EE,{error})})]})};class ErrorBoundary extends react.Component{static getDerivedStateFromError(error){return{hasError:!0,error:error.message,stack:error.stack}}constructor(props){super(props),this.state={hasError:!1}}componentDidCatch(error){this.setState({hasError:!0,error:error.message,stack:error.stack})}render(){if(this.state.hasError){const{errorElement:E}=this.props;return(0,jsx_runtime.jsx)("div",{className:classnames_default()(boundary_ErrorBoundary_module.errorBoundary,"grid grid-rows-1 overflow-hidden p-0.5 rounded-capped"),children:(0,jsx_runtime.jsxs)("div",{className:classnames_default()(boundary_ErrorBoundary_module.boundaryContent,"overflow-hidden grid rounded-capped"),children:[(0,jsx_runtime.jsx)(ErrorMessage,{error:this.state.error,errorElement:E}),!1]})})}return this.props.children}}try{ErrorBoundary.displayName="ErrorBoundary",ErrorBoundary.__docgenInfo={description:"An error boundary wrapper higher-order component designed to provide consistent error display across the application will trap runtime errors",displayName:"ErrorBoundary",props:{errorElement:{defaultValue:null,description:"custom error display",name:"errorElement",required:!1,type:{name:"ComponentType<{ error?: string; }>"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/core/boundary/ErrorBoundary.tsx#ErrorBoundary"]={docgenInfo:ErrorBoundary.__docgenInfo,name:"ErrorBoundary",path:"packages/core/src/core/boundary/ErrorBoundary.tsx#ErrorBoundary"})}catch(__react_docgen_typescript_loader_error){}var HeadFoot=__webpack_require__("./packages/core/src/core/headfoot/HeadFoot.tsx"),Card_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/components/card/Card.module.css"),Card_module_options={};Card_module_options.styleTagTransform=styleTagTransform_default(),Card_module_options.setAttributes=setAttributesWithoutAttributes_default(),Card_module_options.insert=insertBySelector_default().bind(null,"head"),Card_module_options.domAPI=styleDomAPI_default(),Card_module_options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(Card_module.A,Card_module_options);const card_Card_module=Card_module.A&&Card_module.A.locals?Card_module.A.locals:void 0,Card=({children,className,bodyClassName,selected,selectedRibbon,onClick,flex,draggable,dragKey,dragData,ref,...aria})=>{const[header,body,footer]=(0,react.useMemo)((()=>react.Children.toArray(children).reduce(((ret,node)=>((0,utils.hr)(node,HeadFoot.Y)?ret[0].push(node):(0,utils.hr)(node,HeadFoot.w)?ret[2].push(node):ret[1].push(node),ret)),[[],[],[]])),[children]);return(0,jsx_runtime.jsx)("div",{className:classnames_default()(card_Card_module.cardWrapper,"rounded-capped relative grid",flex&&"flex-1",selected&&selectedRibbon&&card_Card_module.selected,selected&&"outline outline-2 outline-accent-500 outline-offset-2"),children:(0,jsx_runtime.jsx)(ErrorBoundary,{children:(0,jsx_runtime.jsxs)("div",{className:classnames_default()(card_Card_module.card,className,"rounded-capped flex flex-col flex-nowrap overflow-hidden",onClick&&card_Card_module.clickable),draggable,onDragStart:draggable?e=>dragKey&&e.dataTransfer?.setData(dragKey,JSON.stringify(dragData)):void 0,ref,...aria,children:[header,(0,jsx_runtime.jsx)("div",{role:"none",className:classnames_default()(card_Card_module.cardBody,bodyClassName,"flex-1"),onClick,children:body}),footer]})})})};try{Card.displayName="Card",Card.__docgenInfo={description:"",displayName:"Card",props:{flex:{defaultValue:null,description:"apply flex fill styling",name:"flex",required:!1,type:{name:"boolean"}},onClick:{defaultValue:null,description:"click handler",name:"onClick",required:!1,type:{name:"MouseEventHandler"}},bodyClassName:{defaultValue:null,description:"body css classname(s)",name:"bodyClassName",required:!1,type:{name:"string"}},selected:{defaultValue:null,description:"show selected ring",name:"selected",required:!1,type:{name:"boolean"}},selectedRibbon:{defaultValue:null,description:"show tick mark ribbon",name:"selectedRibbon",required:!1,type:{name:"boolean"}},draggable:{defaultValue:null,description:"make card draggable",name:"draggable",required:!1,type:{name:"boolean"}},dragKey:{defaultValue:null,description:"drag event data key",name:"dragKey",required:!1,type:{name:"string"}},dragData:{defaultValue:null,description:"drag event data",name:"dragData",required:!1,type:{name:"any"}},className:{defaultValue:null,description:"css classname(s)",name:"className",required:!1,type:{name:"string"}},"data-testid":{defaultValue:null,description:"data attribute for test id",name:"data-testid",required:!1,type:{name:"string"}},"data-test-value":{defaultValue:null,description:"data attribute for test value",name:"data-test-value",required:!1,type:{name:"any"}},ref:{defaultValue:null,description:"",name:"ref",required:!1,type:{name:"Ref"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/components/card/Card.tsx#Card"]={docgenInfo:Card.__docgenInfo,name:"Card",path:"packages/core/src/components/card/Card.tsx#Card"})}catch(__react_docgen_typescript_loader_error){}var Media_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/components/media/Media.module.css"),Media_module_options={};Media_module_options.styleTagTransform=styleTagTransform_default(),Media_module_options.setAttributes=setAttributesWithoutAttributes_default(),Media_module_options.insert=insertBySelector_default().bind(null,"head"),Media_module_options.domAPI=styleDomAPI_default(),Media_module_options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(Media_module.A,Media_module_options);const media_Media_module=Media_module.A&&Media_module.A.locals?Media_module.A.locals:void 0,Image=({src,alt,reel,fit="cover",className,...aria})=>{const[colorSet,setColorSet]=(0,react.useState)("light"),loadIndicator=(0,react.useMemo)((()=>(0,jsx_runtime.jsx)("div",{className:classnames_default()(media_Media_module.mediaPlaceholder,"absolute z-1 top-1/2 left-1/2 -translate-x-1/2 -translate-y-1/2 text-4xl text-gray animate-pulse"),children:"●●●"})),[src]);return(0,jsx_runtime.jsxs)("div",{"data-ref":"image",className:classnames_default()(media_Media_module.mediaContainer,"relative overflow-hidden bg-gray inline-block",reel&&media_Media_module.mediaReel,className),"data-colorset":colorSet,...aria,children:[loadIndicator,(0,jsx_runtime.jsx)("img",{alt:alt??src,src,loading:"lazy",crossOrigin:"anonymous",className:classnames_default()(media_Media_module.media,"pointer-events-none w-full h-full",fit&&`object-${fit}`),onLoad:e=>{e.currentTarget.previousElementSibling?.remove(),setColorSet((0,esm.TP)(e.currentTarget))}})]})},Video=({src,poster,reel,autoPlay,playOnHover,fit="cover",className,...aria})=>{const videoRef=(0,react.useRef)(null),[state,setState]=(0,react.useState)(!0),[volume,setVolume]=(0,react.useState)(!1);return(0,jsx_runtime.jsxs)("div",{"data-ref":"video",className:classnames_default()(media_Media_module.mediaContainer,"relative overflow-hidden bg-gray inline-block",reel&&media_Media_module.mediaReel,className),onMouseEnter:()=>{playOnHover&&videoRef.current?.play()},onMouseLeave:()=>{playOnHover&&videoRef.current?.pause()},...aria,children:[(0,jsx_runtime.jsx)("div",{className:classnames_default()(media_Media_module.mediaPlaceholder,"absolute z-1 top-1/2 left-1/2 -translate-x-1/2 -translate-y-1/2 text-5xl animate-pulse"),children:"●●●"}),(0,jsx_runtime.jsxs)("video",{loop:!0,ref:videoRef,controls:!1,poster,autoPlay,className:classnames_default()(media_Media_module.media,"pointer-events-none w-full h-full",fit&&`object-${fit}`),onPlay:()=>setState(!0),onPause:()=>setState(!1),onVolumeChange:e=>setVolume(!!e.currentTarget.volume),onLoadedData:e=>{e.currentTarget.volume=0,e.currentTarget.previousElementSibling?.remove()},children:[(0,jsx_runtime.jsx)("source",{src}),(0,jsx_runtime.jsx)("track",{kind:"captions"})]}),(0,jsx_runtime.jsxs)("div",{"data-inner-clickable":!0,className:classnames_default()(media_Media_module.mediaControls,"absolute bottom-6 end-6 rounded-full flex flex-col"),children:[(0,jsx_runtime.jsx)(Button.$,{rounded:!0,variant:"link",className:media_Media_module.mediaControlPlaceholder,icon:icons.O.ellipsis,"aria-label":"controls"}),(0,jsx_runtime.jsx)(Button.$,{rounded:!0,variant:"link","aria-label":"controls",className:media_Media_module.mediaControlAction,onClick:()=>{videoRef.current&&(videoRef.current.volume=videoRef.current.volume?0:1)},icon:volume?icons.O.volumeOn:icons.O.volumeOff}),(0,jsx_runtime.jsx)(Button.$,{rounded:!0,variant:"link","aria-label":"controls",className:media_Media_module.mediaControlAction,onClick:()=>{videoRef.current?.paused?videoRef.current?.play():videoRef.current?.pause()},icon:state?icons.O.pause:icons.O.play})]})]})};try{Image.displayName="Image",Image.__docgenInfo={description:"",displayName:"Image",props:{alt:{defaultValue:null,description:"image alt text",name:"alt",required:!1,type:{name:"string"}},src:{defaultValue:null,description:"media source",name:"src",required:!0,type:{name:"string"}},reel:{defaultValue:null,description:"show media reel decoration",name:"reel",required:!1,type:{name:"boolean"}},fit:{defaultValue:{value:"cover"},description:"media content fit",name:"fit",required:!1,type:{name:"enum",value:[{value:'"fill"'},{value:'"cover"'},{value:'"contain"'}]}},className:{defaultValue:null,description:"css classname(s)",name:"className",required:!1,type:{name:"string"}},"data-testid":{defaultValue:null,description:"data attribute for test id",name:"data-testid",required:!1,type:{name:"string"}},"data-test-value":{defaultValue:null,description:"data attribute for test value",name:"data-test-value",required:!1,type:{name:"any"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/components/media/Media.tsx#Image"]={docgenInfo:Image.__docgenInfo,name:"Image",path:"packages/core/src/components/media/Media.tsx#Image"})}catch(__react_docgen_typescript_loader_error){}try{Video.displayName="Video",Video.__docgenInfo={description:"",displayName:"Video",props:{poster:{defaultValue:null,description:"video poster",name:"poster",required:!1,type:{name:"string"}},autoPlay:{defaultValue:null,description:"auto play video",name:"autoPlay",required:!1,type:{name:"boolean"}},playOnHover:{defaultValue:null,description:"play on mouse over",name:"playOnHover",required:!1,type:{name:"boolean"}},src:{defaultValue:null,description:"media source",name:"src",required:!0,type:{name:"string"}},reel:{defaultValue:null,description:"show media reel decoration",name:"reel",required:!1,type:{name:"boolean"}},fit:{defaultValue:{value:"cover"},description:"media content fit",name:"fit",required:!1,type:{name:"enum",value:[{value:'"fill"'},{value:'"cover"'},{value:'"contain"'}]}},className:{defaultValue:null,description:"css classname(s)",name:"className",required:!1,type:{name:"string"}},"data-testid":{defaultValue:null,description:"data attribute for test id",name:"data-testid",required:!1,type:{name:"string"}},"data-test-value":{defaultValue:null,description:"data attribute for test value",name:"data-test-value",required:!1,type:{name:"any"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/components/media/Media.tsx#Video"]={docgenInfo:Video.__docgenInfo,name:"Video",path:"packages/core/src/components/media/Media.tsx#Video"})}catch(__react_docgen_typescript_loader_error){}const CardCover=({className,children,height=120,justify="end",colorScheme,...aria})=>{const[media,body]=(0,react.useMemo)((()=>react.Children.toArray(children).reduce(((ret,node)=>((0,utils.hr)(node,Image,Video)?ret[0].push(node):ret[1].push(node),ret)),[[],[]])),[children]);return(0,jsx_runtime.jsxs)("div",{style:{height},className:classnames_default()(card_Card_module.cardCover,card_Card_module[colorScheme??"inheritScheme"],"relative z-0"),...aria,children:[media,(0,jsx_runtime.jsx)("div",{className:classnames_default()(card_Card_module.cardCoverContent,"relative pointer-events-none z-1 flex flex-col flex-nowrap p-4 h-full",className,`justify-${justify}`,className),children:body})]})};try{CardCover.displayName="CardCover",CardCover.__docgenInfo={description:"",displayName:"CardCover",props:{height:{defaultValue:{value:"120"},description:"cover height",name:"height",required:!1,type:{name:"string | number"}},colorScheme:{defaultValue:null,description:"cover color scheme",name:"colorScheme",required:!1,type:{name:"enum",value:[{value:'"light"'},{value:'"dark"'}]}},justify:{defaultValue:{value:"end"},description:"justify content",name:"justify",required:!1,type:{name:"enum",value:[{value:'"center"'},{value:'"end"'},{value:'"start"'}]}},className:{defaultValue:null,description:"css classname(s)",name:"className",required:!1,type:{name:"string"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/components/card/CardCover.tsx#CardCover"]={docgenInfo:CardCover.__docgenInfo,name:"CardCover",path:"packages/core/src/components/card/CardCover.tsx#CardCover"})}catch(__react_docgen_typescript_loader_error){}var Chip_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/components/chip/Chip.module.css"),Chip_module_options={};Chip_module_options.styleTagTransform=styleTagTransform_default(),Chip_module_options.setAttributes=setAttributesWithoutAttributes_default(),Chip_module_options.insert=insertBySelector_default().bind(null,"head"),Chip_module_options.domAPI=styleDomAPI_default(),Chip_module_options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(Chip_module.A,Chip_module_options);const chip_Chip_module=Chip_module.A&&Chip_module.A.locals?Chip_module.A.locals:void 0,Chip_SizeMap={xs:"0.625rem",sm:"0.875rem",md:"1.125rem",lg:"1.5rem",xl:"2rem"},Chip=({ref,children,className,size,color,variant,icon,iconBg,iconColor,rtlFlip,disabled,onClick,onIconClick,onRemove,rounded,stopPropagation,as,...aria})=>{const styles=(0,hooks_useEffectDebugger.ZU)((()=>{const s={};return color&&(s.color=(0,utils.oU)(color)),size&&!(size in Chip_SizeMap)&&(s.fontSize=size),size&&size in Chip_SizeMap&&(s.fontSize=Chip_SizeMap[size]),s}),[color,size],"Chip styles"),clickHandler=(0,react.useCallback)((e=>{stopPropagation&&e.stopPropagation(),onClick?.(e)}),[onClick,stopPropagation]),removeHandler=(0,react.useCallback)((e=>{stopPropagation&&e.stopPropagation(),onRemove?.(e)}),[onRemove,stopPropagation]),E=as??"div";return(0,jsx_runtime.jsxs)(E,{ref,role:"term",className:classnames_default()(chip_Chip_module.chip,className,color&&(0,utils.Iq)(color),"select-none inline-flex flex-nowrap items-center max-w-72 text-sm rounded",rounded&&"rounded-full",!!onClick&&chip_Chip_module.clickable,disabled&&chip_Chip_module.disabled),style:styles,"data-variant":variant,"data-inner-clickable":!!onClick,onClick:clickHandler,...aria,children:[icon&&(0,jsx_runtime.jsx)(Icon.I,{className:classnames_default()(chip_Chip_module.chipIcon,"m-1"),icon,bg:iconBg,onClick:onIconClick,color:iconColor,rtlFlip}),children&&(0,jsx_runtime.jsx)("label",{className:classnames_default()(chip_Chip_module.chipLabel,"truncate"),children}),onRemove&&(0,jsx_runtime.jsx)("span",{role:"none",className:classnames_default()(chip_Chip_module.chipRemove,"cursor-pointer pe-1 opacity-65 hover:opacity-90"),onClick:removeHandler,children:"×"})]})};try{Chip.displayName="Chip",Chip.__docgenInfo={description:"",displayName:"Chip",props:{size:{defaultValue:null,description:"chip size",name:"size",required:!1,type:{name:"enum",value:[{value:'"xs"'},{value:'"sm"'},{value:'"md"'},{value:'"lg"'},{value:'"xl"'}]}},color:{defaultValue:null,description:"chip color (CSS color / tailwind color)",name:"color",required:!1,type:{name:"any"}},variant:{defaultValue:null,description:"chip styling",name:"variant",required:!1,type:{name:"enum",value:[{value:'"outline"'},{value:'"solid"'}]}},rounded:{defaultValue:null,description:"full rounded edges",name:"rounded",required:!1,type:{name:"boolean"}},disabled:{defaultValue:null,description:"disabled state",name:"disabled",required:!1,type:{name:"boolean"}},stopPropagation:{defaultValue:null,description:"prevent click propagation",name:"stopPropagation",required:!1,type:{name:"boolean"}},onClick:{defaultValue:null,description:"click handler",name:"onClick",required:!1,type:{name:"MouseEventHandler"}},onIconClick:{defaultValue:null,description:"icon click handler",name:"onIconClick",required:!1,type:{name:"MouseEventHandler"}},onRemove:{defaultValue:null,description:"remove handler",name:"onRemove",required:!1,type:{name:"MouseEventHandler"}},className:{defaultValue:null,description:"css classname(s)",name:"className",required:!1,type:{name:"string"}},icon:{defaultValue:null,description:"svg path / image url",name:"icon",required:!1,type:{name:"string"}},rtlFlip:{defaultValue:null,description:"flip icon in rtl",name:"rtlFlip",required:!1,type:{name:"boolean"}},iconBg:{defaultValue:null,description:"icon background color",name:"iconBg",required:!1,type:{name:"string"}},iconColor:{defaultValue:null,description:"icon color",name:"iconColor",required:!1,type:{name:"string"}},"data-testid":{defaultValue:null,description:"data attribute for test id",name:"data-testid",required:!1,type:{name:"string"}},"data-test-value":{defaultValue:null,description:"data attribute for test value",name:"data-test-value",required:!1,type:{name:"any"}},ref:{defaultValue:null,description:"",name:"ref",required:!1,type:{name:"Ref"}},as:{defaultValue:null,description:"The component used for the root node.\nEither a string to use a HTML element or a component.",name:"as",required:!1,type:{name:"ElementType"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/components/chip/Chip.tsx#Chip"]={docgenInfo:Chip.__docgenInfo,name:"Chip",path:"packages/core/src/components/chip/Chip.tsx#Chip"})}catch(__react_docgen_typescript_loader_error){}var Collapsable_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/components/collapsable/Collapsable.module.css"),Collapsable_module_options={};Collapsable_module_options.styleTagTransform=styleTagTransform_default(),Collapsable_module_options.setAttributes=setAttributesWithoutAttributes_default(),Collapsable_module_options.insert=insertBySelector_default().bind(null,"head"),Collapsable_module_options.domAPI=styleDomAPI_default(),Collapsable_module_options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(Collapsable_module.A,Collapsable_module_options);const collapsable_Collapsable_module=Collapsable_module.A&&Collapsable_module.A.locals?Collapsable_module.A.locals:void 0,Collapsable=({ref,disabled,className,bodyClassName,headerClassName,children,iconAlign,stickyHeader,iconClosed=icons.O.chevronRight,iconOpen=icons.O.chevronDown,open,onClose,onOpen,...aria})=>{const[openState,setOpenState]=(0,react.useState)(open),headRef=(0,react.useRef)(null),bodyRef=(0,react.useRef)(null);(0,react.useImperativeHandle)(ref,(()=>({button:headRef,body:bodyRef,open:!!openState})),[openState]),(0,react.useEffect)((()=>{setOpenState(open)}),[open]);const[head,body]=(0,react.useMemo)((()=>{const[h,...b]=react.Children.toArray(children);return[h,b]}),[children]);return(0,jsx_runtime.jsxs)("div",{className:classnames_default()(collapsable_Collapsable_module.collapsable,className),...aria,children:[(0,jsx_runtime.jsxs)("div",{role:"none",ref:headRef,className:classnames_default()(collapsable_Collapsable_module.collapsableHead,"flex gap-1 flex-nowrap py-2 font-medium cursor-pointer items-center select-none hover:opacity-70",headerClassName,stickyHeader&&"bg-base sticky top-0 px-2 py-1 z-10","end"===iconAlign?"flex-row-reverse":"flex-row"),onClick:()=>!disabled&&setOpenState(!openState),children:[(0,jsx_runtime.jsx)(Icon.I,{size:"1.125em",icon:openState?iconOpen:iconClosed,rtlFlip:!0}),(0,jsx_runtime.jsx)("div",{className:"flex-1 px-2",children:head})]}),openState&&(0,jsx_runtime.jsx)("div",{ref:bodyRef,className:classnames_default()(collapsable_Collapsable_module.collapsableBody,bodyClassName),children:body})]})};try{Collapsable.displayName="Collapsable",Collapsable.__docgenInfo={description:"",displayName:"Collapsable",props:{iconAlign:{defaultValue:null,description:"expand icon alignment",name:"iconAlign",required:!1,type:{name:"enum",value:[{value:'"end"'},{value:'"start"'}]}},bodyClassName:{defaultValue:null,description:"panel body className",name:"bodyClassName",required:!1,type:{name:"string"}},headerClassName:{defaultValue:null,description:"header button className",name:"headerClassName",required:!1,type:{name:"string"}},stickyHeader:{defaultValue:null,description:"Header position sticky",name:"stickyHeader",required:!1,type:{name:"boolean"}},iconOpen:{defaultValue:{value:"CoreIcons.chevronDown"},description:"open state icon",name:"iconOpen",required:!1,type:{name:"string"}},iconClosed:{defaultValue:{value:"CoreIcons.chevronRight"},description:"closed state icon",name:"iconClosed",required:!1,type:{name:"string"}},open:{defaultValue:null,description:"open state",name:"open",required:!1,type:{name:"boolean"}},disabled:{defaultValue:null,description:"disable collapsable",name:"disabled",required:!1,type:{name:"boolean"}},onOpen:{defaultValue:null,description:"open handler",name:"onOpen",required:!1,type:{name:"(() => void)"}},onClose:{defaultValue:null,description:"open handler",name:"onClose",required:!1,type:{name:"(() => void)"}},className:{defaultValue:null,description:"css classname(s)",name:"className",required:!1,type:{name:"string"}},"data-testid":{defaultValue:null,description:"data attribute for test id",name:"data-testid",required:!1,type:{name:"string"}},"data-test-value":{defaultValue:null,description:"data attribute for test value",name:"data-test-value",required:!1,type:{name:"any"}},ref:{defaultValue:null,description:"",name:"ref",required:!1,type:{name:"Ref"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/components/collapsable/Collapsable.tsx#Collapsable"]={docgenInfo:Collapsable.__docgenInfo,name:"Collapsable",path:"packages/core/src/components/collapsable/Collapsable.tsx#Collapsable"})}catch(__react_docgen_typescript_loader_error){}var Divider_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/components/divider/Divider.module.css"),Divider_module_options={};Divider_module_options.styleTagTransform=styleTagTransform_default(),Divider_module_options.setAttributes=setAttributesWithoutAttributes_default(),Divider_module_options.insert=insertBySelector_default().bind(null,"head"),Divider_module_options.domAPI=styleDomAPI_default(),Divider_module_options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(Divider_module.A,Divider_module_options);const divider_Divider_module=Divider_module.A&&Divider_module.A.locals?Divider_module.A.locals:void 0,Divider=({children,color,vertical,fill,align="start",className})=>{const Rule=(0,react.useCallback)((({flex,className})=>(0,jsx_runtime.jsx)("hr",{style:{flex},className:classnames_default()(className,vertical&&"vertical",!flex&&"self-stretch",vertical?divider_Divider_module.vertical:divider_Divider_module.horizontal,color&&(0,utils.Z1)(color+"-200"))})),[color,vertical]);return children?(0,jsx_runtime.jsxs)("div",{className:classnames_default()("flex flex-nowrap items-center",vertical&&"flex-col",className),children:[(0,jsx_runtime.jsx)(Rule,{flex:"start"===align?"0 0 1rem":"1 1 1em"}),(0,jsx_runtime.jsx)("div",{className:classnames_default()("px-2 whitespace-nowrap",vertical?divider_Divider_module.vertical:divider_Divider_module.horizontal,fill&&(0,utils.MN)((color??"tint")+"-200"),!fill&&(0,utils.Iq)((color??"tint")+"-600"),"rounded-full text-[0.75em]",vertical&&"origin-center -rotate-90 z-1"),children}),(0,jsx_runtime.jsx)(Rule,{flex:"end"===align?"0 0 1rem":"1 1 1em"})]}):(0,jsx_runtime.jsx)(Rule,{className})};try{Divider.displayName="Divider",Divider.__docgenInfo={description:"",displayName:"Divider",props:{fill:{defaultValue:null,description:"apply text bg",name:"fill",required:!1,type:{name:"boolean"}},vertical:{defaultValue:null,description:"vertical rule",name:"vertical",required:!1,type:{name:"boolean"}},color:{defaultValue:null,description:"rule color",name:"color",required:!1,type:{name:"enum",value:[{value:'"primary"'},{value:'"accent"'},{value:'"info"'},{value:'"danger"'},{value:'"success"'},{value:'"warning"'},{value:'"scarlet"'},{value:'"pumpkin"'},{value:'"marigold"'},{value:'"avacado"'},{value:'"jade"'},{value:'"denim"'},{value:'"iris"'},{value:'"lilac"'},{value:'"coral"'},{value:'"wood"'},{value:'"silver"'},{value:'"steel"'},{value:'"olive"'},{value:'"sand"'},{value:'"tint"'}]}},align:{defaultValue:{value:"start"},description:"text alignment",name:"align",required:!1,type:{name:"enum",value:[{value:'"center"'},{value:'"end"'},{value:'"start"'}]}},className:{defaultValue:null,description:"css classname(s)",name:"className",required:!1,type:{name:"string"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/components/divider/Divider.tsx#Divider"]={docgenInfo:Divider.__docgenInfo,name:"Divider",path:"packages/core/src/components/divider/Divider.tsx#Divider"})}catch(__react_docgen_typescript_loader_error){}const DropdownTool=({children,className,groupHover,icon,...props})=>(0,jsx_runtime.jsxs)(Dropdown,{...props,children:[(0,jsx_runtime.jsx)(Icon.I,{icon:icon??icons.O.caretDown,className:classnames_default()(className,"outline bg-base flex-content pointer-events-auto cursor-pointer",groupHover&&"hidden group-hover:inline-block data-[dropdown-open]:inline-block")}),children]});try{DropdownTool.displayName="DropdownTool",DropdownTool.__docgenInfo={description:"",displayName:"DropdownTool",props:{className:{defaultValue:null,description:"css classname(s)",name:"className",required:!1,type:{name:"string"}},ref:{defaultValue:null,description:"",name:"ref",required:!1,type:{name:"Ref"}},disabled:{defaultValue:null,description:"disable dropdown",name:"disabled",required:!1,type:{name:"boolean"}},onClose:{defaultValue:null,description:"close handler",name:"onClose",required:!1,type:{name:"(() => void)"}},placement:{defaultValue:null,description:"dropdown placement",name:"placement",required:!1,type:{name:"enum",value:[{value:'"top-start"'},{value:'"top-end"'},{value:'"bottom-start"'},{value:'"bottom-end"'},{value:'"top"'},{value:'"bottom"'},{value:'"right"'},{value:'"left"'},{value:'"right-end"'},{value:'"right-start"'},{value:'"left-end"'},{value:'"left-start"'}]}},onOpen:{defaultValue:null,description:"open handler",name:"onOpen",required:!1,type:{name:"(() => void)"}},showArrow:{defaultValue:null,description:"show dropdown arrow",name:"showArrow",required:!1,type:{name:"boolean"}},fitToParent:{defaultValue:null,description:"fit with to anchor' parent element",name:"fitToParent",required:!1,type:{name:"boolean"}},closeOnClick:{defaultValue:null,description:"close dropdown on click",name:"closeOnClick",required:!1,type:{name:"boolean"}},plainDropdown:{defaultValue:null,description:"plain dropdown body",name:"plainDropdown",required:!1,type:{name:"boolean"}},dropdownClassName:{defaultValue:null,description:"dropdown body className",name:"dropdownClassName",required:!1,type:{name:"string"}},dropdownEvent:{defaultValue:null,description:"dropdown event",name:"dropdownEvent",required:!1,type:{name:"enum",value:[{value:'"click"'},{value:'"hover"'}]}},icon:{defaultValue:null,description:"",name:"icon",required:!1,type:{name:"string"}},groupHover:{defaultValue:null,description:"hide until group hovered",name:"groupHover",required:!1,type:{name:"boolean"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/components/dropdown/DropdownTool.tsx#DropdownTool"]={docgenInfo:DropdownTool.__docgenInfo,name:"DropdownTool",path:"packages/core/src/components/dropdown/DropdownTool.tsx#DropdownTool"})}catch(__react_docgen_typescript_loader_error){}const EmptyContent_SizeMap={"":"1rem",sm:"0.875rem",md:"1.125rem"},DefaultIcon=()=>(0,jsx_runtime.jsxs)("svg",{version:"1.1",viewBox:"0 0 512 512",width:"1em",height:"1em",xmlns:"http://www.w3.org/2000/svg",children:[(0,jsx_runtime.jsx)("path",{opacity:"0.5",fill:"currentColor",d:"M106.1,296.01c-0.46,0-0.92-0.05-1.37-0.14c-0.45-0.09-0.89-0.22-1.31-0.4c-0.42-0.17-0.83-0.39-1.21-0.64c-0.38-0.26-0.74-0.55-1.06-0.87c-0.33-0.33-0.62-0.68-0.87-1.07c-0.26-0.38-0.47-0.78-0.65-1.21c-0.17-0.42-0.31-0.86-0.4-1.31c-0.09-0.45-0.13-0.91-0.13-1.36c0-0.46,0.04-0.92,0.13-1.37s0.23-0.89,0.4-1.31c0.18-0.42,0.39-0.83,0.65-1.21c0.25-0.38,0.54-0.74,0.87-1.06c0.32-0.33,0.68-0.62,1.06-0.87s0.79-0.47,1.21-0.65c0.42-0.17,0.86-0.31,1.31-0.4c0.9-0.18,1.83-0.18,2.73,0c0.45,0.09,0.89,0.23,1.31,0.4c0.43,0.18,0.83,0.4,1.21,0.65s0.74,0.54,1.07,0.87c0.32,0.32,0.61,0.68,0.87,1.06c0.25,0.38,0.47,0.79,0.64,1.21s0.31,0.86,0.4,1.31s0.14,0.91,0.14,1.37c0,0.45-0.05,0.91-0.14,1.36c-0.09,0.45-0.23,0.89-0.4,1.31c-0.17,0.43-0.39,0.83-0.64,1.21c-0.26,0.39-0.55,0.74-0.87,1.07c-0.33,0.32-0.69,0.61-1.07,0.87c-0.38,0.25-0.78,0.47-1.21,0.64c-0.42,0.18-0.86,0.31-1.31,0.4S106.55,296.01,106.1,296.01z"}),(0,jsx_runtime.jsx)("path",{opacity:"0.5",fill:"currentColor",d:"M475.5,458.25H36.5c-8.78,0-16.58-4.58-20.86-12.24c-4.28-7.67-4.09-16.71,0.51-24.19l70.18-114.04c2.03-3.29,6.34-4.32,9.63-2.29c3.29,2.03,4.32,6.34,2.29,9.63L28.07,429.16c-1.91,3.1-1.99,6.84-0.21,10.02s5.01,5.07,8.64,5.07H475.5c3.64,0,6.87-1.9,8.64-5.07s1.7-6.92-0.21-10.02l-219.5-356.7c-1.84-3-4.92-4.71-8.43-4.71s-6.59,1.72-8.43,4.71L124.24,272.88c-2.03,3.29-6.34,4.32-9.63,2.29c-3.29-2.03-4.32-6.34-2.29-9.63L235.64,65.13C240.03,58,247.64,53.75,256,53.75s15.97,4.25,20.36,11.38l219.5,356.7c4.6,7.48,4.79,16.52,0.51,24.19C492.08,453.67,484.28,458.25,475.5,458.25z"}),(0,jsx_runtime.jsx)("path",{opacity:"0.5",fill:"currentColor",d:"M354.79,279.28c-1.85,0-3.65-0.75-4.95-2.05c-0.33-0.32-0.62-0.68-0.87-1.07c-0.26-0.37-0.47-0.78-0.65-1.2c-0.17-0.43-0.31-0.87-0.4-1.31c-0.09-0.45-0.13-0.91-0.13-1.37c0-0.46,0.04-0.92,0.13-1.37c0.09-0.44,0.23-0.89,0.4-1.31c0.18-0.42,0.39-0.83,0.65-1.21c0.25-0.38,0.54-0.74,0.87-1.06c1.62-1.63,4.04-2.37,6.31-1.91c0.45,0.09,0.89,0.22,1.31,0.4c0.43,0.17,0.83,0.39,1.21,0.64c0.39,0.25,0.74,0.55,1.06,0.87c0.33,0.32,0.62,0.68,0.88,1.06c0.25,0.38,0.46,0.79,0.64,1.21c0.18,0.42,0.31,0.87,0.4,1.31c0.09,0.45,0.14,0.91,0.14,1.37c0,0.46-0.05,0.92-0.14,1.37c-0.09,0.44-0.22,0.88-0.4,1.31c-0.18,0.42-0.39,0.83-0.64,1.2c-0.26,0.39-0.55,0.75-0.88,1.07c-0.32,0.32-0.67,0.61-1.06,0.87c-0.38,0.25-0.78,0.47-1.21,0.64c-0.42,0.18-0.86,0.31-1.31,0.4C355.7,279.23,355.24,279.28,354.79,279.28z"}),(0,jsx_runtime.jsx)("path",{opacity:"0.5",fill:"currentColor",d:"M403.86,423.48H108.14c-10.56,0-20.31-5.72-25.46-14.94c-5.15-9.21-4.91-20.52,0.62-29.51l147.86-240.29c5.35-8.69,14.63-13.88,24.84-13.88s19.49,5.19,24.84,13.88l68.87,111.91c2.03,3.29,1,7.6-2.29,9.63c-3.29,2.02-7.6,1-9.63-2.29l-68.87-111.91c-2.78-4.52-7.61-7.22-12.91-7.22s-10.13,2.7-12.91,7.22L95.22,386.37c-2.88,4.67-3,10.55-0.32,15.34c2.68,4.79,7.75,7.77,13.24,7.77h295.72c5.49,0,10.56-2.98,13.24-7.77c2.68-4.79,2.55-10.67-0.32-15.34l-54.14-87.97c-2.03-3.29-1-7.6,2.29-9.63c3.29-2.02,7.61-1,9.63,2.29l54.14,87.97c5.53,8.99,5.77,20.3,0.62,29.51C424.17,417.76,414.42,423.48,403.86,423.48z"}),(0,jsx_runtime.jsx)("path",{fill:"currentColor",d:"M270.12,335.13h-28.24c-6.17,0-11.22-4.83-11.5-10.99l-0.5-11.01c-0.18-3.86,2.81-7.14,6.67-7.31 c3.85-0.21,7.14,2.81,7.31,6.67l0.4,8.64h23.49l5.23-114.15h-33.96l3.79,82.55c0.18,3.86-2.81,7.14-6.67,7.31 c-0.11,0.01-0.22,0.01-0.33,0.01c-3.72,0-6.81-2.93-6.99-6.68l-3.91-85.15c-0.14-3.13,1.01-6.22,3.17-8.48 c2.16-2.26,5.2-3.56,8.33-3.56h39.17c3.13,0,6.16,1.3,8.33,3.56c2.16,2.26,3.32,5.35,3.17,8.48l-5.46,119.12 C281.34,330.3,276.29,335.13,270.12,335.13z"}),(0,jsx_runtime.jsx)("path",{fill:"currentColor",d:"M268.47,394.55h-24.94c-4.83,0-9.39-2.12-12.5-5.81s-4.44-8.54-3.63-13.3l2.69-15.79 c1.34-7.89,8.13-13.61,16.13-13.61h19.56c8,0,14.78,5.73,16.13,13.61l2.69,15.79c0.81,4.76-0.51,9.61-3.63,13.3 S273.3,394.55,268.47,394.55z M246.22,360.04c-1.15,0-2.13,0.83-2.33,1.96l-2.69,15.79c-0.16,0.94,0.26,1.61,0.52,1.92 c0.26,0.31,0.85,0.84,1.8,0.84h24.94c0.95,0,1.54-0.53,1.8-0.84c0.26-0.31,0.68-0.98,0.52-1.92L268.11,362 c-0.19-1.14-1.17-1.96-2.33-1.96H246.22z"})]}),EmptyContent=({children,title,message,icon,className,size,...test})=>(0,jsx_runtime.jsxs)("div",{className:classnames_default()("p-6 flex flex-col items-center area-content",className),style:size&&{fontSize:EmptyContent_SizeMap[size]},...test,children:[(0,jsx_runtime.jsxs)("div",{className:"leading-none",style:{fontSize:"4em"},children:[(0,esm.Kg)(icon)&&(0,jsx_runtime.jsx)(Icon.I,{icon}),(0,react.isValidElement)(icon)&&icon,!icon&&(0,jsx_runtime.jsx)(DefaultIcon,{})]}),title&&(0,jsx_runtime.jsx)("p",{className:"font-medium text-center text-dimmed",style:{fontSize:"1.5em"},children:title}),(0,jsx_runtime.jsx)("p",{className:"font-medium text-center text-muted",style:{fontSize:"0.875em"},children:message}),(0,jsx_runtime.jsx)("div",{className:"flex gap-1 pt-6",children})]});try{EmptyContent.displayName="EmptyContent",EmptyContent.__docgenInfo={description:"",displayName:"EmptyContent",props:{title:{defaultValue:null,description:"empty title",name:"title",required:!1,type:{name:"string | Element"}},message:{defaultValue:null,description:"empty message",name:"message",required:!0,type:{name:"string | Element"}},size:{defaultValue:null,description:"content size",name:"size",required:!1,type:{name:"enum",value:[{value:'"sm"'},{value:'"md"'}]}},icon:{defaultValue:null,description:"empty icon",name:"icon",required:!1,type:{name:"string | ReactElement>"}},className:{defaultValue:null,description:"css classname(s)",name:"className",required:!1,type:{name:"string"}},"data-testid":{defaultValue:null,description:"data attribute for test id",name:"data-testid",required:!1,type:{name:"string"}},"data-test-value":{defaultValue:null,description:"data attribute for test value",name:"data-test-value",required:!1,type:{name:"any"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/components/empty/EmptyContent.tsx#EmptyContent"]={docgenInfo:EmptyContent.__docgenInfo,name:"EmptyContent",path:"packages/core/src/components/empty/EmptyContent.tsx#EmptyContent"})}catch(__react_docgen_typescript_loader_error){}const ContextMenu=({children,menu,disabled})=>{const[isOpen,setIsOpen]=(0,react.useState)(!1),nodeId=(0,floating_ui_react.fI)(),{refs,floatingStyles,context}=(0,floating_ui_react.we)({open:isOpen,nodeId,onOpenChange:(open,evt,reason)=>{const target=evt?.target;target?.closest(".menu-list")||setIsOpen(open)},strategy:"fixed",placement:"bottom-start",whileElementsMounted:floating_ui_dom.ll,middleware:[(0,floating_ui_react_dom.cY)(8),(0,floating_ui_react_dom.UU)()]}),click=(0,floating_ui_react.kp)(context,{toggle:!0,ignoreMouse:!0}),dismiss=(0,floating_ui_react.s9)(context,{bubbles:!0}),{getFloatingProps}=(0,floating_ui_react.bv)([dismiss,click]),handleClick=(0,react.useRef)((e=>{const virtual={getBoundingClientRect:()=>({width:0,height:0,x:e.clientX,y:e.clientY,top:e.clientY,left:e.clientX,right:e.clientX,bottom:e.clientY})};return refs.setReference(virtual),setIsOpen(!0),e.stopImmediatePropagation(),e.preventDefault(),!1})),wrapperRef=(0,react.useRef)(null);(0,react.useEffect)((()=>{const el=wrapperRef.current;if(el&&!disabled)return el?.parentElement?.addEventListener("contextmenu",handleClick.current),()=>{el?.parentElement?.removeEventListener("contextmenu",handleClick.current)}}),[disabled]);const tryClosing=(0,react.useRef)((e=>{e.target?.closest("[data-dropdown-dismiss='true']")&&setTimeout((()=>setIsOpen(!1)),50)}));return(0,jsx_runtime.jsxs)("div",{className:"contents",ref:wrapperRef,onMouseUpCapture:tryClosing.current,children:[children,isOpen&&(0,jsx_runtime.jsx)(floating_ui_react.XF,{root:refs.domReference.current?.closest(".theme-base")??void 0,children:(0,react.cloneElement)(menu,{...getFloatingProps(),style:{...floatingStyles,borderRadius:"var(--rounding)",zIndex:"var(--z-popover)",fontSize:"0.875rem"},className:"bg-base outline rounded-capped shadow-lg",ref:refs.setFloating,onMouseUp:tryClosing.current})})]})};try{ContextMenu.displayName="ContextMenu",ContextMenu.__docgenInfo={description:"",displayName:"ContextMenu",props:{menu:{defaultValue:null,description:"",name:"menu",required:!0,type:{name:"ReactElement<(props: MenuProps) => Element, string | JSXElementConstructor>"}},disabled:{defaultValue:null,description:"",name:"disabled",required:!1,type:{name:"boolean"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/components/menu/ContextMenu.tsx#ContextMenu"]={docgenInfo:ContextMenu.__docgenInfo,name:"ContextMenu",path:"packages/core/src/components/menu/ContextMenu.tsx#ContextMenu"})}catch(__react_docgen_typescript_loader_error){}var HotKeyLabel=__webpack_require__("./packages/core/src/hotkeys/HotKeyLabel.tsx"),overlays=__webpack_require__("./packages/core/src/overlays/index.ts"),Menu_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/components/menu/Menu.module.css"),Menu_module_options={};Menu_module_options.styleTagTransform=styleTagTransform_default(),Menu_module_options.setAttributes=setAttributesWithoutAttributes_default(),Menu_module_options.insert=insertBySelector_default().bind(null,"head"),Menu_module_options.domAPI=styleDomAPI_default(),Menu_module_options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(Menu_module.A,Menu_module_options);const menu_Menu_module=Menu_module.A&&Menu_module.A.locals?Menu_module.A.locals:void 0,MenuItem=({as,label,color="primary",className,icon,iconBg,iconColor,appendLabel,rtlFlip,altIcon,id,active,disabled,onClick,badge,hotKey,minimal,"data-open":childOpen,ref,...aria})=>{const tree=(0,floating_ui_react.cq)(),badgeProps=(0,react.useMemo)((()=>(0,Badge.l)(badge)),[badge]),iconEl=(0,react.useMemo)((()=>{let path=icon;return minimal&&!path&&(path=(0,esm.DB)(label)),(0,jsx_runtime.jsx)(Icon.I,{className:classnames_default()(menu_Menu_module.menuIcon,minimal&&menu_Menu_module.minimal),icon:path??"",bg:iconBg,color:iconColor,rtlFlip})}),[icon,iconBg,iconColor,rtlFlip,minimal,label]),Wrapper=(0,react.useCallback)((({children,...rest})=>minimal?(0,jsx_runtime.jsx)(overlays.m_,{content:label,placement:"right",disabled:childOpen,...rest,children}):(0,jsx_runtime.jsx)(react.Fragment,{children})),[minimal,label,childOpen]),menuLabel=(0,react.useMemo)((()=>(0,jsx_runtime.jsxs)("div",{className:"flex flex-nowrap text-start items-center",children:[iconEl,!minimal&&(0,jsx_runtime.jsx)("label",{className:"flex-1 pe-4 py-[0.375em] truncate",children:label}),appendLabel&&(0,jsx_runtime.jsx)("span",{className:classnames_default()("font-bold whitespace-nowrap text-center leading-none mx-1",minimal&&"absolute inset-x-0 bottom-0 overflow-clip",minimal?"text-[0.5rem]":"text-[0.625rem]",active?"text-white/50":"text-tint-600/50"),children:appendLabel}),badge&&(0,jsx_runtime.jsx)(Badge.E,{...badgeProps,placement:minimal?"end":"",className:classnames_default()("me-1",badgeProps.className)}),hotKey&&(0,jsx_runtime.jsx)(HotKeyLabel.z,{keyCombo:hotKey}),!minimal&&altIcon&&(0,jsx_runtime.jsx)(Icon.I,{className:"text-muted px-1",icon:altIcon,rtlFlip:!0})]})),[iconEl,minimal,appendLabel,label,badge,badgeProps,hotKey,active]),E=as??"button";return(0,jsx_runtime.jsx)(Wrapper,{...aria,children:(0,jsx_runtime.jsx)(E,{ref,"data-dropdown-dismiss":!0,"data-color":color,className:classnames_default()(menu_Menu_module.menuItem,className,active&&menu_Menu_module.active,minimal&&menu_Menu_module.minimal,disabled&&menu_Menu_module.disabled,"rounded-capped relative max-w-[50vw] my-0.5"),"data-active":active,"data-open":childOpen,disabled,"data-id":id,onClick:e=>{!1!==onClick?.(e)&&tree?.events.emit("click")},...minimal?{}:aria,children:menuLabel})})};try{MenuItem.displayName="MenuItem",MenuItem.__docgenInfo={description:"",displayName:"MenuItem",props:{id:{defaultValue:null,description:"menu id passed via menu.onClick",name:"id",required:!1,type:{name:"any"}},label:{defaultValue:null,description:"item label",name:"label",required:!0,type:{name:"string"}},appendLabel:{defaultValue:null,description:"append label badge text",name:"appendLabel",required:!1,type:{name:"string | false"}},color:{defaultValue:{value:"primary"},description:"menu color",name:"color",required:!1,type:{name:"any"}},active:{defaultValue:null,description:"item active",name:"active",required:!1,type:{name:"boolean"}},disabled:{defaultValue:null,description:"item disabled",name:"disabled",required:!1,type:{name:"boolean"}},badge:{defaultValue:null,description:"badge",name:"badge",required:!1,type:{name:"string | number | BadgeType"}},hotKey:{defaultValue:null,description:"keyboard shortcut label",name:"hotKey",required:!1,type:{name:"string"}},altIcon:{defaultValue:null,description:"alternate icon align end (caret, arrow)",name:"altIcon",required:!1,type:{name:"string"}},onClick:{defaultValue:null,description:"click handler",name:"onClick",required:!1,type:{name:"((e: MouseEvent) => unknown)"}},className:{defaultValue:null,description:"css classname(s)",name:"className",required:!1,type:{name:"string"}},"data-testid":{defaultValue:null,description:"data attribute for test id",name:"data-testid",required:!1,type:{name:"string"}},"data-test-value":{defaultValue:null,description:"data attribute for test value",name:"data-test-value",required:!1,type:{name:"any"}},icon:{defaultValue:null,description:"svg path / image url",name:"icon",required:!1,type:{name:"string"}},rtlFlip:{defaultValue:null,description:"flip icon in rtl",name:"rtlFlip",required:!1,type:{name:"boolean"}},iconBg:{defaultValue:null,description:"icon background color",name:"iconBg",required:!1,type:{name:"string"}},iconColor:{defaultValue:null,description:"icon color",name:"iconColor",required:!1,type:{name:"string"}},as:{defaultValue:null,description:"The component used for the root node.\nEither a string to use a HTML element or a component.",name:"as",required:!1,type:{name:"ElementType"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/components/menu/MenuItem.tsx#MenuItem"]={docgenInfo:MenuItem.__docgenInfo,name:"MenuItem",path:"packages/core/src/components/menu/MenuItem.tsx#MenuItem"})}catch(__react_docgen_typescript_loader_error){}const MenuComponent=({children,minimal,menuClassName,onClick,ref,...rest})=>{const[isOpen,setIsOpen]=(0,react.useState)(!1),[activeIndex,setActiveIndex]=(0,react.useState)(null),elementsRef=(0,react.useRef)([]),labelsRef=(0,react.useRef)([]),tree=(0,floating_ui_react.cq)(),nodeId=(0,floating_ui_react.fI)(),parentId=(0,floating_ui_react.R1)(),isNested=null!==parentId,{floatingStyles,refs,context}=(0,floating_ui_react.we)({nodeId,open:!isNested||isOpen,onOpenChange(open,event,reason){isNested&&setIsOpen(open)},placement:isNested?"right-start":"bottom-start",middleware:[(0,floating_ui_react_dom.cY)({mainAxis:isNested?0:4,alignmentAxis:isNested?-4:0}),(0,floating_ui_react_dom.UU)(),(0,floating_ui_react_dom.BN)()],whileElementsMounted:floating_ui_dom.ll}),hover=(0,floating_ui_react.Mk)(context,{delay:{open:75},handleClose:(0,floating_ui_react.iB)({blockPointerEvents:!0})}),click=(0,floating_ui_react.kp)(context,{toggle:!0,ignoreMouse:!0}),role=(0,floating_ui_react.It)(context,{role:"menu"}),dismiss=(0,floating_ui_react.s9)(context,{bubbles:!0}),listNavigation=(0,floating_ui_react.C1)(context,{listRef:elementsRef,activeIndex,nested:isNested,onNavigate:setActiveIndex}),typeahead=(0,floating_ui_react.lY)(context,{listRef:labelsRef,onMatch:isOpen?setActiveIndex:void 0,activeIndex}),{getReferenceProps,getFloatingProps,getItemProps}=(0,floating_ui_react.bv)([click,hover,role,dismiss,listNavigation,typeahead]);(0,react.useEffect)((()=>{if(tree&&parentId)return tree.events.on("click",handleTreeClick),tree.events.on("close",handleTreeClick),tree.events.on("menuopen",onSubMenuOpen),()=>{tree.events.off("click",handleTreeClick),tree.events.off("close",handleTreeClick),tree.events.off("menuopen",onSubMenuOpen)};function handleTreeClick(){setIsOpen(!1)}function onSubMenuOpen(event){event.nodeId!==nodeId&&event.parentId===parentId&&setIsOpen(!1)}}),[tree,nodeId,parentId]),(0,react.useEffect)((()=>{isOpen&&tree&&tree.events.emit("menuopen",{parentId,nodeId})}),[tree,isOpen,nodeId,parentId]);const handleClick=(0,react.useCallback)((e=>{const el=e.target;el.dataset.id&&onClick?.(el.dataset.id)}),[onClick]),Wrapper=isNested?floating_ui_react.XF:react.Fragment,wrapperProps=isNested?{root:refs.domReference.current?.closest(".theme-base")??void 0}:{};return(0,react.useEffect)((()=>{setTimeout((()=>refs.floating.current?.querySelector('[data-active="true"]')?.scrollIntoView({block:"nearest"})),100)}),[isOpen]),(0,jsx_runtime.jsxs)(floating_ui_react.$c,{id:nodeId,children:[isNested&&(0,jsx_runtime.jsx)(MenuItem,{...getReferenceProps({...rest,id:void 0,"data-dropdown-dismiss":!1,onClick:e=>(e.stopPropagation(),!1)}),"data-open":isOpen,minimal,altIcon:icons.O.chevronRight,ref:(0,esm.Px)(refs.setReference,ref)}),(0,jsx_runtime.jsx)(floating_ui_react.ph,{elementsRef,labelsRef,children:(!isNested||isOpen)&&(0,jsx_runtime.jsxs)(Wrapper,{...wrapperProps,children:[isNested&&(0,jsx_runtime.jsx)(floating_ui_react.zR,{}),(0,jsx_runtime.jsx)(floating_ui_react.s3,{context,modal:!isNested,initialFocus:isNested?-1:0,returnFocus:!isNested,children:(0,jsx_runtime.jsx)("div",{className:classnames_default()(menuClassName,"flex flex-col bg-base p-1 menu-list",isNested&&"outline shadow-lg rounded-capped max-h-96 overflow-auto scroll-thin z-[var(--z-popover)]"),autoFocus:!0,ref:(0,esm.Px)(isNested?refs.setFloating:ref),...getFloatingProps({onClick:isNested?void 0:handleClick}),style:isNested?floatingStyles:rest.style,children:(0,esm.t_)(children,((child,index)=>(labelsRef.current[index]=child.props.label,(0,react.cloneElement)(child,(0,utils.hr)(child,MenuItem,Menu,MenuComponent)?{minimal:!isNested&&minimal,"data-focus":activeIndex===index,ref:el=>elementsRef.current[index]=el,...getItemProps({onClick:child.props.onClick,tabIndex:activeIndex===index?0:-1})}:{}))))})})]})})]})},Menu=props=>null===(0,floating_ui_react.R1)()?(0,jsx_runtime.jsx)(floating_ui_react.P6,{children:(0,jsx_runtime.jsx)(MenuComponent,{...props,menuClassName:props.className})}):(0,jsx_runtime.jsx)(MenuComponent,{...props});try{Menu.displayName="Menu",Menu.__docgenInfo={description:"",displayName:"Menu",props:{label:{defaultValue:null,description:"item label",name:"label",required:!1,type:{name:"string"}},minimal:{defaultValue:null,description:"",name:"minimal",required:!1,type:{name:"boolean"}},menuClassName:{defaultValue:null,description:"floating menu className",name:"menuClassName",required:!1,type:{name:"string"}},onClick:{defaultValue:null,description:"click handler",name:"onClick",required:!1,type:{name:"((e: MouseEvent) => unknown) | ((id: string) => unknown)"}},className:{defaultValue:null,description:"css classname(s)",name:"className",required:!1,type:{name:"string"}},id:{defaultValue:null,description:"menu id passed via menu.onClick",name:"id",required:!1,type:{name:"string"}},appendLabel:{defaultValue:null,description:"append label badge text",name:"appendLabel",required:!1,type:{name:"string | false"}},color:{defaultValue:null,description:"menu color",name:"color",required:!1,type:{name:"enum",value:[{value:'"primary"'},{value:'"accent"'},{value:'"info"'},{value:'"danger"'},{value:'"success"'},{value:'"warning"'}]}},active:{defaultValue:null,description:"item active",name:"active",required:!1,type:{name:"boolean"}},disabled:{defaultValue:null,description:"item disabled",name:"disabled",required:!1,type:{name:"boolean"}},badge:{defaultValue:null,description:"badge",name:"badge",required:!1,type:{name:"string | number | BadgeType"}},hotKey:{defaultValue:null,description:"keyboard shortcut label",name:"hotKey",required:!1,type:{name:"string"}},altIcon:{defaultValue:null,description:"alternate icon align end (caret, arrow)",name:"altIcon",required:!1,type:{name:"string"}},"data-testid":{defaultValue:null,description:"data attribute for test id",name:"data-testid",required:!1,type:{name:"string"}},"data-test-value":{defaultValue:null,description:"data attribute for test value",name:"data-test-value",required:!1,type:{name:"any"}},icon:{defaultValue:null,description:"svg path / image url",name:"icon",required:!1,type:{name:"string"}},rtlFlip:{defaultValue:null,description:"flip icon in rtl",name:"rtlFlip",required:!1,type:{name:"boolean"}},iconBg:{defaultValue:null,description:"icon background color",name:"iconBg",required:!1,type:{name:"string"}},iconColor:{defaultValue:null,description:"icon color",name:"iconColor",required:!1,type:{name:"string"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/components/menu/Menu.tsx#Menu"]={docgenInfo:Menu.__docgenInfo,name:"Menu",path:"packages/core/src/components/menu/Menu.tsx#Menu"})}catch(__react_docgen_typescript_loader_error){}var Meter_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/components/meter/Meter.module.css"),Meter_module_options={};Meter_module_options.styleTagTransform=styleTagTransform_default(),Meter_module_options.setAttributes=setAttributesWithoutAttributes_default(),Meter_module_options.insert=insertBySelector_default().bind(null,"head"),Meter_module_options.domAPI=styleDomAPI_default(),Meter_module_options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(Meter_module.A,Meter_module_options);const meter_Meter_module=Meter_module.A&&Meter_module.A.locals?Meter_module.A.locals:void 0,Meter=({value,hideLabel,className,...aria})=>{const activeCount=(0,hooks_useEffectDebugger.ZU)((()=>value/16.67),[value],"Meter activeCount");return(0,jsx_runtime.jsxs)("div",{className:classnames_default()(meter_Meter_module.meter,className,"flex flex-nowrap items-center gap-[2px]"),...aria,children:[[0,1,2,3,4,5].map((step=>(0,jsx_runtime.jsx)("div",{className:classnames_default()(meter_Meter_module.meterBar,"first-of-type:rounded-s last-of-type:rounded-e bg-tint-100 relative outline -outline-offset-1 outline-muted overflow-hidden after:absolute after:inset-0"),"data-active":activeCount>=step,style:{"--width":`${Math.min(100*(activeCount-step),100)}%`}},step))),!hideLabel&&(0,jsx_runtime.jsx)("label",{className:"text-muted",children:esm.yL.percent(value/100)})]})};try{Meter.displayName="Meter",Meter.__docgenInfo={description:"",displayName:"Meter",props:{value:{defaultValue:null,description:"meter value (0-100)",name:"value",required:!0,type:{name:"number"}},hideLabel:{defaultValue:null,description:"hide value label",name:"hideLabel",required:!1,type:{name:"boolean"}},className:{defaultValue:null,description:"css classname(s)",name:"className",required:!1,type:{name:"string"}},"data-testid":{defaultValue:null,description:"data attribute for test id",name:"data-testid",required:!1,type:{name:"string"}},"data-test-value":{defaultValue:null,description:"data attribute for test value",name:"data-test-value",required:!1,type:{name:"any"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/components/meter/Meter.tsx#Meter"]={docgenInfo:Meter.__docgenInfo,name:"Meter",path:"packages/core/src/components/meter/Meter.tsx#Meter"})}catch(__react_docgen_typescript_loader_error){}var HotKey=__webpack_require__("./packages/core/src/hotkeys/HotKey.tsx");const Navigator=({className,onNavigate,color,children,...aria})=>{const navPrev=(0,react.useCallback)((()=>onNavigate(-1)),[onNavigate]),navNext=(0,react.useCallback)((()=>onNavigate(1)),[onNavigate]);return(0,jsx_runtime.jsxs)("div",{className:classnames_default()(className,"inline-flex items-center leading-none"),...aria,children:[(0,jsx_runtime.jsx)(HotKey.B,{keyCombo:"left",handler:navPrev}),(0,jsx_runtime.jsx)(HotKey.B,{keyCombo:"right",handler:navNext}),(0,jsx_runtime.jsx)(Icon.I,{rtlFlip:!0,color,className:"text-[1em] p-1","aria-label":"previous","data-testid":"previous",icon:icons.O.chevronLeft,onClick:e=>[e.stopPropagation(),onNavigate(-1)]}),children,(0,jsx_runtime.jsx)(Icon.I,{rtlFlip:!0,className:"text-[1em] p-1",color,"aria-label":"next","data-testid":"next",icon:icons.O.chevronRight,onClick:e=>[e.stopPropagation(),onNavigate(1)]})]})};try{Navigator.displayName="Navigator",Navigator.__docgenInfo={description:"",displayName:"Navigator",props:{color:{defaultValue:null,description:"navigator button color",name:"color",required:!1,type:{name:"string"}},onNavigate:{defaultValue:null,description:"navigation handler",name:"onNavigate",required:!0,type:{name:"(dir: 1 | -1) => void"}},className:{defaultValue:null,description:"css classname(s)",name:"className",required:!1,type:{name:"string"}},"data-testid":{defaultValue:null,description:"data attribute for test id",name:"data-testid",required:!1,type:{name:"string"}},"data-test-value":{defaultValue:null,description:"data attribute for test value",name:"data-test-value",required:!1,type:{name:"any"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/components/navigator/Navigator.tsx#Navigator"]={docgenInfo:Navigator.__docgenInfo,name:"Navigator",path:"packages/core/src/components/navigator/Navigator.tsx#Navigator"})}catch(__react_docgen_typescript_loader_error){}var Panel_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/components/panel/Panel.module.css"),Panel_module_options={};Panel_module_options.styleTagTransform=styleTagTransform_default(),Panel_module_options.setAttributes=setAttributesWithoutAttributes_default(),Panel_module_options.insert=insertBySelector_default().bind(null,"head"),Panel_module_options.domAPI=styleDomAPI_default(),Panel_module_options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(Panel_module.A,Panel_module_options);const panel_Panel_module=Panel_module.A&&Panel_module.A.locals?Panel_module.A.locals:void 0,Panel=({children,className,titleClassName,headerClassName,title,actions,icon,iconBg,iconColor,rtlFlip,panelId,height,width,minHeight,minWidth,maxHeight,maxWidth,loading,expandable,expanded:_expanded,onExpand,collapsable,collapsed:_collapsed,onCollapse,onClose,onBack,...aria})=>{const[collapsed,toggleCollapse]=usePropToggle(_collapsed,onCollapse,panelId),[expanded,toggleExpand]=usePropToggle(_expanded,onExpand,panelId),hasTools=(0,react.useMemo)((()=>!!expandable||!!collapsable||!!onClose),[expandable,collapsable,onClose]);return(0,jsx_runtime.jsxs)("div",{className:classnames_default()(panel_Panel_module.panel,className,"rounded-capped overflow-hidden outline grid",expanded?"fixed inset-4 z-50":"relative"),"data-ref":"panel","data-collapsed":collapsed,style:expanded?{}:collapsed?{width,minWidth,maxWidth}:{height,width,minWidth,minHeight,maxWidth,maxHeight},...aria,children:[(0,jsx_runtime.jsxs)("header",{role:"none",className:classnames_default()(panel_Panel_module.panelHeader,headerClassName,"flex flex-nowrap items-center area-head"),"data-testid":"panel-header",onClick:collapsable?toggleCollapse:void 0,children:[onBack&&(0,jsx_runtime.jsx)(Icon.I,{"data-ref":"panelBack",className:classnames_default()(panel_Panel_module.panelAction,"cursor-pointer"),icon:icons.O.chevronLeft,onClick:onBack}),icon&&(0,jsx_runtime.jsx)(Icon.I,{icon,bg:iconBg,color:iconColor,rtlFlip,className:"p-2 text-md select-none pointer-events-none"}),(0,jsx_runtime.jsx)("div",{className:classnames_default()(titleClassName,"flex-1 select-none truncate",title&&"py-1 first:px-2"),children:title}),(0,jsx_runtime.jsx)("div",{className:"px-1",children:actions}),hasTools&&(0,jsx_runtime.jsxs)("div",{role:"none",className:"px-1 gap-px flex",onClick:e=>e.stopPropagation(),children:[expandable&&(0,jsx_runtime.jsx)(Icon.I,{"data-ref":"panelExpand",className:classnames_default()(panel_Panel_module.panelAction,"cursor-pointer"),icon:expanded?icons.O.minimize:icons.O.maximize,onClick:toggleExpand}),!expanded&&collapsable&&(0,jsx_runtime.jsx)(Icon.I,{"data-ref":"panelCollapse",className:classnames_default()(panel_Panel_module.panelAction,"cursor-pointer"),icon:collapsed?icons.O.expand:icons.O.collapse,onClick:toggleCollapse}),!expanded&&onClose&&(0,jsx_runtime.jsx)(Icon.I,{"data-ref":"panelClose",className:classnames_default()(panel_Panel_module.panelAction,"cursor-pointer"),icon:icons.O.close,onClick:onClose})]})]}),(!collapsed||expanded)&&(0,jsx_runtime.jsxs)("div",{"data-testid":"panel-body",className:classnames_default()(panel_Panel_module.panelBody,"area-content grid overflow-hidden"),children:[loading&&(0,jsx_runtime.jsx)(Animations.Rh,{}),children]})]})};try{Panel.displayName="Panel",Panel.__docgenInfo={description:"",displayName:"Panel",props:{panelId:{defaultValue:null,description:"panel id used by panel stack",name:"panelId",required:!1,type:{name:"string"}},title:{defaultValue:null,description:"panel title",name:"title",required:!1,type:{name:"string"}},actions:{defaultValue:null,description:"header actions",name:"actions",required:!1,type:{name:"Element"}},headerClassName:{defaultValue:null,description:"header css classname(s)",name:"headerClassName",required:!1,type:{name:"string"}},titleClassName:{defaultValue:null,description:"title css classname(s)",name:"titleClassName",required:!1,type:{name:"string"}},loading:{defaultValue:null,description:"loading state",name:"loading",required:!1,type:{name:"boolean"}},height:{defaultValue:null,description:"height",name:"height",required:!1,type:{name:"string | number"}},width:{defaultValue:null,description:"width",name:"width",required:!1,type:{name:"string | number"}},minHeight:{defaultValue:null,description:"minimum height",name:"minHeight",required:!1,type:{name:"string | number"}},minWidth:{defaultValue:null,description:"minimum width",name:"minWidth",required:!1,type:{name:"string | number"}},maxHeight:{defaultValue:null,description:"maximum height",name:"maxHeight",required:!1,type:{name:"string | number"}},maxWidth:{defaultValue:null,description:"maximum width",name:"maxWidth",required:!1,type:{name:"string | number"}},onClose:{defaultValue:null,description:"close handler",name:"onClose",required:!1,type:{name:"(() => void)"}},className:{defaultValue:null,description:"css classname(s)",name:"className",required:!1,type:{name:"string"}},"data-testid":{defaultValue:null,description:"data attribute for test id",name:"data-testid",required:!1,type:{name:"string"}},"data-test-value":{defaultValue:null,description:"data attribute for test value",name:"data-test-value",required:!1,type:{name:"any"}},icon:{defaultValue:null,description:"svg path / image url",name:"icon",required:!1,type:{name:"string"}},rtlFlip:{defaultValue:null,description:"flip icon in rtl",name:"rtlFlip",required:!1,type:{name:"boolean"}},iconBg:{defaultValue:null,description:"icon background color",name:"iconBg",required:!1,type:{name:"string"}},iconColor:{defaultValue:null,description:"icon color",name:"iconColor",required:!1,type:{name:"string"}},expandable:{defaultValue:null,description:"Allow expanding",name:"expandable",required:!1,type:{name:"boolean"}},expanded:{defaultValue:null,description:"Default expanded",name:"expanded",required:!1,type:{name:"boolean"}},onExpand:{defaultValue:null,description:"Expand event",name:"onExpand",required:!1,type:{name:"((state: boolean) => void)"}},collapsable:{defaultValue:null,description:"Allow collapsing",name:"collapsable",required:!1,type:{name:"boolean"}},collapsed:{defaultValue:null,description:"Default collapsed",name:"collapsed",required:!1,type:{name:"boolean"}},onCollapse:{defaultValue:null,description:"Collapse event",name:"onCollapse",required:!1,type:{name:"((state: boolean) => void)"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/components/panel/Panel.tsx#Panel"]={docgenInfo:Panel.__docgenInfo,name:"Panel",path:"packages/core/src/components/panel/Panel.tsx#Panel"})}catch(__react_docgen_typescript_loader_error){}const PanelGroup=({children,activePanel,onActiveChange})=>{const[expandedPanel,setExpandedPanel]=(0,react.useState)(),panels=(0,hooks_useEffectDebugger.ZU)((()=>react.Children.toArray(children).map(((child,index)=>child.props.panelId||index))),[children],"PanelGroup children");(0,hooks_useEffectDebugger.al)((()=>{setExpandedPanel(activePanel??panels[0])}),[activePanel,panels],"PanelGroup setActive");const changeExpanded=(0,react.useCallback)(((collapsed,id,handler)=>(collapsed||(setExpandedPanel(id),onActiveChange?.(id)),handler?.(collapsed),id!==expandedPanel)),[onActiveChange,expandedPanel]);return(0,jsx_runtime.jsx)("div",{"data-ref":"panelGroup",className:classnames_default()(panel_Panel_module.panelGroup,"flex flex-col overflow-auto area-content p-px"),children:react.Children.toArray(children).map(((child,index)=>(0,react.cloneElement)(child,{panelId:child.props.panelId||index,collapsable:!0,onCollapse:(b,id)=>changeExpanded(b,id,child.props.onCollapse),collapsed:expandedPanel!==(child.props.panelId||index)})))})};try{PanelGroup.displayName="PanelGroup",PanelGroup.__docgenInfo={description:"",displayName:"PanelGroup",props:{activePanel:{defaultValue:null,description:"active panel id / index",name:"activePanel",required:!1,type:{name:"string | number"}},onActiveChange:{defaultValue:null,description:"active change callback",name:"onActiveChange",required:!1,type:{name:"((panelId: string) => void)"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/components/panel/PanelGroup.tsx#PanelGroup"]={docgenInfo:PanelGroup.__docgenInfo,name:"PanelGroup",path:"packages/core/src/components/panel/PanelGroup.tsx#PanelGroup"})}catch(__react_docgen_typescript_loader_error){}const PanelStack=({active,children,className,onPanelChange,onBack,...rest})=>{const stackRef=useRef(null),[history,setHistory]=useState([]),[,startTransition]=useTransition(),panels=useMemo((()=>new Map(Children.toArray(children).map((child=>child.props&&[child.props.panelId??"root",child])))),[children]);useEffect((()=>{startTransition((()=>{onPanelChange?.(history[0]??"root"),stackRef.current?.dispatchEvent(new Event("updatePopper",{bubbles:!0}))}))}),[onPanelChange,history]);const goBack=useCallback((()=>{!1!==onBack?.(history[0],history[1]??"root")&&setHistory(history.slice(1))}),[history,onBack]),currentPanel=useMemo((()=>panels.get(history[0])??panels.values().next().value),[history,panels]),checkMenuClick=useCallback((e=>{const panelKey=e.target?.dataset?.panel;return!panelKey||("back"===panelKey?goBack():"root"===panelKey?!1!==onBack?.(history[0],"root")&&setHistory([]):panels.has(panelKey)&&setHistory([panelKey,...history]),e.stopPropagation(),e.preventDefault(),!1)}),[goBack,history,panels,onBack]);return _jsx("div",{...rest,role:"none",ref:stackRef,className,onClickCapture:checkMenuClick,children:currentPanel&&cloneElement(currentPanel,{onBack:history.length>0?goBack:void 0})})};try{PanelStack.displayName="PanelStack",PanelStack.__docgenInfo={description:"",displayName:"PanelStack",props:{active:{defaultValue:null,description:"active panel id",name:"active",required:!1,type:{name:"string"}},onPanelChange:{defaultValue:null,description:"panel change event callback",name:"onPanelChange",required:!1,type:{name:"((panelId: string) => void)"}},onBack:{defaultValue:null,description:"navigate to previous panel in history",name:"onBack",required:!1,type:{name:"((panelId: string, nextPanelId: string) => boolean)"}},className:{defaultValue:null,description:"css classname(s)",name:"className",required:!1,type:{name:"string"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/components/panel/PanelStack.tsx#PanelStack"]={docgenInfo:PanelStack.__docgenInfo,name:"PanelStack",path:"packages/core/src/components/panel/PanelStack.tsx#PanelStack"})}catch(__react_docgen_typescript_loader_error){}var Progress_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/components/progress/Progress.module.css"),Progress_module_options={};Progress_module_options.styleTagTransform=styleTagTransform_default(),Progress_module_options.setAttributes=setAttributesWithoutAttributes_default(),Progress_module_options.insert=insertBySelector_default().bind(null,"head"),Progress_module_options.domAPI=styleDomAPI_default(),Progress_module_options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(Progress_module.A,Progress_module_options);const progress_Progress_module=Progress_module.A&&Progress_module.A.locals?Progress_module.A.locals:void 0,ProgressBar_SizeMap={"":"0.875rem",xxs:"3px",xs:"0.375rem",sm:"0.625rem",md:"1.125rem",lg:"1.5rem",xl:"2rem"},ProgressBar=({value=0,size,color="primary",label="",animate})=>{const actualValue=(0,hooks_useEffectDebugger.ZU)((()=>Math.min(Math.max(value,0),100)),[value],"ProgressBar value"),progressVar=(0,hooks_useEffectDebugger.ZU)((()=>({"--progress":actualValue})),[actualValue],"ProgressBar cssVar");return(0,jsx_runtime.jsxs)("div",{className:classnames_default()(progress_Progress_module.progressbar,(0,utils.Iq)(color),"block bg-dimmed relative rounded font-bold overflow-hidden whitespace-nowrap"),style:{...progressVar,minHeight:ProgressBar_SizeMap[size??""],fontSize:ProgressBar_SizeMap[size??""]},"data-animate":animate,"aria-hidden":"true",children:[!["xxs","xs","sm"].includes(size??"")&&(0,jsx_runtime.jsxs)("div",{className:"absolute inset-0 text-center z-0 align-top",children:[label," ",esm.yL.percent(actualValue/100)]}),(0,jsx_runtime.jsx)("div",{className:classnames_default()(progress_Progress_module.progressTrack,animate&&progress_Progress_module.progressAnimate,"h-full overflow-clip bg-current relative z-0")}),!["xxs","xs","sm"].includes(size??"")&&(0,jsx_runtime.jsx)("div",{className:classnames_default()("h-full absolute inset-0 overflow-hidden z-1"),"data-label":`${label} ${esm.yL.percent(actualValue/100)}`})]})};try{ProgressBar.displayName="ProgressBar",ProgressBar.__docgenInfo={description:"",displayName:"ProgressBar",props:{value:{defaultValue:{value:"0"},description:"progress value (0-100)",name:"value",required:!1,type:{name:"number"}},size:{defaultValue:null,description:"size",name:"size",required:!1,type:{name:"enum",value:[{value:'"xs"'},{value:'"sm"'},{value:'"md"'},{value:'"lg"'},{value:'"xl"'},{value:'"xxs"'}]}},color:{defaultValue:{value:"primary"},description:"color",name:"color",required:!1,type:{name:"enum",value:[{value:'"primary"'},{value:'"accent"'},{value:'"info"'},{value:'"danger"'},{value:'"success"'},{value:'"warning"'}]}},animate:{defaultValue:null,description:"animate",name:"animate",required:!1,type:{name:"boolean"}},label:{defaultValue:{value:""},description:"progress label",name:"label",required:!1,type:{name:"string"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/components/progress/ProgressBar.tsx#ProgressBar"]={docgenInfo:ProgressBar.__docgenInfo,name:"ProgressBar",path:"packages/core/src/components/progress/ProgressBar.tsx#ProgressBar"})}catch(__react_docgen_typescript_loader_error){}const ProgressCircle_SizeMap={"":"1rem",sm:"0.875rem",md:"1.125rem",lg:"1.5rem",xl:"2rem"},ProgressCircle=({value=0,size="sm",color="primary"})=>{const actualValue=(0,hooks_useEffectDebugger.ZU)((()=>Math.min(Math.max(value,0),100)),[value],"ProgressCirle value"),strokeDashoffset=(0,hooks_useEffectDebugger.ZU)((()=>2*Math.PI*44*(1-actualValue/100)),[actualValue],"ProgressCirle dashOffset");return(0,jsx_runtime.jsxs)("div",{className:classnames_default()("inline-block w-[4em] h-[4em] text-lg relative",(0,utils.Iq)(color)),"aria-hidden":"true",style:{fontSize:ProgressCircle_SizeMap[size]},children:[(0,jsx_runtime.jsxs)("svg",{viewBox:"0 0 100 100",className:classnames_default()("absolute inset-0 w-full h-full stroke-dimmed"),children:[(0,jsx_runtime.jsx)("circle",{cx:"50",cy:"50",r:"44",strokeWidth:"12",strokeOpacity:"0.25",fillOpacity:"0"}),(0,jsx_runtime.jsx)("circle",{cx:"50",cy:"50",r:"44",stroke:"currentColor",strokeWidth:"12",fillOpacity:"0",style:{transform:"rotate(-90deg)",transformOrigin:"center",strokeDasharray:2*Math.PI*44,strokeDashoffset,transition:"stroke-dashoffset 0.5s"}})]}),(0,jsx_runtime.jsx)("span",{className:"flex w-full h-full items-center justify-center select-none font-bold text-[0.625em]",children:esm.yL.percent(actualValue/100)})]})};try{ProgressCircle.displayName="ProgressCircle",ProgressCircle.__docgenInfo={description:"",displayName:"ProgressCircle",props:{value:{defaultValue:{value:"0"},description:"progress value (0-100)",name:"value",required:!1,type:{name:"number"}},size:{defaultValue:{value:"sm"},description:"size",name:"size",required:!1,type:{name:"enum",value:[{value:'"sm"'},{value:'"md"'},{value:'"lg"'},{value:'"xl"'}]}},color:{defaultValue:{value:"primary"},description:"color",name:"color",required:!1,type:{name:"enum",value:[{value:'"primary"'},{value:'"accent"'},{value:'"info"'},{value:'"danger"'},{value:'"success"'},{value:'"warning"'}]}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/components/progress/ProgressCircle.tsx#ProgressCircle"]={docgenInfo:ProgressCircle.__docgenInfo,name:"ProgressCircle",path:"packages/core/src/components/progress/ProgressCircle.tsx#ProgressCircle"})}catch(__react_docgen_typescript_loader_error){}var TabPanel_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/components/tabpanel/TabPanel.module.css"),TabPanel_module_options={};TabPanel_module_options.styleTagTransform=styleTagTransform_default(),TabPanel_module_options.setAttributes=setAttributesWithoutAttributes_default(),TabPanel_module_options.insert=insertBySelector_default().bind(null,"head"),TabPanel_module_options.domAPI=styleDomAPI_default(),TabPanel_module_options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(TabPanel_module.A,TabPanel_module_options);const tabpanel_TabPanel_module=TabPanel_module.A&&TabPanel_module.A.locals?TabPanel_module.A.locals:void 0,Tab=({ref,as,id,className,label,icon,iconBg,iconColor,rtlFlip,badge,disabled,onClose,active,minimal,onClick,tabFlex,color,actions,tooltip,activeClassName,...aria})=>{const badgeProps=(0,react.useMemo)((()=>(0,Badge.l)(badge)),[badge]),tooltipProps=(0,react.useMemo)((()=>(0,esm.Kg)(tooltip)?{content:tooltip}:tooltip??{}),[tooltip]),E=as??"button",W=tooltip?overlays.m_:react.Fragment;return(0,jsx_runtime.jsx)(W,{...tooltipProps,children:(0,jsx_runtime.jsxs)(E,{"data-id":id,disabled,"data-color":color,"data-inner-clickable":!0,className:classnames_default()(tabpanel_TabPanel_module.tabButton,className,active&&"active pointer-events-none",active&&activeClassName,disabled&&"text-tint-500 pointer-events-none",tabFlex?"flex-1":"flex-initial max-w-36 min-w-24","flex items-center justify-center px-1 rounded overflow-hidden"),onClick:()=>!active&&onClick?.(id),ref,...aria,children:[icon&&(0,jsx_runtime.jsx)(Icon.I,{icon,bg:iconBg,color:iconColor,rtlFlip,className:"flex-content"}),!minimal&&(0,jsx_runtime.jsx)("label",{className:"flex-initial truncate text-center px-1 py-1",children:label}),badge&&(0,jsx_runtime.jsx)(Badge.E,{...badgeProps,placement:minimal?"end":"",className:classnames_default()("me-1",badgeProps.className)}),actions&&active&&(0,jsx_runtime.jsx)(DropdownTool,{className:"bg-base/20 me-1 z-5",children:actions}),onClose&&(0,jsx_runtime.jsx)("span",{role:"none",className:classnames_default()("cursor-pointer me-1 opacity-65 hover:opacity-90 pointer-events-auto"),onClick:e=>{onClose?.(),e.stopPropagation()},children:"×"})]})})};try{Tab.displayName="Tab",Tab.__docgenInfo={description:"",displayName:"Tab",props:{id:{defaultValue:null,description:"tab id",name:"id",required:!1,type:{name:"any"}},label:{defaultValue:null,description:"tab label",name:"label",required:!1,type:{name:"string"}},color:{defaultValue:null,description:"tab color",name:"color",required:!1,type:{name:"any"}},badge:{defaultValue:null,description:"tab badge",name:"badge",required:!1,type:{name:"string | number | BadgeType"}},disabled:{defaultValue:null,description:"disabled",name:"disabled",required:!1,type:{name:"boolean"}},tabFlex:{defaultValue:null,description:"tab flex to fill button",name:"tabFlex",required:!1,type:{name:"boolean"}},activeClassName:{defaultValue:null,description:"className for active state",name:"activeClassName",required:!1,type:{name:"string"}},actions:{defaultValue:null,description:"action dropdown body",name:"actions",required:!1,type:{name:"ReactElement>"}},onClose:{defaultValue:null,description:"close handler",name:"onClose",required:!1,type:{name:"(() => unknown)"}},onClick:{defaultValue:null,description:"click handler",name:"onClick",required:!1,type:{name:"((id: string) => unknown)"}},className:{defaultValue:null,description:"css classname(s)",name:"className",required:!1,type:{name:"string"}},ref:{defaultValue:null,description:"",name:"ref",required:!1,type:{name:"Ref"}},"data-testid":{defaultValue:null,description:"data attribute for test id",name:"data-testid",required:!1,type:{name:"string"}},"data-test-value":{defaultValue:null,description:"data attribute for test value",name:"data-test-value",required:!1,type:{name:"any"}},icon:{defaultValue:null,description:"svg path / image url",name:"icon",required:!1,type:{name:"string"}},rtlFlip:{defaultValue:null,description:"flip icon in rtl",name:"rtlFlip",required:!1,type:{name:"boolean"}},iconBg:{defaultValue:null,description:"icon background color",name:"iconBg",required:!1,type:{name:"string"}},iconColor:{defaultValue:null,description:"icon color",name:"iconColor",required:!1,type:{name:"string"}},tooltip:{defaultValue:null,description:"floating tooltip",name:"tooltip",required:!1,type:{name:"string | TooltipType"}},as:{defaultValue:null,description:"The component used for the root node.\nEither a string to use a HTML element or a component.",name:"as",required:!1,type:{name:"ElementType"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/components/tabpanel/Tab.tsx#Tab"]={docgenInfo:Tab.__docgenInfo,name:"Tab",path:"packages/core/src/components/tabpanel/Tab.tsx#Tab"})}catch(__react_docgen_typescript_loader_error){}const TabPanel=({children,headerClassName,orientation="top",activeTab,justify,variant,tabFlex,append,prepend,gap,onBeforeChange,onChange})=>{const[active,setActive]=(0,react.useState)(),[tabs,rest]=(0,react.useMemo)((()=>react.Children.toArray(children).reduce(((ret,node)=>((0,utils.hr)(node,Tab)?ret[0].push(node):ret[1].push(node),ret)),[[],[]])),[children]);(0,react.useEffect)((()=>{setActive(activeTab)}),[activeTab]);const activeTabPanel=(0,react.useMemo)((()=>tabs.find((tab=>tab.props.id===active))?.props.children),[tabs,active]),handleClick=(0,react.useCallback)((id=>{Promise.resolve(onBeforeChange?.(id,active)).then((ret=>{!1!==ret&&(setActive(id),onChange?.(id))}))}),[onBeforeChange,onChange,active]);return(0,jsx_runtime.jsxs)("div",{className:classnames_default()(tabpanel_TabPanel_module.tabPanel,"area-content grid bg-base overflow-hidden"),"data-orientation":orientation,"data-variant":variant??"default",children:[(0,jsx_runtime.jsxs)("div",{className:classnames_default()(tabpanel_TabPanel_module.tabHeader,headerClassName,justify&&`justify-${justify}`,["start","end"].includes(orientation)&&"flex-col","flex flex-nowrap overflow-hidden items-center"),children:[prepend,(0,jsx_runtime.jsx)("div",{className:classnames_default()(tabpanel_TabPanel_module.tabList,justify&&`justify-${justify}`,["start","end"].includes(orientation)&&"flex-col","flex flex-1 flex-nowrap overflow-auto scroll-thin"),style:{gap},children:tabs.map((node=>(0,react.cloneElement)(node,{tabFlex:node.props.tabFlex??tabFlex,onClick:handleClick,active:node.props.id===active})))}),append]}),rest,activeTabPanel]})};try{TabPanel.displayName="TabPanel",TabPanel.__docgenInfo={description:"",displayName:"TabPanel",props:{orientation:{defaultValue:{value:"top"},description:"tab list orientation",name:"orientation",required:!1,type:{name:"enum",value:[{value:'"end"'},{value:'"start"'},{value:'"top"'},{value:'"bottom"'}]}},justify:{defaultValue:null,description:"justify buttons",name:"justify",required:!1,type:{name:"enum",value:[{value:'"center"'},{value:'"end"'},{value:'"start"'}]}},variant:{defaultValue:null,description:"tab variations",name:"variant",required:!1,type:{name:"enum",value:[{value:'"outline"'},{value:'"solid"'},{value:'"soft"'}]}},tabFlex:{defaultValue:null,description:"tab button flex to fill tabs",name:"tabFlex",required:!1,type:{name:"boolean"}},gap:{defaultValue:null,description:"tab button gap",name:"gap",required:!1,type:{name:"number"}},activeTab:{defaultValue:null,description:"current active tab",name:"activeTab",required:!1,type:{name:"string"}},headerClassName:{defaultValue:null,description:"tab list className",name:"headerClassName",required:!1,type:{name:"string"}},append:{defaultValue:null,description:"append element",name:"append",required:!1,type:{name:"ReactElement>"}},prepend:{defaultValue:null,description:"prepend element",name:"prepend",required:!1,type:{name:"ReactElement>"}},onChange:{defaultValue:null,description:"change handler",name:"onChange",required:!1,type:{name:"((id: string) => void)"}},onBeforeChange:{defaultValue:null,description:"before close handler, return false to prevent change",name:"onBeforeChange",required:!1,type:{name:"((nextTab: string, currentTab?: string) => unknown)"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/components/tabpanel/TabPanel.tsx#TabPanel"]={docgenInfo:TabPanel.__docgenInfo,name:"TabPanel",path:"packages/core/src/components/tabpanel/TabPanel.tsx#TabPanel"})}catch(__react_docgen_typescript_loader_error){}var useIsRtl=__webpack_require__("./packages/core/src/hooks/useIsRtl.ts");var Aside_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/core/aside/Aside.module.css"),Aside_module_options={};Aside_module_options.styleTagTransform=styleTagTransform_default(),Aside_module_options.setAttributes=setAttributesWithoutAttributes_default(),Aside_module_options.insert=insertBySelector_default().bind(null,"head"),Aside_module_options.domAPI=styleDomAPI_default(),Aside_module_options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(Aside_module.A,Aside_module_options);const aside_Aside_module=Aside_module.A&&Aside_module.A.locals?Aside_module.A.locals:void 0,Aside=({children,title,icon,iconBg,iconColor,rtlFlip,className,bodyClassName,headerClassName,resizeable,flyout,onFlyout,collapsed,collapsable,onCollapse,actions,loading,align="start",width:wd="20rem",minWidth="2rem",maxWidth="30vw","data-testid":testId,"data-test-value":testValue})=>{const elementRef=(0,react.useRef)(null),[width,setWidth]=(0,react.useState)(wd),[peek,setPeek]=(0,react.useState)(!1),[isCollapsed,toggleCollapse]=usePropToggle(collapsed,onCollapse);(0,react.useEffect)((()=>{setWidth(wd)}),[wd]);const resizeHandleProps=((onResize,{isReverse=!1,isVertical=!1,onStart,onEnd})=>{const refEl=(0,react.useRef)(null),isRtl=(0,useIsRtl.O)(),onResizing=(0,react.useCallback)((evt=>{if(null!=refEl.current){const reversed=1==((isRtl?1:0)^(isReverse?1:0)),box=refEl.current?.getBoundingClientRect(),x=(evt.clientX-(reversed?box.left:box.right))*(reversed?-1:1),y=evt.clientY-box.bottom;onResize({x,y})}}),[onResize,isRtl,isReverse]),onResizeEnd=(0,react.useCallback)((()=>{document.body.style.cursor="unset",document.removeEventListener("mousemove",onResizing),document.removeEventListener("mouseup",onResizeEnd),onEnd?.()}),[onEnd,onResizing]),onResizeStart=(0,react.useCallback)((e=>{e.preventDefault(),document.body.style.cursor=isVertical?"row-resize":"col-resize",document.addEventListener("mousemove",onResizing),document.addEventListener("mouseup",onResizeEnd),onStart?.()}),[onResizing,onResizeEnd,onStart]);return{ref:refEl,onMouseDown:onResizeStart}})((0,react.useRef)((({x})=>{null!=elementRef.current&&setWidth(elementRef.current.offsetWidth+x)})).current,{isReverse:"end"===align}),tryPeek=(0,react.useCallback)((()=>{isCollapsed&&(flyout?(setPeek(!peek),!peek&&onFlyout?.()):toggleCollapse())}),[peek,flyout,isCollapsed,onFlyout,toggleCollapse]);(0,hooks_useEffectDebugger.KI)((()=>{if(peek){const handler=e=>{null==e.target.closest('[data-ref="asideBody"]')&&null==e.target.closest('[data-ref="asidePlaceholder"]')&&setPeek(!1)};return document.addEventListener("mouseup",handler),()=>document.removeEventListener("mouseup",handler)}}),[peek],"Aside peek");const widthStyles=(0,react.useMemo)((()=>({width,minWidth,maxWidth})),[width,minWidth,maxWidth]);return(0,jsx_runtime.jsxs)("aside",{className:classnames_default()(aside_Aside_module.aside,className,"overflow-hidden grid"),"data-align":align,"data-flyout":peek,"data-loading":loading,"data-collapsed":isCollapsed,style:isCollapsed?void 0:widthStyles,"data-testid":testId,"data-test-value":testValue,children:[(0,jsx_runtime.jsxs)("header",{className:classnames_default()(aside_Aside_module.asideHeader,headerClassName,"grid area-head items-center"),"data-testid":"aside-header",children:[title&&(0,jsx_runtime.jsx)("div",{className:classnames_default()(aside_Aside_module.asideTitle,"truncate py-0.5 px-1 select-none pointer-events-none"),children:title}),collapsable&&(0,jsx_runtime.jsx)(Icon.I,{"aria-label":isCollapsed?"expand":"collapse",className:classnames_default()(aside_Aside_module.asideCollapse,"p-2 select-none"),icon:icons.O.chevronLeft,rtlFlip:!0,onClick:toggleCollapse,"data-ref":"asideToggle"}),icon&&(0,jsx_runtime.jsx)(Icon.I,{icon,bg:iconBg,color:iconColor,rtlFlip,className:classnames_default()(aside_Aside_module.asideIcon,"p-1 text-lg select-none pointer-events-none")}),actions&&(0,jsx_runtime.jsx)("div",{className:aside_Aside_module.asideActions,children:actions})]}),loading&&(0,jsx_runtime.jsx)(Animations.Rh,{}),isCollapsed&&(0,jsx_runtime.jsx)("div",{role:"none",onClick:tryPeek,"data-ref":"asidePlaceholder",className:aside_Aside_module.asidePlaceholder}),(0,jsx_runtime.jsx)("section",{ref:elementRef,"data-ref":"asideBody",className:classnames_default()(aside_Aside_module.asideBody,bodyClassName,"overflow-hidden grid"),style:isCollapsed?widthStyles:void 0,"data-testid":"aside-body",children:(0,jsx_runtime.jsx)(ErrorBoundary,{children})}),resizeable&&(0,jsx_runtime.jsx)("div",{...resizeHandleProps,className:classnames_default()(aside_Aside_module.asideResizer,"before:absolute before:inset-0 before:w-1 before:top-1/2 before:-translate-y-1/2 before:transition-all")})]})};try{Aside.displayName="Aside",Aside.__docgenInfo={description:"Side panel",displayName:"Aside",props:{title:{defaultValue:null,description:"page title",name:"title",required:!1,type:{name:"ReactNode"}},align:{defaultValue:{value:"start"},description:"align inline-end",name:"align",required:!1,type:{name:"enum",value:[{value:'"end"'},{value:'"start"'}]}},actions:{defaultValue:null,description:"header actions",name:"actions",required:!1,type:{name:"Elements"}},headerClassName:{defaultValue:null,description:"header class",name:"headerClassName",required:!1,type:{name:"string"}},bodyClassName:{defaultValue:null,description:"header class",name:"bodyClassName",required:!1,type:{name:"string"}},loading:{defaultValue:null,description:"show loading indicator",name:"loading",required:!1,type:{name:"boolean"}},resizeable:{defaultValue:null,description:"allow resize",name:"resizeable",required:!1,type:{name:"boolean"}},flyout:{defaultValue:null,description:"allow flyout with collapsed",name:"flyout",required:!1,type:{name:"boolean"}},onFlyout:{defaultValue:null,description:"event handler when shown",name:"onFlyout",required:!1,type:{name:"(() => void)"}},width:{defaultValue:null,description:"fixed width",name:"width",required:!1,type:{name:"string | number"}},maxWidth:{defaultValue:{value:"30vw"},description:"max width",name:"maxWidth",required:!1,type:{name:"string | number"}},minWidth:{defaultValue:{value:"2rem"},description:"min width",name:"minWidth",required:!1,type:{name:"string | number"}},icon:{defaultValue:null,description:"svg path / image url",name:"icon",required:!1,type:{name:"string"}},rtlFlip:{defaultValue:null,description:"flip icon in rtl",name:"rtlFlip",required:!1,type:{name:"boolean"}},iconBg:{defaultValue:null,description:"icon background color",name:"iconBg",required:!1,type:{name:"string"}},iconColor:{defaultValue:null,description:"icon color",name:"iconColor",required:!1,type:{name:"string"}},collapsable:{defaultValue:null,description:"Allow collapsing",name:"collapsable",required:!1,type:{name:"boolean"}},collapsed:{defaultValue:null,description:"Default collapsed",name:"collapsed",required:!1,type:{name:"boolean"}},onCollapse:{defaultValue:null,description:"Collapse event",name:"onCollapse",required:!1,type:{name:"((state: boolean) => void)"}},className:{defaultValue:null,description:"css classname(s)",name:"className",required:!1,type:{name:"string"}},"data-testid":{defaultValue:null,description:"data attribute for test id",name:"data-testid",required:!1,type:{name:"string"}},"data-test-value":{defaultValue:null,description:"data attribute for test value",name:"data-test-value",required:!1,type:{name:"any"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/core/aside/Aside.tsx#Aside"]={docgenInfo:Aside.__docgenInfo,name:"Aside",path:"packages/core/src/core/aside/Aside.tsx#Aside"})}catch(__react_docgen_typescript_loader_error){}const useDebounce=(callback,deps,delay=100)=>{const timerRef=(0,react.useRef)();return(0,react.useMemo)((()=>{"undefined"!=typeof window&&window.clearTimeout(timerRef.current);const fn=(...args)=>{"undefined"!=typeof window&&(window.clearTimeout(timerRef.current),timerRef.current=window.setTimeout((()=>callback?.(...args)),delay))};return fn.cancel=()=>{"undefined"!=typeof window&&clearTimeout(timerRef.current)},fn}),deps)};var ResizeObserver_es=__webpack_require__("./node_modules/resize-observer-polyfill/dist/ResizeObserver.es.js");var Content_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/core/content/Content.module.css"),Content_module_options={};Content_module_options.styleTagTransform=styleTagTransform_default(),Content_module_options.setAttributes=setAttributesWithoutAttributes_default(),Content_module_options.insert=insertBySelector_default().bind(null,"head"),Content_module_options.domAPI=styleDomAPI_default(),Content_module_options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(Content_module.A,Content_module_options);const content_Content_module=Content_module.A&&Content_module.A.locals?Content_module.A.locals:void 0,Content=({ref,children,className,onScroll,onResize,"data-testid":testId,"data-test-value":testValue})=>{const resizeHandle=(onResize=>{const ref=(0,react.useRef)(null),[,startTransition]=(0,react.useTransition)(),callbackResize=useDebounce((()=>{startTransition((()=>{if(onResize&&null!=ref.current){const{offsetWidth:width,offsetHeight:height}=ref.current;onResize?.({width,height})}}))}),[onResize]);return(0,react.useEffect)((()=>{if(null!=ref.current){const ob=new ResizeObserver_es.A(callbackResize);return ob.observe(ref.current),()=>{ob.disconnect()}}}),[callbackResize,ref]),ref})(onResize),scrollHandler=useDebounce((e=>{const el=e.target;onScroll?.({left:el.scrollLeft,top:el.scrollTop,scrollHeight:el.scrollHeight,scrollWidth:el.scrollWidth,width:el.offsetWidth,height:el.offsetHeight},e)}),[onScroll]);return(0,react.useImperativeHandle)(ref,(()=>resizeHandle.current),[]),(0,jsx_runtime.jsx)("section",{"data-ref":"content","data-testid":testId,"data-test-value":testValue,ref:resizeHandle,onScroll:scrollHandler,className:classnames_default()(content_Content_module.content,"area-content",className),children:(0,jsx_runtime.jsx)(ErrorBoundary,{children})})};try{Content.displayName="Content",Content.__docgenInfo={description:"Scrollable content element",displayName:"Content",props:{onScroll:{defaultValue:null,description:"scroll vevent handler",name:"onScroll",required:!1,type:{name:"((scroll: ScrollObject, event: MouseEvent) => void)"}},onResize:{defaultValue:null,description:"scroll vevent handler",name:"onResize",required:!1,type:{name:"((event: SizeObject) => void)"}},className:{defaultValue:null,description:"css classname(s)",name:"className",required:!1,type:{name:"string"}},ref:{defaultValue:null,description:"",name:"ref",required:!1,type:{name:"Ref"}},"data-testid":{defaultValue:null,description:"data attribute for test id",name:"data-testid",required:!1,type:{name:"string"}},"data-test-value":{defaultValue:null,description:"data attribute for test value",name:"data-test-value",required:!1,type:{name:"any"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/core/content/Content.tsx#Content"]={docgenInfo:Content.__docgenInfo,name:"Content",path:"packages/core/src/core/content/Content.tsx#Content"})}catch(__react_docgen_typescript_loader_error){}var Page_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/core/page/Page.module.css"),Page_module_options={};Page_module_options.styleTagTransform=styleTagTransform_default(),Page_module_options.setAttributes=setAttributesWithoutAttributes_default(),Page_module_options.insert=insertBySelector_default().bind(null,"head"),Page_module_options.domAPI=styleDomAPI_default(),Page_module_options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(Page_module.A,Page_module_options);const page_Page_module=Page_module.A&&Page_module.A.locals?Page_module.A.locals:void 0,Page=({children,paper,title,titleClassName,icon,rtlFlip,iconBg,iconColor,loading,"data-testid":testId,"data-test-value":testValue})=>(0,jsx_runtime.jsxs)("div",{"data-testid":testId,"data-test-value":testValue,"data-loading":loading,className:classnames_default()(page_Page_module.page,"overflow-hidden grid area-content",paper&&"shadow-paper m-[6px] rounded-capped"),children:[title&&(0,jsx_runtime.jsxs)("div",{"data-ref":"pageTitle",className:classnames_default()(page_Page_module.pageTitle,"select-none flex gap-1 items-center justify-center px-1 py-0.5 font-medium text-center",titleClassName),children:[icon&&(0,jsx_runtime.jsx)(Icon.I,{icon,size:"1.25em",rtlFlip,bg:iconBg,color:iconColor}),title]}),loading&&(0,jsx_runtime.jsx)(Animations.Rh,{}),children]});try{Page.displayName="Page",Page.__docgenInfo={description:"The page component used typically for routes, is a structured layout used within an application to organize and display content in a sectioned format, ensuring a consistent and intuitive user experience.",displayName:"Page",props:{title:{defaultValue:null,description:"page title",name:"title",required:!1,type:{name:"string"}},titleClassName:{defaultValue:null,description:"title element className",name:"titleClassName",required:!1,type:{name:"string"}},paper:{defaultValue:null,description:"paper style drop shadow",name:"paper",required:!1,type:{name:"boolean"}},loading:{defaultValue:null,description:"loading indicator",name:"loading",required:!1,type:{name:"boolean"}},icon:{defaultValue:null,description:"svg path / image url",name:"icon",required:!1,type:{name:"string"}},rtlFlip:{defaultValue:null,description:"flip icon in rtl",name:"rtlFlip",required:!1,type:{name:"boolean"}},iconBg:{defaultValue:null,description:"icon background color",name:"iconBg",required:!1,type:{name:"string"}},iconColor:{defaultValue:null,description:"icon color",name:"iconColor",required:!1,type:{name:"string"}},"data-testid":{defaultValue:null,description:"data attribute for test id",name:"data-testid",required:!1,type:{name:"string"}},"data-test-value":{defaultValue:null,description:"data attribute for test value",name:"data-test-value",required:!1,type:{name:"any"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/core/page/Page.tsx#Page"]={docgenInfo:Page.__docgenInfo,name:"Page",path:"packages/core/src/core/page/Page.tsx#Page"})}catch(__react_docgen_typescript_loader_error){}var Responsive_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/core/responsive/Responsive.module.css"),Responsive_module_options={};Responsive_module_options.styleTagTransform=styleTagTransform_default(),Responsive_module_options.setAttributes=setAttributesWithoutAttributes_default(),Responsive_module_options.insert=insertBySelector_default().bind(null,"head"),Responsive_module_options.domAPI=styleDomAPI_default(),Responsive_module_options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(Responsive_module.A,Responsive_module_options);const responsive_Responsive_module=Responsive_module.A&&Responsive_module.A.locals?Responsive_module.A.locals:void 0,Container=({children,fullWidth,className,gutter,...aria})=>(0,jsx_runtime.jsx)("div",{className:classnames_default()(responsive_Responsive_module.container,className,!fullWidth&&"container mx-auto"),"data-gutter":gutter,...aria,children}),Row=({children,gutter,noWrap,orient,align="stretch",justify="start",className,...aria})=>(0,jsx_runtime.jsx)("div",{className:classnames_default()(responsive_Responsive_module.row,className,"flex","row"===orient&&"flex-row","col"===orient&&"flex-col","row-reverse"===orient&&"flex-row-reverse","col-reverse"===orient&&"flex-col-reverse",noWrap?"flex-nowrap":"flex-wrap",`justify-${justify}`,`items-${align}`),"data-gutter":gutter,...aria,children}),Col=({children,flex,align,className,stretchContent,...aria})=>(0,jsx_runtime.jsx)("div",{className:classnames_default()(responsive_Responsive_module.col,className,stretchContent&&responsive_Responsive_module.stretchContent,"auto"===flex&&"flex-content","fill"===flex&&"flex-1","full"===flex&&"flex-full",align&&`self-${align}`),...aria,children});try{Container.displayName="Container",Container.__docgenInfo={description:"Responsive layout container",displayName:"Container",props:{fullWidth:{defaultValue:null,description:"use full width",name:"fullWidth",required:!1,type:{name:"boolean"}},gutter:{defaultValue:null,description:"gutter size",name:"gutter",required:!1,type:{name:"enum",value:[{value:"0"},{value:'"xs"'},{value:'"sm"'},{value:'"md"'},{value:'"lg"'},{value:'"xl"'}]}},className:{defaultValue:null,description:"css classname(s)",name:"className",required:!1,type:{name:"string"}},"data-testid":{defaultValue:null,description:"data attribute for test id",name:"data-testid",required:!1,type:{name:"string"}},"data-test-value":{defaultValue:null,description:"data attribute for test value",name:"data-test-value",required:!1,type:{name:"any"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/core/responsive/Responsive.tsx#Container"]={docgenInfo:Container.__docgenInfo,name:"Container",path:"packages/core/src/core/responsive/Responsive.tsx#Container"})}catch(__react_docgen_typescript_loader_error){}try{Row.displayName="Row",Row.__docgenInfo={description:"",displayName:"Row",props:{noWrap:{defaultValue:null,description:"no wrapping",name:"noWrap",required:!1,type:{name:"boolean"}},gutter:{defaultValue:null,description:"gutter size",name:"gutter",required:!1,type:{name:"enum",value:[{value:"0"},{value:'"xs"'},{value:'"sm"'},{value:'"md"'},{value:'"lg"'},{value:'"xl"'}]}},orient:{defaultValue:null,description:"flex orientation",name:"orient",required:!1,type:{name:"enum",value:[{value:'"col"'},{value:'"row"'},{value:'"row-reverse"'},{value:'"col-reverse"'}]}},align:{defaultValue:{value:"stretch"},description:"align items",name:"align",required:!1,type:{name:"enum",value:[{value:'"center"'},{value:'"end"'},{value:'"start"'},{value:'"stretch"'}]}},justify:{defaultValue:{value:"start"},description:"justify items",name:"justify",required:!1,type:{name:"enum",value:[{value:'"center"'},{value:'"end"'},{value:'"start"'},{value:'"between"'}]}},className:{defaultValue:null,description:"css classname(s)",name:"className",required:!1,type:{name:"string"}},"data-testid":{defaultValue:null,description:"data attribute for test id",name:"data-testid",required:!1,type:{name:"string"}},"data-test-value":{defaultValue:null,description:"data attribute for test value",name:"data-test-value",required:!1,type:{name:"any"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/core/responsive/Responsive.tsx#Row"]={docgenInfo:Row.__docgenInfo,name:"Row",path:"packages/core/src/core/responsive/Responsive.tsx#Row"})}catch(__react_docgen_typescript_loader_error){}try{Col.displayName="Col",Col.__docgenInfo={description:"",displayName:"Col",props:{align:{defaultValue:{value:"stretch"},description:"align items",name:"align",required:!1,type:{name:"enum",value:[{value:'"center"'},{value:'"end"'},{value:'"start"'},{value:'"stretch"'}]}},flex:{defaultValue:null,description:"column flex",name:"flex",required:!1,type:{name:"enum",value:[{value:'"fill"'},{value:'"auto"'},{value:'"full"'}]}},stretchContent:{defaultValue:null,description:"stretch inner content",name:"stretchContent",required:!1,type:{name:"boolean"}},className:{defaultValue:null,description:"css classname(s)",name:"className",required:!1,type:{name:"string"}},"data-testid":{defaultValue:null,description:"data attribute for test id",name:"data-testid",required:!1,type:{name:"string"}},"data-test-value":{defaultValue:null,description:"data attribute for test value",name:"data-test-value",required:!1,type:{name:"any"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/core/responsive/Responsive.tsx#Col"]={docgenInfo:Col.__docgenInfo,name:"Col",path:"packages/core/src/core/responsive/Responsive.tsx#Col"})}catch(__react_docgen_typescript_loader_error){}var Section_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/core/section/Section.module.css"),Section_module_options={};Section_module_options.styleTagTransform=styleTagTransform_default(),Section_module_options.setAttributes=setAttributesWithoutAttributes_default(),Section_module_options.insert=insertBySelector_default().bind(null,"head"),Section_module_options.domAPI=styleDomAPI_default(),Section_module_options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(Section_module.A,Section_module_options);const section_Section_module=Section_module.A&&Section_module.A.locals?Section_module.A.locals:void 0,Section=({children,className,dir,ref})=>(0,jsx_runtime.jsx)("div",{"data-ref":"section",dir,ref,className:classnames_default()(section_Section_module.section,className,"grid area-content overflow-hidden"),children:(0,jsx_runtime.jsx)(ErrorBoundary,{children})});try{Section.displayName="Section",Section.__docgenInfo={description:"The section component provides a structured layout used within a page to organize and display content in a sectioned format, ensuring a consistent and intuitive user experience.",displayName:"Section",props:{className:{defaultValue:null,description:"css classname(s)",name:"className",required:!1,type:{name:"string"}},ref:{defaultValue:null,description:"",name:"ref",required:!1,type:{name:"Ref"}},dir:{defaultValue:null,description:"",name:"dir",required:!1,type:{name:"enum",value:[{value:'"ltr"'},{value:'"rtl"'}]}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/core/section/Section.tsx#Section"]={docgenInfo:Section.__docgenInfo,name:"Section",path:"packages/core/src/core/section/Section.tsx#Section"})}catch(__react_docgen_typescript_loader_error){}var Theme_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/core/theme/Theme.module.css"),Theme_module_options={};Theme_module_options.styleTagTransform=styleTagTransform_default(),Theme_module_options.setAttributes=setAttributesWithoutAttributes_default(),Theme_module_options.insert=insertBySelector_default().bind(null,"head"),Theme_module_options.domAPI=styleDomAPI_default(),Theme_module_options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(Theme_module.A,Theme_module_options);const theme_Theme_module=Theme_module.A&&Theme_module.A.locals?Theme_module.A.locals:void 0,ThemeProvider=({children,branding,primaryColor,accentColor,tintColor,colorScheme,rounding})=>{const styles=(0,react.useMemo)((()=>{const ret={};return primaryColor&&(0,esm._o)(primaryColor)&&(ret["--primary"]=primaryColor),primaryColor&&!(0,esm._o)(primaryColor)&&(ret["--primary"]=`var(--${primaryColor})`),accentColor&&(0,esm._o)(accentColor)&&(ret["--accent"]=accentColor),accentColor&&!(0,esm._o)(accentColor)&&(ret["--accent"]=`var(--${accentColor})`),tintColor&&(0,esm._o)(tintColor)&&(ret["--tint"]=tintColor),tintColor&&!(0,esm._o)(tintColor)&&(ret["--tint"]=`var(--${tintColor})`),ret}),[primaryColor,accentColor,tintColor]);return(0,jsx_runtime.jsx)("div",{style:styles,"data-color-scheme":colorScheme,"data-rounding":rounding,className:classnames_default()(theme_Theme_module.themeProvider,"contents theme-base",branding),children})};try{ThemeProvider.displayName="ThemeProvider",ThemeProvider.__docgenInfo={description:"Theme override",displayName:"ThemeProvider",props:{colorScheme:{defaultValue:null,description:"light/dark color scheme",name:"colorScheme",required:!1,type:{name:"enum",value:[{value:'"light"'},{value:'"dark"'}]}},branding:{defaultValue:null,description:"branding css className\n\n.branding {\n --primary: #color;\n --accent: #color;\n --tint: #color;\n}",name:"branding",required:!1,type:{name:"string"}},primaryColor:{defaultValue:null,description:"primary color",name:"primaryColor",required:!1,type:{name:"string"}},accentColor:{defaultValue:null,description:"accent color",name:"accentColor",required:!1,type:{name:"string"}},tintColor:{defaultValue:null,description:"tint mix color",name:"tintColor",required:!1,type:{name:"string"}},rounding:{defaultValue:null,description:"component rounding",name:"rounding",required:!1,type:{name:"enum",value:[{value:'"minimal"'},{value:'"full"'},{value:'"normal"'}]}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/core/theme/ThemeProvider.tsx#ThemeProvider"]={docgenInfo:ThemeProvider.__docgenInfo,name:"ThemeProvider",path:"packages/core/src/core/theme/ThemeProvider.tsx#ThemeProvider"})}catch(__react_docgen_typescript_loader_error){}var Viewport_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/core/viewport/Viewport.module.css"),Viewport_module_options={};Viewport_module_options.styleTagTransform=styleTagTransform_default(),Viewport_module_options.setAttributes=setAttributesWithoutAttributes_default(),Viewport_module_options.insert=insertBySelector_default().bind(null,"head"),Viewport_module_options.domAPI=styleDomAPI_default(),Viewport_module_options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(Viewport_module.A,Viewport_module_options);const viewport_Viewport_module=Viewport_module.A&&Viewport_module.A.locals?Viewport_module.A.locals:void 0,Viewport=({children})=>(0,jsx_runtime.jsx)("div",{"data-ref":"viewport",className:classnames_default()(viewport_Viewport_module.viewport,"grid overflow-hidden absolute inset-0"),children});try{Viewport.displayName="Viewport",Viewport.__docgenInfo={description:"The application viewport is the main container that defines the visible area where content is displayed and interacted with.",displayName:"Viewport",props:{}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/core/viewport/Viewport.tsx#Viewport"]={docgenInfo:Viewport.__docgenInfo,name:"Viewport",path:"packages/core/src/core/viewport/Viewport.tsx#Viewport"})}catch(__react_docgen_typescript_loader_error){}const ar_namespaceObject=JSON.parse('{"error":{"title":"أُووبس! لقد كسرنا شيئا"},"action":{"ok":"حسنا","add":"اضف جديد","save":"حفظ","more":"أظهر المزيد","less":"عرض أقل","back":"عودة","copy":"ينسخ","copied":"نسخ","close":"قريب","apply":"تطبيق","delete":"حذف","submit":"تقديم","cancel":"إلغاء","preview":"معاينة"}}');((key,languageBundles)=>{const callback=()=>{Object.keys(languageBundles).forEach((lang=>{const bundle=languageBundles[lang];esm_i18next.Ay.addResourceBundle(lang,key,bundle,!0,!1)}))};esm_i18next.Ay.isInitialized?callback():esm_i18next.Ay.on("initialized",callback)})("core",{en:JSON.parse('{"locale":{"en":"English","ar":"عربى","de":"Deutsche","es":"Español","fr":"Français","it":"Italiano","jp":"日本語","ko":"한국어","pt":"Português","ru":"Pусский","zh":"中国人"},"error":{"title":"OOPS! We broke something"},"action":{"ok":"OK","add":"Add New","save":"Save","more":"Show more","less":"Show less","back":"Back","copy":"Copy","copied":"Copied","close":"Close","apply":"Apply","delete":"Delete","submit":"Submit","cancel":"Cancel","preview":"Preview"}}'),ar:ar_namespaceObject});var Tooltip=__webpack_require__("./packages/core/src/overlays/tooltip/Tooltip.tsx"),Typography_module=__webpack_require__("./packages/core/src/typography/Typography.module.css");const AbbrText=({color,children,tooltip,content})=>{const TooltipWrapper=(0,react.useMemo)((()=>tooltip?Tooltip.m:react.Fragment),[tooltip]),tooltipProps=(0,react.useMemo)((()=>({...(0,Tooltip.Y)(tooltip),copyContent:content})),[tooltip,content]);return(0,jsx_runtime.jsx)(TooltipWrapper,{...tooltipProps,children:(0,jsx_runtime.jsx)("abbr",{className:classnames_default()(Typography_module.A.abbr,"whitespace-nowrap",color&&(0,utils.Iq)(color)),style:color?{"--abbr-color":(0,utils.oU)(color)}:void 0,children})})},Abbr=({children,abbr,className,renderer,copyContent="text"})=>{const abbrRender=(0,react.useCallback)(((text,tooltip,color="")=>(0,jsx_runtime.jsx)(AbbrText,{color,tooltip,content:"tooltip"===copyContent?tooltip:text,children:renderer?.([text,tooltip,color])??text})),[renderer,copyContent]),inner=(0,hooks_useEffectDebugger.ZU)((()=>{if((0,esm.Kg)(children)&&!(0,esm.Im)(abbr)){const tokens=(0,esm.qw)(children,abbr.map((([keyword])=>keyword))),titles=abbr.reduce(((t,[a,tooltip="",color=""])=>({...t,[a.toLowerCase()]:{tooltip,color}})),{});return(0,jsx_runtime.jsx)(react.Fragment,{children:tokens.map((([start,text],i)=>{const{tooltip="",color=""}=titles[text.toLowerCase()]??{};return(0,jsx_runtime.jsxs)(react.Fragment,{children:[start,text?abbrRender(text,tooltip,color):null]},i)}))})}return children}),[children,abbr,abbrRender],"TextAbbr inner");return(0,jsx_runtime.jsx)("span",{className,children:inner})};try{Abbr.displayName="Abbr",Abbr.__docgenInfo={description:"Typography abbr component to wrap text parts in `abbr` with tooltip",displayName:"Abbr",props:{copyContent:{defaultValue:{value:"text"},description:"content to copy using the tooltip copy action",name:"copyContent",required:!1,type:{name:"enum",value:[{value:'"text"'},{value:'"tooltip"'}]}},abbr:{defaultValue:null,description:"texts to match and abbreviate within\n\n[textPart, tooltip, color (class name or color string)]",name:"abbr",required:!0,type:{name:"[textPart: string, tooltip: string, color?: string | undefined][]"}},renderer:{defaultValue:null,description:"renderer callback",name:"renderer",required:!1,type:{name:"((part: string[]) => Element)"}},className:{defaultValue:null,description:"css classname(s)",name:"className",required:!1,type:{name:"string"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/typography/Abbr.tsx#Abbr"]={docgenInfo:Abbr.__docgenInfo,name:"Abbr",path:"packages/core/src/typography/Abbr.tsx#Abbr"})}catch(__react_docgen_typescript_loader_error){}const Copy=({text,size,className})=>{const{t}=(0,es.Bd)("core"),doCopy=(0,react.useCallback)((()=>{navigator.clipboard.writeText(text)}),[text]);return(0,jsx_runtime.jsx)(Tooltip.m,{content:t("action.copy"),children:(0,jsx_runtime.jsx)(Button.$,{icon:icons.O.copy,"aria-label":"Copy text",actionMessage:t("action.copied"),variant:"link",size,className:classnames_default()(className,"align-bottom"),onClick:doCopy})})};try{Copy.displayName="Copy",Copy.__docgenInfo={description:"",displayName:"Copy",props:{text:{defaultValue:null,description:"",name:"text",required:!0,type:{name:"string"}},size:{defaultValue:null,description:"button size",name:"size",required:!1,type:{name:"enum",value:[{value:'"xs"'},{value:'"sm"'},{value:'"md"'},{value:'"lg"'},{value:'"xl"'}]}},className:{defaultValue:null,description:"css classname(s)",name:"className",required:!1,type:{name:"string"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/typography/Copy.tsx#Copy"]={docgenInfo:Copy.__docgenInfo,name:"Copy",path:"packages/core/src/typography/Copy.tsx#Copy"})}catch(__react_docgen_typescript_loader_error){}const MarkText=({color,children})=>(0,jsx_runtime.jsx)("mark",{className:classnames_default()(Typography_module.A.mark,"whitespace-nowrap",color&&(0,utils.MN)(color)),style:color?{"--mark-color":(0,utils.oU)(color)}:void 0,children}),Mark=({children,mark,renderer})=>{const abbrRender=(0,react.useCallback)(((text,color="")=>(0,jsx_runtime.jsx)(MarkText,{color,children:renderer?.([text,color])??text})),[renderer]),inner=(0,hooks_useEffectDebugger.ZU)((()=>{if((0,esm.Kg)(children)&&!(0,esm.Im)(mark)){const tokens=(0,esm.qw)(children,mark.map((([keyword])=>keyword))),titles=mark.reduce(((t,[a,color=""])=>({...t,[a.toLowerCase()]:{color}})),{});return(0,jsx_runtime.jsx)(react.Fragment,{children:tokens.map((([start,text],i)=>{const{color=""}=titles[text.toLowerCase()]??{};return(0,jsx_runtime.jsxs)(react.Fragment,{children:[start,text?abbrRender(text,color):null]},i)}))})}return children}),[children,mark,abbrRender],"TextMark inner");return(0,jsx_runtime.jsx)("span",{children:inner})};try{Mark.displayName="Mark",Mark.__docgenInfo={description:"Typography mark component to wrap text parts in `mark`",displayName:"Mark",props:{mark:{defaultValue:null,description:"texts to match and abbreviate within\n\n[textPart, color (class name or color string)]",name:"mark",required:!0,type:{name:"[textPart: string, color?: string | undefined][]"}},renderer:{defaultValue:null,description:"renderer callback",name:"renderer",required:!1,type:{name:"((part: string[]) => Element)"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/typography/Mark.tsx#Mark"]={docgenInfo:Mark.__docgenInfo,name:"Mark",path:"packages/core/src/typography/Mark.tsx#Mark"})}catch(__react_docgen_typescript_loader_error){}const Text=({children,className,inline,bg,color,family,size,clamp,align,...aria})=>{const{t}=(0,es.Bd)("core"),refContainer=(0,react.useRef)(null),[clipped,setClipped]=(0,react.useState)(!1),[showMore,toggleShowMore,refShowMore]=usePropToggle(!1),checkHeight=(0,react.useCallback)((()=>{const el=refContainer.current;el&&(0,esm.Et)(clamp)&&clamp>0&&!refShowMore.current&&setClipped((0,utils.ru)(el.firstElementChild,el)>el.offsetHeight)}),[clamp]);(0,hooks_useEffectDebugger.KI)((()=>{if(refContainer.current){const ob=new ResizeObserver(checkHeight);return ob.observe(refContainer.current),checkHeight(),()=>{ob.disconnect()}}}),[children,checkHeight],"Text check height");const styles=(0,hooks_useEffectDebugger.ZU)((()=>{const s={};return bg&&(s.backgroundColor=(0,utils.oU)(bg)),color&&(s.color=(0,utils.oU)(color)),align&&(s.textAlign=align),size&&!(size in types.F)&&(s.fontSize=size),size&&size in types.F&&(s.fontSize=types.F[size]),s}),[bg,color,size,align,family],"Text styles");return inline?(0,jsx_runtime.jsx)("span",{className,style:styles,...aria,children}):(0,jsx_runtime.jsxs)("article",{className,children:[(0,jsx_runtime.jsx)("div",{ref:refContainer,style:{"--text-clamp":showMore?"unset":clamp??"unset"},children:(0,jsx_runtime.jsx)("div",{className:classnames_default()(Typography_module.A.text,"text-reset mixed-lang px-[2px] whitespace-pre-wrap",family&&`font-${family}`,bg&&(0,utils.MN)(bg),color&&(0,utils.Iq)(color),clamp&&"line-clamp-1"),style:styles,...aria,children})}),clipped&&(0,jsx_runtime.jsx)("div",{className:Typography_module.A.moreLink,children:(0,jsx_runtime.jsxs)("span",{role:"link",tabIndex:0,"data-inner-clickable":!0,onClick:e=>[e.stopPropagation(),toggleShowMore()],children:["...",t("action."+(showMore?"less":"more"))]})})]})};try{Text.displayName="Text",Text.__docgenInfo={description:"Typography text component",displayName:"Text",props:{inline:{defaultValue:null,description:"render text as inline span",name:"inline",required:!1,type:{name:"boolean"}},bg:{defaultValue:null,description:"text background (CSS color / tailwind color)",name:"bg",required:!1,type:{name:"string"}},color:{defaultValue:null,description:"text color (CSS color / tailwind color)",name:"color",required:!1,type:{name:"string"}},size:{defaultValue:null,description:"text size",name:"size",required:!1,type:{name:"string | number"}},family:{defaultValue:null,description:"font family",name:"family",required:!1,type:{name:"enum",value:[{value:'"sans"'},{value:'"serif"'},{value:'"mono"'}]}},align:{defaultValue:null,description:"text align",name:"align",required:!1,type:{name:"enum",value:[{value:'"center"'},{value:'"end"'},{value:'"start"'},{value:'"justify"'}]}},clamp:{defaultValue:null,description:"text line clamp",name:"clamp",required:!1,type:{name:"enum",value:[{value:"1"},{value:"4"},{value:"6"},{value:"3"},{value:"2"},{value:"8"},{value:"9"},{value:"5"},{value:"7"}]}},className:{defaultValue:null,description:"css classname(s)",name:"className",required:!1,type:{name:"string"}},"data-testid":{defaultValue:null,description:"data attribute for test id",name:"data-testid",required:!1,type:{name:"string"}},"data-test-value":{defaultValue:null,description:"data attribute for test value",name:"data-test-value",required:!1,type:{name:"any"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/typography/Text.tsx#Text"]={docgenInfo:Text.__docgenInfo,name:"Text",path:"packages/core/src/typography/Text.tsx#Text"})}catch(__react_docgen_typescript_loader_error){}var Title=__webpack_require__("./packages/core/src/typography/Title.tsx");const useNavigator=(totalCount=0,defaultIndex=0)=>{const[currentIndex,setCurrentIndex]=(0,react.useState)(defaultIndex),refCurrent=(0,react.useRef)(defaultIndex),onNavigate=(0,react.useCallback)((dir=>{-1===dir&&(refCurrent.current=refCurrent.current>0?refCurrent.current-1:totalCount-1),1===dir&&(refCurrent.current=refCurrent.current+1(0,jsx_runtime.jsxs)("span",{className:"text-muted leading-5",children:[currentIndex+1,"/",totalCount]})),[currentIndex,totalCount]),onNavigate,currentIndex,setCurrentIndex}},useOverlayService=ModalOrFlyout=>{const[Overlay,setOverlay]=(0,react.useState)(null);return[Overlay,async({onClose,...props}={})=>await new Promise((resolve=>{setOverlay((0,jsx_runtime.jsx)(ModalOrFlyout,{...props,onClose:args=>{setOverlay(null),resolve(args),onClose?.(args)}}))}))]};try{useOverlayService.displayName="useOverlayService",useOverlayService.__docgenInfo={description:"",displayName:"useOverlayService",props:{}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/hooks/useOverlayService.tsx#useOverlayService"]={docgenInfo:useOverlayService.__docgenInfo,name:"useOverlayService",path:"packages/core/src/hooks/useOverlayService.tsx#useOverlayService"})}catch(__react_docgen_typescript_loader_error){}},"./packages/core/src/overlays/alert/Alert.tsx":(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{F:()=>Alert});var jsx_runtime=__webpack_require__("./node_modules/react/jsx-runtime.js"),floating_ui_react=__webpack_require__("./node_modules/@floating-ui/react/dist/floating-ui.react.mjs"),classnames=__webpack_require__("./node_modules/classnames/index.js"),classnames_default=__webpack_require__.n(classnames),react=__webpack_require__("./node_modules/react/index.js"),es=__webpack_require__("./node_modules/react-i18next/dist/es/index.js"),Animations=__webpack_require__("./packages/core/src/components/animations/Animations.tsx"),Button=__webpack_require__("./packages/core/src/components/button/Button.tsx"),Icon=__webpack_require__("./packages/core/src/components/icon/Icon.tsx"),icons=__webpack_require__("./packages/core/src/types/icons.ts"),Title=__webpack_require__("./packages/core/src/typography/Title.tsx"),utils=__webpack_require__("./packages/core/src/utils/index.ts"),injectStylesIntoStyleTag=__webpack_require__("./node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js"),injectStylesIntoStyleTag_default=__webpack_require__.n(injectStylesIntoStyleTag),styleDomAPI=__webpack_require__("./node_modules/style-loader/dist/runtime/styleDomAPI.js"),styleDomAPI_default=__webpack_require__.n(styleDomAPI),insertBySelector=__webpack_require__("./node_modules/style-loader/dist/runtime/insertBySelector.js"),insertBySelector_default=__webpack_require__.n(insertBySelector),setAttributesWithoutAttributes=__webpack_require__("./node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js"),setAttributesWithoutAttributes_default=__webpack_require__.n(setAttributesWithoutAttributes),insertStyleElement=__webpack_require__("./node_modules/style-loader/dist/runtime/insertStyleElement.js"),insertStyleElement_default=__webpack_require__.n(insertStyleElement),styleTagTransform=__webpack_require__("./node_modules/style-loader/dist/runtime/styleTagTransform.js"),styleTagTransform_default=__webpack_require__.n(styleTagTransform),Alert_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/overlays/alert/Alert.module.css"),options={};options.styleTagTransform=styleTagTransform_default(),options.setAttributes=setAttributesWithoutAttributes_default(),options.insert=insertBySelector_default().bind(null,"head"),options.domAPI=styleDomAPI_default(),options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(Alert_module.A,options);const alert_Alert_module=Alert_module.A&&Alert_module.A.locals?Alert_module.A.locals:void 0,Alert=({title,message,color="primary",icon,rtlFlip,actions,onClose,type,okLabel,cancelLabel,placeholder,defaultValue})=>{const{t}=(0,es.Bd)("core"),[value,setValue]=(0,react.useState)(defaultValue),{refs,context}=(0,floating_ui_react.we)({open:!0,onOpenChange:()=>{handleClose(!1)}}),dismiss=(0,floating_ui_react.s9)(context,{outsidePressEvent:"mousedown",escapeKey:!0}),role=(0,floating_ui_react.It)(context),{getFloatingProps}=(0,floating_ui_react.bv)([dismiss,role]),iconType=(0,react.useMemo)((()=>{if(icon)return(0,jsx_runtime.jsx)(Icon.I,{icon,size:"md",rtlFlip,color:color+"-600"});switch(color){case"danger":return(0,jsx_runtime.jsx)(Animations.QK,{type:"cross",className:(0,utils.Iq)(color+"-600")});case"success":return(0,jsx_runtime.jsx)(Animations.QK,{type:"check",className:(0,utils.Iq)(color+"-600")});case"warning":return(0,jsx_runtime.jsx)(Animations.QK,{type:"exclaim",className:(0,utils.Iq)(color+"-600")});default:return(0,jsx_runtime.jsx)(Animations.QK,{type:"confirm"===type?"question":"info",className:(0,utils.Iq)(color+"-600")})}}),[color,type,icon]),handleClose=(0,react.useCallback)((ret=>{refs.floating.current&&(refs.floating.current.dataset.show="false"),setTimeout((()=>{onClose(ret)}),250)}),[onClose]);return(0,react.useLayoutEffect)((()=>{setTimeout((()=>refs.floating.current&&(refs.floating.current.dataset.show="true")),100)}),[]),(0,jsx_runtime.jsx)(floating_ui_react.XF,{children:(0,jsx_runtime.jsx)(floating_ui_react.zR,{lockScroll:!0,style:{zIndex:"var(--z-overlay-mask)"},className:"bg-base/50 backdrop-blur-sm grid place-items-center",children:(0,jsx_runtime.jsx)(floating_ui_react.s3,{context,children:(0,jsx_runtime.jsxs)("dialog",{role:"alertdialog",className:classnames_default()(alert_Alert_module.alert,(0,utils.Z1)(color+"-300"),"grid bg-base border-2 pointer-events-auto overflow-hidden rounded-capped select-none","min-w-72 max-w-sm p-6 relative outline-0 shadow-lg"),ref:refs.setFloating,...getFloatingProps(),children:[(0,jsx_runtime.jsx)("div",{className:classnames_default()("area-[icon] text-lg py-2"),children:iconType}),(0,jsx_runtime.jsx)(Title.h,{className:"font-medium area-[title]",children:title}),(0,jsx_runtime.jsx)("p",{className:"area-[message] py-4",children:message}),"prompt"===type&&(0,jsx_runtime.jsx)("input",{value,placeholder,className:classnames_default()("border rounded focus:border-primary-500"),ref:e=>null!=e&&setTimeout((()=>e.focus()),100),onBlur:e=>e.target.focus(),onChange:e=>setValue(e.target.value),onKeyDown:e=>"Enter"===e.key&&handleClose(value)}),(0,jsx_runtime.jsxs)("div",{className:"flex gap-1 justify-center flex-nowrap pt-2 area-[actions]",children:[(0,jsx_runtime.jsx)("div",{className:"contents",onClickCapture:e=>handleClose(e.target.value),children:actions}),"confirm"===type&&(0,jsx_runtime.jsx)(Button.$,{size:"sm",variant:"link",color,onClick:()=>handleClose(!1),children:cancelLabel??t("action.cancel","Cancel")}),(0,jsx_runtime.jsx)(Button.$,{size:"sm",variant:"solid",color,onClick:()=>handleClose(!0),children:okLabel??t("action.ok","OK")})]}),(0,jsx_runtime.jsx)("div",{className:"absolute top-2 end-2",children:(0,jsx_runtime.jsx)(Button.$,{size:"sm",variant:"link",className:"m-0",color,onClick:()=>handleClose(!1),icon:icons.O.close,"aria-label":"close"})})]})})})})};try{Alert.displayName="Alert",Alert.__docgenInfo={description:"",displayName:"Alert",props:{type:{defaultValue:null,description:"toast type",name:"type",required:!1,type:{name:"enum",value:[{value:'"alert"'},{value:'"confirm"'},{value:'"prompt"'}]}},title:{defaultValue:null,description:"toast title",name:"title",required:!1,type:{name:"string"}},message:{defaultValue:null,description:"toast text",name:"message",required:!0,type:{name:"string | Element"}},color:{defaultValue:{value:"primary"},description:"theme color",name:"color",required:!1,type:{name:"enum",value:[{value:'"primary"'},{value:'"accent"'},{value:'"info"'},{value:'"danger"'},{value:'"success"'},{value:'"warning"'}]}},actions:{defaultValue:null,description:"extra action button",name:"actions",required:!1,type:{name:"Elements"}},okLabel:{defaultValue:null,description:"ok label",name:"okLabel",required:!1,type:{name:"string"}},cancelLabel:{defaultValue:null,description:"cancel label",name:"cancelLabel",required:!1,type:{name:"string"}},placeholder:{defaultValue:null,description:"placeholder for prompt",name:"placeholder",required:!1,type:{name:"string"}},defaultValue:{defaultValue:null,description:"default value for prompt",name:"defaultValue",required:!1,type:{name:"string"}},icon:{defaultValue:null,description:"svg path / image url",name:"icon",required:!1,type:{name:"string"}},rtlFlip:{defaultValue:null,description:"flip icon in rtl",name:"rtlFlip",required:!1,type:{name:"boolean"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/overlays/alert/Alert.tsx#Alert"]={docgenInfo:Alert.__docgenInfo,name:"Alert",path:"packages/core/src/overlays/alert/Alert.tsx#Alert"})}catch(__react_docgen_typescript_loader_error){}},"./packages/core/src/overlays/index.ts":(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{Fc:()=>Alert.F,mj:()=>Flyout,QB:()=>Message.Q,aF:()=>Modal,y8:()=>Toast.y,m_:()=>Tooltip.m});var Alert=__webpack_require__("./packages/core/src/overlays/alert/Alert.tsx"),jsx_runtime=__webpack_require__("./node_modules/react/jsx-runtime.js"),floating_ui_react=__webpack_require__("./node_modules/@floating-ui/react/dist/floating-ui.react.mjs"),classnames=__webpack_require__("./node_modules/classnames/index.js"),classnames_default=__webpack_require__.n(classnames),react=__webpack_require__("./node_modules/react/index.js"),Animations=__webpack_require__("./packages/core/src/components/animations/Animations.tsx"),Icon=__webpack_require__("./packages/core/src/components/icon/Icon.tsx"),HeadFoot=__webpack_require__("./packages/core/src/core/headfoot/HeadFoot.tsx"),HotKeyWrapper=__webpack_require__("./packages/core/src/hotkeys/HotKeyWrapper.tsx"),icons=__webpack_require__("./packages/core/src/types/icons.ts"),injectStylesIntoStyleTag=__webpack_require__("./node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js"),injectStylesIntoStyleTag_default=__webpack_require__.n(injectStylesIntoStyleTag),styleDomAPI=__webpack_require__("./node_modules/style-loader/dist/runtime/styleDomAPI.js"),styleDomAPI_default=__webpack_require__.n(styleDomAPI),insertBySelector=__webpack_require__("./node_modules/style-loader/dist/runtime/insertBySelector.js"),insertBySelector_default=__webpack_require__.n(insertBySelector),setAttributesWithoutAttributes=__webpack_require__("./node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js"),setAttributesWithoutAttributes_default=__webpack_require__.n(setAttributesWithoutAttributes),insertStyleElement=__webpack_require__("./node_modules/style-loader/dist/runtime/insertStyleElement.js"),insertStyleElement_default=__webpack_require__.n(insertStyleElement),styleTagTransform=__webpack_require__("./node_modules/style-loader/dist/runtime/styleTagTransform.js"),styleTagTransform_default=__webpack_require__.n(styleTagTransform),Flyout_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/overlays/flyout/Flyout.module.css"),options={};options.styleTagTransform=styleTagTransform_default(),options.setAttributes=setAttributesWithoutAttributes_default(),options.insert=insertBySelector_default().bind(null,"head"),options.domAPI=styleDomAPI_default(),options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(Flyout_module.A,options);const flyout_Flyout_module=Flyout_module.A&&Flyout_module.A.locals?Flyout_module.A.locals:void 0,Flyout=({icon,iconBg,iconColor,iconClassName,rtlFlip,title,actions,closeOnClick,headerClassName,onClose,onBeforeClose,children,loading,size,width,minWidth,hideMask,align="start",...aria})=>{const{refs,context}=(0,floating_ui_react.we)({open:!0,onOpenChange:()=>{handleClose(!1)}}),dismiss=(0,floating_ui_react.s9)(context,{outsidePressEvent:"mousedown",escapeKey:!0}),role=(0,floating_ui_react.It)(context),{getFloatingProps}=(0,floating_ui_react.bv)([dismiss,role]),handleClose=(0,react.useCallback)(((...args)=>{Promise.resolve(onBeforeClose?.(...args)).then((ret=>{!1!==ret&&(refs.floating.current&&(refs.floating.current.dataset.show="false"),setTimeout((()=>{onClose?.(...args)}),250)),!1===ret&&setTimeout((()=>refs.floating.current?.querySelector('[role="dialog"]')?.focus()),50)}))}),[onBeforeClose,onClose]);(0,react.useEffect)((()=>{setTimeout((()=>{refs.floating.current&&(refs.floating.current.dataset.show="true"),refs.floating.current?.querySelector('[role="dialog"]')?.focus()}),50)}),[]);const tryClosing=(0,react.useCallback)((e=>{(closeOnClick||e.target.closest("[data-flyout-dismiss='true']"))&&setTimeout((()=>{handleClose()}),100)}),[closeOnClick,handleClose]),Wrapper=(0,react.useCallback)((({children})=>hideMask?(0,jsx_runtime.jsx)(react.Fragment,{children}):(0,jsx_runtime.jsx)(floating_ui_react.zR,{lockScroll:!0,style:{zIndex:"var(--z-overlay-mask)"},className:"bg-base/10 backdrop-blur-sm transition-all",children})),[hideMask,handleClose]);return(0,jsx_runtime.jsx)(floating_ui_react.XF,{children:(0,jsx_runtime.jsx)(Wrapper,{children:(0,jsx_runtime.jsx)(floating_ui_react.s3,{context,children:(0,jsx_runtime.jsx)(Wrapper,{children:(0,jsx_runtime.jsx)("div",{"data-align":align,className:classnames_default()(flyout_Flyout_module.flyout,"fixed inset-y-0 overflow-hidden flex flex-col flex-nowrap pointer-events-auto shadow-xl","start"===align?"start-0":"end-0","sm"===size&&"w-[20rem]","md"===size&&"w-[40rem]","lg"===size&&"w-[60vw]","xl"===size&&"w-[80vw]"),style:{width,minWidth},onMouseUpCapture:tryClosing,ref:refs.setFloating,...getFloatingProps(),...aria,...aria,children:(0,jsx_runtime.jsxs)(HotKeyWrapper.O1,{children:[(0,jsx_runtime.jsxs)(HeadFoot.Y,{flex:!0,className:classnames_default()(flyout_Flyout_module.flyoutHeader,headerClassName),children:[icon&&(0,jsx_runtime.jsx)(Icon.I,{icon,bg:iconBg,color:iconColor,className:classnames_default()(iconClassName,"p-1"),rtlFlip}),(0,jsx_runtime.jsx)("label",{className:"flex-1 truncate py-2 px-1",children:title}),actions,(0,jsx_runtime.jsx)(Icon.I,{"data-ref":"panelClose",className:classnames_default()(flyout_Flyout_module.panelAction,"cursor-pointer p-1 text-xl self-stretch"),icon:icons.O.close,onClick:()=>handleClose(!1)})]}),loading&&(0,jsx_runtime.jsx)(Animations.Rh,{}),(0,jsx_runtime.jsx)("div",{role:"dialog",className:classnames_default()(flyout_Flyout_module.flyoutBody,"flex-1 grid overflow-hidden"),tabIndex:0,children})]})})})})})})};try{Flyout.displayName="Flyout",Flyout.__docgenInfo={description:"",displayName:"Flyout",props:{align:{defaultValue:{value:"start"},description:"flyout alignment",name:"align",required:!1,type:{name:"enum",value:[{value:'"end"'},{value:'"start"'}]}},headerClassName:{defaultValue:null,description:"header className",name:"headerClassName",required:!1,type:{name:"string"}},iconClassName:{defaultValue:null,description:"icon className",name:"iconClassName",required:!1,type:{name:"string"}},loading:{defaultValue:null,description:"show loading indicator",name:"loading",required:!1,type:{name:"boolean"}},title:{defaultValue:null,description:"modal title",name:"title",required:!1,type:{name:"string | false | Element"}},actions:{defaultValue:null,description:"header actions",name:"actions",required:!1,type:{name:"Elements"}},size:{defaultValue:null,description:"modal size",name:"size",required:!1,type:{name:"enum",value:[{value:'"sm"'},{value:'"md"'},{value:'"lg"'},{value:'"xl"'},{value:'"screen"'}]}},width:{defaultValue:null,description:"width",name:"width",required:!1,type:{name:"string | number"}},minWidth:{defaultValue:null,description:"minimum width",name:"minWidth",required:!1,type:{name:"string | number"}},hideMask:{defaultValue:null,description:"hide backdrop mask",name:"hideMask",required:!1,type:{name:"boolean"}},closeOnClick:{defaultValue:null,description:"close flyout on any click",name:"closeOnClick",required:!1,type:{name:"boolean"}},onClose:{defaultValue:null,description:"close handler",name:"onClose",required:!0,type:{name:"(...args: AnyObject) => void"}},onBeforeClose:{defaultValue:null,description:"before close handler, return false to prevent close",name:"onBeforeClose",required:!1,type:{name:"((...args: AnyObject) => unknown)"}},"data-testid":{defaultValue:null,description:"data attribute for test id",name:"data-testid",required:!1,type:{name:"string"}},"data-test-value":{defaultValue:null,description:"data attribute for test value",name:"data-test-value",required:!1,type:{name:"any"}},icon:{defaultValue:null,description:"svg path / image url",name:"icon",required:!1,type:{name:"string"}},rtlFlip:{defaultValue:null,description:"flip icon in rtl",name:"rtlFlip",required:!1,type:{name:"boolean"}},iconBg:{defaultValue:null,description:"icon background color",name:"iconBg",required:!1,type:{name:"string"}},iconColor:{defaultValue:null,description:"icon color",name:"iconColor",required:!1,type:{name:"string"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/overlays/flyout/Flyout.tsx#Flyout"]={docgenInfo:Flyout.__docgenInfo,name:"Flyout",path:"packages/core/src/overlays/flyout/Flyout.tsx#Flyout"})}catch(__react_docgen_typescript_loader_error){}var Message=__webpack_require__("./packages/core/src/overlays/message/Message.tsx"),Modal_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/overlays/modal/Modal.module.css"),Modal_module_options={};Modal_module_options.styleTagTransform=styleTagTransform_default(),Modal_module_options.setAttributes=setAttributesWithoutAttributes_default(),Modal_module_options.insert=insertBySelector_default().bind(null,"head"),Modal_module_options.domAPI=styleDomAPI_default(),Modal_module_options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(Modal_module.A,Modal_module_options);const modal_Modal_module=Modal_module.A&&Modal_module.A.locals?Modal_module.A.locals:void 0,Modal=({icon,iconBg,iconColor,iconClassName,rtlFlip,title,actions,headerClassName,onClose,onBeforeClose,children,loading,size,width,height,minHeight,minWidth,...aria})=>{const{refs,context}=(0,floating_ui_react.we)({open:!0,onOpenChange:()=>{handleClose(!1)}}),dismiss=(0,floating_ui_react.s9)(context,{outsidePressEvent:"mousedown",escapeKey:!0}),role=(0,floating_ui_react.It)(context),{getFloatingProps}=(0,floating_ui_react.bv)([dismiss,role]),handleClose=(0,react.useCallback)(((...args)=>{Promise.resolve(onBeforeClose?.(...args)).then((ret=>{!1!==ret&&(refs.floating.current&&(refs.floating.current.dataset.show="false"),setTimeout((()=>{onClose?.(...args)}),250)),!1===ret&&setTimeout((()=>refs.floating.current?.querySelector("[role='dialog']")?.focus()),50)}))}),[onBeforeClose,onClose]);return(0,react.useEffect)((()=>{setTimeout((()=>{refs.floating.current&&(refs.floating.current.dataset.show="true"),refs.floating.current?.querySelector("[role='dialog']")?.focus()}),50)}),[]),(0,jsx_runtime.jsx)(floating_ui_react.XF,{children:(0,jsx_runtime.jsx)(floating_ui_react.zR,{lockScroll:!0,style:{zIndex:"var(--z-overlay-mask)"},className:"bg-base/20 backdrop-blur-sm grid place-items-center",children:(0,jsx_runtime.jsx)(floating_ui_react.s3,{context,children:(0,jsx_runtime.jsx)("dialog",{className:classnames_default()(modal_Modal_module.modal,"rounded-capped relative overflow-hidden flex flex-col flex-nowrap","ring-1 ring-tint-100 ring-offset-1 focus-within:ring-primary-300 shadow-xl","sm"===size&&"w-[20rem]","md"===size&&"w-[40rem]","lg"===size&&"w-[60vw]","xl"===size&&"w-[80vw]","screen"===size&&"w-screen h-screen"),style:{width,height,minHeight,minWidth},ref:refs.setFloating,...getFloatingProps(),...aria,children:(0,jsx_runtime.jsxs)(HotKeyWrapper.O1,{children:[(0,jsx_runtime.jsxs)(HeadFoot.Y,{flex:!0,className:classnames_default()(modal_Modal_module.modalHeader,headerClassName),children:[icon&&(0,jsx_runtime.jsx)(Icon.I,{icon,bg:iconBg,color:iconColor,className:classnames_default()(iconClassName,"p-1"),rtlFlip}),(0,jsx_runtime.jsx)("label",{className:"flex-1 truncate py-2 px-1",children:title}),actions,(0,jsx_runtime.jsx)(Icon.I,{"data-ref":"panelClose",className:classnames_default()(modal_Modal_module.panelAction,"cursor-pointer p-1 text-xl self-stretch"),icon:icons.O.close,onClick:()=>handleClose(!1)})]}),loading&&(0,jsx_runtime.jsx)(Animations.Rh,{}),(0,jsx_runtime.jsx)("div",{role:"dialog",className:classnames_default()(modal_Modal_module.modalBody,"flex-1 grid overflow-hidden"),tabIndex:0,children})]})})})})})};try{Modal.displayName="Modal",Modal.__docgenInfo={description:"",displayName:"Modal",props:{headerClassName:{defaultValue:null,description:"header className",name:"headerClassName",required:!1,type:{name:"string"}},iconClassName:{defaultValue:null,description:"icon className",name:"iconClassName",required:!1,type:{name:"string"}},loading:{defaultValue:null,description:"show loading indicator",name:"loading",required:!1,type:{name:"boolean"}},title:{defaultValue:null,description:"modal title",name:"title",required:!1,type:{name:"string | false | Element"}},actions:{defaultValue:null,description:"header actions",name:"actions",required:!1,type:{name:"Elements"}},size:{defaultValue:null,description:"modal size",name:"size",required:!1,type:{name:"enum",value:[{value:'"sm"'},{value:'"md"'},{value:'"lg"'},{value:'"xl"'},{value:'"screen"'}]}},height:{defaultValue:null,description:"height",name:"height",required:!1,type:{name:"string | number"}},width:{defaultValue:null,description:"width",name:"width",required:!1,type:{name:"string | number"}},minHeight:{defaultValue:null,description:"minimum height",name:"minHeight",required:!1,type:{name:"string | number"}},minWidth:{defaultValue:null,description:"minimum width",name:"minWidth",required:!1,type:{name:"string | number"}},onClose:{defaultValue:null,description:"close handler",name:"onClose",required:!1,type:{name:"((...args: AnyObject) => void)"}},onBeforeClose:{defaultValue:null,description:"before close handler, return false to prevent close",name:"onBeforeClose",required:!1,type:{name:"((...args: AnyObject) => unknown)"}},"data-testid":{defaultValue:null,description:"data attribute for test id",name:"data-testid",required:!1,type:{name:"string"}},"data-test-value":{defaultValue:null,description:"data attribute for test value",name:"data-test-value",required:!1,type:{name:"any"}},icon:{defaultValue:null,description:"svg path / image url",name:"icon",required:!1,type:{name:"string"}},rtlFlip:{defaultValue:null,description:"flip icon in rtl",name:"rtlFlip",required:!1,type:{name:"boolean"}},iconBg:{defaultValue:null,description:"icon background color",name:"iconBg",required:!1,type:{name:"string"}},iconColor:{defaultValue:null,description:"icon color",name:"iconColor",required:!1,type:{name:"string"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/overlays/modal/Modal.tsx#Modal"]={docgenInfo:Modal.__docgenInfo,name:"Modal",path:"packages/core/src/overlays/modal/Modal.tsx#Modal"})}catch(__react_docgen_typescript_loader_error){}var Toast=__webpack_require__("./packages/core/src/overlays/toast/Toast.tsx"),Tooltip=__webpack_require__("./packages/core/src/overlays/tooltip/Tooltip.tsx")},"./packages/core/src/overlays/message/Message.tsx":(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{Q:()=>Message});var jsx_runtime=__webpack_require__("./node_modules/react/jsx-runtime.js"),classnames=__webpack_require__("./node_modules/classnames/index.js"),classnames_default=__webpack_require__.n(classnames),react=__webpack_require__("./node_modules/react/index.js"),Icon=__webpack_require__("./packages/core/src/components/icon/Icon.tsx"),utils=__webpack_require__("./packages/core/src/utils/index.ts"),injectStylesIntoStyleTag=__webpack_require__("./node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js"),injectStylesIntoStyleTag_default=__webpack_require__.n(injectStylesIntoStyleTag),styleDomAPI=__webpack_require__("./node_modules/style-loader/dist/runtime/styleDomAPI.js"),styleDomAPI_default=__webpack_require__.n(styleDomAPI),insertBySelector=__webpack_require__("./node_modules/style-loader/dist/runtime/insertBySelector.js"),insertBySelector_default=__webpack_require__.n(insertBySelector),setAttributesWithoutAttributes=__webpack_require__("./node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js"),setAttributesWithoutAttributes_default=__webpack_require__.n(setAttributesWithoutAttributes),insertStyleElement=__webpack_require__("./node_modules/style-loader/dist/runtime/insertStyleElement.js"),insertStyleElement_default=__webpack_require__.n(insertStyleElement),styleTagTransform=__webpack_require__("./node_modules/style-loader/dist/runtime/styleTagTransform.js"),styleTagTransform_default=__webpack_require__.n(styleTagTransform),Message_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/overlays/message/Message.module.css"),options={};options.styleTagTransform=styleTagTransform_default(),options.setAttributes=setAttributesWithoutAttributes_default(),options.insert=insertBySelector_default().bind(null,"head"),options.domAPI=styleDomAPI_default(),options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(Message_module.A,options);const message_Message_module=Message_module.A&&Message_module.A.locals?Message_module.A.locals:void 0,Message=({title,message,color,icon,rtlFlip,actions,onClose})=>{const elRef=(0,react.useRef)(null),handleClose=(0,react.useCallback)((ret=>{elRef.current&&(elRef.current.dataset.show="false"),setTimeout((()=>{onClose(ret)}),250)}),[onClose]);return(0,react.useLayoutEffect)((()=>{setTimeout((()=>elRef.current&&(elRef.current.dataset.show="true")),100)}),[]),(0,jsx_runtime.jsxs)("div",{className:classnames_default()(message_Message_module.message,color?(0,utils.MN)(color+"-300"):"bg-invert",color?(0,utils.Iq)(color+"-900"):"text-invert","flex flex-nowrap gap-1 px-8 relative justify-center max-w-md pointer-events-auto rounded mb-2 select-none"),ref:elRef,children:[icon&&(0,jsx_runtime.jsx)(Icon.I,{icon,size:"md",rtlFlip}),title&&(0,jsx_runtime.jsx)("div",{className:"font-medium",children:title}),(0,jsx_runtime.jsx)("div",{className:"truncate flex-initial",children:message}),actions&&(0,jsx_runtime.jsx)("div",{className:"flex gap-1 flex-nowrap",onClickCapture:e=>handleClose(e.target.value),children:actions}),(0,jsx_runtime.jsx)("div",{role:"none",className:"cursor-pointer opacity-65 absolute end-1 hover:opacity-90",onClick:()=>handleClose(),children:"×"})]})};try{Message.displayName="Message",Message.__docgenInfo={description:"",displayName:"Message",props:{title:{defaultValue:null,description:"message title",name:"title",required:!1,type:{name:"string"}},message:{defaultValue:null,description:"message text",name:"message",required:!0,type:{name:"string | Element"}},color:{defaultValue:null,description:"theme color",name:"color",required:!1,type:{name:"enum",value:[{value:'"primary"'},{value:'"accent"'},{value:'"info"'},{value:'"danger"'},{value:'"success"'},{value:'"warning"'}]}},actions:{defaultValue:null,description:"extra action button",name:"actions",required:!1,type:{name:"Elements"}},icon:{defaultValue:null,description:"svg path / image url",name:"icon",required:!1,type:{name:"string"}},rtlFlip:{defaultValue:null,description:"flip icon in rtl",name:"rtlFlip",required:!1,type:{name:"boolean"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/overlays/message/Message.tsx#Message"]={docgenInfo:Message.__docgenInfo,name:"Message",path:"packages/core/src/overlays/message/Message.tsx#Message"})}catch(__react_docgen_typescript_loader_error){}},"./packages/core/src/overlays/toast/Toast.tsx":(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{y:()=>Toast});var jsx_runtime=__webpack_require__("./node_modules/react/jsx-runtime.js"),classnames=__webpack_require__("./node_modules/classnames/index.js"),classnames_default=__webpack_require__.n(classnames),react=__webpack_require__("./node_modules/react/index.js"),es=__webpack_require__("./node_modules/react-i18next/dist/es/index.js"),Animations=__webpack_require__("./packages/core/src/components/animations/Animations.tsx"),Button=__webpack_require__("./packages/core/src/components/button/Button.tsx"),Icon=__webpack_require__("./packages/core/src/components/icon/Icon.tsx"),icons=__webpack_require__("./packages/core/src/types/icons.ts"),utils=__webpack_require__("./packages/core/src/utils/index.ts"),injectStylesIntoStyleTag=__webpack_require__("./node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js"),injectStylesIntoStyleTag_default=__webpack_require__.n(injectStylesIntoStyleTag),styleDomAPI=__webpack_require__("./node_modules/style-loader/dist/runtime/styleDomAPI.js"),styleDomAPI_default=__webpack_require__.n(styleDomAPI),insertBySelector=__webpack_require__("./node_modules/style-loader/dist/runtime/insertBySelector.js"),insertBySelector_default=__webpack_require__.n(insertBySelector),setAttributesWithoutAttributes=__webpack_require__("./node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js"),setAttributesWithoutAttributes_default=__webpack_require__.n(setAttributesWithoutAttributes),insertStyleElement=__webpack_require__("./node_modules/style-loader/dist/runtime/insertStyleElement.js"),insertStyleElement_default=__webpack_require__.n(insertStyleElement),styleTagTransform=__webpack_require__("./node_modules/style-loader/dist/runtime/styleTagTransform.js"),styleTagTransform_default=__webpack_require__.n(styleTagTransform),Toast_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/overlays/toast/Toast.module.css"),options={};options.styleTagTransform=styleTagTransform_default(),options.setAttributes=setAttributesWithoutAttributes_default(),options.insert=insertBySelector_default().bind(null,"head"),options.domAPI=styleDomAPI_default(),options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(Toast_module.A,options);const toast_Toast_module=Toast_module.A&&Toast_module.A.locals?Toast_module.A.locals:void 0,Toast=({title,message,color="primary",icon,rtlFlip,actions,onClose,onCloseAll,type,okLabel,cancelLabel})=>{const{t}=(0,es.Bd)("core"),iconType=(0,react.useMemo)((()=>{if(icon)return(0,jsx_runtime.jsx)(Icon.I,{icon,size:"md",rtlFlip,color:color+"-600"});switch(color){case"danger":return(0,jsx_runtime.jsx)(Animations.QK,{type:"cross",className:(0,utils.Iq)(color+"-600")});case"success":return(0,jsx_runtime.jsx)(Animations.QK,{type:"check",className:(0,utils.Iq)(color+"-600")});case"warning":return(0,jsx_runtime.jsx)(Animations.QK,{type:"exclaim",className:(0,utils.Iq)(color+"-600")});default:return(0,jsx_runtime.jsx)(Animations.QK,{type:"confirm"===type?"question":"info",className:(0,utils.Iq)(color+"-600")})}}),[color,type,icon]),elRef=(0,react.useRef)(null),handleClose=(0,react.useCallback)((ret=>{elRef.current&&(elRef.current.dataset.show="false"),setTimeout((()=>{onClose(ret)}),250)}),[onClose]);return(0,react.useLayoutEffect)((()=>{setTimeout((()=>elRef.current&&(elRef.current.dataset.show="true")),100)}),[]),(0,jsx_runtime.jsxs)("div",{role:"alert",className:classnames_default()(toast_Toast_module.toast,(0,utils.Z1)(color+"-300"),"flex flex-nowrap max-w-sm bg-base min-w-72 border pointer-events-auto relative overflow-hidden rounded-capped mt-4 select-none"),ref:elRef,children:[(0,jsx_runtime.jsx)("div",{className:classnames_default()("flex-initial p-2",(0,utils.MN)(color+"-100")),children:iconType}),(0,jsx_runtime.jsxs)("div",{className:classnames_default()((0,utils.MN)(color+"-50/50"),"flex flex-col flex-1 flex-nowrap overflow-hidden p-2"),children:[(0,jsx_runtime.jsxs)("div",{className:"flex flex-nowrap gap-2 items-start",children:[(0,jsx_runtime.jsx)("div",{className:"font-medium flex-1",children:title}),(0,jsx_runtime.jsxs)("div",{children:[(0,jsx_runtime.jsx)(Button.$,{size:"sm",variant:"link",className:"m-0",color,icon:icons.O.closeAll,"aria-label":"close-all",onClick:onCloseAll}),(0,jsx_runtime.jsx)(Button.$,{size:"sm",variant:"link",className:"m-0",color,icon:icons.O.close,"aria-label":"close",onClick:()=>handleClose(!1)})]})]}),(0,jsx_runtime.jsx)("div",{children:message}),("confirm"===type||actions)&&(0,jsx_runtime.jsxs)("div",{className:"flex gap-1 justify-end flex-nowrap pt-2",children:[(0,jsx_runtime.jsx)("div",{className:"contents",onClickCapture:e=>handleClose(e.target.value),children:actions}),"confirm"===type&&(0,jsx_runtime.jsxs)(react.Fragment,{children:[(0,jsx_runtime.jsx)("div",{className:"flex-1"}),(0,jsx_runtime.jsx)(Button.$,{size:"sm",variant:"link",color,onClick:()=>handleClose(!1),children:cancelLabel??t("action.cancel","Cancel")}),(0,jsx_runtime.jsx)(Button.$,{size:"sm",variant:"solid",color,onClick:()=>handleClose(!0),children:okLabel??t("action.ok","OK")})]})]})]})]})};try{Toast.displayName="Toast",Toast.__docgenInfo={description:"",displayName:"Toast",props:{type:{defaultValue:null,description:"toast type",name:"type",required:!1,type:{name:"enum",value:[{value:'"alert"'},{value:'"confirm"'}]}},title:{defaultValue:null,description:"toast title",name:"title",required:!1,type:{name:"string"}},message:{defaultValue:null,description:"toast text",name:"message",required:!0,type:{name:"string | Element"}},color:{defaultValue:{value:"primary"},description:"theme color",name:"color",required:!1,type:{name:"enum",value:[{value:'"primary"'},{value:'"accent"'},{value:'"info"'},{value:'"danger"'},{value:'"success"'},{value:'"warning"'}]}},actions:{defaultValue:null,description:"extra action button",name:"actions",required:!1,type:{name:"Elements"}},okLabel:{defaultValue:null,description:"ok label",name:"okLabel",required:!1,type:{name:"string"}},cancelLabel:{defaultValue:null,description:"cancel label",name:"cancelLabel",required:!1,type:{name:"string"}},icon:{defaultValue:null,description:"svg path / image url",name:"icon",required:!1,type:{name:"string"}},rtlFlip:{defaultValue:null,description:"flip icon in rtl",name:"rtlFlip",required:!1,type:{name:"boolean"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/overlays/toast/Toast.tsx#Toast"]={docgenInfo:Toast.__docgenInfo,name:"Toast",path:"packages/core/src/overlays/toast/Toast.tsx#Toast"})}catch(__react_docgen_typescript_loader_error){}},"./packages/core/src/overlays/tooltip/Tooltip.tsx":(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{m:()=>Tooltip,Y:()=>getTooltipProps});var jsx_runtime=__webpack_require__("./node_modules/react/jsx-runtime.js"),floating_ui_react=__webpack_require__("./node_modules/@floating-ui/react/dist/floating-ui.react.mjs"),floating_ui_dom=__webpack_require__("./node_modules/@floating-ui/dom/dist/floating-ui.dom.mjs"),floating_ui_react_dom=__webpack_require__("./node_modules/@floating-ui/react/node_modules/@floating-ui/react-dom/dist/floating-ui.react-dom.mjs"),esm=__webpack_require__("./packages/utilities/dist/esm/index.js"),classnames=__webpack_require__("./node_modules/classnames/index.js"),classnames_default=__webpack_require__.n(classnames),react=__webpack_require__("./node_modules/react/index.js"),Icon=__webpack_require__("./packages/core/src/components/icon/Icon.tsx"),useIsRtl=__webpack_require__("./packages/core/src/hooks/useIsRtl.ts"),icons=__webpack_require__("./packages/core/src/types/icons.ts"),injectStylesIntoStyleTag=__webpack_require__("./node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js"),injectStylesIntoStyleTag_default=__webpack_require__.n(injectStylesIntoStyleTag),styleDomAPI=__webpack_require__("./node_modules/style-loader/dist/runtime/styleDomAPI.js"),styleDomAPI_default=__webpack_require__.n(styleDomAPI),insertBySelector=__webpack_require__("./node_modules/style-loader/dist/runtime/insertBySelector.js"),insertBySelector_default=__webpack_require__.n(insertBySelector),setAttributesWithoutAttributes=__webpack_require__("./node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js"),setAttributesWithoutAttributes_default=__webpack_require__.n(setAttributesWithoutAttributes),insertStyleElement=__webpack_require__("./node_modules/style-loader/dist/runtime/insertStyleElement.js"),insertStyleElement_default=__webpack_require__.n(insertStyleElement),styleTagTransform=__webpack_require__("./node_modules/style-loader/dist/runtime/styleTagTransform.js"),styleTagTransform_default=__webpack_require__.n(styleTagTransform),Tooltip_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/overlays/tooltip/Tooltip.module.css"),options={};options.styleTagTransform=styleTagTransform_default(),options.setAttributes=setAttributesWithoutAttributes_default(),options.insert=insertBySelector_default().bind(null,"head"),options.domAPI=styleDomAPI_default(),options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(Tooltip_module.A,options);const tooltip_Tooltip_module=Tooltip_module.A&&Tooltip_module.A.locals?Tooltip_module.A.locals:void 0,getTooltipProps=(tooltip,innerRef)=>(0,esm.Kg)(tooltip)||(0,react.isValidElement)(tooltip)?{ref:innerRef,placement:"top",content:tooltip}:(0,esm.Gv)(tooltip)?Object.assign({ref:innerRef,placement:"top"},tooltip):void 0,Tooltip=({ref,children,color,content,open,copyContent,disabled,placement:_placement,...rest})=>{const arrowRef=(0,react.useRef)(null),isRtl=(0,useIsRtl.O)(),[isOpen,setIsOpen]=(0,react.useState)(open);(0,react.useEffect)((()=>{setIsOpen(open)}),[open]);const placement=(0,react.useMemo)((()=>isRtl?_placement?.includes("left")?_placement.replace("left","right"):_placement?.replace("right","left")??"top":_placement??"top"),[_placement,isRtl]),{refs,floatingStyles,context}=(0,floating_ui_react.we)({open:isOpen,strategy:"fixed",onOpenChange:open||disabled?void 0:setIsOpen,whileElementsMounted:floating_ui_dom.ll,placement,middleware:[(0,floating_ui_react_dom.BN)({padding:8}),(0,floating_ui_react_dom.UU)(),(0,floating_ui_react_dom.cY)(9),(0,floating_ui_react_dom.UE)({element:arrowRef})]}),hover=(0,floating_ui_react.Mk)(context,{restMs:250,delay:{open:1e3},handleClose:copyContent?(0,floating_ui_react.iB)({buffer:1}):void 0}),{getReferenceProps,getFloatingProps}=(0,floating_ui_react.bv)([open?void 0:hover]);(0,react.useEffect)((()=>{context.update()}),[content]);const innerRef=(0,react.useMemo)((()=>(0,esm.Px)(ref,children.props.ref,refs.setReference)),[ref,children.props.ref,refs.setReference]),copyEl=(0,react.useMemo)((()=>{if(copyContent){const copyText=(0,esm.Kg)(copyContent)?copyContent:content,handler=()=>{setIsOpen(!1),navigator.clipboard.writeText(copyText.toString())};return(0,jsx_runtime.jsx)("span",{role:"none",className:"ms-2 cursor-pointer text-dimmed flex-content opacity-75 hover:opacity-90 active:opacity-60",onClick:handler,children:(0,jsx_runtime.jsx)(Icon.I,{icon:icons.O.copy})})}return null}),[copyContent,content]);return(0,jsx_runtime.jsxs)(react.Fragment,{children:[(0,react.cloneElement)(children,{ref:innerRef,...open?{}:getReferenceProps(rest)}),isOpen&&content&&(0,jsx_runtime.jsx)(floating_ui_react.XF,{children:(0,jsx_runtime.jsxs)("dfn",{"data-ref":"tooltip","data-color":color,className:classnames_default()(tooltip_Tooltip_module.tooltip,"select-none text-sm not-italic flex py-1 px-2 !max-w-64 rounded shadow-md bg-current"),ref:refs.setFloating,style:floatingStyles,...getFloatingProps(),children:[(0,jsx_runtime.jsx)("span",{className:classnames_default()("font-medium text-dimmed flex-1",(0,esm.Kg)(content)&&"whitespace-pre-wrap mixed-lang"),children:content}),copyEl,(0,jsx_runtime.jsx)(floating_ui_react.ie,{ref:arrowRef,context})]})})]})};try{Tooltip.displayName="Tooltip",Tooltip.__docgenInfo={description:"",displayName:"Tooltip",props:{open:{defaultValue:null,description:"force open",name:"open",required:!1,type:{name:"boolean"}},copyContent:{defaultValue:null,description:"show copy action, pass string as copy content",name:"copyContent",required:!1,type:{name:"string | boolean"}},disabled:{defaultValue:null,description:"",name:"disabled",required:!1,type:{name:"boolean"}},content:{defaultValue:null,description:"tooltip content",name:"content",required:!1,type:{name:"string | Element"}},color:{defaultValue:null,description:"tooltip color",name:"color",required:!1,type:{name:"enum",value:[{value:'"primary"'},{value:'"accent"'},{value:'"info"'},{value:'"danger"'},{value:'"success"'},{value:'"warning"'}]}},placement:{defaultValue:null,description:"tooltip placement",name:"placement",required:!1,type:{name:"enum",value:[{value:'"top-start"'},{value:'"top-end"'},{value:'"bottom-start"'},{value:'"bottom-end"'},{value:'"top"'},{value:'"bottom"'},{value:'"right"'},{value:'"left"'},{value:'"right-end"'},{value:'"right-start"'},{value:'"left-end"'},{value:'"left-start"'}]}},ref:{defaultValue:null,description:"",name:"ref",required:!1,type:{name:"Ref"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/overlays/tooltip/Tooltip.tsx#Tooltip"]={docgenInfo:Tooltip.__docgenInfo,name:"Tooltip",path:"packages/core/src/overlays/tooltip/Tooltip.tsx#Tooltip"})}catch(__react_docgen_typescript_loader_error){}},"./packages/core/src/types/icons.ts":(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{var CoreIcons;__webpack_require__.d(__webpack_exports__,{O:()=>CoreIcons}),function(CoreIcons){CoreIcons.chevronDown="M6.173 7.29l5.827 5.827 5.827-5.827 1.79 1.803-7.617 7.617-7.617-7.617 1.79-1.803z",CoreIcons.chevronLeft="M16.94 18.107l-6.107-6.107 6.107-6.12-1.88-1.88-8 8 8 8 1.88-1.893z",CoreIcons.chevronRight="M7.453 18.107l6.107-6.107-6.107-6.12 1.88-1.88 8 8-8 8-1.88-1.893z",CoreIcons.chevronUp="M6.171 16.705l5.829-5.816 5.829 5.816 1.791-1.791-7.619-7.619-7.619 7.619 1.791 1.791z",CoreIcons.chevronsDown="M17.959 3.295l1.831 1.831-7.79 7.79-7.79-7.79 1.831-1.831 5.959 5.946 5.959-5.946zM17.959 11.085l1.831 1.831-7.79 7.79-7.79-7.79 1.831-1.831 5.959 5.946 5.959-5.946z",CoreIcons.chevronsLeft="M20.94 5.88l-1.88-1.88-8 8 8 8 1.88-1.88-6.107-6.12 6.107-6.12zM12.94 5.88l-1.88-1.88-8 8 8 8 1.88-1.88-6.107-6.12 6.107-6.12z",CoreIcons.chevronsRight="M3.060 5.88l1.88-1.88 8 8-8 8-1.88-1.88 6.107-6.12-6.107-6.12zM11.060 5.88l1.88-1.88 8 8-8 8-1.88-1.88 6.107-6.12-6.107-6.12z",CoreIcons.chevronsUp="M6.041 20.705l-1.831-1.831 7.79-7.79 7.79 7.79-1.831 1.831-5.959-5.946-5.959 5.946zM6.041 12.915l-1.831-1.831 7.79-7.79 7.79 7.79-1.831 1.831-5.959-5.946-5.959 5.946z",CoreIcons.pageFirst="M20.273 18.12l-6.12-6.12 6.12-6.12-1.88-1.88-8 8 8 8 1.88-1.88zM3.727 4h2.667v16h-2.667v-16z",CoreIcons.pageLast="M3.727 5.88l6.12 6.12-6.12 6.12 1.88 1.88 8-8-8-8-1.88 1.88zM17.607 4h2.667v16h-2.667v-16z",CoreIcons.arrowDown="M18.293 11.293l-5.293 5.293v-11.586c0-0.552-0.448-1-1-1s-1 0.448-1 1v11.586l-5.293-5.293c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414l7 7c0.092 0.092 0.202 0.166 0.324 0.217 0.245 0.101 0.521 0.101 0.766 0 0.118-0.049 0.228-0.121 0.324-0.217l7-7c0.391-0.391 0.391-1.024 0-1.414s-1.024-0.391-1.414 0z",CoreIcons.arrowLeft="M12.707 18.293l-5.293-5.293h11.586c0.552 0 1-0.448 1-1s-0.448-1-1-1h-11.586l5.293-5.293c0.391-0.391 0.391-1.024 0-1.414s-1.024-0.391-1.414 0l-7 7c-0.096 0.096-0.168 0.206-0.217 0.324-0.051 0.122-0.076 0.253-0.076 0.383 0 0.256 0.098 0.512 0.293 0.707l7 7c0.391 0.391 1.024 0.391 1.414 0s0.391-1.024 0-1.414z",CoreIcons.arrowRight="M11.293 5.707l5.293 5.293h-11.586c-0.552 0-1 0.448-1 1s0.448 1 1 1h11.586l-5.293 5.293c-0.391 0.391-0.391 1.024 0 1.414s1.024 0.391 1.414 0l7-7c0.092-0.092 0.166-0.202 0.217-0.324 0.101-0.245 0.101-0.521 0-0.766-0.049-0.118-0.121-0.228-0.217-0.324l-7-7c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414z",CoreIcons.arrowUp="M5.707 12.707l5.293-5.293v11.586c0 0.552 0.448 1 1 1s1-0.448 1-1v-11.586l5.293 5.293c0.391 0.391 1.024 0.391 1.414 0s0.391-1.024 0-1.414l-7-7c-0.092-0.092-0.202-0.166-0.324-0.217s-0.253-0.076-0.383-0.076c-0.256 0-0.512 0.098-0.707 0.293l-7 7c-0.391 0.391-0.391 1.024 0 1.414s1.024 0.391 1.414 0z",CoreIcons.arrowExpand="M10,21V19H6.41L10.91,14.5L9.5,13.09L5,17.59V14H3V21H10M14.5,10.91L19,6.41V10H21V3H14V5H17.59L13.09,9.5L14.5,10.91Z",CoreIcons.arrowCollapse="M19.5,3.09L15,7.59V4H13V11H20V9H16.41L20.91,4.5L19.5,3.09M4,13V15H7.59L3.09,19.5L4.5,20.91L9,16.41V20H11V13H4Z",CoreIcons.close="M5.293 6.707l5.293 5.293-5.293 5.293c-0.391 0.391-0.391 1.024 0 1.414s1.024 0.391 1.414 0l5.293-5.293 5.293 5.293c0.391 0.391 1.024 0.391 1.414 0s0.391-1.024 0-1.414l-5.293-5.293 5.293-5.293c0.391-0.391 0.391-1.024 0-1.414s-1.024-0.391-1.414 0l-5.293 5.293-5.293-5.293c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414z",CoreIcons.closeAll="M21.707 17.293l-5.293-5.293 5.293-5.293c0.391-0.391 0.391-1.024 0-1.414s-1.024-0.391-1.414 0l-6 6c-0.391 0.391-0.391 1.024 0 1.414l6 6c0.391 0.391 1.024 0.391 1.414 0s0.391-1.024 0-1.414zM2.293 6.707l5.293 5.293-5.293 5.293c-0.391 0.391-0.391 1.024 0 1.414s1.024 0.391 1.414 0l5.293-5.293 5.293 5.293c0.391 0.391 1.024 0.391 1.414 0s0.391-1.024 0-1.414l-5.293-5.293 5.293-5.293c0.391-0.391 0.391-1.024 0-1.414s-1.024-0.391-1.414 0l-5.293 5.293-5.293-5.293c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414z",CoreIcons.maximize="M8 2h-3c-0.828 0-1.58 0.337-2.121 0.879s-0.879 1.293-0.879 2.121v3c0 0.552 0.448 1 1 1s1-0.448 1-1v-3c0-0.276 0.111-0.525 0.293-0.707s0.431-0.293 0.707-0.293h3c0.552 0 1-0.448 1-1s-0.448-1-1-1zM22 8v-3c0-0.828-0.337-1.58-0.879-2.121s-1.293-0.879-2.121-0.879h-3c-0.552 0-1 0.448-1 1s0.448 1 1 1h3c0.276 0 0.525 0.111 0.707 0.293s0.293 0.431 0.293 0.707v3c0 0.552 0.448 1 1 1s1-0.448 1-1zM16 22h3c0.828 0 1.58-0.337 2.121-0.879s0.879-1.293 0.879-2.121v-3c0-0.552-0.448-1-1-1s-1 0.448-1 1v3c0 0.276-0.111 0.525-0.293 0.707s-0.431 0.293-0.707 0.293h-3c-0.552 0-1 0.448-1 1s0.448 1 1 1zM2 16v3c0 0.828 0.337 1.58 0.879 2.121s1.293 0.879 2.121 0.879h3c0.552 0 1-0.448 1-1s-0.448-1-1-1h-3c-0.276 0-0.525-0.111-0.707-0.293s-0.293-0.431-0.293-0.707v-3c0-0.552-0.448-1-1-1s-1 0.448-1 1z",CoreIcons.minimize="M7 3v3c0 0.276-0.111 0.525-0.293 0.707s-0.431 0.293-0.707 0.293h-3c-0.552 0-1 0.448-1 1s0.448 1 1 1h3c0.828 0 1.58-0.337 2.121-0.879s0.879-1.293 0.879-2.121v-3c0-0.552-0.448-1-1-1s-1 0.448-1 1zM21 7h-3c-0.276 0-0.525-0.111-0.707-0.293s-0.293-0.431-0.293-0.707v-3c0-0.552-0.448-1-1-1s-1 0.448-1 1v3c0 0.828 0.337 1.58 0.879 2.121s1.293 0.879 2.121 0.879h3c0.552 0 1-0.448 1-1s-0.448-1-1-1zM17 21v-3c0-0.276 0.111-0.525 0.293-0.707s0.431-0.293 0.707-0.293h3c0.552 0 1-0.448 1-1s-0.448-1-1-1h-3c-0.828 0-1.58 0.337-2.121 0.879s-0.879 1.293-0.879 2.121v3c0 0.552 0.448 1 1 1s1-0.448 1-1zM3 17h3c0.276 0 0.525 0.111 0.707 0.293s0.293 0.431 0.293 0.707v3c0 0.552 0.448 1 1 1s1-0.448 1-1v-3c0-0.828-0.337-1.58-0.879-2.121s-1.293-0.879-2.121-0.879h-3c-0.552 0-1 0.448-1 1s0.448 1 1 1z",CoreIcons.caretDown="M7,10L12,15L17,10H7Z",CoreIcons.caretLeft="M14.016 6.984v10.031l-5.016-5.016z",CoreIcons.caretRight="M9.984 17.016v-10.031l5.016 5.016z",CoreIcons.caretUp="M7,15L12,10L17,15H7Z",CoreIcons.expand="M5 2c-0.828 0-1.58 0.337-2.121 0.879s-0.879 1.293-0.879 2.121v14c0 0.828 0.337 1.58 0.879 2.121s1.293 0.879 2.121 0.879h14c0.828 0 1.58-0.337 2.121-0.879s0.879-1.293 0.879-2.121v-14c0-0.828-0.337-1.58-0.879-2.121s-1.293-0.879-2.121-0.879zM5 4h14c0.276 0 0.525 0.111 0.707 0.293s0.293 0.431 0.293 0.707v14c0 0.276-0.111 0.525-0.293 0.707s-0.431 0.293-0.707 0.293h-14c-0.276 0-0.525-0.111-0.707-0.293s-0.293-0.431-0.293-0.707v-14c0-0.276 0.111-0.525 0.293-0.707s0.431-0.293 0.707-0.293zM8 13h3v3c0 0.552 0.448 1 1 1s1-0.448 1-1v-3h3c0.552 0 1-0.448 1-1s-0.448-1-1-1h-3v-3c0-0.552-0.448-1-1-1s-1 0.448-1 1v3h-3c-0.552 0-1 0.448-1 1s0.448 1 1 1z",CoreIcons.collapse="M5 2c-0.828 0-1.58 0.337-2.121 0.879s-0.879 1.293-0.879 2.121v14c0 0.828 0.337 1.58 0.879 2.121s1.293 0.879 2.121 0.879h14c0.828 0 1.58-0.337 2.121-0.879s0.879-1.293 0.879-2.121v-14c0-0.828-0.337-1.58-0.879-2.121s-1.293-0.879-2.121-0.879zM5 4h14c0.276 0 0.525 0.111 0.707 0.293s0.293 0.431 0.293 0.707v14c0 0.276-0.111 0.525-0.293 0.707s-0.431 0.293-0.707 0.293h-14c-0.276 0-0.525-0.111-0.707-0.293s-0.293-0.431-0.293-0.707v-14c0-0.276 0.111-0.525 0.293-0.707s0.431-0.293 0.707-0.293zM8 13h8c0.552 0 1-0.448 1-1s-0.448-1-1-1h-8c-0.552 0-1 0.448-1 1s0.448 1 1 1z",CoreIcons.expandActive="M17,13H13V17H11V13H7V11H11V7H13V11H17M19,3H5C3.89,3 3,3.89 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V5C21,3.89 20.1,3 19,3Z",CoreIcons.collapseActive="M17,13H7V11H17M19,3H5C3.89,3 3,3.89 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V5C21,3.89 20.1,3 19,3Z",CoreIcons.expandAll="M5.293 16.707l6 6c0.391 0.391 1.024 0.391 1.414 0l6-6c0.391-0.391 0.391-1.024 0-1.414s-1.024-0.391-1.414 0l-5.293 5.293-5.293-5.293c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414zM18.707 7.293l-6-6c-0.391-0.391-1.024-0.391-1.414 0l-6 6c-0.391 0.391-0.391 1.024 0 1.414s1.024 0.391 1.414 0l5.293-5.293 5.293 5.293c0.391 0.391 1.024 0.391 1.414 0s0.391-1.024 0-1.414z",CoreIcons.colapseAll="M18.707 21.293l-6-6c-0.391-0.391-1.024-0.391-1.414 0l-6 6c-0.391 0.391-0.391 1.024 0 1.414s1.024 0.391 1.414 0l5.293-5.293 5.293 5.293c0.391 0.391 1.024 0.391 1.414 0s0.391-1.024 0-1.414zM5.293 2.707l6 6c0.391 0.391 1.024 0.391 1.414 0l6-6c0.391-0.391 0.391-1.024 0-1.414s-1.024-0.391-1.414 0l-5.293 5.293-5.293-5.293c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414z",CoreIcons.folderClosed="M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z",CoreIcons.folderOpen="M6.1,10L4,18V8H21A2,2 0 0,0 19,6H12L10,4H4A2,2 0 0,0 2,6V18A2,2 0 0,0 4,20H19C19.9,20 20.7,19.4 20.9,18.5L23.2,10H6.1M19,18H6L7.6,12H20.6L19,18Z",CoreIcons.zoomIn="M16.041 15.856c-0.034 0.026-0.067 0.055-0.099 0.087s-0.060 0.064-0.087 0.099c-1.258 1.213-2.969 1.958-4.855 1.958-1.933 0-3.682-0.782-4.95-2.050s-2.050-3.017-2.050-4.95 0.782-3.682 2.050-4.95 3.017-2.050 4.95-2.050 3.682 0.782 4.95 2.050 2.050 3.017 2.050 4.95c0 1.886-0.745 3.597-1.959 4.856zM21.707 20.293l-3.675-3.675c1.231-1.54 1.968-3.493 1.968-5.618 0-2.485-1.008-4.736-2.636-6.364s-3.879-2.636-6.364-2.636-4.736 1.008-6.364 2.636-2.636 3.879-2.636 6.364 1.008 4.736 2.636 6.364 3.879 2.636 6.364 2.636c2.125 0 4.078-0.737 5.618-1.968l3.675 3.675c0.391 0.391 1.024 0.391 1.414 0s0.391-1.024 0-1.414zM8 12h2v2c0 0.552 0.448 1 1 1s1-0.448 1-1v-2h2c0.552 0 1-0.448 1-1s-0.448-1-1-1h-2v-2c0-0.552-0.448-1-1-1s-1 0.448-1 1v2h-2c-0.552 0-1 0.448-1 1s0.448 1 1 1z",CoreIcons.zoomOut="M16.041 15.856c-0.034 0.026-0.067 0.055-0.099 0.087s-0.060 0.064-0.087 0.099c-1.258 1.213-2.969 1.958-4.855 1.958-1.933 0-3.682-0.782-4.95-2.050s-2.050-3.017-2.050-4.95 0.782-3.682 2.050-4.95 3.017-2.050 4.95-2.050 3.682 0.782 4.95 2.050 2.050 3.017 2.050 4.95c0 1.886-0.745 3.597-1.959 4.856zM21.707 20.293l-3.675-3.675c1.231-1.54 1.968-3.493 1.968-5.618 0-2.485-1.008-4.736-2.636-6.364s-3.879-2.636-6.364-2.636-4.736 1.008-6.364 2.636-2.636 3.879-2.636 6.364 1.008 4.736 2.636 6.364 3.879 2.636 6.364 2.636c2.125 0 4.078-0.737 5.618-1.968l3.675 3.675c0.391 0.391 1.024 0.391 1.414 0s0.391-1.024 0-1.414zM8 12h6c0.552 0 1-0.448 1-1s-0.448-1-1-1h-6c-0.552 0-1 0.448-1 1s0.448 1 1 1z",CoreIcons.sortDesc="M19 17H22L18 21L14 17H17V3H19M2 17H12V19H2M6 5V7H2V5M2 11H9V13H2V11Z",CoreIcons.sortAsc="M19 7H22L18 3L14 7H17V21H19M2 17H12V19H2M6 5V7H2V5M2 11H9V13H2V11Z",CoreIcons.refresh="M19.547 14.667c-0.736 2.083-2.245 3.67-4.094 4.553s-4.031 1.061-6.114 0.325-3.67-2.245-4.553-4.094-1.061-4.031-0.325-6.114 2.245-3.67 4.094-4.553 4.031-1.061 6.114-0.325c1.188 0.42 2.209 1.088 2.987 1.882l2.824 2.659h-3.48c-0.552 0-1 0.448-1 1s0.448 1 1 1h5.997c0.004 0 0.009 0 0.013 0 0.137-0.001 0.267-0.030 0.386-0.082 0.119-0.051 0.229-0.126 0.324-0.225 0.012-0.012 0.023-0.025 0.034-0.038 0.076-0.087 0.134-0.184 0.175-0.287s0.065-0.213 0.069-0.328c0.002-0.014 0.002-0.028 0.002-0.042v-5.998c0-0.552-0.448-1-1-1s-1 0.448-1 1v3.685l-2.916-2.745c-0.993-1.012-2.274-1.846-3.748-2.366-2.604-0.921-5.336-0.698-7.644 0.405s-4.197 3.088-5.117 5.692-0.696 5.335 0.406 7.643 3.088 4.197 5.692 5.117 5.335 0.697 7.643-0.406 4.197-3.088 5.117-5.692c0.184-0.521-0.089-1.092-0.61-1.276s-1.092 0.089-1.276 0.61z",CoreIcons.search="M16.041 15.856c-0.034 0.026-0.067 0.055-0.099 0.087s-0.060 0.064-0.087 0.099c-1.258 1.213-2.969 1.958-4.855 1.958-1.933 0-3.682-0.782-4.95-2.050s-2.050-3.017-2.050-4.95 0.782-3.682 2.050-4.95 3.017-2.050 4.95-2.050 3.682 0.782 4.95 2.050 2.050 3.017 2.050 4.95c0 1.886-0.745 3.597-1.959 4.856zM21.707 20.293l-3.675-3.675c1.231-1.54 1.968-3.493 1.968-5.618 0-2.485-1.008-4.736-2.636-6.364s-3.879-2.636-6.364-2.636-4.736 1.008-6.364 2.636-2.636 3.879-2.636 6.364 1.008 4.736 2.636 6.364 3.879 2.636 6.364 2.636c2.125 0 4.078-0.737 5.618-1.968l3.675 3.675c0.391 0.391 1.024 0.391 1.414 0s0.391-1.024 0-1.414z",CoreIcons.filter="M6,13H18V11H6M3,6V8H21V6M10,18H14V16H10V18Z",CoreIcons.funnel="M19.845 4l-6.609 7.814c-0.147 0.173-0.236 0.399-0.236 0.646v6.922l-2-1v-5.922c0.001-0.227-0.077-0.457-0.236-0.646l-6.609-7.814zM22 2h-20c-0.552 0-1 0.448-1 1 0 0.247 0.089 0.473 0.236 0.646l7.764 9.18v6.174c0 0.389 0.222 0.727 0.553 0.894l4 2c0.494 0.247 1.095 0.047 1.342-0.447 0.072-0.146 0.106-0.301 0.105-0.447v-8.174l7.764-9.18c0.357-0.422 0.304-1.053-0.118-1.409-0.189-0.16-0.419-0.238-0.646-0.237z",CoreIcons.ellipsis="M14 12c0-0.552-0.225-1.053-0.586-1.414s-0.862-0.586-1.414-0.586-1.053 0.225-1.414 0.586-0.586 0.862-0.586 1.414 0.225 1.053 0.586 1.414 0.862 0.586 1.414 0.586 1.053-0.225 1.414-0.586 0.586-0.862 0.586-1.414zM14 5c0-0.552-0.225-1.053-0.586-1.414s-0.862-0.586-1.414-0.586-1.053 0.225-1.414 0.586-0.586 0.862-0.586 1.414 0.225 1.053 0.586 1.414 0.862 0.586 1.414 0.586 1.053-0.225 1.414-0.586 0.586-0.862 0.586-1.414zM14 19c0-0.552-0.225-1.053-0.586-1.414s-0.862-0.586-1.414-0.586-1.053 0.225-1.414 0.586-0.586 0.862-0.586 1.414 0.225 1.053 0.586 1.414 0.862 0.586 1.414 0.586 1.053-0.225 1.414-0.586 0.586-0.862 0.586-1.414z",CoreIcons.funnelPlus="M15 17H18V14H20V17H23V19H20V22H18V19H15V17M13 19.88C13.04 20.18 12.94 20.5 12.72 20.71C12.32 21.1 11.69 21.1 11.3 20.71L7.29 16.7C7.06 16.47 6.96 16.16 7 15.87V10.75L2.21 4.62C1.87 4.19 1.95 3.56 2.38 3.22C2.57 3.08 2.78 3 3 3V3H17V3C17.22 3 17.43 3.08 17.62 3.22C18.05 3.56 18.13 4.19 17.79 4.62L13 10.75V19.88M5.04 5L9 10.07V15.58L11 17.58V10.05L14.96 5H5.04Z",CoreIcons.funnelRemove="M14.73,20.83L17.58,18L14.73,15.17L16.15,13.76L19,16.57L21.8,13.76L23.22,15.17L20.41,18L23.22,20.83L21.8,22.24L19,19.4L16.15,22.24L14.73,20.83M13,19.88C13.04,20.18 12.94,20.5 12.71,20.71C12.32,21.1 11.69,21.1 11.3,20.71L7.29,16.7C7.06,16.47 6.96,16.16 7,15.87V10.75L2.21,4.62C1.87,4.19 1.95,3.56 2.38,3.22C2.57,3.08 2.78,3 3,3V3H17V3C17.22,3 17.43,3.08 17.62,3.22C18.05,3.56 18.13,4.19 17.79,4.62L13,10.75V19.88M5.04,5L9,10.06V15.58L11,17.58V10.05L14.96,5H5.04Z",CoreIcons.funnelMinus="M15 17H23V19H15V17M13 19.88C13.04 20.18 12.94 20.5 12.72 20.71C12.32 21.1 11.69 21.1 11.3 20.71L7.29 16.7C7.06 16.47 6.96 16.16 7 15.87V10.75L2.21 4.62C1.87 4.19 1.95 3.56 2.38 3.22C2.57 3.08 2.78 3 3 3V3H17V3C17.22 3 17.43 3.08 17.62 3.22C18.05 3.56 18.13 4.19 17.79 4.62L13 10.75V19.88M5.04 5L9 10.07V15.58L11 17.58V10.05L14.96 5H5.04Z",CoreIcons.cut="M7.378 16.551c0.011 0.012 0.023 0.025 0.035 0.036s0.024 0.023 0.036 0.035c0.343 0.359 0.551 0.843 0.551 1.378 0 0.553-0.223 1.051-0.586 1.414s-0.861 0.586-1.414 0.586-1.051-0.223-1.414-0.586-0.586-0.861-0.586-1.414 0.223-1.051 0.586-1.414 0.861-0.586 1.414-0.586c0.535 0 1.019 0.208 1.378 0.551zM13.764 15.188l5.53 5.52c0.391 0.39 1.024 0.39 1.414-0.001s0.39-1.024-0.001-1.414l-5.53-5.52c-0.391-0.39-1.024-0.39-1.414 0.001s-0.39 1.024 0.001 1.414zM7.449 7.378c-0.012 0.011-0.024 0.023-0.036 0.035s-0.024 0.024-0.035 0.036c-0.359 0.343-0.843 0.551-1.378 0.551-0.553 0-1.051-0.223-1.414-0.586s-0.586-0.861-0.586-1.414 0.223-1.051 0.586-1.414 0.861-0.586 1.414-0.586 1.051 0.223 1.414 0.586 0.586 0.861 0.586 1.414c0 0.535-0.208 1.019-0.551 1.378zM8.032 9.446l2.554 2.554-2.554 2.554c-0.596-0.352-1.291-0.554-2.032-0.554-1.104 0-2.106 0.449-2.828 1.172s-1.172 1.724-1.172 2.828 0.449 2.106 1.172 2.828 1.724 1.172 2.828 1.172 2.106-0.449 2.828-1.172 1.172-1.724 1.172-2.828c0-0.741-0.202-1.436-0.554-2.032l11.261-11.261c0.391-0.391 0.391-1.024 0-1.414s-1.024-0.391-1.414 0l-7.293 7.293-2.554-2.554c0.352-0.596 0.554-1.291 0.554-2.032 0-1.104-0.449-2.106-1.172-2.828s-1.724-1.172-2.828-1.172-2.106 0.449-2.828 1.172-1.172 1.724-1.172 2.828 0.449 2.106 1.172 2.828 1.724 1.172 2.828 1.172c0.741 0 1.436-0.202 2.032-0.554z",CoreIcons.copy="M11 8c-0.828 0-1.58 0.337-2.121 0.879s-0.879 1.293-0.879 2.121v9c0 0.828 0.337 1.58 0.879 2.121s1.293 0.879 2.121 0.879h9c0.828 0 1.58-0.337 2.121-0.879s0.879-1.293 0.879-2.121v-9c0-0.828-0.337-1.58-0.879-2.121s-1.293-0.879-2.121-0.879zM11 10h9c0.276 0 0.525 0.111 0.707 0.293s0.293 0.431 0.293 0.707v9c0 0.276-0.111 0.525-0.293 0.707s-0.431 0.293-0.707 0.293h-9c-0.276 0-0.525-0.111-0.707-0.293s-0.293-0.431-0.293-0.707v-9c0-0.276 0.111-0.525 0.293-0.707s0.431-0.293 0.707-0.293zM5 14h-1c-0.276 0-0.525-0.111-0.707-0.293s-0.293-0.431-0.293-0.707v-9c0-0.276 0.111-0.525 0.293-0.707s0.431-0.293 0.707-0.293h9c0.276 0 0.525 0.111 0.707 0.293s0.293 0.431 0.293 0.707v1c0 0.552 0.448 1 1 1s1-0.448 1-1v-1c0-0.828-0.337-1.58-0.879-2.121s-1.293-0.879-2.121-0.879h-9c-0.828 0-1.58 0.337-2.121 0.879s-0.879 1.293-0.879 2.121v9c0 0.828 0.337 1.58 0.879 2.121s1.293 0.879 2.121 0.879h1c0.552 0 1-0.448 1-1s-0.448-1-1-1z",CoreIcons.clipboard="M7 5c0 0.552 0.225 1.053 0.586 1.414s0.862 0.586 1.414 0.586h6c0.552 0 1.053-0.225 1.414-0.586s0.586-0.862 0.586-1.414h1c0.276 0 0.525 0.111 0.707 0.293s0.293 0.431 0.293 0.707v14c0 0.276-0.111 0.525-0.293 0.707s-0.431 0.293-0.707 0.293h-12c-0.276 0-0.525-0.111-0.707-0.293s-0.293-0.431-0.293-0.707v-14c0-0.276 0.111-0.525 0.293-0.707s0.431-0.293 0.707-0.293zM9 1c-0.552 0-1.053 0.225-1.414 0.586s-0.586 0.862-0.586 1.414h-1c-0.828 0-1.58 0.337-2.121 0.879s-0.879 1.293-0.879 2.121v14c0 0.828 0.337 1.58 0.879 2.121s1.293 0.879 2.121 0.879h12c0.828 0 1.58-0.337 2.121-0.879s0.879-1.293 0.879-2.121v-14c0-0.828-0.337-1.58-0.879-2.121s-1.293-0.879-2.121-0.879h-1c0-0.552-0.225-1.053-0.586-1.414s-0.862-0.586-1.414-0.586zM9 3h6v2h-6z",CoreIcons.download="M20 15v4c0 0.276-0.111 0.525-0.293 0.707s-0.431 0.293-0.707 0.293h-14c-0.276 0-0.525-0.111-0.707-0.293s-0.293-0.431-0.293-0.707v-4c0-0.552-0.448-1-1-1s-1 0.448-1 1v4c0 0.828 0.337 1.58 0.879 2.121s1.293 0.879 2.121 0.879h14c0.828 0 1.58-0.337 2.121-0.879s0.879-1.293 0.879-2.121v-4c0-0.552-0.448-1-1-1s-1 0.448-1 1zM13 12.586v-9.586c0-0.552-0.448-1-1-1s-1 0.448-1 1v9.586l-3.293-3.293c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414l5 5c0.092 0.092 0.202 0.166 0.324 0.217s0.253 0.076 0.383 0.076c0.256 0 0.512-0.098 0.707-0.293l5-5c0.391-0.391 0.391-1.024 0-1.414s-1.024-0.391-1.414 0z",CoreIcons.upload="M20 15v4c0 0.276-0.111 0.525-0.293 0.707s-0.431 0.293-0.707 0.293h-14c-0.276 0-0.525-0.111-0.707-0.293s-0.293-0.431-0.293-0.707v-4c0-0.552-0.448-1-1-1s-1 0.448-1 1v4c0 0.828 0.337 1.58 0.879 2.121s1.293 0.879 2.121 0.879h14c0.828 0 1.58-0.337 2.121-0.879s0.879-1.293 0.879-2.121v-4c0-0.552-0.448-1-1-1s-1 0.448-1 1zM11 5.414v9.586c0 0.552 0.448 1 1 1s1-0.448 1-1v-9.586l3.293 3.293c0.391 0.391 1.024 0.391 1.414 0s0.391-1.024 0-1.414l-5-5c-0.092-0.092-0.202-0.166-0.324-0.217-0.245-0.101-0.521-0.101-0.766 0-0.118 0.049-0.228 0.121-0.324 0.217l-5 5c-0.391 0.391-0.391 1.024 0 1.414s1.024 0.391 1.414 0z",CoreIcons.external="M17 13v6c0 0.276-0.111 0.525-0.293 0.707s-0.431 0.293-0.707 0.293h-11c-0.276 0-0.525-0.111-0.707-0.293s-0.293-0.431-0.293-0.707v-11c0-0.276 0.111-0.525 0.293-0.707s0.431-0.293 0.707-0.293h6c0.552 0 1-0.448 1-1s-0.448-1-1-1h-6c-0.828 0-1.58 0.337-2.121 0.879s-0.879 1.293-0.879 2.121v11c0 0.828 0.337 1.58 0.879 2.121s1.293 0.879 2.121 0.879h11c0.828 0 1.58-0.337 2.121-0.879s0.879-1.293 0.879-2.121v-6c0-0.552-0.448-1-1-1s-1 0.448-1 1zM10.707 14.707l9.293-9.293v3.586c0 0.552 0.448 1 1 1s1-0.448 1-1v-6c0-0.136-0.027-0.265-0.076-0.383s-0.121-0.228-0.216-0.323c-0.001-0.001-0.001-0.001-0.002-0.002-0.092-0.092-0.202-0.166-0.323-0.216-0.118-0.049-0.247-0.076-0.383-0.076h-6c-0.552 0-1 0.448-1 1s0.448 1 1 1h3.586l-9.293 9.293c-0.391 0.391-0.391 1.024 0 1.414s1.024 0.391 1.414 0z",CoreIcons.exporter="M12,1L8,5H11V14H13V5H16M18,23H6C4.89,23 4,22.1 4,21V9A2,2 0 0,1 6,7H9V9H6V21H18V9H15V7H18A2,2 0 0,1 20,9V21A2,2 0 0,1 18,23Z",CoreIcons.dragHandle="M9,3H11V5H9V3M13,3H15V5H13V3M9,7H11V9H9V7M13,7H15V9H13V7M9,11H11V13H9V11M13,11H15V13H13V11M9,15H11V17H9V15M13,15H15V17H13V15M9,19H11V21H9V19M13,19H15V21H13V19Z",CoreIcons.calendar="M7 2v1h-2c-0.828 0-1.58 0.337-2.121 0.879s-0.879 1.293-0.879 2.121v14c0 0.828 0.337 1.58 0.879 2.121s1.293 0.879 2.121 0.879h14c0.828 0 1.58-0.337 2.121-0.879s0.879-1.293 0.879-2.121v-14c0-0.828-0.337-1.58-0.879-2.121s-1.293-0.879-2.121-0.879h-2v-1c0-0.552-0.448-1-1-1s-1 0.448-1 1v1h-6v-1c0-0.552-0.448-1-1-1s-1 0.448-1 1zM20 9h-16v-3c0-0.276 0.111-0.525 0.293-0.707s0.431-0.293 0.707-0.293h2v1c0 0.552 0.448 1 1 1s1-0.448 1-1v-1h6v1c0 0.552 0.448 1 1 1s1-0.448 1-1v-1h2c0.276 0 0.525 0.111 0.707 0.293s0.293 0.431 0.293 0.707zM4 11h16v9c0 0.276-0.111 0.525-0.293 0.707s-0.431 0.293-0.707 0.293h-14c-0.276 0-0.525-0.111-0.707-0.293s-0.293-0.431-0.293-0.707z",CoreIcons.calendarHijri="M2.572 22.285h18.857v-13.715h-18.857v13.715zM7.715 6v-3.857c0-0.241-0.188-0.428-0.428-0.428h-0.857c-0.241 0-0.428 0.188-0.428 0.428v3.857c0 0.241 0.188 0.428 0.428 0.428h0.857c0.241 0 0.428-0.188 0.428-0.428zM18 6v-3.857c0-0.241-0.188-0.428-0.428-0.428h-0.857c-0.241 0-0.428 0.188-0.428 0.428v3.857c0 0.241 0.188 0.428 0.428 0.428h0.857c0.241 0 0.428-0.188 0.428-0.428zM23.143 5.143v17.143c0 0.938-0.777 1.715-1.715 1.715h-18.857c-0.938 0-1.715-0.777-1.715-1.715v-17.143c0-0.938 0.777-1.714 1.715-1.714h1.714v-1.285c0-1.178 0.965-2.143 2.143-2.143h0.857c1.178 0 2.143 0.965 2.143 2.143v1.285h5.143v-1.285c0-1.178 0.965-2.143 2.143-2.143h0.857c1.178 0 2.143 0.965 2.143 2.143v1.285h1.715c0.938 0 1.715 0.777 1.715 1.714zM13.389 19.885c-2.461 0-4.48-2.033-4.48-4.51 0-2.495 1.982-4.51 4.53-4.51 0.873 0 1.747 0.352 1.747 0.352-0.994-0.699-2.028-1.047-3.102-1.047-1.459 0-2.699 0.505-3.719 1.516s-1.53 2.24-1.53 3.69c0 1.44 0.508 2.667 1.523 3.683s2.243 1.523 3.683 1.523c1.861 0 3.001-0.961 3.145-1.055 0 0-0.923 0.359-1.796 0.359zM14.425 15.663l-0.465 1.443 1.226-0.887 1.219 0.887-0.465-1.443 1.226-0.882h-1.515l-0.465-1.44-0.472 1.44h-1.515l1.226 0.882z",CoreIcons.clock="M23 12c0-3.037-1.232-5.789-3.222-7.778s-4.741-3.222-7.778-3.222-5.789 1.232-7.778 3.222-3.222 4.741-3.222 7.778 1.232 5.789 3.222 7.778 4.741 3.222 7.778 3.222 5.789-1.232 7.778-3.222 3.222-4.741 3.222-7.778zM21 12c0 2.486-1.006 4.734-2.636 6.364s-3.878 2.636-6.364 2.636-4.734-1.006-6.364-2.636-2.636-3.878-2.636-6.364 1.006-4.734 2.636-6.364 3.878-2.636 6.364-2.636 4.734 1.006 6.364 2.636 2.636 3.878 2.636 6.364zM11 6v6c0 0.389 0.222 0.727 0.553 0.894l4 2c0.494 0.247 1.095 0.047 1.342-0.447s0.047-1.095-0.447-1.342l-3.448-1.723v-5.382c0-0.552-0.448-1-1-1s-1 0.448-1 1z",CoreIcons.pin="M16,12V4H17V2H7V4H8V12L6,14V16H11.2V22H12.8V16H18V14L16,12M8.8,14L10,12.8V4H14V12.8L15.2,14H8.8Z",CoreIcons.eye="M0.106 11.553c-0.136 0.274-0.146 0.603 0 0.894 0 0 0.396 0.789 1.12 1.843 0.451 0.656 1.038 1.432 1.757 2.218 0.894 0.979 2.004 1.987 3.319 2.8 1.595 0.986 3.506 1.692 5.698 1.692s4.103-0.706 5.698-1.692c1.315-0.813 2.425-1.821 3.319-2.8 0.718-0.786 1.306-1.562 1.757-2.218 0.724-1.054 1.12-1.843 1.12-1.843 0.136-0.274 0.146-0.603 0-0.894 0 0-0.396-0.789-1.12-1.843-0.451-0.656-1.038-1.432-1.757-2.218-0.894-0.979-2.004-1.987-3.319-2.8-1.595-0.986-3.506-1.692-5.698-1.692s-4.103 0.706-5.698 1.692c-1.315 0.813-2.425 1.821-3.319 2.8-0.719 0.786-1.306 1.561-1.757 2.218-0.724 1.054-1.12 1.843-1.12 1.843zM2.14 12c0.163-0.281 0.407-0.681 0.734-1.158 0.41-0.596 0.94-1.296 1.585-2.001 0.805-0.881 1.775-1.756 2.894-2.448 1.35-0.834 2.901-1.393 4.647-1.393s3.297 0.559 4.646 1.393c1.119 0.692 2.089 1.567 2.894 2.448 0.644 0.705 1.175 1.405 1.585 2.001 0.328 0.477 0.572 0.876 0.734 1.158-0.163 0.281-0.407 0.681-0.734 1.158-0.41 0.596-0.94 1.296-1.585 2.001-0.805 0.881-1.775 1.756-2.894 2.448-1.349 0.834-2.9 1.393-4.646 1.393s-3.297-0.559-4.646-1.393c-1.119-0.692-2.089-1.567-2.894-2.448-0.644-0.705-1.175-1.405-1.585-2.001-0.328-0.477-0.572-0.877-0.735-1.158zM16 12c0-1.104-0.449-2.106-1.172-2.828s-1.724-1.172-2.828-1.172-2.106 0.449-2.828 1.172-1.172 1.724-1.172 2.828 0.449 2.106 1.172 2.828 1.724 1.172 2.828 1.172 2.106-0.449 2.828-1.172 1.172-1.724 1.172-2.828zM14 12c0 0.553-0.223 1.051-0.586 1.414s-0.861 0.586-1.414 0.586-1.051-0.223-1.414-0.586-0.586-0.861-0.586-1.414 0.223-1.051 0.586-1.414 0.861-0.586 1.414-0.586 1.051 0.223 1.414 0.586 0.586 0.861 0.586 1.414z",CoreIcons.eyeOff="M10.128 5.214c0.651-0.152 1.296-0.221 1.86-0.214 1.758 0 3.309 0.559 4.658 1.393 1.119 0.692 2.089 1.567 2.894 2.448 0.644 0.705 1.175 1.405 1.585 2.001 0.327 0.475 0.57 0.874 0.733 1.155-0.546 0.953-1.16 1.821-1.778 2.542-0.359 0.419-0.311 1.051 0.108 1.41s1.051 0.311 1.41-0.108c0.818-0.954 1.611-2.112 2.283-3.37 0.148-0.279 0.163-0.618 0.013-0.919 0 0-0.396-0.789-1.12-1.843-0.451-0.656-1.038-1.432-1.757-2.218-0.894-0.979-2.004-1.987-3.319-2.8-1.595-0.985-3.506-1.691-5.686-1.691-0.734-0.009-1.54 0.079-2.34 0.266-0.538 0.126-0.872 0.664-0.746 1.202s0.664 0.872 1.202 0.746zM10.027 11.442l2.531 2.531c-0.182 0.061-0.372 0.094-0.563 0.101-0.513 0.018-1.030-0.159-1.434-0.536s-0.617-0.88-0.635-1.393c-0.008-0.238 0.025-0.476 0.101-0.704zM5.983 7.397l2.553 2.553c-0.434 0.691-0.636 1.484-0.608 2.266 0.036 1.022 0.463 2.033 1.271 2.785s1.846 1.107 2.868 1.071c0.692-0.024 1.379-0.228 1.984-0.608l2.322 2.322c-1.378 0.799-2.895 1.196-4.384 1.214-1.734 0-3.285-0.559-4.634-1.393-1.119-0.692-2.089-1.567-2.894-2.448-0.644-0.705-1.175-1.405-1.585-2.001-0.326-0.475-0.57-0.873-0.732-1.154 1.050-1.822 2.376-3.379 3.841-4.607zM0.293 1.707l4.271 4.271c-1.731 1.479-3.269 3.358-4.445 5.549-0.148 0.279-0.164 0.619-0.013 0.92 0 0 0.396 0.789 1.12 1.843 0.451 0.656 1.038 1.432 1.757 2.218 0.894 0.979 2.004 1.987 3.319 2.8 1.595 0.986 3.506 1.692 5.71 1.692 1.993-0.024 4.019-0.601 5.815-1.759l4.466 4.466c0.391 0.391 1.024 0.391 1.414 0s0.391-1.024 0-1.414l-8.876-8.876c-0.002-0.002-0.005-0.005-0.007-0.007l-4.209-4.21c-0.008-0.007-0.016-0.016-0.024-0.024l-8.884-8.883c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414z",CoreIcons.invertDisable="M19 3H5C3.9 3 3 3.9 3 5V19C3 20.1 3.9 21 5 21H19C20.1 21 21 20.1 21 19V5C21 3.9 20.1 3 19 3M19 19H5V5H19V19M7 17V7H17",CoreIcons.invertExclude="M9,5C10.04,5 11.06,5.24 12,5.68C12.94,5.24 13.96,5 15,5A7,7 0 0,1 22,12A7,7 0 0,1 15,19C13.96,19 12.94,18.76 12,18.32C11.06,18.76 10.04,19 9,19A7,7 0 0,1 2,12A7,7 0 0,1 9,5M15,7L14,7.11C15.28,8.41 16,10.17 16,12C16,13.83 15.28,15.59 14,16.9L15,17A5,5 0 0,0 20,12A5,5 0 0,0 15,7M8.5,12C8.5,13.87 9.29,15.56 10.56,16.75L11.56,16.29C10.31,15.29 9.5,13.74 9.5,12C9.5,10.26 10.31,8.71 11.56,7.71L10.56,7.25C9.29,8.44 8.5,10.13 8.5,12Z",CoreIcons.lock="M5 12h14c0.276 0 0.525 0.111 0.707 0.293s0.293 0.431 0.293 0.707v7c0 0.276-0.111 0.525-0.293 0.707s-0.431 0.293-0.707 0.293h-14c-0.276 0-0.525-0.111-0.707-0.293s-0.293-0.431-0.293-0.707v-7c0-0.276 0.111-0.525 0.293-0.707s0.431-0.293 0.707-0.293zM18 10v-3c0-1.657-0.673-3.158-1.757-4.243s-2.586-1.757-4.243-1.757-3.158 0.673-4.243 1.757-1.757 2.586-1.757 4.243v3h-1c-0.828 0-1.58 0.337-2.121 0.879s-0.879 1.293-0.879 2.121v7c0 0.828 0.337 1.58 0.879 2.121s1.293 0.879 2.121 0.879h14c0.828 0 1.58-0.337 2.121-0.879s0.879-1.293 0.879-2.121v-7c0-0.828-0.337-1.58-0.879-2.121s-1.293-0.879-2.121-0.879zM8 10v-3c0-1.105 0.447-2.103 1.172-2.828s1.723-1.172 2.828-1.172 2.103 0.447 2.828 1.172 1.172 1.723 1.172 2.828v3z",CoreIcons.unlock="M5 12h14c0.276 0 0.525 0.111 0.707 0.293s0.293 0.431 0.293 0.707v7c0 0.276-0.111 0.525-0.293 0.707s-0.431 0.293-0.707 0.293h-14c-0.276 0-0.525-0.111-0.707-0.293s-0.293-0.431-0.293-0.707v-7c0-0.276 0.111-0.525 0.293-0.707s0.431-0.293 0.707-0.293zM8 10v-3c-0.001-1.106 0.445-2.105 1.169-2.831 0.723-0.724 1.719-1.172 2.821-1.174 1.030 0.003 1.948 0.378 2.652 1 0.638 0.565 1.097 1.332 1.28 2.209 0.113 0.541 0.642 0.888 1.183 0.775s0.888-0.642 0.775-1.183c-0.272-1.307-0.958-2.454-1.912-3.299-1.060-0.938-2.452-1.504-3.973-1.502-1.657 0.002-3.157 0.676-4.241 1.762s-1.756 2.587-1.754 4.243v3h-1c-0.828 0-1.58 0.337-2.121 0.879s-0.879 1.293-0.879 2.121v7c0 0.828 0.337 1.58 0.879 2.121s1.293 0.879 2.121 0.879h14c0.828 0 1.58-0.337 2.121-0.879s0.879-1.293 0.879-2.121v-7c0-0.828-0.337-1.58-0.879-2.121s-1.293-0.879-2.121-0.879z",CoreIcons.edit="M12 21h9c0.552 0 1-0.448 1-1s-0.448-1-1-1h-9c-0.552 0-1 0.448-1 1s0.448 1 1 1zM15.793 2.793l-12.5 12.5c-0.122 0.121-0.217 0.28-0.263 0.465l-1 4c-0.039 0.15-0.042 0.318 0 0.485 0.134 0.536 0.677 0.862 1.213 0.728l4-1c0.167-0.041 0.33-0.129 0.465-0.263l12.5-12.5c0.609-0.609 0.914-1.41 0.914-2.207s-0.305-1.598-0.914-2.207-1.411-0.915-2.208-0.915-1.598 0.305-2.207 0.914zM17.207 4.207c0.219-0.219 0.504-0.328 0.793-0.328s0.574 0.109 0.793 0.328 0.328 0.504 0.328 0.793-0.109 0.574-0.328 0.793l-12.304 12.304-2.115 0.529 0.529-2.115z",CoreIcons.console="M4.707 17.707l6-6c0.391-0.391 0.391-1.024 0-1.414l-6-6c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414l5.293 5.293-5.293 5.293c-0.391 0.391-0.391 1.024 0 1.414s1.024 0.391 1.414 0zM12 20h8c0.552 0 1-0.448 1-1s-0.448-1-1-1h-8c-0.552 0-1 0.448-1 1s0.448 1 1 1z",CoreIcons.backspace="M21 5c0.276 0 0.525 0.111 0.707 0.293s0.293 0.431 0.293 0.707v12c0 0.276-0.111 0.525-0.293 0.707s-0.431 0.293-0.707 0.293h-12.546l-6.125-7 6.125-7zM21 3h-13c-0.3 0-0.568 0.132-0.753 0.341l-7 8c-0.333 0.38-0.326 0.942 0 1.317l7 8c0.198 0.226 0.474 0.341 0.753 0.342h13c0.828 0 1.58-0.337 2.121-0.879s0.879-1.293 0.879-2.121v-12c0-0.828-0.337-1.58-0.879-2.121s-1.293-0.879-2.121-0.879zM11.293 9.707l2.293 2.293-2.293 2.293c-0.391 0.391-0.391 1.024 0 1.414s1.024 0.391 1.414 0l2.293-2.293 2.293 2.293c0.391 0.391 1.024 0.391 1.414 0s0.391-1.024 0-1.414l-2.293-2.293 2.293-2.293c0.391-0.391 0.391-1.024 0-1.414s-1.024-0.391-1.414 0l-2.293 2.293-2.293-2.293c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414z",CoreIcons.insert="M12,20C7.59,20 4,16.41 4,12C4,7.59 7.59,4 12,4C16.41,4 20,7.59 20,12C20,16.41 16.41,20 12,20M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2M13,7H11V11H7V13H11V17H13V13H17V11H13V7Z",CoreIcons.remove="M23 12c0-3.037-1.232-5.789-3.222-7.778s-4.741-3.222-7.778-3.222-5.789 1.232-7.778 3.222-3.222 4.741-3.222 7.778 1.232 5.789 3.222 7.778 4.741 3.222 7.778 3.222 5.789-1.232 7.778-3.222 3.222-4.741 3.222-7.778zM21 12c0 2.486-1.006 4.734-2.636 6.364s-3.878 2.636-6.364 2.636-4.734-1.006-6.364-2.636-2.636-3.878-2.636-6.364 1.006-4.734 2.636-6.364 3.878-2.636 6.364-2.636 4.734 1.006 6.364 2.636 2.636 3.878 2.636 6.364zM8 13h8c0.552 0 1-0.448 1-1s-0.448-1-1-1h-8c-0.552 0-1 0.448-1 1s0.448 1 1 1z",CoreIcons.trash="M18 7v13c0 0.276-0.111 0.525-0.293 0.707s-0.431 0.293-0.707 0.293h-10c-0.276 0-0.525-0.111-0.707-0.293s-0.293-0.431-0.293-0.707v-13zM17 5v-1c0-0.828-0.337-1.58-0.879-2.121s-1.293-0.879-2.121-0.879h-4c-0.828 0-1.58 0.337-2.121 0.879s-0.879 1.293-0.879 2.121v1h-4c-0.552 0-1 0.448-1 1s0.448 1 1 1h1v13c0 0.828 0.337 1.58 0.879 2.121s1.293 0.879 2.121 0.879h10c0.828 0 1.58-0.337 2.121-0.879s0.879-1.293 0.879-2.121v-13h1c0.552 0 1-0.448 1-1s-0.448-1-1-1zM9 5v-1c0-0.276 0.111-0.525 0.293-0.707s0.431-0.293 0.707-0.293h4c0.276 0 0.525 0.111 0.707 0.293s0.293 0.431 0.293 0.707v1zM9 11v6c0 0.552 0.448 1 1 1s1-0.448 1-1v-6c0-0.552-0.448-1-1-1s-1 0.448-1 1zM13 11v6c0 0.552 0.448 1 1 1s1-0.448 1-1v-6c0-0.552-0.448-1-1-1s-1 0.448-1 1z",CoreIcons.menu="M3 13h18c0.552 0 1-0.448 1-1s-0.448-1-1-1h-18c-0.552 0-1 0.448-1 1s0.448 1 1 1zM3 7h18c0.552 0 1-0.448 1-1s-0.448-1-1-1h-18c-0.552 0-1 0.448-1 1s0.448 1 1 1zM3 19h18c0.552 0 1-0.448 1-1s-0.448-1-1-1h-18c-0.552 0-1 0.448-1 1s0.448 1 1 1z",CoreIcons.config="M16 12c0-1.104-0.449-2.106-1.172-2.828s-1.724-1.172-2.828-1.172-2.106 0.449-2.828 1.172-1.172 1.724-1.172 2.828 0.449 2.106 1.172 2.828 1.724 1.172 2.828 1.172 2.106-0.449 2.828-1.172 1.172-1.724 1.172-2.828zM14 12c0 0.553-0.223 1.051-0.586 1.414s-0.861 0.586-1.414 0.586-1.051-0.223-1.414-0.586-0.586-0.861-0.586-1.414 0.223-1.051 0.586-1.414 0.861-0.586 1.414-0.586 1.051 0.223 1.414 0.586 0.586 0.861 0.586 1.414zM20.315 15.404c0.046-0.105 0.112-0.191 0.192-0.257 0.112-0.092 0.251-0.146 0.403-0.147h0.090c0.828 0 1.58-0.337 2.121-0.879s0.879-1.293 0.879-2.121-0.337-1.58-0.879-2.121-1.293-0.879-2.121-0.879h-0.159c-0.11-0.001-0.215-0.028-0.308-0.076-0.127-0.066-0.23-0.172-0.292-0.312-0.003-0.029-0.004-0.059-0.004-0.089-0.024-0.055-0.040-0.111-0.049-0.168 0.020-0.334 0.077-0.454 0.168-0.547l0.062-0.062c0.585-0.586 0.878-1.356 0.877-2.122s-0.294-1.536-0.881-2.122c-0.586-0.585-1.356-0.878-2.122-0.877s-1.536 0.294-2.12 0.879l-0.046 0.046c-0.083 0.080-0.183 0.136-0.288 0.166-0.14 0.039-0.291 0.032-0.438-0.033-0.101-0.044-0.187-0.11-0.253-0.19-0.092-0.112-0.146-0.251-0.147-0.403v-0.090c0-0.828-0.337-1.58-0.879-2.121s-1.293-0.879-2.121-0.879-1.58 0.337-2.121 0.879-0.879 1.293-0.879 2.121v0.159c-0.001 0.11-0.028 0.215-0.076 0.308-0.066 0.127-0.172 0.23-0.312 0.292-0.029 0.003-0.059 0.004-0.089 0.004-0.055 0.024-0.111 0.040-0.168 0.049-0.335-0.021-0.455-0.078-0.548-0.169l-0.062-0.062c-0.586-0.585-1.355-0.878-2.122-0.878s-1.535 0.294-2.122 0.882c-0.585 0.586-0.878 1.355-0.878 2.122s0.294 1.536 0.879 2.12l0.048 0.047c0.080 0.083 0.136 0.183 0.166 0.288 0.039 0.14 0.032 0.291-0.031 0.434-0.006 0.016-0.013 0.034-0.021 0.052-0.041 0.109-0.108 0.203-0.191 0.275-0.11 0.095-0.25 0.153-0.383 0.156h-0.090c-0.828 0-1.58 0.337-2.121 0.879s-0.879 1.294-0.879 2.122 0.337 1.58 0.879 2.121 1.293 0.879 2.121 0.879h0.159c0.11 0.001 0.215 0.028 0.308 0.076 0.128 0.067 0.233 0.174 0.296 0.321 0.024 0.055 0.040 0.111 0.049 0.168-0.020 0.334-0.077 0.454-0.168 0.547l-0.062 0.062c-0.585 0.586-0.878 1.356-0.877 2.122s0.294 1.536 0.881 2.122c0.586 0.585 1.356 0.878 2.122 0.877s1.536-0.294 2.12-0.879l0.047-0.048c0.083-0.080 0.183-0.136 0.288-0.166 0.14-0.039 0.291-0.032 0.434 0.031 0.016 0.006 0.034 0.013 0.052 0.021 0.109 0.041 0.203 0.108 0.275 0.191 0.095 0.11 0.153 0.25 0.156 0.383v0.092c0 0.828 0.337 1.58 0.879 2.121s1.293 0.879 2.121 0.879 1.58-0.337 2.121-0.879 0.879-1.293 0.879-2.121v-0.159c0.001-0.11 0.028-0.215 0.076-0.308 0.067-0.128 0.174-0.233 0.321-0.296 0.055-0.024 0.111-0.040 0.168-0.049 0.334 0.020 0.454 0.077 0.547 0.168l0.062 0.062c0.586 0.585 1.356 0.878 2.122 0.877s1.536-0.294 2.122-0.881c0.585-0.586 0.878-1.356 0.877-2.122s-0.294-1.536-0.879-2.12l-0.048-0.047c-0.080-0.083-0.136-0.183-0.166-0.288-0.039-0.14-0.032-0.291 0.031-0.434zM18.396 9.302c-0.012-0.201-0.038-0.297-0.076-0.382v0.080c0 0.043 0.003 0.084 0.008 0.125 0.021 0.060 0.043 0.119 0.068 0.177 0.004 0.090 0.005 0.091 0.005 0.092 0.249 0.581 0.684 1.030 1.208 1.303 0.371 0.193 0.785 0.298 1.211 0.303h0.18c0.276 0 0.525 0.111 0.707 0.293s0.293 0.431 0.293 0.707-0.111 0.525-0.293 0.707-0.431 0.293-0.707 0.293h-0.090c-0.637 0.003-1.22 0.228-1.675 0.603-0.323 0.266-0.581 0.607-0.75 0.993-0.257 0.582-0.288 1.21-0.127 1.782 0.119 0.423 0.341 0.814 0.652 1.136l0.072 0.073c0.196 0.196 0.294 0.45 0.294 0.707s-0.097 0.512-0.292 0.707c-0.197 0.197-0.451 0.295-0.709 0.295s-0.512-0.097-0.707-0.292l-0.061-0.061c-0.463-0.453-1.040-0.702-1.632-0.752-0.437-0.037-0.882 0.034-1.293 0.212-0.578 0.248-1.027 0.683-1.3 1.206-0.193 0.371-0.298 0.785-0.303 1.211v0.181c0 0.276-0.111 0.525-0.293 0.707s-0.43 0.292-0.706 0.292-0.525-0.111-0.707-0.293-0.293-0.431-0.293-0.707v-0.090c-0.015-0.66-0.255-1.242-0.644-1.692-0.284-0.328-0.646-0.585-1.058-0.744-0.575-0.247-1.193-0.274-1.756-0.116-0.423 0.119-0.814 0.341-1.136 0.652l-0.073 0.072c-0.196 0.196-0.45 0.294-0.707 0.294s-0.512-0.097-0.707-0.292c-0.197-0.197-0.295-0.451-0.295-0.709s0.097-0.512 0.292-0.707l0.061-0.061c0.453-0.463 0.702-1.040 0.752-1.632 0.037-0.437-0.034-0.882-0.212-1.293-0.248-0.578-0.683-1.027-1.206-1.3-0.371-0.193-0.785-0.298-1.211-0.303l-0.18 0.001c-0.276 0-0.525-0.111-0.707-0.293s-0.293-0.431-0.293-0.707 0.111-0.525 0.293-0.707 0.431-0.293 0.707-0.293h0.090c0.66-0.015 1.242-0.255 1.692-0.644 0.328-0.284 0.585-0.646 0.744-1.058 0.247-0.575 0.274-1.193 0.116-1.756-0.119-0.423-0.341-0.814-0.652-1.136l-0.073-0.073c-0.196-0.196-0.294-0.45-0.294-0.707s0.097-0.512 0.292-0.707c0.197-0.197 0.451-0.295 0.709-0.295s0.512 0.097 0.707 0.292l0.061 0.061c0.463 0.453 1.040 0.702 1.632 0.752 0.37 0.032 0.745-0.014 1.101-0.137 0.096-0.012 0.186-0.036 0.266-0.072-0.031 0.001-0.061 0.003-0.089 0.004-0.201 0.012-0.297 0.038-0.382 0.076h0.080c0.043 0 0.084-0.003 0.125-0.008 0.060-0.021 0.119-0.043 0.177-0.068 0.090-0.004 0.091-0.005 0.092-0.005 0.581-0.249 1.030-0.684 1.303-1.208 0.193-0.37 0.298-0.785 0.303-1.21v-0.181c0-0.276 0.111-0.525 0.293-0.707s0.431-0.293 0.707-0.293 0.525 0.111 0.707 0.293 0.293 0.431 0.293 0.707v0.090c0.003 0.637 0.228 1.22 0.603 1.675 0.266 0.323 0.607 0.581 0.996 0.751 0.578 0.255 1.206 0.286 1.778 0.125 0.423-0.119 0.814-0.341 1.136-0.652l0.073-0.072c0.196-0.196 0.45-0.294 0.707-0.294s0.512 0.097 0.707 0.292c0.197 0.197 0.295 0.451 0.295 0.709s-0.097 0.512-0.292 0.707l-0.061 0.061c-0.453 0.463-0.702 1.040-0.752 1.632-0.032 0.37 0.014 0.745 0.137 1.101 0.012 0.095 0.037 0.185 0.072 0.266-0.001-0.032-0.002-0.062-0.004-0.089z",CoreIcons.settings="M5 10v-7c0-0.552-0.448-1-1-1s-1 0.448-1 1v7c0 0.552 0.448 1 1 1s1-0.448 1-1zM13 21v-9c0-0.552-0.448-1-1-1s-1 0.448-1 1v9c0 0.552 0.448 1 1 1s1-0.448 1-1zM21 12v-9c0-0.552-0.448-1-1-1s-1 0.448-1 1v9c0 0.552 0.448 1 1 1s1-0.448 1-1zM1 15h2v6c0 0.552 0.448 1 1 1s1-0.448 1-1v-6h2c0.552 0 1-0.448 1-1s-0.448-1-1-1h-6c-0.552 0-1 0.448-1 1s0.448 1 1 1zM9 9h6c0.552 0 1-0.448 1-1s-0.448-1-1-1h-2v-4c0-0.552-0.448-1-1-1s-1 0.448-1 1v4h-2c-0.552 0-1 0.448-1 1s0.448 1 1 1zM17 17h2v4c0 0.552 0.448 1 1 1s1-0.448 1-1v-4h2c0.552 0 1-0.448 1-1s-0.448-1-1-1h-6c-0.552 0-1 0.448-1 1s0.448 1 1 1z",CoreIcons.notAllowed="M23 12c0-3.037-1.232-5.789-3.222-7.778s-4.741-3.222-7.778-3.222-5.789 1.232-7.778 3.222-3.222 4.741-3.222 7.778 1.232 5.789 3.222 7.778 4.741 3.222 7.778 3.222 5.789-1.232 7.778-3.222 3.222-4.741 3.222-7.778zM19.032 17.618l-12.65-12.65c1.54-1.232 3.493-1.968 5.618-1.968 2.486 0 4.734 1.006 6.364 2.636s2.636 3.878 2.636 6.364c0 2.125-0.736 4.078-1.968 5.618zM4.968 6.382l12.65 12.65c-1.54 1.232-3.493 1.968-5.618 1.968-2.486 0-4.734-1.006-6.364-2.636s-2.636-3.878-2.636-6.364c0-2.125 0.736-4.078 1.968-5.618z",CoreIcons.tick="M19.293 5.293l-10.293 10.293-4.293-4.293c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414l5 5c0.391 0.391 1.024 0.391 1.414 0l11-11c0.391-0.391 0.391-1.024 0-1.414s-1.024-0.391-1.414 0z",CoreIcons.target="M23 12c0-3.037-1.232-5.789-3.222-7.778s-4.741-3.222-7.778-3.222-5.789 1.232-7.778 3.222-3.222 4.741-3.222 7.778 1.232 5.789 3.222 7.778 4.741 3.222 7.778 3.222 5.789-1.232 7.778-3.222 3.222-4.741 3.222-7.778zM21 12c0 2.486-1.006 4.734-2.636 6.364s-3.878 2.636-6.364 2.636-4.734-1.006-6.364-2.636-2.636-3.878-2.636-6.364 1.006-4.734 2.636-6.364 3.878-2.636 6.364-2.636 4.734 1.006 6.364 2.636 2.636 3.878 2.636 6.364zM19 12c0-1.933-0.785-3.684-2.050-4.95s-3.017-2.050-4.95-2.050-3.684 0.785-4.95 2.050-2.050 3.017-2.050 4.95 0.785 3.684 2.050 4.95 3.017 2.050 4.95 2.050 3.684-0.785 4.95-2.050 2.050-3.017 2.050-4.95zM17 12c0 1.381-0.559 2.63-1.464 3.536s-2.155 1.464-3.536 1.464-2.63-0.559-3.536-1.464-1.464-2.155-1.464-3.536 0.559-2.63 1.464-3.536 2.155-1.464 3.536-1.464 2.63 0.559 3.536 1.464 1.464 2.155 1.464 3.536zM15 12c0-0.828-0.337-1.58-0.879-2.121s-1.293-0.879-2.121-0.879-1.58 0.337-2.121 0.879-0.879 1.293-0.879 2.121 0.337 1.58 0.879 2.121 1.293 0.879 2.121 0.879 1.58-0.337 2.121-0.879 0.879-1.293 0.879-2.121zM13 12c0 0.276-0.111 0.525-0.293 0.707s-0.431 0.293-0.707 0.293-0.525-0.111-0.707-0.293-0.293-0.431-0.293-0.707 0.111-0.525 0.293-0.707 0.431-0.293 0.707-0.293 0.525 0.111 0.707 0.293 0.293 0.431 0.293 0.707z",CoreIcons.sun="M18 12c0-1.657-0.673-3.158-1.757-4.243s-2.586-1.757-4.243-1.757-3.158 0.673-4.243 1.757-1.757 2.586-1.757 4.243 0.673 3.158 1.757 4.243 2.586 1.757 4.243 1.757 3.158-0.673 4.243-1.757 1.757-2.586 1.757-4.243zM16 12c0 1.105-0.447 2.103-1.172 2.828s-1.723 1.172-2.828 1.172-2.103-0.447-2.828-1.172-1.172-1.723-1.172-2.828 0.447-2.103 1.172-2.828 1.723-1.172 2.828-1.172 2.103 0.447 2.828 1.172 1.172 1.723 1.172 2.828zM11 1v2c0 0.552 0.448 1 1 1s1-0.448 1-1v-2c0-0.552-0.448-1-1-1s-1 0.448-1 1zM11 21v2c0 0.552 0.448 1 1 1s1-0.448 1-1v-2c0-0.552-0.448-1-1-1s-1 0.448-1 1zM3.513 4.927l1.42 1.42c0.391 0.391 1.024 0.391 1.414 0s0.391-1.024 0-1.414l-1.42-1.42c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414zM17.653 19.067l1.42 1.42c0.391 0.391 1.024 0.391 1.414 0s0.391-1.024 0-1.414l-1.42-1.42c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414zM1 13h2c0.552 0 1-0.448 1-1s-0.448-1-1-1h-2c-0.552 0-1 0.448-1 1s0.448 1 1 1zM21 13h2c0.552 0 1-0.448 1-1s-0.448-1-1-1h-2c-0.552 0-1 0.448-1 1s0.448 1 1 1zM4.927 20.487l1.42-1.42c0.391-0.391 0.391-1.024 0-1.414s-1.024-0.391-1.414 0l-1.42 1.42c-0.391 0.391-0.391 1.024 0 1.414s1.024 0.391 1.414 0zM19.067 6.347l1.42-1.42c0.391-0.391 0.391-1.024 0-1.414s-1.024-0.391-1.414 0l-1.42 1.42c-0.391 0.391-0.391 1.024 0 1.414s1.024 0.391 1.414 0z",CoreIcons.moon="M21.996 12.882c0.022-0.233-0.038-0.476-0.188-0.681-0.325-0.446-0.951-0.544-1.397-0.219-0.95 0.693-2.060 1.086-3.188 1.162-1.368 0.092-2.765-0.283-3.95-1.158-1.333-0.985-2.139-2.415-2.367-3.935s0.124-3.124 1.109-4.456c0.142-0.191 0.216-0.435 0.191-0.691-0.053-0.55-0.542-0.952-1.092-0.898-2.258 0.22-4.314 1.18-5.895 2.651-1.736 1.615-2.902 3.847-3.137 6.386-0.254 2.749 0.631 5.343 2.266 7.311s4.022 3.313 6.772 3.567 5.343-0.631 7.311-2.266 3.313-4.022 3.567-6.772zM19.567 14.674c-0.49 1.363-1.335 2.543-2.416 3.441-1.576 1.309-3.648 2.016-5.848 1.813s-4.108-1.278-5.417-2.854-2.016-3.648-1.813-5.848c0.187-2.032 1.117-3.814 2.507-5.106 0.782-0.728 1.71-1.3 2.731-1.672-0.456 1.264-0.577 2.606-0.384 3.899 0.303 2.023 1.38 3.934 3.156 5.247 1.578 1.167 3.448 1.668 5.272 1.545 0.752-0.050 1.496-0.207 2.21-0.465z",CoreIcons.login="M15 4h4c0.276 0 0.525 0.111 0.707 0.293s0.293 0.431 0.293 0.707v14c0 0.276-0.111 0.525-0.293 0.707s-0.431 0.293-0.707 0.293h-4c-0.552 0-1 0.448-1 1s0.448 1 1 1h4c0.828 0 1.58-0.337 2.121-0.879s0.879-1.293 0.879-2.121v-14c0-0.828-0.337-1.58-0.879-2.121s-1.293-0.879-2.121-0.879h-4c-0.552 0-1 0.448-1 1s0.448 1 1 1zM12.586 11h-9.586c-0.552 0-1 0.448-1 1s0.448 1 1 1h9.586l-3.293 3.293c-0.391 0.391-0.391 1.024 0 1.414s1.024 0.391 1.414 0l5-5c0.096-0.096 0.168-0.206 0.217-0.324s0.076-0.247 0.076-0.383c0-0.13-0.025-0.261-0.076-0.383-0.049-0.118-0.121-0.228-0.217-0.324l-5-5c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414z",CoreIcons.logout="M9 20h-4c-0.276 0-0.525-0.111-0.707-0.293s-0.293-0.431-0.293-0.707v-14c0-0.276 0.111-0.525 0.293-0.707s0.431-0.293 0.707-0.293h4c0.552 0 1-0.448 1-1s-0.448-1-1-1h-4c-0.828 0-1.58 0.337-2.121 0.879s-0.879 1.293-0.879 2.121v14c0 0.828 0.337 1.58 0.879 2.121s1.293 0.879 2.121 0.879h4c0.552 0 1-0.448 1-1s-0.448-1-1-1zM18.586 11h-9.586c-0.552 0-1 0.448-1 1s0.448 1 1 1h9.586l-3.293 3.293c-0.391 0.391-0.391 1.024 0 1.414s1.024 0.391 1.414 0l5-5c0.092-0.092 0.166-0.202 0.217-0.324 0.15-0.362 0.078-0.795-0.217-1.090l-5-5c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414z",CoreIcons.phone="M23 16.92c0.016-0.714-0.236-1.404-0.673-1.943-0.46-0.566-1.129-0.967-1.925-1.080-0.8-0.098-1.695-0.314-2.586-0.646-0.433-0.159-0.893-0.218-1.344-0.174-0.663 0.064-1.307 0.349-1.819 0.855l-0.72 0.72c-1.77-1.117-3.36-2.667-4.583-4.589l0.726-0.726c0.322-0.33 0.563-0.726 0.707-1.156 0.212-0.632 0.214-1.336-0.039-2.011-0.289-0.753-0.518-1.644-0.644-2.595-0.104-0.714-0.456-1.345-0.963-1.804-0.539-0.486-1.256-0.779-2.027-0.771h-2.996c-0.088 0-0.182 0.004-0.273 0.012-0.824 0.075-1.542 0.478-2.033 1.066s-0.758 1.367-0.683 2.199c0.3 3.076 1.365 6.243 3.216 9.102 1.502 2.413 3.648 4.623 6.298 6.306 2.568 1.697 5.684 2.862 9.086 3.231 0.092 0.009 0.191 0.013 0.288 0.013 0.828-0.003 1.578-0.343 2.118-0.887s0.873-1.297 0.87-2.121zM21 16.92v3c0.001 0.28-0.109 0.53-0.29 0.712s-0.429 0.295-0.706 0.296c-3.149-0.336-5.961-1.391-8.263-2.912-2.428-1.543-4.359-3.537-5.702-5.694-1.697-2.62-2.655-5.481-2.924-8.238-0.024-0.268 0.064-0.526 0.229-0.724s0.403-0.33 0.678-0.355l3.088-0.005c0.271-0.003 0.507 0.094 0.687 0.256 0.17 0.154 0.288 0.366 0.323 0.608 0.142 1.072 0.408 2.117 0.757 3.025 0.081 0.216 0.080 0.447 0.010 0.658-0.049 0.145-0.131 0.281-0.242 0.395l-1.262 1.261c-0.324 0.324-0.379 0.814-0.162 1.201 1.584 2.785 3.839 4.957 6.381 6.378 0.397 0.222 0.882 0.144 1.195-0.166l1.27-1.27c0.166-0.164 0.377-0.257 0.598-0.279 0.152-0.015 0.31 0.005 0.459 0.060 1.022 0.381 2.070 0.636 3.034 0.754 0.241 0.034 0.462 0.166 0.615 0.355 0.147 0.181 0.231 0.412 0.226 0.682z",CoreIcons.message="M22 15v-10c0-0.828-0.337-1.58-0.879-2.121s-1.293-0.879-2.121-0.879h-14c-0.828 0-1.58 0.337-2.121 0.879s-0.879 1.293-0.879 2.121v16c0 0.256 0.098 0.512 0.293 0.707 0.391 0.391 1.024 0.391 1.414 0l3.707-3.707h11.586c0.828 0 1.58-0.337 2.121-0.879s0.879-1.293 0.879-2.121zM20 15c0 0.276-0.111 0.525-0.293 0.707s-0.431 0.293-0.707 0.293h-12c-0.276 0-0.526 0.112-0.707 0.293l-2.293 2.293v-13.586c0-0.276 0.111-0.525 0.293-0.707s0.431-0.293 0.707-0.293h14c0.276 0 0.525 0.111 0.707 0.293s0.293 0.431 0.293 0.707z",CoreIcons.mail="M3 7.921l8.427 5.899c0.34 0.235 0.795 0.246 1.147 0l8.426-5.899v10.079c0 0.272-0.11 0.521-0.295 0.705s-0.433 0.295-0.705 0.295h-16c-0.272 0-0.521-0.11-0.705-0.295s-0.295-0.433-0.295-0.705zM1 5.983c0 0.010 0 0.020 0 0.030v11.987c0 0.828 0.34 1.579 0.88 2.12s1.292 0.88 2.12 0.88h16c0.828 0 1.579-0.34 2.12-0.88s0.88-1.292 0.88-2.12v-11.988c0-0.010 0-0.020 0-0.030-0.005-0.821-0.343-1.565-0.88-2.102-0.541-0.54-1.292-0.88-2.12-0.88h-16c-0.828 0-1.579 0.34-2.12 0.88-0.537 0.537-0.875 1.281-0.88 2.103zM20.894 5.554l-8.894 6.225-8.894-6.225c0.048-0.096 0.112-0.183 0.188-0.259 0.185-0.185 0.434-0.295 0.706-0.295h16c0.272 0 0.521 0.11 0.705 0.295 0.076 0.076 0.14 0.164 0.188 0.259z",CoreIcons.clip="M20.733 10.343l-9.19 9.19c-0.977 0.977-2.256 1.465-3.538 1.465s-2.561-0.488-3.538-1.465-1.465-2.256-1.465-3.538 0.488-2.561 1.465-3.538l9.19-9.19c0.586-0.586 1.353-0.879 2.123-0.879s1.536 0.293 2.123 0.879 0.879 1.353 0.879 2.123-0.293 1.536-0.879 2.123l-9.2 9.19c-0.196 0.196-0.451 0.294-0.708 0.294s-0.512-0.098-0.708-0.293-0.293-0.45-0.293-0.708 0.098-0.512 0.293-0.708l8.49-8.48c0.391-0.39 0.391-1.023 0.001-1.414s-1.023-0.391-1.414-0.001l-8.49 8.48c-0.586 0.586-0.879 1.356-0.879 2.122s0.293 1.536 0.879 2.122 1.356 0.879 2.122 0.879 1.536-0.293 2.122-0.879l9.2-9.19c0.977-0.977 1.465-2.258 1.465-3.537s-0.489-2.561-1.465-3.537-2.258-1.465-3.537-1.465-2.561 0.489-3.537 1.465l-9.19 9.19c-1.367 1.367-2.051 3.161-2.051 4.952s0.684 3.585 2.051 4.952 3.161 2.051 4.952 2.051 3.585-0.684 4.952-2.051l9.19-9.19c0.391-0.391 0.391-1.024 0-1.414s-1.024-0.391-1.414 0z",CoreIcons.map="M7 3.723v13.697l-5 2.857v-13.697zM17 20.277v-13.697l5-2.857v13.696zM15.535 22.885c0.082 0.043 0.17 0.075 0.263 0.094 0.033 0.007 0.067 0.012 0.101 0.015s0.068 0.005 0.102 0.005c-0.001 0.001-0.001 0.001-0.001 0.001s0 0 0.001 0c0.173 0 0.344-0.046 0.496-0.132l0.015-0.009 6.985-3.991c0.32-0.183 0.501-0.518 0.503-0.868v-16c0-0.552-0.448-1-1-1-0.183 0-0.354 0.049-0.496 0.132l-6.535 3.734-7.503-3.752c-0.083-0.042-0.171-0.075-0.264-0.094-0.034-0.007-0.067-0.012-0.101-0.015s-0.068-0.005-0.102-0.005c0.001 0 0.001 0 0.001 0s0 0-0.001 0c-0.173 0-0.344 0.046-0.495 0.132l-0.015 0.008-6.985 3.992c-0.321 0.183-0.502 0.518-0.504 0.868v16c0 0.552 0.448 1 1 1 0.183 0 0.354-0.049 0.496-0.132l6.535-3.734zM15 6.618v13.764l-6-3v-13.764z",CoreIcons.mapPin="M22 10c0-2.761-1.12-5.263-2.929-7.071s-4.31-2.929-7.071-2.929-5.263 1.12-7.071 2.929-2.929 4.31-2.929 7.071c0 0.569 0.053 1.128 0.15 1.676 0.274 1.548 0.899 3.004 1.682 4.32 2.732 4.591 7.613 7.836 7.613 7.836 0.331 0.217 0.765 0.229 1.109 0 0 0 4.882-3.245 7.613-7.836 0.783-1.316 1.408-2.772 1.682-4.32 0.098-0.548 0.151-1.107 0.151-1.676zM20 10c0 0.444-0.041 0.887-0.119 1.328-0.221 1.25-0.737 2.478-1.432 3.646-1.912 3.214-5.036 5.747-6.369 6.74-1.398-0.916-4.588-3.477-6.53-6.74-0.695-1.168-1.211-2.396-1.432-3.646-0.077-0.441-0.118-0.884-0.118-1.328 0-2.209 0.894-4.208 2.343-5.657s3.448-2.343 5.657-2.343 4.208 0.894 5.657 2.343 2.343 3.448 2.343 5.657zM16 10c0-1.104-0.449-2.106-1.172-2.828s-1.724-1.172-2.828-1.172-2.106 0.449-2.828 1.172-1.172 1.724-1.172 2.828 0.449 2.106 1.172 2.828 1.724 1.172 2.828 1.172 2.106-0.449 2.828-1.172 1.172-1.724 1.172-2.828zM14 10c0 0.553-0.223 1.051-0.586 1.414s-0.861 0.586-1.414 0.586-1.051-0.223-1.414-0.586-0.586-0.861-0.586-1.414 0.223-1.051 0.586-1.414 0.861-0.586 1.414-0.586 1.051 0.223 1.414 0.586 0.586 0.861 0.586 1.414z",CoreIcons.thumbDown="M11 15c0-0.552-0.448-1-1-1h-5.679c-0.065-0.002-0.153-0.011-0.153-0.011-0.273-0.041-0.502-0.188-0.655-0.396s-0.225-0.47-0.184-0.742l1.38-8.998c0.037-0.239 0.156-0.448 0.325-0.6 0.179-0.161 0.415-0.256 0.686-0.253h10.28v9.788l-3.608 8.118c-0.307-0.098-0.582-0.268-0.806-0.492-0.363-0.363-0.586-0.861-0.586-1.414zM9 16v3c0 1.104 0.449 2.106 1.172 2.828s1.724 1.172 2.828 1.172c0.405 0 0.754-0.241 0.914-0.594l4-9c0.060-0.134 0.087-0.275 0.086-0.406v-11c0-0.552-0.448-1-1-1h-11.28c-0.767-0.009-1.482 0.281-2.021 0.763-0.505 0.452-0.857 1.076-0.967 1.783l-1.38 9.002c-0.125 0.82 0.096 1.614 0.55 2.231s1.147 1.063 1.965 1.187c0.165 0.025 0.333 0.037 0.492 0.034zM17 3h2.67c0.361-0.006 0.674 0.119 0.912 0.332 0.213 0.191 0.364 0.45 0.418 0.746v6.787c-0.037 0.34-0.208 0.63-0.455 0.833-0.235 0.194-0.537 0.306-0.861 0.301l-2.684 0.001c-0.552 0-1 0.448-1 1s0.448 1 1 1h2.656c0.81 0.012 1.569-0.27 2.16-0.756 0.622-0.511 1.059-1.251 1.176-2.11 0.005-0.040 0.008-0.087 0.008-0.134v-7c0-0.042-0.003-0.089-0.009-0.137-0.111-0.803-0.505-1.51-1.075-2.020-0.6-0.537-1.397-0.858-2.246-0.842h-2.67c-0.552 0-1 0.448-1 1s0.448 1 1 1z",CoreIcons.thumbUp="M13 9c0 0.552 0.448 1 1 1h5.679c0.065 0.002 0.153 0.011 0.153 0.011 0.273 0.041 0.502 0.188 0.655 0.396s0.225 0.47 0.184 0.742l-1.38 8.998c-0.037 0.239-0.156 0.448-0.325 0.6-0.18 0.161-0.415 0.256-0.686 0.253h-10.28v-9.788l3.608-8.118c0.307 0.098 0.582 0.268 0.806 0.492 0.363 0.363 0.586 0.861 0.586 1.414zM15 8v-3c0-1.104-0.449-2.106-1.172-2.828s-1.724-1.172-2.828-1.172c-0.405 0-0.754 0.241-0.914 0.594l-4 9c-0.060 0.134-0.087 0.275-0.086 0.406v11c0 0.552 0.448 1 1 1h11.28c0.767 0.009 1.482-0.281 2.021-0.763 0.505-0.452 0.857-1.076 0.967-1.783l1.38-9.002c0.125-0.82-0.096-1.614-0.55-2.231s-1.147-1.063-1.965-1.187c-0.165-0.025-0.333-0.037-0.492-0.034zM7 21h-3c-0.276 0-0.525-0.111-0.707-0.293s-0.293-0.431-0.293-0.707v-7c0-0.276 0.111-0.525 0.293-0.707s0.431-0.293 0.707-0.293h3c0.552 0 1-0.448 1-1s-0.448-1-1-1h-3c-0.828 0-1.58 0.337-2.121 0.879s-0.879 1.293-0.879 2.121v7c0 0.828 0.337 1.58 0.879 2.121s1.293 0.879 2.121 0.879h3c0.552 0 1-0.448 1-1s-0.448-1-1-1z",CoreIcons.spinner="M24 12c-0.030-1.567-0.37-3.129-0.998-4.558-0.626-1.43-1.534-2.725-2.649-3.795s-2.436-1.918-3.867-2.476c-1.43-0.561-2.967-0.829-4.486-0.796-1.519 0.030-3.031 0.36-4.414 0.969-1.384 0.607-2.638 1.488-3.673 2.568s-1.855 2.36-2.395 3.745c-0.542 1.384-0.8 2.872-0.767 4.342 0.030 1.471 0.351 2.933 0.941 4.27 0.588 1.338 1.441 2.551 2.487 3.552s2.284 1.793 3.624 2.314c1.339 0.523 2.776 0.771 4.199 0.739 1.423-0.030 2.835-0.341 4.127-0.912 1.293-0.569 2.464-1.394 3.43-2.406s1.731-2.209 2.233-3.502c0.305-0.784 0.513-1.603 0.622-2.433 0.029 0.002 0.059 0.003 0.088 0.003 0.828 0 1.5-0.672 1.5-1.5 0-0.042-0.002-0.084-0.006-0.125h0.006zM21.617 15.983c-0.55 1.247-1.347 2.377-2.324 3.309s-2.133 1.668-3.381 2.151c-1.248 0.485-2.585 0.714-3.911 0.682-1.327-0.030-2.639-0.322-3.84-0.855-1.201-0.531-2.289-1.301-3.187-2.243s-1.606-2.057-2.070-3.259c-0.466-1.202-0.685-2.489-0.653-3.768 0.031-1.279 0.312-2.541 0.826-3.696 0.512-1.155 1.254-2.202 2.162-3.066s1.981-1.544 3.138-1.989c1.156-0.447 2.394-0.656 3.624-0.624 1.23 0.031 2.443 0.303 3.552 0.798 1.11 0.493 2.115 1.207 2.944 2.081s1.481 1.905 1.908 3.016c0.428 1.111 0.628 2.298 0.596 3.48h0.006c-0.003 0.041-0.006 0.083-0.006 0.125 0 0.774 0.586 1.41 1.338 1.491-0.146 0.816-0.387 1.613-0.721 2.367z",CoreIcons.file="M17.586 7h-2.586v-2.586zM20.707 7.293l-6-6c-0.092-0.092-0.202-0.166-0.324-0.217s-0.253-0.076-0.383-0.076h-8c-0.828 0-1.58 0.337-2.121 0.879s-0.879 1.293-0.879 2.121v16c0 0.828 0.337 1.58 0.879 2.121s1.293 0.879 2.121 0.879h12c0.828 0 1.58-0.337 2.121-0.879s0.879-1.293 0.879-2.121v-12c0-0.276-0.112-0.526-0.293-0.707zM13 3v5c0 0.552 0.448 1 1 1h5v11c0 0.276-0.111 0.525-0.293 0.707s-0.431 0.293-0.707 0.293h-12c-0.276 0-0.525-0.111-0.707-0.293s-0.293-0.431-0.293-0.707v-16c0-0.276 0.111-0.525 0.293-0.707s0.431-0.293 0.707-0.293zM16 12h-8c-0.552 0-1 0.448-1 1s0.448 1 1 1h8c0.552 0 1-0.448 1-1s-0.448-1-1-1zM16 16h-8c-0.552 0-1 0.448-1 1s0.448 1 1 1h8c0.552 0 1-0.448 1-1s-0.448-1-1-1zM10 8h-2c-0.552 0-1 0.448-1 1s0.448 1 1 1h2c0.552 0 1-0.448 1-1s-0.448-1-1-1z",CoreIcons.image="M5 2c-0.828 0-1.58 0.337-2.121 0.879s-0.879 1.293-0.879 2.121v14c0 0.828 0.337 1.58 0.879 2.121s1.293 0.879 2.121 0.879h14c0.828 0 1.58-0.337 2.121-0.879s0.879-1.293 0.879-2.121v-14c0-0.828-0.337-1.58-0.879-2.121s-1.293-0.879-2.121-0.879zM11 8.5c0-0.69-0.281-1.316-0.732-1.768s-1.078-0.732-1.768-0.732-1.316 0.281-1.768 0.732-0.732 1.078-0.732 1.768 0.281 1.316 0.732 1.768 1.078 0.732 1.768 0.732 1.316-0.281 1.768-0.732 0.732-1.078 0.732-1.768zM9 8.5c0 0.138-0.055 0.262-0.146 0.354s-0.216 0.146-0.354 0.146-0.262-0.055-0.354-0.146-0.146-0.216-0.146-0.354 0.055-0.262 0.146-0.354 0.216-0.146 0.354-0.146 0.262 0.055 0.354 0.146 0.146 0.216 0.146 0.354zM7.414 20l8.586-8.586 4 4v3.586c0 0.276-0.111 0.525-0.293 0.707s-0.431 0.293-0.707 0.293zM20 12.586l-3.293-3.293c-0.391-0.391-1.024-0.391-1.414 0l-10.644 10.644c-0.135-0.050-0.255-0.129-0.356-0.23-0.182-0.182-0.293-0.431-0.293-0.707v-14c0-0.276 0.111-0.525 0.293-0.707s0.431-0.293 0.707-0.293h14c0.276 0 0.525 0.111 0.707 0.293s0.293 0.431 0.293 0.707z",CoreIcons.audio="M8 18c0 0.553-0.223 1.051-0.586 1.414s-0.861 0.586-1.414 0.586-1.051-0.223-1.414-0.586-0.586-0.861-0.586-1.414 0.223-1.051 0.586-1.414 0.861-0.586 1.414-0.586 1.051 0.223 1.414 0.586 0.586 0.861 0.586 1.414zM22 16v-13c0-0.050-0.004-0.107-0.014-0.164-0.091-0.545-0.606-0.913-1.151-0.822l-12 2c-0.476 0.081-0.835 0.492-0.835 0.986v9.535c-0.588-0.34-1.272-0.535-2-0.535-1.104 0-2.106 0.449-2.828 1.172s-1.172 1.724-1.172 2.828 0.449 2.106 1.172 2.828 1.724 1.172 2.828 1.172 2.106-0.449 2.828-1.172 1.172-1.724 1.172-2.828v-12.153l10-1.667v8.355c-0.588-0.34-1.272-0.535-2-0.535-1.104 0-2.106 0.449-2.828 1.172s-1.172 1.724-1.172 2.828 0.449 2.106 1.172 2.828 1.724 1.172 2.828 1.172 2.106-0.449 2.828-1.172 1.172-1.724 1.172-2.828zM20 16c0 0.553-0.223 1.051-0.586 1.414s-0.861 0.586-1.414 0.586-1.051-0.223-1.414-0.586-0.586-0.861-0.586-1.414 0.223-1.051 0.586-1.414 0.861-0.586 1.414-0.586 1.051 0.223 1.414 0.586 0.586 0.861 0.586 1.414z",CoreIcons.video="M16 11h-8v-8h8zM8 13h8v8h-8zM6 6h-3v-1.82c0-0.326 0.131-0.62 0.346-0.834s0.508-0.346 0.834-0.346h1.82zM3 8h3v3h-3zM6 16h-3v-3h3zM3 18h3v3h-1.82c-0.326 0-0.62-0.131-0.834-0.346s-0.346-0.508-0.346-0.834zM21 16h-3v-3h3zM18 18h3v1.82c0 0.326-0.131 0.62-0.346 0.834s-0.508 0.346-0.834 0.346h-1.82zM21 6h-3v-3h1.82c0.326 0 0.62 0.131 0.834 0.346s0.346 0.508 0.346 0.834zM23 7v-2.82c0-0.878-0.357-1.674-0.931-2.249s-1.371-0.931-2.249-0.931h-15.64c-0.878 0-1.674 0.357-2.249 0.931s-0.931 1.371-0.931 2.249v15.64c0 0.878 0.357 1.674 0.931 2.249s1.371 0.931 2.249 0.931h15.64c0.878 0 1.674-0.357 2.249-0.931s0.931-1.371 0.931-2.249zM18 8h3v3h-3z",CoreIcons.mic="M12 2c0.553 0 1.051 0.223 1.414 0.586s0.586 0.861 0.586 1.414v8c0 0.553-0.223 1.051-0.586 1.414s-0.861 0.586-1.414 0.586-1.051-0.223-1.414-0.586-0.586-0.861-0.586-1.414v-8c0-0.553 0.223-1.051 0.586-1.414s0.861-0.586 1.414-0.586zM12 0c-1.104 0-2.106 0.449-2.828 1.172s-1.172 1.724-1.172 2.828v8c0 1.104 0.449 2.106 1.172 2.828s1.724 1.172 2.828 1.172 2.106-0.449 2.828-1.172 1.172-1.724 1.172-2.828v-8c0-1.104-0.449-2.106-1.172-2.828s-1.724-1.172-2.828-1.172zM8 24h8c0.552 0 1-0.448 1-1s-0.448-1-1-1h-3v-2.062c1.809-0.226 3.432-1.056 4.657-2.281 1.446-1.447 2.343-3.448 2.343-5.657v-2c0-0.552-0.448-1-1-1s-1 0.448-1 1v2c0 1.657-0.67 3.156-1.757 4.243s-2.586 1.757-4.243 1.757-3.156-0.67-4.243-1.757-1.757-2.586-1.757-4.243v-2c0-0.552-0.448-1-1-1s-1 0.448-1 1v2c0 2.209 0.897 4.21 2.343 5.657 1.225 1.225 2.847 2.055 4.657 2.281v2.062h-3c-0.552 0-1 0.448-1 1s0.448 1 1 1z",CoreIcons.play="M5.541 2.159c-0.153-0.1-0.34-0.159-0.541-0.159-0.552 0-1 0.448-1 1v18c-0.001 0.182 0.050 0.372 0.159 0.541 0.299 0.465 0.917 0.599 1.382 0.3l14-9c0.114-0.072 0.219-0.174 0.3-0.3 0.299-0.465 0.164-1.083-0.3-1.382zM6 4.832l11.151 7.168-11.151 7.168z",CoreIcons.pause="M6 3c-0.552 0-1 0.448-1 1v16c0 0.552 0.448 1 1 1h4c0.552 0 1-0.448 1-1v-16c0-0.552-0.448-1-1-1zM7 5h2v14h-2zM14 3c-0.552 0-1 0.448-1 1v16c0 0.552 0.448 1 1 1h4c0.552 0 1-0.448 1-1v-16c0-0.552-0.448-1-1-1zM15 5h2v14h-2z",CoreIcons.stop="M18,18H6V6H18V18Z",CoreIcons.volumeOn="M10 7.081v9.839l-3.375-2.7c-0.17-0.137-0.388-0.22-0.625-0.22h-3v-4h3c0.218 0.001 0.439-0.071 0.625-0.219zM10.375 4.219l-4.726 3.781h-3.649c-0.552 0-1 0.448-1 1v6c0 0.552 0.448 1 1 1h3.649l4.726 3.781c0.431 0.345 1.061 0.275 1.406-0.156 0.148-0.185 0.22-0.407 0.219-0.625v-14c0-0.552-0.448-1-1-1-0.237 0-0.455 0.083-0.625 0.219zM18.363 5.637c1.757 1.758 2.635 4.059 2.635 6.364 0 2.304-0.878 4.605-2.635 6.362-0.39 0.391-0.39 1.024 0 1.414s1.024 0.39 1.414 0c2.147-2.147 3.22-4.963 3.221-7.776s-1.074-5.63-3.221-7.778c-0.39-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414zM14.833 9.167c0.781 0.781 1.171 1.803 1.171 2.828s-0.39 2.047-1.171 2.828c-0.39 0.391-0.39 1.024 0 1.414s1.024 0.39 1.414 0c1.171-1.171 1.757-2.708 1.757-4.242s-0.586-3.071-1.757-4.242c-0.39-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414z",CoreIcons.volumeOff="M10 7.081v9.839l-3.375-2.7c-0.17-0.137-0.388-0.22-0.625-0.22h-3v-4h3c0.218 0.001 0.439-0.071 0.625-0.219zM10.375 4.219l-4.726 3.781h-3.649c-0.552 0-1 0.448-1 1v6c0 0.552 0.448 1 1 1h3.649l4.726 3.781c0.431 0.345 1.061 0.275 1.406-0.156 0.148-0.185 0.22-0.407 0.219-0.625v-14c0-0.552-0.448-1-1-1-0.237 0-0.455 0.083-0.625 0.219zM16.293 9.707l2.293 2.293-2.293 2.293c-0.391 0.391-0.391 1.024 0 1.414s1.024 0.391 1.414 0l2.293-2.293 2.293 2.293c0.391 0.391 1.024 0.391 1.414 0s0.391-1.024 0-1.414l-2.293-2.293 2.293-2.293c0.391-0.391 0.391-1.024 0-1.414s-1.024-0.391-1.414 0l-2.293 2.293-2.293-2.293c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414z",CoreIcons.alignLeft="M3,3H21V5H3V3M3,7H15V9H3V7M3,11H21V13H3V11M3,15H15V17H3V15M3,19H21V21H3V19Z",CoreIcons.alignCenter="M3,3H21V5H3V3M7,7H17V9H7V7M3,11H21V13H3V11M7,15H17V17H7V15M3,19H21V21H3V19Z",CoreIcons.alignRight="M3,3H21V5H3V3M9,7H21V9H9V7M3,11H21V13H3V11M9,15H21V17H9V15M3,19H21V21H3V19Z",CoreIcons.alignJustify="M3,3H21V5H3V3M3,7H21V9H3V7M3,11H21V13H3V11M3,15H21V17H3V15M3,19H21V21H3V19Z",CoreIcons.formatBold="M13.5,15.5H10V12.5H13.5A1.5,1.5 0 0,1 15,14A1.5,1.5 0 0,1 13.5,15.5M10,6.5H13A1.5,1.5 0 0,1 14.5,8A1.5,1.5 0 0,1 13,9.5H10M15.6,10.79C16.57,10.11 17.25,9 17.25,8C17.25,5.74 15.5,4 13.25,4H7V18H14.04C16.14,18 17.75,16.3 17.75,14.21C17.75,12.69 16.89,11.39 15.6,10.79Z",CoreIcons.formatItalic="M10,4V7H12.21L8.79,15H6V18H14V15H11.79L15.21,7H18V4H10Z",CoreIcons.formatUnderline="M5,21H19V19H5V21M12,17A6,6 0 0,0 18,11V3H15.5V11A3.5,3.5 0 0,1 12,14.5A3.5,3.5 0 0,1 8.5,11V3H6V11A6,6 0 0,0 12,17Z",CoreIcons.formatStrikethrough="M7.2 9.8C6 7.5 7.7 4.8 10.1 4.3C13.2 3.3 17.7 4.7 17.6 8.5H14.6C14.6 8.2 14.5 7.9 14.5 7.7C14.3 7.1 13.9 6.8 13.3 6.6C12.5 6.3 11.2 6.4 10.5 6.9C9 8.2 10.4 9.5 12 10H7.4C7.3 9.9 7.3 9.8 7.2 9.8M21 13V11H3V13H12.6C12.8 13.1 13 13.1 13.2 13.2C13.8 13.5 14.3 13.7 14.5 14.3C14.6 14.7 14.7 15.2 14.5 15.6C14.3 16.1 13.9 16.3 13.4 16.5C11.6 17 9.4 16.3 9.5 14.1H6.5C6.4 16.7 8.6 18.5 11 18.8C14.8 19.6 19.3 17.2 17.3 12.9L21 13Z",CoreIcons.formatClear="M6,5V5.18L8.82,8H11.22L10.5,9.68L12.6,11.78L14.21,8H20V5H6M3.27,5L2,6.27L8.97,13.24L6.5,19H9.5L11.07,15.34L16.73,21L18,19.73L3.55,5.27L3.27,5Z",CoreIcons.formatIndentDecrease="M11,13H21V11H11M11,9H21V7H11M3,3V5H21V3M3,21H21V19H3M3,12L7,16V8M11,17H21V15H11V17Z",CoreIcons.formatIndentIncrease="M11,13H21V11H11M11,9H21V7H11M3,3V5H21V3M11,17H21V15H11M3,8V16L7,12M3,21H21V19H3V21Z",CoreIcons.formatListBullet="M7,5H21V7H7V5M7,13V11H21V13H7M4,4.5A1.5,1.5 0 0,1 5.5,6A1.5,1.5 0 0,1 4,7.5A1.5,1.5 0 0,1 2.5,6A1.5,1.5 0 0,1 4,4.5M4,10.5A1.5,1.5 0 0,1 5.5,12A1.5,1.5 0 0,1 4,13.5A1.5,1.5 0 0,1 2.5,12A1.5,1.5 0 0,1 4,10.5M7,19V17H21V19H7M4,16.5A1.5,1.5 0 0,1 5.5,18A1.5,1.5 0 0,1 4,19.5A1.5,1.5 0 0,1 2.5,18A1.5,1.5 0 0,1 4,16.5Z",CoreIcons.formatListNumber="M7,13V11H21V13H7M7,19V17H21V19H7M7,7V5H21V7H7M3,8V5H2V4H4V8H3M2,17V16H5V20H2V19H4V18.5H3V17.5H4V17H2M4.25,10A0.75,0.75 0 0,1 5,10.75C5,10.95 4.92,11.14 4.79,11.27L3.12,13H5V14H2V13.08L4,11H2V10H4.25Z",CoreIcons.formatText="M18.5,4L19.66,8.35L18.7,8.61C18.25,7.74 17.79,6.87 17.26,6.43C16.73,6 16.11,6 15.5,6H13V16.5C13,17 13,17.5 13.33,17.75C13.67,18 14.33,18 15,18V19H9V18C9.67,18 10.33,18 10.67,17.75C11,17.5 11,17 11,16.5V6H8.5C7.89,6 7.27,6 6.74,6.43C6.21,6.87 5.75,7.74 5.3,8.61L4.34,8.35L5.5,4H18.5Z",CoreIcons.formatFill="M19,11.5C19,11.5 17,13.67 17,15A2,2 0 0,0 19,17A2,2 0 0,0 21,15C21,13.67 19,11.5 19,11.5M5.21,10L10,5.21L14.79,10M16.56,8.94L7.62,0L6.21,1.41L8.59,3.79L3.44,8.94C2.85,9.5 2.85,10.47 3.44,11.06L8.94,16.56C9.23,16.85 9.62,17 10,17C10.38,17 10.77,16.85 11.06,16.56L16.56,11.06C17.15,10.47 17.15,9.5 16.56,8.94Z",CoreIcons.formatHilight="M4,17L6.75,14.25L6.72,14.23C6.14,13.64 6.14,12.69 6.72,12.11L11.46,7.37L15.7,11.61L10.96,16.35C10.39,16.93 9.46,16.93 8.87,16.37L8.24,17H4M15.91,2.91C16.5,2.33 17.45,2.33 18.03,2.91L20.16,5.03C20.74,5.62 20.74,6.57 20.16,7.16L16.86,10.45L12.62,6.21L15.91,2.91Z",CoreIcons.formatParagraph="M13,4A4,4 0 0,1 17,8A4,4 0 0,1 13,12H11V18H9V4H13M13,10A2,2 0 0,0 15,8A2,2 0 0,0 13,6H11V10H13Z",CoreIcons.formatCommentBlock="M9,22A1,1 0 0,1 8,21V18H4A2,2 0 0,1 2,16V4C2,2.89 2.9,2 4,2H20A2,2 0 0,1 22,4V16A2,2 0 0,1 20,18H13.9L10.2,21.71C10,21.9 9.75,22 9.5,22V22H9M10,16V19.08L13.08,16H20V4H4V16H10M6,7H18V9H6V7M6,11H15V13H6V11Z",CoreIcons.formatQuoteBlock="M10,7L8,11H11V17H5V11L7,7H10M18,7L16,11H19V17H13V11L15,7H18Z",CoreIcons.formatCodeBlock="M5.59 3.41L7 4.82L3.82 8L7 11.18L5.59 12.6L1 8L5.59 3.41M11.41 3.41L16 8L11.41 12.6L10 11.18L13.18 8L10 4.82L11.41 3.41M22 6V18C22 19.11 21.11 20 20 20H4C2.9 20 2 19.11 2 18V14H4V18H20V6H17.03V4H20C21.11 4 22 4.89 22 6Z",CoreIcons.chartColumn="M22,21H2V3H4V19H6V10H10V19H12V6H16V19H18V14H22V21Z",CoreIcons.chartBar="M3 2v20h18v-2h-16v-2h9v-4h-9v-2h13v-4h-13v-2h5v-4h-7z",CoreIcons.chartLine="M16,11.78L20.24,4.45L21.97,5.45L16.74,14.5L10.23,10.75L5.46,19H22V21H2V3H4V17.54L9.5,8L16,11.78Z",CoreIcons.chartRadar="M12,5L19.6,10.5L16.7,19.4H7.3L4.4,10.5L12,5M12,2.5L2,9.8L5.8,21.5H18.1L22,9.8L12,2.5Z",CoreIcons.chartPie="M11,2V22C5.9,21.5 2,17.2 2,12C2,6.8 5.9,2.5 11,2M13,2V11H22C21.5,6.2 17.8,2.5 13,2M13,13V22C17.7,21.5 21.5,17.8 22,13H13Z",CoreIcons.chartLineStacked="M17.45,15.18L22,6.81V19L22,21H2V3H4V15.54L4,19H4.31L6,19H6.57L10.96,11.44L17.45,15.18M22,3L21.97,3.45L17,11L10,6L6,12V3H22Z",CoreIcons.chartBarStacked="M3 2v20h18v-2h-16v-2h2v-4h-2v-2h3v-4h-3v-2h2v-4h-4zM10 6v-4h-2v4h2zM18 12v-4h-3v4h3zM9 8v4h5v-4h-5zM14 18v-4h-2v4h2zM8 14v4h3v-4h-3z",CoreIcons.chartColumnStacked="M22,21H2V3H4V19H6V17H10V19H12V16H16V19H18V17H22V21M18,14H22V16H18V14M12,6H16V9H12V6M16,15H12V10H16V15M6,10H10V12H6V10M10,16H6V13H10V16Z",CoreIcons.chartActivityScatter="M2,2H4V20H22V22H2V2M9,10A3,3 0 0,1 12,13A3,3 0 0,1 9,16A3,3 0 0,1 6,13A3,3 0 0,1 9,10M13,2A3,3 0 0,1 16,5A3,3 0 0,1 13,8A3,3 0 0,1 10,5A3,3 0 0,1 13,2M18,12A3,3 0 0,1 21,15A3,3 0 0,1 18,18A3,3 0 0,1 15,15A3,3 0 0,1 18,12Z",CoreIcons.chartActivityCalendar="M2,4V6H4V4H2M20,4V6H22V4H20M2,7V9H4V7H2M5,7V9H7V7H5M14,7V9H16V7H14M17,7V9H19V7H17M20,7V9H22V7H20M2,10V12H4V10H2M5,10V12H7V10H5M8,10V12H10V10H8M11,10V12H13V10H11M14,10V12H16V10H14M17,10V12H19V10H17M20,10V12H22V10H20M2,13V15H4V13H2M5,13V15H7V13H5M8,13V15H10V13H8M11,13V15H13V13H11M14,13V15H16V13H14M17,13V15H19V13H17M20,13V15H22V13H20M5",CoreIcons.palette="M12,22A10,10 0 0,1 2,12A10,10 0 0,1 12,2C17.5,2 22,6 22,11A6,6 0 0,1 16,17H14.2C13.9,17 13.7,17.2 13.7,17.5C13.7,17.6 13.8,17.7 13.8,17.8C14.2,18.3 14.4,18.9 14.4,19.5C14.5,20.9 13.4,22 12,22M12,4A8,8 0 0,0 4,12A8,8 0 0,0 12,20C12.3,20 12.5,19.8 12.5,19.5C12.5,19.3 12.4,19.2 12.4,19.1C12,18.6 11.8,18.1 11.8,17.5C11.8,16.1 12.9,15 14.3,15H16A4,4 0 0,0 20,11C20,7.1 16.4,4 12,4M6.5,10C7.3,10 8,10.7 8,11.5C8,12.3 7.3,13 6.5,13C5.7,13 5,12.3 5,11.5C5,10.7 5.7,10 6.5,10M9.5,6C10.3,6 11,6.7 11,7.5C11,8.3 10.3,9 9.5,9C8.7,9 8,8.3 8,7.5C8,6.7 8.7,6 9.5,6M14.5,6C15.3,6 16,6.7 16,7.5C16,8.3 15.3,9 14.5,9C13.7,9 13,8.3 13,7.5C13,6.7 13.7,6 14.5,6M17.5,10C18.3,10 19,10.7 19,11.5C19,12.3 18.3,13 17.5,13C16.7,13 16,12.3 16,11.5C16,10.7 16.7,10 17.5,10Z",CoreIcons.widget="M16.7 4.5L19.5 7.3L16.7 10.1L13.9 7.3L16.7 4.5M9 5V9H5V5H9M19 15V19H15V15H19M16.7 1.7L11 7.3L16.7 13H13V21H21V13H16.7L22.3 7.3L16.7 1.7M11 3H3V11H11V3M9 15V19H5V15H9M11 13H3V21H11V13Z",CoreIcons.checkboxOff="M19,3H5C3.89,3 3,3.89 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V5C21,3.89 20.1,3 19,3M19,5V19H5V5H19Z",CoreIcons.checkboxOn="M10,17L5,12L6.41,10.58L10,14.17L17.59,6.58L19,8M19,3H5C3.89,3 3,3.89 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V5C21,3.89 20.1,3 19,3Z",CoreIcons.checkboxInt="M19,3H5A2,2 0 0,0 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V5A2,2 0 0,0 19,3M19,19H5V5H19V19M17,17H7V7H17V17Z",CoreIcons.radioOff="M12,20A8,8 0 0,1 4,12A8,8 0 0,1 12,4A8,8 0 0,1 20,12A8,8 0 0,1 12,20M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2Z",CoreIcons.radioOn="M12,20A8,8 0 0,1 4,12A8,8 0 0,1 12,4A8,8 0 0,1 20,12A8,8 0 0,1 12,20M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2M12,7A5,5 0 0,0 7,12A5,5 0 0,0 12,17A5,5 0 0,0 17,12A5,5 0 0,0 12,7Z",CoreIcons.colorSwatch="M16 14V12H17.61C17.85 12.71 18 13.39 18 14H16M15.58 8C15.12 7.29 14.65 6.61 14.2 6H14V8H15.58M16 12V10H14V12H16M16 8.68V10H16.74C16.5 9.56 16.26 9.11 16 8.68M12 16V14H14V12H12V10H14V8H12V6H14V5.73C12.9 4.26 12 3.25 12 3.25S6 10 6 14C6 17.31 8.69 20 12 20V18H14V16H12M14 19.65C14.75 19.39 15.42 19 16 18.46V18H14V19.65M14 16H16V14H14V16M16 18H16.46C17 17.42 17.39 16.75 17.65 16H16V18Z",CoreIcons.colorPicker="M19.35,11.72L17.22,13.85L15.81,12.43L8.1,20.14L3.5,22L2,20.5L3.86,15.9L11.57,8.19L10.15,6.78L12.28,4.65L19.35,11.72M16.76,3C17.93,1.83 19.83,1.83 21,3C22.17,4.17 22.17,6.07 21,7.24L19.08,9.16L14.84,4.92L16.76,3M5.56,17.03L4.5,19.5L6.97,18.44L14.4,11L13,9.6L5.56,17.03Z",CoreIcons.info="M23 12c0-3.037-1.232-5.789-3.222-7.778s-4.741-3.222-7.778-3.222-5.789 1.232-7.778 3.222-3.222 4.741-3.222 7.778 1.232 5.789 3.222 7.778 4.741 3.222 7.778 3.222 5.789-1.232 7.778-3.222 3.222-4.741 3.222-7.778zM21 12c0 2.486-1.006 4.734-2.636 6.364s-3.878 2.636-6.364 2.636-4.734-1.006-6.364-2.636-2.636-3.878-2.636-6.364 1.006-4.734 2.636-6.364 3.878-2.636 6.364-2.636 4.734 1.006 6.364 2.636 2.636 3.878 2.636 6.364zM13 16v-4c0-0.552-0.448-1-1-1s-1 0.448-1 1v4c0 0.552 0.448 1 1 1s1-0.448 1-1zM12 9c0.552 0 1-0.448 1-1s-0.448-1-1-1-1 0.448-1 1 0.448 1 1 1z",CoreIcons.alert="M23 12c0-3.037-1.232-5.789-3.222-7.778s-4.741-3.222-7.778-3.222-5.789 1.232-7.778 3.222-3.222 4.741-3.222 7.778 1.232 5.789 3.222 7.778 4.741 3.222 7.778 3.222 5.789-1.232 7.778-3.222 3.222-4.741 3.222-7.778zM21 12c0 2.486-1.006 4.734-2.636 6.364s-3.878 2.636-6.364 2.636-4.734-1.006-6.364-2.636-2.636-3.878-2.636-6.364 1.006-4.734 2.636-6.364 3.878-2.636 6.364-2.636 4.734 1.006 6.364 2.636 2.636 3.878 2.636 6.364zM11 8v4c0 0.552 0.448 1 1 1s1-0.448 1-1v-4c0-0.552-0.448-1-1-1s-1 0.448-1 1zM12 17c0.552 0 1-0.448 1-1s-0.448-1-1-1-1 0.448-1 1 0.448 1 1 1z",CoreIcons.error="M23 12c0-3.037-1.232-5.789-3.222-7.778s-4.741-3.222-7.778-3.222-5.789 1.232-7.778 3.222-3.222 4.741-3.222 7.778 1.232 5.789 3.222 7.778 4.741 3.222 7.778 3.222 5.789-1.232 7.778-3.222 3.222-4.741 3.222-7.778zM21 12c0 2.486-1.006 4.734-2.636 6.364s-3.878 2.636-6.364 2.636-4.734-1.006-6.364-2.636-2.636-3.878-2.636-6.364 1.006-4.734 2.636-6.364 3.878-2.636 6.364-2.636 4.734 1.006 6.364 2.636 2.636 3.878 2.636 6.364zM8.293 9.707l2.293 2.293-2.293 2.293c-0.391 0.391-0.391 1.024 0 1.414s1.024 0.391 1.414 0l2.293-2.293 2.293 2.293c0.391 0.391 1.024 0.391 1.414 0s0.391-1.024 0-1.414l-2.293-2.293 2.293-2.293c0.391-0.391 0.391-1.024 0-1.414s-1.024-0.391-1.414 0l-2.293 2.293-2.293-2.293c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414z",CoreIcons.success="M21 11.080v0.92c-0.001 2.485-1.009 4.733-2.64 6.362s-3.88 2.634-6.365 2.632-4.734-1.009-6.362-2.64-2.634-3.879-2.633-6.365 1.009-4.733 2.64-6.362 3.88-2.634 6.365-2.633c1.33 0.001 2.586 0.289 3.649 0.775 0.502 0.23 1.096 0.008 1.325-0.494s0.008-1.096-0.494-1.325c-1.327-0.606-2.866-0.955-4.479-0.956-3.037-0.002-5.789 1.229-7.78 3.217s-3.224 4.74-3.226 7.777 1.229 5.789 3.217 7.78 4.739 3.225 7.776 3.226 5.789-1.229 7.78-3.217 3.225-4.739 3.227-7.777v-0.92c0-0.552-0.448-1-1-1s-1 0.448-1 1zM21.293 3.293l-9.293 9.302-2.293-2.292c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414l3 3c0.391 0.391 1.024 0.39 1.415 0l10-10.010c0.39-0.391 0.39-1.024-0.001-1.414s-1.024-0.39-1.414 0.001z",CoreIcons.warning="M11.148 4.374c0.073-0.123 0.185-0.242 0.334-0.332 0.236-0.143 0.506-0.178 0.756-0.116s0.474 0.216 0.614 0.448l8.466 14.133c0.070 0.12 0.119 0.268 0.128 0.434-0.015 0.368-0.119 0.591-0.283 0.759-0.18 0.184-0.427 0.298-0.693 0.301l-16.937-0.001c-0.152-0.001-0.321-0.041-0.481-0.134-0.239-0.138-0.399-0.359-0.466-0.607s-0.038-0.519 0.092-0.745zM9.432 3.346l-8.47 14.14c-0.422 0.731-0.506 1.55-0.308 2.29s0.68 1.408 1.398 1.822c0.464 0.268 0.976 0.4 1.475 0.402h16.943c0.839-0.009 1.587-0.354 2.123-0.902s0.864-1.303 0.855-2.131c-0.006-0.536-0.153-1.044-0.406-1.474l-8.474-14.147c-0.432-0.713-1.11-1.181-1.854-1.363s-1.561-0.081-2.269 0.349c-0.429 0.26-0.775 0.615-1.012 1.014zM11 9v4c0 0.552 0.448 1 1 1s1-0.448 1-1v-4c0-0.552-0.448-1-1-1s-1 0.448-1 1zM12 18c0.552 0 1-0.448 1-1s-0.448-1-1-1-1 0.448-1 1 0.448 1 1 1z",CoreIcons.question="M23 12c0-3.037-1.232-5.789-3.222-7.778s-4.741-3.222-7.778-3.222-5.789 1.232-7.778 3.222-3.222 4.741-3.222 7.778 1.232 5.789 3.222 7.778 4.741 3.222 7.778 3.222 5.789-1.232 7.778-3.222 3.222-4.741 3.222-7.778zM21 12c0 2.486-1.006 4.734-2.636 6.364s-3.878 2.636-6.364 2.636-4.734-1.006-6.364-2.636-2.636-3.878-2.636-6.364 1.006-4.734 2.636-6.364 3.878-2.636 6.364-2.636 4.734 1.006 6.364 2.636 2.636 3.878 2.636 6.364zM10.033 9.332c0.183-0.521 0.559-0.918 1.022-1.14s1.007-0.267 1.528-0.083c0.458 0.161 0.819 0.47 1.050 0.859 0.183 0.307 0.284 0.665 0.286 1.037 0 0.155-0.039 0.309-0.117 0.464-0.080 0.16-0.203 0.325-0.368 0.49-0.709 0.709-1.831 1.092-1.831 1.092-0.524 0.175-0.807 0.741-0.632 1.265s0.741 0.807 1.265 0.632c0 0 1.544-0.506 2.613-1.575 0.279-0.279 0.545-0.614 0.743-1.010 0.2-0.4 0.328-0.858 0.328-1.369-0.004-0.731-0.204-1.437-0.567-2.049-0.463-0.778-1.19-1.402-2.105-1.724-1.042-0.366-2.135-0.275-3.057 0.167s-1.678 1.238-2.044 2.28c-0.184 0.521 0.090 1.092 0.611 1.275s1.092-0.091 1.275-0.611zM12 18c0.552 0 1-0.448 1-1s-0.448-1-1-1-1 0.448-1 1 0.448 1 1 1z",CoreIcons.mediaRotateCW="M16.89,15.5L18.31,16.89C19.21,15.73 19.76,14.39 19.93,13H17.91C17.77,13.87 17.43,14.72 16.89,15.5M13,17.9V19.92C14.39,19.75 15.74,19.21 16.9,18.31L15.46,16.87C14.71,17.41 13.87,17.76 13,17.9M19.93,11C19.76,9.61 19.21,8.27 18.31,7.11L16.89,8.53C17.43,9.28 17.77,10.13 17.91,11M15.55,5.55L11,1V4.07C7.06,4.56 4,7.92 4,12C4,16.08 7.05,19.44 11,19.93V17.91C8.16,17.43 6,14.97 6,12C6,9.03 8.16,6.57 11,6.09V10L15.55,5.55Z",CoreIcons.mediaRotateCCW="M13,4.07V1L8.45,5.55L13,10V6.09C15.84,6.57 18,9.03 18,12C18,14.97 15.84,17.43 13,17.91V19.93C16.95,19.44 20,16.08 20,12C20,7.92 16.95,4.56 13,4.07M7.1,18.32C8.26,19.22 9.61,19.76 11,19.93V17.9C10.13,17.75 9.29,17.41 8.54,16.87L7.1,18.32M6.09,13H4.07C4.24,14.39 4.79,15.73 5.69,16.89L7.1,15.47C6.58,14.72 6.23,13.88 6.09,13M7.11,8.53L5.7,7.11C4.8,8.27 4.24,9.61 4.07,11H6.09C6.23,10.13 6.58,9.28 7.11,8.53Z",CoreIcons.mediaFitToView="M20,2H4C2.89,2 2,2.89 2,4V20C2,21.11 2.89,22 4,22H20C21.11,22 22,21.11 22,20V4C22,2.89 21.11,2 20,2M20,20H4V4H20M13,8V10H11V8H9L12,5L15,8M16,15V13H14V11H16V9L19,12M10,13H8V15L5,12L8,9V11H10M15,16L12,19L9,16H11V14H13V16",CoreIcons.mediaSrt="M18,11H16.5V10.5H14.5V13.5H16.5V13H18V14A1,1 0 0,1 17,15H14A1,1 0 0,1 13,14V10A1,1 0 0,1 14,9H17A1,1 0 0,1 18,10M11,11H9.5V10.5H7.5V13.5H9.5V13H11V14A1,1 0 0,1 10,15H7A1,1 0 0,1 6,14V10A1,1 0 0,1 7,9H10A1,1 0 0,1 11,10M19,4H5C3.89,4 3,4.89 3,6V18A2,2 0 0,0 5,20H19A2,2 0 0,0 21,18V6C21,4.89 20.1,4 19,4Z",CoreIcons.mediaAspect="M19,12H17V15H14V17H19V12M7,9H10V7H5V12H7V9M21,3H3A2,2 0 0,0 1,5V19A2,2 0 0,0 3,21H21A2,2 0 0,0 23,19V5A2,2 0 0,0 21,3M21,19H3V5H21V19Z",CoreIcons.mediaZoomer="M15 0.004c-4.97 0-9 4.030-9 9 0 1.52 0.38 2.95 1.046 4.206l-6.258 6.256 0.005 0.005c-0.489 0.481-0.794 1.147-0.794 1.887 0 1.462 1.185 2.647 2.647 2.647 0.739 0 1.406-0.304 1.886-0.794l-0.002-0.001 6.256-6.255c1.257 0.668 2.689 1.050 4.213 1.050 4.97 0 9-4.030 9-9s-4.030-9-9-9zM3.596 22.273c-0.241 0.25-0.576 0.407-0.95 0.407-0.731 0-1.324-0.592-1.324-1.323 0-0.373 0.157-0.707 0.407-0.95l-0.007-0.006 6.050-6.050c0.529 0.713 1.159 1.343 1.87 1.874l-6.047 6.047zM15 16.505c-4.142 0-7.5-3.359-7.5-7.5s3.358-7.5 7.5-7.5c4.141 0 7.5 3.358 7.5 7.5s-3.359 7.5-7.5 7.5zM15 3.754c0.206 0 0.375 0.168 0.375 0.375s-0.169 0.375-0.375 0.375c-2.486 0-4.5 2.015-4.5 4.5 0 0.207-0.168 0.375-0.375 0.375s-0.375-0.168-0.375-0.375c0-2.9 2.35-5.25 5.25-5.25z",CoreIcons.mediaOrient="M7.34,6.41L0.86,12.9L7.35,19.38L13.84,12.9L7.34,6.41M3.69,12.9L7.35,9.24L11,12.9L7.34,16.56L3.69,12.9M19.36,6.64C17.61,4.88 15.3,4 13,4V0.76L8.76,5L13,9.24V6C14.79,6 16.58,6.68 17.95,8.05C20.68,10.78 20.68,15.22 17.95,17.95C16.58,19.32 14.79,20 13,20C12.03,20 11.06,19.79 10.16,19.39L8.67,20.88C10,21.62 11.5,22 13,22C15.3,22 17.61,21.12 19.36,19.36C22.88,15.85 22.88,10.15 19.36,6.64Z",CoreIcons.mediaCrop="M7,17V1H5V5H1V7H5V17A2,2 0 0,0 7,19H17V23H19V19H23V17M17,15H19V7C19,5.89 18.1,5 17,5H9V7H17V15Z",CoreIcons.mediaImage="M19,19H5V5H19M19,3H5A2,2 0 0,0 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V5A2,2 0 0,0 19,3M13.96,12.29L11.21,15.83L9.25,13.47L6.5,17H17.5L13.96,12.29Z",CoreIcons.mediaVideo="M15,8V16H5V8H15M16,6H4A1,1 0 0,0 3,7V17A1,1 0 0,0 4,18H16A1,1 0 0,0 17,17V13.5L21,17.5V6.5L17,10.5V7A1,1 0 0,0 16,6Z",CoreIcons.mediaAudio="M17.3,11C17.3,14 14.76,16.1 12,16.1C9.24,16.1 6.7,14 6.7,11H5C5,14.41 7.72,17.23 11,17.72V21H13V17.72C16.28,17.23 19,14.41 19,11M10.8,4.9C10.8,4.24 11.34,3.7 12,3.7C12.66,3.7 13.2,4.24 13.2,4.9L13.19,11.1C13.19,11.76 12.66,12.3 12,12.3C11.34,12.3 10.8,11.76 10.8,11.1M12,14A3,3 0 0,0 15,11V5A3,3 0 0,0 12,2A3,3 0 0,0 9,5V11A3,3 0 0,0 12,14Z",CoreIcons.mediaVideoBroken="M3.41,1.86L2,3.27L4.73,6H4A1,1 0 0,0 3,7V17A1,1 0 0,0 4,18H16C16.21,18 16.39,17.92 16.55,17.82L19.73,21L21.14,19.59L12.28,10.73L3.41,1.86M5,16V8H6.73L14.73,16H5M15,8V10.61L21,16.61V6.5L17,10.5V7A1,1 0 0,0 16,6H10.39L12.39,8H15Z",CoreIcons.mediaAudioBroken="M19,11C19,12.19 18.66,13.3 18.1,14.28L16.87,13.05C17.14,12.43 17.3,11.74 17.3,11H19M15,11.16L9,5.18V5A3,3 0 0,1 12,2A3,3 0 0,1 15,5V11L15,11.16M4.27,3L21,19.73L19.73,21L15.54,16.81C14.77,17.27 13.91,17.58 13,17.72V21H11V17.72C7.72,17.23 5,14.41 5,11H6.7C6.7,14 9.24,16.1 12,16.1C12.81,16.1 13.6,15.91 14.31,15.58L12.65,13.92L12,14A3,3 0 0,1 9,11V10.28L3,4.27L4.27,3Z",CoreIcons.mediaImageBroken="M22 20.7L3.3 2L2 3.3L3 4.3V19C3 20.1 3.9 21 5 21H19.7L20.7 22L22 20.7M5 19V6.3L12.6 13.9L11.1 15.8L9 13.1L6 17H15.7L17.7 19H5M8.8 5L6.8 3H19C20.1 3 21 3.9 21 5V17.2L19 15.2V5H8.8",CoreIcons.mediaNsfw="M2,5.27L3.28,4L20,20.72L18.73,22L15.65,18.92C14.5,19.3 13.28,19.5 12,19.5C7,19.5 2.73,16.39 1,12C1.69,10.24 2.79,8.69 4.19,7.46L2,5.27M12,9A3,3 0 0,1 15,12C15,12.35 14.94,12.69 14.83,13L11,9.17C11.31,9.06 11.65,9 12,9M12,4.5C17,4.5 21.27,7.61 23,12C22.18,14.08 20.79,15.88 19,17.19L17.58,15.76C18.94,14.82 20.06,13.54 20.82,12C19.17,8.64 15.76,6.5 12,6.5C10.91,6.5 9.84,6.68 8.84,7L7.3,5.47C8.74,4.85 10.33,4.5 12,4.5M3.18,12C4.83,15.36 8.24,17.5 12,17.5C12.69,17.5 13.37,17.43 14,17.29L11.72,15C10.29,14.85 9.15,13.71 9,12.28L5.6,8.87C4.61,9.72 3.78,10.78 3.18,12Z",CoreIcons.mediaSplitter="M3 15V17H5V15M15 19V21H17V19M19 3H5C3.9 3 3 3.9 3 5V9H5V5H19V9H21V5C21 3.9 20.1 3 19 3M21 19H19V21C20.1 21 21 20.1 21 19M1 11V13H23V11M7 19V21H9V19M19 15V17H21V15M11 19V21H13V19M3 19C3 20.1 3.9 21 5 21V19Z",CoreIcons.mediaPlay="M8,5.14V19.14L19,12.14L8,5.14Z",CoreIcons.mediaPause="M14,19H18V5H14M6,19H10V5H6V19Z",CoreIcons.mediaContrast="M12 2A10 10 0 0 0 2 12A10 10 0 0 0 12 22A10 10 0 0 0 22 12A10 10 0 0 0 12 2M12 4A8 8 0 0 1 20 12A8 8 0 0 1 12 20V4Z",CoreIcons.mediaEqs="M7 3H5V9H7V3M19 3H17V13H19V3M3 13H5V21H7V13H9V11H3V13M15 7H13V3H11V7H9V9H15V7M11 21H13V11H11V21M15 15V17H17V21H19V17H21V15H15Z",CoreIcons.mediaCaptionOff="M5,4C4.45,4 4,4.18 3.59,4.57C3.2,4.96 3,5.44 3,6V18C3,18.56 3.2,19.04 3.59,19.43C4,19.82 4.45,20 5,20H19C19.5,20 20,19.81 20.39,19.41C20.8,19 21,18.53 21,18V6C21,5.47 20.8,5 20.39,4.59C20,4.19 19.5,4 19,4H5M4.5,5.5H19.5V18.5H4.5V5.5M7,9C6.7,9 6.47,9.09 6.28,9.28C6.09,9.47 6,9.7 6,10V14C6,14.3 6.09,14.53 6.28,14.72C6.47,14.91 6.7,15 7,15H10C10.27,15 10.5,14.91 10.71,14.72C10.91,14.53 11,14.3 11,14V13H9.5V13.5H7.5V10.5H9.5V11H11V10C11,9.7 10.91,9.47 10.71,9.28C10.5,9.09 10.27,9 10,9H7M14,9C13.73,9 13.5,9.09 13.29,9.28C13.09,9.47 13,9.7 13,10V14C13,14.3 13.09,14.53 13.29,14.72C13.5,14.91 13.73,15 14,15H17C17.3,15 17.53,14.91 17.72,14.72C17.91,14.53 18,14.3 18,14V13H16.5V13.5H14.5V10.5H16.5V11H18V10C18,9.7 17.91,9.47 17.72,9.28C17.53,9.09 17.3,9 17,9H14Z",CoreIcons.mediaCaptionOn="M18,11H16.5V10.5H14.5V13.5H16.5V13H18V14A1,1 0 0,1 17,15H14A1,1 0 0,1 13,14V10A1,1 0 0,1 14,9H17A1,1 0 0,1 18,10M11,11H9.5V10.5H7.5V13.5H9.5V13H11V14A1,1 0 0,1 10,15H7A1,1 0 0,1 6,14V10A1,1 0 0,1 7,9H10A1,1 0 0,1 11,10M19,4H5C3.89,4 3,4.89 3,6V18A2,2 0 0,0 5,20H19A2,2 0 0,0 21,18V6C21,4.89 20.1,4 19,4Z",CoreIcons.mediaChannel="M12,12A3,3 0 0,0 9,15A3,3 0 0,0 12,18A3,3 0 0,0 15,15A3,3 0 0,0 12,12M12,20A5,5 0 0,1 7,15A5,5 0 0,1 12,10A5,5 0 0,1 17,15A5,5 0 0,1 12,20M12,4A2,2 0 0,1 14,6A2,2 0 0,1 12,8C10.89,8 10,7.1 10,6C10,4.89 10.89,4 12,4M17,2H7C5.89,2 5,2.89 5,4V20A2,2 0 0,0 7,22H17A2,2 0 0,0 19,20V4C19,2.89 18.1,2 17,2Z",CoreIcons.mediaVolume0="M3,9H7L12,4V20L7,15H3V9M16.59,12L14,9.41L15.41,8L18,10.59L20.59,8L22,9.41L19.41,12L22,14.59L20.59,16L18,13.41L15.41,16L14,14.59L16.59,12Z",CoreIcons.mediaVolume1="M7,9V15H11L16,20V4L11,9H7Z",CoreIcons.mediaVolume2="M5,9V15H9L14,20V4L9,9M18.5,12C18.5,10.23 17.5,8.71 16,7.97V16C17.5,15.29 18.5,13.76 18.5,12Z",CoreIcons.mediaVolume3="M14,3.23V5.29C16.89,6.15 19,8.83 19,12C19,15.17 16.89,17.84 14,18.7V20.77C18,19.86 21,16.28 21,12C21,7.72 18,4.14 14,3.23M16.5,12C16.5,10.23 15.5,8.71 14,7.97V16C15.5,15.29 16.5,13.76 16.5,12M3,9V15H7L12,20V4L7,9H3Z",CoreIcons.mediaComment="M9,22A1,1 0 0,1 8,21V18H4A2,2 0 0,1 2,16V4C2,2.89 2.9,2 4,2H20A2,2 0 0,1 22,4V16A2,2 0 0,1 20,18H13.9L10.2,21.71C10,21.9 9.75,22 9.5,22V22H9M10,16V19.08L13.08,16H20V4H4V16H10M6,7H18V9H6V7M6,11H15V13H6V11Z",CoreIcons.mediaCommentAdd="M9,22A1,1 0 0,1 8,21V18H4A2,2 0 0,1 2,16V4C2,2.89 2.9,2 4,2H20A2,2 0 0,1 22,4V16A2,2 0 0,1 20,18H13.9L10.2,21.71C10,21.9 9.75,22 9.5,22V22H9M10,16V19.08L13.08,16H20V4H4V16H10M11,6H13V9H16V11H13V14H11V11H8V9H11V6Z"}(CoreIcons||(CoreIcons={}))},"./packages/core/src/typography/Title.tsx":(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{h:()=>Title});var react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/react/jsx-runtime.js"),classnames__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/classnames/index.js"),classnames__WEBPACK_IMPORTED_MODULE_1___default=__webpack_require__.n(classnames__WEBPACK_IMPORTED_MODULE_1__),_hooks_useEffectDebugger__WEBPACK_IMPORTED_MODULE_2__=__webpack_require__("./packages/core/src/hooks/useEffectDebugger.ts"),_utils__WEBPACK_IMPORTED_MODULE_3__=__webpack_require__("./packages/core/src/utils/index.ts"),_types__WEBPACK_IMPORTED_MODULE_4__=__webpack_require__("./packages/core/src/typography/types.ts"),_Typography_module_css__WEBPACK_IMPORTED_MODULE_5__=__webpack_require__("./packages/core/src/typography/Typography.module.css");const Title=({children,className,as,bg,color,size,align,family,...aria})=>{const styles=(0,_hooks_useEffectDebugger__WEBPACK_IMPORTED_MODULE_2__.ZU)((()=>{const s={};return bg&&(s.backgroundColor=(0,_utils__WEBPACK_IMPORTED_MODULE_3__.oU)(bg)),color&&(s.color=(0,_utils__WEBPACK_IMPORTED_MODULE_3__.oU)(color)),align&&(s.textAlign=align),size&&!(size in _types__WEBPACK_IMPORTED_MODULE_4__.m)&&(s.fontSize=size),size&&size in _types__WEBPACK_IMPORTED_MODULE_4__.m&&(s.fontSize=_types__WEBPACK_IMPORTED_MODULE_4__.m[size]),s}),[bg,color,size,align],"Title styles"),E=as??"p";return(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(E,{className:classnames__WEBPACK_IMPORTED_MODULE_1___default()(_Typography_module_css__WEBPACK_IMPORTED_MODULE_5__.A.title,"px-[2px] py-1 truncate whitespace-pre-wrap",className,family&&`font-${family}`,!as&&"text-lg",bg&&(0,_utils__WEBPACK_IMPORTED_MODULE_3__.MN)(bg),color&&(0,_utils__WEBPACK_IMPORTED_MODULE_3__.Iq)(color)),style:styles,...aria,children})};try{Title.displayName="Title",Title.__docgenInfo={description:"Typography title component",displayName:"Title",props:{as:{defaultValue:null,description:"",name:"as",required:!1,type:{name:'ElementType, HTMLHeadingElement>, "h1" | "h2" | "h3" | "h4" | "h5" | "h6">'}},bg:{defaultValue:null,description:"title background",name:"bg",required:!1,type:{name:"string"}},color:{defaultValue:null,description:"title color (CSS color / tailwind color)",name:"color",required:!1,type:{name:"string"}},size:{defaultValue:null,description:"title size (CSS color / tailwind color)",name:"size",required:!1,type:{name:"string | number"}},family:{defaultValue:null,description:"font family",name:"family",required:!1,type:{name:"enum",value:[{value:'"sans"'},{value:'"serif"'},{value:'"mono"'}]}},align:{defaultValue:null,description:"text align",name:"align",required:!1,type:{name:"enum",value:[{value:'"center"'},{value:'"end"'},{value:'"start"'},{value:'"justify"'}]}},className:{defaultValue:null,description:"css classname(s)",name:"className",required:!1,type:{name:"string"}}}},"undefined"!=typeof STORYBOOK_REACT_CLASSES&&(STORYBOOK_REACT_CLASSES["packages/core/src/typography/Title.tsx#Title"]={docgenInfo:Title.__docgenInfo,name:"Title",path:"packages/core/src/typography/Title.tsx#Title"})}catch(__react_docgen_typescript_loader_error){}},"./packages/core/src/typography/types.ts":(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{F:()=>TextSizeMap,m:()=>TitleSizeMap});const TitleSizeMap={xs:"0.875rem",sm:"1.125rem",md:"1.5rem",lg:"1.75rem",xl:"2rem"},TextSizeMap={xs:"0.75rem",sm:"0.875rem",md:"1.125rem",lg:"1.5rem",xl:"1.75rem"}},"./packages/core/src/utils/index.ts":(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{ru:()=>calculateTextHeight,MN:()=>getBgClass,Z1:()=>getBorderClass,oU:()=>getColor,Iq:()=>getColorClass,hr:()=>nodeCheck});const getCssStyle=(element,property)=>getComputedStyle(element).getPropertyValue(property),calculateTextHeight=(element,styleRoot)=>{const clone=element.cloneNode(!0);clone.style.font=getCssStyle(styleRoot??element,"font"),clone.style.width=`${element.offsetWidth}px`,clone.style.padding=getCssStyle(styleRoot??element,"padding"),clone.style.lineHeight=getCssStyle(styleRoot??element,"line-height"),clone.style.letterSpacing=getCssStyle(styleRoot??element,"letter-spacing"),clone.style.webkitLineClamp="unset",clone.style.position="absolute",clone.style.left="-10000%",document.body.appendChild(clone);const height=clone.offsetHeight;return clone.remove(),height};var esm=__webpack_require__("./packages/utilities/dist/esm/index.js");const getColor=color=>{if(color&&(0,esm._o)(color))return color},getBgClass=bg=>{if(bg&&!(0,esm._o)(bg))return`bg-${bg}`},getColorClass=color=>{if(color&&!(0,esm._o)(color))return`text-${color}`},getBorderClass=color=>{if(color&&!(0,esm._o)(color))return`border-${color}`},nodeCheck=(node,...types)=>(0,esm.Gv)(node)&&"type"in node&&types.includes(node.type)},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/components/actionLabel/ActionLabel.module.css":(module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .GnepkPCNzqTqvXTNOvuA > .WuIfYZBNS4hqdiK7wugp {\n --width: 4rem;\n\n width: 0;\n }\n\n .GnepkPCNzqTqvXTNOvuA:not([data-disabled="true"]):hover > .WuIfYZBNS4hqdiK7wugp {\n width: var(--width);\n transition: all cubic-bezier(0.215, 0.61, 0.355, 1) 100ms;\n transition-delay: 500ms;\n }\n}\n',"",{version:3,sources:["webpack://./packages/core/src/components/actionLabel/ActionLabel.module.css"],names:[],mappings:"AAAA;;;;;;;;;;;;;;;;;;;;;EAqBE;;AAEF;IAEI;MACE,aAAa;;MAEb,QAAQ;IACV;;IAEA;MACE,mBAAmB;MACnB,yDAAyD;MACzD,uBAAuB;IACzB;AAEJ",sourcesContent:['/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .actionLabel {\n & > .actions {\n --width: 4rem;\n\n width: 0;\n }\n\n &:not([data-disabled="true"]):hover > .actions {\n width: var(--width);\n transition: all cubic-bezier(0.215, 0.61, 0.355, 1) 100ms;\n transition-delay: 500ms;\n }\n }\n}\n'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={actionLabel:"GnepkPCNzqTqvXTNOvuA",actions:"WuIfYZBNS4hqdiK7wugp"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/components/animations/Animations.module.css":(module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n @keyframes fDTRZjAezfKL2yDt9tDH {\n 0%,\n 25% {\n background-position:\n 0 50%,\n 0 calc(50% - 2px),\n 0 calc(50% + 2px),\n 50% 50%,\n 50% calc(50% - 2px),\n 50% calc(50% + 2px),\n 100% 50%,\n 100% calc(50% - 2px),\n 100% calc(50% + 2px);\n background-size:\n 8px 0,\n 8px 4px,\n 8px 4px,\n 8px 0,\n 8px 4px,\n 8px 4px,\n 8px 0,\n 8px 4px,\n 8px 4px;\n }\n\n 50% {\n background-position:\n 0 50%,\n 0 calc(0% - 2px),\n 0 calc(100% + 2px),\n 50% 50%,\n 50% calc(50% - 2px),\n 50% calc(50% + 2px),\n 100% 50%,\n 100% calc(50% - 2px),\n 100% calc(50% + 2px);\n background-size:\n 8px 100%,\n 8px 4px,\n 8px 4px,\n 8px 0,\n 8px 4px,\n 8px 4px,\n 8px 0,\n 8px 4px,\n 8px 4px;\n }\n\n 75% {\n background-position:\n 0 50%,\n 0 calc(0% - 2px),\n 0 calc(100% + 2px),\n 50% 50%,\n 50% calc(0% - 2px),\n 50% calc(100% + 2px),\n 100% 50%,\n 100% calc(50% - 2px),\n 100% calc(50% + 2px);\n background-size:\n 8px 100%,\n 8px 4px,\n 8px 4px,\n 8px 100%,\n 8px 4px,\n 8px 4px,\n 8px 0,\n 8px 4px,\n 8px 4px;\n }\n\n 95%,\n 100% {\n background-position:\n 0 50%,\n 0 calc(0% - 2px),\n 0 calc(100% + 2px),\n 50% 50%,\n 50% calc(0% - 2px),\n 50% calc(100% + 2px),\n 100% 50%,\n 100% calc(0% - 2px),\n 100% calc(100% + 2px);\n background-size:\n 8px 100%,\n 8px 4px,\n 8px 4px,\n 8px 100%,\n 8px 4px,\n 8px 4px,\n 8px 100%,\n 8px 4px,\n 8px 4px;\n }\n }\n\n .CwdcYDurMBW31qoLYgyX {\n --c: linear-gradient(currentcolor 0 0);\n --r1: radial-gradient(farthest-side at bottom, currentcolor 93%, #0000);\n --r2: radial-gradient(farthest-side at top, currentcolor 93%, #0000);\n\n aspect-ratio: 1;\n background: var(--c), var(--r1), var(--r2), var(--c), var(--r1), var(--r2),\n var(--c), var(--r1), var(--r2);\n background-repeat: no-repeat;\n animation: fDTRZjAezfKL2yDt9tDH 1s infinite alternate;\n }\n\n @keyframes IHA9I8fpRzPMbdlsXAYC {\n to {\n transform: rotate(1turn);\n }\n }\n\n .wLyQ9xcE373AT8l_oqLm {\n --b: 8px;\n\n aspect-ratio: 1;\n\n background: conic-gradient(#0000 10%, currentcolor) content-box;\n border-radius: 50%;\n\n -webkit-mask: repeating-conic-gradient(\n #0000 0deg,\n #000 1deg 20deg,\n #0000 21deg 36deg\n ),\n radial-gradient(\n farthest-side,\n #0000 calc(100% - var(--b) - 1px),\n #000 calc(100% - var(--b))\n );\n\n mask: repeating-conic-gradient(\n #0000 0deg,\n #000 1deg 20deg,\n #0000 21deg 36deg\n ),\n radial-gradient(\n farthest-side,\n #0000 calc(100% - var(--b) - 1px),\n #000 calc(100% - var(--b))\n );\n\n animation: IHA9I8fpRzPMbdlsXAYC 2s infinite steps(10);\n\n -webkit-mask-composite: destination-in;\n\n mask-composite: destination-in;\n -webkit-mask-composite: source-in, xor;\n mask-composite: intersect;\n }\n\n @keyframes Zdk1Gm5VjXqdOgDyWX7N {\n from {\n transform: translateX(calc(-100% * var(--multiplier)));\n }\n\n to {\n transform: translateX(calc(100% * var(--multiplier)));\n }\n }\n\n .Zdk1Gm5VjXqdOgDyWX7N {\n --multiplier: 1;\n }\n\n .Zdk1Gm5VjXqdOgDyWX7N > div {\n height: calc(0.125rem + 2px);\n }\n\n .Zdk1Gm5VjXqdOgDyWX7N > div::after {\n animation: Zdk1Gm5VjXqdOgDyWX7N 1s cubic-bezier(0.65, 0, 0.45, 1) infinite;\n }\n\n [dir="rtl"] .Zdk1Gm5VjXqdOgDyWX7N {\n --multiplier: -1;\n }\n\n @keyframes l1as8GLPRCMwfHezx8cl {\n 100% {\n stroke-dashoffset: 0;\n }\n }\n\n @keyframes q9vrPJjOni5h0lb8JKf2 {\n 0%,\n 100% {\n transform: none;\n }\n\n 50% {\n transform: scale3d(1.1, 1.1, 1);\n }\n }\n\n @keyframes nu7ornrP9CRxymM0JEHR {\n 100% {\n box-shadow: inset 0 0 0 1em currentcolor;\n }\n }\n\n .Xst7xCffGZZ2BbE0322f {\n width: 1.5em;\n height: 1.5em;\n\n color: var(--primary);\n\n box-shadow: inset 0 0 0 currentcolor;\n\n fill: transparent;\n stroke-miterlimit: 10;\n stroke-width: 4px;\n\n animation:\n nu7ornrP9CRxymM0JEHR 0.4s ease-in-out 0.4s forwards,\n q9vrPJjOni5h0lb8JKf2 0.3s ease-in-out 0.9s both;\n animation-delay: 0.75s;\n }\n\n .Xst7xCffGZZ2BbE0322f .VlzTCqx3XTIT5h6kd0Vx {\n fill: transparent;\n stroke: currentcolor;\n stroke-dasharray: 166;\n stroke-dashoffset: 166;\n stroke-miterlimit: 10;\n stroke-width: 8px;\n\n animation: l1as8GLPRCMwfHezx8cl 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;\n animation-delay: 0.25s;\n }\n\n .Xst7xCffGZZ2BbE0322f .hRvJtG0ixDHgbOz17nkd {\n transform-origin: 50% 50%;\n\n stroke: currentcolor;\n stroke-dasharray: 48;\n stroke-dashoffset: 48;\n\n animation: l1as8GLPRCMwfHezx8cl 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;\n animation-delay: 0.75s;\n }\n}\n',"",{version:3,sources:["webpack://./packages/core/src/components/animations/Animations.module.css"],names:[],mappings:"AAAA;;;;;;;;;;;;;;;;;;;;;EAqBE;;AAEF;EACE;IACE;;MAEE;;;;;;;;;4BASsB;MACtB;;;;;;;;;eASS;IACX;;IAEA;MACE;;;;;;;;;4BASsB;MACtB;;;;;;;;;eASS;IACX;;IAEA;MACE;;;;;;;;;4BASsB;MACtB;;;;;;;;;eASS;IACX;;IAEA;;MAEE;;;;;;;;;6BASuB;MACvB;;;;;;;;;eASS;IACX;EACF;;EAEA;IACE,sCAAsC;IACtC,uEAAuE;IACvE,oEAAoE;;IAEpE,eAAe;IACf;oCACgC;IAChC,4BAA4B;IAC5B,qDAAmC;EACrC;;EAEA;IACE;MACE,wBAAwB;IAC1B;EACF;;EAEA;IACE,QAAQ;;IAER,eAAe;;IAEf,+DAA+D;IAC/D,kBAAkB;;IAElB;;;;;;;;;OASG;;YATH;;;;;;;;;OASG;;IAEH,qDAAmC;;IAEnC,sCAA8B;;YAA9B,8BAA8B;IAC9B,sCAAyB;YAAzB,yBAAyB;EAC3B;;EAEA;IACE;MACE,sDAAsD;IACxD;;IAEA;MACE,qDAAqD;IACvD;EACF;;EAEA;IACE,eAAe;EAajB;;IAXE;MACE,4BAA4B;IAK9B;;MAHE;QACE,0EAA4D;MAC9D;;IAGF;MACE,gBAAgB;IAClB;;EAGF;IACE;MACE,oBAAoB;IACtB;EACF;;EAEA;IACE;;MAEE,eAAe;IACjB;;IAEA;MACE,+BAA+B;IACjC;EACF;;EAEA;IACE;MACE,wCAAwC;IAC1C;EACF;;EAEA;IACE,YAAY;IACZ,aAAa;;IAEb,qBAAoC;;IAEpC,oCAAoC;;IAEpC,iBAAiB;IACjB,qBAAqB;IACrB,iBAAiB;;IAEjB;;qDAEwC;IACxC,sBAAsB;EAwBxB;;IAtBE;MACE,iBAAiB;MACjB,oBAAoB;MACpB,qBAAqB;MACrB,sBAAsB;MACtB,qBAAqB;MACrB,iBAAiB;;MAEjB,4EAAoE;MACpE,sBAAsB;IACxB;;IAEA;MACE,yBAAyB;;MAEzB,oBAAoB;MACpB,oBAAoB;MACpB,qBAAqB;;MAErB,iFAAyE;MACzE,sBAAsB;IACxB;AAEJ",sourcesContent:['/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n @keyframes l2 {\n 0%,\n 25% {\n background-position:\n 0 50%,\n 0 calc(50% - 2px),\n 0 calc(50% + 2px),\n 50% 50%,\n 50% calc(50% - 2px),\n 50% calc(50% + 2px),\n 100% 50%,\n 100% calc(50% - 2px),\n 100% calc(50% + 2px);\n background-size:\n 8px 0,\n 8px 4px,\n 8px 4px,\n 8px 0,\n 8px 4px,\n 8px 4px,\n 8px 0,\n 8px 4px,\n 8px 4px;\n }\n\n 50% {\n background-position:\n 0 50%,\n 0 calc(0% - 2px),\n 0 calc(100% + 2px),\n 50% 50%,\n 50% calc(50% - 2px),\n 50% calc(50% + 2px),\n 100% 50%,\n 100% calc(50% - 2px),\n 100% calc(50% + 2px);\n background-size:\n 8px 100%,\n 8px 4px,\n 8px 4px,\n 8px 0,\n 8px 4px,\n 8px 4px,\n 8px 0,\n 8px 4px,\n 8px 4px;\n }\n\n 75% {\n background-position:\n 0 50%,\n 0 calc(0% - 2px),\n 0 calc(100% + 2px),\n 50% 50%,\n 50% calc(0% - 2px),\n 50% calc(100% + 2px),\n 100% 50%,\n 100% calc(50% - 2px),\n 100% calc(50% + 2px);\n background-size:\n 8px 100%,\n 8px 4px,\n 8px 4px,\n 8px 100%,\n 8px 4px,\n 8px 4px,\n 8px 0,\n 8px 4px,\n 8px 4px;\n }\n\n 95%,\n 100% {\n background-position:\n 0 50%,\n 0 calc(0% - 2px),\n 0 calc(100% + 2px),\n 50% 50%,\n 50% calc(0% - 2px),\n 50% calc(100% + 2px),\n 100% 50%,\n 100% calc(0% - 2px),\n 100% calc(100% + 2px);\n background-size:\n 8px 100%,\n 8px 4px,\n 8px 4px,\n 8px 100%,\n 8px 4px,\n 8px 4px,\n 8px 100%,\n 8px 4px,\n 8px 4px;\n }\n }\n\n .bars {\n --c: linear-gradient(currentcolor 0 0);\n --r1: radial-gradient(farthest-side at bottom, currentcolor 93%, #0000);\n --r2: radial-gradient(farthest-side at top, currentcolor 93%, #0000);\n\n aspect-ratio: 1;\n background: var(--c), var(--r1), var(--r2), var(--c), var(--r1), var(--r2),\n var(--c), var(--r1), var(--r2);\n background-repeat: no-repeat;\n animation: l2 1s infinite alternate;\n }\n\n @keyframes l4 {\n to {\n transform: rotate(1turn);\n }\n }\n\n .spinner {\n --b: 8px;\n\n aspect-ratio: 1;\n\n background: conic-gradient(#0000 10%, currentcolor) content-box;\n border-radius: 50%;\n\n mask: repeating-conic-gradient(\n #0000 0deg,\n #000 1deg 20deg,\n #0000 21deg 36deg\n ),\n radial-gradient(\n farthest-side,\n #0000 calc(100% - var(--b) - 1px),\n #000 calc(100% - var(--b))\n );\n\n animation: l4 2s infinite steps(10);\n\n mask-composite: destination-in;\n mask-composite: intersect;\n }\n\n @keyframes loader {\n from {\n transform: translateX(calc(-100% * var(--multiplier)));\n }\n\n to {\n transform: translateX(calc(100% * var(--multiplier)));\n }\n }\n\n .loader {\n --multiplier: 1;\n\n & > div {\n height: calc(0.125rem + 2px);\n\n &::after {\n animation: loader 1s cubic-bezier(0.65, 0, 0.45, 1) infinite;\n }\n }\n\n :global([dir="rtl"]) & {\n --multiplier: -1;\n }\n }\n\n @keyframes check-stroke {\n 100% {\n stroke-dashoffset: 0;\n }\n }\n\n @keyframes check-scale {\n 0%,\n 100% {\n transform: none;\n }\n\n 50% {\n transform: scale3d(1.1, 1.1, 1);\n }\n }\n\n @keyframes check-fill {\n 100% {\n box-shadow: inset 0 0 0 1em currentcolor;\n }\n }\n\n .checkAnimation {\n width: 1.5em;\n height: 1.5em;\n\n color: theme(colors.primary.DEFAULT);\n\n box-shadow: inset 0 0 0 currentcolor;\n\n fill: transparent;\n stroke-miterlimit: 10;\n stroke-width: 4px;\n\n animation:\n check-fill 0.4s ease-in-out 0.4s forwards,\n check-scale 0.3s ease-in-out 0.9s both;\n animation-delay: 0.75s;\n\n & .circlePart {\n fill: transparent;\n stroke: currentcolor;\n stroke-dasharray: 166;\n stroke-dashoffset: 166;\n stroke-miterlimit: 10;\n stroke-width: 8px;\n\n animation: check-stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;\n animation-delay: 0.25s;\n }\n\n & .iconPart {\n transform-origin: 50% 50%;\n\n stroke: currentcolor;\n stroke-dasharray: 48;\n stroke-dashoffset: 48;\n\n animation: check-stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;\n animation-delay: 0.75s;\n }\n }\n}\n'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={bars:"CwdcYDurMBW31qoLYgyX",l2:"fDTRZjAezfKL2yDt9tDH",spinner:"wLyQ9xcE373AT8l_oqLm",l4:"IHA9I8fpRzPMbdlsXAYC",loader:"Zdk1Gm5VjXqdOgDyWX7N",checkAnimation:"Xst7xCffGZZ2BbE0322f","check-fill":"nu7ornrP9CRxymM0JEHR","check-scale":"q9vrPJjOni5h0lb8JKf2",circlePart:"VlzTCqx3XTIT5h6kd0Vx","check-stroke":"l1as8GLPRCMwfHezx8cl",iconPart:"hRvJtG0ixDHgbOz17nkd"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/components/avatar/Avatar.module.css":(module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .xDeriZsuSTrbYfdL8zXJ {\n width: 1em;\n height: 1em;\n\n vertical-align: -0.125em;\n\n border-radius: var(--rounding);\n box-shadow: 0 0 1px color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 65%, color(from var(--tint) srgb r g b / 1));\n }\n\n .xDeriZsuSTrbYfdL8zXJ > i,\n .xDeriZsuSTrbYfdL8zXJ > svg,\n .xDeriZsuSTrbYfdL8zXJ > img {\n pointer-events: none;\n\n overflow: hidden;\n display: block;\n\n width: 1em;\n height: 1em;\n\n line-height: 1;\n\n -o-object-fit: cover;\n\n object-fit: cover;\n background-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 90%, color(from var(--tint) srgb r g b / 1));\n border-radius: inherit;\n\n fill: currentcolor;\n }\n\n .xDeriZsuSTrbYfdL8zXJ > i::before {\n line-height: 1;\n }\n\n .xDeriZsuSTrbYfdL8zXJ > .vbOAyzgYBrAiJW404xYA {\n z-index: -1;\n }\n .oZstpGXzq5pNcZntU_9p > .xDeriZsuSTrbYfdL8zXJ {\n box-shadow:\n 0 0 0 1px color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 80%, color(from var(--tint) srgb r g b / 1)),\n 0 0 0 0.125em var(--fabric-bg);\n }\n\n .oZstpGXzq5pNcZntU_9p > .xDeriZsuSTrbYfdL8zXJ:not(:first-child) {\n margin-inline-start: -0.125em;\n }\n\n .oZstpGXzq5pNcZntU_9p .YkOM7xZVhijSs5SNuWgQ {\n width: 1em;\n height: 1em;\n font-size: inherit;\n border-radius: inherit;\n }\n}\n\n@layer util {\n .oZstpGXzq5pNcZntU_9p > .xDeriZsuSTrbYfdL8zXJ {\n font-size: inherit;\n border-radius: inherit;\n }\n}\n',"",{version:3,sources:["webpack://./packages/core/src/components/avatar/Avatar.module.css"],names:[],mappings:"AAAA;;;;;;;;;;;;;;;;;;;;;EAqBE;;AAEF;EACE;IACE,UAAU;IACV,WAAW;;IAEX,wBAAwB;;IAExB,8BAA8B;IAC9B,+HAA2C;EA6B7C;;IA3BE;;;MAGE,oBAAoB;;MAEpB,gBAAgB;MAChB,cAAc;;MAEd,UAAU;MACV,WAAW;;MAEX,cAAc;;MAEd,oBAAiB;;SAAjB,iBAAiB;MACjB,6HAA+C;MAC/C,sBAAsB;;MAEtB,kBAAkB;IACpB;;IAEA;MACE,cAAc;IAChB;;IAEA;MACE,WAAW;IACb;IAIA;MACE;;sCAEgC;IAKlC;;MAHE;QACE,6BAA6B;MAC/B;;IAGF;MACE,UAAU;MACV,WAAW;MACX,kBAAkB;MAClB,sBAAsB;IACxB;AAEJ;;AAEA;IAEI;MACE,kBAAkB;MAClB,sBAAsB;IACxB;AAEJ",sourcesContent:['/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .avatar {\n width: 1em;\n height: 1em;\n\n vertical-align: -0.125em;\n\n border-radius: var(--rounding);\n box-shadow: 0 0 1px theme(borderColor.base);\n\n & > i,\n & > svg,\n & > img {\n pointer-events: none;\n\n overflow: hidden;\n display: block;\n\n width: 1em;\n height: 1em;\n\n line-height: 1;\n\n object-fit: cover;\n background-color: theme(backgroundColor.dimmed);\n border-radius: inherit;\n\n fill: currentcolor;\n }\n\n & > i::before {\n line-height: 1;\n }\n\n & > .imagePlaceholder {\n z-index: -1;\n }\n }\n\n .avatarGroup {\n & > .avatar {\n box-shadow:\n 0 0 0 1px theme(borderColor.muted),\n 0 0 0 0.125em var(--fabric-bg);\n\n &:not(:first-child) {\n margin-inline-start: -0.125em;\n }\n }\n\n & .avatarGroup--extra {\n width: 1em;\n height: 1em;\n font-size: inherit;\n border-radius: inherit;\n }\n }\n}\n\n@layer util {\n .avatarGroup {\n & > .avatar {\n font-size: inherit;\n border-radius: inherit;\n }\n }\n}\n'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={avatar:"xDeriZsuSTrbYfdL8zXJ",imagePlaceholder:"vbOAyzgYBrAiJW404xYA",avatarGroup:"oZstpGXzq5pNcZntU_9p","avatarGroup--extra":"YkOM7xZVhijSs5SNuWgQ"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/components/badge/Badge.module.css":(module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n @keyframes FjnrMpPUQwZhZ44cVS95 {\n 0% {\n transform: scale(1);\n opacity: 0.7;\n }\n\n 100% {\n transform: scale(3);\n opacity: 0;\n }\n }\n\n .Ue5BMYnH0MXHteos6uKj {\n --tw-bg-opacity: 1;\n\n box-sizing: content-box;\n color: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 1) 95%, color(from var(--tint) srgb r g b / 1));\n background-color: color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n outline: 0.5px solid color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 99%, color(from var(--tint) srgb r g b / 1));\n }\n\n .Ue5BMYnH0MXHteos6uKj > span {\n font-size: 0.625em;\n font-weight: 500;\n line-height: 1;\n vertical-align: 0.125em;\n }\n\n .Ue5BMYnH0MXHteos6uKj[data-ping="true"] {\n --translate: calc(50%);\n }\n\n .Ue5BMYnH0MXHteos6uKj[data-ping="true"]::before {\n content: "";\n\n position: absolute;\n z-index: -1;\n inset: 0;\n\n background-color: inherit;\n border-radius: 999px;\n\n animation: FjnrMpPUQwZhZ44cVS95 1s linear infinite;\n }\n\n .Ue5BMYnH0MXHteos6uKj:not([data-ping="true"]) {\n --translate: 0.75rem;\n\n min-width: 1em;\n }\n\n .Ue5BMYnH0MXHteos6uKj[data-placement="top"] {\n top: 0;\n left: 50%;\n transform: translate(-50%, -50%);\n }\n\n .Ue5BMYnH0MXHteos6uKj[data-placement="top-start"] {\n top: 0;\n inset-inline-start: 0;\n }\n\n [dir="ltr"] .Ue5BMYnH0MXHteos6uKj[data-placement="top-start"] {\n transform: translate(calc(var(--translate) * -1), -50%);\n }\n\n [dir="rtl"] .Ue5BMYnH0MXHteos6uKj[data-placement="top-start"] {\n transform: translate(calc(var(--translate) * 1), -50%);\n }\n\n .Ue5BMYnH0MXHteos6uKj[data-placement="top-end"] {\n top: 0;\n inset-inline-end: 0;\n }\n\n [dir="ltr"] .Ue5BMYnH0MXHteos6uKj[data-placement="top-end"] {\n transform: translate(calc(var(--translate) * 1), -50%);\n }\n\n [dir="rtl"] .Ue5BMYnH0MXHteos6uKj[data-placement="top-end"] {\n transform: translate(calc(var(--translate) * -1), -50%);\n }\n\n .Ue5BMYnH0MXHteos6uKj[data-placement="bottom"] {\n bottom: 0;\n left: 50%;\n transform: translate(-50%, 50%);\n }\n\n .Ue5BMYnH0MXHteos6uKj[data-placement="bottom-start"] {\n bottom: 0;\n inset-inline-start: 0;\n }\n\n [dir="ltr"] .Ue5BMYnH0MXHteos6uKj[data-placement="bottom-start"] {\n transform: translate(calc(var(--translate) * -1), -50%);\n }\n\n [dir="rtl"] .Ue5BMYnH0MXHteos6uKj[data-placement="bottom-start"] {\n transform: translate(calc(var(--translate) * 1), -50%);\n }\n\n .Ue5BMYnH0MXHteos6uKj[data-placement="bottom-end"] {\n bottom: 0;\n inset-inline-end: 0;\n }\n\n [dir="ltr"] .Ue5BMYnH0MXHteos6uKj[data-placement="bottom-end"] {\n transform: translate(calc(var(--translate) * 1), -50%);\n }\n\n [dir="rtl"] .Ue5BMYnH0MXHteos6uKj[data-placement="bottom-end"] {\n transform: translate(calc(var(--translate) * -1), -50%);\n }\n\n .Ue5BMYnH0MXHteos6uKj[data-placement="start"] {\n top: 50%;\n inset-inline-start: 0;\n }\n\n [dir="ltr"] .Ue5BMYnH0MXHteos6uKj[data-placement="start"] {\n transform: translate(-50%, -50%);\n }\n\n [dir="rtl"] .Ue5BMYnH0MXHteos6uKj[data-placement="start"] {\n transform: translate(50%, -50%);\n }\n\n .Ue5BMYnH0MXHteos6uKj[data-placement="end"] {\n top: 50%;\n inset-inline-end: 0;\n }\n\n [dir="ltr"] .Ue5BMYnH0MXHteos6uKj[data-placement="end"] {\n transform: translate(50%, -50%);\n }\n\n [dir="rtl"] .Ue5BMYnH0MXHteos6uKj[data-placement="end"] {\n transform: translate(-50%, -50%);\n }\n}\n',"",{version:3,sources:["webpack://./packages/core/src/components/badge/Badge.module.css"],names:[],mappings:"AAAA;;;;;;;;;;;;;;;;;;;;;EAqBE;;AAEF;EACE;IACE;MACE,mBAAmB;MACnB,YAAY;IACd;;IAEA;MACE,mBAAmB;MACnB,UAAU;IACZ;EACF;;EAEA;IACE,kBAAkB;;IAElB,uBAAuB;IACvB,oHAA4B;IAC5B,mKAA6D;IAC7D,gIAAgD;EAyHlD;;IAvHE;MACE,kBAAkB;MAClB,gBAAgB;MAChB,cAAc;MACd,uBAAuB;IACzB;;IAEA;MACE,sBAAsB;IAcxB;;MAZE;QACE,WAAW;;QAEX,kBAAkB;QAClB,WAAW;QACX,QAAQ;;QAER,yBAAyB;QACzB,oBAAoB;;QAEpB,kDAAoC;MACtC;;IAGF;MACE,oBAAoB;;MAEpB,cAAc;IAChB;;IAEA;MACE,MAAM;MACN,SAAS;MACT,gCAAgC;IAClC;;IAEA;MACE,MAAM;MACN,qBAAqB;IASvB;;MAPE;QACE,uDAAuD;MACzD;;MAEA;QACE,sDAAsD;MACxD;;IAGF;MACE,MAAM;MACN,mBAAmB;IASrB;;MAPE;QACE,sDAAsD;MACxD;;MAEA;QACE,uDAAuD;MACzD;;IAGF;MACE,SAAS;MACT,SAAS;MACT,+BAA+B;IACjC;;IAEA;MACE,SAAS;MACT,qBAAqB;IASvB;;MAPE;QACE,uDAAuD;MACzD;;MAEA;QACE,sDAAsD;MACxD;;IAGF;MACE,SAAS;MACT,mBAAmB;IASrB;;MAPE;QACE,sDAAsD;MACxD;;MAEA;QACE,uDAAuD;MACzD;;IAGF;MACE,QAAQ;MACR,qBAAqB;IASvB;;MAPE;QACE,gCAAgC;MAClC;;MAEA;QACE,+BAA+B;MACjC;;IAGF;MACE,QAAQ;MACR,mBAAmB;IASrB;;MAPE;QACE,+BAA+B;MACjC;;MAEA;QACE,gCAAgC;MAClC;AAGN",sourcesContent:['/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n @keyframes pinger {\n 0% {\n transform: scale(1);\n opacity: 0.7;\n }\n\n 100% {\n transform: scale(3);\n opacity: 0;\n }\n }\n\n .badge {\n --tw-bg-opacity: 1;\n\n box-sizing: content-box;\n color: theme(textColor.base);\n background-color: theme(colors.tint.200/var(--tw-bg-opacity));\n outline: 0.5px solid theme(backgroundColor.base);\n\n & > span {\n font-size: 0.625em;\n font-weight: 500;\n line-height: 1;\n vertical-align: 0.125em;\n }\n\n &[data-ping="true"] {\n --translate: calc(50%);\n\n &::before {\n content: "";\n\n position: absolute;\n z-index: -1;\n inset: 0;\n\n background-color: inherit;\n border-radius: 999px;\n\n animation: pinger 1s linear infinite;\n }\n }\n\n &:not([data-ping="true"]) {\n --translate: 0.75rem;\n\n min-width: 1em;\n }\n\n &[data-placement="top"] {\n top: 0;\n left: 50%;\n transform: translate(-50%, -50%);\n }\n\n &[data-placement="top-start"] {\n top: 0;\n inset-inline-start: 0;\n\n :global([dir="ltr"]) & {\n transform: translate(calc(var(--translate) * -1), -50%);\n }\n\n :global([dir="rtl"]) & {\n transform: translate(calc(var(--translate) * 1), -50%);\n }\n }\n\n &[data-placement="top-end"] {\n top: 0;\n inset-inline-end: 0;\n\n :global([dir="ltr"]) & {\n transform: translate(calc(var(--translate) * 1), -50%);\n }\n\n :global([dir="rtl"]) & {\n transform: translate(calc(var(--translate) * -1), -50%);\n }\n }\n\n &[data-placement="bottom"] {\n bottom: 0;\n left: 50%;\n transform: translate(-50%, 50%);\n }\n\n &[data-placement="bottom-start"] {\n bottom: 0;\n inset-inline-start: 0;\n\n :global([dir="ltr"]) & {\n transform: translate(calc(var(--translate) * -1), -50%);\n }\n\n :global([dir="rtl"]) & {\n transform: translate(calc(var(--translate) * 1), -50%);\n }\n }\n\n &[data-placement="bottom-end"] {\n bottom: 0;\n inset-inline-end: 0;\n\n :global([dir="ltr"]) & {\n transform: translate(calc(var(--translate) * 1), -50%);\n }\n\n :global([dir="rtl"]) & {\n transform: translate(calc(var(--translate) * -1), -50%);\n }\n }\n\n &[data-placement="start"] {\n top: 50%;\n inset-inline-start: 0;\n\n :global([dir="ltr"]) & {\n transform: translate(-50%, -50%);\n }\n\n :global([dir="rtl"]) & {\n transform: translate(50%, -50%);\n }\n }\n\n &[data-placement="end"] {\n top: 50%;\n inset-inline-end: 0;\n\n :global([dir="ltr"]) & {\n transform: translate(50%, -50%);\n }\n\n :global([dir="rtl"]) & {\n transform: translate(-50%, -50%);\n }\n }\n }\n}\n'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={badge:"Ue5BMYnH0MXHteos6uKj",pinger:"FjnrMpPUQwZhZ44cVS95"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/components/breadcrumbs/Breadcrumbs.module.css":(module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .IU9WAMWhHs4Cc1NuewrX,\n .Il6X6sLn94ps4kW1cmaI {\n --color: var(--primary);\n }\n\n .IU9WAMWhHs4Cc1NuewrX[data-color="accent"], .Il6X6sLn94ps4kW1cmaI[data-color="accent"] {\n --color: var(--accent);\n }\n\n .IU9WAMWhHs4Cc1NuewrX[data-color="info"], .Il6X6sLn94ps4kW1cmaI[data-color="info"] {\n --color: #00bfff;\n }\n\n .IU9WAMWhHs4Cc1NuewrX[data-color="danger"], .Il6X6sLn94ps4kW1cmaI[data-color="danger"] {\n --color: #f24c3d;\n }\n\n .IU9WAMWhHs4Cc1NuewrX[data-color="success"], .Il6X6sLn94ps4kW1cmaI[data-color="success"] {\n --color: #44bc69;\n }\n\n .IU9WAMWhHs4Cc1NuewrX[data-color="warning"], .Il6X6sLn94ps4kW1cmaI[data-color="warning"] {\n --color: #edaa00;\n }\n\n .IU9WAMWhHs4Cc1NuewrX .link, .Il6X6sLn94ps4kW1cmaI .link {\n padding: 0.25em 0.5em;\n text-decoration: none;\n }\n :is(.Il6X6sLn94ps4kW1cmaI,.IU9WAMWhHs4Cc1NuewrX[data-variant="classic"]) .link {\n color: color-mix(in lab, var(--color) 90%, var(--fabric-text));\n }\n\n :is(.Il6X6sLn94ps4kW1cmaI,.IU9WAMWhHs4Cc1NuewrX[data-variant="classic"]) .link:hover {\n color: color-mix(in lab, var(--color) 99%, var(--fabric-text));\n text-decoration: underline;\n background-color: color-mix(in lab, color(from var(--tint) srgb r g b / 50%) 10%, color(from var(--fabric-bg) srgb r g b / 50%));\n }\n\n :is(.Il6X6sLn94ps4kW1cmaI,.IU9WAMWhHs4Cc1NuewrX[data-variant="classic"]) .link:active {\n color: color-mix(in lab, var(--color) 85%, var(--fabric-text));\n background-color: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n }\n .IU9WAMWhHs4Cc1NuewrX[data-variant="classic"] > .A6_FX4O6EGspZSstNRWA {\n list-style: none;\n }\n\n .IU9WAMWhHs4Cc1NuewrX[data-variant="classic"] > .A6_FX4O6EGspZSstNRWA::after {\n content: attr(data-separator);\n display: inline-block;\n margin-inline: 0.125em;\n color: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n }\n\n .IU9WAMWhHs4Cc1NuewrX[data-variant="classic"] > .A6_FX4O6EGspZSstNRWA:last-child::after {\n content: unset;\n }\n\n [data-ref="viewport"] .IU9WAMWhHs4Cc1NuewrX {\n grid-area: crumbbar;\n padding: 0 0.25rem;\n }\n}\n\n@layer var {\n .IU9WAMWhHs4Cc1NuewrX[data-variant="classic"] > .link {\n overflow: hidden;\n max-width: 24rem;\n text-overflow: ellipsis;\n white-space: nowrap;\n }\n\n .IU9WAMWhHs4Cc1NuewrX[data-variant="classic"] > .A6_FX4O6EGspZSstNRWA:last-child > .link {\n pointer-events: none;\n color: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n }\n .IU9WAMWhHs4Cc1NuewrX[data-variant="modern"] > .A6_FX4O6EGspZSstNRWA {\n --linkcolor: color-mix(in lab, var(--color) 50%, var(--fabric-bg));\n\n position: relative;\n list-style: none;\n border-radius: var(--rounding);\n }\n\n .IU9WAMWhHs4Cc1NuewrX[data-variant="modern"] > .A6_FX4O6EGspZSstNRWA:last-child {\n --color: color(from var(--tint) srgb r g b / 1);\n\n pointer-events: none;\n }\n\n .IU9WAMWhHs4Cc1NuewrX[data-variant="modern"] > .A6_FX4O6EGspZSstNRWA:first-child > .link {\n border-start-start-radius: var(--rounding);\n border-end-start-radius: var(--rounding);\n }\n\n .IU9WAMWhHs4Cc1NuewrX[data-variant="modern"] > .A6_FX4O6EGspZSstNRWA:last-child > .link {\n border-start-end-radius: var(--rounding);\n border-end-end-radius: var(--rounding);\n }\n\n .IU9WAMWhHs4Cc1NuewrX[data-variant="modern"] > .A6_FX4O6EGspZSstNRWA:not(:first-child) {\n margin-inline-start: -1em;\n }\n\n .IU9WAMWhHs4Cc1NuewrX[data-variant="modern"] > .A6_FX4O6EGspZSstNRWA:not(:first-child)::before {\n content: "";\n\n display: inline-block;\n\n vertical-align: middle;\n\n border: 0.625em solid transparent;\n border-block-color: var(--linkcolor);\n border-inline-end-color: var(--linkcolor);\n }\n\n .IU9WAMWhHs4Cc1NuewrX[data-variant="modern"] > .A6_FX4O6EGspZSstNRWA:not(:first-child) > .link {\n margin-inline-start: -0.625em;\n }\n .IU9WAMWhHs4Cc1NuewrX[data-variant="modern"] > .A6_FX4O6EGspZSstNRWA:not(:last-child)::after {\n content: "";\n\n display: inline-block;\n\n vertical-align: middle;\n\n border: 0.625em solid transparent;\n border-inline-start-color: var(--linkcolor);\n }\n\n .IU9WAMWhHs4Cc1NuewrX[data-variant="modern"] > .A6_FX4O6EGspZSstNRWA > .link {\n display: inline-block;\n\n padding: 0.125em 0.5em;\n\n line-height: 1;\n color: color-mix(in lab, var(--color) 50%, var(--fabric-text));\n vertical-align: middle;\n\n background-color: var(--linkcolor);\n }\n\n .IU9WAMWhHs4Cc1NuewrX[data-variant="modern"] > .A6_FX4O6EGspZSstNRWA:hover {\n --linkcolor: color-mix(in lab, var(--color) 65%, var(--fabric-bg));\n }\n\n .IU9WAMWhHs4Cc1NuewrX[data-variant="modern"] > .A6_FX4O6EGspZSstNRWA:active {\n --linkcolor: color-mix(in lab, var(--color) 35%, var(--fabric-bg));\n }\n}\n',"",{version:3,sources:["webpack://./packages/core/src/components/breadcrumbs/Breadcrumbs.module.css"],names:[],mappings:"AAAA;;;;;;;;;;;;;;;;;;;;;EAqBE;;AAEF;EACE;;IAEE,uBAAsC;EA0BxC;;IAxBE;MACE,sBAAqC;IACvC;;IAEA;MACE,gBAAmC;IACrC;;IAEA;MACE,gBAAqC;IACvC;;IAEA;MACE,gBAAsC;IACxC;;IAEA;MACE,gBAAsC;IACxC;;IAEA;MACE,qBAAqB;MACrB,qBAAqB;IACvB;IAKA;MACE,8DAA8D;IAChE;;IAEA;MACE,8DAA8D;MAC9D,0BAA0B;MAC1B,iIAA2C;IAC7C;;IAEA;MACE,8DAA8D;MAC9D,6HAAuC;IACzC;IAIA;MACE,gBAAgB;IAYlB;;MAVE;QACE,6BAA6B;QAC7B,qBAAqB;QACrB,sBAAsB;QACtB,kHAA6B;MAC/B;;MAEA;QACE,cAAc;MAChB;;EAIJ;IACE,mBAAmB;IACnB,kBAAkB;EACpB;AACF;;AAEA;IAEI;MACE,gBAAgB;MAChB,gBAAgB;MAChB,uBAAuB;MACvB,mBAAmB;IACrB;;IAEA;MACE,oBAAoB;MACpB,oHAA6B;IAC/B;IAIA;MACE,kEAAkE;;MAElE,kBAAkB;MAClB,gBAAgB;MAChB,8BAA8B;IAsEhC;;MApEE;QACE,+CAA+B;;QAE/B,oBAAoB;MACtB;;MAEA;QACE,0CAA0C;QAC1C,wCAAwC;MAC1C;;MAEA;QACE,wCAAwC;QACxC,sCAAsC;MACxC;;MAEA;QACE,yBAAyB;MAiB3B;;QAfE;UACE,WAAW;;UAEX,qBAAqB;;UAErB,sBAAsB;;UAEtB,iCAAiC;UACjC,oCAAoC;UACpC,yCAAyC;QAC3C;;QAEA;UACE,6BAA6B;QAC/B;QAIA;UACE,WAAW;;UAEX,qBAAqB;;UAErB,sBAAsB;;UAEtB,iCAAiC;UACjC,2CAA2C;QAC7C;;MAGF;QACE,qBAAqB;;QAErB,sBAAsB;;QAEtB,cAAc;QACd,8DAA8D;QAC9D,sBAAsB;;QAEtB,kCAAkC;MACpC;;MAEA;QACE,kEAAkE;MACpE;;MAEA;QACE,kEAAkE;MACpE;AAGN",sourcesContent:['/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .breadcrumbs,\n .breadcrumbOverflow {\n --color: theme(colors.primary.DEFAULT);\n\n &[data-color="accent"] {\n --color: theme(colors.accent.DEFAULT);\n }\n\n &[data-color="info"] {\n --color: theme(colors.info.DEFAULT);\n }\n\n &[data-color="danger"] {\n --color: theme(colors.danger.DEFAULT);\n }\n\n &[data-color="success"] {\n --color: theme(colors.success.DEFAULT);\n }\n\n &[data-color="warning"] {\n --color: theme(colors.warning.DEFAULT);\n }\n\n & :global(.link) {\n padding: 0.25em 0.5em;\n text-decoration: none;\n }\n }\n\n .breadcrumbOverflow,\n .breadcrumbs[data-variant="classic"] {\n & :global(.link) {\n color: color-mix(in lab, var(--color) 90%, var(--fabric-text));\n }\n\n & :global(.link):hover {\n color: color-mix(in lab, var(--color) 99%, var(--fabric-text));\n text-decoration: underline;\n background-color: theme(colors.tint.50/50%);\n }\n\n & :global(.link):active {\n color: color-mix(in lab, var(--color) 85%, var(--fabric-text));\n background-color: theme(colors.tint.50);\n }\n }\n\n .breadcrumbs[data-variant="classic"] {\n & > .breadcrumbLink {\n list-style: none;\n\n &::after {\n content: attr(data-separator);\n display: inline-block;\n margin-inline: 0.125em;\n color: theme(colors.tint.300);\n }\n\n &:last-child::after {\n content: unset;\n }\n }\n }\n\n [data-ref="viewport"] .breadcrumbs {\n grid-area: crumbbar;\n padding: 0 0.25rem;\n }\n}\n\n@layer var {\n .breadcrumbs[data-variant="classic"] {\n & > :global(.link) {\n overflow: hidden;\n max-width: 24rem;\n text-overflow: ellipsis;\n white-space: nowrap;\n }\n\n & > .breadcrumbLink:last-child > :global(.link) {\n pointer-events: none;\n color: theme(colors.tint.600);\n }\n }\n\n .breadcrumbs[data-variant="modern"] {\n & > .breadcrumbLink {\n --linkcolor: color-mix(in lab, var(--color) 50%, var(--fabric-bg));\n\n position: relative;\n list-style: none;\n border-radius: var(--rounding);\n\n &:last-child {\n --color: theme(colors.tint.500);\n\n pointer-events: none;\n }\n\n &:first-child > :global(.link) {\n border-start-start-radius: var(--rounding);\n border-end-start-radius: var(--rounding);\n }\n\n &:last-child > :global(.link) {\n border-start-end-radius: var(--rounding);\n border-end-end-radius: var(--rounding);\n }\n\n &:not(:first-child) {\n margin-inline-start: -1em;\n\n &::before {\n content: "";\n\n display: inline-block;\n\n vertical-align: middle;\n\n border: 0.625em solid transparent;\n border-block-color: var(--linkcolor);\n border-inline-end-color: var(--linkcolor);\n }\n\n & > :global(.link) {\n margin-inline-start: -0.625em;\n }\n }\n\n &:not(:last-child) {\n &::after {\n content: "";\n\n display: inline-block;\n\n vertical-align: middle;\n\n border: 0.625em solid transparent;\n border-inline-start-color: var(--linkcolor);\n }\n }\n\n & > :global(.link) {\n display: inline-block;\n\n padding: 0.125em 0.5em;\n\n line-height: 1;\n color: color-mix(in lab, var(--color) 50%, var(--fabric-text));\n vertical-align: middle;\n\n background-color: var(--linkcolor);\n }\n\n &:hover {\n --linkcolor: color-mix(in lab, var(--color) 65%, var(--fabric-bg));\n }\n\n &:active {\n --linkcolor: color-mix(in lab, var(--color) 35%, var(--fabric-bg));\n }\n }\n }\n}\n'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={breadcrumbs:"IU9WAMWhHs4Cc1NuewrX",breadcrumbOverflow:"Il6X6sLn94ps4kW1cmaI",breadcrumbLink:"A6_FX4O6EGspZSstNRWA"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/components/button/Button.module.css":(module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .QpTd_VegJKNxT5g0cMfZ {\n --color: color(from var(--primary) srgb r g b / 1);\n\n font-size: 1rem;\n border-radius: var(--rounding);\n }\n\n .QpTd_VegJKNxT5g0cMfZ .VYpTNtmwiVtPzrPfrTRw {\n color: var(--text);\n\n background-color: var(--bg);\n background-image: var(--click-gradient);\n border-radius: inherit;\n outline: 1px solid var(--outline);\n }\n .QpTd_VegJKNxT5g0cMfZ .VYpTNtmwiVtPzrPfrTRw.Ms8HNRvf1Ot0zVzY0eVZ:hover .nHrEEvEai7K0xYVRNs6a {\n animation: spin 2s linear infinite;\n }\n\n .QpTd_VegJKNxT5g0cMfZ .VYpTNtmwiVtPzrPfrTRw > * {\n pointer-events: none;\n }\n\n .QpTd_VegJKNxT5g0cMfZ .VYpTNtmwiVtPzrPfrTRw:not(:disabled) input[type="file"] {\n pointer-events: auto;\n }\n\n .QpTd_VegJKNxT5g0cMfZ .VYpTNtmwiVtPzrPfrTRw:not(:disabled) input[type="file"]::-webkit-file-upload-button {\n cursor: pointer;\n position: absolute;\n inset: 0;\n }\n\n .QpTd_VegJKNxT5g0cMfZ .idSDa3Ea7Eq4L8qZGMue {\n border-radius: 9999px;\n }\n\n .QpTd_VegJKNxT5g0cMfZ .wiXAMAgictyHDfzFIsN9 {\n order: 1;\n padding: 0.5em 1em;\n line-height: 1;\n }\n\n :is(.QpTd_VegJKNxT5g0cMfZ .wiXAMAgictyHDfzFIsN9) + .ZNnBRwcyrY2kEdJLwjjg {\n margin-inline-start: -1em;\n }\n\n .QpTd_VegJKNxT5g0cMfZ .aQzN0Ps7NW_FtXhbjmJD {\n order: 1;\n padding: 0.5em;\n line-height: 1;\n }\n\n .QpTd_VegJKNxT5g0cMfZ .nHrEEvEai7K0xYVRNs6a {\n padding: 0.3889em;\n font-size: 1.125em;\n }\n\n .QpTd_VegJKNxT5g0cMfZ .hotkey-label {\n align-self: center;\n order: 3;\n }\n\n .QpTd_VegJKNxT5g0cMfZ .ZNnBRwcyrY2kEdJLwjjg {\n align-self: center;\n order: 4;\n padding: 0.125em 0.5em;\n }\n\n .QpTd_VegJKNxT5g0cMfZ [data-ref="badge"] {\n align-self: center;\n order: 2;\n margin-inline-end: 0.5em;\n }\n .ycw8aOS5V_HAKrWZr290 > .QpTd_VegJKNxT5g0cMfZ {\n flex: 0 1 1em;\n }\n\n .ycw8aOS5V_HAKrWZr290:not(.v1UvzdKf3jmFLXEiVisQ) + .ycw8aOS5V_HAKrWZr290:not(.v1UvzdKf3jmFLXEiVisQ) {\n margin-inline-start: 0.5rem;\n }\n}\n\n@layer util {\n .QpTd_VegJKNxT5g0cMfZ[data-size="xs"] {\n font-size: 0.625rem;\n }\n\n .QpTd_VegJKNxT5g0cMfZ[data-size="sm"] {\n font-size: 0.875rem;\n }\n\n .QpTd_VegJKNxT5g0cMfZ[data-size="md"] {\n font-size: 1.125rem;\n }\n\n .QpTd_VegJKNxT5g0cMfZ[data-size="lg"] {\n font-size: 1.25rem;\n }\n\n .QpTd_VegJKNxT5g0cMfZ[data-size="xl"] {\n font-size: 1.5rem;\n }\n\n .VYpTNtmwiVtPzrPfrTRw {\n --bg: color-mix(in lab, var(--fabric-bg) 99%, var(--tint));\n --outline: color-mix(in lab, var(--bg) 90%, var(--fabric-text));\n --text: color-mix(in lab, var(--color) 80%, var(--fabric-text));\n --bg-hover: color-mix(in lab, var(--color) 18%, var(--fabric-bg));\n --bg-click: color-mix(in lab, var(--color) 25%, var(--fabric-bg));\n --bg-active: color-mix(in lab, var(--color) 36%, var(--fabric-bg));\n }\n\n .VYpTNtmwiVtPzrPfrTRw[data-color="accent"] {\n --color: color(from var(--accent) srgb r g b / 1);\n }\n\n .VYpTNtmwiVtPzrPfrTRw[data-color="info"] {\n --color: color(from #00bfff srgb r g b / 1);\n }\n\n .VYpTNtmwiVtPzrPfrTRw[data-color="danger"] {\n --color: color(from #f24c3d srgb r g b / 1);\n }\n\n .VYpTNtmwiVtPzrPfrTRw[data-color="success"] {\n --color: color(from #44bc69 srgb r g b / 1);\n }\n\n .VYpTNtmwiVtPzrPfrTRw[data-color="warning"] {\n --color: color(from #edaa00 srgb r g b / 1);\n }\n\n .VYpTNtmwiVtPzrPfrTRw[data-variant="outline"] {\n --outline: var(--color);\n }\n\n .VYpTNtmwiVtPzrPfrTRw[data-variant="solid"] {\n --outline: var(--color);\n --bg: color-mix(in lab, var(--color) 96%, var(--fabric-text));\n --text: #fefdfc;\n --bg-hover: color-mix(in lab, var(--color) 90%, var(--fabric-bg));\n --bg-click: color-mix(in lab, var(--color) 80%, #191a1b);\n --bg-active: color-mix(in lab, var(--color) 70%, #191a1b);\n }\n\n .VYpTNtmwiVtPzrPfrTRw[data-variant="solid"] .hotkey-label {\n color: rgb(254 253 252 / 70%);\n background-color: color-mix(in lab, color(from var(--black) srgb r g b / 30%) 90%, color(from var(--tint) srgb r g b / 30%));\n }\n\n .VYpTNtmwiVtPzrPfrTRw[data-variant="link"] {\n --bg: transparent;\n --outline: transparent;\n\n background-image: none;\n box-shadow: none;\n }\n\n .VYpTNtmwiVtPzrPfrTRw[data-color="invert"] {\n --bg: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 5%, color(from var(--fabric-text) srgb r g b / 1));\n --text: color-mix(in lab, var(--color) 90%, color-mix(in lab, color(from var(--fabric-text) srgb r g b / 1) 5%, color(from var(--fabric-bg) srgb r g b / 1)));\n --bg-hover: color-mix(\n in lab,\n var(--color) 15%,\n color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 5%, color(from var(--fabric-text) srgb r g b / 1))\n );\n --bg-click: color-mix(\n in lab,\n var(--color) 35%,\n color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 5%, color(from var(--fabric-text) srgb r g b / 1))\n );\n }\n\n .nHrEEvEai7K0xYVRNs6a[data-align="start"] {\n order: 0;\n }\n\n .nHrEEvEai7K0xYVRNs6a[data-align="start"] + .wiXAMAgictyHDfzFIsN9[data-colored-icon="false"] {\n margin-inline-start: -1em;\n }\n\n .nHrEEvEai7K0xYVRNs6a[data-align="end"] {\n order: 2;\n }\n\n .nHrEEvEai7K0xYVRNs6a[data-align="end"] ~ .wiXAMAgictyHDfzFIsN9[data-colored-icon="false"] {\n margin-inline-end: -1em;\n }\n}\n\n@layer var {\n .QpTd_VegJKNxT5g0cMfZ {\n height: unset;\n padding: unset;\n }\n\n .QpTd_VegJKNxT5g0cMfZ[data-disabled="true"] {\n cursor: not-allowed;\n }\n\n .QpTd_VegJKNxT5g0cMfZ[data-disabled="true"] .VYpTNtmwiVtPzrPfrTRw {\n pointer-events: none;\n opacity: 0.5;\n background-image: var(--active-gradient);\n }\n\n .QpTd_VegJKNxT5g0cMfZ[data-loading="true"] {\n cursor: wait;\n }\n\n .QpTd_VegJKNxT5g0cMfZ[data-loading="true"] .VYpTNtmwiVtPzrPfrTRw {\n pointer-events: none;\n background-image: var(--progress-gradient);\n background-size: 1em 1em;\n }\n\n .QpTd_VegJKNxT5g0cMfZ[data-loading="true"] .VYpTNtmwiVtPzrPfrTRw {\n animation: bgprogress 750ms linear infinite;\n }\n\n .QpTd_VegJKNxT5g0cMfZ[data-loading="true"] .VYpTNtmwiVtPzrPfrTRw:not([data-variant="solid"]) {\n background-color: color-mix(in lab, var(--color) 15%, var(--fabric-bg));\n }\n\n .QpTd_VegJKNxT5g0cMfZ.btn-dashed > .VYpTNtmwiVtPzrPfrTRw {\n color: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n outline: 1px dashed color-mix(in lab, color(from var(--tint) srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n }\n\n .QpTd_VegJKNxT5g0cMfZ.btn-dashed > .VYpTNtmwiVtPzrPfrTRw[data-invalid="true"] {\n color: color-mix(in lab, color(from #f24c3d srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n background-color: color-mix(in lab, color(from #f24c3d srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n outline: 1px dashed color-mix(in lab, color(from #f24c3d srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n }\n\n .VYpTNtmwiVtPzrPfrTRw {\n --tw-ring-color: var(--color);\n }\n\n .VYpTNtmwiVtPzrPfrTRw:hover {\n background-color: var(--bg-hover);\n }\n\n .VYpTNtmwiVtPzrPfrTRw:active {\n background-color: var(--bg-click);\n background-image: var(--active-gradient);\n }\n\n .VYpTNtmwiVtPzrPfrTRw:active .nHrEEvEai7K0xYVRNs6a,\n .VYpTNtmwiVtPzrPfrTRw:active .wiXAMAgictyHDfzFIsN9 {\n transform: translateY(1px);\n }\n\n .VYpTNtmwiVtPzrPfrTRw[data-active="true"],\n .VYpTNtmwiVtPzrPfrTRw[data-checked="true"],\n .VYpTNtmwiVtPzrPfrTRw[data-dropdown-open="true"] {\n background-color: var(--bg-active);\n background-image: none;\n }\n\n .VYpTNtmwiVtPzrPfrTRw[data-dropdown-open="true"] {\n pointer-events: none;\n }\n\n .VYpTNtmwiVtPzrPfrTRw[data-active="true"] {\n pointer-events: none;\n }\n .ycw8aOS5V_HAKrWZr290 > .QpTd_VegJKNxT5g0cMfZ {\n margin: 0;\n }\n\n .ycw8aOS5V_HAKrWZr290 > .QpTd_VegJKNxT5g0cMfZ .VYpTNtmwiVtPzrPfrTRw[data-variant="link"] {\n --outline: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 99%, color(from var(--tint) srgb r g b / 1));\n }\n .ycw8aOS5V_HAKrWZr290:not(.XvoxN0KaGg329Ek8A7RD) > :not(:first-child)::before {\n content: "";\n\n position: absolute;\n inset-block: 5%;\n inset-inline-start: -0.5px;\n\n border-inline-start: 0.5px solid color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 65%, color(from var(--tint) srgb r g b / 1));\n }\n\n .ycw8aOS5V_HAKrWZr290.QtusWqN7NyJZHz96DG7G:not(.XvoxN0KaGg329Ek8A7RD) > :not(:first-child) {\n margin-inline-start: 2px;\n }\n\n .ycw8aOS5V_HAKrWZr290.QtusWqN7NyJZHz96DG7G:not(.XvoxN0KaGg329Ek8A7RD) > :not(:first-child)::before {\n inset-inline-start: -1.5px;\n }\n\n .ycw8aOS5V_HAKrWZr290:not(.XvoxN0KaGg329Ek8A7RD) > :not(:last-child) .VYpTNtmwiVtPzrPfrTRw {\n border-start-end-radius: 0;\n border-end-end-radius: 0;\n }\n\n .ycw8aOS5V_HAKrWZr290:not(.XvoxN0KaGg329Ek8A7RD) > :not(:first-child) .VYpTNtmwiVtPzrPfrTRw {\n border-start-start-radius: 0;\n border-end-start-radius: 0;\n }\n .ycw8aOS5V_HAKrWZr290.XvoxN0KaGg329Ek8A7RD > :not(:first-child)::before {\n content: "";\n\n position: absolute;\n inset-block-start: -0.5px;\n inset-inline: 5%;\n\n border-block-start: 0.5px solid color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 65%, color(from var(--tint) srgb r g b / 1));\n }\n\n .ycw8aOS5V_HAKrWZr290.XvoxN0KaGg329Ek8A7RD.QtusWqN7NyJZHz96DG7G > :not(:first-child) {\n margin-block-start: 1px;\n }\n\n .ycw8aOS5V_HAKrWZr290.XvoxN0KaGg329Ek8A7RD.QtusWqN7NyJZHz96DG7G > :not(:first-child)::before {\n inset-block-start: -1px;\n }\n\n .ycw8aOS5V_HAKrWZr290.XvoxN0KaGg329Ek8A7RD > :not(:last-child) .VYpTNtmwiVtPzrPfrTRw {\n border-end-start-radius: 0;\n border-end-end-radius: 0;\n }\n\n .ycw8aOS5V_HAKrWZr290.XvoxN0KaGg329Ek8A7RD > :not(:first-child) .VYpTNtmwiVtPzrPfrTRw {\n border-start-start-radius: 0;\n border-start-end-radius: 0;\n }\n}\n',"",{version:3,sources:["webpack://./packages/core/src/components/button/Button.module.css"],names:[],mappings:"AAAA;;;;;;;;;;;;;;;;;;;;;EAqBE;;AAEF;EACE;IACE,kDAAkC;;IAElC,eAAe;IACf,8BAA8B;EAwEhC;;IAtEE;MACE,kBAAkB;;MAElB,2BAA2B;MAC3B,uCAAuC;MACvC,sBAAsB;MACtB,iCAAiC;IAqBnC;QAlBI;UACE,kCAAkC;QACpC;;MAGF;QACE,oBAAoB;MACtB;;MAEA;QACE,oBAAoB;MAOtB;;QALE;UACE,eAAe;UACf,kBAAkB;UAClB,QAAQ;QACV;;IAIJ;MACE,qBAAqB;IACvB;;IAEA;MACE,QAAQ;MACR,kBAAkB;MAClB,cAAc;IAKhB;;MAHE;QACE,yBAAyB;MAC3B;;IAGF;MACE,QAAQ;MACR,cAAc;MACd,cAAc;IAChB;;IAEA;MACE,iBAAiB;MACjB,kBAAkB;IACpB;;IAEA;MACE,kBAAkB;MAClB,QAAQ;IACV;;IAEA;MACE,kBAAkB;MAClB,QAAQ;MACR,sBAAsB;IACxB;;IAEA;MACE,kBAAkB;MAClB,QAAQ;MACR,wBAAwB;IAC1B;IAIA;MACE,aAAa;IACf;;IAEA;MACE,2BAA2B;IAC7B;AAEJ;;AAEA;IAEI;MACE,mBAAmB;IACrB;;IAEA;MACE,mBAAmB;IACrB;;IAEA;MACE,mBAAmB;IACrB;;IAEA;MACE,kBAAkB;IACpB;;IAEA;MACE,iBAAiB;IACnB;;EAGF;IACE,0DAA0D;IAC1D,+DAA+D;IAC/D,+DAA+D;IAC/D,iEAAiE;IACjE,iEAAiE;IACjE,kEAAkE;EA8DpE;;IA5DE;MACE,iDAAiC;IACnC;;IAEA;MACE,2CAA+B;IACjC;;IAEA;MACE,2CAAiC;IACnC;;IAEA;MACE,2CAAkC;IACpC;;IAEA;MACE,2CAAkC;IACpC;;IAEA;MACE,uBAAuB;IACzB;;IAEA;MACE,uBAAuB;MACvB,6DAA6D;MAC7D,eAA2B;MAC3B,iEAAiE;MACjE,wDAAoE;MACpE,yDAAqE;IAMvE;;MAJE;QACE,6BAA8B;QAC9B,6HAAiD;MACnD;;IAGF;MACE,iBAAiB;MACjB,sBAAsB;;MAEtB,sBAAsB;MACtB,gBAAgB;IAClB;;IAEA;MACE,uHAAmC;MACnC,8JAAoE;MACpE;;;;OAIC;MACD;;;;OAIC;IACH;;EAGF;IACE,QAAQ;EAKV;;IAHE;MACE,yBAAyB;IAC3B;;EAGF;IACE,QAAQ;EAKV;;IAHE;MACE,uBAAuB;IACzB;AAEJ;;AAEA;EACE;IACE,aAAa;IACb,cAAc;EAwChB;;IAtCE;MACE,mBAAmB;IAOrB;;MALE;QACE,oBAAoB;QACpB,YAAY;QACZ,wCAAwC;MAC1C;;IAGF;MACE,YAAY;IAed;;MAbE;QACE,oBAAoB;QACpB,0CAA0C;QAC1C,wBAAwB;MAK1B;;QAHE;UACE,2CAA2C;QAC7C;;MAGF;QACE,uEAAuE;MACzE;;IAGF;MACE,oHAA6B;MAC7B,iIAA0C;IAO5C;;MALE;QACE,gHAA+B;QAC/B,yHAA0C;QAC1C,6HAA4C;MAC9C;;EAIJ;IACE,6BAA6B;EA8B/B;;IA5BE;MACE,iCAAiC;IACnC;;IAEA;MACE,iCAAiC;MACjC,wCAAwC;IAM1C;;MAJE;;QAEE,0BAA0B;MAC5B;;IAGF;;;MAGE,kCAAkC;MAClC,sBAAsB;IACxB;;IAEA;MACE,oBAAoB;IACtB;;IAEA;MACE,oBAAoB;IACtB;IAIA;MACE,SAAS;IAKX;;MAHE;QACE,sHAAsC;MACxC;QAKE;UACE,WAAW;;UAEX,kBAAkB;UAClB,eAAe;UACf,0BAA0B;;UAE1B,4IAAwD;QAC1D;;MAGF;QACE,wBAAwB;MAK1B;;QAHE;UACE,0BAA0B;QAC5B;;MAGF;QACE,0BAA0B;QAC1B,wBAAwB;MAC1B;;MAEA;QACE,4BAA4B;QAC5B,0BAA0B;MAC5B;QAKE;UACE,WAAW;;UAEX,kBAAkB;UAClB,yBAAyB;UACzB,gBAAgB;;UAEhB,2IAAuD;QACzD;;MAGF;QACE,uBAAuB;MAKzB;;QAHE;UACE,uBAAuB;QACzB;;MAGF;QACE,0BAA0B;QAC1B,wBAAwB;MAC1B;;MAEA;QACE,4BAA4B;QAC5B,0BAA0B;MAC5B;AAGN",sourcesContent:['/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .buttonWrapper {\n --color: theme(colors.primary.500);\n\n font-size: 1rem;\n border-radius: var(--rounding);\n\n & .button {\n color: var(--text);\n\n background-color: var(--bg);\n background-image: var(--click-gradient);\n border-radius: inherit;\n outline: 1px solid var(--outline);\n\n &.spinOnHover:hover .buttonIcon {\n & :global {\n animation: spin 2s linear infinite;\n }\n }\n\n & > * {\n pointer-events: none;\n }\n\n &:not(:disabled) input[type="file"] {\n pointer-events: auto;\n\n &::-webkit-file-upload-button {\n cursor: pointer;\n position: absolute;\n inset: 0;\n }\n }\n }\n\n & .rounded {\n border-radius: 9999px;\n }\n\n & .buttonLabel {\n order: 1;\n padding: 0.5em 1em;\n line-height: 1;\n\n & + .altIcon {\n margin-inline-start: -1em;\n }\n }\n\n & .buttonChild {\n order: 1;\n padding: 0.5em;\n line-height: 1;\n }\n\n & .buttonIcon {\n padding: 0.3889em;\n font-size: 1.125em;\n }\n\n & :global(.hotkey-label) {\n align-self: center;\n order: 3;\n }\n\n & .altIcon {\n align-self: center;\n order: 4;\n padding: 0.125em 0.5em;\n }\n\n & [data-ref="badge"] {\n align-self: center;\n order: 2;\n margin-inline-end: 0.5em;\n }\n }\n\n .buttonGroup {\n & > .buttonWrapper {\n flex: 0 1 1em;\n }\n\n &:not(.flex) + &:not(.flex) {\n margin-inline-start: 0.5rem;\n }\n }\n}\n\n@layer util {\n .buttonWrapper {\n &[data-size="xs"] {\n font-size: 0.625rem;\n }\n\n &[data-size="sm"] {\n font-size: 0.875rem;\n }\n\n &[data-size="md"] {\n font-size: 1.125rem;\n }\n\n &[data-size="lg"] {\n font-size: 1.25rem;\n }\n\n &[data-size="xl"] {\n font-size: 1.5rem;\n }\n }\n\n .button {\n --bg: color-mix(in lab, var(--fabric-bg) 99%, var(--tint));\n --outline: color-mix(in lab, var(--bg) 90%, var(--fabric-text));\n --text: color-mix(in lab, var(--color) 80%, var(--fabric-text));\n --bg-hover: color-mix(in lab, var(--color) 18%, var(--fabric-bg));\n --bg-click: color-mix(in lab, var(--color) 25%, var(--fabric-bg));\n --bg-active: color-mix(in lab, var(--color) 36%, var(--fabric-bg));\n\n &[data-color="accent"] {\n --color: theme(colors.accent.500);\n }\n\n &[data-color="info"] {\n --color: theme(colors.info.500);\n }\n\n &[data-color="danger"] {\n --color: theme(colors.danger.500);\n }\n\n &[data-color="success"] {\n --color: theme(colors.success.500);\n }\n\n &[data-color="warning"] {\n --color: theme(colors.warning.500);\n }\n\n &[data-variant="outline"] {\n --outline: var(--color);\n }\n\n &[data-variant="solid"] {\n --outline: var(--color);\n --bg: color-mix(in lab, var(--color) 96%, var(--fabric-text));\n --text: theme(colors.white);\n --bg-hover: color-mix(in lab, var(--color) 90%, var(--fabric-bg));\n --bg-click: color-mix(in lab, var(--color) 80%, theme(colors.black));\n --bg-active: color-mix(in lab, var(--color) 70%, theme(colors.black));\n\n & :global(.hotkey-label) {\n color: theme(colors.white/70%);\n background-color: theme(backgroundColor.dark/30%);\n }\n }\n\n &[data-variant="link"] {\n --bg: transparent;\n --outline: transparent;\n\n background-image: none;\n box-shadow: none;\n }\n\n &[data-color="invert"] {\n --bg: theme(backgroundColor.invert);\n --text: color-mix(in lab, var(--color) 90%, theme(textColor.invert));\n --bg-hover: color-mix(\n in lab,\n var(--color) 15%,\n theme(backgroundColor.invert)\n );\n --bg-click: color-mix(\n in lab,\n var(--color) 35%,\n theme(backgroundColor.invert)\n );\n }\n }\n\n .buttonIcon[data-align="start"] {\n order: 0;\n\n & + .buttonLabel[data-colored-icon="false"] {\n margin-inline-start: -1em;\n }\n }\n\n .buttonIcon[data-align="end"] {\n order: 2;\n\n & ~ .buttonLabel[data-colored-icon="false"] {\n margin-inline-end: -1em;\n }\n }\n}\n\n@layer var {\n .buttonWrapper {\n height: unset;\n padding: unset;\n\n &[data-disabled="true"] {\n cursor: not-allowed;\n\n & .button {\n pointer-events: none;\n opacity: 0.5;\n background-image: var(--active-gradient);\n }\n }\n\n &[data-loading="true"] {\n cursor: wait;\n\n & .button {\n pointer-events: none;\n background-image: var(--progress-gradient);\n background-size: 1em 1em;\n\n & :global {\n animation: bgprogress 750ms linear infinite;\n }\n }\n\n & .button:not([data-variant="solid"]) {\n background-color: color-mix(in lab, var(--color) 15%, var(--fabric-bg));\n }\n }\n\n &:global(.btn-dashed) > .button {\n color: theme(colors.tint.600);\n outline: 1px dashed theme(colors.tint.600);\n\n &[data-invalid="true"] {\n color: theme(colors.danger.600);\n background-color: theme(colors.danger.100);\n outline: 1px dashed theme(colors.danger.600);\n }\n }\n }\n\n .button {\n --tw-ring-color: var(--color);\n\n &:hover {\n background-color: var(--bg-hover);\n }\n\n &:active {\n background-color: var(--bg-click);\n background-image: var(--active-gradient);\n\n .buttonIcon,\n .buttonLabel {\n transform: translateY(1px);\n }\n }\n\n &[data-active="true"],\n &[data-checked="true"],\n &[data-dropdown-open="true"] {\n background-color: var(--bg-active);\n background-image: none;\n }\n\n &[data-dropdown-open="true"] {\n pointer-events: none;\n }\n\n &[data-active="true"] {\n pointer-events: none;\n }\n }\n\n .buttonGroup {\n & > .buttonWrapper {\n margin: 0;\n\n & .button[data-variant="link"] {\n --outline: theme(backgroundColor.base);\n }\n }\n\n &:not(.vertical) {\n & > :not(:first-child) {\n &::before {\n content: "";\n\n position: absolute;\n inset-block: 5%;\n inset-inline-start: -0.5px;\n\n border-inline-start: 0.5px solid theme(borderColor.base);\n }\n }\n\n &.separator > :not(:first-child) {\n margin-inline-start: 2px;\n\n &::before {\n inset-inline-start: -1.5px;\n }\n }\n\n & > :not(:last-child) .button {\n border-start-end-radius: 0;\n border-end-end-radius: 0;\n }\n\n & > :not(:first-child) .button {\n border-start-start-radius: 0;\n border-end-start-radius: 0;\n }\n }\n\n &.vertical {\n & > :not(:first-child) {\n &::before {\n content: "";\n\n position: absolute;\n inset-block-start: -0.5px;\n inset-inline: 5%;\n\n border-block-start: 0.5px solid theme(borderColor.base);\n }\n }\n\n &.separator > :not(:first-child) {\n margin-block-start: 1px;\n\n &::before {\n inset-block-start: -1px;\n }\n }\n\n & > :not(:last-child) .button {\n border-end-start-radius: 0;\n border-end-end-radius: 0;\n }\n\n & > :not(:first-child) .button {\n border-start-start-radius: 0;\n border-start-end-radius: 0;\n }\n }\n }\n}\n'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={buttonWrapper:"QpTd_VegJKNxT5g0cMfZ",button:"VYpTNtmwiVtPzrPfrTRw",spinOnHover:"Ms8HNRvf1Ot0zVzY0eVZ",buttonIcon:"nHrEEvEai7K0xYVRNs6a",rounded:"idSDa3Ea7Eq4L8qZGMue",buttonLabel:"wiXAMAgictyHDfzFIsN9",altIcon:"ZNnBRwcyrY2kEdJLwjjg",buttonChild:"aQzN0Ps7NW_FtXhbjmJD",buttonGroup:"ycw8aOS5V_HAKrWZr290",flex:"v1UvzdKf3jmFLXEiVisQ",vertical:"XvoxN0KaGg329Ek8A7RD",separator:"QtusWqN7NyJZHz96DG7G"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/components/card/Card.module.css":(module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .IUcqmHjDniNCA9ugwaJr.Unw02_Z7NJZcJKoDdHML::before {\n content: "";\n\n position: absolute;\n z-index: 5;\n top: -4px;\n inset-inline-start: -4px;\n\n border-top: 1rem solid color(from var(--accent) srgb r g b / 1);\n border-bottom: 1rem solid transparent;\n border-inline-start: 1rem solid color(from var(--accent) srgb r g b / 1);\n border-inline-end: 1rem solid transparent;\n border-start-start-radius: var(--rounding-cap);\n }\n\n .IUcqmHjDniNCA9ugwaJr.Unw02_Z7NJZcJKoDdHML::after {\n content: "✓";\n\n position: absolute;\n z-index: 5;\n top: -4px;\n inset-inline-start: -4px;\n\n padding: 4px;\n\n line-height: 1;\n color: #fefdfc;\n }\n\n .n3Y1COH2zF3brYb1IKg1 {\n background-color: var(--fabric-bg);\n box-shadow: 0 0 0 1px color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 80%, color(from var(--tint) srgb r g b / 1));\n }\n\n .n3Y1COH2zF3brYb1IKg1 > * {\n background-color: transparent;\n }\n .n3Y1COH2zF3brYb1IKg1 .fbz2sEZpx6k0esC7eQeA.BJ4rpzKLuR3cHJbMPf8Y:has([data-colorset="dark"]) > .PrbU7qdEW4BPvYBaFe_w,\n .n3Y1COH2zF3brYb1IKg1 .fbz2sEZpx6k0esC7eQeA.E8jGrGiyKjzNpp4nJi61 > .PrbU7qdEW4BPvYBaFe_w {\n color: var(--white);\n text-shadow: 0 0 2px var(--black);\n background-image: linear-gradient(to bottom, #0000 0, #0006 100%);\n }\n\n .n3Y1COH2zF3brYb1IKg1 .fbz2sEZpx6k0esC7eQeA.BJ4rpzKLuR3cHJbMPf8Y:has([data-colorset="light"]) > .PrbU7qdEW4BPvYBaFe_w,\n .n3Y1COH2zF3brYb1IKg1 .fbz2sEZpx6k0esC7eQeA.YyY1jHpwcBG7dEwd_aGI > .PrbU7qdEW4BPvYBaFe_w {\n color: var(--black);\n text-shadow: 0 0 2px var(--white);\n background-image: linear-gradient(to bottom, #fff0 0, #fff6 100%);\n }\n\n .n3Y1COH2zF3brYb1IKg1 .BtXyDzHfZ9NOHfm2oA21 {\n padding: 1rem;\n }\n\n .n3Y1COH2zF3brYb1IKg1.sYUJd86FDRWmK7fyAWEk {\n box-shadow:\n 0 0 0 1px color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 72%, color(from var(--tint) srgb r g b / 1)),\n 0 1px 2px 0 var(--fabric-shadow);\n transition: box-shadow 0ms;\n }\n\n .n3Y1COH2zF3brYb1IKg1.sYUJd86FDRWmK7fyAWEk:has(.BtXyDzHfZ9NOHfm2oA21:hover):not(:has([data-inner-clickable="true"]:hover)) {\n box-shadow:\n 0 0 0 1px color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 72%, color(from var(--tint) srgb r g b / 1)),\n 0 1px 4px 0 var(--fabric-shadow),\n 0 8px 16px 0 color-mix(in lab, var(--fabric-shadow) 35%, #0000);\n transition-delay: 150ms;\n }\n\n .n3Y1COH2zF3brYb1IKg1.sYUJd86FDRWmK7fyAWEk:has(.BtXyDzHfZ9NOHfm2oA21:active):not(:has([data-inner-clickable="true"]:hover)) {\n transform: translateY(1px);\n box-shadow: 0 0 0 1px color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 72%, color(from var(--tint) srgb r g b / 1));\n transition-delay: 0ms;\n }\n\n .n3Y1COH2zF3brYb1IKg1.sYUJd86FDRWmK7fyAWEk .BtXyDzHfZ9NOHfm2oA21 {\n cursor: pointer;\n }\n\n .n3Y1COH2zF3brYb1IKg1.sYUJd86FDRWmK7fyAWEk .BtXyDzHfZ9NOHfm2oA21::after {\n pointer-events: none;\n content: "";\n\n position: absolute;\n z-index: 5;\n inset: 0;\n\n background-image: linear-gradient(\n 175deg,\n rgb(255 255 255 / 5%) 0%,\n transparent 18%,\n transparent 72%,\n rgb(0 0 0 / 5%) 100%\n );\n }\n}\n\n@layer util {\n .n3Y1COH2zF3brYb1IKg1 .BtXyDzHfZ9NOHfm2oA21 > * {\n grid-area: unset;\n background-color: transparent;\n }\n .n3Y1COH2zF3brYb1IKg1 .fbz2sEZpx6k0esC7eQeA > [data-ref="image"],\n .n3Y1COH2zF3brYb1IKg1 .fbz2sEZpx6k0esC7eQeA > [data-ref="video"] {\n position: absolute;\n z-index: 0;\n inset: 0;\n }\n .n3Y1COH2zF3brYb1IKg1 .fbz2sEZpx6k0esC7eQeA .PrbU7qdEW4BPvYBaFe_w > * {\n flex: 0 0 auto;\n }\n}\n',"",{version:3,sources:["webpack://./packages/core/src/components/card/Card.module.css"],names:[],mappings:"AAAA;;;;;;;;;;;;;;;;;;;;;EAqBE;;AAEF;IAEI;MACE,WAAW;;MAEX,kBAAkB;MAClB,UAAU;MACV,SAAS;MACT,wBAAwB;;MAExB,+DAA+C;MAC/C,qCAAqC;MACrC,wEAAwD;MACxD,yCAAyC;MACzC,8CAA8C;IAChD;;IAEA;MACE,YAAY;;MAEZ,kBAAkB;MAClB,UAAU;MACV,SAAS;MACT,wBAAwB;;MAExB,YAAY;;MAEZ,cAAc;MACd,cAA0B;IAC5B;;EAGF;IACE,kCAAkC;IAClC,iIAA8C;EAmEhD;;IAjEE;MACE,6BAA6B;IAC/B;MAGE;;QAEE,mBAAmB;QACnB,iCAAiC;QACjC,iEAAiE;MACnE;;MAEA;;QAEE,mBAAmB;QACnB,iCAAiC;QACjC,iEAAiE;MACnE;;IAGF;MACE,aAAa;IACf;;IAEA;MACE;;wCAEkC;MAClC,0BAA0B;IAoC5B;;MAlCE;QACE;;;yEAGiE;QACjE,uBAAuB;MACzB;;MAEA;QACE,0BAA0B;QAC1B,iIAA+C;QAC/C,qBAAqB;MACvB;;MAEA;QACE,eAAe;MAkBjB;;QAhBE;UACE,oBAAoB;UACpB,WAAW;;UAEX,kBAAkB;UAClB,UAAU;UACV,QAAQ;;UAER;;;;;;WAMC;QACH;AAIR;;AAEA;MAGM;QACE,gBAAgB;QAChB,6BAA6B;MAC/B;MAIA;;QAEE,kBAAkB;QAClB,UAAU;QACV,QAAQ;MACV;QAGE;UACE,cAAc;QAChB;AAIR",sourcesContent:['/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .cardWrapper.selected {\n &::before {\n content: "";\n\n position: absolute;\n z-index: 5;\n top: -4px;\n inset-inline-start: -4px;\n\n border-top: 1rem solid theme(colors.accent.500);\n border-bottom: 1rem solid transparent;\n border-inline-start: 1rem solid theme(colors.accent.500);\n border-inline-end: 1rem solid transparent;\n border-start-start-radius: var(--rounding-cap);\n }\n\n &::after {\n content: "✓";\n\n position: absolute;\n z-index: 5;\n top: -4px;\n inset-inline-start: -4px;\n\n padding: 4px;\n\n line-height: 1;\n color: theme(colors.white);\n }\n }\n\n .card {\n background-color: var(--fabric-bg);\n box-shadow: 0 0 0 1px theme(borderColor.muted);\n\n & > * {\n background-color: transparent;\n }\n\n & .cardCover {\n &.inheritScheme:has([data-colorset="dark"]) > .cardCoverContent,\n &.dark > .cardCoverContent {\n color: var(--white);\n text-shadow: 0 0 2px var(--black);\n background-image: linear-gradient(to bottom, #0000 0, #0006 100%);\n }\n\n &.inheritScheme:has([data-colorset="light"]) > .cardCoverContent,\n &.light > .cardCoverContent {\n color: var(--black);\n text-shadow: 0 0 2px var(--white);\n background-image: linear-gradient(to bottom, #fff0 0, #fff6 100%);\n }\n }\n\n & .cardBody {\n padding: 1rem;\n }\n\n &.clickable {\n box-shadow:\n 0 0 0 1px theme(borderColor.dimmed),\n 0 1px 2px 0 var(--fabric-shadow);\n transition: box-shadow 0ms;\n\n &:has(.cardBody:hover):not(:has([data-inner-clickable="true"]:hover)) {\n box-shadow:\n 0 0 0 1px theme(borderColor.dimmed),\n 0 1px 4px 0 var(--fabric-shadow),\n 0 8px 16px 0 color-mix(in lab, var(--fabric-shadow) 35%, #0000);\n transition-delay: 150ms;\n }\n\n &:has(.cardBody:active):not(:has([data-inner-clickable="true"]:hover)) {\n transform: translateY(1px);\n box-shadow: 0 0 0 1px theme(borderColor.dimmed);\n transition-delay: 0ms;\n }\n\n & .cardBody {\n cursor: pointer;\n\n &::after {\n pointer-events: none;\n content: "";\n\n position: absolute;\n z-index: 5;\n inset: 0;\n\n background-image: linear-gradient(\n 175deg,\n rgb(255 255 255 / 5%) 0%,\n transparent 18%,\n transparent 72%,\n rgb(0 0 0 / 5%) 100%\n );\n }\n }\n }\n }\n}\n\n@layer util {\n .card {\n & .cardBody {\n & > * {\n grid-area: unset;\n background-color: transparent;\n }\n }\n\n & .cardCover {\n & > [data-ref="image"],\n & > [data-ref="video"] {\n position: absolute;\n z-index: 0;\n inset: 0;\n }\n\n & .cardCoverContent {\n & > * {\n flex: 0 0 auto;\n }\n }\n }\n }\n}\n'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={cardWrapper:"IUcqmHjDniNCA9ugwaJr",selected:"Unw02_Z7NJZcJKoDdHML",card:"n3Y1COH2zF3brYb1IKg1",cardCover:"fbz2sEZpx6k0esC7eQeA",inheritScheme:"BJ4rpzKLuR3cHJbMPf8Y",cardCoverContent:"PrbU7qdEW4BPvYBaFe_w",dark:"E8jGrGiyKjzNpp4nJi61",light:"YyY1jHpwcBG7dEwd_aGI",cardBody:"BtXyDzHfZ9NOHfm2oA21",clickable:"sYUJd86FDRWmK7fyAWEk"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/components/chip/Chip.module.css":(module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .e8Ntd3E2x84wOs3f0SWw {\n --blank-gradient: linear-gradient(to bottom, #00000005 0%, #0000 10%);\n\n color: color(from var(--tint) srgb r g b / 1);\n background-image: var(--blank-gradient);\n outline: 1px solid color-mix(in lab, currentcolor 20%, var(--fabric-bg));\n outline-offset: -1px;\n }\n\n .e8Ntd3E2x84wOs3f0SWw > .wTjetcaWNtxsWbBajWqA {\n padding: 0 0.5em;\n }\n :is(.e8Ntd3E2x84wOs3f0SWw > .mezeA4fOOcGgWcAyF9gM) + .wTjetcaWNtxsWbBajWqA {\n margin-inline-start: -0.5em;\n }\n\n .e8Ntd3E2x84wOs3f0SWw > .SEaeLlDxnfbNkEXuvgPv {\n /* mayble add styles later */\n }\n\n .e8Ntd3E2x84wOs3f0SWw.I4LzMmf7NAOFweh98NVL {\n cursor: pointer;\n background-image: var(--click-gradient);\n }\n\n .e8Ntd3E2x84wOs3f0SWw.I4LzMmf7NAOFweh98NVL.NEEGM3fjGRcqMtWP1jur {\n pointer-events: none;\n opacity: 0.5;\n }\n}\n\n@layer var {\n .e8Ntd3E2x84wOs3f0SWw {\n height: unset;\n padding: unset;\n background-color: color-mix(in lab, currentcolor 10%, var(--fabric-bg));\n }\n\n .e8Ntd3E2x84wOs3f0SWw[data-variant="outline"] {\n outline-color: color-mix(in lab, currentcolor 50%, var(--fabric-bg));\n box-shadow: 0 0 2px color-mix(in lab, currentcolor 50%, var(--tint)) inset;\n }\n\n .e8Ntd3E2x84wOs3f0SWw > * {\n color: color-mix(in lab, currentcolor 50%, var(--fabric-text));\n }\n .e8Ntd3E2x84wOs3f0SWw.I4LzMmf7NAOFweh98NVL:hover {\n background-color: color-mix(in lab, currentcolor 20%, var(--fabric-bg));\n }\n\n .e8Ntd3E2x84wOs3f0SWw.I4LzMmf7NAOFweh98NVL:active,\n .e8Ntd3E2x84wOs3f0SWw.I4LzMmf7NAOFweh98NVL[data-dropdown-open="true"] {\n background-color: color-mix(in lab, currentcolor 15%, var(--fabric-bg));\n background-image: var(--active-gradient);\n }\n\n .e8Ntd3E2x84wOs3f0SWw.I4LzMmf7NAOFweh98NVL[data-dropdown-open="true"] {\n pointer-events: none;\n }\n\n .e8Ntd3E2x84wOs3f0SWw[data-variant="solid"] {\n background-color: color-mix(in lab, currentcolor 35%, var(--fabric-bg));\n outline-color: color-mix(in lab, currentcolor 50%, var(--fabric-bg));\n }\n\n .e8Ntd3E2x84wOs3f0SWw[data-variant="solid"] > * {\n color: color-mix(in lab, currentcolor 5%, var(--fabric-text));\n }\n .e8Ntd3E2x84wOs3f0SWw.I4LzMmf7NAOFweh98NVL[data-variant="solid"]:hover {\n background-color: color-mix(\n in lab,\n currentcolor 45%,\n var(--fabric-bg)\n );\n }\n\n .e8Ntd3E2x84wOs3f0SWw.I4LzMmf7NAOFweh98NVL[data-variant="solid"]:active,\n .e8Ntd3E2x84wOs3f0SWw.I4LzMmf7NAOFweh98NVL[data-variant="solid"][data-dropdown-open="true"] {\n background-color: color-mix(\n in lab,\n currentcolor 30%,\n var(--fabric-bg)\n );\n }\n}\n',"",{version:3,sources:["webpack://./packages/core/src/components/chip/Chip.module.css"],names:[],mappings:"AAAA;;;;;;;;;;;;;;;;;;;;;EAqBE;;AAEF;EACE;IACE,qEAAqE;;IAErE,6CAA6B;IAC7B,uCAAuC;IACvC,wEAAwE;IACxE,oBAAoB;EAyBtB;;IAvBE;MACE,gBAAgB;IAClB;MAGE;QACE,2BAA2B;MAC7B;;IAGF;MACE,4BAA4B;IAC9B;;IAEA;MACE,eAAe;MACf,uCAAuC;IAMzC;;MAJE;QACE,oBAAoB;QACpB,YAAY;MACd;AAGN;;AAEA;EACE;IACE,aAAa;IACb,cAAc;IACd,uEAAuE;EAsDzE;;IApDE;MACE,oEAAoE;MACpE,0EAA0E;IAC5E;;IAEA;MACE,8DAA8D;IAChE;MAGE;QACE,uEAAuE;MACzE;;MAEA;;QAEE,uEAAuE;QACvE,wCAAwC;MAC1C;;MAEA;QACE,oBAAoB;MACtB;;IAGF;MACE,uEAAuE;MACvE,oEAAoE;IAwBtE;;MAtBE;QACE,6DAA6D;MAC/D;QAGE;UACE;;;;WAIC;QACH;;QAEA;;UAEE;;;;WAIC;QACH;AAIR",sourcesContent:['/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .chip {\n --blank-gradient: linear-gradient(to bottom, #00000005 0%, #0000 10%);\n\n color: theme(colors.tint.500);\n background-image: var(--blank-gradient);\n outline: 1px solid color-mix(in lab, currentcolor 20%, var(--fabric-bg));\n outline-offset: -1px;\n\n & > .chipLabel {\n padding: 0 0.5em;\n }\n\n & > .chipIcon {\n & + .chipLabel {\n margin-inline-start: -0.5em;\n }\n }\n\n & > .chipRemove {\n /* mayble add styles later */\n }\n\n &.clickable {\n cursor: pointer;\n background-image: var(--click-gradient);\n\n &.disabled {\n pointer-events: none;\n opacity: 0.5;\n }\n }\n }\n}\n\n@layer var {\n .chip {\n height: unset;\n padding: unset;\n background-color: color-mix(in lab, currentcolor 10%, var(--fabric-bg));\n\n &[data-variant="outline"] {\n outline-color: color-mix(in lab, currentcolor 50%, var(--fabric-bg));\n box-shadow: 0 0 2px color-mix(in lab, currentcolor 50%, var(--tint)) inset;\n }\n\n > * {\n color: color-mix(in lab, currentcolor 50%, var(--fabric-text));\n }\n\n &.clickable {\n &:hover {\n background-color: color-mix(in lab, currentcolor 20%, var(--fabric-bg));\n }\n\n &:active,\n &[data-dropdown-open="true"] {\n background-color: color-mix(in lab, currentcolor 15%, var(--fabric-bg));\n background-image: var(--active-gradient);\n }\n\n &[data-dropdown-open="true"] {\n pointer-events: none;\n }\n }\n\n &[data-variant="solid"] {\n background-color: color-mix(in lab, currentcolor 35%, var(--fabric-bg));\n outline-color: color-mix(in lab, currentcolor 50%, var(--fabric-bg));\n\n & > * {\n color: color-mix(in lab, currentcolor 5%, var(--fabric-text));\n }\n\n &.clickable {\n &:hover {\n background-color: color-mix(\n in lab,\n currentcolor 45%,\n var(--fabric-bg)\n );\n }\n\n &:active,\n &[data-dropdown-open="true"] {\n background-color: color-mix(\n in lab,\n currentcolor 30%,\n var(--fabric-bg)\n );\n }\n }\n }\n }\n}\n'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={chip:"e8Ntd3E2x84wOs3f0SWw",chipLabel:"wTjetcaWNtxsWbBajWqA",chipIcon:"mezeA4fOOcGgWcAyF9gM",chipRemove:"SEaeLlDxnfbNkEXuvgPv",clickable:"I4LzMmf7NAOFweh98NVL",disabled:"NEEGM3fjGRcqMtWP1jur"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/components/collapsable/Collapsable.module.css":(module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .TmWn41rdVekwbHaYyhda + .TmWn41rdVekwbHaYyhda {\n border-top: 1px solid color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 65%, color(from var(--tint) srgb r g b / 1));\n }\n}\n',"",{version:3,sources:["webpack://./packages/core/src/components/collapsable/Collapsable.module.css"],names:[],mappings:"AAAA;;;;;;;;;;;;;;;;;;;;;EAqBE;;AAEF;IAEI;MACE,iIAA6C;IAC/C;AAEJ",sourcesContent:['/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .collapsable {\n & + & {\n border-top: 1px solid theme(borderColor.base);\n }\n }\n}\n'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={collapsable:"TmWn41rdVekwbHaYyhda"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/components/divider/Divider.module.css":(module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .eKCoqeokYBcDrPbyXbRy {\n margin-inline: 0.25rem;\n }\n\n .RnqHewkPwUCyc6Z0L5Gd {\n margin-block: 0.25rem;\n }\n}\n',"",{version:3,sources:["webpack://./packages/core/src/components/divider/Divider.module.css"],names:[],mappings:"AAAA;;;;;;;;;;;;;;;;;;;;;EAqBE;;AAEF;EACE;IACE,sBAAsB;EACxB;;EAEA;IACE,qBAAqB;EACvB;AACF",sourcesContent:['/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .vertical {\n margin-inline: 0.25rem;\n }\n\n .horizontal {\n margin-block: 0.25rem;\n }\n}\n'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={vertical:"eKCoqeokYBcDrPbyXbRy",horizontal:"RnqHewkPwUCyc6Z0L5Gd"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/components/dropdown/Dropdown.module.css":(module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer var {\n .MbkRpTla1nZTTdG5zuSA {\n grid-template: 1fr /1fr;\n }\n\n .MbkRpTla1nZTTdG5zuSA [data-ref="card"],\n .MbkRpTla1nZTTdG5zuSA [data-ref="panel"],\n .MbkRpTla1nZTTdG5zuSA [data-ref="panelGroup"] {\n grid-area: unset;\n\n border-top: 0;\n border-inline: 0;\n outline: 0;\n box-shadow: none;\n }\n}\n',"",{version:3,sources:["webpack://./packages/core/src/components/dropdown/Dropdown.module.css"],names:[],mappings:"AAAA;;;;;;;;;;;;;;;;;;;;;EAqBE;;AAEF;EACE;IACE,uBAAuB;EAYzB;;IAVE;;;MAGE,gBAAgB;;MAEhB,aAAa;MACb,gBAAgB;MAChB,UAAU;MACV,gBAAgB;IAClB;AAEJ",sourcesContent:['/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer var {\n .dropdownBody {\n grid-template: 1fr /1fr;\n\n & [data-ref="card"],\n & [data-ref="panel"],\n & [data-ref="panelGroup"] {\n grid-area: unset;\n\n border-top: 0;\n border-inline: 0;\n outline: 0;\n box-shadow: none;\n }\n }\n}\n'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={dropdownBody:"MbkRpTla1nZTTdG5zuSA"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/components/icon/Icon.module.css":(module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .dyXAlDHOeSEnZp_wUsCK {\n position: relative;\n width: 1em;\n height: 1em;\n vertical-align: -0.125em;\n }\n\n .dyXAlDHOeSEnZp_wUsCK > i,\n .dyXAlDHOeSEnZp_wUsCK > svg,\n .dyXAlDHOeSEnZp_wUsCK > img {\n pointer-events: none;\n\n overflow: hidden;\n display: block;\n\n width: 1em;\n height: 1em;\n\n line-height: 1;\n\n -o-object-fit: cover;\n\n object-fit: cover;\n border-radius: inherit;\n\n fill: currentcolor;\n }\n\n .dyXAlDHOeSEnZp_wUsCK > i::before {\n line-height: 1;\n }\n\n .dyXAlDHOeSEnZp_wUsCK[data-clickable="true"] {\n opacity: 0.75;\n }\n\n .dyXAlDHOeSEnZp_wUsCK[data-clickable="true"]:hover {\n opacity: 0.9;\n background-color: color(from var(--fabric-text) srgb r g b / 10%);\n }\n\n .dyXAlDHOeSEnZp_wUsCK[data-clickable="true"]:active {\n opacity: 0.5;\n }\n\n [dir="rtl"] .dyXAlDHOeSEnZp_wUsCK[data-flip="true"] {\n transform: scaleX(-1);\n }\n}\n',"",{version:3,sources:["webpack://./packages/core/src/components/icon/Icon.module.css"],names:[],mappings:"AAAA;;;;;;;;;;;;;;;;;;;;;EAqBE;;AAEF;EACE;IACE,kBAAkB;IAClB,UAAU;IACV,WAAW;IACX,wBAAwB;EAqC1B;;IAnCE;;;MAGE,oBAAoB;;MAEpB,gBAAgB;MAChB,cAAc;;MAEd,UAAU;MACV,WAAW;;MAEX,cAAc;;MAEd,oBAAiB;;SAAjB,iBAAiB;MACjB,sBAAsB;;MAEtB,kBAAkB;IACpB;;IAEA;MACE,cAAc;IAChB;;IAEA;MACE,aAAa;IAUf;;MARE;QACE,YAAY;QACZ,iEAAwC;MAC1C;;MAEA;QACE,YAAY;MACd;;EAIJ;IACE,qBAAqB;EACvB;AACF",sourcesContent:['/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .icon {\n position: relative;\n width: 1em;\n height: 1em;\n vertical-align: -0.125em;\n\n & > i,\n & > svg,\n & > img {\n pointer-events: none;\n\n overflow: hidden;\n display: block;\n\n width: 1em;\n height: 1em;\n\n line-height: 1;\n\n object-fit: cover;\n border-radius: inherit;\n\n fill: currentcolor;\n }\n\n & > i::before {\n line-height: 1;\n }\n\n &[data-clickable="true"] {\n opacity: 0.75;\n\n &:hover {\n opacity: 0.9;\n background-color: theme(colors.text/10%);\n }\n\n &:active {\n opacity: 0.5;\n }\n }\n }\n\n [dir="rtl"] .icon[data-flip="true"] {\n transform: scaleX(-1);\n }\n}\n'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={icon:"dyXAlDHOeSEnZp_wUsCK"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/components/media/Media.module.css":(module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .HHwc9ElqPz6TOZFJ5LGR.IIKpIoFANwtSBVTdwKrW::after,\n .HHwc9ElqPz6TOZFJ5LGR.IIKpIoFANwtSBVTdwKrW::before {\n content: "";\n\n position: absolute;\n inset-inline: 0;\n\n height: 0.5rem;\n\n background-image: linear-gradient(\n to right,\n #222c 0,\n #222c 0.25rem,\n #fff8 0.25rem,\n #fff8 0.75rem,\n #222c 0.75rem,\n #222c 1rem\n );\n background-repeat: repeat-x;\n background-position: center center;\n background-size: 1rem;\n border: 0.125rem solid #222c;\n }\n\n .HHwc9ElqPz6TOZFJ5LGR.IIKpIoFANwtSBVTdwKrW::before {\n top: 0;\n }\n\n .HHwc9ElqPz6TOZFJ5LGR.IIKpIoFANwtSBVTdwKrW::after {\n bottom: 0;\n }\n\n .HHwc9ElqPz6TOZFJ5LGR .TgZ8ShMHRBEN_NoC5SiV {\n /* might add styles later */\n }\n .HHwc9ElqPz6TOZFJ5LGR .EA0thdiSfJoHrIGbxGi0 [data-ref="button"] {\n margin: 0;\n }\n\n .HHwc9ElqPz6TOZFJ5LGR .EA0thdiSfJoHrIGbxGi0 [data-ref="button"] > :first-child {\n color: #fff;\n background-color: rgb(25 26 27 / 50%);\n }\n\n .HHwc9ElqPz6TOZFJ5LGR .EA0thdiSfJoHrIGbxGi0 [data-ref="button"] > :first-child:hover {\n color: color-mix(in lab, color(from var(--primary) srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n background-color: rgb(25 26 27 / 80%);\n }\n\n .HHwc9ElqPz6TOZFJ5LGR .EA0thdiSfJoHrIGbxGi0 .sN0R8NjajemnuB19FsVg > :first-child {\n background-color: rgb(25 26 27 / 70%);\n }\n\n .HHwc9ElqPz6TOZFJ5LGR .EA0thdiSfJoHrIGbxGi0 .VUI5Xma9EwtGxfjD4dm0 {\n /* might add styles later */\n }\n\n :is(.HHwc9ElqPz6TOZFJ5LGR .EA0thdiSfJoHrIGbxGi0) .sN0R8NjajemnuB19FsVg + .sN0R8NjajemnuB19FsVg {\n margin-top: 8px;\n }\n\n .irqHppriMhoe_lY96ySx {\n /* might add styles later */\n }\n}\n\n@layer util {\n :scope .EA0thdiSfJoHrIGbxGi0:hover .VUI5Xma9EwtGxfjD4dm0 {\n display: none;\n }\n :scope .EA0thdiSfJoHrIGbxGi0:not(:hover) .sN0R8NjajemnuB19FsVg {\n display: none;\n }\n}\n',"",{version:3,sources:["webpack://./packages/core/src/components/media/Media.module.css"],names:[],mappings:"AAAA;;;;;;;;;;;;;;;;;;;;;EAqBE;;AAEF;MAGM;;QAEE,WAAW;;QAEX,kBAAkB;QAClB,eAAe;;QAEf,cAAc;;QAEd;;;;;;;;SAQC;QACD,2BAA2B;QAC3B,kCAAkC;QAClC,qBAAqB;QACrB,4BAA4B;MAC9B;;MAEA;QACE,MAAM;MACR;;MAEA;QACE,SAAS;MACX;;IAGF;MACE,2BAA2B;IAC7B;MAGE;QACE,SAAS;MAWX;;QATE;UACE,WAAW;UACX,qCAAyC;QAM3C;;UAJE;YACE,uHAAgC;YAChC,qCAAyC;UAC3C;;MAIJ;QACE,qCAAyC;MAC3C;;MAEA;QACE,2BAA2B;MAC7B;;MAEA;QACE,eAAe;MACjB;;EAIJ;IACE,2BAA2B;EAC7B;AACF;;AAEA;MAGM;QACE,aAAa;MACf;MAIA;QACE,aAAa;MACf;AAGN",sourcesContent:['/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .mediaContainer {\n &.mediaReel {\n &::after,\n &::before {\n content: "";\n\n position: absolute;\n inset-inline: 0;\n\n height: 0.5rem;\n\n background-image: linear-gradient(\n to right,\n #222c 0,\n #222c 0.25rem,\n #fff8 0.25rem,\n #fff8 0.75rem,\n #222c 0.75rem,\n #222c 1rem\n );\n background-repeat: repeat-x;\n background-position: center center;\n background-size: 1rem;\n border: 0.125rem solid #222c;\n }\n\n &::before {\n top: 0;\n }\n\n &::after {\n bottom: 0;\n }\n }\n\n & .mediaPlaceholder {\n /* might add styles later */\n }\n\n & .mediaControls {\n & [data-ref="button"] {\n margin: 0;\n\n & > :first-child {\n color: #fff;\n background-color: theme(colors.black/50%);\n\n &:hover {\n color: theme(colors.primary.600);\n background-color: theme(colors.black/80%);\n }\n }\n }\n\n & .mediaControlAction > :first-child {\n background-color: theme(colors.black/70%);\n }\n\n & .mediaControlPlaceholder {\n /* might add styles later */\n }\n\n & .mediaControlAction + .mediaControlAction {\n margin-top: 8px;\n }\n }\n }\n\n .media {\n /* might add styles later */\n }\n}\n\n@layer util {\n & .mediaControls {\n &:hover {\n & .mediaControlPlaceholder {\n display: none;\n }\n }\n\n &:not(:hover) {\n & .mediaControlAction {\n display: none;\n }\n }\n }\n}\n'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={mediaContainer:"HHwc9ElqPz6TOZFJ5LGR",mediaReel:"IIKpIoFANwtSBVTdwKrW",mediaPlaceholder:"TgZ8ShMHRBEN_NoC5SiV",mediaControls:"EA0thdiSfJoHrIGbxGi0",mediaControlAction:"sN0R8NjajemnuB19FsVg",mediaControlPlaceholder:"VUI5Xma9EwtGxfjD4dm0",media:"irqHppriMhoe_lY96ySx"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/components/menu/Menu.module.css":(module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .P2n3yXn3aQeAej5VYU0Z {\n --color: var(--primary);\n }\n\n .P2n3yXn3aQeAej5VYU0Z[data-color="accent"] {\n --color: var(--accent);\n }\n\n .P2n3yXn3aQeAej5VYU0Z[data-color="info"] {\n --color: #00bfff;\n }\n\n .P2n3yXn3aQeAej5VYU0Z[data-color="danger"] {\n --color: #f24c3d;\n }\n\n .P2n3yXn3aQeAej5VYU0Z[data-color="success"] {\n --color: #44bc69;\n }\n\n .P2n3yXn3aQeAej5VYU0Z[data-color="warning"] {\n --color: #edaa00;\n }\n}\n\n@layer var {\n .P2n3yXn3aQeAej5VYU0Z {\n color: color-mix(in lab, var(--color) 80%, var(--fabric-text));\n }\n\n .P2n3yXn3aQeAej5VYU0Z > * {\n pointer-events: none;\n }\n\n .P2n3yXn3aQeAej5VYU0Z[data-focus="true"] {\n background-color: color(from var(--color) srgb r g b / 15%);\n }\n\n .P2n3yXn3aQeAej5VYU0Z:active {\n background-color: color(from var(--color) srgb r g b / 35%);\n }\n\n .P2n3yXn3aQeAej5VYU0Z[data-open="true"] {\n background-color: color(from var(--color) srgb r g b / 10%);\n }\n\n .P2n3yXn3aQeAej5VYU0Z.wDPOmnGBR2ysaL9f2HVI,\n .P2n3yXn3aQeAej5VYU0Z.active {\n pointer-events: none;\n background-color: color(from var(--color) srgb r g b / 20%);\n }\n\n .P2n3yXn3aQeAej5VYU0Z.wDPOmnGBR2ysaL9f2HVI > div, .P2n3yXn3aQeAej5VYU0Z.active > div {\n box-shadow: 4px 0 0 var(--color) inset;\n }\n\n [dir="rtl"] :is(.P2n3yXn3aQeAej5VYU0Z.wDPOmnGBR2ysaL9f2HVI > div), [dir="rtl"] :is(.P2n3yXn3aQeAej5VYU0Z.active > div) {\n box-shadow: -4px 0 0 var(--color) inset;\n }\n\n .P2n3yXn3aQeAej5VYU0Z.Gai5quIvKoDCEcZebGtR {\n pointer-events: none;\n color: color(from var(--tint) srgb r g b / 1);\n opacity: 0.5;\n }\n\n .P2n3yXn3aQeAej5VYU0Z.Gai5quIvKoDCEcZebGtR > label ~ * {\n display: none;\n }\n\n .aNQ8r0dca6frXsxdBEQX {\n padding: 0.3em;\n font-size: 1.25em;\n }\n\n .aNQ8r0dca6frXsxdBEQX.NyL9eqbBpHAKUkmadj7R {\n padding: 0.375em;\n font-size: 1.5em;\n font-weight: 500;\n }\n\n .menu-list.hide-icons .aNQ8r0dca6frXsxdBEQX {\n width: 0.125em;\n }\n}\n',"",{version:3,sources:["webpack://./packages/core/src/components/menu/Menu.module.css"],names:[],mappings:"AAAA;;;;;;;;;;;;;;;;;;;;;EAqBE;;AAEF;EACE;IACE,uBAAsC;EAqBxC;;IAnBE;MACE,sBAAqC;IACvC;;IAEA;MACE,gBAAmC;IACrC;;IAEA;MACE,gBAAqC;IACvC;;IAEA;MACE,gBAAsC;IACxC;;IAEA;MACE,gBAAsC;IACxC;AAEJ;;AAEA;EACE;IACE,8DAA8D;EAyChE;;IAvCE;MACE,oBAAoB;IACtB;;IAEA;MACE,2DAA2D;IAC7D;;IAEA;MACE,2DAA2D;IAC7D;;IAEA;MACE,2DAA2D;IAC7D;;IAEA;;MAEE,oBAAoB;MACpB,2DAA2D;IAS7D;;MAPE;QACE,sCAAsC;MAKxC;;QAHE;UACE,uCAAuC;QACzC;;IAIJ;MACE,oBAAoB;MACpB,6CAAgC;MAChC,YAAY;IAKd;;MAHE;QACE,aAAa;MACf;;EAIJ;IACE,cAAc;IACd,iBAAiB;EAOnB;;IALE;MACE,gBAAgB;MAChB,gBAAgB;MAChB,gBAAgB;IAClB;;EAGF;IACE,cAAc;EAChB;AACF",sourcesContent:['/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .menuItem {\n --color: theme(colors.primary.DEFAULT);\n\n &[data-color="accent"] {\n --color: theme(colors.accent.DEFAULT);\n }\n\n &[data-color="info"] {\n --color: theme(colors.info.DEFAULT);\n }\n\n &[data-color="danger"] {\n --color: theme(colors.danger.DEFAULT);\n }\n\n &[data-color="success"] {\n --color: theme(colors.success.DEFAULT);\n }\n\n &[data-color="warning"] {\n --color: theme(colors.warning.DEFAULT);\n }\n }\n}\n\n@layer var {\n .menuItem {\n color: color-mix(in lab, var(--color) 80%, var(--fabric-text));\n\n > * {\n pointer-events: none;\n }\n\n &[data-focus="true"] {\n background-color: color(from var(--color) srgb r g b / 15%);\n }\n\n &:active {\n background-color: color(from var(--color) srgb r g b / 35%);\n }\n\n &[data-open="true"] {\n background-color: color(from var(--color) srgb r g b / 10%);\n }\n\n &.active,\n &:global(.active) {\n pointer-events: none;\n background-color: color(from var(--color) srgb r g b / 20%);\n\n & > div {\n box-shadow: 4px 0 0 var(--color) inset;\n\n :global([dir="rtl"]) & {\n box-shadow: -4px 0 0 var(--color) inset;\n }\n }\n }\n\n &.disabled {\n pointer-events: none;\n color: theme(textColor.tint.500);\n opacity: 0.5;\n\n & > label ~ * {\n display: none;\n }\n }\n }\n\n .menuIcon {\n padding: 0.3em;\n font-size: 1.25em;\n\n &.minimal {\n padding: 0.375em;\n font-size: 1.5em;\n font-weight: 500;\n }\n }\n\n :global(.menu-list.hide-icons) .menuIcon {\n width: 0.125em;\n }\n}\n'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={menuItem:"P2n3yXn3aQeAej5VYU0Z",active:"wDPOmnGBR2ysaL9f2HVI",disabled:"Gai5quIvKoDCEcZebGtR",menuIcon:"aNQ8r0dca6frXsxdBEQX",minimal:"NyL9eqbBpHAKUkmadj7R"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/components/meter/Meter.module.css":(module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .A4QiFVAvmszULlfby45S .NpH_Sf9s_4j_Mt9Wkqvq {\n flex: 1 1 1rem;\n\n min-width: 1rem;\n max-width: 12rem;\n height: 0.5em;\n\n line-height: 1;\n }\n\n .A4QiFVAvmszULlfby45S .NpH_Sf9s_4j_Mt9Wkqvq::after {\n width: var(--width);\n }\n\n .A4QiFVAvmszULlfby45S > label {\n font-size: max(0.75rem, 0.5em);\n line-height: 1;\n }\n .A4QiFVAvmszULlfby45S .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(1)::after, .A4QiFVAvmszULlfby45S .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(2)::after, .A4QiFVAvmszULlfby45S .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(3)::after, .A4QiFVAvmszULlfby45S .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(4)::after, .A4QiFVAvmszULlfby45S .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(5)::after, .A4QiFVAvmszULlfby45S .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(6)::after {\n opacity: 0.85;\n background-color: currentColor;\n }\n\n .A4QiFVAvmszULlfby45S .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(1) {\n color: #eb5e28;\n }\n\n .A4QiFVAvmszULlfby45S .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(2) {\n color: #f9a03f;\n }\n\n .A4QiFVAvmszULlfby45S .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(3) {\n color: #f3c053;\n }\n\n .A4QiFVAvmszULlfby45S .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(4) {\n color: #a1c349;\n }\n\n .A4QiFVAvmszULlfby45S .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(5) {\n color: #87a330;\n }\n\n .A4QiFVAvmszULlfby45S .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(6) {\n color: #6a8532;\n }\n\n .A4QiFVAvmszULlfby45S[class*="text-primary"] .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"],\n .A4QiFVAvmszULlfby45S[class*="text-accent"] .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"],\n .A4QiFVAvmszULlfby45S[class*="text-info"] .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"],\n .A4QiFVAvmszULlfby45S[class*="text-danger"] .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"],\n .A4QiFVAvmszULlfby45S[class*="text-success"] .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"],\n .A4QiFVAvmszULlfby45S[class*="text-warning"] .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"] {\n color: currentColor;\n }\n\n .A4QiFVAvmszULlfby45S[class*="text-primary"] .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(1)::after, .A4QiFVAvmszULlfby45S[class*="text-accent"] .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(1)::after, .A4QiFVAvmszULlfby45S[class*="text-info"] .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(1)::after, .A4QiFVAvmszULlfby45S[class*="text-danger"] .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(1)::after, .A4QiFVAvmszULlfby45S[class*="text-success"] .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(1)::after, .A4QiFVAvmszULlfby45S[class*="text-warning"] .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(1)::after {\n opacity: 0.2;\n }\n\n .A4QiFVAvmszULlfby45S[class*="text-primary"] .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(2)::after, .A4QiFVAvmszULlfby45S[class*="text-accent"] .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(2)::after, .A4QiFVAvmszULlfby45S[class*="text-info"] .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(2)::after, .A4QiFVAvmszULlfby45S[class*="text-danger"] .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(2)::after, .A4QiFVAvmszULlfby45S[class*="text-success"] .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(2)::after, .A4QiFVAvmszULlfby45S[class*="text-warning"] .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(2)::after {\n opacity: 0.35;\n }\n\n .A4QiFVAvmszULlfby45S[class*="text-primary"] .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(3)::after, .A4QiFVAvmszULlfby45S[class*="text-accent"] .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(3)::after, .A4QiFVAvmszULlfby45S[class*="text-info"] .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(3)::after, .A4QiFVAvmszULlfby45S[class*="text-danger"] .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(3)::after, .A4QiFVAvmszULlfby45S[class*="text-success"] .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(3)::after, .A4QiFVAvmszULlfby45S[class*="text-warning"] .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(3)::after {\n opacity: 0.5;\n }\n\n .A4QiFVAvmszULlfby45S[class*="text-primary"] .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(4)::after, .A4QiFVAvmszULlfby45S[class*="text-accent"] .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(4)::after, .A4QiFVAvmszULlfby45S[class*="text-info"] .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(4)::after, .A4QiFVAvmszULlfby45S[class*="text-danger"] .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(4)::after, .A4QiFVAvmszULlfby45S[class*="text-success"] .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(4)::after, .A4QiFVAvmszULlfby45S[class*="text-warning"] .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(4)::after {\n opacity: 0.65;\n }\n\n .A4QiFVAvmszULlfby45S[class*="text-primary"] .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(5)::after, .A4QiFVAvmszULlfby45S[class*="text-accent"] .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(5)::after, .A4QiFVAvmszULlfby45S[class*="text-info"] .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(5)::after, .A4QiFVAvmszULlfby45S[class*="text-danger"] .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(5)::after, .A4QiFVAvmszULlfby45S[class*="text-success"] .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(5)::after, .A4QiFVAvmszULlfby45S[class*="text-warning"] .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(5)::after {\n opacity: 0.8;\n }\n\n .A4QiFVAvmszULlfby45S[class*="text-primary"] .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(6)::after, .A4QiFVAvmszULlfby45S[class*="text-accent"] .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(6)::after, .A4QiFVAvmszULlfby45S[class*="text-info"] .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(6)::after, .A4QiFVAvmszULlfby45S[class*="text-danger"] .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(6)::after, .A4QiFVAvmszULlfby45S[class*="text-success"] .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(6)::after, .A4QiFVAvmszULlfby45S[class*="text-warning"] .NpH_Sf9s_4j_Mt9Wkqvq[data-active="true"]:nth-child(6)::after {\n opacity: 0.95;\n }\n}\n',"",{version:3,sources:["webpack://./packages/core/src/components/meter/Meter.module.css"],names:[],mappings:"AAAA;;;;;;;;;;;;;;;;;;;;;EAqBE;;AAEF;IAEI;MACE,cAAc;;MAEd,eAAe;MACf,gBAAgB;MAChB,aAAa;;MAEb,cAAc;IAKhB;;MAHE;QACE,mBAAmB;MACrB;;IAGF;MACE,8BAA8B;MAC9B,cAAc;IAChB;QASI;UACE,aAAa;UACb,8BAA8B;QAChC;;MAGF;QACE,cAAc;MAChB;;MAEA;QACE,cAAc;MAChB;;MAEA;QACE,cAAc;MAChB;;MAEA;QACE,cAAc;MAChB;;MAEA;QACE,cAAc;MAChB;;MAEA;QACE,cAAc;MAChB;;IAGF;;;;;;MAME,mBAAmB;IAyBrB;;MAvBE;QACE,YAAY;MACd;;MAEA;QACE,aAAa;MACf;;MAEA;QACE,YAAY;MACd;;MAEA;QACE,aAAa;MACf;;MAEA;QACE,YAAY;MACd;;MAEA;QACE,aAAa;MACf;AAGN",sourcesContent:['/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .meter {\n & .meterBar {\n flex: 1 1 1rem;\n\n min-width: 1rem;\n max-width: 12rem;\n height: 0.5em;\n\n line-height: 1;\n\n &::after {\n width: var(--width);\n }\n }\n\n & > label {\n font-size: max(0.75rem, 0.5em);\n line-height: 1;\n }\n\n & .meterBar[data-active="true"] {\n &:nth-child(1),\n &:nth-child(2),\n &:nth-child(3),\n &:nth-child(4),\n &:nth-child(5),\n &:nth-child(6) {\n &::after {\n opacity: 0.85;\n background-color: currentColor;\n }\n }\n\n &:nth-child(1) {\n color: #eb5e28;\n }\n\n &:nth-child(2) {\n color: #f9a03f;\n }\n\n &:nth-child(3) {\n color: #f3c053;\n }\n\n &:nth-child(4) {\n color: #a1c349;\n }\n\n &:nth-child(5) {\n color: #87a330;\n }\n\n &:nth-child(6) {\n color: #6a8532;\n }\n }\n\n &[class*="text-primary"] .meterBar[data-active="true"],\n &[class*="text-accent"] .meterBar[data-active="true"],\n &[class*="text-info"] .meterBar[data-active="true"],\n &[class*="text-danger"] .meterBar[data-active="true"],\n &[class*="text-success"] .meterBar[data-active="true"],\n &[class*="text-warning"] .meterBar[data-active="true"] {\n color: currentColor;\n\n &:nth-child(1)::after {\n opacity: 0.2;\n }\n\n &:nth-child(2)::after {\n opacity: 0.35;\n }\n\n &:nth-child(3)::after {\n opacity: 0.5;\n }\n\n &:nth-child(4)::after {\n opacity: 0.65;\n }\n\n &:nth-child(5)::after {\n opacity: 0.8;\n }\n\n &:nth-child(6)::after {\n opacity: 0.95;\n }\n }\n }\n}\n'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={meter:"A4QiFVAvmszULlfby45S",meterBar:"NpH_Sf9s_4j_Mt9Wkqvq"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/components/panel/Panel.module.css":(module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .akpuXzNaM7z6bRfkG8OK {\n grid-template: "head" auto "content" 1fr / 1fr;\n background-color: color(from var(--fabric-bg) srgb r g b / 1);\n }\n\n .akpuXzNaM7z6bRfkG8OK > * {\n background-color: transparent;\n }\n\n .akpuXzNaM7z6bRfkG8OK.fixed {\n box-shadow: 0 0 18px var(--fabric-shadow);\n }\n\n .akpuXzNaM7z6bRfkG8OK .CFCvtz229_01ddq8M57p {\n background-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 90%, color(from var(--tint) srgb r g b / 1));\n }\n\n .akpuXzNaM7z6bRfkG8OK .QE80WeyiPuHRBvXO9LTN {\n padding: 0.25rem;\n }\n\n .akpuXzNaM7z6bRfkG8OK .ZQ13J_eD9_VKi5vGJTFT {\n grid-template: "head head head" auto ". loader ." auto "side-s content side-e" 1fr "foot foot foot" auto / auto 1fr auto;\n }\n}\n\n@layer util {\n .AXr4h6SyViJj9gmgr9KB > .akpuXzNaM7z6bRfkG8OK[data-collapsed="true"] {\n flex: 0 0 auto;\n }\n\n .AXr4h6SyViJj9gmgr9KB > .akpuXzNaM7z6bRfkG8OK[data-collapsed="false"] {\n flex: 1 1 auto;\n min-height: 15rem;\n }\n\n .AXr4h6SyViJj9gmgr9KB > .akpuXzNaM7z6bRfkG8OK[data-collapsed="false"] [data-ref="panelCollapse"] {\n pointer-events: none;\n color: var(--tint);\n opacity: 0.25;\n }\n\n .AXr4h6SyViJj9gmgr9KB > .akpuXzNaM7z6bRfkG8OK:not(:first-child) {\n border-start-start-radius: 0;\n border-start-end-radius: 0;\n }\n\n .AXr4h6SyViJj9gmgr9KB > .akpuXzNaM7z6bRfkG8OK:not(:last-child) {\n border-bottom: 1px solid color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 99%, color(from var(--tint) srgb r g b / 1));\n border-end-start-radius: 0;\n border-end-end-radius: 0;\n }\n\n [data-ref="asideBody"] > .AXr4h6SyViJj9gmgr9KB > .akpuXzNaM7z6bRfkG8OK {\n border-radius: 0;\n outline: 0;\n }\n}\n',"",{version:3,sources:["webpack://./packages/core/src/components/panel/Panel.module.css"],names:[],mappings:"AAAA;;;;;;;;;;;;;;;;;;;;;EAqBE;;AAEF;EACE;IACE,8CAA8C;IAC9C,6DAAkC;EAqBpC;;IAnBE;MACE,6BAA6B;IAC/B;;IAEA;MACE,yCAA+C;IACjD;;IAEA;MACE,6HAA+C;IACjD;;IAEA;MACE,gBAAgB;IAClB;;IAEA;MACE,wHAAwH;IAC1H;AAEJ;;AAEA;MAGM;QACE,cAAc;MAChB;;MAEA;QACE,cAAc;QACd,iBAAiB;MAOnB;;QALE;UACE,oBAAoB;UACpB,kBAAkB;UAClB,aAAa;QACf;;IAIJ;MACE,4BAA4B;MAC5B,0BAA0B;IAC5B;;IAEA;MACE,oIAAoD;MACpD,0BAA0B;MAC1B,wBAAwB;IAC1B;;EAGF;IACE,gBAAgB;IAChB,UAAU;EACZ;AACF",sourcesContent:['/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .panel {\n grid-template: "head" auto "content" 1fr / 1fr;\n background-color: theme(colors.bg);\n\n & > * {\n background-color: transparent;\n }\n\n &:global(.fixed) {\n box-shadow: 0 0 18px theme(boxShadowColor.base);\n }\n\n & .panelHeader {\n background-color: theme(backgroundColor.dimmed);\n }\n\n & .panelAction {\n padding: 0.25rem;\n }\n\n & .panelBody {\n grid-template: "head head head" auto ". loader ." auto "side-s content side-e" 1fr "foot foot foot" auto / auto 1fr auto;\n }\n }\n}\n\n@layer util {\n .panelGroup {\n & > .panel {\n &[data-collapsed="true"] {\n flex: 0 0 auto;\n }\n\n &[data-collapsed="false"] {\n flex: 1 1 auto;\n min-height: 15rem;\n\n [data-ref="panelCollapse"] {\n pointer-events: none;\n color: var(--tint);\n opacity: 0.25;\n }\n }\n }\n\n & > .panel:not(:first-child) {\n border-start-start-radius: 0;\n border-start-end-radius: 0;\n }\n\n & > .panel:not(:last-child) {\n border-bottom: 1px solid theme(backgroundColor.base);\n border-end-start-radius: 0;\n border-end-end-radius: 0;\n }\n }\n\n [data-ref="asideBody"] > .panelGroup > .panel {\n border-radius: 0;\n outline: 0;\n }\n}\n'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={panel:"akpuXzNaM7z6bRfkG8OK",panelHeader:"CFCvtz229_01ddq8M57p",panelAction:"QE80WeyiPuHRBvXO9LTN",panelBody:"ZQ13J_eD9_VKi5vGJTFT",panelGroup:"AXr4h6SyViJj9gmgr9KB"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/components/progress/Progress.module.css":(module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .Vez1yjdKodoa9F08vLmD {\n height: 1em;\n box-shadow: 0 0 4px 0 color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 72%, color(from var(--tint) srgb r g b / 1)) inset;\n }\n\n .Vez1yjdKodoa9F08vLmD > div:last-child {\n width: calc(var(--progress) * 1%);\n }\n\n .Vez1yjdKodoa9F08vLmD > div:last-child::after {\n content: attr(data-label);\n\n position: absolute;\n inset-block: 0;\n inset-inline-start: 0;\n\n width: calc((100 / var(--progress)) * 100%);\n padding: 0.75em;\n\n font-size: 0.5em;\n line-height: 0.5em;\n color: var(--white);\n text-align: center;\n vertical-align: middle;\n }\n\n .Vez1yjdKodoa9F08vLmD .VgtQ3ysHlp4xFiTEkTyF {\n width: calc(var(--progress) * 1%);\n transition: width 0.5s;\n }\n\n .Vez1yjdKodoa9F08vLmD > div:first-child {\n padding: 0.75em;\n font-size: 0.5em;\n line-height: 0.5em;\n }\n\n .KMyHvns5J_qBx_FTytUe {\n background-image: var(--progress-gradient);\n background-size: 1rem 1rem;\n }\n\n .KMyHvns5J_qBx_FTytUe {\n animation: progress 750ms linear infinite;\n }\n}\n',"",{version:3,sources:["webpack://./packages/core/src/components/progress/Progress.module.css"],names:[],mappings:"AAAA;;;;;;;;;;;;;;;;;;;;;EAqBE;;AAEF;EACE;IACE,WAAW;IACX,uIAAwD;EAiC1D;;IA/BE;MACE,iCAAiC;IAkBnC;;MAhBE;QACE,yBAAyB;;QAEzB,kBAAkB;QAClB,cAAc;QACd,qBAAqB;;QAErB,2CAA2C;QAC3C,eAAe;;QAEf,gBAAgB;QAChB,kBAAkB;QAClB,mBAAmB;QACnB,kBAAkB;QAClB,sBAAsB;MACxB;;IAGF;MACE,iCAAiC;MACjC,sBAAsB;IACxB;;IAEA;MACE,eAAe;MACf,gBAAgB;MAChB,kBAAkB;IACpB;;EAGF;IACE,0CAA0C;IAC1C,0BAA0B;EAK5B;;IAHE;MACE,yCAAyC;IAC3C;AAEJ",sourcesContent:['/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .progressbar {\n height: 1em;\n box-shadow: 0 0 4px 0 theme(boxShadowColor.dimmed) inset;\n\n & > div:last-child {\n width: calc(var(--progress) * 1%);\n\n &::after {\n content: attr(data-label);\n\n position: absolute;\n inset-block: 0;\n inset-inline-start: 0;\n\n width: calc((100 / var(--progress)) * 100%);\n padding: 0.75em;\n\n font-size: 0.5em;\n line-height: 0.5em;\n color: var(--white);\n text-align: center;\n vertical-align: middle;\n }\n }\n\n .progressTrack {\n width: calc(var(--progress) * 1%);\n transition: width 0.5s;\n }\n\n & > div:first-child {\n padding: 0.75em;\n font-size: 0.5em;\n line-height: 0.5em;\n }\n }\n\n .progressAnimate {\n background-image: var(--progress-gradient);\n background-size: 1rem 1rem;\n\n & :global {\n animation: progress 750ms linear infinite;\n }\n }\n}\n'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={progressbar:"Vez1yjdKodoa9F08vLmD",progressTrack:"VgtQ3ysHlp4xFiTEkTyF",progressAnimate:"KMyHvns5J_qBx_FTytUe"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/components/tabpanel/TabPanel.module.css":(module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .XZghJ0kTEEzkX7juD7fj {\n --color: color(from var(--primary) srgb r g b / 1);\n }\n\n .XZghJ0kTEEzkX7juD7fj > .FqV3Z6yms2RFt2JeqnN1 {\n grid-area: tablist;\n }\n .XZghJ0kTEEzkX7juD7fj > .FqV3Z6yms2RFt2JeqnN1 > .x7VI5eMt9C7YXH3GGR36 > .yg5yp7CLT6JMU7bGGepb[data-color="accent"] {\n --color: color(from var(--accent) srgb r g b / 1);\n }\n\n .XZghJ0kTEEzkX7juD7fj > .FqV3Z6yms2RFt2JeqnN1 > .x7VI5eMt9C7YXH3GGR36 > .yg5yp7CLT6JMU7bGGepb[data-color="info"] {\n --color: color(from #00bfff srgb r g b / 1);\n }\n\n .XZghJ0kTEEzkX7juD7fj > .FqV3Z6yms2RFt2JeqnN1 > .x7VI5eMt9C7YXH3GGR36 > .yg5yp7CLT6JMU7bGGepb[data-color="danger"] {\n --color: color(from #f24c3d srgb r g b / 1);\n }\n\n .XZghJ0kTEEzkX7juD7fj > .FqV3Z6yms2RFt2JeqnN1 > .x7VI5eMt9C7YXH3GGR36 > .yg5yp7CLT6JMU7bGGepb[data-color="success"] {\n --color: color(from #44bc69 srgb r g b / 1);\n }\n\n .XZghJ0kTEEzkX7juD7fj > .FqV3Z6yms2RFt2JeqnN1 > .x7VI5eMt9C7YXH3GGR36 > .yg5yp7CLT6JMU7bGGepb[data-color="warning"] {\n --color: color(from #edaa00 srgb r g b / 1);\n }\n\n .XZghJ0kTEEzkX7juD7fj > .FqV3Z6yms2RFt2JeqnN1 > .x7VI5eMt9C7YXH3GGR36 > .yg5yp7CLT6JMU7bGGepb:not(.active):hover {\n color: color-mix(in lab, var(--color) 65%, var(--fabric-text));\n background-color: color-mix(in lab, color(from var(--tint) srgb r g b / 50%) 27%, color(from var(--fabric-bg) srgb r g b / 50%));\n }\n\n .XZghJ0kTEEzkX7juD7fj > .FqV3Z6yms2RFt2JeqnN1 > .x7VI5eMt9C7YXH3GGR36 > .yg5yp7CLT6JMU7bGGepb.active {\n --active-color: var(--color);\n\n font-weight: 500;\n color: color-mix(in lab, var(--color) 65%, var(--fabric-text));\n }\n .XZghJ0kTEEzkX7juD7fj[data-variant="outline"] .x7VI5eMt9C7YXH3GGR36 > .yg5yp7CLT6JMU7bGGepb.active {\n --active-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 99%, color(from var(--tint) srgb r g b / 1));\n --active-border: 0 0 0 1px color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 65%, color(from var(--tint) srgb r g b / 1)) inset;\n\n background-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 99%, color(from var(--tint) srgb r g b / 1));\n }\n .XZghJ0kTEEzkX7juD7fj[data-variant="solid"] .x7VI5eMt9C7YXH3GGR36 > .yg5yp7CLT6JMU7bGGepb.active {\n color: #fefdfc;\n background-color: var(--color);\n }\n .XZghJ0kTEEzkX7juD7fj[data-variant="soft"] .x7VI5eMt9C7YXH3GGR36 > .yg5yp7CLT6JMU7bGGepb.active {\n background-color: color-mix(in lab, var(--color) 20%, var(--fabric-bg));\n }\n\n .XZghJ0kTEEzkX7juD7fj[data-orientation="top"] {\n grid-template: "tablist" auto "content" 1fr / 1fr;\n padding-inline: 2px;\n }\n\n .XZghJ0kTEEzkX7juD7fj[data-orientation="top"] .FqV3Z6yms2RFt2JeqnN1 {\n box-shadow: 0 -1px 0 color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 72%, color(from var(--tint) srgb r g b / 1)) inset;\n }\n\n .XZghJ0kTEEzkX7juD7fj[data-orientation="bottom"] {\n grid-template: "content" 1fr "tablist" auto / 1fr;\n padding-inline: 2px;\n }\n\n .XZghJ0kTEEzkX7juD7fj[data-orientation="bottom"] .FqV3Z6yms2RFt2JeqnN1 {\n margin-top: 1px;\n box-shadow: 0 1px 0 color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 72%, color(from var(--tint) srgb r g b / 1)) inset;\n }\n\n .XZghJ0kTEEzkX7juD7fj[data-orientation="start"] {\n grid-template: "tablist content" 1fr / auto 1fr;\n padding-block: 2px;\n }\n\n .XZghJ0kTEEzkX7juD7fj[data-orientation="start"] .FqV3Z6yms2RFt2JeqnN1 {\n box-shadow: -1px 0 0 color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 72%, color(from var(--tint) srgb r g b / 1)) inset;\n }\n\n .XZghJ0kTEEzkX7juD7fj[data-orientation="end"] {\n grid-template: "content tablist" 1fr / 1fr auto;\n padding-block: 2px;\n }\n\n .XZghJ0kTEEzkX7juD7fj[data-orientation="end"] .FqV3Z6yms2RFt2JeqnN1 {\n box-shadow: 1px 0 0 color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 72%, color(from var(--tint) srgb r g b / 1)) inset;\n }\n}\n\n@layer util {\n .XZghJ0kTEEzkX7juD7fj .x7VI5eMt9C7YXH3GGR36 > .yg5yp7CLT6JMU7bGGepb.active {\n pointer-events: none;\n }\n .XZghJ0kTEEzkX7juD7fj[data-orientation="top"] .x7VI5eMt9C7YXH3GGR36 > .yg5yp7CLT6JMU7bGGepb.active {\n box-shadow:\n 0 -2px 0 var(--active-color) inset,\n var(--active-border, 0 0 0 transparent);\n }\n .XZghJ0kTEEzkX7juD7fj[data-orientation="bottom"] .x7VI5eMt9C7YXH3GGR36 > .yg5yp7CLT6JMU7bGGepb.active {\n box-shadow:\n 0 2px 0 var(--active-color) inset,\n var(--active-border, 0 0 0 transparent);\n }\n .XZghJ0kTEEzkX7juD7fj[data-orientation="start"] .x7VI5eMt9C7YXH3GGR36 > .yg5yp7CLT6JMU7bGGepb.active {\n box-shadow:\n -2px 0 0 var(--active-color) inset,\n var(--active-border, 0 0 0 transparent);\n }\n .XZghJ0kTEEzkX7juD7fj[data-orientation="end"] .x7VI5eMt9C7YXH3GGR36 > .yg5yp7CLT6JMU7bGGepb.active {\n box-shadow:\n 2px 0 0 var(--active-color) inset,\n var(--active-border, 0 0 0 transparent);\n }\n\n .XZghJ0kTEEzkX7juD7fj[data-orientation="top"] .x7VI5eMt9C7YXH3GGR36 > .yg5yp7CLT6JMU7bGGepb {\n margin-top: 2px;\n margin-inline: 1px;\n border-end-start-radius: 0;\n border-end-end-radius: 0;\n }\n\n .XZghJ0kTEEzkX7juD7fj[data-orientation="bottom"] .x7VI5eMt9C7YXH3GGR36 > .yg5yp7CLT6JMU7bGGepb {\n margin-bottom: 2px;\n margin-inline: 1px;\n border-start-start-radius: 0;\n border-start-end-radius: 0;\n }\n\n .XZghJ0kTEEzkX7juD7fj[data-orientation="start"] .x7VI5eMt9C7YXH3GGR36 > .yg5yp7CLT6JMU7bGGepb {\n margin-block: 1px;\n margin-inline-start: 2px;\n border-start-end-radius: 0;\n border-end-end-radius: 0;\n }\n\n .XZghJ0kTEEzkX7juD7fj[data-orientation="end"] .x7VI5eMt9C7YXH3GGR36 > .yg5yp7CLT6JMU7bGGepb {\n margin-block: 1px;\n margin-inline-end: 2px;\n border-start-start-radius: 0;\n border-end-start-radius: 0;\n }\n}\n',"",{version:3,sources:["webpack://./packages/core/src/components/tabpanel/TabPanel.module.css"],names:[],mappings:"AAAA;;;;;;;;;;;;;;;;;;;;;EAqBE;;AAEF;EACE;IACE,kDAAkC;EAkGpC;;IAhGE;MACE,kBAAkB;IAmCpB;QAhCI;UACE,iDAAiC;QACnC;;QAEA;UACE,2CAA+B;QACjC;;QAEA;UACE,2CAAiC;QACnC;;QAEA;UACE,2CAAkC;QACpC;;QAEA;UACE,2CAAkC;QACpC;;QAEA;UACE,8DAA8D;UAC9D,iIAA4C;QAC9C;;QAEA;UACE,4BAA4B;;UAE5B,gBAAgB;UAChB,8DAA8D;QAChE;MAKF;QACE,2HAA2C;QAC3C,4IAAwD;;QAExD,6HAA6C;MAC/C;MAIA;QACE,cAA0B;QAC1B,8BAA8B;MAChC;MAIA;QACE,uEAAuE;MACzE;;IAGF;MACE,iDAAiD;MACjD,mBAAmB;IAKrB;;MAHE;QACE,sIAAoD;MACtD;;IAGF;MACE,iDAAiD;MACjD,mBAAmB;IAMrB;;MAJE;QACE,eAAe;QACf,qIAAmD;MACrD;;IAGF;MACE,+CAA+C;MAC/C,kBAAkB;IAKpB;;MAHE;QACE,sIAAoD;MACtD;;IAGF;MACE,+CAA+C;MAC/C,kBAAkB;IAKpB;;MAHE;QACE,qIAAmD;MACrD;AAGN;;AAEA;IAEI;MACE,oBAAoB;IACtB;MAGE;QACE;;iDAEyC;MAC3C;MAIA;QACE;;iDAEyC;MAC3C;MAIA;QACE;;iDAEyC;MAC3C;MAIA;QACE;;iDAEyC;MAC3C;;IAGF;MACE,eAAe;MACf,kBAAkB;MAClB,0BAA0B;MAC1B,wBAAwB;IAC1B;;IAEA;MACE,kBAAkB;MAClB,kBAAkB;MAClB,4BAA4B;MAC5B,0BAA0B;IAC5B;;IAEA;MACE,iBAAiB;MACjB,wBAAwB;MACxB,0BAA0B;MAC1B,wBAAwB;IAC1B;;IAEA;MACE,iBAAiB;MACjB,sBAAsB;MACtB,4BAA4B;MAC5B,0BAA0B;IAC5B;AAEJ",sourcesContent:['/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .tabPanel {\n --color: theme(colors.primary.500);\n\n & > .tabHeader {\n grid-area: tablist;\n\n & > .tabList > .tabButton {\n &[data-color="accent"] {\n --color: theme(colors.accent.500);\n }\n\n &[data-color="info"] {\n --color: theme(colors.info.500);\n }\n\n &[data-color="danger"] {\n --color: theme(colors.danger.500);\n }\n\n &[data-color="success"] {\n --color: theme(colors.success.500);\n }\n\n &[data-color="warning"] {\n --color: theme(colors.warning.500);\n }\n\n &:not(:global(.active)):hover {\n color: color-mix(in lab, var(--color) 65%, var(--fabric-text));\n background-color: theme(colors.tint.100/50%);\n }\n\n &:global(.active) {\n --active-color: var(--color);\n\n font-weight: 500;\n color: color-mix(in lab, var(--color) 65%, var(--fabric-text));\n }\n }\n }\n\n &[data-variant="outline"] {\n & .tabList > .tabButton:global(.active) {\n --active-color: theme(backgroundColor.base);\n --active-border: 0 0 0 1px theme(borderColor.base) inset;\n\n background-color: theme(backgroundColor.base);\n }\n }\n\n &[data-variant="solid"] {\n & .tabList > .tabButton:global(.active) {\n color: theme(colors.white);\n background-color: var(--color);\n }\n }\n\n &[data-variant="soft"] {\n & .tabList > .tabButton:global(.active) {\n background-color: color-mix(in lab, var(--color) 20%, var(--fabric-bg));\n }\n }\n\n &[data-orientation="top"] {\n grid-template: "tablist" auto "content" 1fr / 1fr;\n padding-inline: 2px;\n\n .tabHeader {\n box-shadow: 0 -1px 0 theme(borderColor.dimmed) inset;\n }\n }\n\n &[data-orientation="bottom"] {\n grid-template: "content" 1fr "tablist" auto / 1fr;\n padding-inline: 2px;\n\n .tabHeader {\n margin-top: 1px;\n box-shadow: 0 1px 0 theme(borderColor.dimmed) inset;\n }\n }\n\n &[data-orientation="start"] {\n grid-template: "tablist content" 1fr / auto 1fr;\n padding-block: 2px;\n\n .tabHeader {\n box-shadow: -1px 0 0 theme(borderColor.dimmed) inset;\n }\n }\n\n &[data-orientation="end"] {\n grid-template: "content tablist" 1fr / 1fr auto;\n padding-block: 2px;\n\n .tabHeader {\n box-shadow: 1px 0 0 theme(borderColor.dimmed) inset;\n }\n }\n }\n}\n\n@layer util {\n .tabPanel {\n & .tabList > .tabButton:global(.active) {\n pointer-events: none;\n }\n\n &[data-orientation="top"] .tabList {\n & > .tabButton:global(.active) {\n box-shadow:\n 0 -2px 0 var(--active-color) inset,\n var(--active-border, 0 0 0 transparent);\n }\n }\n\n &[data-orientation="bottom"] .tabList {\n & > .tabButton:global(.active) {\n box-shadow:\n 0 2px 0 var(--active-color) inset,\n var(--active-border, 0 0 0 transparent);\n }\n }\n\n &[data-orientation="start"] .tabList {\n & > .tabButton:global(.active) {\n box-shadow:\n -2px 0 0 var(--active-color) inset,\n var(--active-border, 0 0 0 transparent);\n }\n }\n\n &[data-orientation="end"] .tabList {\n & > .tabButton:global(.active) {\n box-shadow:\n 2px 0 0 var(--active-color) inset,\n var(--active-border, 0 0 0 transparent);\n }\n }\n\n &[data-orientation="top"] .tabList > .tabButton {\n margin-top: 2px;\n margin-inline: 1px;\n border-end-start-radius: 0;\n border-end-end-radius: 0;\n }\n\n &[data-orientation="bottom"] .tabList > .tabButton {\n margin-bottom: 2px;\n margin-inline: 1px;\n border-start-start-radius: 0;\n border-start-end-radius: 0;\n }\n\n &[data-orientation="start"] .tabList > .tabButton {\n margin-block: 1px;\n margin-inline-start: 2px;\n border-start-end-radius: 0;\n border-end-end-radius: 0;\n }\n\n &[data-orientation="end"] .tabList > .tabButton {\n margin-block: 1px;\n margin-inline-end: 2px;\n border-start-start-radius: 0;\n border-end-start-radius: 0;\n }\n }\n}\n'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={tabPanel:"XZghJ0kTEEzkX7juD7fj",tabHeader:"FqV3Z6yms2RFt2JeqnN1",tabList:"x7VI5eMt9C7YXH3GGR36",tabButton:"yg5yp7CLT6JMU7bGGepb"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/core/aside/Aside.module.css":(module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .iqR7CCFAC7uAYkF2nZg7 {\n --aside-bg: color-mix(in lab, var(--fabric-bg) 95%, var(--tint));\n --aside-border: color-mix(in lab, var(--fabric-bg) 75%, var(--tint));\n\n background-color: var(--aside-bg);\n }\n\n .iqR7CCFAC7uAYkF2nZg7[data-align="start"] {\n grid-area: side-s;\n grid-template:\n "head resizer" auto\n "loader resizer" auto\n "content resizer" 1fr / 1fr auto;\n border-inline-end: 1px solid var(--aside-border);\n }\n\n .iqR7CCFAC7uAYkF2nZg7[data-align="start"] .qVosTYkklb6mfYA2McW7 {\n grid-template-areas: "icon title actions collapse";\n grid-template-columns: auto 1fr auto auto;\n }\n\n .iqR7CCFAC7uAYkF2nZg7[data-align="end"] {\n grid-area: side-e;\n grid-template:\n "resizer head" auto\n "resizer loader" auto\n "resizer content" 1fr / auto 1fr;\n border-inline-start: 1px solid var(--aside-border);\n }\n\n .iqR7CCFAC7uAYkF2nZg7[data-align="end"] .qVosTYkklb6mfYA2McW7 {\n grid-template-areas: "collapse icon title actions";\n grid-template-columns: auto auto 1fr auto;\n }\n\n .iqR7CCFAC7uAYkF2nZg7[data-align="end"] .iXJYSbhcwDyN7MAfo2TJ {\n transform: scaleX(-1);\n }\n\n .iqR7CCFAC7uAYkF2nZg7 .f_pmIhLyJ0DxcVE4_qNR {\n grid-area: content;\n grid-template: "head" auto "content" 1fr "foot" auto / 1fr;\n }\n\n .iqR7CCFAC7uAYkF2nZg7 .f_pmIhLyJ0DxcVE4_qNR > [data-ref="content"] {\n background-color: transparent;\n }\n\n .iqR7CCFAC7uAYkF2nZg7 .qVosTYkklb6mfYA2McW7 {\n font-weight: 500;\n color: color-mix(in lab, color(from var(--primary) srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n }\n\n .iqR7CCFAC7uAYkF2nZg7 .qVosTYkklb6mfYA2McW7:not(:empty) {\n border-bottom: 1px solid var(--aside-border);\n }\n\n .iqR7CCFAC7uAYkF2nZg7 .qtkXIXQdWp2tDoHVqHQO {\n grid-area: title;\n }\n\n .iqR7CCFAC7uAYkF2nZg7 .BgFAC1qEcJXCcU13UlEx {\n grid-area: icon;\n }\n\n .iqR7CCFAC7uAYkF2nZg7 .cDtVTouWxHAsQrri1spP {\n grid-area: actions;\n }\n\n .iqR7CCFAC7uAYkF2nZg7 .iXJYSbhcwDyN7MAfo2TJ {\n grid-area: collapse;\n }\n\n .iqR7CCFAC7uAYkF2nZg7 .iXJYSbhcwDyN7MAfo2TJ:hover {\n background-color: color-mix(in lab, var(--fabric-text) 10%, #0000);\n }\n\n .iqR7CCFAC7uAYkF2nZg7 .bj_wgIi8NNtaRlbcA5bw {\n z-index: 4;\n grid-area: content;\n background-color: var(--aside-bg);\n }\n\n .iqR7CCFAC7uAYkF2nZg7 .fVDnpE9drdVfXvnHf6sM {\n cursor: col-resize;\n position: relative;\n grid-area: resizer;\n width: 0.25rem;\n }\n\n .iqR7CCFAC7uAYkF2nZg7 .fVDnpE9drdVfXvnHf6sM::before {\n height: 32px;\n border: 1px solid color-mix(in lab, color(from var(--tint) srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n border-width: 0 1.5px;\n }\n\n .iqR7CCFAC7uAYkF2nZg7 .fVDnpE9drdVfXvnHf6sM:hover::before,\n .iqR7CCFAC7uAYkF2nZg7 .fVDnpE9drdVfXvnHf6sM:active::before {\n height: 100%;\n background-color: color-mix(in lab, color(from var(--primary) srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n border-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 99%, color(from var(--tint) srgb r g b / 1));\n border-width: 0 1.25px;\n }\n}\n\n@layer util {\n .f_pmIhLyJ0DxcVE4_qNR,\n .qVosTYkklb6mfYA2McW7 {\n width: unset;\n height: unset;\n margin: unset;\n }\n .f_pmIhLyJ0DxcVE4_qNR > [data-ref="content"] {\n background-color: transparent;\n }\n\n .iqR7CCFAC7uAYkF2nZg7[data-collapsed="true"] {\n position: relative;\n overflow: visible;\n width: 2rem;\n }\n\n .iqR7CCFAC7uAYkF2nZg7[data-collapsed="true"] .f_pmIhLyJ0DxcVE4_qNR {\n position: absolute;\n z-index: -1;\n inset: 0;\n\n background-color: var(--aside-bg);\n\n transition: transform cubic-bezier(0.4, 0, 0.2, 1) 150ms;\n }\n\n .iqR7CCFAC7uAYkF2nZg7[data-collapsed="true"] .qVosTYkklb6mfYA2McW7 {\n position: absolute;\n z-index: 5;\n width: 2rem;\n }\n\n .iqR7CCFAC7uAYkF2nZg7[data-collapsed="true"] .qtkXIXQdWp2tDoHVqHQO {\n position: absolute;\n top: 1rem;\n grid-area: unset;\n font-size: 1rem;\n }\n\n .iqR7CCFAC7uAYkF2nZg7[data-collapsed="true"] .BgFAC1qEcJXCcU13UlEx {\n margin-inline: 2px;\n }\n\n .iqR7CCFAC7uAYkF2nZg7[data-collapsed="true"] .iXJYSbhcwDyN7MAfo2TJ + .BgFAC1qEcJXCcU13UlEx,\n .iqR7CCFAC7uAYkF2nZg7[data-collapsed="true"] .fVDnpE9drdVfXvnHf6sM {\n display: none;\n }\n [dir="ltr"] .iqR7CCFAC7uAYkF2nZg7[data-align="start"][data-collapsed="true"] .f_pmIhLyJ0DxcVE4_qNR, [dir="rtl"] .iqR7CCFAC7uAYkF2nZg7[data-align="end"][data-collapsed="true"] .f_pmIhLyJ0DxcVE4_qNR {\n right: unset;\n transform: translateX(-100%);\n grid-area: unset;\n }\n\n [dir="ltr"] .iqR7CCFAC7uAYkF2nZg7[data-align="start"][data-collapsed="true"] .qtkXIXQdWp2tDoHVqHQO, [dir="rtl"] .iqR7CCFAC7uAYkF2nZg7[data-align="end"][data-collapsed="true"] .qtkXIXQdWp2tDoHVqHQO {\n right: calc(2rem + 2px);\n transform-origin: 100% 100%;\n transform: rotate(-90deg) translateY(2rem);\n }\n\n [dir="ltr"] .iqR7CCFAC7uAYkF2nZg7[data-align="start"][data-collapsed="true"] .iXJYSbhcwDyN7MAfo2TJ, [dir="rtl"] .iqR7CCFAC7uAYkF2nZg7[data-align="end"][data-collapsed="true"] .iXJYSbhcwDyN7MAfo2TJ {\n transform: scaleX(-1);\n }\n\n [dir="ltr"] .iqR7CCFAC7uAYkF2nZg7[data-align="start"][data-collapsed="true"][data-flyout="true"] .f_pmIhLyJ0DxcVE4_qNR, [dir="rtl"] .iqR7CCFAC7uAYkF2nZg7[data-align="end"][data-collapsed="true"][data-flyout="true"] .f_pmIhLyJ0DxcVE4_qNR {\n z-index: 3;\n transform: translateX(2rem);\n box-shadow: 0 0 1rem 0 var(--fabric-shadow);\n }\n [dir="ltr"] .iqR7CCFAC7uAYkF2nZg7[data-align="end"][data-collapsed="true"] .f_pmIhLyJ0DxcVE4_qNR, [dir="rtl"] .iqR7CCFAC7uAYkF2nZg7[data-align="start"][data-collapsed="true"] .f_pmIhLyJ0DxcVE4_qNR {\n left: unset;\n transform: translateX(100%);\n grid-area: unset;\n }\n\n [dir="ltr"] .iqR7CCFAC7uAYkF2nZg7[data-align="end"][data-collapsed="true"] .qtkXIXQdWp2tDoHVqHQO, [dir="rtl"] .iqR7CCFAC7uAYkF2nZg7[data-align="start"][data-collapsed="true"] .qtkXIXQdWp2tDoHVqHQO {\n left: calc(2rem + 2px);\n transform-origin: 0 100%;\n transform: rotate(90deg) translateY(2rem);\n }\n\n [dir="ltr"] .iqR7CCFAC7uAYkF2nZg7[data-align="end"][data-collapsed="true"] .iXJYSbhcwDyN7MAfo2TJ, [dir="rtl"] .iqR7CCFAC7uAYkF2nZg7[data-align="start"][data-collapsed="true"] .iXJYSbhcwDyN7MAfo2TJ {\n transform: scaleX(1);\n }\n\n [dir="ltr"] .iqR7CCFAC7uAYkF2nZg7[data-align="end"][data-collapsed="true"][data-flyout="true"] .f_pmIhLyJ0DxcVE4_qNR, [dir="rtl"] .iqR7CCFAC7uAYkF2nZg7[data-align="start"][data-collapsed="true"][data-flyout="true"] .f_pmIhLyJ0DxcVE4_qNR {\n z-index: 3;\n transform: translateX(-2rem);\n box-shadow: 0 0 1rem 0 var(--fabric-shadow);\n }\n}\n',"",{version:3,sources:["webpack://./packages/core/src/core/aside/Aside.module.css"],names:[],mappings:"AAAA;;;;;;;;;;;;;;;;;;;;;EAqBE;;AAEF;EACE;IACE,gEAAgE;IAChE,oEAAoE;;IAEpE,iCAAiC;EAkGnC;;IAhGE;MACE,iBAAiB;MACjB;;;wCAGkC;MAClC,gDAAgD;IAMlD;;MAJE;QACE,kDAAkD;QAClD,yCAAyC;MAC3C;;IAGF;MACE,iBAAiB;MACjB;;;wCAGkC;MAClC,kDAAkD;IAUpD;;MARE;QACE,kDAAkD;QAClD,yCAAyC;MAC3C;;MAEA;QACE,qBAAqB;MACvB;;IAGF;MACE,kBAAkB;MAClB,0DAA0D;IAK5D;;MAHE;QACE,6BAA6B;MAC/B;;IAGF;MACE,gBAAgB;MAChB,uHAAgC;IAKlC;;MAHE;QACE,4CAA4C;MAC9C;;IAGF;MACE,gBAAgB;IAClB;;IAEA;MACE,eAAe;IACjB;;IAEA;MACE,kBAAkB;IACpB;;IAEA;MACE,mBAAmB;IAKrB;;MAHE;QACE,kEAAkE;MACpE;;IAGF;MACE,UAAU;MACV,kBAAkB;MAClB,iCAAiC;IACnC;;IAEA;MACE,kBAAkB;MAClB,kBAAkB;MAClB,kBAAkB;MAClB,cAAc;IAehB;;MAbE;QACE,YAAY;QACZ,+HAAwC;QACxC,qBAAqB;MACvB;;MAEA;;QAEE,YAAY;QACZ,kIAA2C;QAC3C,yHAAyC;QACzC,sBAAsB;MACxB;AAGN;;AAEA;EACE;;IAEE,YAAY;IACZ,aAAa;IACb,aAAa;EACf;IAGE;MACE,6BAA6B;IAC/B;;EAGF;IACE,kBAAkB;IAClB,iBAAiB;IACjB,WAAW;EAiCb;;IA/BE;MACE,kBAAkB;MAClB,WAAW;MACX,QAAQ;;MAER,iCAAiC;;MAEjC,wDAAwD;IAC1D;;IAEA;MACE,kBAAkB;MAClB,UAAU;MACV,WAAW;IACb;;IAEA;MACE,kBAAkB;MAClB,SAAS;MACT,gBAAgB;MAChB,eAAe;IACjB;;IAEA;MACE,kBAAkB;IACpB;;IAEA;;MAEE,aAAa;IACf;IAKA;MACE,YAAY;MACZ,4BAA4B;MAC5B,gBAAgB;IAClB;;IAEA;MACE,uBAAuB;MACvB,2BAA2B;MAC3B,0CAA0C;IAC5C;;IAEA;MACE,qBAAqB;IACvB;;IAEA;MACE,UAAU;MACV,2BAA2B;MAC3B,2CAA2C;IAC7C;IAKA;MACE,WAAW;MACX,2BAA2B;MAC3B,gBAAgB;IAClB;;IAEA;MACE,sBAAsB;MACtB,wBAAwB;MACxB,yCAAyC;IAC3C;;IAEA;MACE,oBAAoB;IACtB;;IAEA;MACE,UAAU;MACV,4BAA4B;MAC5B,2CAA2C;IAC7C;AAEJ",sourcesContent:['/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .aside {\n --aside-bg: color-mix(in lab, var(--fabric-bg) 95%, var(--tint));\n --aside-border: color-mix(in lab, var(--fabric-bg) 75%, var(--tint));\n\n background-color: var(--aside-bg);\n\n &[data-align="start"] {\n grid-area: side-s;\n grid-template:\n "head resizer" auto\n "loader resizer" auto\n "content resizer" 1fr / 1fr auto;\n border-inline-end: 1px solid var(--aside-border);\n\n & .asideHeader {\n grid-template-areas: "icon title actions collapse";\n grid-template-columns: auto 1fr auto auto;\n }\n }\n\n &[data-align="end"] {\n grid-area: side-e;\n grid-template:\n "resizer head" auto\n "resizer loader" auto\n "resizer content" 1fr / auto 1fr;\n border-inline-start: 1px solid var(--aside-border);\n\n & .asideHeader {\n grid-template-areas: "collapse icon title actions";\n grid-template-columns: auto auto 1fr auto;\n }\n\n & .asideCollapse {\n transform: scaleX(-1);\n }\n }\n\n & .asideBody {\n grid-area: content;\n grid-template: "head" auto "content" 1fr "foot" auto / 1fr;\n\n & > [data-ref="content"] {\n background-color: transparent;\n }\n }\n\n & .asideHeader {\n font-weight: 500;\n color: theme(colors.primary.600);\n\n &:not(:empty) {\n border-bottom: 1px solid var(--aside-border);\n }\n }\n\n & .asideTitle {\n grid-area: title;\n }\n\n & .asideIcon {\n grid-area: icon;\n }\n\n .asideActions {\n grid-area: actions;\n }\n\n & .asideCollapse {\n grid-area: collapse;\n\n &:hover {\n background-color: color-mix(in lab, var(--fabric-text) 10%, #0000);\n }\n }\n\n & .asidePlaceholder {\n z-index: 4;\n grid-area: content;\n background-color: var(--aside-bg);\n }\n\n & .asideResizer {\n cursor: col-resize;\n position: relative;\n grid-area: resizer;\n width: 0.25rem;\n\n &::before {\n height: 32px;\n border: 1px solid theme(colors.tint.700);\n border-width: 0 1.5px;\n }\n\n &:hover::before,\n &:active::before {\n height: 100%;\n background-color: theme(colors.primary.600);\n border-color: theme(backgroundColor.base);\n border-width: 0 1.25px;\n }\n }\n }\n}\n\n@layer util {\n .asideBody,\n .asideHeader {\n width: unset;\n height: unset;\n margin: unset;\n }\n\n .asideBody {\n & > [data-ref="content"] {\n background-color: transparent;\n }\n }\n\n .aside[data-collapsed="true"] {\n position: relative;\n overflow: visible;\n width: 2rem;\n\n & .asideBody {\n position: absolute;\n z-index: -1;\n inset: 0;\n\n background-color: var(--aside-bg);\n\n transition: transform cubic-bezier(0.4, 0, 0.2, 1) 150ms;\n }\n\n & .asideHeader {\n position: absolute;\n z-index: 5;\n width: 2rem;\n }\n\n & .asideTitle {\n position: absolute;\n top: 1rem;\n grid-area: unset;\n font-size: 1rem;\n }\n\n .asideIcon {\n margin-inline: 2px;\n }\n\n & .asideCollapse + .asideIcon,\n & .asideResizer {\n display: none;\n }\n }\n\n [dir="ltr"] .aside[data-align="start"][data-collapsed="true"],\n [dir="rtl"] .aside[data-align="end"][data-collapsed="true"] {\n & .asideBody {\n right: unset;\n transform: translateX(-100%);\n grid-area: unset;\n }\n\n & .asideTitle {\n right: calc(2rem + 2px);\n transform-origin: 100% 100%;\n transform: rotate(-90deg) translateY(2rem);\n }\n\n & .asideCollapse {\n transform: scaleX(-1);\n }\n\n &[data-flyout="true"] .asideBody {\n z-index: 3;\n transform: translateX(2rem);\n box-shadow: 0 0 1rem 0 var(--fabric-shadow);\n }\n }\n\n [dir="ltr"] .aside[data-align="end"][data-collapsed="true"],\n [dir="rtl"] .aside[data-align="start"][data-collapsed="true"] {\n & .asideBody {\n left: unset;\n transform: translateX(100%);\n grid-area: unset;\n }\n\n & .asideTitle {\n left: calc(2rem + 2px);\n transform-origin: 0 100%;\n transform: rotate(90deg) translateY(2rem);\n }\n\n & .asideCollapse {\n transform: scaleX(1);\n }\n\n &[data-flyout="true"] .asideBody {\n z-index: 3;\n transform: translateX(-2rem);\n box-shadow: 0 0 1rem 0 var(--fabric-shadow);\n }\n }\n}\n'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={aside:"iqR7CCFAC7uAYkF2nZg7",asideHeader:"qVosTYkklb6mfYA2McW7",asideCollapse:"iXJYSbhcwDyN7MAfo2TJ",asideBody:"f_pmIhLyJ0DxcVE4_qNR",asideTitle:"qtkXIXQdWp2tDoHVqHQO",asideIcon:"BgFAC1qEcJXCcU13UlEx",asideActions:"cDtVTouWxHAsQrri1spP",asidePlaceholder:"bj_wgIi8NNtaRlbcA5bw",asideResizer:"fVDnpE9drdVfXvnHf6sM"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/core/boundary/ErrorBoundary.module.css":(module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .DIWBb5GbTjhgB8vGpeFD {\n grid-area: inherit;\n align-self: flex-start;\n\n max-height: calc(100% - 2rem);\n margin: 1rem;\n\n background-color: color(from #f24c3d srgb r g b / 1);\n background-image: repeating-linear-gradient(\n 135deg,\n rgba(255 255 255 / 50%) 0 4px,\n rgba(255 255 255 / 20%) 4px 8px\n );\n }\n\n .DIWBb5GbTjhgB8vGpeFD .txe9YJcXcmtJgy2gIHpv {\n grid-template: "icon message" auto "detail detail" auto / auto 1fr;\n background-color: var(--fabric-bg);\n }\n\n .DIWBb5GbTjhgB8vGpeFD .LWBgQOxLsfi6F7Dlqhvh {\n grid-area: icon;\n }\n\n .DIWBb5GbTjhgB8vGpeFD .awueCArTiTkB4rLzZIgm {\n grid-area: message;\n }\n\n .DIWBb5GbTjhgB8vGpeFD .mBlVa6HBkgZn67dU9o1N {\n grid-area: detail;\n grid-template-rows: auto 1fr;\n }\n\n .DIWBb5GbTjhgB8vGpeFD .mBlVa6HBkgZn67dU9o1N .NmX4aK_X3_9wV2uj_jph {\n /* might add styles later */\n }\n\n .DIWBb5GbTjhgB8vGpeFD .FxEymIUTqTkbLMDZE1ew {\n /* might add styles later */\n }\n}\n',"",{version:3,sources:["webpack://./packages/core/src/core/boundary/ErrorBoundary.module.css"],names:[],mappings:"AAAA;;;;;;;;;;;;;;;;;;;;;EAqBE;;AAEF;EACE;IACE,kBAAkB;IAClB,sBAAsB;;IAEtB,6BAA6B;IAC7B,YAAY;;IAEZ,oDAA0C;IAC1C;;;;KAIC;EA2BH;;IAzBE;MACE,kEAAkE;MAClE,kCAAkC;IACpC;;IAEA;MACE,eAAe;IACjB;;IAEA;MACE,kBAAkB;IACpB;;IAEA;MACE,iBAAiB;MACjB,4BAA4B;IAK9B;;MAHE;QACE,2BAA2B;MAC7B;;IAGF;MACE,2BAA2B;IAC7B;AAEJ",sourcesContent:['/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .errorBoundary {\n grid-area: inherit;\n align-self: flex-start;\n\n max-height: calc(100% - 2rem);\n margin: 1rem;\n\n background-color: theme(colors.danger.500);\n background-image: repeating-linear-gradient(\n 135deg,\n rgba(255 255 255 / 50%) 0 4px,\n rgba(255 255 255 / 20%) 4px 8px\n );\n\n & .boundaryContent {\n grid-template: "icon message" auto "detail detail" auto / auto 1fr;\n background-color: var(--fabric-bg);\n }\n\n & .boundaryIcon {\n grid-area: icon;\n }\n\n & .boundaryMessage {\n grid-area: message;\n }\n\n & .boundaryDetail {\n grid-area: detail;\n grid-template-rows: auto 1fr;\n\n & .boundaryLink {\n /* might add styles later */\n }\n }\n\n & .boundaryStack {\n /* might add styles later */\n }\n }\n}\n'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={errorBoundary:"DIWBb5GbTjhgB8vGpeFD",boundaryContent:"txe9YJcXcmtJgy2gIHpv",boundaryIcon:"LWBgQOxLsfi6F7Dlqhvh",boundaryMessage:"awueCArTiTkB4rLzZIgm",boundaryDetail:"mBlVa6HBkgZn67dU9o1N",boundaryLink:"NmX4aK_X3_9wV2uj_jph",boundaryStack:"FxEymIUTqTkbLMDZE1ew"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/core/content/Content.module.css":(module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .iT3Of3DLczjDZvnPujyo {\n --fabric-content: color-mix(in lab, var(--fabric-bg) 97%, var(--tint));\n\n overflow: auto;\n padding: 1rem;\n background-color: var(--fabric-content);\n }\n}\n\n@layer util {\n .iT3Of3DLczjDZvnPujyo {\n width: unset;\n height: unset;\n margin: unset;\n }\n}\n',"",{version:3,sources:["webpack://./packages/core/src/core/content/Content.module.css"],names:[],mappings:"AAAA;;;;;;;;;;;;;;;;;;;;;EAqBE;;AAEF;EACE;IACE,sEAAsE;;IAEtE,cAAc;IACd,aAAa;IACb,uCAAuC;EACzC;AACF;;AAEA;EACE;IACE,YAAY;IACZ,aAAa;IACb,aAAa;EACf;AACF",sourcesContent:['/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .content {\n --fabric-content: color-mix(in lab, var(--fabric-bg) 97%, var(--tint));\n\n overflow: auto;\n padding: 1rem;\n background-color: var(--fabric-content);\n }\n}\n\n@layer util {\n .content {\n width: unset;\n height: unset;\n margin: unset;\n }\n}\n'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={content:"iT3Of3DLczjDZvnPujyo"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/core/headfoot/HeadFoot.module.css":(module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .q2eqy6yvIILeRveHQDtZ {\n gap: 2px;\n }\n\n .q2eqy6yvIILeRveHQDtZ .WA_QPG5u_p54mI16fP3P + .WA_QPG5u_p54mI16fP3P {\n margin-inline-start: 0.25rem;\n }\n}\n\n@layer util {\n .q2eqy6yvIILeRveHQDtZ {\n width: unset;\n height: unset;\n margin: unset;\n }\n}\n',"",{version:3,sources:["webpack://./packages/core/src/core/headfoot/HeadFoot.module.css"],names:[],mappings:"AAAA;;;;;;;;;;;;;;;;;;;;;EAqBE;;AAEF;EACE;IACE,QAAQ;EAKV;;IAHE;MACE,4BAA4B;IAC9B;AAEJ;;AAEA;EACE;IACE,YAAY;IACZ,aAAa;IACb,aAAa;EACf;AACF",sourcesContent:['/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .headfoot {\n gap: 2px;\n\n .buttonWrapper + .buttonWrapper {\n margin-inline-start: 0.25rem;\n }\n }\n}\n\n@layer util {\n .headfoot {\n width: unset;\n height: unset;\n margin: unset;\n }\n}\n'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={headfoot:"q2eqy6yvIILeRveHQDtZ",buttonWrapper:"WA_QPG5u_p54mI16fP3P"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/core/page/Page.module.css":(module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .bw_h8RxjLtK7xTZOzXIx {\n --fabric-page: color-mix(in lab, var(--fabric-bg) 94%, var(--tint));\n --fabric-page-title: color-mix(in lab, var(--fabric-bg) 90%, var(--tint));\n\n grid-template: "title title title" auto "head head head" auto ". loader ." auto "side-s content side-e" 1fr "foot foot foot" auto / auto 1fr auto;\n background-color: var(--fabric-page);\n }\n\n .bw_h8RxjLtK7xTZOzXIx .sXw9XqIEd0pAGTlsdAHT {\n grid-area: title;\n color: color-mix(in lab, color(from var(--primary) srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n background-color: var(--fabric-page-title);\n }\n}\n\n@layer util {\n .sXw9XqIEd0pAGTlsdAHT {\n width: unset;\n height: unset;\n margin: unset;\n }\n}\n',"",{version:3,sources:["webpack://./packages/core/src/core/page/Page.module.css"],names:[],mappings:"AAAA;;;;;;;;;;;;;;;;;;;;;EAqBE;;AAEF;EACE;IACE,mEAAmE;IACnE,yEAAyE;;IAEzE,iJAAiJ;IACjJ,oCAAoC;EAOtC;;IALE;MACE,gBAAgB;MAChB,uHAAgC;MAChC,0CAA0C;IAC5C;AAEJ;;AAEA;EACE;IACE,YAAY;IACZ,aAAa;IACb,aAAa;EACf;AACF",sourcesContent:['/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .page {\n --fabric-page: color-mix(in lab, var(--fabric-bg) 94%, var(--tint));\n --fabric-page-title: color-mix(in lab, var(--fabric-bg) 90%, var(--tint));\n\n grid-template: "title title title" auto "head head head" auto ". loader ." auto "side-s content side-e" 1fr "foot foot foot" auto / auto 1fr auto;\n background-color: var(--fabric-page);\n\n .pageTitle {\n grid-area: title;\n color: theme(colors.primary.600);\n background-color: var(--fabric-page-title);\n }\n }\n}\n\n@layer util {\n .pageTitle {\n width: unset;\n height: unset;\n margin: unset;\n }\n}\n'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={page:"bw_h8RxjLtK7xTZOzXIx",pageTitle:"sXw9XqIEd0pAGTlsdAHT"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/core/responsive/Responsive.module.css":(module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .hpxi4CS28yita56b9sOX {\n margin: calc(-0.5 * var(--gutter));\n }\n\n .hpxi4CS28yita56b9sOX + .hpxi4CS28yita56b9sOX {\n margin-top: calc(0.5 * var(--gutter));\n }\n\n .Yz6GeoCqmKMeau_uMQ2_ {\n flex: 0 0 auto;\n max-width: calc((12 / 12) * 100% - var(--gutter, 0px));\n margin: calc(0.5 * var(--gutter));\n }\n\n .Yz6GeoCqmKMeau_uMQ2_.wA4KuFNP5_1Q92ykvLJD > * {\n min-width: 100%;\n min-height: 100%;\n }\n .ignuvms7MMXotIhHAMiG[data-gutter="0"],\n .hpxi4CS28yita56b9sOX[data-gutter="0"] {\n --gutter: 0px;\n }\n .ignuvms7MMXotIhHAMiG[data-gutter="xs"],\n .hpxi4CS28yita56b9sOX[data-gutter="xs"] {\n --gutter: 2px;\n }\n .ignuvms7MMXotIhHAMiG[data-gutter="sm"],\n .hpxi4CS28yita56b9sOX[data-gutter="sm"] {\n --gutter: 0.25rem;\n }\n .ignuvms7MMXotIhHAMiG[data-gutter="md"],\n .hpxi4CS28yita56b9sOX[data-gutter="md"] {\n --gutter: 0.75rem;\n }\n .ignuvms7MMXotIhHAMiG[data-gutter="lg"],\n .hpxi4CS28yita56b9sOX[data-gutter="lg"] {\n --gutter: 1rem;\n }\n .ignuvms7MMXotIhHAMiG[data-gutter="xl"],\n .hpxi4CS28yita56b9sOX[data-gutter="xl"] {\n --gutter: 1.5rem;\n }\n}\n',"",{version:3,sources:["webpack://./packages/core/src/core/responsive/Responsive.module.css"],names:[],mappings:"AAAA;;;;;;;;;;;;;;;;;;;;;EAqBE;;AAEF;EACE;IACE,kCAAkC;EAKpC;;IAHE;MACE,qCAAqC;IACvC;;EAGF;IACE,cAAc;IACd,sDAAsD;IACtD,iCAAiC;EAMnC;;IAJE;MACE,eAAe;MACf,gBAAgB;IAClB;IAIA;;MAEE,aAAa;IACf;IAIA;;MAEE,aAAa;IACf;IAIA;;MAEE,iBAAiB;IACnB;IAIA;;MAEE,iBAAiB;IACnB;IAIA;;MAEE,cAAc;IAChB;IAIA;;MAEE,gBAAgB;IAClB;AAEJ",sourcesContent:['/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .row {\n margin: calc(-0.5 * var(--gutter));\n\n & + .row {\n margin-top: calc(0.5 * var(--gutter));\n }\n }\n\n .col {\n flex: 0 0 auto;\n max-width: calc((12 / 12) * 100% - var(--gutter, 0px));\n margin: calc(0.5 * var(--gutter));\n\n &.stretchContent > * {\n min-width: 100%;\n min-height: 100%;\n }\n }\n\n [data-gutter="0"] {\n &.container,\n &.row {\n --gutter: 0px;\n }\n }\n\n [data-gutter="xs"] {\n &.container,\n &.row {\n --gutter: 2px;\n }\n }\n\n [data-gutter="sm"] {\n &.container,\n &.row {\n --gutter: 0.25rem;\n }\n }\n\n [data-gutter="md"] {\n &.container,\n &.row {\n --gutter: 0.75rem;\n }\n }\n\n [data-gutter="lg"] {\n &.container,\n &.row {\n --gutter: 1rem;\n }\n }\n\n [data-gutter="xl"] {\n &.container,\n &.row {\n --gutter: 1.5rem;\n }\n }\n}\n'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={row:"hpxi4CS28yita56b9sOX",col:"Yz6GeoCqmKMeau_uMQ2_",stretchContent:"wA4KuFNP5_1Q92ykvLJD",container:"ignuvms7MMXotIhHAMiG"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/core/section/Section.module.css":(module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .Of4tTl8AUorfrEJSg9nX {\n grid-template: "head head head" auto "side-s content side-e" 1fr "foot foot foot" auto / auto 1fr auto;\n }\n}\n',"",{version:3,sources:["webpack://./packages/core/src/core/section/Section.module.css"],names:[],mappings:"AAAA;;;;;;;;;;;;;;;;;;;;;EAqBE;;AAEF;EACE;IACE,sGAAsG;EACxG;AACF",sourcesContent:['/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .section {\n grid-template: "head head head" auto "side-s content side-e" 1fr "foot foot foot" auto / auto 1fr auto;\n }\n}\n'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={section:"Of4tTl8AUorfrEJSg9nX"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/core/theme/Theme.module.css":(module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .y52Cooh48Q4M3_MBo9A0 > * {\n background-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 99%, color(from var(--tint) srgb r g b / 1));\n }\n}\n',"",{version:3,sources:["webpack://./packages/core/src/core/theme/Theme.module.css"],names:[],mappings:"AAAA;;;;;;;;;;;;;;;;;;;;;EAqBE;;AAEF;IAEI;MACE,6HAA6C;IAC/C;AAEJ",sourcesContent:['/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .themeProvider {\n & > * {\n background-color: theme(backgroundColor.base);\n }\n }\n}\n'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={themeProvider:"y52Cooh48Q4M3_MBo9A0"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/core/viewport/Viewport.module.css":(module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .Q3CSO8_MsNMPhJ3ycPaK {\n --fabric-viewport: color-mix(in lab, var(--fabric-bg) 76%, var(--tint));\n\n grid-template: "head head head" auto "crumbbar crumbbar crumbbar" auto "side-s content side-e" 1fr "foot foot foot" auto / auto 1fr auto;\n color: var(--fabric-text);\n background-color: var(--fabric-viewport);\n }\n}\n',"",{version:3,sources:["webpack://./packages/core/src/core/viewport/Viewport.module.css"],names:[],mappings:"AAAA;;;;;;;;;;;;;;;;;;;;;EAqBE;;AAEF;EACE;IACE,uEAAuE;;IAEvE,wIAAwI;IACxI,yBAAyB;IACzB,wCAAwC;EAC1C;AACF",sourcesContent:['/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .viewport {\n --fabric-viewport: color-mix(in lab, var(--fabric-bg) 76%, var(--tint));\n\n grid-template: "head head head" auto "crumbbar crumbbar crumbbar" auto "side-s content side-e" 1fr "foot foot foot" auto / auto 1fr auto;\n color: var(--fabric-text);\n background-color: var(--fabric-viewport);\n }\n}\n'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={viewport:"Q3CSO8_MsNMPhJ3ycPaK"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/overlays/alert/Alert.module.css":(module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .FEaFBhIivtBr7ubvemrd {\n z-index: var(--z-overlay);\n\n grid-template: "icon title" auto "icon message" auto "input input" auto "actions actions" auto / auto 1fr;\n gap: 0.5rem 1rem;\n\n margin-top: -100%;\n\n opacity: 0;\n\n transition:\n margin 0.4s,\n opacity 0.3s 0.2s;\n }\n\n .FEaFBhIivtBr7ubvemrd[data-show="true"] {\n margin-top: 0;\n opacity: 1;\n }\n}\n',"",{version:3,sources:["webpack://./packages/core/src/overlays/alert/Alert.module.css"],names:[],mappings:"AAAA;;;;;;;;;;;;;;;;;;;;;EAqBE;;AAEF;EACE;IACE,yBAAyB;;IAEzB,yGAAyG;IACzG,gBAAgB;;IAEhB,iBAAiB;;IAEjB,UAAU;;IAEV;;uBAEmB;EAMrB;;IAJE;MACE,aAAa;MACb,UAAU;IACZ;AAEJ",sourcesContent:['/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .alert {\n z-index: var(--z-overlay);\n\n grid-template: "icon title" auto "icon message" auto "input input" auto "actions actions" auto / auto 1fr;\n gap: 0.5rem 1rem;\n\n margin-top: -100%;\n\n opacity: 0;\n\n transition:\n margin 0.4s,\n opacity 0.3s 0.2s;\n\n &[data-show="true"] {\n margin-top: 0;\n opacity: 1;\n }\n }\n}\n'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={alert:"FEaFBhIivtBr7ubvemrd"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/overlays/flyout/Flyout.module.css":(module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .mNGm8FZTStVMlRgA3fIO {\n z-index: var(--z-overlay);\n width: 32rem;\n max-width: 70vw;\n transition: margin 0.5s;\n }\n\n .mNGm8FZTStVMlRgA3fIO .wGmoXwWAi8iASm7CMjkP {\n background-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 99%, color(from var(--tint) srgb r g b / 1));\n border-bottom: 0.5px solid color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 72%, color(from var(--tint) srgb r g b / 1));\n }\n\n .mNGm8FZTStVMlRgA3fIO .cXHIx0FHY6Zq0IKSrMz7 {\n grid-template: "head head head" auto ". loader ." auto "side-s content side-e" 1fr "foot foot foot" auto / auto 1fr auto;\n }\n\n .mNGm8FZTStVMlRgA3fIO[data-align="start"] {\n margin-inline-start: -100%;\n }\n\n .mNGm8FZTStVMlRgA3fIO[data-align="end"] {\n margin-inline-end: -100%;\n }\n\n .mNGm8FZTStVMlRgA3fIO[data-show="true"] {\n margin: 0;\n }\n}\n',"",{version:3,sources:["webpack://./packages/core/src/overlays/flyout/Flyout.module.css"],names:[],mappings:"AAAA;;;;;;;;;;;;;;;;;;;;;EAqBE;;AAEF;EACE;IACE,yBAAyB;IACzB,YAAY;IACZ,eAAe;IACf,uBAAuB;EAsBzB;;IApBE;MACE,6HAA6C;MAC7C,sIAAoD;IACtD;;IAEA;MACE,wHAAwH;IAC1H;;IAEA;MACE,0BAA0B;IAC5B;;IAEA;MACE,wBAAwB;IAC1B;;IAEA;MACE,SAAS;IACX;AAEJ",sourcesContent:['/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .flyout {\n z-index: var(--z-overlay);\n width: 32rem;\n max-width: 70vw;\n transition: margin 0.5s;\n\n & .flyoutHeader {\n background-color: theme(backgroundColor.base);\n border-bottom: 0.5px solid theme(borderColor.dimmed);\n }\n\n & .flyoutBody {\n grid-template: "head head head" auto ". loader ." auto "side-s content side-e" 1fr "foot foot foot" auto / auto 1fr auto;\n }\n\n &[data-align="start"] {\n margin-inline-start: -100%;\n }\n\n &[data-align="end"] {\n margin-inline-end: -100%;\n }\n\n &[data-show="true"] {\n margin: 0;\n }\n }\n}\n'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={flyout:"mNGm8FZTStVMlRgA3fIO",flyoutHeader:"wGmoXwWAi8iASm7CMjkP",flyoutBody:"cXHIx0FHY6Zq0IKSrMz7"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/overlays/message/Message.module.css":(module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .gyXM4YJbi8gOel9wtldD {\n margin-top: -100%;\n opacity: 0;\n transition:\n margin 0.4s,\n opacity 0.3s 0.2s;\n }\n\n .gyXM4YJbi8gOel9wtldD[data-show="true"] {\n margin-top: 0;\n opacity: 1;\n }\n}\n',"",{version:3,sources:["webpack://./packages/core/src/overlays/message/Message.module.css"],names:[],mappings:"AAAA;;;;;;;;;;;;;;;;;;;;;EAqBE;;AAEF;EACE;IACE,iBAAiB;IACjB,UAAU;IACV;;uBAEmB;EAMrB;;IAJE;MACE,aAAa;MACb,UAAU;IACZ;AAEJ",sourcesContent:['/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .message {\n margin-top: -100%;\n opacity: 0;\n transition:\n margin 0.4s,\n opacity 0.3s 0.2s;\n\n &[data-show="true"] {\n margin-top: 0;\n opacity: 1;\n }\n }\n}\n'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={message:"gyXM4YJbi8gOel9wtldD"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/overlays/modal/Modal.module.css":(module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .Wzfob7p1wecTOAlZau2c {\n z-index: var(--z-overlay);\n\n width: 32rem;\n max-width: 90vw;\n max-height: 90vh;\n margin-top: -100%;\n\n opacity: 0;\n\n transition:\n margin 0.4s,\n opacity 0.3s 0.2s;\n }\n\n .Wzfob7p1wecTOAlZau2c[data-show="true"] {\n margin-top: 0;\n opacity: 1;\n }\n\n .Wzfob7p1wecTOAlZau2c .RUNfDZlWrgq3sszsPF1r {\n background-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 99%, color(from var(--tint) srgb r g b / 1));\n border-bottom: 0.5px solid color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 72%, color(from var(--tint) srgb r g b / 1));\n }\n\n .Wzfob7p1wecTOAlZau2c .j6Fwxqi5FKflDpL_rp64 {\n grid-template: "head head head" auto ". loader ." auto "side-s content side-e" 1fr "foot foot foot" auto / auto 1fr auto;\n }\n}\n',"",{version:3,sources:["webpack://./packages/core/src/overlays/modal/Modal.module.css"],names:[],mappings:"AAAA;;;;;;;;;;;;;;;;;;;;;EAqBE;;AAEF;EACE;IACE,yBAAyB;;IAEzB,YAAY;IACZ,eAAe;IACf,gBAAgB;IAChB,iBAAiB;;IAEjB,UAAU;;IAEV;;uBAEmB;EAerB;;IAbE;MACE,aAAa;MACb,UAAU;IACZ;;IAEA;MACE,6HAA6C;MAC7C,sIAAoD;IACtD;;IAEA;MACE,wHAAwH;IAC1H;AAEJ",sourcesContent:['/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .modal {\n z-index: var(--z-overlay);\n\n width: 32rem;\n max-width: 90vw;\n max-height: 90vh;\n margin-top: -100%;\n\n opacity: 0;\n\n transition:\n margin 0.4s,\n opacity 0.3s 0.2s;\n\n &[data-show="true"] {\n margin-top: 0;\n opacity: 1;\n }\n\n & .modalHeader {\n background-color: theme(backgroundColor.base);\n border-bottom: 0.5px solid theme(borderColor.dimmed);\n }\n\n & .modalBody {\n grid-template: "head head head" auto ". loader ." auto "side-s content side-e" 1fr "foot foot foot" auto / auto 1fr auto;\n }\n }\n}\n'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={modal:"Wzfob7p1wecTOAlZau2c",modalHeader:"RUNfDZlWrgq3sszsPF1r",modalBody:"j6Fwxqi5FKflDpL_rp64"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/overlays/toast/Toast.module.css":(module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .reDYdWdzfuJI8d0magBb {\n margin-bottom: -100%;\n opacity: 0;\n transition:\n margin 0.4s,\n opacity 0.3s 0.2s;\n }\n\n .reDYdWdzfuJI8d0magBb[data-show="true"] {\n margin-bottom: 0;\n opacity: 1;\n }\n}\n',"",{version:3,sources:["webpack://./packages/core/src/overlays/toast/Toast.module.css"],names:[],mappings:"AAAA;;;;;;;;;;;;;;;;;;;;;EAqBE;;AAEF;EACE;IACE,oBAAoB;IACpB,UAAU;IACV;;uBAEmB;EAMrB;;IAJE;MACE,gBAAgB;MAChB,UAAU;IACZ;AAEJ",sourcesContent:['/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .toast {\n margin-bottom: -100%;\n opacity: 0;\n transition:\n margin 0.4s,\n opacity 0.3s 0.2s;\n\n &[data-show="true"] {\n margin-bottom: 0;\n opacity: 1;\n }\n }\n}\n'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={toast:"reDYdWdzfuJI8d0magBb"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/overlays/tooltip/Tooltip.module.css":(module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .LoXcEpwmL9Agrto9L3lg {\n z-index: var(--z-tooltip);\n color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 90%, color(from var(--tint) srgb r g b / 1));\n }\n\n .LoXcEpwmL9Agrto9L3lg[data-color="primary"] {\n color: color-mix(in lab, color(from var(--primary) srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n }\n\n .LoXcEpwmL9Agrto9L3lg[data-color="accent"] {\n color: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n }\n\n .LoXcEpwmL9Agrto9L3lg[data-color="info"] {\n color: color-mix(in lab, color(from #00bfff srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n }\n\n .LoXcEpwmL9Agrto9L3lg[data-color="danger"] {\n color: color-mix(in lab, color(from #f24c3d srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n }\n\n .LoXcEpwmL9Agrto9L3lg[data-color="success"] {\n color: color-mix(in lab, color(from #44bc69 srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n }\n\n .LoXcEpwmL9Agrto9L3lg[data-color="warning"] {\n color: color-mix(in lab, color(from #edaa00 srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n }\n}\n',"",{version:3,sources:["webpack://./packages/core/src/overlays/tooltip/Tooltip.module.css"],names:[],mappings:"AAAA;;;;;;;;;;;;;;;;;;;;;EAqBE;;AAEF;EACE;IACE,yBAAyB;IACzB,kHAAoC;EAyBtC;;IAvBE;MACE,qHAAgC;IAClC;;IAEA;MACE,oHAA+B;IACjC;;IAEA;MACE,8GAA6B;IAC/B;;IAEA;MACE,8GAA+B;IACjC;;IAEA;MACE,8GAAgC;IAClC;;IAEA;MACE,8GAAgC;IAClC;AAEJ",sourcesContent:['/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .tooltip {\n z-index: var(--z-tooltip);\n color: theme(backgroundColor.dimmed);\n\n &[data-color="primary"] {\n color: theme(colors.primary.200);\n }\n\n &[data-color="accent"] {\n color: theme(colors.accent.200);\n }\n\n &[data-color="info"] {\n color: theme(colors.info.200);\n }\n\n &[data-color="danger"] {\n color: theme(colors.danger.200);\n }\n\n &[data-color="success"] {\n color: theme(colors.success.200);\n }\n\n &[data-color="warning"] {\n color: theme(colors.warning.200);\n }\n }\n}\n'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={tooltip:"LoXcEpwmL9Agrto9L3lg"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/typography/Typography.module.css":(module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .Qh57xsVax8MNms8Txi3D {\n line-height: 1.125;\n }\n\n .WEJ9kSOg9P9T6T7rrbEV {\n margin: -0.25rem 0 0.25rem;\n text-align: end;\n }\n\n .WEJ9kSOg9P9T6T7rrbEV > span {\n cursor: pointer;\n -webkit-user-select: none;\n -moz-user-select: none;\n user-select: none;\n font-size: 0.75rem;\n color: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n }\n\n .WEJ9kSOg9P9T6T7rrbEV > span:hover {\n color: color(from var(--accent) srgb r g b / 1);\n text-decoration: underline;\n text-underline-offset: 2px;\n }\n}\n\n@layer util {\n .eNMv6REpuE0TlJsrjPln {\n -webkit-line-clamp: var(--text-clamp);\n }\n\n .cUk0ErlECbvfecnVltlw {\n --abbr-color: var(--accent);\n\n color: color-mix(in lab, var(--abbr-color) 50%, var(--fabric-text));\n }\n\n .Mxw_MrVKZrPlTWAd1jFA {\n --mark-color: var(--primary);\n\n background-color: color-mix(\n in lab,\n var(--mark-color) 25%,\n var(--fabric-bg)\n );\n }\n}\n',"",{version:3,sources:["webpack://./packages/core/src/typography/Typography.module.css"],names:[],mappings:"AAAA;;;;;;;;;;;;;;;;;;;;;EAqBE;;AAEF;EACE;IACE,kBAAkB;EACpB;;EAEA;IACE,0BAA0B;IAC1B,eAAe;EAcjB;;IAZE;MACE,eAAe;MACf,yBAAiB;SAAjB,sBAAiB;cAAjB,iBAAiB;MACjB,kBAAkB;MAClB,sHAA+B;IAOjC;;MALE;QACE,+CAA+B;QAC/B,0BAA0B;QAC1B,0BAA0B;MAC5B;AAGN;;AAEA;EACE;IACE,qCAAqC;EACvC;;EAEA;IACE,2BAA2B;;IAE3B,mEAAmE;EACrE;;EAEA;IACE,4BAA4B;;IAE5B;;;;KAIC;EACH;AACF",sourcesContent:['/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n .title {\n line-height: 1.125;\n }\n\n .moreLink {\n margin: -0.25rem 0 0.25rem;\n text-align: end;\n\n & > span {\n cursor: pointer;\n user-select: none;\n font-size: 0.75rem;\n color: theme(colors.accent.700);\n\n &:hover {\n color: theme(colors.accent.500);\n text-decoration: underline;\n text-underline-offset: 2px;\n }\n }\n }\n}\n\n@layer util {\n .text {\n -webkit-line-clamp: var(--text-clamp);\n }\n\n .abbr {\n --abbr-color: var(--accent);\n\n color: color-mix(in lab, var(--abbr-color) 50%, var(--fabric-text));\n }\n\n .mark {\n --mark-color: var(--primary);\n\n background-color: color-mix(\n in lab,\n var(--mark-color) 25%,\n var(--fabric-bg)\n );\n }\n}\n'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={title:"Qh57xsVax8MNms8Txi3D",moreLink:"WEJ9kSOg9P9T6T7rrbEV",text:"eNMv6REpuE0TlJsrjPln",abbr:"cUk0ErlECbvfecnVltlw",mark:"Mxw_MrVKZrPlTWAd1jFA"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./packages/core/src/components/button/Button.module.css":(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_style_loader_dist_runtime_injectStylesIntoStyleTag_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js"),_node_modules_style_loader_dist_runtime_injectStylesIntoStyleTag_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_style_loader_dist_runtime_injectStylesIntoStyleTag_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_style_loader_dist_runtime_styleDomAPI_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/style-loader/dist/runtime/styleDomAPI.js"),_node_modules_style_loader_dist_runtime_styleDomAPI_js__WEBPACK_IMPORTED_MODULE_1___default=__webpack_require__.n(_node_modules_style_loader_dist_runtime_styleDomAPI_js__WEBPACK_IMPORTED_MODULE_1__),_node_modules_style_loader_dist_runtime_insertBySelector_js__WEBPACK_IMPORTED_MODULE_2__=__webpack_require__("./node_modules/style-loader/dist/runtime/insertBySelector.js"),_node_modules_style_loader_dist_runtime_insertBySelector_js__WEBPACK_IMPORTED_MODULE_2___default=__webpack_require__.n(_node_modules_style_loader_dist_runtime_insertBySelector_js__WEBPACK_IMPORTED_MODULE_2__),_node_modules_style_loader_dist_runtime_setAttributesWithoutAttributes_js__WEBPACK_IMPORTED_MODULE_3__=__webpack_require__("./node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js"),_node_modules_style_loader_dist_runtime_setAttributesWithoutAttributes_js__WEBPACK_IMPORTED_MODULE_3___default=__webpack_require__.n(_node_modules_style_loader_dist_runtime_setAttributesWithoutAttributes_js__WEBPACK_IMPORTED_MODULE_3__),_node_modules_style_loader_dist_runtime_insertStyleElement_js__WEBPACK_IMPORTED_MODULE_4__=__webpack_require__("./node_modules/style-loader/dist/runtime/insertStyleElement.js"),_node_modules_style_loader_dist_runtime_insertStyleElement_js__WEBPACK_IMPORTED_MODULE_4___default=__webpack_require__.n(_node_modules_style_loader_dist_runtime_insertStyleElement_js__WEBPACK_IMPORTED_MODULE_4__),_node_modules_style_loader_dist_runtime_styleTagTransform_js__WEBPACK_IMPORTED_MODULE_5__=__webpack_require__("./node_modules/style-loader/dist/runtime/styleTagTransform.js"),_node_modules_style_loader_dist_runtime_styleTagTransform_js__WEBPACK_IMPORTED_MODULE_5___default=__webpack_require__.n(_node_modules_style_loader_dist_runtime_styleTagTransform_js__WEBPACK_IMPORTED_MODULE_5__),_node_modules_css_loader_dist_cjs_js_ruleSet_1_rules_7_use_1_node_modules_postcss_loader_dist_cjs_js_ruleSet_1_rules_7_use_2_Button_module_css__WEBPACK_IMPORTED_MODULE_6__=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/components/button/Button.module.css"),options={};options.styleTagTransform=_node_modules_style_loader_dist_runtime_styleTagTransform_js__WEBPACK_IMPORTED_MODULE_5___default(),options.setAttributes=_node_modules_style_loader_dist_runtime_setAttributesWithoutAttributes_js__WEBPACK_IMPORTED_MODULE_3___default(),options.insert=_node_modules_style_loader_dist_runtime_insertBySelector_js__WEBPACK_IMPORTED_MODULE_2___default().bind(null,"head"),options.domAPI=_node_modules_style_loader_dist_runtime_styleDomAPI_js__WEBPACK_IMPORTED_MODULE_1___default(),options.insertStyleElement=_node_modules_style_loader_dist_runtime_insertStyleElement_js__WEBPACK_IMPORTED_MODULE_4___default();_node_modules_style_loader_dist_runtime_injectStylesIntoStyleTag_js__WEBPACK_IMPORTED_MODULE_0___default()(_node_modules_css_loader_dist_cjs_js_ruleSet_1_rules_7_use_1_node_modules_postcss_loader_dist_cjs_js_ruleSet_1_rules_7_use_2_Button_module_css__WEBPACK_IMPORTED_MODULE_6__.A,options);const __WEBPACK_DEFAULT_EXPORT__=_node_modules_css_loader_dist_cjs_js_ruleSet_1_rules_7_use_1_node_modules_postcss_loader_dist_cjs_js_ruleSet_1_rules_7_use_2_Button_module_css__WEBPACK_IMPORTED_MODULE_6__.A&&_node_modules_css_loader_dist_cjs_js_ruleSet_1_rules_7_use_1_node_modules_postcss_loader_dist_cjs_js_ruleSet_1_rules_7_use_2_Button_module_css__WEBPACK_IMPORTED_MODULE_6__.A.locals?_node_modules_css_loader_dist_cjs_js_ruleSet_1_rules_7_use_1_node_modules_postcss_loader_dist_cjs_js_ruleSet_1_rules_7_use_2_Button_module_css__WEBPACK_IMPORTED_MODULE_6__.A.locals:void 0},"./packages/core/src/typography/Typography.module.css":(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_style_loader_dist_runtime_injectStylesIntoStyleTag_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js"),_node_modules_style_loader_dist_runtime_injectStylesIntoStyleTag_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_style_loader_dist_runtime_injectStylesIntoStyleTag_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_style_loader_dist_runtime_styleDomAPI_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/style-loader/dist/runtime/styleDomAPI.js"),_node_modules_style_loader_dist_runtime_styleDomAPI_js__WEBPACK_IMPORTED_MODULE_1___default=__webpack_require__.n(_node_modules_style_loader_dist_runtime_styleDomAPI_js__WEBPACK_IMPORTED_MODULE_1__),_node_modules_style_loader_dist_runtime_insertBySelector_js__WEBPACK_IMPORTED_MODULE_2__=__webpack_require__("./node_modules/style-loader/dist/runtime/insertBySelector.js"),_node_modules_style_loader_dist_runtime_insertBySelector_js__WEBPACK_IMPORTED_MODULE_2___default=__webpack_require__.n(_node_modules_style_loader_dist_runtime_insertBySelector_js__WEBPACK_IMPORTED_MODULE_2__),_node_modules_style_loader_dist_runtime_setAttributesWithoutAttributes_js__WEBPACK_IMPORTED_MODULE_3__=__webpack_require__("./node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js"),_node_modules_style_loader_dist_runtime_setAttributesWithoutAttributes_js__WEBPACK_IMPORTED_MODULE_3___default=__webpack_require__.n(_node_modules_style_loader_dist_runtime_setAttributesWithoutAttributes_js__WEBPACK_IMPORTED_MODULE_3__),_node_modules_style_loader_dist_runtime_insertStyleElement_js__WEBPACK_IMPORTED_MODULE_4__=__webpack_require__("./node_modules/style-loader/dist/runtime/insertStyleElement.js"),_node_modules_style_loader_dist_runtime_insertStyleElement_js__WEBPACK_IMPORTED_MODULE_4___default=__webpack_require__.n(_node_modules_style_loader_dist_runtime_insertStyleElement_js__WEBPACK_IMPORTED_MODULE_4__),_node_modules_style_loader_dist_runtime_styleTagTransform_js__WEBPACK_IMPORTED_MODULE_5__=__webpack_require__("./node_modules/style-loader/dist/runtime/styleTagTransform.js"),_node_modules_style_loader_dist_runtime_styleTagTransform_js__WEBPACK_IMPORTED_MODULE_5___default=__webpack_require__.n(_node_modules_style_loader_dist_runtime_styleTagTransform_js__WEBPACK_IMPORTED_MODULE_5__),_node_modules_css_loader_dist_cjs_js_ruleSet_1_rules_7_use_1_node_modules_postcss_loader_dist_cjs_js_ruleSet_1_rules_7_use_2_Typography_module_css__WEBPACK_IMPORTED_MODULE_6__=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/src/typography/Typography.module.css"),options={};options.styleTagTransform=_node_modules_style_loader_dist_runtime_styleTagTransform_js__WEBPACK_IMPORTED_MODULE_5___default(),options.setAttributes=_node_modules_style_loader_dist_runtime_setAttributesWithoutAttributes_js__WEBPACK_IMPORTED_MODULE_3___default(),options.insert=_node_modules_style_loader_dist_runtime_insertBySelector_js__WEBPACK_IMPORTED_MODULE_2___default().bind(null,"head"),options.domAPI=_node_modules_style_loader_dist_runtime_styleDomAPI_js__WEBPACK_IMPORTED_MODULE_1___default(),options.insertStyleElement=_node_modules_style_loader_dist_runtime_insertStyleElement_js__WEBPACK_IMPORTED_MODULE_4___default();_node_modules_style_loader_dist_runtime_injectStylesIntoStyleTag_js__WEBPACK_IMPORTED_MODULE_0___default()(_node_modules_css_loader_dist_cjs_js_ruleSet_1_rules_7_use_1_node_modules_postcss_loader_dist_cjs_js_ruleSet_1_rules_7_use_2_Typography_module_css__WEBPACK_IMPORTED_MODULE_6__.A,options);const __WEBPACK_DEFAULT_EXPORT__=_node_modules_css_loader_dist_cjs_js_ruleSet_1_rules_7_use_1_node_modules_postcss_loader_dist_cjs_js_ruleSet_1_rules_7_use_2_Typography_module_css__WEBPACK_IMPORTED_MODULE_6__.A&&_node_modules_css_loader_dist_cjs_js_ruleSet_1_rules_7_use_1_node_modules_postcss_loader_dist_cjs_js_ruleSet_1_rules_7_use_2_Typography_module_css__WEBPACK_IMPORTED_MODULE_6__.A.locals?_node_modules_css_loader_dist_cjs_js_ruleSet_1_rules_7_use_1_node_modules_postcss_loader_dist_cjs_js_ruleSet_1_rules_7_use_2_Typography_module_css__WEBPACK_IMPORTED_MODULE_6__.A.locals:void 0}}]); \ No newline at end of file diff --git a/core-stories-components-dropdown-Dropdown-mdx.4f270069.iframe.bundle.js b/core-stories-components-dropdown-Dropdown-mdx.cab64820.iframe.bundle.js similarity index 52% rename from core-stories-components-dropdown-Dropdown-mdx.4f270069.iframe.bundle.js rename to core-stories-components-dropdown-Dropdown-mdx.cab64820.iframe.bundle.js index d69b9a6..551cad3 100644 --- a/core-stories-components-dropdown-Dropdown-mdx.4f270069.iframe.bundle.js +++ b/core-stories-components-dropdown-Dropdown-mdx.cab64820.iframe.bundle.js @@ -1 +1 @@ -(self.webpackChunkreact_fabric=self.webpackChunkreact_fabric||[]).push([[3401,9627],{"./node_modules/@storybook/addon-actions/dist/index.mjs":(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.d(__webpack_exports__,{XI:()=>action});var v4=__webpack_require__("./node_modules/@storybook/addon-actions/node_modules/uuid/dist/esm-browser/v4.js"),external_STORYBOOK_MODULE_PREVIEW_API_=__webpack_require__("storybook/internal/preview-api"),external_STORYBOOK_MODULE_GLOBAL_=__webpack_require__("@storybook/global"),external_STORYBOOK_MODULE_CORE_EVENTS_PREVIEW_ERRORS_=__webpack_require__("storybook/internal/preview-errors"),ADDON_ID="storybook/actions",EVENT_ID=`${ADDON_ID}/action-event`,config={depth:10,clearOnStoryChange:!0,limit:50},findProto=(obj,callback)=>{let proto=Object.getPrototypeOf(obj);return!proto||callback(proto)?proto:findProto(proto,callback)},serializeArg=a=>{if("object"==typeof(e=a)&&e&&findProto(e,(proto=>/^Synthetic(?:Base)?Event$/.test(proto.constructor.name)))&&"function"==typeof e.persist){let e=Object.create(a.constructor.prototype,Object.getOwnPropertyDescriptors(a));e.persist();let viewDescriptor=Object.getOwnPropertyDescriptor(e,"view"),view=viewDescriptor?.value;return"object"==typeof view&&"Window"===view?.constructor.name&&Object.defineProperty(e,"view",{...viewDescriptor,value:Object.create(view.constructor.prototype)}),e}var e;return a},generateId=()=>"object"==typeof crypto&&"function"==typeof crypto.getRandomValues?(0,v4.A)():Date.now().toString(36)+Math.random().toString(36).substring(2);function action(name,options={}){let actionOptions={...config,...options},handler=function(...args){if(options.implicit){let storyRenderer=("__STORYBOOK_PREVIEW__"in external_STORYBOOK_MODULE_GLOBAL_.global?external_STORYBOOK_MODULE_GLOBAL_.global.__STORYBOOK_PREVIEW__:void 0)?.storyRenders.find((render=>"playing"===render.phase||"rendering"===render.phase));if(storyRenderer){let deprecated=!window?.FEATURES?.disallowImplicitActionsInRenderV8,error=new external_STORYBOOK_MODULE_CORE_EVENTS_PREVIEW_ERRORS_.ImplicitActionsDuringRendering({phase:storyRenderer.phase,name,deprecated});if(!deprecated)throw error;console.warn(error)}}let channel=external_STORYBOOK_MODULE_PREVIEW_API_.addons.getChannel(),id=generateId(),serializedArgs=args.map(serializeArg),normalizedArgs=args.length>1?serializedArgs:serializedArgs[0],actionDisplayToEmit={id,count:0,data:{name,args:normalizedArgs},options:{...actionOptions,maxDepth:5+(actionOptions.depth||3),allowFunction:actionOptions.allowFunction||!1}};channel.emit(EVENT_ID,actionDisplayToEmit)};return handler.isAction=!0,handler.implicit=options.implicit,handler}},"./packages/core/stories/components/dropdown/Dropdown.mdx":(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.r(__webpack_exports__),__webpack_require__.d(__webpack_exports__,{default:()=>MDXContent});__webpack_require__("./node_modules/react/index.js");var react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/react/jsx-runtime.js"),_home_runner_work_react_fabric_react_fabric_node_modules_storybook_addon_docs_dist_shims_mdx_react_shim_mjs__WEBPACK_IMPORTED_MODULE_5__=__webpack_require__("./node_modules/@storybook/addon-docs/node_modules/@mdx-js/react/lib/index.js"),_storybook_addon_docs__WEBPACK_IMPORTED_MODULE_2__=__webpack_require__("./node_modules/@storybook/addon-docs/dist/index.mjs"),_storybook_blocks__WEBPACK_IMPORTED_MODULE_6__=__webpack_require__("./node_modules/@storybook/blocks/dist/index.mjs"),_src__WEBPACK_IMPORTED_MODULE_3__=__webpack_require__("./packages/core/src/index.ts"),_Dropdown_stories__WEBPACK_IMPORTED_MODULE_4__=__webpack_require__("./packages/core/stories/components/dropdown/Dropdown.stories.tsx");function _createMdxContent(props){const _components={code:"code",pre:"pre",...(0,_home_runner_work_react_fabric_react_fabric_node_modules_storybook_addon_docs_dist_shims_mdx_react_shim_mjs__WEBPACK_IMPORTED_MODULE_5__.R)(),...props.components};return(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__.jsxs)(react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__.Fragment,{children:[(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__.jsx)(_storybook_blocks__WEBPACK_IMPORTED_MODULE_6__.W8,{of:_Dropdown_stories__WEBPACK_IMPORTED_MODULE_4__}),"\n",(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__.jsx)(_storybook_addon_docs__WEBPACK_IMPORTED_MODULE_2__.hE,{children:"Dropdown"}),"\n",(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__.jsx)(_storybook_blocks__WEBPACK_IMPORTED_MODULE_6__.Mz,{storyId:"Dropdown",children:(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__.jsx)("div",{className:"hidden-anchor",children:(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__.jsx)(_storybook_blocks__WEBPACK_IMPORTED_MODULE_6__.R2,{children:"Dropdown"})})}),"\n",(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__.jsx)(_storybook_addon_docs__WEBPACK_IMPORTED_MODULE_2__.VY,{of:_src__WEBPACK_IMPORTED_MODULE_3__.ms}),"\n",(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__.jsx)(_storybook_addon_docs__WEBPACK_IMPORTED_MODULE_2__.Tn,{}),"\n",(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__.jsxs)(_src__WEBPACK_IMPORTED_MODULE_3__.pJ,{className:"control-panel",children:[(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__.jsx)("div",{children:"Controls"}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__.jsx)(_storybook_blocks__WEBPACK_IMPORTED_MODULE_6__.H2,{of:_Dropdown_stories__WEBPACK_IMPORTED_MODULE_4__._Dropdown})]}),"\n",(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__.jsx)(_storybook_blocks__WEBPACK_IMPORTED_MODULE_6__.Mz,{storyId:"card",children:(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__.jsx)(_storybook_blocks__WEBPACK_IMPORTED_MODULE_6__.R2,{children:"Card Content"})}),"\n",(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__.jsx)(_storybook_addon_docs__WEBPACK_IMPORTED_MODULE_2__.VY,{of:_Dropdown_stories__WEBPACK_IMPORTED_MODULE_4__.CardContent}),"\n",(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__.jsx)(_storybook_addon_docs__WEBPACK_IMPORTED_MODULE_2__.Hl,{withToolbar:!0,of:_Dropdown_stories__WEBPACK_IMPORTED_MODULE_4__.CardContent}),"\n",(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__.jsxs)(_src__WEBPACK_IMPORTED_MODULE_3__.pJ,{className:"control-panel",children:[(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__.jsx)("div",{children:"Controls"}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__.jsx)(_storybook_blocks__WEBPACK_IMPORTED_MODULE_6__.H2,{of:_Dropdown_stories__WEBPACK_IMPORTED_MODULE_4__.CardContent})]}),"\n",(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__.jsx)(_storybook_blocks__WEBPACK_IMPORTED_MODULE_6__.Mz,{storyId:"panel",children:(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__.jsx)(_storybook_blocks__WEBPACK_IMPORTED_MODULE_6__.R2,{children:"Panel Content"})}),"\n",(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__.jsx)(_storybook_addon_docs__WEBPACK_IMPORTED_MODULE_2__.VY,{of:_Dropdown_stories__WEBPACK_IMPORTED_MODULE_4__.PanelContent}),"\n",(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__.jsx)(_storybook_addon_docs__WEBPACK_IMPORTED_MODULE_2__.Hl,{withToolbar:!0,of:_Dropdown_stories__WEBPACK_IMPORTED_MODULE_4__.PanelContent}),"\n",(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__.jsxs)(_src__WEBPACK_IMPORTED_MODULE_3__.pJ,{className:"control-panel",children:[(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__.jsx)("div",{children:"Controls"}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__.jsx)(_storybook_blocks__WEBPACK_IMPORTED_MODULE_6__.H2,{of:_Dropdown_stories__WEBPACK_IMPORTED_MODULE_4__.PanelContent})]}),"\n",(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__.jsx)("hr",{}),"\n",(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__.jsx)(_storybook_blocks__WEBPACK_IMPORTED_MODULE_6__.Mz,{storyId:"props",children:(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__.jsx)(_storybook_blocks__WEBPACK_IMPORTED_MODULE_6__.R2,{children:"Props"})}),"\n",(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__.jsx)(_storybook_blocks__WEBPACK_IMPORTED_MODULE_6__.ov,{sort:"requiredFirst"}),"\n",(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__.jsx)(_storybook_blocks__WEBPACK_IMPORTED_MODULE_6__.Mz,{storyId:"sample",children:(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__.jsx)(_storybook_blocks__WEBPACK_IMPORTED_MODULE_6__.R2,{children:"Example"})}),"\n",(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__.jsx)(_components.pre,{children:(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__.jsx)(_components.code,{className:"language-tsx",children:'import { Dropdown, Button, Menu, MenuItem } from "@react-fabric/core";\n\nexport const Example = () => {\n return (\n \n \n \n \n \n \n \n \n );\n};\n'})})]})}function MDXContent(props={}){const{wrapper:MDXLayout}={...(0,_home_runner_work_react_fabric_react_fabric_node_modules_storybook_addon_docs_dist_shims_mdx_react_shim_mjs__WEBPACK_IMPORTED_MODULE_5__.R)(),...props.components};return MDXLayout?(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__.jsx)(MDXLayout,{...props,children:(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__.jsx)(_createMdxContent,{...props})}):_createMdxContent(props)}},"./node_modules/@storybook/addon-docs/node_modules/@mdx-js/react/lib/index.js":(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.d(__webpack_exports__,{R:()=>useMDXComponents,x:()=>MDXProvider});var react__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/react/index.js");const emptyComponents={},MDXContext=react__WEBPACK_IMPORTED_MODULE_0__.createContext(emptyComponents);function useMDXComponents(components){const contextComponents=react__WEBPACK_IMPORTED_MODULE_0__.useContext(MDXContext);return react__WEBPACK_IMPORTED_MODULE_0__.useMemo((function(){return"function"==typeof components?components(contextComponents):{...contextComponents,...components}}),[contextComponents,components])}function MDXProvider(properties){let allComponents;return allComponents=properties.disableParentContext?"function"==typeof properties.components?properties.components(emptyComponents):properties.components||emptyComponents:useMDXComponents(properties.components),react__WEBPACK_IMPORTED_MODULE_0__.createElement(MDXContext.Provider,{value:allComponents},properties.children)}},"./packages/core/stories/components/dropdown/Dropdown.stories.tsx":(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.r(__webpack_exports__),__webpack_require__.d(__webpack_exports__,{CardContent:()=>CardContent,NestedDropdown:()=>NestedDropdown,PanelContent:()=>PanelContent,_Dropdown:()=>_Dropdown,__namedExportsOrder:()=>__namedExportsOrder,default:()=>__WEBPACK_DEFAULT_EXPORT__});var react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/react/jsx-runtime.js"),_storybook_addon_actions__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/@storybook/addon-actions/dist/index.mjs"),_storybook_test__WEBPACK_IMPORTED_MODULE_2__=__webpack_require__("./node_modules/@storybook/test/dist/index.mjs"),_src__WEBPACK_IMPORTED_MODULE_3__=__webpack_require__("./packages/core/src/index.ts");const __WEBPACK_DEFAULT_EXPORT__={component:_src__WEBPACK_IMPORTED_MODULE_3__.ms,title:"@core/components/Dropdown",parameters:{layout:"centered",controls:{exclude:/^(on.*|children|as)/},jest:["core/tests/Dropdown.test.tsx"]},decorators:[Story=>(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)("div",{className:"flex gap-2 items-center p-4",children:(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(Story,{})})]},_Dropdown={render:args=>(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxs)(_src__WEBPACK_IMPORTED_MODULE_3__.ms,{...args,children:[(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.$n,{altIcon:_src__WEBPACK_IMPORTED_MODULE_3__.OO.chevronDown,children:"Dropdown Menu"}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxs)(_src__WEBPACK_IMPORTED_MODULE_3__.W1,{onClick:(0,_storybook_addon_actions__WEBPACK_IMPORTED_MODULE_1__.XI)("menu"),children:[(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.Dr,{id:"1",label:"Item One"}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.Dr,{id:"2",label:"Item Two"}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.Dr,{id:"3",label:"Item Three"})]})]}),args:{onClose:(0,_storybook_test__WEBPACK_IMPORTED_MODULE_2__.fn)(),onOpen:(0,_storybook_test__WEBPACK_IMPORTED_MODULE_2__.fn)()}},CardContent={render:args=>(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxs)(_src__WEBPACK_IMPORTED_MODULE_3__.ms,{...args,children:[(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.$n,{altIcon:_src__WEBPACK_IMPORTED_MODULE_3__.OO.chevronDown,children:"Dropdown Card"}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxs)(_src__WEBPACK_IMPORTED_MODULE_3__.Zp,{children:[(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.EY,{children:"Some content"}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.wi,{className:"p-2",flex:!0,justify:"end",children:(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.W2,{children:(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.$n,{onClick:(0,_storybook_addon_actions__WEBPACK_IMPORTED_MODULE_1__.XI)("button"),children:"Close"})})})]})]}),args:{onClose:(0,_storybook_test__WEBPACK_IMPORTED_MODULE_2__.fn)(),onOpen:(0,_storybook_test__WEBPACK_IMPORTED_MODULE_2__.fn)()}},PanelContent={render:args=>(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxs)(_src__WEBPACK_IMPORTED_MODULE_3__.ms,{...args,children:[(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.$n,{altIcon:_src__WEBPACK_IMPORTED_MODULE_3__.OO.chevronDown,children:"Dropdown Panel"}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxs)(_src__WEBPACK_IMPORTED_MODULE_3__.YZ,{children:[(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxs)(_src__WEBPACK_IMPORTED_MODULE_3__.Zk,{title:"Some panel",children:[(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.UC,{children:(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.EY,{children:"Some content"})}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.wi,{className:"p-2",flex:!0,justify:"end",children:(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.W2,{children:(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.$n,{children:"Close"})})})]}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxs)(_src__WEBPACK_IMPORTED_MODULE_3__.Zk,{title:"Some panel",children:[(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.UC,{children:(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.EY,{children:"Some content"})}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.wi,{className:"p-2",flex:!0,justify:"end",children:(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.W2,{children:(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.$n,{children:"Close"})})})]})]})]}),args:{onClose:(0,_storybook_test__WEBPACK_IMPORTED_MODULE_2__.fn)(),onOpen:(0,_storybook_test__WEBPACK_IMPORTED_MODULE_2__.fn)()}},NestedDropdown={render:args=>(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxs)(_src__WEBPACK_IMPORTED_MODULE_3__.ms,{...args,children:[(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.$n,{altIcon:_src__WEBPACK_IMPORTED_MODULE_3__.OO.chevronDown,children:"Dropdown Panel"}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxs)(_src__WEBPACK_IMPORTED_MODULE_3__.Zp,{children:[(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.UC,{children:"Nested dropdowns"}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxs)(_src__WEBPACK_IMPORTED_MODULE_3__.wi,{flex:!0,justify:"end",children:[(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.W2,{children:(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.$n,{children:"Dismiss Parent"})}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxs)(_src__WEBPACK_IMPORTED_MODULE_3__.ms,{children:[(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.$n,{children:"Child"}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.Zp,{children:(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.W2,{children:(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.$n,{children:"Dismiss Child"})})})]})]})]})]}),args:{onClose:(0,_storybook_test__WEBPACK_IMPORTED_MODULE_2__.fn)(),onOpen:(0,_storybook_test__WEBPACK_IMPORTED_MODULE_2__.fn)()}},__namedExportsOrder=["_Dropdown","CardContent","PanelContent","NestedDropdown"];_Dropdown.parameters={..._Dropdown.parameters,docs:{..._Dropdown.parameters?.docs,source:{originalSource:'{\n render: args => {\n return \n \n \n \n \n \n \n ;\n },\n args: {\n onClose: fn(),\n onOpen: fn()\n }\n}',..._Dropdown.parameters?.docs?.source}}},CardContent.parameters={...CardContent.parameters,docs:{...CardContent.parameters?.docs,source:{originalSource:'{\n render: args => {\n return \n \n \n Some content\n
\n \n \n \n
\n
\n
;\n },\n args: {\n onClose: fn(),\n onOpen: fn()\n }\n}',...CardContent.parameters?.docs?.source}}},PanelContent.parameters={...PanelContent.parameters,docs:{...PanelContent.parameters?.docs,source:{originalSource:'{\n render: args => {\n return \n \n \n \n \n Some content\n \n
\n \n \n \n
\n
\n \n \n Some content\n \n
\n \n \n \n
\n
\n
\n
;\n },\n args: {\n onClose: fn(),\n onOpen: fn()\n }\n}',...PanelContent.parameters?.docs?.source}}},NestedDropdown.parameters={...NestedDropdown.parameters,docs:{...NestedDropdown.parameters?.docs,source:{originalSource:'{\n render: args => {\n return \n \n \n Nested dropdowns\n
\n \n \n \n \n \n \n \n \n \n \n \n
\n
\n
;\n },\n args: {\n onClose: fn(),\n onOpen: fn()\n }\n}',...NestedDropdown.parameters?.docs?.source}}}},"./node_modules/@storybook/test/dist sync recursive":module=>{function webpackEmptyContext(req){var e=new Error("Cannot find module '"+req+"'");throw e.code="MODULE_NOT_FOUND",e}webpackEmptyContext.keys=()=>[],webpackEmptyContext.resolve=webpackEmptyContext,webpackEmptyContext.id="./node_modules/@storybook/test/dist sync recursive",module.exports=webpackEmptyContext}}]); \ No newline at end of file +(self.webpackChunkreact_fabric=self.webpackChunkreact_fabric||[]).push([[3401,9627],{"./node_modules/@storybook/addon-actions/dist/index.mjs":(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.d(__webpack_exports__,{XI:()=>action});var v4=__webpack_require__("./node_modules/@storybook/addon-actions/node_modules/uuid/dist/esm-browser/v4.js"),external_STORYBOOK_MODULE_PREVIEW_API_=__webpack_require__("storybook/internal/preview-api"),external_STORYBOOK_MODULE_GLOBAL_=__webpack_require__("@storybook/global"),external_STORYBOOK_MODULE_CORE_EVENTS_PREVIEW_ERRORS_=__webpack_require__("storybook/internal/preview-errors"),ADDON_ID="storybook/actions",EVENT_ID=`${ADDON_ID}/action-event`,config={depth:10,clearOnStoryChange:!0,limit:50},findProto=(obj,callback)=>{let proto=Object.getPrototypeOf(obj);return!proto||callback(proto)?proto:findProto(proto,callback)},serializeArg=a=>{if("object"==typeof(e=a)&&e&&findProto(e,(proto=>/^Synthetic(?:Base)?Event$/.test(proto.constructor.name)))&&"function"==typeof e.persist){let e=Object.create(a.constructor.prototype,Object.getOwnPropertyDescriptors(a));e.persist();let viewDescriptor=Object.getOwnPropertyDescriptor(e,"view"),view=viewDescriptor?.value;return"object"==typeof view&&"Window"===view?.constructor.name&&Object.defineProperty(e,"view",{...viewDescriptor,value:Object.create(view.constructor.prototype)}),e}var e;return a},generateId=()=>"object"==typeof crypto&&"function"==typeof crypto.getRandomValues?(0,v4.A)():Date.now().toString(36)+Math.random().toString(36).substring(2);function action(name,options={}){let actionOptions={...config,...options},handler=function(...args){if(options.implicit){let storyRenderer=("__STORYBOOK_PREVIEW__"in external_STORYBOOK_MODULE_GLOBAL_.global?external_STORYBOOK_MODULE_GLOBAL_.global.__STORYBOOK_PREVIEW__:void 0)?.storyRenders.find((render=>"playing"===render.phase||"rendering"===render.phase));if(storyRenderer){let deprecated=!window?.FEATURES?.disallowImplicitActionsInRenderV8,error=new external_STORYBOOK_MODULE_CORE_EVENTS_PREVIEW_ERRORS_.ImplicitActionsDuringRendering({phase:storyRenderer.phase,name,deprecated});if(!deprecated)throw error;console.warn(error)}}let channel=external_STORYBOOK_MODULE_PREVIEW_API_.addons.getChannel(),id=generateId(),serializedArgs=args.map(serializeArg),normalizedArgs=args.length>1?serializedArgs:serializedArgs[0],actionDisplayToEmit={id,count:0,data:{name,args:normalizedArgs},options:{...actionOptions,maxDepth:5+(actionOptions.depth||3),allowFunction:actionOptions.allowFunction||!1}};channel.emit(EVENT_ID,actionDisplayToEmit)};return handler.isAction=!0,handler.implicit=options.implicit,handler}},"./packages/core/stories/components/dropdown/Dropdown.mdx":(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.r(__webpack_exports__),__webpack_require__.d(__webpack_exports__,{default:()=>MDXContent});__webpack_require__("./node_modules/react/index.js");var react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/react/jsx-runtime.js"),_home_runner_work_react_fabric_react_fabric_node_modules_storybook_addon_docs_dist_shims_mdx_react_shim_mjs__WEBPACK_IMPORTED_MODULE_5__=__webpack_require__("./node_modules/@storybook/addon-docs/node_modules/@mdx-js/react/lib/index.js"),_storybook_addon_docs__WEBPACK_IMPORTED_MODULE_2__=__webpack_require__("./node_modules/@storybook/addon-docs/dist/index.mjs"),_storybook_blocks__WEBPACK_IMPORTED_MODULE_6__=__webpack_require__("./node_modules/@storybook/blocks/dist/index.mjs"),_src__WEBPACK_IMPORTED_MODULE_3__=__webpack_require__("./packages/core/src/index.ts"),_Dropdown_stories__WEBPACK_IMPORTED_MODULE_4__=__webpack_require__("./packages/core/stories/components/dropdown/Dropdown.stories.tsx");function _createMdxContent(props){const _components={code:"code",pre:"pre",...(0,_home_runner_work_react_fabric_react_fabric_node_modules_storybook_addon_docs_dist_shims_mdx_react_shim_mjs__WEBPACK_IMPORTED_MODULE_5__.R)(),...props.components};return(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__.jsxs)(react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__.Fragment,{children:[(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__.jsx)(_storybook_blocks__WEBPACK_IMPORTED_MODULE_6__.W8,{of:_Dropdown_stories__WEBPACK_IMPORTED_MODULE_4__}),"\n",(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__.jsx)(_storybook_addon_docs__WEBPACK_IMPORTED_MODULE_2__.hE,{children:"Dropdown"}),"\n",(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__.jsx)(_storybook_blocks__WEBPACK_IMPORTED_MODULE_6__.Mz,{storyId:"Dropdown",children:(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__.jsx)("div",{className:"hidden-anchor",children:(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__.jsx)(_storybook_blocks__WEBPACK_IMPORTED_MODULE_6__.R2,{children:"Dropdown"})})}),"\n",(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__.jsx)(_storybook_addon_docs__WEBPACK_IMPORTED_MODULE_2__.VY,{of:_src__WEBPACK_IMPORTED_MODULE_3__.ms}),"\n",(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__.jsx)(_storybook_addon_docs__WEBPACK_IMPORTED_MODULE_2__.Tn,{}),"\n",(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__.jsxs)(_src__WEBPACK_IMPORTED_MODULE_3__.pJ,{className:"control-panel",children:[(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__.jsx)("div",{children:"Controls"}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__.jsx)(_storybook_blocks__WEBPACK_IMPORTED_MODULE_6__.H2,{of:_Dropdown_stories__WEBPACK_IMPORTED_MODULE_4__._Dropdown})]}),"\n",(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__.jsx)(_storybook_blocks__WEBPACK_IMPORTED_MODULE_6__.Mz,{storyId:"card",children:(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__.jsx)(_storybook_blocks__WEBPACK_IMPORTED_MODULE_6__.R2,{children:"Card Content"})}),"\n",(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__.jsx)(_storybook_addon_docs__WEBPACK_IMPORTED_MODULE_2__.VY,{of:_Dropdown_stories__WEBPACK_IMPORTED_MODULE_4__.CardContent}),"\n",(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__.jsx)(_storybook_addon_docs__WEBPACK_IMPORTED_MODULE_2__.Hl,{withToolbar:!0,of:_Dropdown_stories__WEBPACK_IMPORTED_MODULE_4__.CardContent}),"\n",(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__.jsxs)(_src__WEBPACK_IMPORTED_MODULE_3__.pJ,{className:"control-panel",children:[(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__.jsx)("div",{children:"Controls"}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__.jsx)(_storybook_blocks__WEBPACK_IMPORTED_MODULE_6__.H2,{of:_Dropdown_stories__WEBPACK_IMPORTED_MODULE_4__.CardContent})]}),"\n",(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__.jsx)(_storybook_blocks__WEBPACK_IMPORTED_MODULE_6__.Mz,{storyId:"panel",children:(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__.jsx)(_storybook_blocks__WEBPACK_IMPORTED_MODULE_6__.R2,{children:"Panel Content"})}),"\n",(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__.jsx)(_storybook_addon_docs__WEBPACK_IMPORTED_MODULE_2__.VY,{of:_Dropdown_stories__WEBPACK_IMPORTED_MODULE_4__.PanelContent}),"\n",(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__.jsx)(_storybook_addon_docs__WEBPACK_IMPORTED_MODULE_2__.Hl,{withToolbar:!0,of:_Dropdown_stories__WEBPACK_IMPORTED_MODULE_4__.PanelContent}),"\n",(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__.jsxs)(_src__WEBPACK_IMPORTED_MODULE_3__.pJ,{className:"control-panel",children:[(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__.jsx)("div",{children:"Controls"}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__.jsx)(_storybook_blocks__WEBPACK_IMPORTED_MODULE_6__.H2,{of:_Dropdown_stories__WEBPACK_IMPORTED_MODULE_4__.PanelContent})]}),"\n",(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__.jsx)("hr",{}),"\n",(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__.jsx)(_storybook_blocks__WEBPACK_IMPORTED_MODULE_6__.Mz,{storyId:"props",children:(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__.jsx)(_storybook_blocks__WEBPACK_IMPORTED_MODULE_6__.R2,{children:"Props"})}),"\n",(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__.jsx)(_storybook_blocks__WEBPACK_IMPORTED_MODULE_6__.ov,{sort:"requiredFirst"}),"\n",(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__.jsx)(_storybook_blocks__WEBPACK_IMPORTED_MODULE_6__.Mz,{storyId:"sample",children:(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__.jsx)(_storybook_blocks__WEBPACK_IMPORTED_MODULE_6__.R2,{children:"Example"})}),"\n",(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__.jsx)(_components.pre,{children:(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__.jsx)(_components.code,{className:"language-tsx",children:'import { Dropdown, Button, Menu, MenuItem } from "@react-fabric/core";\n\nexport const Example = () => {\n return (\n \n \n \n \n \n \n \n \n );\n};\n'})})]})}function MDXContent(props={}){const{wrapper:MDXLayout}={...(0,_home_runner_work_react_fabric_react_fabric_node_modules_storybook_addon_docs_dist_shims_mdx_react_shim_mjs__WEBPACK_IMPORTED_MODULE_5__.R)(),...props.components};return MDXLayout?(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__.jsx)(MDXLayout,{...props,children:(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__.jsx)(_createMdxContent,{...props})}):_createMdxContent(props)}},"./node_modules/@storybook/addon-docs/node_modules/@mdx-js/react/lib/index.js":(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.d(__webpack_exports__,{R:()=>useMDXComponents,x:()=>MDXProvider});var react__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/react/index.js");const emptyComponents={},MDXContext=react__WEBPACK_IMPORTED_MODULE_0__.createContext(emptyComponents);function useMDXComponents(components){const contextComponents=react__WEBPACK_IMPORTED_MODULE_0__.useContext(MDXContext);return react__WEBPACK_IMPORTED_MODULE_0__.useMemo((function(){return"function"==typeof components?components(contextComponents):{...contextComponents,...components}}),[contextComponents,components])}function MDXProvider(properties){let allComponents;return allComponents=properties.disableParentContext?"function"==typeof properties.components?properties.components(emptyComponents):properties.components||emptyComponents:useMDXComponents(properties.components),react__WEBPACK_IMPORTED_MODULE_0__.createElement(MDXContext.Provider,{value:allComponents},properties.children)}},"./packages/core/stories/components/dropdown/Dropdown.stories.tsx":(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.r(__webpack_exports__),__webpack_require__.d(__webpack_exports__,{CardContent:()=>CardContent,NestedDropdown:()=>NestedDropdown,PanelContent:()=>PanelContent,_Dropdown:()=>_Dropdown,__namedExportsOrder:()=>__namedExportsOrder,default:()=>__WEBPACK_DEFAULT_EXPORT__});var react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/react/jsx-runtime.js"),_storybook_addon_actions__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/@storybook/addon-actions/dist/index.mjs"),_storybook_test__WEBPACK_IMPORTED_MODULE_2__=__webpack_require__("./node_modules/@storybook/test/dist/index.mjs"),_src__WEBPACK_IMPORTED_MODULE_3__=__webpack_require__("./packages/core/src/index.ts");const __WEBPACK_DEFAULT_EXPORT__={component:_src__WEBPACK_IMPORTED_MODULE_3__.ms,title:"@core/components/Dropdown",parameters:{layout:"centered",controls:{exclude:/^(on.*|children|as)/},jest:["core/tests/Dropdown.test.tsx"]},decorators:[Story=>(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)("div",{className:"flex gap-2 items-center p-4",children:(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(Story,{})})]},_Dropdown={render:args=>(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxs)(_src__WEBPACK_IMPORTED_MODULE_3__.ms,{...args,children:[(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.$n,{altIcon:_src__WEBPACK_IMPORTED_MODULE_3__.OO.chevronDown,children:"Dropdown Menu"}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxs)(_src__WEBPACK_IMPORTED_MODULE_3__.W1,{onClick:(0,_storybook_addon_actions__WEBPACK_IMPORTED_MODULE_1__.XI)("menu"),children:[(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.Dr,{id:"1",label:"Item One"}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.Dr,{id:"2",label:"Item Two"}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.Dr,{id:"3",label:"Item Three"}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.Dr,{id:"3",label:"Item Three"}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.Dr,{id:"3",label:"Item Three"}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.Dr,{id:"3",label:"Item Three"}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.Dr,{id:"3",label:"Item Three"}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.Dr,{id:"3",label:"Item Three"}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.Dr,{id:"3",label:"Item Three"}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.Dr,{id:"3",label:"Item Three"}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.Dr,{id:"3",label:"Item Three"}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.Dr,{id:"3",label:"Item Three"}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.Dr,{id:"3",label:"Item Three"}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.Dr,{id:"3",label:"Item Three"}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.Dr,{id:"3",label:"Item Three"}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.Dr,{id:"3",label:"Item Three"}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.Dr,{id:"3",label:"Item Three"}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.Dr,{id:"3",label:"Item Three"}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.Dr,{id:"3",label:"Item Three"}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.Dr,{id:"3",label:"Item Three"}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.Dr,{id:"3",label:"Item Three"}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.Dr,{id:"3",label:"Item Three"}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.Dr,{id:"3",label:"Item Three"}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.Dr,{id:"3",label:"Item Three"}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.Dr,{id:"3",label:"Item Three"}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.Dr,{id:"3",label:"Item Three"}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.Dr,{id:"3",label:"Item Three"}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.Dr,{id:"3",label:"Item Three"})]})]}),args:{onClose:(0,_storybook_test__WEBPACK_IMPORTED_MODULE_2__.fn)(),onOpen:(0,_storybook_test__WEBPACK_IMPORTED_MODULE_2__.fn)()}},CardContent={render:args=>(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxs)(_src__WEBPACK_IMPORTED_MODULE_3__.ms,{...args,children:[(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.$n,{altIcon:_src__WEBPACK_IMPORTED_MODULE_3__.OO.chevronDown,children:"Dropdown Card"}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxs)(_src__WEBPACK_IMPORTED_MODULE_3__.Zp,{children:[(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.EY,{children:"Some content"}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.wi,{className:"p-2",flex:!0,justify:"end",children:(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.W2,{children:(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.$n,{onClick:(0,_storybook_addon_actions__WEBPACK_IMPORTED_MODULE_1__.XI)("button"),children:"Close"})})})]})]}),args:{onClose:(0,_storybook_test__WEBPACK_IMPORTED_MODULE_2__.fn)(),onOpen:(0,_storybook_test__WEBPACK_IMPORTED_MODULE_2__.fn)()}},PanelContent={render:args=>(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxs)(_src__WEBPACK_IMPORTED_MODULE_3__.ms,{...args,children:[(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.$n,{altIcon:_src__WEBPACK_IMPORTED_MODULE_3__.OO.chevronDown,children:"Dropdown Panel"}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxs)(_src__WEBPACK_IMPORTED_MODULE_3__.YZ,{children:[(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxs)(_src__WEBPACK_IMPORTED_MODULE_3__.Zk,{title:"Some panel",children:[(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.UC,{children:(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.EY,{children:"Some content"})}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.wi,{className:"p-2",flex:!0,justify:"end",children:(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.W2,{children:(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.$n,{children:"Close"})})})]}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxs)(_src__WEBPACK_IMPORTED_MODULE_3__.Zk,{title:"Some panel",children:[(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.UC,{children:(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.EY,{children:"Some content"})}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.wi,{className:"p-2",flex:!0,justify:"end",children:(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.W2,{children:(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.$n,{children:"Close"})})})]})]})]}),args:{onClose:(0,_storybook_test__WEBPACK_IMPORTED_MODULE_2__.fn)(),onOpen:(0,_storybook_test__WEBPACK_IMPORTED_MODULE_2__.fn)()}},NestedDropdown={render:args=>(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxs)(_src__WEBPACK_IMPORTED_MODULE_3__.ms,{...args,children:[(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.$n,{altIcon:_src__WEBPACK_IMPORTED_MODULE_3__.OO.chevronDown,children:"Dropdown Panel"}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxs)(_src__WEBPACK_IMPORTED_MODULE_3__.Zp,{children:[(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.UC,{children:"Nested dropdowns"}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxs)(_src__WEBPACK_IMPORTED_MODULE_3__.wi,{flex:!0,justify:"end",children:[(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.W2,{children:(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.$n,{children:"Dismiss Parent"})}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxs)(_src__WEBPACK_IMPORTED_MODULE_3__.ms,{children:[(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.$n,{children:"Child"}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.Zp,{children:(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.W2,{children:(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.$n,{children:"Dismiss Child"})})})]})]})]})]}),args:{onClose:(0,_storybook_test__WEBPACK_IMPORTED_MODULE_2__.fn)(),onOpen:(0,_storybook_test__WEBPACK_IMPORTED_MODULE_2__.fn)()}},__namedExportsOrder=["_Dropdown","CardContent","PanelContent","NestedDropdown"];_Dropdown.parameters={..._Dropdown.parameters,docs:{..._Dropdown.parameters?.docs,source:{originalSource:'{\n render: args => {\n return \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ;\n },\n args: {\n onClose: fn(),\n onOpen: fn()\n }\n}',..._Dropdown.parameters?.docs?.source}}},CardContent.parameters={...CardContent.parameters,docs:{...CardContent.parameters?.docs,source:{originalSource:'{\n render: args => {\n return \n \n \n Some content\n
\n \n \n \n
\n
\n
;\n },\n args: {\n onClose: fn(),\n onOpen: fn()\n }\n}',...CardContent.parameters?.docs?.source}}},PanelContent.parameters={...PanelContent.parameters,docs:{...PanelContent.parameters?.docs,source:{originalSource:'{\n render: args => {\n return \n \n \n \n \n Some content\n \n
\n \n \n \n
\n
\n \n \n Some content\n \n
\n \n \n \n
\n
\n
\n
;\n },\n args: {\n onClose: fn(),\n onOpen: fn()\n }\n}',...PanelContent.parameters?.docs?.source}}},NestedDropdown.parameters={...NestedDropdown.parameters,docs:{...NestedDropdown.parameters?.docs,source:{originalSource:'{\n render: args => {\n return \n \n \n Nested dropdowns\n
\n \n \n \n \n \n \n \n \n \n \n \n
\n
\n
;\n },\n args: {\n onClose: fn(),\n onOpen: fn()\n }\n}',...NestedDropdown.parameters?.docs?.source}}}},"./node_modules/@storybook/test/dist sync recursive":module=>{function webpackEmptyContext(req){var e=new Error("Cannot find module '"+req+"'");throw e.code="MODULE_NOT_FOUND",e}webpackEmptyContext.keys=()=>[],webpackEmptyContext.resolve=webpackEmptyContext,webpackEmptyContext.id="./node_modules/@storybook/test/dist sync recursive",module.exports=webpackEmptyContext}}]); \ No newline at end of file diff --git a/core-stories-components-dropdown-Dropdown-stories.4cb2789c.iframe.bundle.js b/core-stories-components-dropdown-Dropdown-stories.4cb2789c.iframe.bundle.js deleted file mode 100644 index 2320703..0000000 --- a/core-stories-components-dropdown-Dropdown-stories.4cb2789c.iframe.bundle.js +++ /dev/null @@ -1 +0,0 @@ -(self.webpackChunkreact_fabric=self.webpackChunkreact_fabric||[]).push([[9627],{"./node_modules/@storybook/addon-actions/dist/index.mjs":(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.d(__webpack_exports__,{XI:()=>action});var v4=__webpack_require__("./node_modules/@storybook/addon-actions/node_modules/uuid/dist/esm-browser/v4.js"),external_STORYBOOK_MODULE_PREVIEW_API_=__webpack_require__("storybook/internal/preview-api"),external_STORYBOOK_MODULE_GLOBAL_=__webpack_require__("@storybook/global"),external_STORYBOOK_MODULE_CORE_EVENTS_PREVIEW_ERRORS_=__webpack_require__("storybook/internal/preview-errors"),ADDON_ID="storybook/actions",EVENT_ID=`${ADDON_ID}/action-event`,config={depth:10,clearOnStoryChange:!0,limit:50},findProto=(obj,callback)=>{let proto=Object.getPrototypeOf(obj);return!proto||callback(proto)?proto:findProto(proto,callback)},serializeArg=a=>{if("object"==typeof(e=a)&&e&&findProto(e,(proto=>/^Synthetic(?:Base)?Event$/.test(proto.constructor.name)))&&"function"==typeof e.persist){let e=Object.create(a.constructor.prototype,Object.getOwnPropertyDescriptors(a));e.persist();let viewDescriptor=Object.getOwnPropertyDescriptor(e,"view"),view=viewDescriptor?.value;return"object"==typeof view&&"Window"===view?.constructor.name&&Object.defineProperty(e,"view",{...viewDescriptor,value:Object.create(view.constructor.prototype)}),e}var e;return a},generateId=()=>"object"==typeof crypto&&"function"==typeof crypto.getRandomValues?(0,v4.A)():Date.now().toString(36)+Math.random().toString(36).substring(2);function action(name,options={}){let actionOptions={...config,...options},handler=function(...args){if(options.implicit){let storyRenderer=("__STORYBOOK_PREVIEW__"in external_STORYBOOK_MODULE_GLOBAL_.global?external_STORYBOOK_MODULE_GLOBAL_.global.__STORYBOOK_PREVIEW__:void 0)?.storyRenders.find((render=>"playing"===render.phase||"rendering"===render.phase));if(storyRenderer){let deprecated=!window?.FEATURES?.disallowImplicitActionsInRenderV8,error=new external_STORYBOOK_MODULE_CORE_EVENTS_PREVIEW_ERRORS_.ImplicitActionsDuringRendering({phase:storyRenderer.phase,name,deprecated});if(!deprecated)throw error;console.warn(error)}}let channel=external_STORYBOOK_MODULE_PREVIEW_API_.addons.getChannel(),id=generateId(),serializedArgs=args.map(serializeArg),normalizedArgs=args.length>1?serializedArgs:serializedArgs[0],actionDisplayToEmit={id,count:0,data:{name,args:normalizedArgs},options:{...actionOptions,maxDepth:5+(actionOptions.depth||3),allowFunction:actionOptions.allowFunction||!1}};channel.emit(EVENT_ID,actionDisplayToEmit)};return handler.isAction=!0,handler.implicit=options.implicit,handler}},"./packages/core/stories/components/dropdown/Dropdown.stories.tsx":(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.r(__webpack_exports__),__webpack_require__.d(__webpack_exports__,{CardContent:()=>CardContent,NestedDropdown:()=>NestedDropdown,PanelContent:()=>PanelContent,_Dropdown:()=>_Dropdown,__namedExportsOrder:()=>__namedExportsOrder,default:()=>__WEBPACK_DEFAULT_EXPORT__});var react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/react/jsx-runtime.js"),_storybook_addon_actions__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/@storybook/addon-actions/dist/index.mjs"),_storybook_test__WEBPACK_IMPORTED_MODULE_2__=__webpack_require__("./node_modules/@storybook/test/dist/index.mjs"),_src__WEBPACK_IMPORTED_MODULE_3__=__webpack_require__("./packages/core/src/index.ts");const __WEBPACK_DEFAULT_EXPORT__={component:_src__WEBPACK_IMPORTED_MODULE_3__.ms,title:"@core/components/Dropdown",parameters:{layout:"centered",controls:{exclude:/^(on.*|children|as)/},jest:["core/tests/Dropdown.test.tsx"]},decorators:[Story=>(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)("div",{className:"flex gap-2 items-center p-4",children:(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(Story,{})})]},_Dropdown={render:args=>(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxs)(_src__WEBPACK_IMPORTED_MODULE_3__.ms,{...args,children:[(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.$n,{altIcon:_src__WEBPACK_IMPORTED_MODULE_3__.OO.chevronDown,children:"Dropdown Menu"}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxs)(_src__WEBPACK_IMPORTED_MODULE_3__.W1,{onClick:(0,_storybook_addon_actions__WEBPACK_IMPORTED_MODULE_1__.XI)("menu"),children:[(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.Dr,{id:"1",label:"Item One"}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.Dr,{id:"2",label:"Item Two"}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.Dr,{id:"3",label:"Item Three"})]})]}),args:{onClose:(0,_storybook_test__WEBPACK_IMPORTED_MODULE_2__.fn)(),onOpen:(0,_storybook_test__WEBPACK_IMPORTED_MODULE_2__.fn)()}},CardContent={render:args=>(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxs)(_src__WEBPACK_IMPORTED_MODULE_3__.ms,{...args,children:[(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.$n,{altIcon:_src__WEBPACK_IMPORTED_MODULE_3__.OO.chevronDown,children:"Dropdown Card"}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxs)(_src__WEBPACK_IMPORTED_MODULE_3__.Zp,{children:[(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.EY,{children:"Some content"}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.wi,{className:"p-2",flex:!0,justify:"end",children:(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.W2,{children:(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.$n,{onClick:(0,_storybook_addon_actions__WEBPACK_IMPORTED_MODULE_1__.XI)("button"),children:"Close"})})})]})]}),args:{onClose:(0,_storybook_test__WEBPACK_IMPORTED_MODULE_2__.fn)(),onOpen:(0,_storybook_test__WEBPACK_IMPORTED_MODULE_2__.fn)()}},PanelContent={render:args=>(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxs)(_src__WEBPACK_IMPORTED_MODULE_3__.ms,{...args,children:[(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.$n,{altIcon:_src__WEBPACK_IMPORTED_MODULE_3__.OO.chevronDown,children:"Dropdown Panel"}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxs)(_src__WEBPACK_IMPORTED_MODULE_3__.YZ,{children:[(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxs)(_src__WEBPACK_IMPORTED_MODULE_3__.Zk,{title:"Some panel",children:[(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.UC,{children:(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.EY,{children:"Some content"})}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.wi,{className:"p-2",flex:!0,justify:"end",children:(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.W2,{children:(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.$n,{children:"Close"})})})]}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxs)(_src__WEBPACK_IMPORTED_MODULE_3__.Zk,{title:"Some panel",children:[(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.UC,{children:(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.EY,{children:"Some content"})}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.wi,{className:"p-2",flex:!0,justify:"end",children:(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.W2,{children:(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.$n,{children:"Close"})})})]})]})]}),args:{onClose:(0,_storybook_test__WEBPACK_IMPORTED_MODULE_2__.fn)(),onOpen:(0,_storybook_test__WEBPACK_IMPORTED_MODULE_2__.fn)()}},NestedDropdown={render:args=>(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxs)(_src__WEBPACK_IMPORTED_MODULE_3__.ms,{...args,children:[(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.$n,{altIcon:_src__WEBPACK_IMPORTED_MODULE_3__.OO.chevronDown,children:"Dropdown Panel"}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxs)(_src__WEBPACK_IMPORTED_MODULE_3__.Zp,{children:[(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.UC,{children:"Nested dropdowns"}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxs)(_src__WEBPACK_IMPORTED_MODULE_3__.wi,{flex:!0,justify:"end",children:[(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.W2,{children:(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.$n,{children:"Dismiss Parent"})}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxs)(_src__WEBPACK_IMPORTED_MODULE_3__.ms,{children:[(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.$n,{children:"Child"}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.Zp,{children:(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.W2,{children:(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.$n,{children:"Dismiss Child"})})})]})]})]})]}),args:{onClose:(0,_storybook_test__WEBPACK_IMPORTED_MODULE_2__.fn)(),onOpen:(0,_storybook_test__WEBPACK_IMPORTED_MODULE_2__.fn)()}},__namedExportsOrder=["_Dropdown","CardContent","PanelContent","NestedDropdown"];_Dropdown.parameters={..._Dropdown.parameters,docs:{..._Dropdown.parameters?.docs,source:{originalSource:'{\n render: args => {\n return \n \n \n \n \n \n \n ;\n },\n args: {\n onClose: fn(),\n onOpen: fn()\n }\n}',..._Dropdown.parameters?.docs?.source}}},CardContent.parameters={...CardContent.parameters,docs:{...CardContent.parameters?.docs,source:{originalSource:'{\n render: args => {\n return \n \n \n Some content\n
\n \n \n \n
\n
\n
;\n },\n args: {\n onClose: fn(),\n onOpen: fn()\n }\n}',...CardContent.parameters?.docs?.source}}},PanelContent.parameters={...PanelContent.parameters,docs:{...PanelContent.parameters?.docs,source:{originalSource:'{\n render: args => {\n return \n \n \n \n \n Some content\n \n
\n \n \n \n
\n
\n \n \n Some content\n \n
\n \n \n \n
\n
\n
\n
;\n },\n args: {\n onClose: fn(),\n onOpen: fn()\n }\n}',...PanelContent.parameters?.docs?.source}}},NestedDropdown.parameters={...NestedDropdown.parameters,docs:{...NestedDropdown.parameters?.docs,source:{originalSource:'{\n render: args => {\n return \n \n \n Nested dropdowns\n
\n \n \n \n \n \n \n \n \n \n \n \n
\n
\n
;\n },\n args: {\n onClose: fn(),\n onOpen: fn()\n }\n}',...NestedDropdown.parameters?.docs?.source}}}},"./node_modules/@storybook/test/dist sync recursive":module=>{function webpackEmptyContext(req){var e=new Error("Cannot find module '"+req+"'");throw e.code="MODULE_NOT_FOUND",e}webpackEmptyContext.keys=()=>[],webpackEmptyContext.resolve=webpackEmptyContext,webpackEmptyContext.id="./node_modules/@storybook/test/dist sync recursive",module.exports=webpackEmptyContext}}]); \ No newline at end of file diff --git a/core-stories-components-dropdown-Dropdown-stories.c3f34d30.iframe.bundle.js b/core-stories-components-dropdown-Dropdown-stories.c3f34d30.iframe.bundle.js new file mode 100644 index 0000000..1866da1 --- /dev/null +++ b/core-stories-components-dropdown-Dropdown-stories.c3f34d30.iframe.bundle.js @@ -0,0 +1 @@ +(self.webpackChunkreact_fabric=self.webpackChunkreact_fabric||[]).push([[9627],{"./node_modules/@storybook/addon-actions/dist/index.mjs":(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.d(__webpack_exports__,{XI:()=>action});var v4=__webpack_require__("./node_modules/@storybook/addon-actions/node_modules/uuid/dist/esm-browser/v4.js"),external_STORYBOOK_MODULE_PREVIEW_API_=__webpack_require__("storybook/internal/preview-api"),external_STORYBOOK_MODULE_GLOBAL_=__webpack_require__("@storybook/global"),external_STORYBOOK_MODULE_CORE_EVENTS_PREVIEW_ERRORS_=__webpack_require__("storybook/internal/preview-errors"),ADDON_ID="storybook/actions",EVENT_ID=`${ADDON_ID}/action-event`,config={depth:10,clearOnStoryChange:!0,limit:50},findProto=(obj,callback)=>{let proto=Object.getPrototypeOf(obj);return!proto||callback(proto)?proto:findProto(proto,callback)},serializeArg=a=>{if("object"==typeof(e=a)&&e&&findProto(e,(proto=>/^Synthetic(?:Base)?Event$/.test(proto.constructor.name)))&&"function"==typeof e.persist){let e=Object.create(a.constructor.prototype,Object.getOwnPropertyDescriptors(a));e.persist();let viewDescriptor=Object.getOwnPropertyDescriptor(e,"view"),view=viewDescriptor?.value;return"object"==typeof view&&"Window"===view?.constructor.name&&Object.defineProperty(e,"view",{...viewDescriptor,value:Object.create(view.constructor.prototype)}),e}var e;return a},generateId=()=>"object"==typeof crypto&&"function"==typeof crypto.getRandomValues?(0,v4.A)():Date.now().toString(36)+Math.random().toString(36).substring(2);function action(name,options={}){let actionOptions={...config,...options},handler=function(...args){if(options.implicit){let storyRenderer=("__STORYBOOK_PREVIEW__"in external_STORYBOOK_MODULE_GLOBAL_.global?external_STORYBOOK_MODULE_GLOBAL_.global.__STORYBOOK_PREVIEW__:void 0)?.storyRenders.find((render=>"playing"===render.phase||"rendering"===render.phase));if(storyRenderer){let deprecated=!window?.FEATURES?.disallowImplicitActionsInRenderV8,error=new external_STORYBOOK_MODULE_CORE_EVENTS_PREVIEW_ERRORS_.ImplicitActionsDuringRendering({phase:storyRenderer.phase,name,deprecated});if(!deprecated)throw error;console.warn(error)}}let channel=external_STORYBOOK_MODULE_PREVIEW_API_.addons.getChannel(),id=generateId(),serializedArgs=args.map(serializeArg),normalizedArgs=args.length>1?serializedArgs:serializedArgs[0],actionDisplayToEmit={id,count:0,data:{name,args:normalizedArgs},options:{...actionOptions,maxDepth:5+(actionOptions.depth||3),allowFunction:actionOptions.allowFunction||!1}};channel.emit(EVENT_ID,actionDisplayToEmit)};return handler.isAction=!0,handler.implicit=options.implicit,handler}},"./packages/core/stories/components/dropdown/Dropdown.stories.tsx":(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.r(__webpack_exports__),__webpack_require__.d(__webpack_exports__,{CardContent:()=>CardContent,NestedDropdown:()=>NestedDropdown,PanelContent:()=>PanelContent,_Dropdown:()=>_Dropdown,__namedExportsOrder:()=>__namedExportsOrder,default:()=>__WEBPACK_DEFAULT_EXPORT__});var react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/react/jsx-runtime.js"),_storybook_addon_actions__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/@storybook/addon-actions/dist/index.mjs"),_storybook_test__WEBPACK_IMPORTED_MODULE_2__=__webpack_require__("./node_modules/@storybook/test/dist/index.mjs"),_src__WEBPACK_IMPORTED_MODULE_3__=__webpack_require__("./packages/core/src/index.ts");const __WEBPACK_DEFAULT_EXPORT__={component:_src__WEBPACK_IMPORTED_MODULE_3__.ms,title:"@core/components/Dropdown",parameters:{layout:"centered",controls:{exclude:/^(on.*|children|as)/},jest:["core/tests/Dropdown.test.tsx"]},decorators:[Story=>(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)("div",{className:"flex gap-2 items-center p-4",children:(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(Story,{})})]},_Dropdown={render:args=>(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxs)(_src__WEBPACK_IMPORTED_MODULE_3__.ms,{...args,children:[(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.$n,{altIcon:_src__WEBPACK_IMPORTED_MODULE_3__.OO.chevronDown,children:"Dropdown Menu"}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxs)(_src__WEBPACK_IMPORTED_MODULE_3__.W1,{onClick:(0,_storybook_addon_actions__WEBPACK_IMPORTED_MODULE_1__.XI)("menu"),children:[(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.Dr,{id:"1",label:"Item One"}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.Dr,{id:"2",label:"Item Two"}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.Dr,{id:"3",label:"Item Three"}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.Dr,{id:"3",label:"Item Three"}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.Dr,{id:"3",label:"Item Three"}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.Dr,{id:"3",label:"Item Three"}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.Dr,{id:"3",label:"Item Three"}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.Dr,{id:"3",label:"Item Three"}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.Dr,{id:"3",label:"Item Three"}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.Dr,{id:"3",label:"Item Three"}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.Dr,{id:"3",label:"Item Three"}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.Dr,{id:"3",label:"Item Three"}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.Dr,{id:"3",label:"Item Three"}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.Dr,{id:"3",label:"Item Three"}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.Dr,{id:"3",label:"Item Three"}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.Dr,{id:"3",label:"Item Three"}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.Dr,{id:"3",label:"Item Three"}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.Dr,{id:"3",label:"Item Three"}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.Dr,{id:"3",label:"Item Three"}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.Dr,{id:"3",label:"Item Three"}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.Dr,{id:"3",label:"Item Three"}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.Dr,{id:"3",label:"Item Three"}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.Dr,{id:"3",label:"Item Three"}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.Dr,{id:"3",label:"Item Three"}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.Dr,{id:"3",label:"Item Three"}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.Dr,{id:"3",label:"Item Three"}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.Dr,{id:"3",label:"Item Three"}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.Dr,{id:"3",label:"Item Three"})]})]}),args:{onClose:(0,_storybook_test__WEBPACK_IMPORTED_MODULE_2__.fn)(),onOpen:(0,_storybook_test__WEBPACK_IMPORTED_MODULE_2__.fn)()}},CardContent={render:args=>(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxs)(_src__WEBPACK_IMPORTED_MODULE_3__.ms,{...args,children:[(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.$n,{altIcon:_src__WEBPACK_IMPORTED_MODULE_3__.OO.chevronDown,children:"Dropdown Card"}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxs)(_src__WEBPACK_IMPORTED_MODULE_3__.Zp,{children:[(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.EY,{children:"Some content"}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.wi,{className:"p-2",flex:!0,justify:"end",children:(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.W2,{children:(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.$n,{onClick:(0,_storybook_addon_actions__WEBPACK_IMPORTED_MODULE_1__.XI)("button"),children:"Close"})})})]})]}),args:{onClose:(0,_storybook_test__WEBPACK_IMPORTED_MODULE_2__.fn)(),onOpen:(0,_storybook_test__WEBPACK_IMPORTED_MODULE_2__.fn)()}},PanelContent={render:args=>(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxs)(_src__WEBPACK_IMPORTED_MODULE_3__.ms,{...args,children:[(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.$n,{altIcon:_src__WEBPACK_IMPORTED_MODULE_3__.OO.chevronDown,children:"Dropdown Panel"}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxs)(_src__WEBPACK_IMPORTED_MODULE_3__.YZ,{children:[(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxs)(_src__WEBPACK_IMPORTED_MODULE_3__.Zk,{title:"Some panel",children:[(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.UC,{children:(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.EY,{children:"Some content"})}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.wi,{className:"p-2",flex:!0,justify:"end",children:(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.W2,{children:(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.$n,{children:"Close"})})})]}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxs)(_src__WEBPACK_IMPORTED_MODULE_3__.Zk,{title:"Some panel",children:[(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.UC,{children:(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.EY,{children:"Some content"})}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.wi,{className:"p-2",flex:!0,justify:"end",children:(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.W2,{children:(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.$n,{children:"Close"})})})]})]})]}),args:{onClose:(0,_storybook_test__WEBPACK_IMPORTED_MODULE_2__.fn)(),onOpen:(0,_storybook_test__WEBPACK_IMPORTED_MODULE_2__.fn)()}},NestedDropdown={render:args=>(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxs)(_src__WEBPACK_IMPORTED_MODULE_3__.ms,{...args,children:[(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.$n,{altIcon:_src__WEBPACK_IMPORTED_MODULE_3__.OO.chevronDown,children:"Dropdown Panel"}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxs)(_src__WEBPACK_IMPORTED_MODULE_3__.Zp,{children:[(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.UC,{children:"Nested dropdowns"}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxs)(_src__WEBPACK_IMPORTED_MODULE_3__.wi,{flex:!0,justify:"end",children:[(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.W2,{children:(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.$n,{children:"Dismiss Parent"})}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxs)(_src__WEBPACK_IMPORTED_MODULE_3__.ms,{children:[(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.$n,{children:"Child"}),(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.Zp,{children:(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.W2,{children:(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_src__WEBPACK_IMPORTED_MODULE_3__.$n,{children:"Dismiss Child"})})})]})]})]})]}),args:{onClose:(0,_storybook_test__WEBPACK_IMPORTED_MODULE_2__.fn)(),onOpen:(0,_storybook_test__WEBPACK_IMPORTED_MODULE_2__.fn)()}},__namedExportsOrder=["_Dropdown","CardContent","PanelContent","NestedDropdown"];_Dropdown.parameters={..._Dropdown.parameters,docs:{..._Dropdown.parameters?.docs,source:{originalSource:'{\n render: args => {\n return \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ;\n },\n args: {\n onClose: fn(),\n onOpen: fn()\n }\n}',..._Dropdown.parameters?.docs?.source}}},CardContent.parameters={...CardContent.parameters,docs:{...CardContent.parameters?.docs,source:{originalSource:'{\n render: args => {\n return \n \n \n Some content\n
\n \n \n \n
\n
\n
;\n },\n args: {\n onClose: fn(),\n onOpen: fn()\n }\n}',...CardContent.parameters?.docs?.source}}},PanelContent.parameters={...PanelContent.parameters,docs:{...PanelContent.parameters?.docs,source:{originalSource:'{\n render: args => {\n return \n \n \n \n \n Some content\n \n
\n \n \n \n
\n
\n \n \n Some content\n \n
\n \n \n \n
\n
\n
\n
;\n },\n args: {\n onClose: fn(),\n onOpen: fn()\n }\n}',...PanelContent.parameters?.docs?.source}}},NestedDropdown.parameters={...NestedDropdown.parameters,docs:{...NestedDropdown.parameters?.docs,source:{originalSource:'{\n render: args => {\n return \n \n \n Nested dropdowns\n
\n \n \n \n \n \n \n \n \n \n \n \n
\n
\n
;\n },\n args: {\n onClose: fn(),\n onOpen: fn()\n }\n}',...NestedDropdown.parameters?.docs?.source}}}},"./node_modules/@storybook/test/dist sync recursive":module=>{function webpackEmptyContext(req){var e=new Error("Cannot find module '"+req+"'");throw e.code="MODULE_NOT_FOUND",e}webpackEmptyContext.keys=()=>[],webpackEmptyContext.resolve=webpackEmptyContext,webpackEmptyContext.id="./node_modules/@storybook/test/dist sync recursive",module.exports=webpackEmptyContext}}]); \ No newline at end of file diff --git a/iframe.html b/iframe.html index 0fc4c5e..42185d8 100644 --- a/iframe.html +++ b/iframe.html @@ -504,8 +504,8 @@ window['TAGS_OPTIONS'] = {"dev-only":{"excludeFromDocsStories":true},"docs-only":{"excludeFromSidebar":true},"test-only":{"excludeFromSidebar":true,"excludeFromDocsStories":true}}; \ No newline at end of file + import './main.d09fce3c.iframe.bundle.js'; \ No newline at end of file diff --git a/main.2141aabb.iframe.bundle.js b/main.2141aabb.iframe.bundle.js deleted file mode 100644 index 66cd2f5..0000000 --- a/main.2141aabb.iframe.bundle.js +++ /dev/null @@ -1 +0,0 @@ -(self.webpackChunkreact_fabric=self.webpackChunkreact_fabric||[]).push([[8792],{"./node_modules/@bundled-es-modules/tough-cookie sync recursive":module=>{function webpackEmptyContext(req){var e=new Error("Cannot find module '"+req+"'");throw e.code="MODULE_NOT_FOUND",e}webpackEmptyContext.keys=()=>[],webpackEmptyContext.resolve=webpackEmptyContext,webpackEmptyContext.id="./node_modules/@bundled-es-modules/tough-cookie sync recursive",module.exports=webpackEmptyContext},"./node_modules/@storybook/core/dist/components sync recursive":module=>{function webpackEmptyContext(req){var e=new Error("Cannot find module '"+req+"'");throw e.code="MODULE_NOT_FOUND",e}webpackEmptyContext.keys=()=>[],webpackEmptyContext.resolve=webpackEmptyContext,webpackEmptyContext.id="./node_modules/@storybook/core/dist/components sync recursive",module.exports=webpackEmptyContext},"./node_modules/@storybook/core/dist/theming sync recursive":module=>{function webpackEmptyContext(req){var e=new Error("Cannot find module '"+req+"'");throw e.code="MODULE_NOT_FOUND",e}webpackEmptyContext.keys=()=>[],webpackEmptyContext.resolve=webpackEmptyContext,webpackEmptyContext.id="./node_modules/@storybook/core/dist/theming sync recursive",module.exports=webpackEmptyContext},"./node_modules/@storybook/instrumenter/dist sync recursive":module=>{function webpackEmptyContext(req){var e=new Error("Cannot find module '"+req+"'");throw e.code="MODULE_NOT_FOUND",e}webpackEmptyContext.keys=()=>[],webpackEmptyContext.resolve=webpackEmptyContext,webpackEmptyContext.id="./node_modules/@storybook/instrumenter/dist sync recursive",module.exports=webpackEmptyContext},"./packages/core/dist/esm/index.js":(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.d(__webpack_exports__,{L4:()=>ActionLabel,bm:()=>AnimationBars,Cv:()=>AnimationSpinner,QN:()=>ApplicationProvider,eu:()=>Avatar,Ex:()=>Badge,$n:()=>Button_Button,e2:()=>ButtonGroup,Pq:()=>Callout,Zp:()=>Card,vu:()=>Chip,fv:()=>Col,pJ:()=>Collapsable,UC:()=>Content,QR:()=>Copy,OO:()=>icons_CoreIcons,cG:()=>Divider,ms:()=>Dropdown_Dropdown,W2:()=>DropdownDismiss,Mi:()=>DropdownTool,HY:()=>EmptyContent,tH:()=>ErrorBoundary_ErrorBoundary,wi:()=>Footer,Y9:()=>HeadFoot_Header,B9:()=>HotKey_HotKey,ze:()=>HotKeyLabel,In:()=>Icon_Icon,Rh:()=>Animations_Loading,W1:()=>Menu,Dr:()=>MenuItem,kI:()=>Meter,Zk:()=>Panel,n4:()=>PanelStack,z2:()=>ProgressBar,a3:()=>ProgressCircle,fI:()=>Row,wn:()=>Section,EA:()=>Skeleton,oz:()=>Tab,Kp:()=>TabPanel,EY:()=>Text,NP:()=>ThemeProvider,hE:()=>Title,WK:()=>ToggleButtonGroup,m_:()=>Tooltip_Tooltip,LM:()=>Viewport,Rp:()=>addTranslationBundle,EH:()=>getBadgeProps,Xn:()=>useApplicationContext,d7:()=>useDebounce,al:()=>useEffectDebugger_useEffectDebugger,l:()=>useGlobals,Yf:()=>useIsDark,OL:()=>useIsRtl,Mj:()=>useLocalStorage,ZU:()=>useEffectDebugger_useMemoDebugger,w2:()=>useNotificationService,st:()=>useResize_useResize,wY:()=>useResizeObserver});var defineProperty=__webpack_require__("./node_modules/@babel/runtime/helpers/esm/defineProperty.js"),objectWithoutProperties=__webpack_require__("./node_modules/@babel/runtime/helpers/esm/objectWithoutProperties.js"),classnames=__webpack_require__("./node_modules/classnames/index.js"),classnames_default=__webpack_require__.n(classnames),react=__webpack_require__("./node_modules/react/index.js"),esm=__webpack_require__("./packages/utilities/dist/esm/index.js"),injectStylesIntoStyleTag=__webpack_require__("./node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js"),injectStylesIntoStyleTag_default=__webpack_require__.n(injectStylesIntoStyleTag),styleDomAPI=__webpack_require__("./node_modules/style-loader/dist/runtime/styleDomAPI.js"),styleDomAPI_default=__webpack_require__.n(styleDomAPI),insertBySelector=__webpack_require__("./node_modules/style-loader/dist/runtime/insertBySelector.js"),insertBySelector_default=__webpack_require__.n(insertBySelector),setAttributesWithoutAttributes=__webpack_require__("./node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js"),setAttributesWithoutAttributes_default=__webpack_require__.n(setAttributesWithoutAttributes),insertStyleElement=__webpack_require__("./node_modules/style-loader/dist/runtime/insertStyleElement.js"),insertStyleElement_default=__webpack_require__.n(insertStyleElement),styleTagTransform=__webpack_require__("./node_modules/style-loader/dist/runtime/styleTagTransform.js"),styleTagTransform_default=__webpack_require__.n(styleTagTransform),Button_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/dist/esm/components/button/Button.module.css"),options={};options.styleTagTransform=styleTagTransform_default(),options.setAttributes=setAttributesWithoutAttributes_default(),options.insert=insertBySelector_default().bind(null,"head"),options.domAPI=styleDomAPI_default(),options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(Button_module.A,options);const button_Button_module=Button_module.A&&Button_module.A.locals?Button_module.A.locals:void 0;var jsx_runtime=__webpack_require__("./node_modules/react/jsx-runtime.js"),_excluded=["vertical","className","children","variant","rounded","disabled","fullWidth","color","size"];function ownKeys(e,r){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);r&&(o=o.filter((function(r){return Object.getOwnPropertyDescriptor(e,r).enumerable}))),t.push.apply(t,o)}return t}function _objectSpread(e){for(var r=1;rmax?"".concat(max,"+"):"".concat(value)}),[value,max]),innerRef=(0,react.useMemo)((function(){return(0,esm.Px)(ref,null==children?void 0:children.props.ref)}),[ref,null==children?void 0:children.props.ref]);return(0,jsx_runtime.jsxs)("div",{className:classnames_default()(forButton?"contents":"relative",block?"block":"inline-block"),children:[children&&(0,react.cloneElement)(children,Badge_objectSpread(Badge_objectSpread({},rest),{},{ref:innerRef})),(!!ping||label)&&(0,jsx_runtime.jsxs)("div",{"data-ref":"badge","data-ping":ping,"data-placement":placement,className:classnames_default()(badge_Badge_module.badge,className,"inline-block p-px min-w-2 min-h-2 text-center select-none rounded-full leading-none z-5 pointer-events-none",forButton&&!placement?"relative":"absolute"),children:[label&&(0,jsx_runtime.jsx)("span",{className:"p-1",children:label}),icon&&(0,jsx_runtime.jsx)(Icon_Icon,{icon,bg:iconBg,color:iconColor,rtlFlip})]})]})},TitleSizeMap={xs:"0.875rem",sm:"1.125rem",md:"1.5rem",lg:"1.75rem",xl:"2rem"},types_TextSizeMap={xs:"0.75rem",sm:"0.875rem",md:"1.125rem",lg:"1.5rem",xl:"1.75rem"};var floating_ui_react=__webpack_require__("./node_modules/@floating-ui/react/dist/floating-ui.react.mjs"),floating_ui_dom=__webpack_require__("./node_modules/@floating-ui/dom/dist/floating-ui.dom.mjs"),floating_ui_react_dom=__webpack_require__("./node_modules/@floating-ui/react/node_modules/@floating-ui/react-dom/dist/floating-ui.react-dom.mjs"),Dropdown_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/dist/esm/components/dropdown/Dropdown.module.css"),Dropdown_module_options={};Dropdown_module_options.styleTagTransform=styleTagTransform_default(),Dropdown_module_options.setAttributes=setAttributesWithoutAttributes_default(),Dropdown_module_options.insert=insertBySelector_default().bind(null,"head"),Dropdown_module_options.domAPI=styleDomAPI_default(),Dropdown_module_options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(Dropdown_module.A,Dropdown_module_options);const dropdown_Dropdown_module=Dropdown_module.A&&Dropdown_module.A.locals?Dropdown_module.A.locals:void 0;function Dropdown_ownKeys(e,r){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);r&&(o=o.filter((function(r){return Object.getOwnPropertyDescriptor(e,r).enumerable}))),t.push.apply(t,o)}return t}function Dropdown_objectSpread(e){for(var r=1;r2&&void 0!==arguments[2]&&arguments[2];return keyList.current=[].concat((0,toConsumableArray.A)(keyList.current.filter((function(_ref2){return _ref2._key!==keyCombo}))),[reduceHotKey({keyCombo,handler,global})])}),[]),removeHotKey=(0,react.useCallback)((function(key){return keyList.current=(0,toConsumableArray.A)(keyList.current.filter((function(_ref3){return _ref3._key!==key})))}),[]),handler=(0,react.useCallback)((function(items,event){if(0!==items.length){var keyCode=event.key,code=event.code,altKey=event.altKey,ctrlKey=event.ctrlKey,metaKey=event.metaKey,shiftKey=event.shiftKey;if("Enter"===keyCode||"Esc"===keyCode||!["INPUT","TEXTAREA","SELECT"].includes(event.target.tagName)){var find=items.find((function(_ref4){var key=_ref4.key,alt=_ref4.alt,ctrl=_ref4.ctrl,meta=_ref4.meta,shift=_ref4.shift;return(key.toLowerCase()===keyCode.toLowerCase()||key.toLowerCase()===code.toLowerCase())&&alt===altKey&&ctrl===ctrlKey&&meta===metaKey&&shift===shiftKey}));null!=find&&find.handler&&(find.handler(),event.preventDefault(),event.stopImmediatePropagation())}}}),[]),handleGlobal=(0,react.useCallback)((function(event){handler(keyList.current.filter((function(i){return i.global})),event)}),[handler]),handleHotKey=(0,react.useCallback)((function(event){handler(keyList.current.filter((function(i){return!i.global})),event)}),[handler]);return useEffectDebugger_useEffectDebugger((function(){var _refEl$current,el=null===(_refEl$current=refEl.current)||void 0===_refEl$current?void 0:_refEl$current.parentElement;if(el)return el.tabIndex=0,el.addEventListener("keydown",handleHotKey),document.addEventListener("keydown",handleGlobal),function(){el.removeEventListener("keydown",handleHotKey),document.removeEventListener("keydown",handleGlobal)}}),[handleGlobal,handleHotKey],"HotKeyWrapper attach handlers"),(0,jsx_runtime.jsx)(HotKeysContext.Provider,{value:{addHotKey,removeHotKey},children:(0,jsx_runtime.jsx)("div",{ref:refEl,style:{display:"contents"},children})})}));HotKeyWrapper_HotKeyWrapper.displayName="HotKeyProvider";var icons_CoreIcons,_CoreIcons,HotKey_HotKey=function HotKey(_ref){var keyCombo=_ref.keyCombo,global=_ref.global,handler=_ref.handler,_useHotKeys=function useHotKeys(){return(0,react.useContext)(HotKeysContext)}(),addHotKey=_useHotKeys.addHotKey,removeHotKey=_useHotKeys.removeHotKey;return useEffectDebugger_useEffectDebugger((function(){return null==addHotKey||addHotKey(keyCombo,null!=handler?handler:function(){},global),function(){return null==removeHotKey?void 0:removeHotKey(keyCombo)}}),[addHotKey,global,handler,keyCombo,removeHotKey],"HotKey add"),null},HotKeyLabel=function HotKeyLabel(_ref){var keyCombo=_ref.keyCombo,label=useEffectDebugger_useMemoDebugger((function(){var item=reduceHotKey({keyCombo}),label=[];return item.alt&&label.push("ALT"),item.ctrl&&label.push("CTRL"),item.meta&&label.push("META"),item.shift&&label.push("SHIFT"),"tab"===item.key.toLowerCase()?label.push("TAB"):"space"===item.key.toLowerCase()?label.push("SPC"):"arrowleft"===item.key.toLowerCase()?label.push("LEFT"):"arrowright"===item.key.toLowerCase()?label.push("RIGHT"):"arrowup"===item.key.toLowerCase()?label.push("UP"):"arrowdown"===item.key.toLowerCase()?label.push("DOWN"):"enter"===item.key.toLowerCase()?label.push("ENTER"):"delete"===item.key.toLowerCase()?label.push("DEL"):"escape"===item.key.toLowerCase()?label.push("ESC"):"backspace"===item.key.toLowerCase()?label.push("BKSPC"):label.push(item.key.toUpperCase()),[(0,jsx_runtime.jsx)("span",{children:label.join(" ")},"label")]}),[keyCombo],"HotKey label");return(0,jsx_runtime.jsx)("kbd",{className:"hotkey-label inline-flex gap-1 select-none self-center font-mono items-center text-[0.625rem] leading-4 bg-tint-500/10 text-base/50 whitespace-nowrap rounded px-2 mx-1",children:label})},es=__webpack_require__("./node_modules/react-i18next/dist/es/index.js"),useIsRtl=function useIsRtl(){var i18n=(0,es.Bd)("core").i18n,_useState=(0,react.useState)(!1),_useState2=(0,slicedToArray.A)(_useState,2),isRtl=_useState2[0],setIsRtl=_useState2[1];return useEffectDebugger_useLayoutEffectDebugger((function(){try{setIsRtl("rtl"===i18n.dir())}catch(_unused){}}),[i18n.language],"useIsRtl"),isRtl};(_CoreIcons=icons_CoreIcons||(icons_CoreIcons={})).chevronDown="M6.173 7.29l5.827 5.827 5.827-5.827 1.79 1.803-7.617 7.617-7.617-7.617 1.79-1.803z",_CoreIcons.chevronLeft="M16.94 18.107l-6.107-6.107 6.107-6.12-1.88-1.88-8 8 8 8 1.88-1.893z",_CoreIcons.chevronRight="M7.453 18.107l6.107-6.107-6.107-6.12 1.88-1.88 8 8-8 8-1.88-1.893z",_CoreIcons.chevronUp="M6.171 16.705l5.829-5.816 5.829 5.816 1.791-1.791-7.619-7.619-7.619 7.619 1.791 1.791z",_CoreIcons.chevronsDown="M17.959 3.295l1.831 1.831-7.79 7.79-7.79-7.79 1.831-1.831 5.959 5.946 5.959-5.946zM17.959 11.085l1.831 1.831-7.79 7.79-7.79-7.79 1.831-1.831 5.959 5.946 5.959-5.946z",_CoreIcons.chevronsLeft="M20.94 5.88l-1.88-1.88-8 8 8 8 1.88-1.88-6.107-6.12 6.107-6.12zM12.94 5.88l-1.88-1.88-8 8 8 8 1.88-1.88-6.107-6.12 6.107-6.12z",_CoreIcons.chevronsRight="M3.060 5.88l1.88-1.88 8 8-8 8-1.88-1.88 6.107-6.12-6.107-6.12zM11.060 5.88l1.88-1.88 8 8-8 8-1.88-1.88 6.107-6.12-6.107-6.12z",_CoreIcons.chevronsUp="M6.041 20.705l-1.831-1.831 7.79-7.79 7.79 7.79-1.831 1.831-5.959-5.946-5.959 5.946zM6.041 12.915l-1.831-1.831 7.79-7.79 7.79 7.79-1.831 1.831-5.959-5.946-5.959 5.946z",_CoreIcons.pageFirst="M20.273 18.12l-6.12-6.12 6.12-6.12-1.88-1.88-8 8 8 8 1.88-1.88zM3.727 4h2.667v16h-2.667v-16z",_CoreIcons.pageLast="M3.727 5.88l6.12 6.12-6.12 6.12 1.88 1.88 8-8-8-8-1.88 1.88zM17.607 4h2.667v16h-2.667v-16z",_CoreIcons.arrowDown="M18.293 11.293l-5.293 5.293v-11.586c0-0.552-0.448-1-1-1s-1 0.448-1 1v11.586l-5.293-5.293c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414l7 7c0.092 0.092 0.202 0.166 0.324 0.217 0.245 0.101 0.521 0.101 0.766 0 0.118-0.049 0.228-0.121 0.324-0.217l7-7c0.391-0.391 0.391-1.024 0-1.414s-1.024-0.391-1.414 0z",_CoreIcons.arrowLeft="M12.707 18.293l-5.293-5.293h11.586c0.552 0 1-0.448 1-1s-0.448-1-1-1h-11.586l5.293-5.293c0.391-0.391 0.391-1.024 0-1.414s-1.024-0.391-1.414 0l-7 7c-0.096 0.096-0.168 0.206-0.217 0.324-0.051 0.122-0.076 0.253-0.076 0.383 0 0.256 0.098 0.512 0.293 0.707l7 7c0.391 0.391 1.024 0.391 1.414 0s0.391-1.024 0-1.414z",_CoreIcons.arrowRight="M11.293 5.707l5.293 5.293h-11.586c-0.552 0-1 0.448-1 1s0.448 1 1 1h11.586l-5.293 5.293c-0.391 0.391-0.391 1.024 0 1.414s1.024 0.391 1.414 0l7-7c0.092-0.092 0.166-0.202 0.217-0.324 0.101-0.245 0.101-0.521 0-0.766-0.049-0.118-0.121-0.228-0.217-0.324l-7-7c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414z",_CoreIcons.arrowUp="M5.707 12.707l5.293-5.293v11.586c0 0.552 0.448 1 1 1s1-0.448 1-1v-11.586l5.293 5.293c0.391 0.391 1.024 0.391 1.414 0s0.391-1.024 0-1.414l-7-7c-0.092-0.092-0.202-0.166-0.324-0.217s-0.253-0.076-0.383-0.076c-0.256 0-0.512 0.098-0.707 0.293l-7 7c-0.391 0.391-0.391 1.024 0 1.414s1.024 0.391 1.414 0z",_CoreIcons.arrowExpand="M10,21V19H6.41L10.91,14.5L9.5,13.09L5,17.59V14H3V21H10M14.5,10.91L19,6.41V10H21V3H14V5H17.59L13.09,9.5L14.5,10.91Z",_CoreIcons.arrowCollapse="M19.5,3.09L15,7.59V4H13V11H20V9H16.41L20.91,4.5L19.5,3.09M4,13V15H7.59L3.09,19.5L4.5,20.91L9,16.41V20H11V13H4Z",_CoreIcons.close="M5.293 6.707l5.293 5.293-5.293 5.293c-0.391 0.391-0.391 1.024 0 1.414s1.024 0.391 1.414 0l5.293-5.293 5.293 5.293c0.391 0.391 1.024 0.391 1.414 0s0.391-1.024 0-1.414l-5.293-5.293 5.293-5.293c0.391-0.391 0.391-1.024 0-1.414s-1.024-0.391-1.414 0l-5.293 5.293-5.293-5.293c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414z",_CoreIcons.closeAll="M21.707 17.293l-5.293-5.293 5.293-5.293c0.391-0.391 0.391-1.024 0-1.414s-1.024-0.391-1.414 0l-6 6c-0.391 0.391-0.391 1.024 0 1.414l6 6c0.391 0.391 1.024 0.391 1.414 0s0.391-1.024 0-1.414zM2.293 6.707l5.293 5.293-5.293 5.293c-0.391 0.391-0.391 1.024 0 1.414s1.024 0.391 1.414 0l5.293-5.293 5.293 5.293c0.391 0.391 1.024 0.391 1.414 0s0.391-1.024 0-1.414l-5.293-5.293 5.293-5.293c0.391-0.391 0.391-1.024 0-1.414s-1.024-0.391-1.414 0l-5.293 5.293-5.293-5.293c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414z",_CoreIcons.maximize="M8 2h-3c-0.828 0-1.58 0.337-2.121 0.879s-0.879 1.293-0.879 2.121v3c0 0.552 0.448 1 1 1s1-0.448 1-1v-3c0-0.276 0.111-0.525 0.293-0.707s0.431-0.293 0.707-0.293h3c0.552 0 1-0.448 1-1s-0.448-1-1-1zM22 8v-3c0-0.828-0.337-1.58-0.879-2.121s-1.293-0.879-2.121-0.879h-3c-0.552 0-1 0.448-1 1s0.448 1 1 1h3c0.276 0 0.525 0.111 0.707 0.293s0.293 0.431 0.293 0.707v3c0 0.552 0.448 1 1 1s1-0.448 1-1zM16 22h3c0.828 0 1.58-0.337 2.121-0.879s0.879-1.293 0.879-2.121v-3c0-0.552-0.448-1-1-1s-1 0.448-1 1v3c0 0.276-0.111 0.525-0.293 0.707s-0.431 0.293-0.707 0.293h-3c-0.552 0-1 0.448-1 1s0.448 1 1 1zM2 16v3c0 0.828 0.337 1.58 0.879 2.121s1.293 0.879 2.121 0.879h3c0.552 0 1-0.448 1-1s-0.448-1-1-1h-3c-0.276 0-0.525-0.111-0.707-0.293s-0.293-0.431-0.293-0.707v-3c0-0.552-0.448-1-1-1s-1 0.448-1 1z",_CoreIcons.minimize="M7 3v3c0 0.276-0.111 0.525-0.293 0.707s-0.431 0.293-0.707 0.293h-3c-0.552 0-1 0.448-1 1s0.448 1 1 1h3c0.828 0 1.58-0.337 2.121-0.879s0.879-1.293 0.879-2.121v-3c0-0.552-0.448-1-1-1s-1 0.448-1 1zM21 7h-3c-0.276 0-0.525-0.111-0.707-0.293s-0.293-0.431-0.293-0.707v-3c0-0.552-0.448-1-1-1s-1 0.448-1 1v3c0 0.828 0.337 1.58 0.879 2.121s1.293 0.879 2.121 0.879h3c0.552 0 1-0.448 1-1s-0.448-1-1-1zM17 21v-3c0-0.276 0.111-0.525 0.293-0.707s0.431-0.293 0.707-0.293h3c0.552 0 1-0.448 1-1s-0.448-1-1-1h-3c-0.828 0-1.58 0.337-2.121 0.879s-0.879 1.293-0.879 2.121v3c0 0.552 0.448 1 1 1s1-0.448 1-1zM3 17h3c0.276 0 0.525 0.111 0.707 0.293s0.293 0.431 0.293 0.707v3c0 0.552 0.448 1 1 1s1-0.448 1-1v-3c0-0.828-0.337-1.58-0.879-2.121s-1.293-0.879-2.121-0.879h-3c-0.552 0-1 0.448-1 1s0.448 1 1 1z",_CoreIcons.caretDown="M7,10L12,15L17,10H7Z",_CoreIcons.caretLeft="M14.016 6.984v10.031l-5.016-5.016z",_CoreIcons.caretRight="M9.984 17.016v-10.031l5.016 5.016z",_CoreIcons.caretUp="M7,15L12,10L17,15H7Z",_CoreIcons.expand="M5 2c-0.828 0-1.58 0.337-2.121 0.879s-0.879 1.293-0.879 2.121v14c0 0.828 0.337 1.58 0.879 2.121s1.293 0.879 2.121 0.879h14c0.828 0 1.58-0.337 2.121-0.879s0.879-1.293 0.879-2.121v-14c0-0.828-0.337-1.58-0.879-2.121s-1.293-0.879-2.121-0.879zM5 4h14c0.276 0 0.525 0.111 0.707 0.293s0.293 0.431 0.293 0.707v14c0 0.276-0.111 0.525-0.293 0.707s-0.431 0.293-0.707 0.293h-14c-0.276 0-0.525-0.111-0.707-0.293s-0.293-0.431-0.293-0.707v-14c0-0.276 0.111-0.525 0.293-0.707s0.431-0.293 0.707-0.293zM8 13h3v3c0 0.552 0.448 1 1 1s1-0.448 1-1v-3h3c0.552 0 1-0.448 1-1s-0.448-1-1-1h-3v-3c0-0.552-0.448-1-1-1s-1 0.448-1 1v3h-3c-0.552 0-1 0.448-1 1s0.448 1 1 1z",_CoreIcons.collapse="M5 2c-0.828 0-1.58 0.337-2.121 0.879s-0.879 1.293-0.879 2.121v14c0 0.828 0.337 1.58 0.879 2.121s1.293 0.879 2.121 0.879h14c0.828 0 1.58-0.337 2.121-0.879s0.879-1.293 0.879-2.121v-14c0-0.828-0.337-1.58-0.879-2.121s-1.293-0.879-2.121-0.879zM5 4h14c0.276 0 0.525 0.111 0.707 0.293s0.293 0.431 0.293 0.707v14c0 0.276-0.111 0.525-0.293 0.707s-0.431 0.293-0.707 0.293h-14c-0.276 0-0.525-0.111-0.707-0.293s-0.293-0.431-0.293-0.707v-14c0-0.276 0.111-0.525 0.293-0.707s0.431-0.293 0.707-0.293zM8 13h8c0.552 0 1-0.448 1-1s-0.448-1-1-1h-8c-0.552 0-1 0.448-1 1s0.448 1 1 1z",_CoreIcons.expandActive="M17,13H13V17H11V13H7V11H11V7H13V11H17M19,3H5C3.89,3 3,3.89 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V5C21,3.89 20.1,3 19,3Z",_CoreIcons.collapseActive="M17,13H7V11H17M19,3H5C3.89,3 3,3.89 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V5C21,3.89 20.1,3 19,3Z",_CoreIcons.expandAll="M5.293 16.707l6 6c0.391 0.391 1.024 0.391 1.414 0l6-6c0.391-0.391 0.391-1.024 0-1.414s-1.024-0.391-1.414 0l-5.293 5.293-5.293-5.293c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414zM18.707 7.293l-6-6c-0.391-0.391-1.024-0.391-1.414 0l-6 6c-0.391 0.391-0.391 1.024 0 1.414s1.024 0.391 1.414 0l5.293-5.293 5.293 5.293c0.391 0.391 1.024 0.391 1.414 0s0.391-1.024 0-1.414z",_CoreIcons.colapseAll="M18.707 21.293l-6-6c-0.391-0.391-1.024-0.391-1.414 0l-6 6c-0.391 0.391-0.391 1.024 0 1.414s1.024 0.391 1.414 0l5.293-5.293 5.293 5.293c0.391 0.391 1.024 0.391 1.414 0s0.391-1.024 0-1.414zM5.293 2.707l6 6c0.391 0.391 1.024 0.391 1.414 0l6-6c0.391-0.391 0.391-1.024 0-1.414s-1.024-0.391-1.414 0l-5.293 5.293-5.293-5.293c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414z",_CoreIcons.folderClosed="M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z",_CoreIcons.folderOpen="M6.1,10L4,18V8H21A2,2 0 0,0 19,6H12L10,4H4A2,2 0 0,0 2,6V18A2,2 0 0,0 4,20H19C19.9,20 20.7,19.4 20.9,18.5L23.2,10H6.1M19,18H6L7.6,12H20.6L19,18Z",_CoreIcons.zoomIn="M16.041 15.856c-0.034 0.026-0.067 0.055-0.099 0.087s-0.060 0.064-0.087 0.099c-1.258 1.213-2.969 1.958-4.855 1.958-1.933 0-3.682-0.782-4.95-2.050s-2.050-3.017-2.050-4.95 0.782-3.682 2.050-4.95 3.017-2.050 4.95-2.050 3.682 0.782 4.95 2.050 2.050 3.017 2.050 4.95c0 1.886-0.745 3.597-1.959 4.856zM21.707 20.293l-3.675-3.675c1.231-1.54 1.968-3.493 1.968-5.618 0-2.485-1.008-4.736-2.636-6.364s-3.879-2.636-6.364-2.636-4.736 1.008-6.364 2.636-2.636 3.879-2.636 6.364 1.008 4.736 2.636 6.364 3.879 2.636 6.364 2.636c2.125 0 4.078-0.737 5.618-1.968l3.675 3.675c0.391 0.391 1.024 0.391 1.414 0s0.391-1.024 0-1.414zM8 12h2v2c0 0.552 0.448 1 1 1s1-0.448 1-1v-2h2c0.552 0 1-0.448 1-1s-0.448-1-1-1h-2v-2c0-0.552-0.448-1-1-1s-1 0.448-1 1v2h-2c-0.552 0-1 0.448-1 1s0.448 1 1 1z",_CoreIcons.zoomOut="M16.041 15.856c-0.034 0.026-0.067 0.055-0.099 0.087s-0.060 0.064-0.087 0.099c-1.258 1.213-2.969 1.958-4.855 1.958-1.933 0-3.682-0.782-4.95-2.050s-2.050-3.017-2.050-4.95 0.782-3.682 2.050-4.95 3.017-2.050 4.95-2.050 3.682 0.782 4.95 2.050 2.050 3.017 2.050 4.95c0 1.886-0.745 3.597-1.959 4.856zM21.707 20.293l-3.675-3.675c1.231-1.54 1.968-3.493 1.968-5.618 0-2.485-1.008-4.736-2.636-6.364s-3.879-2.636-6.364-2.636-4.736 1.008-6.364 2.636-2.636 3.879-2.636 6.364 1.008 4.736 2.636 6.364 3.879 2.636 6.364 2.636c2.125 0 4.078-0.737 5.618-1.968l3.675 3.675c0.391 0.391 1.024 0.391 1.414 0s0.391-1.024 0-1.414zM8 12h6c0.552 0 1-0.448 1-1s-0.448-1-1-1h-6c-0.552 0-1 0.448-1 1s0.448 1 1 1z",_CoreIcons.sortDesc="M19 17H22L18 21L14 17H17V3H19M2 17H12V19H2M6 5V7H2V5M2 11H9V13H2V11Z",_CoreIcons.sortAsc="M19 7H22L18 3L14 7H17V21H19M2 17H12V19H2M6 5V7H2V5M2 11H9V13H2V11Z",_CoreIcons.refresh="M19.547 14.667c-0.736 2.083-2.245 3.67-4.094 4.553s-4.031 1.061-6.114 0.325-3.67-2.245-4.553-4.094-1.061-4.031-0.325-6.114 2.245-3.67 4.094-4.553 4.031-1.061 6.114-0.325c1.188 0.42 2.209 1.088 2.987 1.882l2.824 2.659h-3.48c-0.552 0-1 0.448-1 1s0.448 1 1 1h5.997c0.004 0 0.009 0 0.013 0 0.137-0.001 0.267-0.030 0.386-0.082 0.119-0.051 0.229-0.126 0.324-0.225 0.012-0.012 0.023-0.025 0.034-0.038 0.076-0.087 0.134-0.184 0.175-0.287s0.065-0.213 0.069-0.328c0.002-0.014 0.002-0.028 0.002-0.042v-5.998c0-0.552-0.448-1-1-1s-1 0.448-1 1v3.685l-2.916-2.745c-0.993-1.012-2.274-1.846-3.748-2.366-2.604-0.921-5.336-0.698-7.644 0.405s-4.197 3.088-5.117 5.692-0.696 5.335 0.406 7.643 3.088 4.197 5.692 5.117 5.335 0.697 7.643-0.406 4.197-3.088 5.117-5.692c0.184-0.521-0.089-1.092-0.61-1.276s-1.092 0.089-1.276 0.61z",_CoreIcons.search="M16.041 15.856c-0.034 0.026-0.067 0.055-0.099 0.087s-0.060 0.064-0.087 0.099c-1.258 1.213-2.969 1.958-4.855 1.958-1.933 0-3.682-0.782-4.95-2.050s-2.050-3.017-2.050-4.95 0.782-3.682 2.050-4.95 3.017-2.050 4.95-2.050 3.682 0.782 4.95 2.050 2.050 3.017 2.050 4.95c0 1.886-0.745 3.597-1.959 4.856zM21.707 20.293l-3.675-3.675c1.231-1.54 1.968-3.493 1.968-5.618 0-2.485-1.008-4.736-2.636-6.364s-3.879-2.636-6.364-2.636-4.736 1.008-6.364 2.636-2.636 3.879-2.636 6.364 1.008 4.736 2.636 6.364 3.879 2.636 6.364 2.636c2.125 0 4.078-0.737 5.618-1.968l3.675 3.675c0.391 0.391 1.024 0.391 1.414 0s0.391-1.024 0-1.414z",_CoreIcons.filter="M6,13H18V11H6M3,6V8H21V6M10,18H14V16H10V18Z",_CoreIcons.funnel="M19.845 4l-6.609 7.814c-0.147 0.173-0.236 0.399-0.236 0.646v6.922l-2-1v-5.922c0.001-0.227-0.077-0.457-0.236-0.646l-6.609-7.814zM22 2h-20c-0.552 0-1 0.448-1 1 0 0.247 0.089 0.473 0.236 0.646l7.764 9.18v6.174c0 0.389 0.222 0.727 0.553 0.894l4 2c0.494 0.247 1.095 0.047 1.342-0.447 0.072-0.146 0.106-0.301 0.105-0.447v-8.174l7.764-9.18c0.357-0.422 0.304-1.053-0.118-1.409-0.189-0.16-0.419-0.238-0.646-0.237z",_CoreIcons.ellipsis="M14 12c0-0.552-0.225-1.053-0.586-1.414s-0.862-0.586-1.414-0.586-1.053 0.225-1.414 0.586-0.586 0.862-0.586 1.414 0.225 1.053 0.586 1.414 0.862 0.586 1.414 0.586 1.053-0.225 1.414-0.586 0.586-0.862 0.586-1.414zM14 5c0-0.552-0.225-1.053-0.586-1.414s-0.862-0.586-1.414-0.586-1.053 0.225-1.414 0.586-0.586 0.862-0.586 1.414 0.225 1.053 0.586 1.414 0.862 0.586 1.414 0.586 1.053-0.225 1.414-0.586 0.586-0.862 0.586-1.414zM14 19c0-0.552-0.225-1.053-0.586-1.414s-0.862-0.586-1.414-0.586-1.053 0.225-1.414 0.586-0.586 0.862-0.586 1.414 0.225 1.053 0.586 1.414 0.862 0.586 1.414 0.586 1.053-0.225 1.414-0.586 0.586-0.862 0.586-1.414z",_CoreIcons.funnelPlus="M15 17H18V14H20V17H23V19H20V22H18V19H15V17M13 19.88C13.04 20.18 12.94 20.5 12.72 20.71C12.32 21.1 11.69 21.1 11.3 20.71L7.29 16.7C7.06 16.47 6.96 16.16 7 15.87V10.75L2.21 4.62C1.87 4.19 1.95 3.56 2.38 3.22C2.57 3.08 2.78 3 3 3V3H17V3C17.22 3 17.43 3.08 17.62 3.22C18.05 3.56 18.13 4.19 17.79 4.62L13 10.75V19.88M5.04 5L9 10.07V15.58L11 17.58V10.05L14.96 5H5.04Z",_CoreIcons.funnelRemove="M14.73,20.83L17.58,18L14.73,15.17L16.15,13.76L19,16.57L21.8,13.76L23.22,15.17L20.41,18L23.22,20.83L21.8,22.24L19,19.4L16.15,22.24L14.73,20.83M13,19.88C13.04,20.18 12.94,20.5 12.71,20.71C12.32,21.1 11.69,21.1 11.3,20.71L7.29,16.7C7.06,16.47 6.96,16.16 7,15.87V10.75L2.21,4.62C1.87,4.19 1.95,3.56 2.38,3.22C2.57,3.08 2.78,3 3,3V3H17V3C17.22,3 17.43,3.08 17.62,3.22C18.05,3.56 18.13,4.19 17.79,4.62L13,10.75V19.88M5.04,5L9,10.06V15.58L11,17.58V10.05L14.96,5H5.04Z",_CoreIcons.funnelMinus="M15 17H23V19H15V17M13 19.88C13.04 20.18 12.94 20.5 12.72 20.71C12.32 21.1 11.69 21.1 11.3 20.71L7.29 16.7C7.06 16.47 6.96 16.16 7 15.87V10.75L2.21 4.62C1.87 4.19 1.95 3.56 2.38 3.22C2.57 3.08 2.78 3 3 3V3H17V3C17.22 3 17.43 3.08 17.62 3.22C18.05 3.56 18.13 4.19 17.79 4.62L13 10.75V19.88M5.04 5L9 10.07V15.58L11 17.58V10.05L14.96 5H5.04Z",_CoreIcons.cut="M7.378 16.551c0.011 0.012 0.023 0.025 0.035 0.036s0.024 0.023 0.036 0.035c0.343 0.359 0.551 0.843 0.551 1.378 0 0.553-0.223 1.051-0.586 1.414s-0.861 0.586-1.414 0.586-1.051-0.223-1.414-0.586-0.586-0.861-0.586-1.414 0.223-1.051 0.586-1.414 0.861-0.586 1.414-0.586c0.535 0 1.019 0.208 1.378 0.551zM13.764 15.188l5.53 5.52c0.391 0.39 1.024 0.39 1.414-0.001s0.39-1.024-0.001-1.414l-5.53-5.52c-0.391-0.39-1.024-0.39-1.414 0.001s-0.39 1.024 0.001 1.414zM7.449 7.378c-0.012 0.011-0.024 0.023-0.036 0.035s-0.024 0.024-0.035 0.036c-0.359 0.343-0.843 0.551-1.378 0.551-0.553 0-1.051-0.223-1.414-0.586s-0.586-0.861-0.586-1.414 0.223-1.051 0.586-1.414 0.861-0.586 1.414-0.586 1.051 0.223 1.414 0.586 0.586 0.861 0.586 1.414c0 0.535-0.208 1.019-0.551 1.378zM8.032 9.446l2.554 2.554-2.554 2.554c-0.596-0.352-1.291-0.554-2.032-0.554-1.104 0-2.106 0.449-2.828 1.172s-1.172 1.724-1.172 2.828 0.449 2.106 1.172 2.828 1.724 1.172 2.828 1.172 2.106-0.449 2.828-1.172 1.172-1.724 1.172-2.828c0-0.741-0.202-1.436-0.554-2.032l11.261-11.261c0.391-0.391 0.391-1.024 0-1.414s-1.024-0.391-1.414 0l-7.293 7.293-2.554-2.554c0.352-0.596 0.554-1.291 0.554-2.032 0-1.104-0.449-2.106-1.172-2.828s-1.724-1.172-2.828-1.172-2.106 0.449-2.828 1.172-1.172 1.724-1.172 2.828 0.449 2.106 1.172 2.828 1.724 1.172 2.828 1.172c0.741 0 1.436-0.202 2.032-0.554z",_CoreIcons.copy="M11 8c-0.828 0-1.58 0.337-2.121 0.879s-0.879 1.293-0.879 2.121v9c0 0.828 0.337 1.58 0.879 2.121s1.293 0.879 2.121 0.879h9c0.828 0 1.58-0.337 2.121-0.879s0.879-1.293 0.879-2.121v-9c0-0.828-0.337-1.58-0.879-2.121s-1.293-0.879-2.121-0.879zM11 10h9c0.276 0 0.525 0.111 0.707 0.293s0.293 0.431 0.293 0.707v9c0 0.276-0.111 0.525-0.293 0.707s-0.431 0.293-0.707 0.293h-9c-0.276 0-0.525-0.111-0.707-0.293s-0.293-0.431-0.293-0.707v-9c0-0.276 0.111-0.525 0.293-0.707s0.431-0.293 0.707-0.293zM5 14h-1c-0.276 0-0.525-0.111-0.707-0.293s-0.293-0.431-0.293-0.707v-9c0-0.276 0.111-0.525 0.293-0.707s0.431-0.293 0.707-0.293h9c0.276 0 0.525 0.111 0.707 0.293s0.293 0.431 0.293 0.707v1c0 0.552 0.448 1 1 1s1-0.448 1-1v-1c0-0.828-0.337-1.58-0.879-2.121s-1.293-0.879-2.121-0.879h-9c-0.828 0-1.58 0.337-2.121 0.879s-0.879 1.293-0.879 2.121v9c0 0.828 0.337 1.58 0.879 2.121s1.293 0.879 2.121 0.879h1c0.552 0 1-0.448 1-1s-0.448-1-1-1z",_CoreIcons.clipboard="M7 5c0 0.552 0.225 1.053 0.586 1.414s0.862 0.586 1.414 0.586h6c0.552 0 1.053-0.225 1.414-0.586s0.586-0.862 0.586-1.414h1c0.276 0 0.525 0.111 0.707 0.293s0.293 0.431 0.293 0.707v14c0 0.276-0.111 0.525-0.293 0.707s-0.431 0.293-0.707 0.293h-12c-0.276 0-0.525-0.111-0.707-0.293s-0.293-0.431-0.293-0.707v-14c0-0.276 0.111-0.525 0.293-0.707s0.431-0.293 0.707-0.293zM9 1c-0.552 0-1.053 0.225-1.414 0.586s-0.586 0.862-0.586 1.414h-1c-0.828 0-1.58 0.337-2.121 0.879s-0.879 1.293-0.879 2.121v14c0 0.828 0.337 1.58 0.879 2.121s1.293 0.879 2.121 0.879h12c0.828 0 1.58-0.337 2.121-0.879s0.879-1.293 0.879-2.121v-14c0-0.828-0.337-1.58-0.879-2.121s-1.293-0.879-2.121-0.879h-1c0-0.552-0.225-1.053-0.586-1.414s-0.862-0.586-1.414-0.586zM9 3h6v2h-6z",_CoreIcons.download="M20 15v4c0 0.276-0.111 0.525-0.293 0.707s-0.431 0.293-0.707 0.293h-14c-0.276 0-0.525-0.111-0.707-0.293s-0.293-0.431-0.293-0.707v-4c0-0.552-0.448-1-1-1s-1 0.448-1 1v4c0 0.828 0.337 1.58 0.879 2.121s1.293 0.879 2.121 0.879h14c0.828 0 1.58-0.337 2.121-0.879s0.879-1.293 0.879-2.121v-4c0-0.552-0.448-1-1-1s-1 0.448-1 1zM13 12.586v-9.586c0-0.552-0.448-1-1-1s-1 0.448-1 1v9.586l-3.293-3.293c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414l5 5c0.092 0.092 0.202 0.166 0.324 0.217s0.253 0.076 0.383 0.076c0.256 0 0.512-0.098 0.707-0.293l5-5c0.391-0.391 0.391-1.024 0-1.414s-1.024-0.391-1.414 0z",_CoreIcons.upload="M20 15v4c0 0.276-0.111 0.525-0.293 0.707s-0.431 0.293-0.707 0.293h-14c-0.276 0-0.525-0.111-0.707-0.293s-0.293-0.431-0.293-0.707v-4c0-0.552-0.448-1-1-1s-1 0.448-1 1v4c0 0.828 0.337 1.58 0.879 2.121s1.293 0.879 2.121 0.879h14c0.828 0 1.58-0.337 2.121-0.879s0.879-1.293 0.879-2.121v-4c0-0.552-0.448-1-1-1s-1 0.448-1 1zM11 5.414v9.586c0 0.552 0.448 1 1 1s1-0.448 1-1v-9.586l3.293 3.293c0.391 0.391 1.024 0.391 1.414 0s0.391-1.024 0-1.414l-5-5c-0.092-0.092-0.202-0.166-0.324-0.217-0.245-0.101-0.521-0.101-0.766 0-0.118 0.049-0.228 0.121-0.324 0.217l-5 5c-0.391 0.391-0.391 1.024 0 1.414s1.024 0.391 1.414 0z",_CoreIcons.external="M17 13v6c0 0.276-0.111 0.525-0.293 0.707s-0.431 0.293-0.707 0.293h-11c-0.276 0-0.525-0.111-0.707-0.293s-0.293-0.431-0.293-0.707v-11c0-0.276 0.111-0.525 0.293-0.707s0.431-0.293 0.707-0.293h6c0.552 0 1-0.448 1-1s-0.448-1-1-1h-6c-0.828 0-1.58 0.337-2.121 0.879s-0.879 1.293-0.879 2.121v11c0 0.828 0.337 1.58 0.879 2.121s1.293 0.879 2.121 0.879h11c0.828 0 1.58-0.337 2.121-0.879s0.879-1.293 0.879-2.121v-6c0-0.552-0.448-1-1-1s-1 0.448-1 1zM10.707 14.707l9.293-9.293v3.586c0 0.552 0.448 1 1 1s1-0.448 1-1v-6c0-0.136-0.027-0.265-0.076-0.383s-0.121-0.228-0.216-0.323c-0.001-0.001-0.001-0.001-0.002-0.002-0.092-0.092-0.202-0.166-0.323-0.216-0.118-0.049-0.247-0.076-0.383-0.076h-6c-0.552 0-1 0.448-1 1s0.448 1 1 1h3.586l-9.293 9.293c-0.391 0.391-0.391 1.024 0 1.414s1.024 0.391 1.414 0z",_CoreIcons.exporter="M12,1L8,5H11V14H13V5H16M18,23H6C4.89,23 4,22.1 4,21V9A2,2 0 0,1 6,7H9V9H6V21H18V9H15V7H18A2,2 0 0,1 20,9V21A2,2 0 0,1 18,23Z",_CoreIcons.dragHandle="M9,3H11V5H9V3M13,3H15V5H13V3M9,7H11V9H9V7M13,7H15V9H13V7M9,11H11V13H9V11M13,11H15V13H13V11M9,15H11V17H9V15M13,15H15V17H13V15M9,19H11V21H9V19M13,19H15V21H13V19Z",_CoreIcons.calendar="M7 2v1h-2c-0.828 0-1.58 0.337-2.121 0.879s-0.879 1.293-0.879 2.121v14c0 0.828 0.337 1.58 0.879 2.121s1.293 0.879 2.121 0.879h14c0.828 0 1.58-0.337 2.121-0.879s0.879-1.293 0.879-2.121v-14c0-0.828-0.337-1.58-0.879-2.121s-1.293-0.879-2.121-0.879h-2v-1c0-0.552-0.448-1-1-1s-1 0.448-1 1v1h-6v-1c0-0.552-0.448-1-1-1s-1 0.448-1 1zM20 9h-16v-3c0-0.276 0.111-0.525 0.293-0.707s0.431-0.293 0.707-0.293h2v1c0 0.552 0.448 1 1 1s1-0.448 1-1v-1h6v1c0 0.552 0.448 1 1 1s1-0.448 1-1v-1h2c0.276 0 0.525 0.111 0.707 0.293s0.293 0.431 0.293 0.707zM4 11h16v9c0 0.276-0.111 0.525-0.293 0.707s-0.431 0.293-0.707 0.293h-14c-0.276 0-0.525-0.111-0.707-0.293s-0.293-0.431-0.293-0.707z",_CoreIcons.calendarHijri="M2.572 22.285h18.857v-13.715h-18.857v13.715zM7.715 6v-3.857c0-0.241-0.188-0.428-0.428-0.428h-0.857c-0.241 0-0.428 0.188-0.428 0.428v3.857c0 0.241 0.188 0.428 0.428 0.428h0.857c0.241 0 0.428-0.188 0.428-0.428zM18 6v-3.857c0-0.241-0.188-0.428-0.428-0.428h-0.857c-0.241 0-0.428 0.188-0.428 0.428v3.857c0 0.241 0.188 0.428 0.428 0.428h0.857c0.241 0 0.428-0.188 0.428-0.428zM23.143 5.143v17.143c0 0.938-0.777 1.715-1.715 1.715h-18.857c-0.938 0-1.715-0.777-1.715-1.715v-17.143c0-0.938 0.777-1.714 1.715-1.714h1.714v-1.285c0-1.178 0.965-2.143 2.143-2.143h0.857c1.178 0 2.143 0.965 2.143 2.143v1.285h5.143v-1.285c0-1.178 0.965-2.143 2.143-2.143h0.857c1.178 0 2.143 0.965 2.143 2.143v1.285h1.715c0.938 0 1.715 0.777 1.715 1.714zM13.389 19.885c-2.461 0-4.48-2.033-4.48-4.51 0-2.495 1.982-4.51 4.53-4.51 0.873 0 1.747 0.352 1.747 0.352-0.994-0.699-2.028-1.047-3.102-1.047-1.459 0-2.699 0.505-3.719 1.516s-1.53 2.24-1.53 3.69c0 1.44 0.508 2.667 1.523 3.683s2.243 1.523 3.683 1.523c1.861 0 3.001-0.961 3.145-1.055 0 0-0.923 0.359-1.796 0.359zM14.425 15.663l-0.465 1.443 1.226-0.887 1.219 0.887-0.465-1.443 1.226-0.882h-1.515l-0.465-1.44-0.472 1.44h-1.515l1.226 0.882z",_CoreIcons.clock="M23 12c0-3.037-1.232-5.789-3.222-7.778s-4.741-3.222-7.778-3.222-5.789 1.232-7.778 3.222-3.222 4.741-3.222 7.778 1.232 5.789 3.222 7.778 4.741 3.222 7.778 3.222 5.789-1.232 7.778-3.222 3.222-4.741 3.222-7.778zM21 12c0 2.486-1.006 4.734-2.636 6.364s-3.878 2.636-6.364 2.636-4.734-1.006-6.364-2.636-2.636-3.878-2.636-6.364 1.006-4.734 2.636-6.364 3.878-2.636 6.364-2.636 4.734 1.006 6.364 2.636 2.636 3.878 2.636 6.364zM11 6v6c0 0.389 0.222 0.727 0.553 0.894l4 2c0.494 0.247 1.095 0.047 1.342-0.447s0.047-1.095-0.447-1.342l-3.448-1.723v-5.382c0-0.552-0.448-1-1-1s-1 0.448-1 1z",_CoreIcons.pin="M16,12V4H17V2H7V4H8V12L6,14V16H11.2V22H12.8V16H18V14L16,12M8.8,14L10,12.8V4H14V12.8L15.2,14H8.8Z",_CoreIcons.eye="M0.106 11.553c-0.136 0.274-0.146 0.603 0 0.894 0 0 0.396 0.789 1.12 1.843 0.451 0.656 1.038 1.432 1.757 2.218 0.894 0.979 2.004 1.987 3.319 2.8 1.595 0.986 3.506 1.692 5.698 1.692s4.103-0.706 5.698-1.692c1.315-0.813 2.425-1.821 3.319-2.8 0.718-0.786 1.306-1.562 1.757-2.218 0.724-1.054 1.12-1.843 1.12-1.843 0.136-0.274 0.146-0.603 0-0.894 0 0-0.396-0.789-1.12-1.843-0.451-0.656-1.038-1.432-1.757-2.218-0.894-0.979-2.004-1.987-3.319-2.8-1.595-0.986-3.506-1.692-5.698-1.692s-4.103 0.706-5.698 1.692c-1.315 0.813-2.425 1.821-3.319 2.8-0.719 0.786-1.306 1.561-1.757 2.218-0.724 1.054-1.12 1.843-1.12 1.843zM2.14 12c0.163-0.281 0.407-0.681 0.734-1.158 0.41-0.596 0.94-1.296 1.585-2.001 0.805-0.881 1.775-1.756 2.894-2.448 1.35-0.834 2.901-1.393 4.647-1.393s3.297 0.559 4.646 1.393c1.119 0.692 2.089 1.567 2.894 2.448 0.644 0.705 1.175 1.405 1.585 2.001 0.328 0.477 0.572 0.876 0.734 1.158-0.163 0.281-0.407 0.681-0.734 1.158-0.41 0.596-0.94 1.296-1.585 2.001-0.805 0.881-1.775 1.756-2.894 2.448-1.349 0.834-2.9 1.393-4.646 1.393s-3.297-0.559-4.646-1.393c-1.119-0.692-2.089-1.567-2.894-2.448-0.644-0.705-1.175-1.405-1.585-2.001-0.328-0.477-0.572-0.877-0.735-1.158zM16 12c0-1.104-0.449-2.106-1.172-2.828s-1.724-1.172-2.828-1.172-2.106 0.449-2.828 1.172-1.172 1.724-1.172 2.828 0.449 2.106 1.172 2.828 1.724 1.172 2.828 1.172 2.106-0.449 2.828-1.172 1.172-1.724 1.172-2.828zM14 12c0 0.553-0.223 1.051-0.586 1.414s-0.861 0.586-1.414 0.586-1.051-0.223-1.414-0.586-0.586-0.861-0.586-1.414 0.223-1.051 0.586-1.414 0.861-0.586 1.414-0.586 1.051 0.223 1.414 0.586 0.586 0.861 0.586 1.414z",_CoreIcons.eyeOff="M10.128 5.214c0.651-0.152 1.296-0.221 1.86-0.214 1.758 0 3.309 0.559 4.658 1.393 1.119 0.692 2.089 1.567 2.894 2.448 0.644 0.705 1.175 1.405 1.585 2.001 0.327 0.475 0.57 0.874 0.733 1.155-0.546 0.953-1.16 1.821-1.778 2.542-0.359 0.419-0.311 1.051 0.108 1.41s1.051 0.311 1.41-0.108c0.818-0.954 1.611-2.112 2.283-3.37 0.148-0.279 0.163-0.618 0.013-0.919 0 0-0.396-0.789-1.12-1.843-0.451-0.656-1.038-1.432-1.757-2.218-0.894-0.979-2.004-1.987-3.319-2.8-1.595-0.985-3.506-1.691-5.686-1.691-0.734-0.009-1.54 0.079-2.34 0.266-0.538 0.126-0.872 0.664-0.746 1.202s0.664 0.872 1.202 0.746zM10.027 11.442l2.531 2.531c-0.182 0.061-0.372 0.094-0.563 0.101-0.513 0.018-1.030-0.159-1.434-0.536s-0.617-0.88-0.635-1.393c-0.008-0.238 0.025-0.476 0.101-0.704zM5.983 7.397l2.553 2.553c-0.434 0.691-0.636 1.484-0.608 2.266 0.036 1.022 0.463 2.033 1.271 2.785s1.846 1.107 2.868 1.071c0.692-0.024 1.379-0.228 1.984-0.608l2.322 2.322c-1.378 0.799-2.895 1.196-4.384 1.214-1.734 0-3.285-0.559-4.634-1.393-1.119-0.692-2.089-1.567-2.894-2.448-0.644-0.705-1.175-1.405-1.585-2.001-0.326-0.475-0.57-0.873-0.732-1.154 1.050-1.822 2.376-3.379 3.841-4.607zM0.293 1.707l4.271 4.271c-1.731 1.479-3.269 3.358-4.445 5.549-0.148 0.279-0.164 0.619-0.013 0.92 0 0 0.396 0.789 1.12 1.843 0.451 0.656 1.038 1.432 1.757 2.218 0.894 0.979 2.004 1.987 3.319 2.8 1.595 0.986 3.506 1.692 5.71 1.692 1.993-0.024 4.019-0.601 5.815-1.759l4.466 4.466c0.391 0.391 1.024 0.391 1.414 0s0.391-1.024 0-1.414l-8.876-8.876c-0.002-0.002-0.005-0.005-0.007-0.007l-4.209-4.21c-0.008-0.007-0.016-0.016-0.024-0.024l-8.884-8.883c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414z",_CoreIcons.invertDisable="M19 3H5C3.9 3 3 3.9 3 5V19C3 20.1 3.9 21 5 21H19C20.1 21 21 20.1 21 19V5C21 3.9 20.1 3 19 3M19 19H5V5H19V19M7 17V7H17",_CoreIcons.invertExclude="M9,5C10.04,5 11.06,5.24 12,5.68C12.94,5.24 13.96,5 15,5A7,7 0 0,1 22,12A7,7 0 0,1 15,19C13.96,19 12.94,18.76 12,18.32C11.06,18.76 10.04,19 9,19A7,7 0 0,1 2,12A7,7 0 0,1 9,5M15,7L14,7.11C15.28,8.41 16,10.17 16,12C16,13.83 15.28,15.59 14,16.9L15,17A5,5 0 0,0 20,12A5,5 0 0,0 15,7M8.5,12C8.5,13.87 9.29,15.56 10.56,16.75L11.56,16.29C10.31,15.29 9.5,13.74 9.5,12C9.5,10.26 10.31,8.71 11.56,7.71L10.56,7.25C9.29,8.44 8.5,10.13 8.5,12Z",_CoreIcons.lock="M5 12h14c0.276 0 0.525 0.111 0.707 0.293s0.293 0.431 0.293 0.707v7c0 0.276-0.111 0.525-0.293 0.707s-0.431 0.293-0.707 0.293h-14c-0.276 0-0.525-0.111-0.707-0.293s-0.293-0.431-0.293-0.707v-7c0-0.276 0.111-0.525 0.293-0.707s0.431-0.293 0.707-0.293zM18 10v-3c0-1.657-0.673-3.158-1.757-4.243s-2.586-1.757-4.243-1.757-3.158 0.673-4.243 1.757-1.757 2.586-1.757 4.243v3h-1c-0.828 0-1.58 0.337-2.121 0.879s-0.879 1.293-0.879 2.121v7c0 0.828 0.337 1.58 0.879 2.121s1.293 0.879 2.121 0.879h14c0.828 0 1.58-0.337 2.121-0.879s0.879-1.293 0.879-2.121v-7c0-0.828-0.337-1.58-0.879-2.121s-1.293-0.879-2.121-0.879zM8 10v-3c0-1.105 0.447-2.103 1.172-2.828s1.723-1.172 2.828-1.172 2.103 0.447 2.828 1.172 1.172 1.723 1.172 2.828v3z",_CoreIcons.unlock="M5 12h14c0.276 0 0.525 0.111 0.707 0.293s0.293 0.431 0.293 0.707v7c0 0.276-0.111 0.525-0.293 0.707s-0.431 0.293-0.707 0.293h-14c-0.276 0-0.525-0.111-0.707-0.293s-0.293-0.431-0.293-0.707v-7c0-0.276 0.111-0.525 0.293-0.707s0.431-0.293 0.707-0.293zM8 10v-3c-0.001-1.106 0.445-2.105 1.169-2.831 0.723-0.724 1.719-1.172 2.821-1.174 1.030 0.003 1.948 0.378 2.652 1 0.638 0.565 1.097 1.332 1.28 2.209 0.113 0.541 0.642 0.888 1.183 0.775s0.888-0.642 0.775-1.183c-0.272-1.307-0.958-2.454-1.912-3.299-1.060-0.938-2.452-1.504-3.973-1.502-1.657 0.002-3.157 0.676-4.241 1.762s-1.756 2.587-1.754 4.243v3h-1c-0.828 0-1.58 0.337-2.121 0.879s-0.879 1.293-0.879 2.121v7c0 0.828 0.337 1.58 0.879 2.121s1.293 0.879 2.121 0.879h14c0.828 0 1.58-0.337 2.121-0.879s0.879-1.293 0.879-2.121v-7c0-0.828-0.337-1.58-0.879-2.121s-1.293-0.879-2.121-0.879z",_CoreIcons.edit="M12 21h9c0.552 0 1-0.448 1-1s-0.448-1-1-1h-9c-0.552 0-1 0.448-1 1s0.448 1 1 1zM15.793 2.793l-12.5 12.5c-0.122 0.121-0.217 0.28-0.263 0.465l-1 4c-0.039 0.15-0.042 0.318 0 0.485 0.134 0.536 0.677 0.862 1.213 0.728l4-1c0.167-0.041 0.33-0.129 0.465-0.263l12.5-12.5c0.609-0.609 0.914-1.41 0.914-2.207s-0.305-1.598-0.914-2.207-1.411-0.915-2.208-0.915-1.598 0.305-2.207 0.914zM17.207 4.207c0.219-0.219 0.504-0.328 0.793-0.328s0.574 0.109 0.793 0.328 0.328 0.504 0.328 0.793-0.109 0.574-0.328 0.793l-12.304 12.304-2.115 0.529 0.529-2.115z",_CoreIcons.console="M4.707 17.707l6-6c0.391-0.391 0.391-1.024 0-1.414l-6-6c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414l5.293 5.293-5.293 5.293c-0.391 0.391-0.391 1.024 0 1.414s1.024 0.391 1.414 0zM12 20h8c0.552 0 1-0.448 1-1s-0.448-1-1-1h-8c-0.552 0-1 0.448-1 1s0.448 1 1 1z",_CoreIcons.backspace="M21 5c0.276 0 0.525 0.111 0.707 0.293s0.293 0.431 0.293 0.707v12c0 0.276-0.111 0.525-0.293 0.707s-0.431 0.293-0.707 0.293h-12.546l-6.125-7 6.125-7zM21 3h-13c-0.3 0-0.568 0.132-0.753 0.341l-7 8c-0.333 0.38-0.326 0.942 0 1.317l7 8c0.198 0.226 0.474 0.341 0.753 0.342h13c0.828 0 1.58-0.337 2.121-0.879s0.879-1.293 0.879-2.121v-12c0-0.828-0.337-1.58-0.879-2.121s-1.293-0.879-2.121-0.879zM11.293 9.707l2.293 2.293-2.293 2.293c-0.391 0.391-0.391 1.024 0 1.414s1.024 0.391 1.414 0l2.293-2.293 2.293 2.293c0.391 0.391 1.024 0.391 1.414 0s0.391-1.024 0-1.414l-2.293-2.293 2.293-2.293c0.391-0.391 0.391-1.024 0-1.414s-1.024-0.391-1.414 0l-2.293 2.293-2.293-2.293c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414z",_CoreIcons.insert="M12,20C7.59,20 4,16.41 4,12C4,7.59 7.59,4 12,4C16.41,4 20,7.59 20,12C20,16.41 16.41,20 12,20M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2M13,7H11V11H7V13H11V17H13V13H17V11H13V7Z",_CoreIcons.remove="M23 12c0-3.037-1.232-5.789-3.222-7.778s-4.741-3.222-7.778-3.222-5.789 1.232-7.778 3.222-3.222 4.741-3.222 7.778 1.232 5.789 3.222 7.778 4.741 3.222 7.778 3.222 5.789-1.232 7.778-3.222 3.222-4.741 3.222-7.778zM21 12c0 2.486-1.006 4.734-2.636 6.364s-3.878 2.636-6.364 2.636-4.734-1.006-6.364-2.636-2.636-3.878-2.636-6.364 1.006-4.734 2.636-6.364 3.878-2.636 6.364-2.636 4.734 1.006 6.364 2.636 2.636 3.878 2.636 6.364zM8 13h8c0.552 0 1-0.448 1-1s-0.448-1-1-1h-8c-0.552 0-1 0.448-1 1s0.448 1 1 1z",_CoreIcons.trash="M18 7v13c0 0.276-0.111 0.525-0.293 0.707s-0.431 0.293-0.707 0.293h-10c-0.276 0-0.525-0.111-0.707-0.293s-0.293-0.431-0.293-0.707v-13zM17 5v-1c0-0.828-0.337-1.58-0.879-2.121s-1.293-0.879-2.121-0.879h-4c-0.828 0-1.58 0.337-2.121 0.879s-0.879 1.293-0.879 2.121v1h-4c-0.552 0-1 0.448-1 1s0.448 1 1 1h1v13c0 0.828 0.337 1.58 0.879 2.121s1.293 0.879 2.121 0.879h10c0.828 0 1.58-0.337 2.121-0.879s0.879-1.293 0.879-2.121v-13h1c0.552 0 1-0.448 1-1s-0.448-1-1-1zM9 5v-1c0-0.276 0.111-0.525 0.293-0.707s0.431-0.293 0.707-0.293h4c0.276 0 0.525 0.111 0.707 0.293s0.293 0.431 0.293 0.707v1zM9 11v6c0 0.552 0.448 1 1 1s1-0.448 1-1v-6c0-0.552-0.448-1-1-1s-1 0.448-1 1zM13 11v6c0 0.552 0.448 1 1 1s1-0.448 1-1v-6c0-0.552-0.448-1-1-1s-1 0.448-1 1z",_CoreIcons.menu="M3 13h18c0.552 0 1-0.448 1-1s-0.448-1-1-1h-18c-0.552 0-1 0.448-1 1s0.448 1 1 1zM3 7h18c0.552 0 1-0.448 1-1s-0.448-1-1-1h-18c-0.552 0-1 0.448-1 1s0.448 1 1 1zM3 19h18c0.552 0 1-0.448 1-1s-0.448-1-1-1h-18c-0.552 0-1 0.448-1 1s0.448 1 1 1z",_CoreIcons.config="M16 12c0-1.104-0.449-2.106-1.172-2.828s-1.724-1.172-2.828-1.172-2.106 0.449-2.828 1.172-1.172 1.724-1.172 2.828 0.449 2.106 1.172 2.828 1.724 1.172 2.828 1.172 2.106-0.449 2.828-1.172 1.172-1.724 1.172-2.828zM14 12c0 0.553-0.223 1.051-0.586 1.414s-0.861 0.586-1.414 0.586-1.051-0.223-1.414-0.586-0.586-0.861-0.586-1.414 0.223-1.051 0.586-1.414 0.861-0.586 1.414-0.586 1.051 0.223 1.414 0.586 0.586 0.861 0.586 1.414zM20.315 15.404c0.046-0.105 0.112-0.191 0.192-0.257 0.112-0.092 0.251-0.146 0.403-0.147h0.090c0.828 0 1.58-0.337 2.121-0.879s0.879-1.293 0.879-2.121-0.337-1.58-0.879-2.121-1.293-0.879-2.121-0.879h-0.159c-0.11-0.001-0.215-0.028-0.308-0.076-0.127-0.066-0.23-0.172-0.292-0.312-0.003-0.029-0.004-0.059-0.004-0.089-0.024-0.055-0.040-0.111-0.049-0.168 0.020-0.334 0.077-0.454 0.168-0.547l0.062-0.062c0.585-0.586 0.878-1.356 0.877-2.122s-0.294-1.536-0.881-2.122c-0.586-0.585-1.356-0.878-2.122-0.877s-1.536 0.294-2.12 0.879l-0.046 0.046c-0.083 0.080-0.183 0.136-0.288 0.166-0.14 0.039-0.291 0.032-0.438-0.033-0.101-0.044-0.187-0.11-0.253-0.19-0.092-0.112-0.146-0.251-0.147-0.403v-0.090c0-0.828-0.337-1.58-0.879-2.121s-1.293-0.879-2.121-0.879-1.58 0.337-2.121 0.879-0.879 1.293-0.879 2.121v0.159c-0.001 0.11-0.028 0.215-0.076 0.308-0.066 0.127-0.172 0.23-0.312 0.292-0.029 0.003-0.059 0.004-0.089 0.004-0.055 0.024-0.111 0.040-0.168 0.049-0.335-0.021-0.455-0.078-0.548-0.169l-0.062-0.062c-0.586-0.585-1.355-0.878-2.122-0.878s-1.535 0.294-2.122 0.882c-0.585 0.586-0.878 1.355-0.878 2.122s0.294 1.536 0.879 2.12l0.048 0.047c0.080 0.083 0.136 0.183 0.166 0.288 0.039 0.14 0.032 0.291-0.031 0.434-0.006 0.016-0.013 0.034-0.021 0.052-0.041 0.109-0.108 0.203-0.191 0.275-0.11 0.095-0.25 0.153-0.383 0.156h-0.090c-0.828 0-1.58 0.337-2.121 0.879s-0.879 1.294-0.879 2.122 0.337 1.58 0.879 2.121 1.293 0.879 2.121 0.879h0.159c0.11 0.001 0.215 0.028 0.308 0.076 0.128 0.067 0.233 0.174 0.296 0.321 0.024 0.055 0.040 0.111 0.049 0.168-0.020 0.334-0.077 0.454-0.168 0.547l-0.062 0.062c-0.585 0.586-0.878 1.356-0.877 2.122s0.294 1.536 0.881 2.122c0.586 0.585 1.356 0.878 2.122 0.877s1.536-0.294 2.12-0.879l0.047-0.048c0.083-0.080 0.183-0.136 0.288-0.166 0.14-0.039 0.291-0.032 0.434 0.031 0.016 0.006 0.034 0.013 0.052 0.021 0.109 0.041 0.203 0.108 0.275 0.191 0.095 0.11 0.153 0.25 0.156 0.383v0.092c0 0.828 0.337 1.58 0.879 2.121s1.293 0.879 2.121 0.879 1.58-0.337 2.121-0.879 0.879-1.293 0.879-2.121v-0.159c0.001-0.11 0.028-0.215 0.076-0.308 0.067-0.128 0.174-0.233 0.321-0.296 0.055-0.024 0.111-0.040 0.168-0.049 0.334 0.020 0.454 0.077 0.547 0.168l0.062 0.062c0.586 0.585 1.356 0.878 2.122 0.877s1.536-0.294 2.122-0.881c0.585-0.586 0.878-1.356 0.877-2.122s-0.294-1.536-0.879-2.12l-0.048-0.047c-0.080-0.083-0.136-0.183-0.166-0.288-0.039-0.14-0.032-0.291 0.031-0.434zM18.396 9.302c-0.012-0.201-0.038-0.297-0.076-0.382v0.080c0 0.043 0.003 0.084 0.008 0.125 0.021 0.060 0.043 0.119 0.068 0.177 0.004 0.090 0.005 0.091 0.005 0.092 0.249 0.581 0.684 1.030 1.208 1.303 0.371 0.193 0.785 0.298 1.211 0.303h0.18c0.276 0 0.525 0.111 0.707 0.293s0.293 0.431 0.293 0.707-0.111 0.525-0.293 0.707-0.431 0.293-0.707 0.293h-0.090c-0.637 0.003-1.22 0.228-1.675 0.603-0.323 0.266-0.581 0.607-0.75 0.993-0.257 0.582-0.288 1.21-0.127 1.782 0.119 0.423 0.341 0.814 0.652 1.136l0.072 0.073c0.196 0.196 0.294 0.45 0.294 0.707s-0.097 0.512-0.292 0.707c-0.197 0.197-0.451 0.295-0.709 0.295s-0.512-0.097-0.707-0.292l-0.061-0.061c-0.463-0.453-1.040-0.702-1.632-0.752-0.437-0.037-0.882 0.034-1.293 0.212-0.578 0.248-1.027 0.683-1.3 1.206-0.193 0.371-0.298 0.785-0.303 1.211v0.181c0 0.276-0.111 0.525-0.293 0.707s-0.43 0.292-0.706 0.292-0.525-0.111-0.707-0.293-0.293-0.431-0.293-0.707v-0.090c-0.015-0.66-0.255-1.242-0.644-1.692-0.284-0.328-0.646-0.585-1.058-0.744-0.575-0.247-1.193-0.274-1.756-0.116-0.423 0.119-0.814 0.341-1.136 0.652l-0.073 0.072c-0.196 0.196-0.45 0.294-0.707 0.294s-0.512-0.097-0.707-0.292c-0.197-0.197-0.295-0.451-0.295-0.709s0.097-0.512 0.292-0.707l0.061-0.061c0.453-0.463 0.702-1.040 0.752-1.632 0.037-0.437-0.034-0.882-0.212-1.293-0.248-0.578-0.683-1.027-1.206-1.3-0.371-0.193-0.785-0.298-1.211-0.303l-0.18 0.001c-0.276 0-0.525-0.111-0.707-0.293s-0.293-0.431-0.293-0.707 0.111-0.525 0.293-0.707 0.431-0.293 0.707-0.293h0.090c0.66-0.015 1.242-0.255 1.692-0.644 0.328-0.284 0.585-0.646 0.744-1.058 0.247-0.575 0.274-1.193 0.116-1.756-0.119-0.423-0.341-0.814-0.652-1.136l-0.073-0.073c-0.196-0.196-0.294-0.45-0.294-0.707s0.097-0.512 0.292-0.707c0.197-0.197 0.451-0.295 0.709-0.295s0.512 0.097 0.707 0.292l0.061 0.061c0.463 0.453 1.040 0.702 1.632 0.752 0.37 0.032 0.745-0.014 1.101-0.137 0.096-0.012 0.186-0.036 0.266-0.072-0.031 0.001-0.061 0.003-0.089 0.004-0.201 0.012-0.297 0.038-0.382 0.076h0.080c0.043 0 0.084-0.003 0.125-0.008 0.060-0.021 0.119-0.043 0.177-0.068 0.090-0.004 0.091-0.005 0.092-0.005 0.581-0.249 1.030-0.684 1.303-1.208 0.193-0.37 0.298-0.785 0.303-1.21v-0.181c0-0.276 0.111-0.525 0.293-0.707s0.431-0.293 0.707-0.293 0.525 0.111 0.707 0.293 0.293 0.431 0.293 0.707v0.090c0.003 0.637 0.228 1.22 0.603 1.675 0.266 0.323 0.607 0.581 0.996 0.751 0.578 0.255 1.206 0.286 1.778 0.125 0.423-0.119 0.814-0.341 1.136-0.652l0.073-0.072c0.196-0.196 0.45-0.294 0.707-0.294s0.512 0.097 0.707 0.292c0.197 0.197 0.295 0.451 0.295 0.709s-0.097 0.512-0.292 0.707l-0.061 0.061c-0.453 0.463-0.702 1.040-0.752 1.632-0.032 0.37 0.014 0.745 0.137 1.101 0.012 0.095 0.037 0.185 0.072 0.266-0.001-0.032-0.002-0.062-0.004-0.089z",_CoreIcons.settings="M5 10v-7c0-0.552-0.448-1-1-1s-1 0.448-1 1v7c0 0.552 0.448 1 1 1s1-0.448 1-1zM13 21v-9c0-0.552-0.448-1-1-1s-1 0.448-1 1v9c0 0.552 0.448 1 1 1s1-0.448 1-1zM21 12v-9c0-0.552-0.448-1-1-1s-1 0.448-1 1v9c0 0.552 0.448 1 1 1s1-0.448 1-1zM1 15h2v6c0 0.552 0.448 1 1 1s1-0.448 1-1v-6h2c0.552 0 1-0.448 1-1s-0.448-1-1-1h-6c-0.552 0-1 0.448-1 1s0.448 1 1 1zM9 9h6c0.552 0 1-0.448 1-1s-0.448-1-1-1h-2v-4c0-0.552-0.448-1-1-1s-1 0.448-1 1v4h-2c-0.552 0-1 0.448-1 1s0.448 1 1 1zM17 17h2v4c0 0.552 0.448 1 1 1s1-0.448 1-1v-4h2c0.552 0 1-0.448 1-1s-0.448-1-1-1h-6c-0.552 0-1 0.448-1 1s0.448 1 1 1z",_CoreIcons.notAllowed="M23 12c0-3.037-1.232-5.789-3.222-7.778s-4.741-3.222-7.778-3.222-5.789 1.232-7.778 3.222-3.222 4.741-3.222 7.778 1.232 5.789 3.222 7.778 4.741 3.222 7.778 3.222 5.789-1.232 7.778-3.222 3.222-4.741 3.222-7.778zM19.032 17.618l-12.65-12.65c1.54-1.232 3.493-1.968 5.618-1.968 2.486 0 4.734 1.006 6.364 2.636s2.636 3.878 2.636 6.364c0 2.125-0.736 4.078-1.968 5.618zM4.968 6.382l12.65 12.65c-1.54 1.232-3.493 1.968-5.618 1.968-2.486 0-4.734-1.006-6.364-2.636s-2.636-3.878-2.636-6.364c0-2.125 0.736-4.078 1.968-5.618z",_CoreIcons.tick="M19.293 5.293l-10.293 10.293-4.293-4.293c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414l5 5c0.391 0.391 1.024 0.391 1.414 0l11-11c0.391-0.391 0.391-1.024 0-1.414s-1.024-0.391-1.414 0z",_CoreIcons.target="M23 12c0-3.037-1.232-5.789-3.222-7.778s-4.741-3.222-7.778-3.222-5.789 1.232-7.778 3.222-3.222 4.741-3.222 7.778 1.232 5.789 3.222 7.778 4.741 3.222 7.778 3.222 5.789-1.232 7.778-3.222 3.222-4.741 3.222-7.778zM21 12c0 2.486-1.006 4.734-2.636 6.364s-3.878 2.636-6.364 2.636-4.734-1.006-6.364-2.636-2.636-3.878-2.636-6.364 1.006-4.734 2.636-6.364 3.878-2.636 6.364-2.636 4.734 1.006 6.364 2.636 2.636 3.878 2.636 6.364zM19 12c0-1.933-0.785-3.684-2.050-4.95s-3.017-2.050-4.95-2.050-3.684 0.785-4.95 2.050-2.050 3.017-2.050 4.95 0.785 3.684 2.050 4.95 3.017 2.050 4.95 2.050 3.684-0.785 4.95-2.050 2.050-3.017 2.050-4.95zM17 12c0 1.381-0.559 2.63-1.464 3.536s-2.155 1.464-3.536 1.464-2.63-0.559-3.536-1.464-1.464-2.155-1.464-3.536 0.559-2.63 1.464-3.536 2.155-1.464 3.536-1.464 2.63 0.559 3.536 1.464 1.464 2.155 1.464 3.536zM15 12c0-0.828-0.337-1.58-0.879-2.121s-1.293-0.879-2.121-0.879-1.58 0.337-2.121 0.879-0.879 1.293-0.879 2.121 0.337 1.58 0.879 2.121 1.293 0.879 2.121 0.879 1.58-0.337 2.121-0.879 0.879-1.293 0.879-2.121zM13 12c0 0.276-0.111 0.525-0.293 0.707s-0.431 0.293-0.707 0.293-0.525-0.111-0.707-0.293-0.293-0.431-0.293-0.707 0.111-0.525 0.293-0.707 0.431-0.293 0.707-0.293 0.525 0.111 0.707 0.293 0.293 0.431 0.293 0.707z",_CoreIcons.sun="M18 12c0-1.657-0.673-3.158-1.757-4.243s-2.586-1.757-4.243-1.757-3.158 0.673-4.243 1.757-1.757 2.586-1.757 4.243 0.673 3.158 1.757 4.243 2.586 1.757 4.243 1.757 3.158-0.673 4.243-1.757 1.757-2.586 1.757-4.243zM16 12c0 1.105-0.447 2.103-1.172 2.828s-1.723 1.172-2.828 1.172-2.103-0.447-2.828-1.172-1.172-1.723-1.172-2.828 0.447-2.103 1.172-2.828 1.723-1.172 2.828-1.172 2.103 0.447 2.828 1.172 1.172 1.723 1.172 2.828zM11 1v2c0 0.552 0.448 1 1 1s1-0.448 1-1v-2c0-0.552-0.448-1-1-1s-1 0.448-1 1zM11 21v2c0 0.552 0.448 1 1 1s1-0.448 1-1v-2c0-0.552-0.448-1-1-1s-1 0.448-1 1zM3.513 4.927l1.42 1.42c0.391 0.391 1.024 0.391 1.414 0s0.391-1.024 0-1.414l-1.42-1.42c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414zM17.653 19.067l1.42 1.42c0.391 0.391 1.024 0.391 1.414 0s0.391-1.024 0-1.414l-1.42-1.42c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414zM1 13h2c0.552 0 1-0.448 1-1s-0.448-1-1-1h-2c-0.552 0-1 0.448-1 1s0.448 1 1 1zM21 13h2c0.552 0 1-0.448 1-1s-0.448-1-1-1h-2c-0.552 0-1 0.448-1 1s0.448 1 1 1zM4.927 20.487l1.42-1.42c0.391-0.391 0.391-1.024 0-1.414s-1.024-0.391-1.414 0l-1.42 1.42c-0.391 0.391-0.391 1.024 0 1.414s1.024 0.391 1.414 0zM19.067 6.347l1.42-1.42c0.391-0.391 0.391-1.024 0-1.414s-1.024-0.391-1.414 0l-1.42 1.42c-0.391 0.391-0.391 1.024 0 1.414s1.024 0.391 1.414 0z",_CoreIcons.moon="M21.996 12.882c0.022-0.233-0.038-0.476-0.188-0.681-0.325-0.446-0.951-0.544-1.397-0.219-0.95 0.693-2.060 1.086-3.188 1.162-1.368 0.092-2.765-0.283-3.95-1.158-1.333-0.985-2.139-2.415-2.367-3.935s0.124-3.124 1.109-4.456c0.142-0.191 0.216-0.435 0.191-0.691-0.053-0.55-0.542-0.952-1.092-0.898-2.258 0.22-4.314 1.18-5.895 2.651-1.736 1.615-2.902 3.847-3.137 6.386-0.254 2.749 0.631 5.343 2.266 7.311s4.022 3.313 6.772 3.567 5.343-0.631 7.311-2.266 3.313-4.022 3.567-6.772zM19.567 14.674c-0.49 1.363-1.335 2.543-2.416 3.441-1.576 1.309-3.648 2.016-5.848 1.813s-4.108-1.278-5.417-2.854-2.016-3.648-1.813-5.848c0.187-2.032 1.117-3.814 2.507-5.106 0.782-0.728 1.71-1.3 2.731-1.672-0.456 1.264-0.577 2.606-0.384 3.899 0.303 2.023 1.38 3.934 3.156 5.247 1.578 1.167 3.448 1.668 5.272 1.545 0.752-0.050 1.496-0.207 2.21-0.465z",_CoreIcons.login="M15 4h4c0.276 0 0.525 0.111 0.707 0.293s0.293 0.431 0.293 0.707v14c0 0.276-0.111 0.525-0.293 0.707s-0.431 0.293-0.707 0.293h-4c-0.552 0-1 0.448-1 1s0.448 1 1 1h4c0.828 0 1.58-0.337 2.121-0.879s0.879-1.293 0.879-2.121v-14c0-0.828-0.337-1.58-0.879-2.121s-1.293-0.879-2.121-0.879h-4c-0.552 0-1 0.448-1 1s0.448 1 1 1zM12.586 11h-9.586c-0.552 0-1 0.448-1 1s0.448 1 1 1h9.586l-3.293 3.293c-0.391 0.391-0.391 1.024 0 1.414s1.024 0.391 1.414 0l5-5c0.096-0.096 0.168-0.206 0.217-0.324s0.076-0.247 0.076-0.383c0-0.13-0.025-0.261-0.076-0.383-0.049-0.118-0.121-0.228-0.217-0.324l-5-5c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414z",_CoreIcons.logout="M9 20h-4c-0.276 0-0.525-0.111-0.707-0.293s-0.293-0.431-0.293-0.707v-14c0-0.276 0.111-0.525 0.293-0.707s0.431-0.293 0.707-0.293h4c0.552 0 1-0.448 1-1s-0.448-1-1-1h-4c-0.828 0-1.58 0.337-2.121 0.879s-0.879 1.293-0.879 2.121v14c0 0.828 0.337 1.58 0.879 2.121s1.293 0.879 2.121 0.879h4c0.552 0 1-0.448 1-1s-0.448-1-1-1zM18.586 11h-9.586c-0.552 0-1 0.448-1 1s0.448 1 1 1h9.586l-3.293 3.293c-0.391 0.391-0.391 1.024 0 1.414s1.024 0.391 1.414 0l5-5c0.092-0.092 0.166-0.202 0.217-0.324 0.15-0.362 0.078-0.795-0.217-1.090l-5-5c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414z",_CoreIcons.phone="M23 16.92c0.016-0.714-0.236-1.404-0.673-1.943-0.46-0.566-1.129-0.967-1.925-1.080-0.8-0.098-1.695-0.314-2.586-0.646-0.433-0.159-0.893-0.218-1.344-0.174-0.663 0.064-1.307 0.349-1.819 0.855l-0.72 0.72c-1.77-1.117-3.36-2.667-4.583-4.589l0.726-0.726c0.322-0.33 0.563-0.726 0.707-1.156 0.212-0.632 0.214-1.336-0.039-2.011-0.289-0.753-0.518-1.644-0.644-2.595-0.104-0.714-0.456-1.345-0.963-1.804-0.539-0.486-1.256-0.779-2.027-0.771h-2.996c-0.088 0-0.182 0.004-0.273 0.012-0.824 0.075-1.542 0.478-2.033 1.066s-0.758 1.367-0.683 2.199c0.3 3.076 1.365 6.243 3.216 9.102 1.502 2.413 3.648 4.623 6.298 6.306 2.568 1.697 5.684 2.862 9.086 3.231 0.092 0.009 0.191 0.013 0.288 0.013 0.828-0.003 1.578-0.343 2.118-0.887s0.873-1.297 0.87-2.121zM21 16.92v3c0.001 0.28-0.109 0.53-0.29 0.712s-0.429 0.295-0.706 0.296c-3.149-0.336-5.961-1.391-8.263-2.912-2.428-1.543-4.359-3.537-5.702-5.694-1.697-2.62-2.655-5.481-2.924-8.238-0.024-0.268 0.064-0.526 0.229-0.724s0.403-0.33 0.678-0.355l3.088-0.005c0.271-0.003 0.507 0.094 0.687 0.256 0.17 0.154 0.288 0.366 0.323 0.608 0.142 1.072 0.408 2.117 0.757 3.025 0.081 0.216 0.080 0.447 0.010 0.658-0.049 0.145-0.131 0.281-0.242 0.395l-1.262 1.261c-0.324 0.324-0.379 0.814-0.162 1.201 1.584 2.785 3.839 4.957 6.381 6.378 0.397 0.222 0.882 0.144 1.195-0.166l1.27-1.27c0.166-0.164 0.377-0.257 0.598-0.279 0.152-0.015 0.31 0.005 0.459 0.060 1.022 0.381 2.070 0.636 3.034 0.754 0.241 0.034 0.462 0.166 0.615 0.355 0.147 0.181 0.231 0.412 0.226 0.682z",_CoreIcons.message="M22 15v-10c0-0.828-0.337-1.58-0.879-2.121s-1.293-0.879-2.121-0.879h-14c-0.828 0-1.58 0.337-2.121 0.879s-0.879 1.293-0.879 2.121v16c0 0.256 0.098 0.512 0.293 0.707 0.391 0.391 1.024 0.391 1.414 0l3.707-3.707h11.586c0.828 0 1.58-0.337 2.121-0.879s0.879-1.293 0.879-2.121zM20 15c0 0.276-0.111 0.525-0.293 0.707s-0.431 0.293-0.707 0.293h-12c-0.276 0-0.526 0.112-0.707 0.293l-2.293 2.293v-13.586c0-0.276 0.111-0.525 0.293-0.707s0.431-0.293 0.707-0.293h14c0.276 0 0.525 0.111 0.707 0.293s0.293 0.431 0.293 0.707z",_CoreIcons.mail="M3 7.921l8.427 5.899c0.34 0.235 0.795 0.246 1.147 0l8.426-5.899v10.079c0 0.272-0.11 0.521-0.295 0.705s-0.433 0.295-0.705 0.295h-16c-0.272 0-0.521-0.11-0.705-0.295s-0.295-0.433-0.295-0.705zM1 5.983c0 0.010 0 0.020 0 0.030v11.987c0 0.828 0.34 1.579 0.88 2.12s1.292 0.88 2.12 0.88h16c0.828 0 1.579-0.34 2.12-0.88s0.88-1.292 0.88-2.12v-11.988c0-0.010 0-0.020 0-0.030-0.005-0.821-0.343-1.565-0.88-2.102-0.541-0.54-1.292-0.88-2.12-0.88h-16c-0.828 0-1.579 0.34-2.12 0.88-0.537 0.537-0.875 1.281-0.88 2.103zM20.894 5.554l-8.894 6.225-8.894-6.225c0.048-0.096 0.112-0.183 0.188-0.259 0.185-0.185 0.434-0.295 0.706-0.295h16c0.272 0 0.521 0.11 0.705 0.295 0.076 0.076 0.14 0.164 0.188 0.259z",_CoreIcons.clip="M20.733 10.343l-9.19 9.19c-0.977 0.977-2.256 1.465-3.538 1.465s-2.561-0.488-3.538-1.465-1.465-2.256-1.465-3.538 0.488-2.561 1.465-3.538l9.19-9.19c0.586-0.586 1.353-0.879 2.123-0.879s1.536 0.293 2.123 0.879 0.879 1.353 0.879 2.123-0.293 1.536-0.879 2.123l-9.2 9.19c-0.196 0.196-0.451 0.294-0.708 0.294s-0.512-0.098-0.708-0.293-0.293-0.45-0.293-0.708 0.098-0.512 0.293-0.708l8.49-8.48c0.391-0.39 0.391-1.023 0.001-1.414s-1.023-0.391-1.414-0.001l-8.49 8.48c-0.586 0.586-0.879 1.356-0.879 2.122s0.293 1.536 0.879 2.122 1.356 0.879 2.122 0.879 1.536-0.293 2.122-0.879l9.2-9.19c0.977-0.977 1.465-2.258 1.465-3.537s-0.489-2.561-1.465-3.537-2.258-1.465-3.537-1.465-2.561 0.489-3.537 1.465l-9.19 9.19c-1.367 1.367-2.051 3.161-2.051 4.952s0.684 3.585 2.051 4.952 3.161 2.051 4.952 2.051 3.585-0.684 4.952-2.051l9.19-9.19c0.391-0.391 0.391-1.024 0-1.414s-1.024-0.391-1.414 0z",_CoreIcons.map="M7 3.723v13.697l-5 2.857v-13.697zM17 20.277v-13.697l5-2.857v13.696zM15.535 22.885c0.082 0.043 0.17 0.075 0.263 0.094 0.033 0.007 0.067 0.012 0.101 0.015s0.068 0.005 0.102 0.005c-0.001 0.001-0.001 0.001-0.001 0.001s0 0 0.001 0c0.173 0 0.344-0.046 0.496-0.132l0.015-0.009 6.985-3.991c0.32-0.183 0.501-0.518 0.503-0.868v-16c0-0.552-0.448-1-1-1-0.183 0-0.354 0.049-0.496 0.132l-6.535 3.734-7.503-3.752c-0.083-0.042-0.171-0.075-0.264-0.094-0.034-0.007-0.067-0.012-0.101-0.015s-0.068-0.005-0.102-0.005c0.001 0 0.001 0 0.001 0s0 0-0.001 0c-0.173 0-0.344 0.046-0.495 0.132l-0.015 0.008-6.985 3.992c-0.321 0.183-0.502 0.518-0.504 0.868v16c0 0.552 0.448 1 1 1 0.183 0 0.354-0.049 0.496-0.132l6.535-3.734zM15 6.618v13.764l-6-3v-13.764z",_CoreIcons.mapPin="M22 10c0-2.761-1.12-5.263-2.929-7.071s-4.31-2.929-7.071-2.929-5.263 1.12-7.071 2.929-2.929 4.31-2.929 7.071c0 0.569 0.053 1.128 0.15 1.676 0.274 1.548 0.899 3.004 1.682 4.32 2.732 4.591 7.613 7.836 7.613 7.836 0.331 0.217 0.765 0.229 1.109 0 0 0 4.882-3.245 7.613-7.836 0.783-1.316 1.408-2.772 1.682-4.32 0.098-0.548 0.151-1.107 0.151-1.676zM20 10c0 0.444-0.041 0.887-0.119 1.328-0.221 1.25-0.737 2.478-1.432 3.646-1.912 3.214-5.036 5.747-6.369 6.74-1.398-0.916-4.588-3.477-6.53-6.74-0.695-1.168-1.211-2.396-1.432-3.646-0.077-0.441-0.118-0.884-0.118-1.328 0-2.209 0.894-4.208 2.343-5.657s3.448-2.343 5.657-2.343 4.208 0.894 5.657 2.343 2.343 3.448 2.343 5.657zM16 10c0-1.104-0.449-2.106-1.172-2.828s-1.724-1.172-2.828-1.172-2.106 0.449-2.828 1.172-1.172 1.724-1.172 2.828 0.449 2.106 1.172 2.828 1.724 1.172 2.828 1.172 2.106-0.449 2.828-1.172 1.172-1.724 1.172-2.828zM14 10c0 0.553-0.223 1.051-0.586 1.414s-0.861 0.586-1.414 0.586-1.051-0.223-1.414-0.586-0.586-0.861-0.586-1.414 0.223-1.051 0.586-1.414 0.861-0.586 1.414-0.586 1.051 0.223 1.414 0.586 0.586 0.861 0.586 1.414z",_CoreIcons.thumbDown="M11 15c0-0.552-0.448-1-1-1h-5.679c-0.065-0.002-0.153-0.011-0.153-0.011-0.273-0.041-0.502-0.188-0.655-0.396s-0.225-0.47-0.184-0.742l1.38-8.998c0.037-0.239 0.156-0.448 0.325-0.6 0.179-0.161 0.415-0.256 0.686-0.253h10.28v9.788l-3.608 8.118c-0.307-0.098-0.582-0.268-0.806-0.492-0.363-0.363-0.586-0.861-0.586-1.414zM9 16v3c0 1.104 0.449 2.106 1.172 2.828s1.724 1.172 2.828 1.172c0.405 0 0.754-0.241 0.914-0.594l4-9c0.060-0.134 0.087-0.275 0.086-0.406v-11c0-0.552-0.448-1-1-1h-11.28c-0.767-0.009-1.482 0.281-2.021 0.763-0.505 0.452-0.857 1.076-0.967 1.783l-1.38 9.002c-0.125 0.82 0.096 1.614 0.55 2.231s1.147 1.063 1.965 1.187c0.165 0.025 0.333 0.037 0.492 0.034zM17 3h2.67c0.361-0.006 0.674 0.119 0.912 0.332 0.213 0.191 0.364 0.45 0.418 0.746v6.787c-0.037 0.34-0.208 0.63-0.455 0.833-0.235 0.194-0.537 0.306-0.861 0.301l-2.684 0.001c-0.552 0-1 0.448-1 1s0.448 1 1 1h2.656c0.81 0.012 1.569-0.27 2.16-0.756 0.622-0.511 1.059-1.251 1.176-2.11 0.005-0.040 0.008-0.087 0.008-0.134v-7c0-0.042-0.003-0.089-0.009-0.137-0.111-0.803-0.505-1.51-1.075-2.020-0.6-0.537-1.397-0.858-2.246-0.842h-2.67c-0.552 0-1 0.448-1 1s0.448 1 1 1z",_CoreIcons.thumbUp="M13 9c0 0.552 0.448 1 1 1h5.679c0.065 0.002 0.153 0.011 0.153 0.011 0.273 0.041 0.502 0.188 0.655 0.396s0.225 0.47 0.184 0.742l-1.38 8.998c-0.037 0.239-0.156 0.448-0.325 0.6-0.18 0.161-0.415 0.256-0.686 0.253h-10.28v-9.788l3.608-8.118c0.307 0.098 0.582 0.268 0.806 0.492 0.363 0.363 0.586 0.861 0.586 1.414zM15 8v-3c0-1.104-0.449-2.106-1.172-2.828s-1.724-1.172-2.828-1.172c-0.405 0-0.754 0.241-0.914 0.594l-4 9c-0.060 0.134-0.087 0.275-0.086 0.406v11c0 0.552 0.448 1 1 1h11.28c0.767 0.009 1.482-0.281 2.021-0.763 0.505-0.452 0.857-1.076 0.967-1.783l1.38-9.002c0.125-0.82-0.096-1.614-0.55-2.231s-1.147-1.063-1.965-1.187c-0.165-0.025-0.333-0.037-0.492-0.034zM7 21h-3c-0.276 0-0.525-0.111-0.707-0.293s-0.293-0.431-0.293-0.707v-7c0-0.276 0.111-0.525 0.293-0.707s0.431-0.293 0.707-0.293h3c0.552 0 1-0.448 1-1s-0.448-1-1-1h-3c-0.828 0-1.58 0.337-2.121 0.879s-0.879 1.293-0.879 2.121v7c0 0.828 0.337 1.58 0.879 2.121s1.293 0.879 2.121 0.879h3c0.552 0 1-0.448 1-1s-0.448-1-1-1z",_CoreIcons.spinner="M24 12c-0.030-1.567-0.37-3.129-0.998-4.558-0.626-1.43-1.534-2.725-2.649-3.795s-2.436-1.918-3.867-2.476c-1.43-0.561-2.967-0.829-4.486-0.796-1.519 0.030-3.031 0.36-4.414 0.969-1.384 0.607-2.638 1.488-3.673 2.568s-1.855 2.36-2.395 3.745c-0.542 1.384-0.8 2.872-0.767 4.342 0.030 1.471 0.351 2.933 0.941 4.27 0.588 1.338 1.441 2.551 2.487 3.552s2.284 1.793 3.624 2.314c1.339 0.523 2.776 0.771 4.199 0.739 1.423-0.030 2.835-0.341 4.127-0.912 1.293-0.569 2.464-1.394 3.43-2.406s1.731-2.209 2.233-3.502c0.305-0.784 0.513-1.603 0.622-2.433 0.029 0.002 0.059 0.003 0.088 0.003 0.828 0 1.5-0.672 1.5-1.5 0-0.042-0.002-0.084-0.006-0.125h0.006zM21.617 15.983c-0.55 1.247-1.347 2.377-2.324 3.309s-2.133 1.668-3.381 2.151c-1.248 0.485-2.585 0.714-3.911 0.682-1.327-0.030-2.639-0.322-3.84-0.855-1.201-0.531-2.289-1.301-3.187-2.243s-1.606-2.057-2.070-3.259c-0.466-1.202-0.685-2.489-0.653-3.768 0.031-1.279 0.312-2.541 0.826-3.696 0.512-1.155 1.254-2.202 2.162-3.066s1.981-1.544 3.138-1.989c1.156-0.447 2.394-0.656 3.624-0.624 1.23 0.031 2.443 0.303 3.552 0.798 1.11 0.493 2.115 1.207 2.944 2.081s1.481 1.905 1.908 3.016c0.428 1.111 0.628 2.298 0.596 3.48h0.006c-0.003 0.041-0.006 0.083-0.006 0.125 0 0.774 0.586 1.41 1.338 1.491-0.146 0.816-0.387 1.613-0.721 2.367z",_CoreIcons.file="M17.586 7h-2.586v-2.586zM20.707 7.293l-6-6c-0.092-0.092-0.202-0.166-0.324-0.217s-0.253-0.076-0.383-0.076h-8c-0.828 0-1.58 0.337-2.121 0.879s-0.879 1.293-0.879 2.121v16c0 0.828 0.337 1.58 0.879 2.121s1.293 0.879 2.121 0.879h12c0.828 0 1.58-0.337 2.121-0.879s0.879-1.293 0.879-2.121v-12c0-0.276-0.112-0.526-0.293-0.707zM13 3v5c0 0.552 0.448 1 1 1h5v11c0 0.276-0.111 0.525-0.293 0.707s-0.431 0.293-0.707 0.293h-12c-0.276 0-0.525-0.111-0.707-0.293s-0.293-0.431-0.293-0.707v-16c0-0.276 0.111-0.525 0.293-0.707s0.431-0.293 0.707-0.293zM16 12h-8c-0.552 0-1 0.448-1 1s0.448 1 1 1h8c0.552 0 1-0.448 1-1s-0.448-1-1-1zM16 16h-8c-0.552 0-1 0.448-1 1s0.448 1 1 1h8c0.552 0 1-0.448 1-1s-0.448-1-1-1zM10 8h-2c-0.552 0-1 0.448-1 1s0.448 1 1 1h2c0.552 0 1-0.448 1-1s-0.448-1-1-1z",_CoreIcons.image="M5 2c-0.828 0-1.58 0.337-2.121 0.879s-0.879 1.293-0.879 2.121v14c0 0.828 0.337 1.58 0.879 2.121s1.293 0.879 2.121 0.879h14c0.828 0 1.58-0.337 2.121-0.879s0.879-1.293 0.879-2.121v-14c0-0.828-0.337-1.58-0.879-2.121s-1.293-0.879-2.121-0.879zM11 8.5c0-0.69-0.281-1.316-0.732-1.768s-1.078-0.732-1.768-0.732-1.316 0.281-1.768 0.732-0.732 1.078-0.732 1.768 0.281 1.316 0.732 1.768 1.078 0.732 1.768 0.732 1.316-0.281 1.768-0.732 0.732-1.078 0.732-1.768zM9 8.5c0 0.138-0.055 0.262-0.146 0.354s-0.216 0.146-0.354 0.146-0.262-0.055-0.354-0.146-0.146-0.216-0.146-0.354 0.055-0.262 0.146-0.354 0.216-0.146 0.354-0.146 0.262 0.055 0.354 0.146 0.146 0.216 0.146 0.354zM7.414 20l8.586-8.586 4 4v3.586c0 0.276-0.111 0.525-0.293 0.707s-0.431 0.293-0.707 0.293zM20 12.586l-3.293-3.293c-0.391-0.391-1.024-0.391-1.414 0l-10.644 10.644c-0.135-0.050-0.255-0.129-0.356-0.23-0.182-0.182-0.293-0.431-0.293-0.707v-14c0-0.276 0.111-0.525 0.293-0.707s0.431-0.293 0.707-0.293h14c0.276 0 0.525 0.111 0.707 0.293s0.293 0.431 0.293 0.707z",_CoreIcons.audio="M8 18c0 0.553-0.223 1.051-0.586 1.414s-0.861 0.586-1.414 0.586-1.051-0.223-1.414-0.586-0.586-0.861-0.586-1.414 0.223-1.051 0.586-1.414 0.861-0.586 1.414-0.586 1.051 0.223 1.414 0.586 0.586 0.861 0.586 1.414zM22 16v-13c0-0.050-0.004-0.107-0.014-0.164-0.091-0.545-0.606-0.913-1.151-0.822l-12 2c-0.476 0.081-0.835 0.492-0.835 0.986v9.535c-0.588-0.34-1.272-0.535-2-0.535-1.104 0-2.106 0.449-2.828 1.172s-1.172 1.724-1.172 2.828 0.449 2.106 1.172 2.828 1.724 1.172 2.828 1.172 2.106-0.449 2.828-1.172 1.172-1.724 1.172-2.828v-12.153l10-1.667v8.355c-0.588-0.34-1.272-0.535-2-0.535-1.104 0-2.106 0.449-2.828 1.172s-1.172 1.724-1.172 2.828 0.449 2.106 1.172 2.828 1.724 1.172 2.828 1.172 2.106-0.449 2.828-1.172 1.172-1.724 1.172-2.828zM20 16c0 0.553-0.223 1.051-0.586 1.414s-0.861 0.586-1.414 0.586-1.051-0.223-1.414-0.586-0.586-0.861-0.586-1.414 0.223-1.051 0.586-1.414 0.861-0.586 1.414-0.586 1.051 0.223 1.414 0.586 0.586 0.861 0.586 1.414z",_CoreIcons.video="M16 11h-8v-8h8zM8 13h8v8h-8zM6 6h-3v-1.82c0-0.326 0.131-0.62 0.346-0.834s0.508-0.346 0.834-0.346h1.82zM3 8h3v3h-3zM6 16h-3v-3h3zM3 18h3v3h-1.82c-0.326 0-0.62-0.131-0.834-0.346s-0.346-0.508-0.346-0.834zM21 16h-3v-3h3zM18 18h3v1.82c0 0.326-0.131 0.62-0.346 0.834s-0.508 0.346-0.834 0.346h-1.82zM21 6h-3v-3h1.82c0.326 0 0.62 0.131 0.834 0.346s0.346 0.508 0.346 0.834zM23 7v-2.82c0-0.878-0.357-1.674-0.931-2.249s-1.371-0.931-2.249-0.931h-15.64c-0.878 0-1.674 0.357-2.249 0.931s-0.931 1.371-0.931 2.249v15.64c0 0.878 0.357 1.674 0.931 2.249s1.371 0.931 2.249 0.931h15.64c0.878 0 1.674-0.357 2.249-0.931s0.931-1.371 0.931-2.249zM18 8h3v3h-3z",_CoreIcons.mic="M12 2c0.553 0 1.051 0.223 1.414 0.586s0.586 0.861 0.586 1.414v8c0 0.553-0.223 1.051-0.586 1.414s-0.861 0.586-1.414 0.586-1.051-0.223-1.414-0.586-0.586-0.861-0.586-1.414v-8c0-0.553 0.223-1.051 0.586-1.414s0.861-0.586 1.414-0.586zM12 0c-1.104 0-2.106 0.449-2.828 1.172s-1.172 1.724-1.172 2.828v8c0 1.104 0.449 2.106 1.172 2.828s1.724 1.172 2.828 1.172 2.106-0.449 2.828-1.172 1.172-1.724 1.172-2.828v-8c0-1.104-0.449-2.106-1.172-2.828s-1.724-1.172-2.828-1.172zM8 24h8c0.552 0 1-0.448 1-1s-0.448-1-1-1h-3v-2.062c1.809-0.226 3.432-1.056 4.657-2.281 1.446-1.447 2.343-3.448 2.343-5.657v-2c0-0.552-0.448-1-1-1s-1 0.448-1 1v2c0 1.657-0.67 3.156-1.757 4.243s-2.586 1.757-4.243 1.757-3.156-0.67-4.243-1.757-1.757-2.586-1.757-4.243v-2c0-0.552-0.448-1-1-1s-1 0.448-1 1v2c0 2.209 0.897 4.21 2.343 5.657 1.225 1.225 2.847 2.055 4.657 2.281v2.062h-3c-0.552 0-1 0.448-1 1s0.448 1 1 1z",_CoreIcons.play="M5.541 2.159c-0.153-0.1-0.34-0.159-0.541-0.159-0.552 0-1 0.448-1 1v18c-0.001 0.182 0.050 0.372 0.159 0.541 0.299 0.465 0.917 0.599 1.382 0.3l14-9c0.114-0.072 0.219-0.174 0.3-0.3 0.299-0.465 0.164-1.083-0.3-1.382zM6 4.832l11.151 7.168-11.151 7.168z",_CoreIcons.pause="M6 3c-0.552 0-1 0.448-1 1v16c0 0.552 0.448 1 1 1h4c0.552 0 1-0.448 1-1v-16c0-0.552-0.448-1-1-1zM7 5h2v14h-2zM14 3c-0.552 0-1 0.448-1 1v16c0 0.552 0.448 1 1 1h4c0.552 0 1-0.448 1-1v-16c0-0.552-0.448-1-1-1zM15 5h2v14h-2z",_CoreIcons.stop="M18,18H6V6H18V18Z",_CoreIcons.volumeOn="M10 7.081v9.839l-3.375-2.7c-0.17-0.137-0.388-0.22-0.625-0.22h-3v-4h3c0.218 0.001 0.439-0.071 0.625-0.219zM10.375 4.219l-4.726 3.781h-3.649c-0.552 0-1 0.448-1 1v6c0 0.552 0.448 1 1 1h3.649l4.726 3.781c0.431 0.345 1.061 0.275 1.406-0.156 0.148-0.185 0.22-0.407 0.219-0.625v-14c0-0.552-0.448-1-1-1-0.237 0-0.455 0.083-0.625 0.219zM18.363 5.637c1.757 1.758 2.635 4.059 2.635 6.364 0 2.304-0.878 4.605-2.635 6.362-0.39 0.391-0.39 1.024 0 1.414s1.024 0.39 1.414 0c2.147-2.147 3.22-4.963 3.221-7.776s-1.074-5.63-3.221-7.778c-0.39-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414zM14.833 9.167c0.781 0.781 1.171 1.803 1.171 2.828s-0.39 2.047-1.171 2.828c-0.39 0.391-0.39 1.024 0 1.414s1.024 0.39 1.414 0c1.171-1.171 1.757-2.708 1.757-4.242s-0.586-3.071-1.757-4.242c-0.39-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414z",_CoreIcons.volumeOff="M10 7.081v9.839l-3.375-2.7c-0.17-0.137-0.388-0.22-0.625-0.22h-3v-4h3c0.218 0.001 0.439-0.071 0.625-0.219zM10.375 4.219l-4.726 3.781h-3.649c-0.552 0-1 0.448-1 1v6c0 0.552 0.448 1 1 1h3.649l4.726 3.781c0.431 0.345 1.061 0.275 1.406-0.156 0.148-0.185 0.22-0.407 0.219-0.625v-14c0-0.552-0.448-1-1-1-0.237 0-0.455 0.083-0.625 0.219zM16.293 9.707l2.293 2.293-2.293 2.293c-0.391 0.391-0.391 1.024 0 1.414s1.024 0.391 1.414 0l2.293-2.293 2.293 2.293c0.391 0.391 1.024 0.391 1.414 0s0.391-1.024 0-1.414l-2.293-2.293 2.293-2.293c0.391-0.391 0.391-1.024 0-1.414s-1.024-0.391-1.414 0l-2.293 2.293-2.293-2.293c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414z",_CoreIcons.alignLeft="M3,3H21V5H3V3M3,7H15V9H3V7M3,11H21V13H3V11M3,15H15V17H3V15M3,19H21V21H3V19Z",_CoreIcons.alignCenter="M3,3H21V5H3V3M7,7H17V9H7V7M3,11H21V13H3V11M7,15H17V17H7V15M3,19H21V21H3V19Z",_CoreIcons.alignRight="M3,3H21V5H3V3M9,7H21V9H9V7M3,11H21V13H3V11M9,15H21V17H9V15M3,19H21V21H3V19Z",_CoreIcons.alignJustify="M3,3H21V5H3V3M3,7H21V9H3V7M3,11H21V13H3V11M3,15H21V17H3V15M3,19H21V21H3V19Z",_CoreIcons.formatBold="M13.5,15.5H10V12.5H13.5A1.5,1.5 0 0,1 15,14A1.5,1.5 0 0,1 13.5,15.5M10,6.5H13A1.5,1.5 0 0,1 14.5,8A1.5,1.5 0 0,1 13,9.5H10M15.6,10.79C16.57,10.11 17.25,9 17.25,8C17.25,5.74 15.5,4 13.25,4H7V18H14.04C16.14,18 17.75,16.3 17.75,14.21C17.75,12.69 16.89,11.39 15.6,10.79Z",_CoreIcons.formatItalic="M10,4V7H12.21L8.79,15H6V18H14V15H11.79L15.21,7H18V4H10Z",_CoreIcons.formatUnderline="M5,21H19V19H5V21M12,17A6,6 0 0,0 18,11V3H15.5V11A3.5,3.5 0 0,1 12,14.5A3.5,3.5 0 0,1 8.5,11V3H6V11A6,6 0 0,0 12,17Z",_CoreIcons.formatStrikethrough="M7.2 9.8C6 7.5 7.7 4.8 10.1 4.3C13.2 3.3 17.7 4.7 17.6 8.5H14.6C14.6 8.2 14.5 7.9 14.5 7.7C14.3 7.1 13.9 6.8 13.3 6.6C12.5 6.3 11.2 6.4 10.5 6.9C9 8.2 10.4 9.5 12 10H7.4C7.3 9.9 7.3 9.8 7.2 9.8M21 13V11H3V13H12.6C12.8 13.1 13 13.1 13.2 13.2C13.8 13.5 14.3 13.7 14.5 14.3C14.6 14.7 14.7 15.2 14.5 15.6C14.3 16.1 13.9 16.3 13.4 16.5C11.6 17 9.4 16.3 9.5 14.1H6.5C6.4 16.7 8.6 18.5 11 18.8C14.8 19.6 19.3 17.2 17.3 12.9L21 13Z",_CoreIcons.formatClear="M6,5V5.18L8.82,8H11.22L10.5,9.68L12.6,11.78L14.21,8H20V5H6M3.27,5L2,6.27L8.97,13.24L6.5,19H9.5L11.07,15.34L16.73,21L18,19.73L3.55,5.27L3.27,5Z",_CoreIcons.formatIndentDecrease="M11,13H21V11H11M11,9H21V7H11M3,3V5H21V3M3,21H21V19H3M3,12L7,16V8M11,17H21V15H11V17Z",_CoreIcons.formatIndentIncrease="M11,13H21V11H11M11,9H21V7H11M3,3V5H21V3M11,17H21V15H11M3,8V16L7,12M3,21H21V19H3V21Z",_CoreIcons.formatListBullet="M7,5H21V7H7V5M7,13V11H21V13H7M4,4.5A1.5,1.5 0 0,1 5.5,6A1.5,1.5 0 0,1 4,7.5A1.5,1.5 0 0,1 2.5,6A1.5,1.5 0 0,1 4,4.5M4,10.5A1.5,1.5 0 0,1 5.5,12A1.5,1.5 0 0,1 4,13.5A1.5,1.5 0 0,1 2.5,12A1.5,1.5 0 0,1 4,10.5M7,19V17H21V19H7M4,16.5A1.5,1.5 0 0,1 5.5,18A1.5,1.5 0 0,1 4,19.5A1.5,1.5 0 0,1 2.5,18A1.5,1.5 0 0,1 4,16.5Z",_CoreIcons.formatListNumber="M7,13V11H21V13H7M7,19V17H21V19H7M7,7V5H21V7H7M3,8V5H2V4H4V8H3M2,17V16H5V20H2V19H4V18.5H3V17.5H4V17H2M4.25,10A0.75,0.75 0 0,1 5,10.75C5,10.95 4.92,11.14 4.79,11.27L3.12,13H5V14H2V13.08L4,11H2V10H4.25Z",_CoreIcons.formatText="M18.5,4L19.66,8.35L18.7,8.61C18.25,7.74 17.79,6.87 17.26,6.43C16.73,6 16.11,6 15.5,6H13V16.5C13,17 13,17.5 13.33,17.75C13.67,18 14.33,18 15,18V19H9V18C9.67,18 10.33,18 10.67,17.75C11,17.5 11,17 11,16.5V6H8.5C7.89,6 7.27,6 6.74,6.43C6.21,6.87 5.75,7.74 5.3,8.61L4.34,8.35L5.5,4H18.5Z",_CoreIcons.formatFill="M19,11.5C19,11.5 17,13.67 17,15A2,2 0 0,0 19,17A2,2 0 0,0 21,15C21,13.67 19,11.5 19,11.5M5.21,10L10,5.21L14.79,10M16.56,8.94L7.62,0L6.21,1.41L8.59,3.79L3.44,8.94C2.85,9.5 2.85,10.47 3.44,11.06L8.94,16.56C9.23,16.85 9.62,17 10,17C10.38,17 10.77,16.85 11.06,16.56L16.56,11.06C17.15,10.47 17.15,9.5 16.56,8.94Z",_CoreIcons.formatHilight="M4,17L6.75,14.25L6.72,14.23C6.14,13.64 6.14,12.69 6.72,12.11L11.46,7.37L15.7,11.61L10.96,16.35C10.39,16.93 9.46,16.93 8.87,16.37L8.24,17H4M15.91,2.91C16.5,2.33 17.45,2.33 18.03,2.91L20.16,5.03C20.74,5.62 20.74,6.57 20.16,7.16L16.86,10.45L12.62,6.21L15.91,2.91Z",_CoreIcons.formatParagraph="M13,4A4,4 0 0,1 17,8A4,4 0 0,1 13,12H11V18H9V4H13M13,10A2,2 0 0,0 15,8A2,2 0 0,0 13,6H11V10H13Z",_CoreIcons.formatCommentBlock="M9,22A1,1 0 0,1 8,21V18H4A2,2 0 0,1 2,16V4C2,2.89 2.9,2 4,2H20A2,2 0 0,1 22,4V16A2,2 0 0,1 20,18H13.9L10.2,21.71C10,21.9 9.75,22 9.5,22V22H9M10,16V19.08L13.08,16H20V4H4V16H10M6,7H18V9H6V7M6,11H15V13H6V11Z",_CoreIcons.formatQuoteBlock="M10,7L8,11H11V17H5V11L7,7H10M18,7L16,11H19V17H13V11L15,7H18Z",_CoreIcons.formatCodeBlock="M5.59 3.41L7 4.82L3.82 8L7 11.18L5.59 12.6L1 8L5.59 3.41M11.41 3.41L16 8L11.41 12.6L10 11.18L13.18 8L10 4.82L11.41 3.41M22 6V18C22 19.11 21.11 20 20 20H4C2.9 20 2 19.11 2 18V14H4V18H20V6H17.03V4H20C21.11 4 22 4.89 22 6Z",_CoreIcons.chartColumn="M22,21H2V3H4V19H6V10H10V19H12V6H16V19H18V14H22V21Z",_CoreIcons.chartBar="M3 2v20h18v-2h-16v-2h9v-4h-9v-2h13v-4h-13v-2h5v-4h-7z",_CoreIcons.chartLine="M16,11.78L20.24,4.45L21.97,5.45L16.74,14.5L10.23,10.75L5.46,19H22V21H2V3H4V17.54L9.5,8L16,11.78Z",_CoreIcons.chartRadar="M12,5L19.6,10.5L16.7,19.4H7.3L4.4,10.5L12,5M12,2.5L2,9.8L5.8,21.5H18.1L22,9.8L12,2.5Z",_CoreIcons.chartPie="M11,2V22C5.9,21.5 2,17.2 2,12C2,6.8 5.9,2.5 11,2M13,2V11H22C21.5,6.2 17.8,2.5 13,2M13,13V22C17.7,21.5 21.5,17.8 22,13H13Z",_CoreIcons.chartLineStacked="M17.45,15.18L22,6.81V19L22,21H2V3H4V15.54L4,19H4.31L6,19H6.57L10.96,11.44L17.45,15.18M22,3L21.97,3.45L17,11L10,6L6,12V3H22Z",_CoreIcons.chartBarStacked="M3 2v20h18v-2h-16v-2h2v-4h-2v-2h3v-4h-3v-2h2v-4h-4zM10 6v-4h-2v4h2zM18 12v-4h-3v4h3zM9 8v4h5v-4h-5zM14 18v-4h-2v4h2zM8 14v4h3v-4h-3z",_CoreIcons.chartColumnStacked="M22,21H2V3H4V19H6V17H10V19H12V16H16V19H18V17H22V21M18,14H22V16H18V14M12,6H16V9H12V6M16,15H12V10H16V15M6,10H10V12H6V10M10,16H6V13H10V16Z",_CoreIcons.chartActivityScatter="M2,2H4V20H22V22H2V2M9,10A3,3 0 0,1 12,13A3,3 0 0,1 9,16A3,3 0 0,1 6,13A3,3 0 0,1 9,10M13,2A3,3 0 0,1 16,5A3,3 0 0,1 13,8A3,3 0 0,1 10,5A3,3 0 0,1 13,2M18,12A3,3 0 0,1 21,15A3,3 0 0,1 18,18A3,3 0 0,1 15,15A3,3 0 0,1 18,12Z",_CoreIcons.chartActivityCalendar="M2,4V6H4V4H2M20,4V6H22V4H20M2,7V9H4V7H2M5,7V9H7V7H5M14,7V9H16V7H14M17,7V9H19V7H17M20,7V9H22V7H20M2,10V12H4V10H2M5,10V12H7V10H5M8,10V12H10V10H8M11,10V12H13V10H11M14,10V12H16V10H14M17,10V12H19V10H17M20,10V12H22V10H20M2,13V15H4V13H2M5,13V15H7V13H5M8,13V15H10V13H8M11,13V15H13V13H11M14,13V15H16V13H14M17,13V15H19V13H17M20,13V15H22V13H20M5",_CoreIcons.palette="M12,22A10,10 0 0,1 2,12A10,10 0 0,1 12,2C17.5,2 22,6 22,11A6,6 0 0,1 16,17H14.2C13.9,17 13.7,17.2 13.7,17.5C13.7,17.6 13.8,17.7 13.8,17.8C14.2,18.3 14.4,18.9 14.4,19.5C14.5,20.9 13.4,22 12,22M12,4A8,8 0 0,0 4,12A8,8 0 0,0 12,20C12.3,20 12.5,19.8 12.5,19.5C12.5,19.3 12.4,19.2 12.4,19.1C12,18.6 11.8,18.1 11.8,17.5C11.8,16.1 12.9,15 14.3,15H16A4,4 0 0,0 20,11C20,7.1 16.4,4 12,4M6.5,10C7.3,10 8,10.7 8,11.5C8,12.3 7.3,13 6.5,13C5.7,13 5,12.3 5,11.5C5,10.7 5.7,10 6.5,10M9.5,6C10.3,6 11,6.7 11,7.5C11,8.3 10.3,9 9.5,9C8.7,9 8,8.3 8,7.5C8,6.7 8.7,6 9.5,6M14.5,6C15.3,6 16,6.7 16,7.5C16,8.3 15.3,9 14.5,9C13.7,9 13,8.3 13,7.5C13,6.7 13.7,6 14.5,6M17.5,10C18.3,10 19,10.7 19,11.5C19,12.3 18.3,13 17.5,13C16.7,13 16,12.3 16,11.5C16,10.7 16.7,10 17.5,10Z",_CoreIcons.widget="M16.7 4.5L19.5 7.3L16.7 10.1L13.9 7.3L16.7 4.5M9 5V9H5V5H9M19 15V19H15V15H19M16.7 1.7L11 7.3L16.7 13H13V21H21V13H16.7L22.3 7.3L16.7 1.7M11 3H3V11H11V3M9 15V19H5V15H9M11 13H3V21H11V13Z",_CoreIcons.checkboxOff="M19,3H5C3.89,3 3,3.89 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V5C21,3.89 20.1,3 19,3M19,5V19H5V5H19Z",_CoreIcons.checkboxOn="M10,17L5,12L6.41,10.58L10,14.17L17.59,6.58L19,8M19,3H5C3.89,3 3,3.89 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V5C21,3.89 20.1,3 19,3Z",_CoreIcons.checkboxInt="M19,3H5A2,2 0 0,0 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V5A2,2 0 0,0 19,3M19,19H5V5H19V19M17,17H7V7H17V17Z",_CoreIcons.radioOff="M12,20A8,8 0 0,1 4,12A8,8 0 0,1 12,4A8,8 0 0,1 20,12A8,8 0 0,1 12,20M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2Z",_CoreIcons.radioOn="M12,20A8,8 0 0,1 4,12A8,8 0 0,1 12,4A8,8 0 0,1 20,12A8,8 0 0,1 12,20M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2M12,7A5,5 0 0,0 7,12A5,5 0 0,0 12,17A5,5 0 0,0 17,12A5,5 0 0,0 12,7Z",_CoreIcons.colorSwatch="M16 14V12H17.61C17.85 12.71 18 13.39 18 14H16M15.58 8C15.12 7.29 14.65 6.61 14.2 6H14V8H15.58M16 12V10H14V12H16M16 8.68V10H16.74C16.5 9.56 16.26 9.11 16 8.68M12 16V14H14V12H12V10H14V8H12V6H14V5.73C12.9 4.26 12 3.25 12 3.25S6 10 6 14C6 17.31 8.69 20 12 20V18H14V16H12M14 19.65C14.75 19.39 15.42 19 16 18.46V18H14V19.65M14 16H16V14H14V16M16 18H16.46C17 17.42 17.39 16.75 17.65 16H16V18Z",_CoreIcons.colorPicker="M19.35,11.72L17.22,13.85L15.81,12.43L8.1,20.14L3.5,22L2,20.5L3.86,15.9L11.57,8.19L10.15,6.78L12.28,4.65L19.35,11.72M16.76,3C17.93,1.83 19.83,1.83 21,3C22.17,4.17 22.17,6.07 21,7.24L19.08,9.16L14.84,4.92L16.76,3M5.56,17.03L4.5,19.5L6.97,18.44L14.4,11L13,9.6L5.56,17.03Z",_CoreIcons.info="M23 12c0-3.037-1.232-5.789-3.222-7.778s-4.741-3.222-7.778-3.222-5.789 1.232-7.778 3.222-3.222 4.741-3.222 7.778 1.232 5.789 3.222 7.778 4.741 3.222 7.778 3.222 5.789-1.232 7.778-3.222 3.222-4.741 3.222-7.778zM21 12c0 2.486-1.006 4.734-2.636 6.364s-3.878 2.636-6.364 2.636-4.734-1.006-6.364-2.636-2.636-3.878-2.636-6.364 1.006-4.734 2.636-6.364 3.878-2.636 6.364-2.636 4.734 1.006 6.364 2.636 2.636 3.878 2.636 6.364zM13 16v-4c0-0.552-0.448-1-1-1s-1 0.448-1 1v4c0 0.552 0.448 1 1 1s1-0.448 1-1zM12 9c0.552 0 1-0.448 1-1s-0.448-1-1-1-1 0.448-1 1 0.448 1 1 1z",_CoreIcons.alert="M23 12c0-3.037-1.232-5.789-3.222-7.778s-4.741-3.222-7.778-3.222-5.789 1.232-7.778 3.222-3.222 4.741-3.222 7.778 1.232 5.789 3.222 7.778 4.741 3.222 7.778 3.222 5.789-1.232 7.778-3.222 3.222-4.741 3.222-7.778zM21 12c0 2.486-1.006 4.734-2.636 6.364s-3.878 2.636-6.364 2.636-4.734-1.006-6.364-2.636-2.636-3.878-2.636-6.364 1.006-4.734 2.636-6.364 3.878-2.636 6.364-2.636 4.734 1.006 6.364 2.636 2.636 3.878 2.636 6.364zM11 8v4c0 0.552 0.448 1 1 1s1-0.448 1-1v-4c0-0.552-0.448-1-1-1s-1 0.448-1 1zM12 17c0.552 0 1-0.448 1-1s-0.448-1-1-1-1 0.448-1 1 0.448 1 1 1z",_CoreIcons.error="M23 12c0-3.037-1.232-5.789-3.222-7.778s-4.741-3.222-7.778-3.222-5.789 1.232-7.778 3.222-3.222 4.741-3.222 7.778 1.232 5.789 3.222 7.778 4.741 3.222 7.778 3.222 5.789-1.232 7.778-3.222 3.222-4.741 3.222-7.778zM21 12c0 2.486-1.006 4.734-2.636 6.364s-3.878 2.636-6.364 2.636-4.734-1.006-6.364-2.636-2.636-3.878-2.636-6.364 1.006-4.734 2.636-6.364 3.878-2.636 6.364-2.636 4.734 1.006 6.364 2.636 2.636 3.878 2.636 6.364zM8.293 9.707l2.293 2.293-2.293 2.293c-0.391 0.391-0.391 1.024 0 1.414s1.024 0.391 1.414 0l2.293-2.293 2.293 2.293c0.391 0.391 1.024 0.391 1.414 0s0.391-1.024 0-1.414l-2.293-2.293 2.293-2.293c0.391-0.391 0.391-1.024 0-1.414s-1.024-0.391-1.414 0l-2.293 2.293-2.293-2.293c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414z",_CoreIcons.success="M21 11.080v0.92c-0.001 2.485-1.009 4.733-2.64 6.362s-3.88 2.634-6.365 2.632-4.734-1.009-6.362-2.64-2.634-3.879-2.633-6.365 1.009-4.733 2.64-6.362 3.88-2.634 6.365-2.633c1.33 0.001 2.586 0.289 3.649 0.775 0.502 0.23 1.096 0.008 1.325-0.494s0.008-1.096-0.494-1.325c-1.327-0.606-2.866-0.955-4.479-0.956-3.037-0.002-5.789 1.229-7.78 3.217s-3.224 4.74-3.226 7.777 1.229 5.789 3.217 7.78 4.739 3.225 7.776 3.226 5.789-1.229 7.78-3.217 3.225-4.739 3.227-7.777v-0.92c0-0.552-0.448-1-1-1s-1 0.448-1 1zM21.293 3.293l-9.293 9.302-2.293-2.292c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414l3 3c0.391 0.391 1.024 0.39 1.415 0l10-10.010c0.39-0.391 0.39-1.024-0.001-1.414s-1.024-0.39-1.414 0.001z",_CoreIcons.warning="M11.148 4.374c0.073-0.123 0.185-0.242 0.334-0.332 0.236-0.143 0.506-0.178 0.756-0.116s0.474 0.216 0.614 0.448l8.466 14.133c0.070 0.12 0.119 0.268 0.128 0.434-0.015 0.368-0.119 0.591-0.283 0.759-0.18 0.184-0.427 0.298-0.693 0.301l-16.937-0.001c-0.152-0.001-0.321-0.041-0.481-0.134-0.239-0.138-0.399-0.359-0.466-0.607s-0.038-0.519 0.092-0.745zM9.432 3.346l-8.47 14.14c-0.422 0.731-0.506 1.55-0.308 2.29s0.68 1.408 1.398 1.822c0.464 0.268 0.976 0.4 1.475 0.402h16.943c0.839-0.009 1.587-0.354 2.123-0.902s0.864-1.303 0.855-2.131c-0.006-0.536-0.153-1.044-0.406-1.474l-8.474-14.147c-0.432-0.713-1.11-1.181-1.854-1.363s-1.561-0.081-2.269 0.349c-0.429 0.26-0.775 0.615-1.012 1.014zM11 9v4c0 0.552 0.448 1 1 1s1-0.448 1-1v-4c0-0.552-0.448-1-1-1s-1 0.448-1 1zM12 18c0.552 0 1-0.448 1-1s-0.448-1-1-1-1 0.448-1 1 0.448 1 1 1z",_CoreIcons.question="M23 12c0-3.037-1.232-5.789-3.222-7.778s-4.741-3.222-7.778-3.222-5.789 1.232-7.778 3.222-3.222 4.741-3.222 7.778 1.232 5.789 3.222 7.778 4.741 3.222 7.778 3.222 5.789-1.232 7.778-3.222 3.222-4.741 3.222-7.778zM21 12c0 2.486-1.006 4.734-2.636 6.364s-3.878 2.636-6.364 2.636-4.734-1.006-6.364-2.636-2.636-3.878-2.636-6.364 1.006-4.734 2.636-6.364 3.878-2.636 6.364-2.636 4.734 1.006 6.364 2.636 2.636 3.878 2.636 6.364zM10.033 9.332c0.183-0.521 0.559-0.918 1.022-1.14s1.007-0.267 1.528-0.083c0.458 0.161 0.819 0.47 1.050 0.859 0.183 0.307 0.284 0.665 0.286 1.037 0 0.155-0.039 0.309-0.117 0.464-0.080 0.16-0.203 0.325-0.368 0.49-0.709 0.709-1.831 1.092-1.831 1.092-0.524 0.175-0.807 0.741-0.632 1.265s0.741 0.807 1.265 0.632c0 0 1.544-0.506 2.613-1.575 0.279-0.279 0.545-0.614 0.743-1.010 0.2-0.4 0.328-0.858 0.328-1.369-0.004-0.731-0.204-1.437-0.567-2.049-0.463-0.778-1.19-1.402-2.105-1.724-1.042-0.366-2.135-0.275-3.057 0.167s-1.678 1.238-2.044 2.28c-0.184 0.521 0.090 1.092 0.611 1.275s1.092-0.091 1.275-0.611zM12 18c0.552 0 1-0.448 1-1s-0.448-1-1-1-1 0.448-1 1 0.448 1 1 1z",_CoreIcons.mediaRotateCW="M16.89,15.5L18.31,16.89C19.21,15.73 19.76,14.39 19.93,13H17.91C17.77,13.87 17.43,14.72 16.89,15.5M13,17.9V19.92C14.39,19.75 15.74,19.21 16.9,18.31L15.46,16.87C14.71,17.41 13.87,17.76 13,17.9M19.93,11C19.76,9.61 19.21,8.27 18.31,7.11L16.89,8.53C17.43,9.28 17.77,10.13 17.91,11M15.55,5.55L11,1V4.07C7.06,4.56 4,7.92 4,12C4,16.08 7.05,19.44 11,19.93V17.91C8.16,17.43 6,14.97 6,12C6,9.03 8.16,6.57 11,6.09V10L15.55,5.55Z",_CoreIcons.mediaRotateCCW="M13,4.07V1L8.45,5.55L13,10V6.09C15.84,6.57 18,9.03 18,12C18,14.97 15.84,17.43 13,17.91V19.93C16.95,19.44 20,16.08 20,12C20,7.92 16.95,4.56 13,4.07M7.1,18.32C8.26,19.22 9.61,19.76 11,19.93V17.9C10.13,17.75 9.29,17.41 8.54,16.87L7.1,18.32M6.09,13H4.07C4.24,14.39 4.79,15.73 5.69,16.89L7.1,15.47C6.58,14.72 6.23,13.88 6.09,13M7.11,8.53L5.7,7.11C4.8,8.27 4.24,9.61 4.07,11H6.09C6.23,10.13 6.58,9.28 7.11,8.53Z",_CoreIcons.mediaFitToView="M20,2H4C2.89,2 2,2.89 2,4V20C2,21.11 2.89,22 4,22H20C21.11,22 22,21.11 22,20V4C22,2.89 21.11,2 20,2M20,20H4V4H20M13,8V10H11V8H9L12,5L15,8M16,15V13H14V11H16V9L19,12M10,13H8V15L5,12L8,9V11H10M15,16L12,19L9,16H11V14H13V16",_CoreIcons.mediaSrt="M18,11H16.5V10.5H14.5V13.5H16.5V13H18V14A1,1 0 0,1 17,15H14A1,1 0 0,1 13,14V10A1,1 0 0,1 14,9H17A1,1 0 0,1 18,10M11,11H9.5V10.5H7.5V13.5H9.5V13H11V14A1,1 0 0,1 10,15H7A1,1 0 0,1 6,14V10A1,1 0 0,1 7,9H10A1,1 0 0,1 11,10M19,4H5C3.89,4 3,4.89 3,6V18A2,2 0 0,0 5,20H19A2,2 0 0,0 21,18V6C21,4.89 20.1,4 19,4Z",_CoreIcons.mediaAspect="M19,12H17V15H14V17H19V12M7,9H10V7H5V12H7V9M21,3H3A2,2 0 0,0 1,5V19A2,2 0 0,0 3,21H21A2,2 0 0,0 23,19V5A2,2 0 0,0 21,3M21,19H3V5H21V19Z",_CoreIcons.mediaZoomer="M15 0.004c-4.97 0-9 4.030-9 9 0 1.52 0.38 2.95 1.046 4.206l-6.258 6.256 0.005 0.005c-0.489 0.481-0.794 1.147-0.794 1.887 0 1.462 1.185 2.647 2.647 2.647 0.739 0 1.406-0.304 1.886-0.794l-0.002-0.001 6.256-6.255c1.257 0.668 2.689 1.050 4.213 1.050 4.97 0 9-4.030 9-9s-4.030-9-9-9zM3.596 22.273c-0.241 0.25-0.576 0.407-0.95 0.407-0.731 0-1.324-0.592-1.324-1.323 0-0.373 0.157-0.707 0.407-0.95l-0.007-0.006 6.050-6.050c0.529 0.713 1.159 1.343 1.87 1.874l-6.047 6.047zM15 16.505c-4.142 0-7.5-3.359-7.5-7.5s3.358-7.5 7.5-7.5c4.141 0 7.5 3.358 7.5 7.5s-3.359 7.5-7.5 7.5zM15 3.754c0.206 0 0.375 0.168 0.375 0.375s-0.169 0.375-0.375 0.375c-2.486 0-4.5 2.015-4.5 4.5 0 0.207-0.168 0.375-0.375 0.375s-0.375-0.168-0.375-0.375c0-2.9 2.35-5.25 5.25-5.25z",_CoreIcons.mediaOrient="M7.34,6.41L0.86,12.9L7.35,19.38L13.84,12.9L7.34,6.41M3.69,12.9L7.35,9.24L11,12.9L7.34,16.56L3.69,12.9M19.36,6.64C17.61,4.88 15.3,4 13,4V0.76L8.76,5L13,9.24V6C14.79,6 16.58,6.68 17.95,8.05C20.68,10.78 20.68,15.22 17.95,17.95C16.58,19.32 14.79,20 13,20C12.03,20 11.06,19.79 10.16,19.39L8.67,20.88C10,21.62 11.5,22 13,22C15.3,22 17.61,21.12 19.36,19.36C22.88,15.85 22.88,10.15 19.36,6.64Z",_CoreIcons.mediaCrop="M7,17V1H5V5H1V7H5V17A2,2 0 0,0 7,19H17V23H19V19H23V17M17,15H19V7C19,5.89 18.1,5 17,5H9V7H17V15Z",_CoreIcons.mediaImage="M19,19H5V5H19M19,3H5A2,2 0 0,0 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V5A2,2 0 0,0 19,3M13.96,12.29L11.21,15.83L9.25,13.47L6.5,17H17.5L13.96,12.29Z",_CoreIcons.mediaVideo="M15,8V16H5V8H15M16,6H4A1,1 0 0,0 3,7V17A1,1 0 0,0 4,18H16A1,1 0 0,0 17,17V13.5L21,17.5V6.5L17,10.5V7A1,1 0 0,0 16,6Z",_CoreIcons.mediaAudio="M17.3,11C17.3,14 14.76,16.1 12,16.1C9.24,16.1 6.7,14 6.7,11H5C5,14.41 7.72,17.23 11,17.72V21H13V17.72C16.28,17.23 19,14.41 19,11M10.8,4.9C10.8,4.24 11.34,3.7 12,3.7C12.66,3.7 13.2,4.24 13.2,4.9L13.19,11.1C13.19,11.76 12.66,12.3 12,12.3C11.34,12.3 10.8,11.76 10.8,11.1M12,14A3,3 0 0,0 15,11V5A3,3 0 0,0 12,2A3,3 0 0,0 9,5V11A3,3 0 0,0 12,14Z",_CoreIcons.mediaVideoBroken="M3.41,1.86L2,3.27L4.73,6H4A1,1 0 0,0 3,7V17A1,1 0 0,0 4,18H16C16.21,18 16.39,17.92 16.55,17.82L19.73,21L21.14,19.59L12.28,10.73L3.41,1.86M5,16V8H6.73L14.73,16H5M15,8V10.61L21,16.61V6.5L17,10.5V7A1,1 0 0,0 16,6H10.39L12.39,8H15Z",_CoreIcons.mediaAudioBroken="M19,11C19,12.19 18.66,13.3 18.1,14.28L16.87,13.05C17.14,12.43 17.3,11.74 17.3,11H19M15,11.16L9,5.18V5A3,3 0 0,1 12,2A3,3 0 0,1 15,5V11L15,11.16M4.27,3L21,19.73L19.73,21L15.54,16.81C14.77,17.27 13.91,17.58 13,17.72V21H11V17.72C7.72,17.23 5,14.41 5,11H6.7C6.7,14 9.24,16.1 12,16.1C12.81,16.1 13.6,15.91 14.31,15.58L12.65,13.92L12,14A3,3 0 0,1 9,11V10.28L3,4.27L4.27,3Z",_CoreIcons.mediaImageBroken="M22 20.7L3.3 2L2 3.3L3 4.3V19C3 20.1 3.9 21 5 21H19.7L20.7 22L22 20.7M5 19V6.3L12.6 13.9L11.1 15.8L9 13.1L6 17H15.7L17.7 19H5M8.8 5L6.8 3H19C20.1 3 21 3.9 21 5V17.2L19 15.2V5H8.8",_CoreIcons.mediaNsfw="M2,5.27L3.28,4L20,20.72L18.73,22L15.65,18.92C14.5,19.3 13.28,19.5 12,19.5C7,19.5 2.73,16.39 1,12C1.69,10.24 2.79,8.69 4.19,7.46L2,5.27M12,9A3,3 0 0,1 15,12C15,12.35 14.94,12.69 14.83,13L11,9.17C11.31,9.06 11.65,9 12,9M12,4.5C17,4.5 21.27,7.61 23,12C22.18,14.08 20.79,15.88 19,17.19L17.58,15.76C18.94,14.82 20.06,13.54 20.82,12C19.17,8.64 15.76,6.5 12,6.5C10.91,6.5 9.84,6.68 8.84,7L7.3,5.47C8.74,4.85 10.33,4.5 12,4.5M3.18,12C4.83,15.36 8.24,17.5 12,17.5C12.69,17.5 13.37,17.43 14,17.29L11.72,15C10.29,14.85 9.15,13.71 9,12.28L5.6,8.87C4.61,9.72 3.78,10.78 3.18,12Z",_CoreIcons.mediaSplitter="M3 15V17H5V15M15 19V21H17V19M19 3H5C3.9 3 3 3.9 3 5V9H5V5H19V9H21V5C21 3.9 20.1 3 19 3M21 19H19V21C20.1 21 21 20.1 21 19M1 11V13H23V11M7 19V21H9V19M19 15V17H21V15M11 19V21H13V19M3 19C3 20.1 3.9 21 5 21V19Z",_CoreIcons.mediaPlay="M8,5.14V19.14L19,12.14L8,5.14Z",_CoreIcons.mediaPause="M14,19H18V5H14M6,19H10V5H6V19Z",_CoreIcons.mediaContrast="M12 2A10 10 0 0 0 2 12A10 10 0 0 0 12 22A10 10 0 0 0 22 12A10 10 0 0 0 12 2M12 4A8 8 0 0 1 20 12A8 8 0 0 1 12 20V4Z",_CoreIcons.mediaEqs="M7 3H5V9H7V3M19 3H17V13H19V3M3 13H5V21H7V13H9V11H3V13M15 7H13V3H11V7H9V9H15V7M11 21H13V11H11V21M15 15V17H17V21H19V17H21V15H15Z",_CoreIcons.mediaCaptionOff="M5,4C4.45,4 4,4.18 3.59,4.57C3.2,4.96 3,5.44 3,6V18C3,18.56 3.2,19.04 3.59,19.43C4,19.82 4.45,20 5,20H19C19.5,20 20,19.81 20.39,19.41C20.8,19 21,18.53 21,18V6C21,5.47 20.8,5 20.39,4.59C20,4.19 19.5,4 19,4H5M4.5,5.5H19.5V18.5H4.5V5.5M7,9C6.7,9 6.47,9.09 6.28,9.28C6.09,9.47 6,9.7 6,10V14C6,14.3 6.09,14.53 6.28,14.72C6.47,14.91 6.7,15 7,15H10C10.27,15 10.5,14.91 10.71,14.72C10.91,14.53 11,14.3 11,14V13H9.5V13.5H7.5V10.5H9.5V11H11V10C11,9.7 10.91,9.47 10.71,9.28C10.5,9.09 10.27,9 10,9H7M14,9C13.73,9 13.5,9.09 13.29,9.28C13.09,9.47 13,9.7 13,10V14C13,14.3 13.09,14.53 13.29,14.72C13.5,14.91 13.73,15 14,15H17C17.3,15 17.53,14.91 17.72,14.72C17.91,14.53 18,14.3 18,14V13H16.5V13.5H14.5V10.5H16.5V11H18V10C18,9.7 17.91,9.47 17.72,9.28C17.53,9.09 17.3,9 17,9H14Z",_CoreIcons.mediaCaptionOn="M18,11H16.5V10.5H14.5V13.5H16.5V13H18V14A1,1 0 0,1 17,15H14A1,1 0 0,1 13,14V10A1,1 0 0,1 14,9H17A1,1 0 0,1 18,10M11,11H9.5V10.5H7.5V13.5H9.5V13H11V14A1,1 0 0,1 10,15H7A1,1 0 0,1 6,14V10A1,1 0 0,1 7,9H10A1,1 0 0,1 11,10M19,4H5C3.89,4 3,4.89 3,6V18A2,2 0 0,0 5,20H19A2,2 0 0,0 21,18V6C21,4.89 20.1,4 19,4Z",_CoreIcons.mediaChannel="M12,12A3,3 0 0,0 9,15A3,3 0 0,0 12,18A3,3 0 0,0 15,15A3,3 0 0,0 12,12M12,20A5,5 0 0,1 7,15A5,5 0 0,1 12,10A5,5 0 0,1 17,15A5,5 0 0,1 12,20M12,4A2,2 0 0,1 14,6A2,2 0 0,1 12,8C10.89,8 10,7.1 10,6C10,4.89 10.89,4 12,4M17,2H7C5.89,2 5,2.89 5,4V20A2,2 0 0,0 7,22H17A2,2 0 0,0 19,20V4C19,2.89 18.1,2 17,2Z",_CoreIcons.mediaVolume0="M3,9H7L12,4V20L7,15H3V9M16.59,12L14,9.41L15.41,8L18,10.59L20.59,8L22,9.41L19.41,12L22,14.59L20.59,16L18,13.41L15.41,16L14,14.59L16.59,12Z",_CoreIcons.mediaVolume1="M7,9V15H11L16,20V4L11,9H7Z",_CoreIcons.mediaVolume2="M5,9V15H9L14,20V4L9,9M18.5,12C18.5,10.23 17.5,8.71 16,7.97V16C17.5,15.29 18.5,13.76 18.5,12Z",_CoreIcons.mediaVolume3="M14,3.23V5.29C16.89,6.15 19,8.83 19,12C19,15.17 16.89,17.84 14,18.7V20.77C18,19.86 21,16.28 21,12C21,7.72 18,4.14 14,3.23M16.5,12C16.5,10.23 15.5,8.71 14,7.97V16C15.5,15.29 16.5,13.76 16.5,12M3,9V15H7L12,20V4L7,9H3Z",_CoreIcons.mediaComment="M9,22A1,1 0 0,1 8,21V18H4A2,2 0 0,1 2,16V4C2,2.89 2.9,2 4,2H20A2,2 0 0,1 22,4V16A2,2 0 0,1 20,18H13.9L10.2,21.71C10,21.9 9.75,22 9.5,22V22H9M10,16V19.08L13.08,16H20V4H4V16H10M6,7H18V9H6V7M6,11H15V13H6V11Z",_CoreIcons.mediaCommentAdd="M9,22A1,1 0 0,1 8,21V18H4A2,2 0 0,1 2,16V4C2,2.89 2.9,2 4,2H20A2,2 0 0,1 22,4V16A2,2 0 0,1 20,18H13.9L10.2,21.71C10,21.9 9.75,22 9.5,22V22H9M10,16V19.08L13.08,16H20V4H4V16H10M11,6H13V9H16V11H13V14H11V11H8V9H11V6Z";var Tooltip_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/dist/esm/overlays/tooltip/Tooltip.module.css"),Tooltip_module_options={};Tooltip_module_options.styleTagTransform=styleTagTransform_default(),Tooltip_module_options.setAttributes=setAttributesWithoutAttributes_default(),Tooltip_module_options.insert=insertBySelector_default().bind(null,"head"),Tooltip_module_options.domAPI=styleDomAPI_default(),Tooltip_module_options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(Tooltip_module.A,Tooltip_module_options);const tooltip_Tooltip_module=Tooltip_module.A&&Tooltip_module.A.locals?Tooltip_module.A.locals:void 0;var Tooltip_excluded=["ref","children","color","content","open","copyContent","disabled","placement"];function Tooltip_ownKeys(e,r){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);r&&(o=o.filter((function(r){return Object.getOwnPropertyDescriptor(e,r).enumerable}))),t.push.apply(t,o)}return t}function Tooltip_objectSpread(e){for(var r=1;r0&&void 0!==arguments[0]&&arguments[0],onToggle=arguments.length>1?arguments[1]:void 0,key=arguments.length>2?arguments[2]:void 0,toggleRef=(0,react.useRef)(isOn),_useState=(0,react.useState)(isOn),_useState2=(0,slicedToArray.A)(_useState,2),toggleOn=_useState2[0],setToggleOn=_useState2[1];useEffectDebugger_useLayoutEffectDebugger((function(){toggleRef.current=isOn,setToggleOn(isOn)}),[isOn],"usePropToggle");var doToggle=(0,react.useCallback)((function(){!1!==(null==onToggle?void 0:onToggle(!toggleOn,key))&&(toggleRef.current=!toggleOn,setToggleOn(!toggleOn))}),[toggleOn,onToggle,key]);return[toggleOn,doToggle,toggleRef]},ErrorBoundary_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/dist/esm/core/boundary/ErrorBoundary.module.css"),ErrorBoundary_module_options={};ErrorBoundary_module_options.styleTagTransform=styleTagTransform_default(),ErrorBoundary_module_options.setAttributes=setAttributesWithoutAttributes_default(),ErrorBoundary_module_options.insert=insertBySelector_default().bind(null,"head"),ErrorBoundary_module_options.domAPI=styleDomAPI_default(),ErrorBoundary_module_options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(ErrorBoundary_module.A,ErrorBoundary_module_options);const boundary_ErrorBoundary_module=ErrorBoundary_module.A&&ErrorBoundary_module.A.locals?ErrorBoundary_module.A.locals:void 0;var ErrorIcon=function ErrorIcon(){return(0,jsx_runtime.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 64 64",className:classnames_default()(boundary_ErrorBoundary_module.boundaryIcon,"size-6 m-2"),children:[(0,jsx_runtime.jsx)("path",{fill:"#808080",d:"M64 32c0 17.673-14.327 32-32 32s-32-14.327-32-32 14.327-32 32-32 32 14.327 32 32z"}),(0,jsx_runtime.jsx)("path",{fill:"#fff",d:"M63.5 32c0 17.397-14.103 31.5-31.5 31.5s-31.5-14.103-31.5-31.5 14.103-31.5 31.5-31.5 31.5 14.103 31.5 31.5z"}),(0,jsx_runtime.jsx)("path",{fill:"#f44336",d:"M60 32c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-15.464 12.536-28 28-28s28 12.536 28 28z"}),(0,jsx_runtime.jsx)("path",{fill:"#fff",d:"M50.667 35.733h-37.333c-1.031 0-1.867-0.835-1.867-1.867v-3.733c0-1.031 0.835-1.867 1.867-1.867h37.333c1.031 0 1.867 0.835 1.867 1.867v3.733c0 1.031-0.835 1.867-1.867 1.867z"})]})},i18next=__webpack_require__("./node_modules/i18next/dist/esm/i18next.js"),asyncToGenerator=__webpack_require__("./node_modules/@babel/runtime/helpers/esm/asyncToGenerator.js"),regenerator=__webpack_require__("./node_modules/@babel/runtime/regenerator/index.js"),regenerator_default=__webpack_require__.n(regenerator),react_dom=__webpack_require__("./node_modules/react-dom/index.js"),Typography_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/dist/esm/typography/Typography.module.css"),Typography_module_options={};Typography_module_options.styleTagTransform=styleTagTransform_default(),Typography_module_options.setAttributes=setAttributesWithoutAttributes_default(),Typography_module_options.insert=insertBySelector_default().bind(null,"head"),Typography_module_options.domAPI=styleDomAPI_default(),Typography_module_options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(Typography_module.A,Typography_module_options);const typography_Typography_module=Typography_module.A&&Typography_module.A.locals?Typography_module.A.locals:void 0;var Title_excluded=["children","className","as","bg","color","size","align","family"];function Title_ownKeys(e,r){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);r&&(o=o.filter((function(r){return Object.getOwnPropertyDescriptor(e,r).enumerable}))),t.push.apply(t,o)}return t}function Title_objectSpread(e){for(var r=1;r4&&void 0!==_args[4]?_args[4]:5e3,timerRef=null,obj=makeProps(props),_context.next=5,new Promise((function(resolve){var key=(0,esm.uR)(),handleClose=function handleClose(){var b=arguments.length>0&&void 0!==arguments[0]&&arguments[0];clearTimeout(timerRef),setTimeout((function(){delete map[key],update(),resolve(b)}),250)};map[key]=[(0,jsx_runtime.jsx)("div",{children:(0,jsx_runtime.jsx)(Notif,NotificationCenter_objectSpread(NotificationCenter_objectSpread({},obj),{},{onClose:handleClose,onCloseAll:handleCloseAll.current}))},key),handleClose],update(),"confirm"!==obj.type&&timeout>0&&(timerRef=setTimeout(handleClose,timeout))}));case 5:return _context.abrupt("return",_context.sent);case 6:case"end":return _context.stop()}}),_callee)})));return function(_x,_x2,_x3,_x4){return _ref2.apply(this,arguments)}}()),showMessage=(0,react.useRef)(function(){var _ref3=(0,asyncToGenerator.A)(regenerator_default().mark((function _callee2(props){var timeout,_args2=arguments;return regenerator_default().wrap((function _callee2$(_context2){for(;;)switch(_context2.prev=_context2.next){case 0:return timeout=_args2.length>1&&void 0!==_args2[1]?_args2[1]:5e3,_context2.next=3,openNotification.current(refItems.current.messages,updateMessages.current,Message,props,timeout);case 3:return _context2.abrupt("return",_context2.sent);case 4:case"end":return _context2.stop()}}),_callee2)})));return function(_x5){return _ref3.apply(this,arguments)}}()),showToast=(0,react.useRef)(function(){var _ref4=(0,asyncToGenerator.A)(regenerator_default().mark((function _callee3(props){var timeout,_args3=arguments;return regenerator_default().wrap((function _callee3$(_context3){for(;;)switch(_context3.prev=_context3.next){case 0:return timeout=_args3.length>1&&void 0!==_args3[1]?_args3[1]:5e3,_context3.next=3,openNotification.current(refItems.current.toasts,updateToasts.current,Toast,props,timeout);case 3:return _context3.abrupt("return",_context3.sent);case 4:case"end":return _context3.stop()}}),_callee3)})));return function(_x6){return _ref4.apply(this,arguments)}}()),showAlert=(0,react.useRef)(function(){var _ref5=(0,asyncToGenerator.A)(regenerator_default().mark((function _callee4(props){return regenerator_default().wrap((function _callee4$(_context4){for(;;)switch(_context4.prev=_context4.next){case 0:return _context4.next=2,openNotification.current(refItems.current.alerts,updateAlerts.current,Alert,props,0);case 2:return _context4.abrupt("return",_context4.sent);case 3:case"end":return _context4.stop()}}),_callee4)})));return function(_x7){return _ref5.apply(this,arguments)}}()),showError=(0,react.useRef)(function(){var _ref6=(0,asyncToGenerator.A)(regenerator_default().mark((function _callee5(props){return regenerator_default().wrap((function _callee5$(_context5){for(;;)switch(_context5.prev=_context5.next){case 0:return _context5.next=3,openNotification.current(refItems.current.toasts,Toast,NotificationCenter_objectSpread(NotificationCenter_objectSpread({},makeProps(props)),{},{color:"danger"}),0);case 3:return _context5.abrupt("return",_context5.sent);case 4:case"end":return _context5.stop()}}),_callee5)})));return function(_x8){return _ref6.apply(this,arguments)}}());return(0,react.useEffect)((function(){onLoad({showMessage:showMessage.current,showToast:showToast.current,showAlert:showAlert.current,showError:showError.current,closeAll:handleCloseAll.current})}),[]),(0,jsx_runtime.jsxs)(react.Fragment,{children:[(0,react_dom.createPortal)((0,jsx_runtime.jsx)("div",{style:{zIndex:"var(--z-overlay)"},className:"ruf-container__overlays pointer-events-none fixed inset-0 p-4 bg-transparent",children:Object.values(alerts).map((function(_ref7){return(0,slicedToArray.A)(_ref7,1)[0]}))}),document.body),(0,react_dom.createPortal)((0,jsx_runtime.jsx)("div",{style:{zIndex:"var(--z-notifications)"},className:"ruf-container__notifs flex flex-nowrap pointer-events-none fixed inset-0 p-2 bg-transparent flex-col-reverse items-center justify-end",children:Object.values(messages).map((function(_ref9){return(0,slicedToArray.A)(_ref9,1)[0]}))}),document.body),(0,react_dom.createPortal)((0,jsx_runtime.jsx)("div",{style:{zIndex:"var(--z-notifications)"},className:"ruf-container__toasts flex flex-nowrap pointer-events-none fixed inset-0 p-4 bg-transparent flex-col items-end justify-end overflow-auto scroll-hide",children:Object.values(toasts).map((function(_ref11){return(0,slicedToArray.A)(_ref11,1)[0]}))}),document.body)]})},Global_excluded=["errorElement"],GlobalContext=(0,react.createContext)({}),ApplicationProvider=function ApplicationProvider(_ref3){var children=_ref3.children,errorElement=_ref3.errorElement,defaultLocale=_ref3.defaultLocale,defaultCalendar=_ref3.defaultCalendar,defaultColorScheme=_ref3.defaultColorScheme,_useState=(0,react.useState)({closeAll:function closeAll(){},showAlert:function showAlert(){},showError:function showError(){},showMessage:function showMessage(){},showToast:function showToast(){}}),_useState2=(0,slicedToArray.A)(_useState,2),refNotifications=_useState2[0],setNotificationRef=_useState2[1],_useState3=(0,react.useState)(null!=defaultColorScheme?defaultColorScheme:function systemColorScheme(){var _localStorage$getItem;return"undefined"!=typeof window?null!==(_localStorage$getItem=localStorage.getItem("ruf:colorScheme"))&&void 0!==_localStorage$getItem?_localStorage$getItem:window.matchMedia("(prefers-color-scheme: dark)").matches?"dark":"light":"light"}()),_useState4=(0,slicedToArray.A)(_useState3,2),colorScheme=_useState4[0],setColorScheme=_useState4[1],_useState5=(0,react.useState)(null!=defaultCalendar?defaultCalendar:function systemCalendar(){var _ref2;return null!==(_ref2="undefined"!=typeof window?localStorage.getItem("ruf:calendar"):void 0)&&void 0!==_ref2?_ref2:"gregorian"}()),_useState6=(0,slicedToArray.A)(_useState5,2),calendar=_useState6[0],setCalendar=_useState6[1],_useState7=(0,react.useState)(null!=defaultLocale?defaultLocale:function systemLocale(){var _ref;return null!==(_ref="undefined"!=typeof window?localStorage.getItem("ruf:locale"):void 0)&&void 0!==_ref?_ref:"en"}()),_useState8=(0,slicedToArray.A)(_useState7,2),locale=_useState8[0],setLocale=_useState8[1];(0,react.useEffect)((function(){if(document.documentElement.lang=locale,document.documentElement.dataset.colorScheme?setColorScheme(document.documentElement.dataset.colorScheme):document.documentElement.dataset.colorScheme=colorScheme,"undefined"!=typeof window)try{i18next.Ay.changeLanguage(locale).then((function(){document.documentElement.dir=i18next.Ay.dir()}))}catch(_unused){}}),[]);var toggleColorScheme=(0,react.useCallback)((function(forceTheme){var newTheme=null!=forceTheme?forceTheme:"dark"===colorScheme?"light":"dark";return setColorScheme(newTheme),localStorage.setItem("ruf:colorScheme",newTheme),document.documentElement.dataset.colorScheme=newTheme,newTheme}),[colorScheme]),changeLocale=(0,react.useCallback)((function(locale){try{i18next.Ay.changeLanguage(locale).then((function(){localStorage.setItem("ruf:locale",locale),document.documentElement.lang=locale,document.documentElement.dir=i18next.Ay.dir()}))}catch(_unused2){}return setLocale(locale),locale}),[]),changeCalendar=(0,react.useCallback)((function(calendar){return setCalendar(calendar),localStorage.setItem("ruf:calendar",calendar),calendar}),[]);return(0,jsx_runtime.jsxs)(GlobalContext.Provider,{value:{errorElement,changeLocale,changeCalendar,toggleColorScheme,currentLocale:locale,currentCalendar:calendar,currentColorScheme:colorScheme,notificationManager:refNotifications},children:[(0,jsx_runtime.jsx)(HotKeyWrapper_HotKeyWrapper,{children}),(0,jsx_runtime.jsx)(NotificationManager,{onLoad:setNotificationRef})]})},useGlobals=function useGlobals(){return(0,react.useContext)(GlobalContext)},useApplicationContext=function useApplicationContext(){var _useContext=(0,react.useContext)(GlobalContext);return _useContext.errorElement,(0,objectWithoutProperties.A)(_useContext,Global_excluded)},useNotificationService=function useNotificationService(){var notificationManager=(0,react.useContext)(GlobalContext).notificationManager;return null!=notificationManager?notificationManager:{}};function _callSuper(t,o,e){return o=(0,getPrototypeOf.A)(o),(0,possibleConstructorReturn.A)(t,_isNativeReflectConstruct()?Reflect.construct(o,e||[],(0,getPrototypeOf.A)(t).constructor):o.apply(t,e))}function _isNativeReflectConstruct(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(_isNativeReflectConstruct=function _isNativeReflectConstruct(){return!!t})()}var DefaultError=function DefaultError(_ref){var error=_ref.error,t=(0,es.Bd)("core").t;return(0,jsx_runtime.jsxs)(jsx_runtime.Fragment,{children:[(0,jsx_runtime.jsx)("h6",{children:t("error.title")}),(0,jsx_runtime.jsx)("p",{className:"line-clamp-4",children:error})]})},ErrorMessage=function ErrorMessage(_ref2){var error=_ref2.error,errorElement=_ref2.errorElement,globalError=useGlobals().errorElement,EE=useEffectDebugger_useMemoDebugger((function(){var _ref3;return null!==(_ref3=null!=errorElement?errorElement:globalError)&&void 0!==_ref3?_ref3:DefaultError}),[],"ErrorBoundary element");return(0,jsx_runtime.jsxs)(jsx_runtime.Fragment,{children:[(0,jsx_runtime.jsx)(ErrorIcon,{}),(0,jsx_runtime.jsx)("div",{className:classnames_default()(boundary_ErrorBoundary_module.boundaryMessage,"p-2"),children:(0,jsx_runtime.jsx)(EE,{error})})]})},ErrorBoundary_ErrorBoundary=function(_Component){function ErrorBoundary(props){var _this;return(0,classCallCheck.A)(this,ErrorBoundary),(_this=_callSuper(this,ErrorBoundary,[props])).state={hasError:!1},_this}return(0,inherits.A)(ErrorBoundary,_Component),(0,createClass.A)(ErrorBoundary,[{key:"componentDidCatch",value:function componentDidCatch(error){this.setState({hasError:!0,error:error.message,stack:error.stack})}},{key:"render",value:function render(){if(this.state.hasError){var E=this.props.errorElement;return(0,jsx_runtime.jsx)("div",{className:classnames_default()(boundary_ErrorBoundary_module.errorBoundary,"grid grid-rows-1 overflow-hidden p-0.5 rounded-capped"),children:(0,jsx_runtime.jsxs)("div",{className:classnames_default()(boundary_ErrorBoundary_module.boundaryContent,"overflow-hidden grid rounded-capped"),children:[(0,jsx_runtime.jsx)(ErrorMessage,{error:this.state.error,errorElement:E}),!1]})})}return this.props.children}}],[{key:"getDerivedStateFromError",value:function getDerivedStateFromError(error){return{hasError:!0,error:error.message,stack:error.stack}}}])}(react.Component),HeadFoot_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/dist/esm/core/headfoot/HeadFoot.module.css"),HeadFoot_module_options={};HeadFoot_module_options.styleTagTransform=styleTagTransform_default(),HeadFoot_module_options.setAttributes=setAttributesWithoutAttributes_default(),HeadFoot_module_options.insert=insertBySelector_default().bind(null,"head"),HeadFoot_module_options.domAPI=styleDomAPI_default(),HeadFoot_module_options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(HeadFoot_module.A,HeadFoot_module_options);const headfoot_HeadFoot_module=HeadFoot_module.A&&HeadFoot_module.A.locals?HeadFoot_module.A.locals:void 0;var HeadFoot_excluded=["as","children","className","bg","color","flex","area","dir","align","justify"];function HeadFoot_ownKeys(e,r){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);r&&(o=o.filter((function(r){return Object.getOwnPropertyDescriptor(e,r).enumerable}))),t.push.apply(t,o)}return t}function HeadFoot_objectSpread(e){for(var r=1;r1?_len-1:0),_key=1;_key<_len;_key++)types[_key-1]=arguments[_key];return(0,esm.Gv)(node)&&"type"in node&&types.includes(node.type)},Card_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/dist/esm/components/card/Card.module.css"),Card_module_options={};Card_module_options.styleTagTransform=styleTagTransform_default(),Card_module_options.setAttributes=setAttributesWithoutAttributes_default(),Card_module_options.insert=insertBySelector_default().bind(null,"head"),Card_module_options.domAPI=styleDomAPI_default(),Card_module_options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(Card_module.A,Card_module_options);const card_Card_module=Card_module.A&&Card_module.A.locals?Card_module.A.locals:void 0;var Card_excluded=["children","className","bodyClassName","selected","selectedRibbon","onClick","flex","draggable","dragKey","dragData","ref"];function Card_ownKeys(e,r){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);r&&(o=o.filter((function(r){return Object.getOwnPropertyDescriptor(e,r).enumerable}))),t.push.apply(t,o)}return t}function Card_objectSpread(e){for(var r=1;r=step,style:{"--width":"".concat(Math.min(100*(activeCount-step),100),"%")}},step)})),!hideLabel&&(0,jsx_runtime.jsx)("label",{className:"text-muted",children:esm.yL.percent(value/100)})]}))};var Panel_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/dist/esm/components/panel/Panel.module.css"),Panel_module_options={};Panel_module_options.styleTagTransform=styleTagTransform_default(),Panel_module_options.setAttributes=setAttributesWithoutAttributes_default(),Panel_module_options.insert=insertBySelector_default().bind(null,"head"),Panel_module_options.domAPI=styleDomAPI_default(),Panel_module_options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(Panel_module.A,Panel_module_options);const panel_Panel_module=Panel_module.A&&Panel_module.A.locals?Panel_module.A.locals:void 0;var Panel_excluded=["children","className","titleClassName","headerClassName","title","actions","icon","iconBg","iconColor","rtlFlip","panelId","height","width","minHeight","minWidth","maxHeight","maxWidth","loading","expandable","expanded","onExpand","collapsable","collapsed","onCollapse","onClose","onBack"];function Panel_ownKeys(e,r){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);r&&(o=o.filter((function(r){return Object.getOwnPropertyDescriptor(e,r).enumerable}))),t.push.apply(t,o)}return t}function Panel_objectSpread(e){for(var r=1;r0?goBack:void 0})}))},Progress_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/dist/esm/components/progress/Progress.module.css"),Progress_module_options={};Progress_module_options.styleTagTransform=styleTagTransform_default(),Progress_module_options.setAttributes=setAttributesWithoutAttributes_default(),Progress_module_options.insert=insertBySelector_default().bind(null,"head"),Progress_module_options.domAPI=styleDomAPI_default(),Progress_module_options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(Progress_module.A,Progress_module_options);const progress_Progress_module=Progress_module.A&&Progress_module.A.locals?Progress_module.A.locals:void 0;function ProgressBar_ownKeys(e,r){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);r&&(o=o.filter((function(r){return Object.getOwnPropertyDescriptor(e,r).enumerable}))),t.push.apply(t,o)}return t}function ProgressBar_objectSpread(e){for(var r=1;r2&&void 0!==arguments[2]?arguments[2]:100,timerRef=(0,react.useRef)(),cb=(0,react.useMemo)((function(){"undefined"!=typeof window&&window.clearTimeout(timerRef.current);var fn=function fn(){for(var _len=arguments.length,args=new Array(_len),_key=0;_key<_len;_key++)args[_key]=arguments[_key];"undefined"!=typeof window&&(window.clearTimeout(timerRef.current),timerRef.current=window.setTimeout((function(){return null==callback?void 0:callback.apply(void 0,args)}),delay))};return fn.cancel=function(){"undefined"!=typeof window&&clearTimeout(timerRef.current)},fn}),deps);return cb},ResizeObserver_es=__webpack_require__("./node_modules/resize-observer-polyfill/dist/ResizeObserver.es.js"),useResizeObserver=function useResizeObserver(onResize){var ref=(0,react.useRef)(null),_useTransition=(0,react.useTransition)(),startTransition=(0,slicedToArray.A)(_useTransition,2)[1],callbackResize=useDebounce((function(){startTransition((function(){if(onResize&&null!=ref.current){var _ref$current=ref.current,width=_ref$current.offsetWidth,height=_ref$current.offsetHeight;null==onResize||onResize({width,height})}}))}),[onResize]);return(0,react.useEffect)((function(){if(null!=ref.current){var ob=new ResizeObserver_es.A(callbackResize);return ob.observe(ref.current),function(){ob.disconnect()}}}),[callbackResize,ref]),ref},Content_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/dist/esm/core/content/Content.module.css"),Content_module_options={};Content_module_options.styleTagTransform=styleTagTransform_default(),Content_module_options.setAttributes=setAttributesWithoutAttributes_default(),Content_module_options.insert=insertBySelector_default().bind(null,"head"),Content_module_options.domAPI=styleDomAPI_default(),Content_module_options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(Content_module.A,Content_module_options);const content_Content_module=Content_module.A&&Content_module.A.locals?Content_module.A.locals:void 0;var Content=function Content(_ref){var ref=_ref.ref,children=_ref.children,className=_ref.className,onScroll=_ref.onScroll,onResize=_ref.onResize,testId=_ref["data-testid"],testValue=_ref["data-test-value"],resizeHandle=useResizeObserver(onResize),scrollHandler=useDebounce((function(e){var el=e.target;null==onScroll||onScroll({left:el.scrollLeft,top:el.scrollTop,scrollHeight:el.scrollHeight,scrollWidth:el.scrollWidth,width:el.offsetWidth,height:el.offsetHeight},e)}),[onScroll]);return(0,react.useImperativeHandle)(ref,(function(){return resizeHandle.current}),[]),(0,jsx_runtime.jsx)("section",{"data-ref":"content","data-testid":testId,"data-test-value":testValue,ref:resizeHandle,onScroll:scrollHandler,className:classnames_default()(content_Content_module.content,"area-content",className),children:(0,jsx_runtime.jsx)(ErrorBoundary_ErrorBoundary,{children})})},Page_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/dist/esm/core/page/Page.module.css"),Page_module_options={};Page_module_options.styleTagTransform=styleTagTransform_default(),Page_module_options.setAttributes=setAttributesWithoutAttributes_default(),Page_module_options.insert=insertBySelector_default().bind(null,"head"),Page_module_options.domAPI=styleDomAPI_default(),Page_module_options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(Page_module.A,Page_module_options);Page_module.A&&Page_module.A.locals&&Page_module.A.locals;var Responsive_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/dist/esm/core/responsive/Responsive.module.css"),Responsive_module_options={};Responsive_module_options.styleTagTransform=styleTagTransform_default(),Responsive_module_options.setAttributes=setAttributesWithoutAttributes_default(),Responsive_module_options.insert=insertBySelector_default().bind(null,"head"),Responsive_module_options.domAPI=styleDomAPI_default(),Responsive_module_options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(Responsive_module.A,Responsive_module_options);const responsive_Responsive_module=Responsive_module.A&&Responsive_module.A.locals?Responsive_module.A.locals:void 0;var Responsive_excluded2=["children","gutter","noWrap","orient","align","justify","className"],_excluded3=["children","flex","align","className","stretchContent"];function Responsive_ownKeys(e,r){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);r&&(o=o.filter((function(r){return Object.getOwnPropertyDescriptor(e,r).enumerable}))),t.push.apply(t,o)}return t}function Responsive_objectSpread(e){for(var r=1;r0&&!refShowMore.current&&setClipped(function calculateTextHeight(element,styleRoot){var clone=element.cloneNode(!0);clone.style.font=getCssStyle(null!=styleRoot?styleRoot:element,"font"),clone.style.width="".concat(element.offsetWidth,"px"),clone.style.padding=getCssStyle(null!=styleRoot?styleRoot:element,"padding"),clone.style.lineHeight=getCssStyle(null!=styleRoot?styleRoot:element,"line-height"),clone.style.letterSpacing=getCssStyle(null!=styleRoot?styleRoot:element,"letter-spacing"),clone.style.webkitLineClamp="unset",clone.style.position="absolute",clone.style.left="-10000%",document.body.appendChild(clone);var height=clone.offsetHeight;return clone.remove(),height}(el.firstElementChild,el)>el.offsetHeight)}),[clamp]);useEffectDebugger_useLayoutEffectDebugger((function(){if(refContainer.current){var ob=new ResizeObserver(checkHeight);return ob.observe(refContainer.current),checkHeight(),function(){ob.disconnect()}}}),[children,checkHeight],"Text check height");var styles=useEffectDebugger_useMemoDebugger((function(){var s={};return bg&&(s.backgroundColor=getColor_getColor(bg)),color&&(s.color=getColor_getColor(color)),align&&(s.textAlign=align),size&&!(size in types_TextSizeMap)&&(s.fontSize=size),size&&size in types_TextSizeMap&&(s.fontSize=types_TextSizeMap[size]),s}),[bg,color,size,align,family],"Text styles");return inline?(0,jsx_runtime.jsx)("span",Text_objectSpread(Text_objectSpread({className,style:styles},aria),{},{children})):(0,jsx_runtime.jsxs)("article",{className,children:[(0,jsx_runtime.jsx)("div",{ref:refContainer,style:{"--text-clamp":showMore?"unset":null!=clamp?clamp:"unset"},children:(0,jsx_runtime.jsx)("div",Text_objectSpread(Text_objectSpread({className:classnames_default()(typography_Typography_module.text,"text-reset mixed-lang px-[2px] whitespace-pre-wrap",family&&"font-".concat(family),bg&&getColor_getBgClass(bg),color&&getColor_getColorClass(color),clamp&&"line-clamp-1"),style:styles},aria),{},{children}))}),clipped&&(0,jsx_runtime.jsx)("div",{className:typography_Typography_module.moreLink,children:(0,jsx_runtime.jsxs)("span",{role:"link",tabIndex:0,"data-inner-clickable":!0,onClick:function onClick(e){return[e.stopPropagation(),toggleShowMore()]},children:["...",t("action.".concat(showMore?"less":"more"))]})})]})},useIsDark=function useIsDark(){var _useState=(0,react.useState)(!1),_useState2=(0,slicedToArray.A)(_useState,2),isDark=_useState2[0],setDark=_useState2[1],checkTheme=(0,react.useCallback)((function(){var _ref=getComputedStyle(document.documentElement).backgroundColor.match(/\d?\d?\d/g),r=(0,slicedToArray.A)(_ref,1)[0];setDark(+r<50)}),[]);return useEffectDebugger_useLayoutEffectDebugger((function(){if(MutationObserver){var ob=new MutationObserver(checkTheme);return ob.observe(document.documentElement,{attributes:!0}),checkTheme(),function(){ob.disconnect()}}}),[],"useIsDark"),isDark};var useLocalStorage=function useLocalStorage(key,defaultValue){var _JSON$parse,_service$getItem,service=function useClientService(clientApi,serverMock){return"undefined"==typeof window?serverMock:clientApi}(localStorage),_useState=(0,react.useState)(null!==(_JSON$parse=JSON.parse(null!==(_service$getItem=null==service?void 0:service.getItem(key))&&void 0!==_service$getItem?_service$getItem:"null"))&&void 0!==_JSON$parse?_JSON$parse:defaultValue),_useState2=(0,slicedToArray.A)(_useState,2),value=_useState2[0],setValue=_useState2[1];useEffectDebugger_useEffectDebugger((function(){var _JSON$parse2,_service$getItem2;setValue(null!==(_JSON$parse2=JSON.parse(null!==(_service$getItem2=null==service?void 0:service.getItem(key))&&void 0!==_service$getItem2?_service$getItem2:"null"))&&void 0!==_JSON$parse2?_JSON$parse2:defaultValue)}),[],"useStorage initial value");return[value,function changeValue(value){null==service||service.setItem(key,JSON.stringify(value)),setValue(value)}]}},"./packages/utilities/dist/esm/index.js":(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.d(__webpack_exports__,{rX:()=>Countries,Ml:()=>EMPTY_ARRAY,fO:()=>_fileType,yL:()=>Format,t_:()=>cloneChildren,ck:()=>compareValues,sg:()=>debounce,Qq:()=>dedupe,YH:()=>getBox,Dz:()=>getByPath,TP:()=>getImageColorset,_W:()=>getValue,$z:()=>groupBy,DB:()=>iconToken,cy:()=>isArray,Lm:()=>_isType_isBoolean,_o:()=>isColor,Im:()=>_isType_isEmpty,gD:()=>isNil,Et:()=>_isType_isNumber,Gv:()=>_isType_isObject,Kg:()=>_isType_isString,yX:()=>isSvgPath,Hn:()=>isTrue,FX:()=>matchString,Px:()=>mergeRefs,BC:()=>shortHash,qw:()=>tokenize,Ul:()=>useLogger,uR:()=>uuid,hg:()=>index_esm});var slicedToArray=__webpack_require__("./node_modules/@babel/runtime/helpers/esm/slicedToArray.js"),esm_typeof=__webpack_require__("./node_modules/@babel/runtime/helpers/esm/typeof.js"),isNil=function isNil(val){return null==val},_isType_isEmpty=function isEmpty(val){return!(val instanceof Date)&&(!(!isNil(val)&&""!==val)||(!(!Array.isArray(val)||0!==val.filter(Boolean).length)||(val instanceof Map||val instanceof Set?0===val.size:!["boolean","number","bigint","function"].includes((0,esm_typeof.A)(val))&&(!!val&&"object"===(0,esm_typeof.A)(val)&&0===Object.entries(val).length))))},_isType_isObject=function isObject(val){return!(isNil(val)||val instanceof Date||"object"!==(0,esm_typeof.A)(val)||Array.isArray(val))},isArray=function isArray(val){return Array.isArray(val)},_isType_isString=function isString(value){return"string"==typeof value},_isType_isNumber=function isNumber(value){return"number"==typeof value},_isType_isBoolean=function isBoolean(value){return"boolean"==typeof value},isTrue=function isTrue(){var value=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"";return!0===value||1===value||"yes"===(null==value?void 0:value.toString().toLowerCase())||"true"===(null==value?void 0:value.toString().toLowerCase())},isColor=function isColor(color){var _color$startsWith,_color$startsWith2,_color$startsWith3,_color$startsWith4;return(null===(_color$startsWith=color.startsWith)||void 0===_color$startsWith?void 0:_color$startsWith.call(color,"#"))||(null===(_color$startsWith2=color.startsWith)||void 0===_color$startsWith2?void 0:_color$startsWith2.call(color,"rgb"))||(null===(_color$startsWith3=color.startsWith)||void 0===_color$startsWith3?void 0:_color$startsWith3.call(color,"hsl"))||(null===(_color$startsWith4=color.startsWith)||void 0===_color$startsWith4?void 0:_color$startsWith4.call(color,"lab"))||"transparent"===color},isSvgPath=function isSvgPath(value){return"string"==typeof value&&null!==value.match(/^[Mm][\d.].*[\dzZ]$/)},conversions={AE:"Æ|Ǽ",Ae:"Ä",ae:"ä|æ|ǽ",OE:"Œ",Oe:"Ö",oe:"ö|œ",Ue:"Ü",ue:"ü",IJ:"IJ",ij:"ij",ss:"ß",A:"À|Á|Â|Ã|Ä|Å|Ǻ|Ā|Ă|Ą|Ǎ",a:"à|á|â|ã|å|ǻ|ā|ă|ą|ǎ|ª",C:"Ç|Ć|Ĉ|Ċ|Č",c:"ç|ć|ĉ|ċ|č",D:"Ð|Ď|Đ",d:"ð|ď|đ",E:"È|É|Ê|Ë|Ē|Ĕ|Ė|Ę|Ě",e:"è|é|ê|ë|ē|ĕ|ė|ę|ě",G:"Ĝ|Ğ|Ġ|Ģ",g:"ĝ|ğ|ġ|ģ",H:"Ĥ|Ħ",h:"ĥ|ħ",I:"Ì|Í|Î|Ï|Ĩ|Ī|Ĭ|Ǐ|Į|İ",i:"ì|í|î|ï|ĩ|ī|ĭ|ǐ|į|ı",J:"Ĵ",j:"ĵ",K:"Ķ",k:"ķ",L:"Ĺ|Ļ|Ľ|Ŀ|Ł",l:"ĺ|ļ|ľ|ŀ|ł",N:"Ñ|Ń|Ņ|Ň",n:"ñ|ń|ņ|ň|ʼn",O:"Ò|Ó|Ô|Õ|Ō|Ŏ|Ǒ|Ő|Ơ|Ø|Ǿ",o:"ò|ó|ô|õ|ō|ŏ|ǒ|ő|ơ|ø|ǿ|º",R:"Ŕ|Ŗ|Ř",r:"ŕ|ŗ|ř",S:"Ś|Ŝ|Ş|Š",s:"ś|ŝ|ş|š|ſ",T:"Ţ|Ť|Ŧ",t:"ţ|ť|ŧ",U:"Ù|Ú|Û|Ũ|Ū|Ŭ|Ů|Ű|Ų|Ư|Ǔ|Ǖ|Ǘ|Ǚ|Ǜ",u:"ù|ú|û|ũ|ū|ŭ|ů|ű|ų|ư|ǔ|ǖ|ǘ|ǚ|ǜ",Y:"Ý|Ÿ|Ŷ",y:"ý|ÿ|ŷ",W:"Ŵ",w:"ŵ",Z:"Ź|Ż|Ž",z:"ź|ż|ž",f:"ƒ"},ascii=function ascii(str){return _isType_isEmpty(str)?"":(Object.entries(conversions).forEach((function(_ref){var _ref2=(0,slicedToArray.A)(_ref,2),a=_ref2[0],l=_ref2[1],re=new RegExp(l,"g");str="".concat(str).replace(re,a)})),str)},_getBox=function _getBox(box){var boundingBox=box;return _isType_isEmpty(box)?[0,0,0,0]:("string"==typeof box&&(boundingBox=box.split(",")),Array.isArray(boundingBox)&&(boundingBox=boundingBox.map((function(b){return parseInt(b,10)}))),boundingBox)},getBox=function getBox(){var boundingBox=_getBox(arguments.length>0&&void 0!==arguments[0]?arguments[0]:"0,0,0,0"),_boundingBox=(0,slicedToArray.A)(boundingBox,4),x=_boundingBox[0],y=_boundingBox[1],w=_boundingBox[2],h=_boundingBox[3];return w=x<0?w+x:w,h=y<0?h+y:h,[x=x>0?x:0,y=y>0?y:0,w,h]},react=__webpack_require__("./node_modules/react/index.js"),jsx_runtime=__webpack_require__("./node_modules/react/jsx-runtime.js"),cloneChildren=function cloneChildren(children,callback){var index=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0;return react.Children.map(children,(function(c){var _c$props;return(0,react.isValidElement)(c)?c.type===jsx_runtime.Fragment?cloneChildren(null===(_c$props=c.props)||void 0===_c$props?void 0:_c$props.children,callback):callback(c,index++):c}))};cloneChildren.__docgenInfo={description:"",methods:[],displayName:"cloneChildren"};var Countries={toIso2:function toIso2(code){var ctry=this.find(code);return null!=ctry?ctry.iso2:void 0},toIso3:function toIso3(code){var ctry=this.find(code);return null!=ctry?ctry.iso3:void 0},emoji:function emoji(code){var ctry=this.find(code);return null!=ctry?ctry.emoji:"🏳️"},name:function name(code){var ctry=this.find(code);return null!=ctry?ctry.name:code},find:function find(code){return this.list.find((function(ct){var _ct$alt;return(null!==(_ct$alt=ct.alt)&&void 0!==_ct$alt?_ct$alt:"__").toLowerCase()===code.toLowerCase()||ct.iso3.toLowerCase()===code.toLowerCase()||ct.iso2.toLowerCase()===code.toLowerCase()}))},list:[{continent:"Asia",iso2:"AF",iso3:"AFG",alpha:"A",name:"Afghanistan",fullname:"The Islamic Republic of Afghanistan",capital:"Kabul",tld:".af",currency:"AFN",phone:"+93",emoji:"🇦🇫"},{continent:"Europe",iso2:"AL",iso3:"ALB",alpha:"A",name:"Albania",fullname:"The Republic of Albania",capital:"Tirana",tld:".al",currency:"ALL",phone:"+355",emoji:"🇦🇱"},{continent:"Africa",iso2:"DZ",iso3:"DZA",alpha:"A",name:"Algeria",fullname:"The People's Democratic Republic of Algeria",capital:"Algiers",tld:".dz",currency:"DZD",phone:"+213",emoji:"🇩🇿"},{continent:"Oceania",iso2:"AS",iso3:"ASM",alpha:"A",name:"American Samoa",fullname:"American Samoa",capital:"Pago Pago",tld:".as",currency:"USD",phone:"+1684",emoji:"🇦🇸"},{continent:"Europe",iso2:"AD",iso3:"AND",alpha:"A",name:"Andorra",fullname:"The Principality of Andorra",capital:"Andorra la Vella",tld:".ad",currency:"EUR",phone:"+376",emoji:"🇦🇩"},{continent:"Africa",iso2:"AO",iso3:"AGO",alpha:"A",name:"Angola",fullname:"The Republic of Angola",capital:"Luanda",tld:".ao",currency:"AOA",phone:"+244",emoji:"🇦🇴"},{continent:"North America",iso2:"AI",iso3:"AIA",alpha:"A",name:"Anguilla",fullname:"Anguilla",capital:"The Valley",tld:".ai",currency:"XCD",phone:"+1264",emoji:"🇦🇮"},{continent:"North America",iso2:"AG",iso3:"ATG",alpha:"A",name:"Antigua And Barbuda",fullname:"Antigua and Barbuda",capital:"Saint John’s",tld:".ag",currency:"XCD",phone:"+1268",emoji:"🇦🇬"},{continent:"South America",iso2:"AR",iso3:"ARG",alpha:"A",name:"Argentina",fullname:"The Argentine Republic",capital:"Buenos Aires",tld:".ar",currency:"ARS",phone:"+54",emoji:"🇦🇷"},{continent:"Asia",iso2:"AM",iso3:"ARM",alpha:"A",name:"Armenia",fullname:"The Republic of Armenia",capital:"Yerevan",tld:".am",currency:"AMD",phone:"+374",emoji:"🇦🇲"},{continent:"North America",iso2:"AW",iso3:"ABW",alpha:"A",name:"Aruba",fullname:"Aruba",capital:"Oranjestad",tld:".aw",currency:"ANG",phone:"+297",emoji:"🇦🇼"},{continent:"Oceania",iso2:"AU",iso3:"AUS",alpha:"A",name:"Australia",fullname:"Australia",capital:"Canberra",tld:".au",currency:"AUD",phone:"+61",emoji:"🇦🇺"},{continent:"Europe",iso2:"AT",iso3:"AUT",alpha:"A",name:"Austria",fullname:"The Republic of Austria",capital:"Vienna",tld:".at",currency:"EUR",phone:"+43",emoji:"🇦🇹"},{continent:"Asia",iso2:"AZ",iso3:"AZE",alpha:"A",name:"Azerbaijan",fullname:"The Republic of Azerbaijan",capital:"Baku",tld:".az",currency:"AZN",phone:"+994",emoji:"🇦🇿"},{continent:"North America",iso2:"BS",iso3:"BHS",alpha:"B",name:"Bahamas",fullname:"The Commonwealth of the Bahamas",capital:"Nassau",tld:".bs",currency:"BSD",phone:"+1242",emoji:"🇧🇸"},{continent:"Asia",iso2:"BH",iso3:"BHR",alpha:"B",name:"Bahrain",fullname:"The Kingdom of Bahrain",capital:"Manama",tld:".bh",currency:"BHD",phone:"+973",emoji:"🇧🇭"},{continent:"Asia",iso2:"BD",iso3:"BGD",alpha:"B",name:"Bangladesh",fullname:"The People's Republic of Bangladesh",capital:"Dhaka",tld:".bd",currency:"BDT",phone:"+880",emoji:"🇧🇩"},{continent:"North America",iso2:"BB",iso3:"BRB",alpha:"B",name:"Barbados",fullname:"Barbados",capital:"Bridgetown",tld:".bb",currency:"BBD",phone:"+1246",emoji:"🇧🇧"},{continent:"Europe",iso2:"BY",iso3:"BLR",alpha:"B",name:"Belarus",fullname:"The Republic of Belarus",capital:"Minsk",tld:".by",currency:"BYR",phone:"+375",emoji:"🇧🇾"},{continent:"Europe",iso2:"BE",iso3:"BEL",alpha:"B",name:"Belgium",fullname:"The Kingdom of Belgium",capital:"Brussels",tld:".be",currency:"EUR",phone:"+32",emoji:"🇧🇪"},{continent:"North America",iso2:"BZ",iso3:"BLZ",alpha:"B",name:"Belize",fullname:"Belize",capital:"Belmopan",tld:".bz",currency:"BZD",phone:"+51",emoji:"🇧🇿"},{continent:"Africa",iso2:"BJ",iso3:"BEN",alpha:"B",name:"Benin",fullname:"The Republic of Benin",capital:"Porto-novo",tld:".bj",currency:"XOF",phone:"+229",emoji:"🇧🇯"},{continent:"North America",iso2:"BM",iso3:"BMU",alpha:"B",name:"Bermuda",fullname:"Bermuda",capital:"Hamilton",tld:".bm",currency:"BMD",phone:"+1441",emoji:"🇧🇲"},{continent:"Asia",iso2:"BT",iso3:"BTN",alpha:"B",name:"Bhutan",fullname:"The Kingdom of Bhutan",capital:"Thimphu",tld:".bt",currency:"BTN",phone:"+975",emoji:"🇧🇹"},{continent:"South America",iso2:"BO",iso3:"BOL",alpha:"B",name:"Bolivia",fullname:"The Plurinational State of Bolivia",capital:"La Paz",tld:".bo",currency:"BOB",phone:"+591",emoji:"🇧🇴"},{continent:"Europe",iso2:"BA",iso3:"BIH",alpha:"B",name:"Bosnia And Herzegovina",fullname:"Bosnia and Herzegovina",capital:"Sarajevo",tld:".ba",currency:"BAM",phone:"+387",emoji:"🇧🇦"},{continent:"Africa",iso2:"BW",iso3:"BWA",alpha:"B",name:"Botswana",fullname:"The Republic of Botswana",capital:"Gaborone",tld:".bw",currency:"BWP",phone:"+267",emoji:"🇧🇼"},{continent:"South America",iso2:"BR",iso3:"BRA",alpha:"B",name:"Brazil",fullname:"The Federative Republic of Brazil",capital:"Brasilia",tld:".br",currency:"BRL",phone:"+55",emoji:"🇧🇷"},{continent:"Asia",iso2:"BN",iso3:"BRN",alpha:"B",name:"Brunei Darussalam",fullname:"Brunei Darussalam",capital:"Bandar Seri Begawan",tld:".bn",currency:"BND",phone:"+673",emoji:"🇧🇳"},{continent:"Europe",iso2:"BG",iso3:"BGR",alpha:"B",name:"Bulgaria",fullname:"The Republic of Bulgaria",capital:"Sofia",tld:".bg",currency:"BGN",phone:"+359",emoji:"🇧🇬"},{continent:"Africa",iso2:"BF",iso3:"BFA",alpha:"B",name:"Burkina Faso",fullname:"Burkina Faso",capital:"Ouagadougou",tld:".bf",currency:"XOF",phone:"+226",emoji:"🇧🇫"},{continent:"Africa",iso2:"BI",iso3:"BDI",alpha:"B",name:"Burundi",fullname:"The Republic of Burundi",capital:"Bujumbura",tld:".bi",currency:"BIF",phone:"+257",emoji:"🇧🇮"},{continent:"Asia",iso2:"KH",iso3:"KHM",alpha:"C",name:"Cambodia",fullname:"The Kingdom of Cambodia",capital:"Phnom Penh",tld:".kh",currency:"KHR",phone:"+855",emoji:"🇰🇭"},{continent:"Africa",iso2:"CM",iso3:"CMR",alpha:"C",name:"Cameroon",fullname:"The Republic of Cameroon",capital:"Yaounde",tld:".cm",currency:"XAF",phone:"+237",emoji:"🇨🇲"},{continent:"North America",iso2:"CA",iso3:"CAN",alpha:"C",name:"Canada",fullname:"Canada",capital:"Ottawa",tld:".ca",currency:"CAD",phone:"+1",emoji:"🇨🇦"},{continent:"Africa",iso2:"CV",iso3:"CPV",alpha:"C",name:"Cape Verde",fullname:"Republic of Cabo Verde",capital:"Praia",tld:".cv",currency:"CVE",phone:"+238",emoji:"🇨🇻"},{continent:"North America",iso2:"KY",iso3:"CYM",alpha:"C",name:"Cayman Islands",fullname:"Cayman Islands",capital:"George Town",tld:".ky",currency:"KYD",phone:"+1345",emoji:"🇰🇾"},{continent:"Africa",iso2:"CF",iso3:"CAF",alpha:"C",name:"Central African Republic",fullname:"The Central African Republic",capital:"Bangui",tld:".cf",currency:"XAF",phone:"+236",emoji:"🇨🇫"},{continent:"Africa",iso2:"TD",iso3:"TCD",alpha:"C",name:"Chad",fullname:"The Republic of Chad",capital:"n'Djamena",tld:".td",currency:"XAF",phone:"+235",emoji:"🇹🇩"},{continent:"South America",iso2:"CL",iso3:"CHL",alpha:"C",name:"Chile",fullname:"The Republic of Chile",capital:"Santiago",tld:".cl",currency:"CLP",phone:"+56",emoji:"🇨🇱"},{continent:"Asia",iso2:"CN",iso3:"CHN",alpha:"C",name:"China",fullname:"The People's Republic of China",capital:"Beijing",tld:".cn",currency:"CNY",phone:"+86",emoji:"🇨🇳"},{continent:"South America",iso2:"CO",iso3:"COL",alpha:"C",name:"Colombia",fullname:"The Republic of Colombia",capital:"Bogotá",tld:".co",currency:"COP",phone:"+57",emoji:"🇨🇴"},{continent:"Africa",iso2:"KM",iso3:"COM",alpha:"C",name:"Comoros",fullname:"The Union of the Comoros",capital:"Moroni",tld:".km",currency:"KMF",phone:"+269",emoji:"🇰🇲"},{continent:"Africa",iso2:"CG",iso3:"COG",alpha:"C",name:"Congo",fullname:"The Republic of the Congo",capital:"Brazzaville",tld:".cg",currency:"XAF",phone:"+242",emoji:"🇨🇬"},{continent:"Oceania",iso2:"CK",iso3:"COK",alpha:"C",name:"Cook Islands",fullname:"The Cook Islands",capital:"Avarua",tld:".ck",currency:"NZD",phone:"+682",emoji:"🇨🇰"},{continent:"North America",iso2:"CR",iso3:"CRI",alpha:"C",name:"Costa Rica",fullname:"The Republic of Costa Rica",capital:"San Jose",tld:".cr",currency:"CRC",phone:"+56",emoji:"🇨🇷"},{continent:"Africa",iso2:"CI",iso3:"CIV",alpha:"C",name:"Côte D'ivoire",fullname:"The Republic of Côte d'Ivoire",capital:"Yamoussoukro",tld:".ci",currency:"XOF",phone:"+225",emoji:"🇨🇮"},{continent:"Europe",iso2:"HR",iso3:"HRV",alpha:"C",name:"Croatia",fullname:"The Republic of Croatia",capital:"Zagreb",tld:".hr",currency:"HRK",phone:"+385",emoji:"🇭🇷"},{continent:"North America",iso2:"CU",iso3:"CUB",alpha:"C",name:"Cuba",fullname:"The Republic of Cuba",capital:"Havana",tld:".cu",currency:"CUP",phone:"+53",emoji:"🇨🇺"},{continent:"Asia",iso2:"CY",iso3:"CYP",alpha:"C",name:"Cyprus",fullname:"The Republic of Cyprus",capital:"Nicosia",tld:".cy",currency:"CYP",phone:"+357",emoji:"🇨🇾"},{continent:"Europe",iso2:"CZ",iso3:"CZE",alpha:"C",name:"Czech Republic",fullname:"The Czech Republic",capital:"Prague",tld:".cz",currency:"CZK",phone:"+420",emoji:"🇨🇿"},{continent:"Europe",iso2:"DK",iso3:"DNK",alpha:"D",name:"Denmark",fullname:"The Kingdom of Denmark",capital:"Copenhagen",tld:".dk",currency:"DKK",phone:"+45",emoji:"🇩🇰"},{continent:"Africa",iso2:"DJ",iso3:"DJI",alpha:"D",name:"Djibouti",fullname:"The Republic of Djibouti",capital:"Djibouti",tld:"dj",currency:"DJF",phone:"+253",emoji:"🇩🇯"},{continent:"North America",iso2:"DM",iso3:"DMA",alpha:"D",name:"Dominica",fullname:"The Commonwealth of Dominica",capital:"Roseau",tld:".dm",currency:"XCD",phone:"+1767",emoji:"🇩🇲"},{continent:"South America",iso2:"DO",iso3:"DOM",alpha:"D",name:"Dominican Republic",fullname:"The Dominican Republic",capital:"Santo Domingo",tld:".do",currency:"DOP",phone:"+1809",emoji:"🇩🇴"},{continent:"Africa",iso2:"CD",iso3:"COD",alpha:"D",name:"DR Congo",fullname:"The Democratic Republic of the Congo",capital:"Kinshasa",tld:".cd",currency:"CDF",phone:"+243",emoji:"🇨🇩"},{continent:"Oceania",iso2:"TL",iso3:"TLS",alpha:"E",name:"East Timor",fullname:"The Democratic Republic of Timor-Leste",capital:"Dilli",tld:".tl",currency:"IDR",phone:"+670",emoji:"🇹🇱"},{continent:"South America",iso2:"EC",iso3:"ECU",alpha:"E",name:"Ecuador",fullname:"The Republic of Ecuador",capital:"Quito",tld:".ec",currency:"USD",phone:"+593",emoji:"🇪🇨"},{continent:"Africa",iso2:"EG",iso3:"EGY",alpha:"E",name:"Egypt",fullname:"The Arab Republic of Egypt",capital:"Cairo",tld:".eg",currency:"EGP",phone:"+20",emoji:"🇪🇬"},{continent:"North America",iso2:"SV",iso3:"SLV",alpha:"E",name:"El Salvador",fullname:"The Republic of el Salvador",capital:"San Salvador",tld:".sv",currency:"SVC",phone:"+53",emoji:"🇸🇻"},{continent:"Africa",iso2:"GQ",iso3:"GNQ",alpha:"E",name:"Equatorial Guinea",fullname:"The Republic of Equatorial Guinea",capital:"Malabo",tld:".gq",currency:"XAF",phone:"+240",emoji:"🇬🇶"},{continent:"Africa",iso2:"ER",iso3:"ERI",alpha:"E",name:"Eritrea",fullname:"The State of Eritrea",capital:"Asmara",tld:".er",currency:"ERN",phone:"+291",emoji:"🇪🇷"},{continent:"Europe",iso2:"EE",iso3:"EST",alpha:"E",name:"Estonia",fullname:"The Republic of Estonia",capital:"Tallinn",tld:".ee",currency:"EEK",phone:"+372",emoji:"🇪🇪"},{continent:"Africa",iso2:"ET",iso3:"ETH",alpha:"E",name:"Ethiopia",fullname:"The Federal Democratic Republic of Ethiopia",capital:"Addis Ababa",tld:".et",currency:"ETB",phone:"+251",emoji:"🇪🇹"},{continent:"Europe",iso2:"FO",iso3:"FRO",alpha:"F",name:"Faroe Islands",fullname:"Faroe Islands",capital:"Palikir",tld:".fo",currency:"DKK",phone:"+298",emoji:"🇫🇴"},{continent:"Oceania",iso2:"FJ",iso3:"FJI",alpha:"F",name:"Fiji",fullname:"The Republic of Fiji",capital:"Suva",tld:".fj",currency:"FJD",phone:"+679",emoji:"🇫🇯"},{continent:"Europe",iso2:"FI",iso3:"FIN",alpha:"F",name:"Finland",fullname:"The Republic of Finland",capital:"Helsinki",tld:".fi",currency:"EUR",phone:"+358",emoji:"🇫🇮"},{continent:"Europe",iso2:"FR",iso3:"FRA",alpha:"F",name:"France",fullname:"The French Republic",capital:"Paris",tld:".fr",currency:"EUR",phone:"+33",emoji:"🇫🇷"},{continent:"South America",iso2:"GF",iso3:"GUF",alpha:"F",name:"French Guyana",fullname:"French Guyana",capital:"Cayenne",tld:".gf",currency:"EUR",phone:"+594",emoji:"🇬🇫"},{continent:"Oceania",iso2:"PF",iso3:"PYF",alpha:"F",name:"French Polynesia",fullname:"French Polynesia",capital:"Papeete",tld:".pf",currency:"XPF",phone:"+689",emoji:"🇵🇫"},{continent:"Africa",iso2:"GA",iso3:"GAB",alpha:"G",name:"Gabon",fullname:"The Gabonese Republic",capital:"Libreville",tld:".ga",currency:"XAF",phone:"+241",emoji:"🇬🇦"},{continent:"Africa",iso2:"GM",iso3:"GMB",alpha:"G",name:"Gambia",fullname:"The Republic of the Gambia",capital:"Banjul",tld:".gm",currency:"GMD",phone:"+220",emoji:"🇬🇲"},{continent:"Europe",iso2:"GE",iso3:"GEO",alpha:"G",name:"Georgia",fullname:"Georgia",capital:"Tbilisi",tld:".ge",currency:"GEL",phone:"+995",emoji:"🇬🇪"},{continent:"Europe",iso2:"DE",iso3:"DEU",alpha:"G",name:"Germany",fullname:"The Federal Republic of Germany",capital:"Berlin",tld:".de",currency:"EUR",phone:"+49",emoji:"🇩🇪"},{continent:"Africa",iso2:"GH",iso3:"GHA",alpha:"G",name:"Ghana",fullname:"The Republic of Ghana",capital:"Accra",tld:".gh",currency:"GHC",phone:"+233",emoji:"🇬🇭"},{continent:"Africa",iso2:"GI",iso3:"GIB",alpha:"G",name:"Gibraltar",fullname:"Gibraltar",capital:"Gibraltar",tld:".gi",currency:"GIP",phone:"+350",emoji:"🇬🇮"},{continent:"Europe",iso2:"GR",iso3:"GRC",alpha:"G",name:"Greece",fullname:"The Hellenic Republic",capital:"Athens",tld:".gr",currency:"EUR",phone:"+30",emoji:"🇬🇷"},{continent:"North America",iso2:"GL",iso3:"GRL",alpha:"G",name:"Greenland",fullname:"Greenland",capital:"Nuuk",tld:".gl",currency:"DKK",phone:"+299",emoji:"🇬🇱"},{continent:"North America",iso2:"GD",iso3:"GRD",alpha:"G",name:"Grenada",fullname:"Grenada",capital:"Saint George’s",tld:".gd",currency:"XCD",phone:"+1473",emoji:"🇬🇩"},{continent:"North America",iso2:"GP",iso3:"GLP",alpha:"G",name:"Guadeloupe",fullname:"Guadeloupe",capital:"Basse-Terre",tld:".gp",currency:"EUR",phone:"+590",emoji:"🇬🇵"},{continent:"Asia",iso2:"GU",iso3:"GUM",alpha:"G",name:"Guam",fullname:"Guam",capital:"Hagåtña",tld:".gu",currency:"USD",phone:"+1671",emoji:"🇬🇺"},{continent:"North America",iso2:"GT",iso3:"GTM",alpha:"G",name:"Guatemala",fullname:"The Republic of Guatemala",capital:"Guatemala City",tld:".gt",currency:"GTQ",phone:"+52",emoji:"🇬🇹"},{continent:"Europe",iso2:"GG",iso3:"GGY",alpha:"G",name:"Guernsey",fullname:"Guernsey",capital:"St. Peter Port",tld:".gg",currency:"GGP",phone:"+44",emoji:"🇬🇬"},{continent:"Africa",iso2:"GN",iso3:"GIN",alpha:"G",name:"Guinea",fullname:"The Republic of Guinea",capital:"Conakry",tld:".gn",currency:"GNF",phone:"+224",emoji:"🇬🇳"},{continent:"Africa",iso2:"GW",iso3:"GNB",alpha:"G",name:"Guinea-bissau",fullname:"The Republic of Guinea-bissau",capital:"Bissau",tld:".gw",currency:"XOF",phone:"+245",emoji:"🇬🇼"},{continent:"South America",iso2:"GY",iso3:"GUY",alpha:"G",name:"Guyana",fullname:"The Republic of Guyana",capital:"Georgetown",tld:".gy",currency:"GYD",phone:"+592",emoji:"🇬🇾"},{continent:"North America",iso2:"HT",iso3:"HTI",alpha:"H",name:"Haiti",fullname:"The Republic of Haiti",capital:"Port-au-prince",tld:".ht",currency:"USD",phone:"+59",emoji:"🇭🇹"},{continent:"North America",iso2:"HN",iso3:"HND",alpha:"H",name:"Honduras",fullname:"The Republic of Honduras",capital:"Tegucigalpa",tld:".hn",currency:"HNL",phone:"+54",emoji:"🇭🇳"},{continent:"Asia",iso2:"HK",iso3:"HKG",alpha:"H",name:"Hong Kong",fullname:"Hong Kong Special Administrative Region of the People's Republic of China",capital:"Hong Kong",tld:".hk",currency:"HNL",phone:"+852",emoji:"🇭🇰"},{continent:"Europe",iso2:"HU",iso3:"HUN",alpha:"H",name:"Hungary",fullname:"Hungary",capital:"Budapest",tld:".hu",currency:"HUF",phone:"+36",emoji:"🇭🇺"},{continent:"Europe",iso2:"IS",iso3:"ISL",alpha:"I",name:"Iceland",fullname:"The Republic of Iceland",capital:"Reykjavik",tld:".is",currency:"ISK",phone:"+354",emoji:"🇮🇸"},{continent:"Asia",iso2:"IN",iso3:"IND",alpha:"I",name:"India",fullname:"The Republic of India",capital:"New Delhi",tld:".in",currency:"INR",phone:"+91",emoji:"🇮🇳"},{continent:"Asia",iso2:"ID",iso3:"IDN",alpha:"I",name:"Indonesia",fullname:"The Republic of Indonesia",capital:"Jakarta",tld:".id",currency:"IDR",phone:"+62",emoji:"🇮🇩"},{continent:"Asia",iso2:"IR",iso3:"IRN",alpha:"I",name:"Iran",fullname:"The Islamic Republic of Iran",capital:"Tehran",tld:".ir",currency:"IRR",phone:"+98",emoji:"🇮🇷"},{continent:"Asia",iso2:"IQ",iso3:"IRQ",alpha:"I",name:"Iraq",fullname:"The Republic of Iraq",capital:"Baghdad",tld:".iq",currency:"IQD",phone:"+964",emoji:"🇮🇶"},{continent:"Europe",iso2:"IE",iso3:"IRL",alpha:"I",name:"Ireland",fullname:"Ireland",capital:"Dublin",tld:".ie",currency:"EUR",phone:"+353",emoji:"🇮🇪"},{continent:"Europe",iso2:"IM",iso3:"IMN",alpha:"I",name:"Isle Of Man",fullname:"Isle Of Man",capital:"Douglas",tld:".im",currency:"IMP",phone:"+44",emoji:"🇮🇲"},{continent:"Asia",iso2:"IL",iso3:"ISR",alpha:"I",name:"Israel",fullname:"The State of Israel",capital:"Tel Aviv",tld:".il",currency:"ILS",phone:"+972",emoji:"🇮🇱"},{continent:"Europe",iso2:"IT",iso3:"ITA",alpha:"I",name:"Italy",fullname:"The Republic of Italy",capital:"Rome",tld:".it",currency:"EUR",phone:"+39",emoji:"🇮🇹"},{continent:"North America",iso2:"JM",iso3:"JAM",alpha:"J",name:"Jamaica",fullname:"Jamaica",capital:"Kingston",tld:".jm",currency:"JMD",phone:"+1876",emoji:"🇯🇲"},{continent:"Asia",iso2:"JP",iso3:"JPN",alpha:"J",name:"Japan",fullname:"Japan",capital:"Tokyo",tld:".jp",currency:"JPY",phone:"+81",emoji:"🇯🇵"},{continent:"Europe",iso2:"JE",iso3:"JEY",alpha:"J",name:"Jersey",fullname:"Jersey",capital:"Saint Helier",tld:".je",currency:"JEP",phone:"+44",emoji:"🇯🇪"},{continent:"Asia",iso2:"JO",iso3:"JOR",alpha:"J",name:"Jordan",fullname:"The Hashemite Kingdom of Jordan",capital:"Amman",tld:".jo",currency:"JOD",phone:"+962",emoji:"🇯🇴"},{continent:"Asia",iso2:"KZ",iso3:"KAZ",alpha:"K",name:"Kazakhstan",fullname:"The Republic of Kazakhstan",capital:"Astana",tld:".kz",currency:"KZT",phone:"+7",emoji:"🇰🇿"},{continent:"Africa",iso2:"KE",iso3:"KEN",alpha:"K",name:"Kenya",fullname:"The Republic of Kenya",capital:"Nairobi",tld:".ke",currency:"KES",phone:"+254",emoji:"🇰🇪"},{continent:"Oceania",iso2:"KI",iso3:"KIR",alpha:"K",name:"Kiribati",fullname:"The Republic of Kiribati",capital:"Tarawa Atoll",tld:".ki",currency:"AUD",phone:"+686",emoji:"🇰🇮"},{continent:"Asia",iso2:"KW",iso3:"KWT",alpha:"K",name:"Kuwait",fullname:"The State of Kuwait",capital:"Kuwait City",tld:".kw",currency:"KWD",phone:"+965",emoji:"🇰🇼"},{continent:"Asia",iso2:"KG",iso3:"KGZ",alpha:"K",name:"Kyrgyzstan",fullname:"The Kyrgyz Republic",capital:"Bishkek",tld:".kg",currency:"KGS",phone:"+996",emoji:"🇰🇬"},{continent:"Asia",iso2:"LA",iso3:"LAO",alpha:"L",name:"Laos",fullname:"The Lao People's Democratic Republic",capital:"Vientiane",tld:".la",currency:"LAK",phone:"+856",emoji:"🇱🇦"},{continent:"Europe",iso2:"LV",iso3:"LVA",alpha:"L",name:"Latvia",fullname:"The Republic of Latvia",capital:"Riga",tld:".lv",currency:"LVL",phone:"+371",emoji:"🇱🇻"},{continent:"Asia",iso2:"LB",iso3:"LBN",alpha:"L",name:"Lebanon",fullname:"The Lebanese Republic",capital:"Beirut",tld:".lb",currency:"LBP",phone:"+961",emoji:"🇱🇧"},{continent:"Africa",iso2:"LS",iso3:"LSO",alpha:"L",name:"Lesotho",fullname:"The Kingdom of Lesotho",capital:"Maseru",tld:".ls",currency:"LSL",phone:"+266",emoji:"🇱🇸"},{continent:"Africa",iso2:"LR",iso3:"LBR",alpha:"L",name:"Liberia",fullname:"The Republic of Liberia",capital:"Monrovia",tld:".lr",currency:"LRD",phone:"+231",emoji:"🇱🇷"},{continent:"Africa",iso2:"LY",iso3:"LBY",alpha:"L",name:"Libya",fullname:"Libya",capital:"Tripoli",tld:".ly",currency:"LYD",phone:"+218",emoji:"🇱🇾"},{continent:"Europe",iso2:"LI",iso3:"LIE",alpha:"L",name:"Liechtenstein",fullname:"The Principality of Liechtenstein",capital:"Vaduz",tld:".li",currency:"CHF",phone:"+423",emoji:"🇱🇮"},{continent:"Europe",iso2:"LT",iso3:"LTU",alpha:"L",name:"Lithuania",fullname:"The Republic of Lithuania",capital:"Vilnius",tld:".lt",currency:"LTL",phone:"+370",emoji:"🇱🇹"},{continent:"Europe",iso2:"LU",iso3:"LUX",alpha:"L",name:"Luxembourg",fullname:"The Grand Duchy of Luxembourg",capital:"Luxembourg",tld:".lu",currency:"EUR",phone:"+352",emoji:"🇱🇺"},{continent:"Asia",iso2:"MO",iso3:"MAC",alpha:"M",name:"Macao",fullname:"Macao Special Administrative Region of the People's Republic of China",capital:"Macao",tld:".mo",currency:"MOP",phone:"+853",emoji:"🇲🇴"},{continent:"Europe",iso2:"MK",iso3:"MKD",alpha:"M",name:"Macedonia",fullname:"The Former Yugoslav Republic of Macedonia",capital:"Skopje",tld:".mk",currency:"MKD",phone:"+389",emoji:"🇲🇰"},{continent:"Africa",iso2:"MG",iso3:"MDG",alpha:"M",name:"Madagascar",fullname:"The Republic of Madagascar",capital:"Antananarivo",tld:".mg",currency:"MGA",phone:"+261",emoji:"🇲🇬"},{continent:"Africa",iso2:"MW",iso3:"MWI",alpha:"M",name:"Malawi",fullname:"The Republic of Malawi",capital:"Lilongwe",tld:".mw",currency:"MWK",phone:"+265",emoji:"🇲🇼"},{continent:"Asia",iso2:"MY",iso3:"MYS",alpha:"M",name:"Malaysia",fullname:"Malaysia",capital:"Kuala Lumpur",tld:".my",currency:"MYR",phone:"+60",emoji:"🇲🇾"},{continent:"Asia",iso2:"MV",iso3:"MDV",alpha:"M",name:"Maldives",fullname:"The Republic of Maldives",capital:"Male",tld:".mv",currency:"MVR",phone:"+960",emoji:"🇲🇻"},{continent:"Africa",iso2:"ML",iso3:"MLI",alpha:"M",name:"Mali",fullname:"The Republic of Mali",capital:"Bamako",tld:".ml",currency:"XOF",phone:"+223",emoji:"🇲🇱"},{continent:"Europe",iso2:"MT",iso3:"MLT",alpha:"M",name:"Malta",fullname:"The Republic of Malta",capital:"Valletta",tld:".mt",currency:"EUR",phone:"+356",emoji:"🇲🇹"},{continent:"Oceania",iso2:"MH",iso3:"MHL",alpha:"M",name:"Marshall Islands",fullname:"The Republic of the Marshall Islands",capital:"Majuro",tld:".mh",currency:"USD",phone:"+692",emoji:"🇲🇭"},{continent:"North America",iso2:"MQ",iso3:"MTQ",alpha:"M",name:"Martinique",fullname:"Martinique",capital:"Fort-de-France",tld:".mq",currency:"EUR",phone:"+596",emoji:"🇲🇶"},{continent:"Africa",iso2:"MR",iso3:"MRT",alpha:"M",name:"Mauritania",fullname:"The Islamic Republic of Mauritania",capital:"Nouakchott",tld:".mr",currency:"MRO",phone:"+222",emoji:"🇲🇷"},{continent:"Africa",iso2:"MU",iso3:"MUS",alpha:"M",name:"Mauritius",fullname:"The Republic of Mauritius",capital:"Port Louis",tld:".mu",currency:"MUR",phone:"+230",emoji:"🇲🇺"},{continent:"Africa",iso2:"YT",iso3:"MYT",alpha:"M",name:"Mayotte",fullname:"The Department of Mayotte",capital:"Mamoudzou",tld:".yt",currency:"EUR",phone:"+269",emoji:"🇾🇹"},{continent:"North America",iso2:"MX",iso3:"MEX",alpha:"M",name:"Mexico",fullname:"The United Mexican States",capital:"Mexico City",tld:".mx",currency:"MXN",phone:"+52",emoji:"🇲🇽"},{continent:"Oceania",iso2:"FM",iso3:"FSM",alpha:"M",name:"Micronesia",fullname:"The Federated States of Micronesia",capital:"Palikir",tld:".fm",currency:"USD",phone:"+691",emoji:"🇫🇲"},{continent:"Europe",iso2:"MD",iso3:"MDA",alpha:"M",name:"Moldova",fullname:"The Republic of Moldova",capital:"Chisinau",tld:".md",currency:"MDL",phone:"+373",emoji:"🇲🇩"},{continent:"Europe",iso2:"MC",iso3:"MCO",alpha:"M",name:"Monaco",fullname:"The Principality of Monaco",capital:"Monaco",tld:".mc",currency:"EUR",phone:"+377",emoji:"🇲🇨"},{continent:"Asia",iso2:"MN",iso3:"MNG",alpha:"M",name:"Mongolia",fullname:"Mongolia",capital:"Ulaanbaatar",tld:".mn",currency:"MNT",phone:"+976",emoji:"🇲🇳"},{continent:"Europe",iso2:"ME",iso3:"MNE",alpha:"M",name:"Montenegro",fullname:"Montenegro",capital:"Podgorica",tld:".me",currency:"EUR",phone:"+382",emoji:"🇲🇪"},{continent:"North America",iso2:"MS",iso3:"MSR",alpha:"M",name:"Montserrat",fullname:"Montserrat",capital:"Plymouth",tld:".ms",currency:"XCD",phone:"+1664",emoji:"🇲🇸"},{continent:"Africa",iso2:"MA",iso3:"MAR",alpha:"M",name:"Morocco",fullname:"The Kingdom of Morocco",capital:"Rabat",tld:".ma",currency:"MAD",phone:"+211",emoji:"🇲🇦"},{continent:"Africa",iso2:"MZ",iso3:"MOZ",alpha:"M",name:"Mozambique",fullname:"The Republic of Mozambique",capital:"Maputo",tld:".mz",currency:"MZM",phone:"+258",emoji:"🇲🇿"},{continent:"Asia",iso2:"MM",iso3:"MMR",alpha:"M",name:"Myanmar",fullname:"The Republic of the Union of Myanmar",capital:"Nypyidaw",tld:".mm",currency:"MMK",phone:"+95",emoji:"🇲🇲"},{continent:"Africa",iso2:"NA",iso3:"NAM",alpha:"N",name:"Namibia",fullname:"The Republic of Namibia",capital:"Windhoek",tld:".na",currency:"ZAR",phone:"+264",emoji:"🇳🇦"},{continent:"Oceania",iso2:"NR",iso3:"NRU",alpha:"N",name:"Nauru",fullname:"The Republic of Nauru",capital:"Yaren District",tld:".nr",currency:"AUD",phone:"+674",emoji:"🇳🇷"},{continent:"Asia",iso2:"NP",iso3:"NPL",alpha:"N",name:"Nepal",fullname:"The Federal Democratic Republic of Nepal",capital:"Kathmandu",tld:".np",currency:"NPR",phone:"+977",emoji:"🇳🇵"},{continent:"Europe",iso2:"NL",iso3:"NLD",alpha:"N",name:"Netherlands",fullname:"The Kingdom of the Netherlands",capital:"Amsterdam",tld:".nl",currency:"EUR",phone:"+31",emoji:"🇳🇱"},{continent:"Oceania",iso2:"NZ",iso3:"NZL",alpha:"N",name:"New Zealand",fullname:"New Zealand",capital:"Wellington",tld:".nz",currency:"NZD",phone:"+64",emoji:"🇳🇿"},{continent:"North America",iso2:"NI",iso3:"NIC",alpha:"N",name:"Nicaragua",fullname:"The Republic of Nicaragua",capital:"Managua",tld:".ni",currency:"NIO",phone:"+55",emoji:"🇳🇮"},{continent:"Africa",iso2:"NE",iso3:"NER",alpha:"N",name:"Niger",fullname:"The Republic of the Niger",capital:"Niamey",tld:".ne",currency:"XOF",phone:"+227",emoji:"🇳🇪"},{continent:"Africa",iso2:"NG",iso3:"NGA",alpha:"N",name:"Nigeria",fullname:"The Federal Republic of Nigeria",capital:"Abuja",tld:".ng",currency:"NGN",phone:"+234",emoji:"🇳🇬"},{continent:"Asia",iso2:"KP",iso3:"PRK",alpha:"N",name:"North Korea",fullname:"The Democratic People's Republic of Korea",capital:"Pyongyang",tld:".kp",currency:"KPW",phone:"+850",emoji:"🇰🇵"},{continent:"Europe",iso2:"NO",iso3:"NOR",alpha:"N",name:"Norway",fullname:"The Kingdom of Norway",capital:"Oslo",tld:".no",currency:"NOK",phone:"+47",emoji:"🇳🇴"},{continent:"Asia",iso2:"OM",iso3:"OMN",alpha:"O",name:"Oman",fullname:"The Sultanate of Oman",capital:"Muscat",tld:".om",currency:"OMR",phone:"+968",emoji:"🇴🇲"},{continent:"Asia",iso2:"PK",iso3:"PAK",alpha:"P",name:"Pakistan",fullname:"The Islamic Republic of Pakistan",capital:"Islamabad",tld:".pk",currency:"PKR",phone:"+92",emoji:"🇵🇰"},{continent:"Oceania",iso2:"PW",iso3:"PLW",alpha:"P",name:"Palau",fullname:"The Republic of Palau",capital:"Ngerulmud",tld:".pw",currency:"USD",phone:"+680",emoji:"🇵🇼"},{continent:"Asia",iso2:"PS",iso3:"PSE",alpha:"P",name:"Palestine",fullname:"The State of Palestine",capital:"Ramallah",tld:".ps",currency:"",phone:"+970",emoji:"🇵🇸"},{continent:"South America",iso2:"PA",iso3:"PAN",alpha:"P",name:"Panama",fullname:"The Republic of Panama",capital:"Panama City",tld:".pa",currency:"USD",phone:"+57",emoji:"🇵🇦"},{continent:"Oceania",iso2:"PG",iso3:"PNG",alpha:"P",name:"Papua New Guinea",fullname:"Independent State of Papua New Guinea",capital:"Port Moresby",tld:".pg",currency:"PGK",phone:"+675",emoji:"🇵🇬"},{continent:"South America",iso2:"PY",iso3:"PRY",alpha:"P",name:"Paraguay",fullname:"The Republic of Paraguay",capital:"Asunción",tld:".py",currency:"PYG",phone:"+595",emoji:"🇵🇾"},{continent:"South America",iso2:"PE",iso3:"PER",alpha:"P",name:"Peru",fullname:"The Republic of Peru",capital:"Lima",tld:".pe",currency:"PEN",phone:"+51",emoji:"🇵🇪"},{continent:"Asia",iso2:"PH",iso3:"PHL",alpha:"P",name:"Philippines",fullname:"The Republic of the Philippines",capital:"Manila",tld:".ph",currency:"PHP",phone:"+63",emoji:"🇵🇭"},{continent:"Oceania",iso2:"PN",iso3:"PCN",alpha:"P",name:"Pitcairn",fullname:"Pitcairn",capital:"Adamstown",tld:".pn",currency:"NZD",phone:"+649",emoji:"🇵🇳"},{continent:"Europe",iso2:"PL",iso3:"POL",alpha:"P",name:"Poland",fullname:"The Republic of Poland",capital:"Warsaw",tld:".pl",currency:"PLN",phone:"+48",emoji:"🇵🇱"},{continent:"Europe",iso2:"PT",iso3:"PRT",alpha:"P",name:"Portugal",fullname:"The Portuguese Republic",capital:"Lisbon",tld:".pt",currency:"EUR",phone:"+351",emoji:"🇵🇹"},{continent:"North America",iso2:"PR",iso3:"PRI",alpha:"P",name:"Puerto Rico",fullname:"The Commonwealth of Puerto Rico",capital:"San Juan",tld:".pr",currency:"USD",phone:"+1939",emoji:"🇵🇷"},{continent:"Asia",iso2:"QA",iso3:"QAT",alpha:"Q",name:"Qatar",fullname:"The State of Qatar",capital:"Doha",tld:".qa",currency:"QAR",phone:"+974",emoji:"🇶🇦"},{continent:"Africa",iso2:"RE",iso3:"REU",alpha:"R",name:"Réunion",fullname:"Réunion",capital:"Saint-Denis",tld:".re",currency:"EUR",phone:"+262",emoji:"🇷🇪"},{continent:"Europe",iso2:"RO",iso3:"ROU",alpha:"R",name:"Romania",fullname:"Romania",capital:"Bucharest",tld:".ro",currency:"RON",phone:"+40",emoji:"🇷🇴"},{continent:"Asia",iso2:"RU",iso3:"RUS",alpha:"R",name:"Russia",fullname:"The Russian Federation",capital:"Moscow",tld:".ru",currency:"RUB",phone:"+7",emoji:"🇷🇺"},{continent:"Africa",iso2:"RW",iso3:"RWA",alpha:"R",name:"Rwanda",fullname:"The Republic of Rwanda",capital:"Kigali",tld:".rw",currency:"RWF",phone:"+250",emoji:"🇷🇼"},{continent:"Africa",iso2:"SH",iso3:"SHN",alpha:"S",name:"Saint Helena",fullname:"Saint Helena",capital:"Jamestown",tld:".sh",currency:"SHP",phone:"+290",emoji:"🇸🇭"},{continent:"North America",iso2:"KN",iso3:"KNA",alpha:"S",name:"Saint Kitts And Nevis",fullname:"Saint Kitts and Nevis",capital:"Basseterre",tld:".kn",currency:"XCD",phone:"+1869",emoji:"🇰🇳"},{continent:"South America",iso2:"LC",iso3:"LCA",alpha:"S",name:"Saint Lucia",fullname:"Saint Lucia",capital:"Castries",tld:".lc",currency:"XCD",phone:"+1758",emoji:"🇱🇨"},{continent:"North America",iso2:"PM",iso3:"SPM",alpha:"S",name:"Saint Pierre And Miquelon",fullname:"Saint Pierre And Miquelon",capital:"Saint-Pierre",tld:".pm",currency:"EUR",phone:"+508",emoji:"🇵🇲"},{continent:"South America",iso2:"VC",iso3:"VCT",alpha:"S",name:"Saint Vincent And The Grenadines",fullname:"Saint Vincent and the Grenadines",capital:"Kingstown",tld:".vc",currency:"XCD",phone:"+1784",emoji:"🇻🇨"},{continent:"Oceania",iso2:"WS",iso3:"WSM",alpha:"S",name:"Samoa",fullname:"The Independent State of Samoa",capital:"Apia",tld:".ws",currency:"WST",phone:"+685",emoji:"🇼🇸"},{continent:"Europe",iso2:"SM",iso3:"SMR",alpha:"S",name:"San Marino",fullname:"The Republic of San Marino",capital:"San Marino",tld:".sm",currency:"EUR",phone:"+378",emoji:"🇸🇲"},{continent:"Africa",iso2:"ST",iso3:"STP",alpha:"S",name:"São Tomé and Príncipe",fullname:"The Democratic Republic of São Tomé and Príncipe",capital:"São Tomé",tld:".st",currency:"STD",phone:"+239",emoji:"🇸🇹"},{continent:"Asia",iso2:"SA",iso3:"SAU",alpha:"S",name:"Saudi Arabia",fullname:"The Kingdom of Saudi Arabia",capital:"Riyadh",tld:".sa",currency:"SAR",phone:"+966",emoji:"🇸🇦"},{continent:"Africa",iso2:"SN",iso3:"SEN",alpha:"S",name:"Senegal",fullname:"The Republic of Senegal",capital:"Dakar",tld:".sn",currency:"XOF",phone:"+221",emoji:"🇸🇳"},{continent:"Europe",iso2:"RS",iso3:"SRB",alpha:"S",name:"Serbia",fullname:"The Republic of Serbia",capital:"Belgrade",tld:".cs",currency:"EUR",phone:"+381",emoji:"🇷🇸"},{continent:"Africa",iso2:"SC",iso3:"SYC",alpha:"S",name:"Seychelles",fullname:"The Republic of Seychelles",capital:"Victoria",tld:".sc",currency:"SCR",phone:"+248",emoji:"🇸🇨"},{continent:"Africa",iso2:"SL",iso3:"SLE",alpha:"S",name:"Sierra Leone",fullname:"The Republic of Sierra Leone",capital:"Freetown",tld:".sl",currency:"SLL",phone:"+232",emoji:"🇸🇱"},{continent:"Asia",iso2:"SG",iso3:"SGP",alpha:"S",name:"Singapore",fullname:"The Republic of Singapore",capital:"Singapore",tld:".sg",currency:"SGD",phone:"+65",emoji:"🇸🇬"},{continent:"Europe",iso2:"SK",iso3:"SVK",alpha:"S",name:"Slovakia",fullname:"The Slovak Republic",capital:"Bratislava",tld:".sk",currency:"SKK",phone:"+421",emoji:"🇸🇰"},{continent:"Europe",iso2:"SI",iso3:"SVN",alpha:"S",name:"Slovenia",fullname:"The Republic of Slovenia",capital:"Ljubljana",tld:".si",currency:"SIT",phone:"+386",emoji:"🇸🇮"},{continent:"Oceania",iso2:"SB",iso3:"SLB",alpha:"S",name:"Solomon Islands",fullname:"Solomon Islands",capital:"Honiara",tld:".sb",currency:"SBD",phone:"+677",emoji:"🇸🇧"},{continent:"Africa",iso2:"SO",iso3:"SOM",alpha:"S",name:"Somalia",fullname:"The Federal Republic of Somalia",capital:"Mogadishu",tld:".so",currency:"SOS",phone:"+252",emoji:"🇸🇴"},{continent:"Africa",iso2:"ZA",iso3:"ZAF",alpha:"S",name:"South Africa",fullname:"The Republic of South Africa",capital:"Pretoria",tld:".za",currency:"ZAR",phone:"+27",emoji:"🇿🇦"},{continent:"Asia",iso2:"KR",iso3:"KOR",alpha:"S",name:"South Korea",fullname:"The Republic of Korea",capital:"Seoul",tld:".kr",currency:"KRW",phone:"+82",emoji:"🇰🇷"},{continent:"Africa",iso2:"SS",iso3:"SSD",alpha:"S",name:"South Sudan",fullname:"The Republic of South Sudan",capital:"Juba",tld:".ss",currency:"SSP",phone:"+221",emoji:"🇸🇸"},{continent:"Europe",iso2:"ES",iso3:"ESP",alpha:"S",name:"Spain",fullname:"The Kingdom of Spain",capital:"Madrid",tld:".es",currency:"EUR",phone:"+34",emoji:"🇪🇸"},{continent:"Asia",iso2:"LK",iso3:"LKA",alpha:"S",name:"Sri Lanka",fullname:"The Democratic Socialist Republic of Sri Lanka",capital:"Colombo",tld:".lk",currency:"LKR",phone:"+94",emoji:"🇱🇰"},{continent:"Africa",iso2:"SD",iso3:"SDN",alpha:"S",name:"Sudan",fullname:"The Republic of the Sudan",capital:"Khartoum",tld:".sd",currency:"SDD",phone:"+249",emoji:"🇸🇩"},{continent:"South America",iso2:"SR",iso3:"SUR",alpha:"S",name:"Suriname",fullname:"The Republic of Suriname",capital:"Paramaribo",tld:".sr",currency:"SRD",phone:"+597",emoji:"🇸🇷"},{continent:"Africa",iso2:"SZ",iso3:"SWZ",alpha:"S",name:"Swaziland",fullname:"The Kingdom of Swaziland",capital:"Mbabane",tld:".sz",currency:"SZL",phone:"+268",emoji:"🇸🇿"},{continent:"Europe",iso2:"SE",iso3:"SWE",alpha:"S",name:"Sweden",fullname:"The Kingdom of Sweden",capital:"Stockholm",tld:".se",currency:"SEK",phone:"+46",emoji:"🇸🇪"},{continent:"Europe",iso2:"CH",iso3:"CHE",alpha:"S",name:"Switzerland",fullname:"The Swiss Confederation",capital:"Bern",tld:".ch",currency:"CHF",phone:"+41",emoji:"🇨🇭"},{continent:"Asia",iso2:"SY",iso3:"SYR",alpha:"S",name:"Syria",fullname:"The Syrian Arab Republic",capital:"Damascus",tld:".sy",currency:"SYP",phone:"+963",emoji:"🇸🇾"},{continent:"Asia",iso2:"TW",iso3:"TWN",alpha:"T",name:"Taiwan",fullname:"Taiwan",capital:"Taipei",tld:".tw",currency:"TWD",phone:"+886",emoji:"🇹🇼"},{continent:"Asia",iso2:"TJ",iso3:"TJK",alpha:"T",name:"Tajikistan",fullname:"The Republic of Tajikistan",capital:"Dushanbe",tld:".tj",currency:"RUB",phone:"+992",emoji:"🇹🇯"},{continent:"Africa",iso2:"TZ",iso3:"TZA",alpha:"T",name:"Tanzania",fullname:"The United Republic of Tanzania",capital:"Dar es Salaam",tld:".tz",currency:"TZS",phone:"+255",emoji:"🇹🇿"},{continent:"Asia",iso2:"TH",iso3:"THA",alpha:"T",name:"Thailand",fullname:"The Kingdom of Thailand",capital:"Bangkok",tld:".th",currency:"THB",phone:"+66",emoji:"🇹🇭"},{continent:"Africa",iso2:"TG",iso3:"TGO",alpha:"T",name:"Togo",fullname:"The Togolese Republic",capital:"Lomé",tld:".tg",currency:"XOF",phone:"+228",emoji:"🇹🇬"},{continent:"Oceania",iso2:"TO",iso3:"TON",alpha:"T",name:"Tonga",fullname:"The Kingdom of Tonga",capital:"Nukuʻalofa",tld:".to",currency:"TOP",phone:"+676",emoji:"🇹🇴"},{continent:"South America",iso2:"TT",iso3:"TTO",alpha:"T",name:"Trinidad And Tobago",fullname:"The Republic of Trinidad and Tobago",capital:"Port of Spain",tld:".tt",currency:"TTD",phone:"+1868",emoji:"🇹🇹"},{continent:"Africa",iso2:"TN",iso3:"TUN",alpha:"T",name:"Tunisia",fullname:"The Republic of Tunisia",capital:"Tunis",tld:".tn",currency:"TND",phone:"+216",emoji:"🇹🇳"},{continent:"Asia",iso2:"TR",iso3:"TUR",alpha:"T",name:"Turkey",fullname:"The Republic of Turkey",capital:"Ankara",tld:".tr",currency:"TRY",phone:"+90",emoji:"🇹🇷"},{continent:"Asia",iso2:"TM",iso3:"TKM",alpha:"T",name:"Turkmenistan",fullname:"Turkmenistan",capital:"Ashgabat",tld:".tm",currency:"TMM",phone:"+993",emoji:"🇹🇲"},{continent:"North America",iso2:"TC",iso3:"TCA",alpha:"T",name:"Turks and Caicos",fullname:"The Turks and Caicos Islands",capital:"Grand Turk (Cockburn Town)",tld:".tc",currency:"USD",phone:"+1649",emoji:"🇹🇨"},{continent:"Oceania",iso2:"TV",iso3:"TUV",alpha:"T",name:"Tuvalu",fullname:"Tuvalu",capital:"Funafuti",tld:".tv",currency:"TVD",phone:"+688",emoji:"🇹🇻"},{continent:"Africa",iso2:"UG",iso3:"UGA",alpha:"U",name:"Uganda",fullname:"The Republic of Uganda",capital:"Kampala",tld:".ug",currency:"UGX",phone:"+256",emoji:"🇺🇬"},{continent:"Europe",iso2:"UA",iso3:"UKR",alpha:"U",name:"Ukraine",fullname:"Ukraine",capital:"Kiev",tld:".ua",currency:"UAH",phone:"+380",emoji:"🇺🇦"},{continent:"Asia",iso2:"AE",iso3:"ARE",alt:"UAE",alpha:"U",name:"United Arab Emirates",fullname:"The United Arab Emirates",capital:"Abu Dhabi",tld:".ae",currency:"AED",phone:"+971",emoji:"🇦🇪"},{continent:"Europe",iso2:"GB",iso3:"GBR",alt:"UK",alpha:"U",name:"United Kingdom",fullname:"The United Kingdom of Great Britain and Northern Ireland",capital:"London",tld:".gb",currency:"GBP",phone:"+44",emoji:"🇬🇧"},{continent:"North America",iso2:"US",iso3:"USA",alpha:"U",name:"United States",fullname:"The United States of America",capital:"Washington, D.C.",tld:".us",currency:"USD",phone:"+1",emoji:"🇺🇸"},{continent:"South America",iso2:"UY",iso3:"URY",alpha:"U",name:"Uruguay",fullname:"The Eastern Republic of Uruguay",capital:"Montevideo",tld:".uy",currency:"UYU",phone:"+598",emoji:"🇺🇾"},{continent:"Asia",iso2:"UZ",iso3:"UZB",alpha:"U",name:"Uzbekistan",fullname:"The Republic of Uzbekistan",capital:"Tashkent",tld:".uz",currency:"UZS",phone:"+998",emoji:"🇺🇿"},{continent:"Oceania",iso2:"VU",iso3:"VUT",alpha:"V",name:"Vanuatu",fullname:"The Republic of Vanuatu",capital:"Port Vila",tld:".vu",currency:"VUV",phone:"+678",emoji:"🇻🇺"},{continent:"South America",iso2:"VE",iso3:"VEN",alpha:"V",name:"Venezuela",fullname:"The Bolivarian Republic of Venezuela",capital:"Caracas",tld:".ve",currency:"VEB",phone:"+58",emoji:"🇻🇪"},{continent:"Asia",iso2:"VN",iso3:"VNM",alpha:"V",name:"Vietnam",fullname:"The Socialist Republic of Viet Nam",capital:"Hanoi",tld:".vn",currency:"VND",phone:"+84",emoji:"🇻🇳"},{continent:"North America",iso2:"VG",iso3:"VGB",alpha:"V",name:"Virgin Islands, British",fullname:"British Virgin Islands",capital:"Road Town",tld:".vg",currency:"USD",phone:"+1284",emoji:"🇻🇬"},{continent:"South America",iso2:"VI",iso3:"VIR",alpha:"V",name:"Virgin Islands, US",fullname:"U.S. Virgin Islands",capital:"Charlotte Amalie",tld:".vi",currency:"USD",phone:"+1340",emoji:"🇻🇮"},{continent:"Oceania",iso2:"WF",iso3:"WLF",alpha:"W",name:"Wallis and Futuna",fullname:"Wallis and Futuna",capital:"Matā'Utu",tld:".wf",currency:"CFP",phone:"+681",emoji:"🇼🇫"},{continent:"Africa",iso2:"EH",iso3:"ESH",alpha:"W",name:"Western Sahara",fullname:"Western Sahara",capital:"El-Aaiún",tld:".eh",currency:"MAD",phone:"+212",emoji:"🇪🇭"},{continent:"Asia",iso2:"YE",iso3:"YEM",alpha:"Y",name:"Yemen",fullname:"The Republic of Yemen",capital:"Sana’a",tld:".ye",currency:"YER",phone:"+967",emoji:"🇾🇪"},{continent:"Africa",iso2:"ZM",iso3:"ZMB",alpha:"Z",name:"Zambia",fullname:"The Republic of Zambia",capital:"Lusaka",tld:".zm",currency:"ZMK",phone:"+260",emoji:"🇿🇲"},{continent:"Africa",iso2:"ZW",iso3:"ZWE",alpha:"Z",name:"Zimbabwe",fullname:"The Republic of Zimbabwe",capital:"Harare",tld:".zw",currency:"ZWD",phone:"+263",emoji:"🇿🇼"}]},debounce=function debounce(fn){var _timer,timeout=arguments.length>1&&void 0!==arguments[1]?arguments[1]:500,cb=function cb(){for(var _len=arguments.length,args=new Array(_len),_key=0;_key<_len;_key++)args[_key]=arguments[_key];clearTimeout(_timer),"undefined"!=typeof window&&(_timer=window.setTimeout((function(){return null==fn?void 0:fn.apply(void 0,args)}),timeout))};return cb.cancel=function(){return clearTimeout(_timer)},cb},dedupe=function dedupe(list,key){var filtered=list.filter((function(i){return!_isType_isEmpty(i)}));return key?Array.from(new Map(filtered.map((function(obj){var _obj$key;return[null!==(_obj$key=obj[key])&&void 0!==_obj$key?_obj$key:obj,obj]}))).values()):Array.from(new Set(filtered).values())},groupBy=function groupBy(list,prop,missingKey){return list.reduce((function(r,i){var _i$prop,key=null!==(_i$prop=i[prop])&&void 0!==_i$prop?_i$prop:missingKey;return r[key]||(r[key]=[]),r[key].push(i),r}),{})},defineProperty=__webpack_require__("./node_modules/@babel/runtime/helpers/esm/defineProperty.js"),asyncToGenerator=__webpack_require__("./node_modules/@babel/runtime/helpers/esm/asyncToGenerator.js"),regenerator=__webpack_require__("./node_modules/@babel/runtime/regenerator/index.js"),regenerator_default=__webpack_require__.n(regenerator);function ownKeys(e,r){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);r&&(o=o.filter((function(r){return Object.getOwnPropertyDescriptor(e,r).enumerable}))),t.push.apply(t,o)}return t}function _objectSpread(e){for(var r=1;r=200&&resp.status<300)){_context.next=4;break}return _context.next=3,resp.json();case 3:return _context.abrupt("return",_context.sent);case 4:throw{status:resp.status,code:-1,message:resp.statusText};case 5:case"end":return _context.stop()}}),_callee)})));return function(_x4){return _ref3.apply(this,arguments)}}()).then((function(resp){var _ref4,_resp$error_code,_ref5,_resp$error_message,code=null!==(_ref4=null!==(_resp$error_code=resp.error_code)&&void 0!==_resp$error_code?_resp$error_code:resp.errorCode)&&void 0!==_ref4?_ref4:resp.error,message=null!==(_ref5=null!==(_resp$error_message=resp.error_message)&&void 0!==_resp$error_message?_resp$error_message:resp.errorMessage)&&void 0!==_ref5?_ref5:resp.message;if("error"===resp.status||code)throw{status:500,code,message};return resp}));case 7:return _context2.abrupt("return",_context2.sent);case 8:case"end":return _context2.stop()}}),_callee2)})));return function _fetch(_x,_x2,_x3){return _ref2.apply(this,arguments)}}();_fetch.isAborted=function(_ref6){return"AbortError"===_ref6.name},_fetch.abort=function(signal){if(_signals.has(signal)){var _s=_signals.get(signal);null==_s||_s.abort(),_signals.delete(signal)}};var Format,_Format,numberFormat,makeDuration,_fileType={mime:function mime(){var mime=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"",ret=this.mimeList[mime.split(";")[0]];if(!ret&&mime){var _mime$split=mime.split("/"),_mime$split2=(0,slicedToArray.A)(_mime$split,2),t=_mime$split2[0],e=_mime$split2[1];return"".concat(t," (").concat(e,")")}return ret||"Unknown type"},mimeList:{"application/x-tika-msoffice":"Microsft Office File","application/x-tika-ooxml":"Open Office File","3d/vnd.adobe.dn+dcx":"Adobe Dimension","application-x/geogebra-file":"Ggb","application/acad":"DWG","application/acrobat":"PDF Family","application/applefile":"AppleSingle","application/atom+xml":"Atom","application/autocad_dwg":"DWG","application/binhex":"BinHex","application/bizagi-modeler":"BizAgi Process Modeler","application/cbor":"Concise Binary Object Representation","application/csv":"CSV","application/dart":"Dart","application/dbase":"MapInfo Data File (DAT)","application/dbf":"MapInfo Data File (DAT)","application/dec-dx.":"DEC Data Exchange File","application/dicom":"DICOM","application/dita+xml":"Darwin Information Typing Architecture","application/dita+xml;format=concept":"DITA Concept Topic","application/dita+xml;format=map":"DITA Map","application/dita+xml;format=task":"DITA Task Topic","application/dita+xml;format=topic":"DITA Topic","application/dita+xml;format=val":"DITA Conditional Processing Profile","application/dwf":"DWF","application/dwg":"DWG","application/dxf":"DXF","application/ecmascript":"ActionScript","application/epub+zip":"EBook","application/f4m":"F4M","application/fits":"Flexible Image Transport System","application/font-tdpfr":"PFR","application/font-woff":"WOFF","application/freemind":"Mm","application/futuresplash":"SWF","application/gdiff":"GDIFF","application/geopackage+sqlite3":"GeoPackage","application/gml+xml":"Geo XML","application/gzip":"Gzip Archive","application/gzip-compressed":"Gzip Archive","application/gzipped":"Gzip Archive","application/iges":"IGES","application/illustrator":"Adobe Illustrator","application/inf":"INF (Windows)","application/internet-shortcut":"Internet Shortcut","application/java-applet":"Java Applet","application/java-archive":"Java Archive","application/java-serialized-object":"Java Serialized Object","application/java-vm":"Java Class File","application/javascript":"JavaScript","application/jpg":"JFIF","application/json":"JSON","application/json-patch+json":"JSON Patch","application/kate":"Kate","application/ld+json":"JSON-LD","application/mac-binhex":"BinHex","application/mac-binhex40":"BinHex","application/macbinary":"MacBinary","application/marc":"MARC","application/mbox":"Mbox","application/msexcel":"Microsoft Excel Spreadsheet","application/msonenote":"Microsoft OneNote","application/mspowerpoint":"Microsoft Powerpoint Presentation","application/msword":"Word Document","application/msword2":"Microsoft Word 2 Document","application/msword5":"Microsoft Word 5 Document","application/mxf":"MXF","application/netcdf":"NetCDF","application/octet-stream":"Binary File","application/ogg":"Ogg","application/oxps":"OpenXPS","application/package":"Package (Web)","application/pdf":"PDF","application/photoshop":"Photoshop Image","application/pkcs10":"PKCS10","application/playerpro":"Module Music Formats (Mods)","application/postscript":"PostScript","application/qif":"Quicken Interchange Format","application/rdf+xml":"RDF","application/rss+xml":"RSS","application/rtf":"RTF","application/sereal":"Sereal","application/sgml":"SGML","application/sla":"STereo Lithography","application/sld":"AutoCAD Slide","application/sldworks":"SolidWorks CAD program","application/smil":"SMIL Multimedia","application/smil+xml":"SMIL Multimedia","application/soundapp":"Module Music Formats (Mods)","application/ssml+xml":"Speech Synthesis Markup Language","application/tif":"TIFF","application/tiff":"TIFF","application/typescript":"TypeScript","application/vnd.adobe.adept+xml":"Adobe Content Server Message File","application/vnd.adobe.flash-movie":"SWF","application/vnd.adobe.folio+zip":"Folio","application/vnd.adobe.indesign-idml-package":"IDML","application/vnd.adobe.pdfxml":"PDF XML","application/vnd.adobe.x-mars":"PDF XML","application/vnd.adobe.xdp+xml":"XDP","application/vnd.adobe.xfdf":"XFDF","application/vnd.api+json":"JSON API","application/vnd.apple.pkpass":"PKPass","application/vnd.android.package-archive":"Android package","application/vnd.chess-pgn":"PGN","application/vnd.coffeescript":"CoffeeScript","application/vnd.comicbook+zip":"Comic Book Archive","application/vnd.comicbook-rar":"Comic Book Archive","application/vnd.cups-raster":"CUPS Raster","application/vnd.debian.binary-package":"Deb","application/vnd.etsi.asic-e+zip":"Extended Associated Signature Container","application/vnd.etsi.asic-s+zip":"Simple Associated Signature Container","application/vnd.fdf":"FDF","application/vnd.font-fontforge-sfd":"Spline Font Database","application/vnd.framemaker":"FrameMaker","application/vnd.geo+json":"GeoJSON","application/vnd.geogebra.file":"Ggb","application/vnd.gerber":"Gerber format","application/vnd.google-earth.kml+xml":"KML","application/vnd.google-earth.kmz":"KML","application/vnd.hp-pcl":"PCL","application/vnd.hp-pclxl":"PCL","application/vnd.kde.kchart":"KChart File","application/vnd.kde.kpresenter":"KPresenter File","application/vnd.kde.kspread":"KSpread File","application/vnd.kde.kword":"KWord File","application/vnd.koan":"SSEYO Koan File","application/vnd.las":"LAS (LASer) File Format","application/vnd.lotus-1-2-3":"Lotus 1-2-3","application/vnd.lotus-notes":"Notes Storage Facility","application/vnd.lotus-wordpro":"Lotus Word Pro","application/vnd.makemusic.notation":"Finale","application/vnd.mif":"Maker Interchange Format","application/vnd.mindjet.mindmanager":"MindManager","application/vnd.ms-asf":"ASF","application/vnd.ms-cab-compressed":"Cabinet","application/vnd.ms-excel":"Excel Spreadsheet","application/vnd.ms-excel.addin.macroenabled.12":"Microsoft Excel","application/vnd.ms-excel.sheet.2":"Microsoft Excel 2 Worksheet","application/vnd.ms-excel.sheet.3":"Microsoft Excel 3 Worksheet","application/vnd.ms-excel.sheet.4":"Microsoft Excel 4 Worksheet","application/vnd.ms-excel.sheet.binary.macroenabled.12":"Microsoft Excel","application/vnd.ms-excel.sheet.macroenabled.12":"Microsoft Excel","application/vnd.ms-excel.template.macroenabled.12":"Microsoft Excel","application/vnd.ms-excel.workspace.3":"Microsoft Excel 3 Workspace","application/vnd.ms-excel.workspace.4":"Microsoft Excel 4 Workspace","application/vnd.ms-fontobject":"Embedded OpenType","application/vnd.ms-htmlhelp":"CHM","application/vnd.ms-officetheme":"Microsoft Office Theme","application/vnd.ms-outlook":"Personal Folder File","application/vnd.ms-outlook-pst":"Outlook Personal Folders File Format","application/vnd.ms-package.3dmanufacturing-3dmodel+xml":"3MF","application/vnd.ms-powerpoint":"Powerpoint Presentation","application/vnd.ms-powerpoint.addin.macroenabled.12":"Microsoft PowerPoint","application/vnd.ms-powerpoint.presentation.macroenabled.12":"Microsoft PowerPoint","application/vnd.ms-powerpoint.slide.macroenabled.12":"Microsoft PowerPoint","application/vnd.ms-powerpoint.slideshow.macroenabled.12":"Microsoft PowerPoint","application/vnd.ms-powerpoint.template.macroenabled.12":"Microsoft PowerPoint","application/vnd.ms-printing.printticket+xml":"3MF","application/vnd.ms-tnef":"Transport Neutral Encapsulation Format","application/vnd.ms-visio":"Microsoft Visio Diagram","application/vnd.ms-visio.drawing":"Office Open XML Visio Drawing (macro-free)","application/vnd.ms-visio.drawing.macroenabled.12":"Office Open XML Visio Drawing (macro-enabled)","application/vnd.ms-visio.stencil":"Office Open XML Visio Stencil (macro-free)","application/vnd.ms-visio.stencil.macroenabled.12":"Office Open XML Visio Stencil (macro-enabled)","application/vnd.ms-visio.template":"Office Open XML Visio Template (macro-free)","application/vnd.ms-visio.template.macroenabled.12":"Office Open XML Visio Template (macro-enabled)","application/vnd.ms-word":"Word Document","application/vnd.ms-word.document.macroenabled.12":"Microsoft Word","application/vnd.ms-word.template.macroenabled.12":"Microsoft Word","application/vnd.ms-xpsdocument":"OpenXPS","application/vnd.nitf":"National Imagery Transmission Format","application/vnd.oasis.opendocument.base":"OD","application/vnd.oasis.opendocument.chart":"OD Chart","application/vnd.oasis.opendocument.chart-template":"OD Chart Template","application/vnd.oasis.opendocument.database":"OD Database","application/vnd.oasis.opendocument.formula":"OD","application/vnd.oasis.opendocument.formula-template":"OD Formula","application/vnd.oasis.opendocument.graphics":"OD Graphics","application/vnd.oasis.opendocument.graphics-template":"OD Graphics","application/vnd.oasis.opendocument.image":"OD Image","application/vnd.oasis.opendocument.image-template":"OD Image template","application/vnd.oasis.opendocument.presentation":"OD Presentation","application/vnd.oasis.opendocument.presentation-template":"OD Presentation Template","application/vnd.oasis.opendocument.spreadsheet":"OD Spreadsheet","application/vnd.oasis.opendocument.spreadsheet-template":"OD Spreadsheet","application/vnd.oasis.opendocument.text":"OD Text","application/vnd.oasis.opendocument.text-master":"OD Text","application/vnd.oasis.opendocument.text-template":"OD Text Template","application/vnd.oasis.opendocument.text-web":"OD Text","application/vnd.openxmlformats-officedocument.presentationml.document":"OOXML Format Family -- ISO/IEC 29500 and ECMA 376","application/vnd.openxmlformats-officedocument.presentationml.presentation":"Powerpoint Presentation","application/vnd.openxmlformats-officedocument.presentationml.slideshow":"Microsoft PowerPoint","application/vnd.openxmlformats-officedocument.presentationml.template":"Microsoft PowerPoint","application/vnd.openxmlformats-officedocument.spreadsheetml.document":"OOXML Format Family -- ISO/IEC 29500 and ECMA 376","application/vnd.openxmlformats-officedocument.spreadsheetml.sheet":"Excel Spreadsheet","application/vnd.openxmlformats-officedocument.spreadsheetml.template":"Microsoft Excel","application/vnd.openxmlformats-officedocument.wordprocessingml.document":"Word Document","application/vnd.openxmlformats-officedocument.wordprocessingml.template":"Microsoft Word","application/vnd.pagemaker":"Pagemaker Document (Generic)","application/vnd.palm":"Palm OS Database","application/vnd.pdf":"PDF Family","application/vnd.quark.quarkxpress":"QuarkXPress","application/vnd.rar":"RAR","application/vnd.rn-realmedia":"RealMedia","application/vnd.scribus":"Scribus","application/vnd.sqlite3":"SQLite","application/vnd.stardivision.calc":"SDC","application/vnd.stardivision.chart":"StarOffice binary formats","application/vnd.stardivision.draw":"StarOffice binary formats","application/vnd.stardivision.impress":"StarOffice binary formats","application/vnd.stardivision.impress-packed":"StarOffice binary formats","application/vnd.stardivision.mail":"StarOffice binary formats","application/vnd.stardivision.math":"StarOffice binary formats","application/vnd.stardivision.writer":"SDW","application/vnd.stardivision.writer-global":"StarOffice binary formats","application/vnd.sun.xml.calc":"OpenOffice.org XML","application/vnd.sun.xml.calc.template":"OpenOffice.org XML","application/vnd.sun.xml.draw":"OpenOffice.org XML","application/vnd.sun.xml.draw.template":"OpenOffice.org XML","application/vnd.sun.xml.impress":"SXI","application/vnd.sun.xml.impress.template":"SXI","application/vnd.sun.xml.math":"OpenOffice.org XML","application/vnd.sun.xml.writer":"SXW","application/vnd.sun.xml.writer.global":"OpenOffice.org XML","application/vnd.sun.xml.writer.template":"STW","application/vnd.tcpdump.pcap":"TCPDump pcap packet capture","application/vnd.truedoc":"PFR","application/vnd.valve.source.material":"Valve Material Type","application/vnd.visio":"Visio","application/vnd.visio2013":"Visio VSDX Drawing File Format","application/vnd.wap.wmlc":"Compiled WML Document","application/vnd.wap.wmlscriptc":"Compiled WML Script","application/vnd.wolfram.cdf":"Computable Document Format","application/vnd.wolfram.cdf.text":"Computable Document Format","application/vnd.wordperfect":"WordPerfect","application/vnd.xara":"Xar (vector graphics)","application/vnd.xmi+xml":"XML Metadata Interchange","application/warc":"WARC","application/warc-fields":"WARC","application/x--iworks-protected":"Password Protected iWorks File","application/x--msoffice-embedded;format=comp_obj":"CompObj OLE2 Embedded Document","application/x--msoffice-embedded;format=ole10_native":"OLE10 Native Embedded Document","application/x--old-excel":"Pre-OLE2 (Old) Microsoft Excel Worksheets","application/x--ooxml-protected":"Password Protected OOXML File","application/x--visio-ooxml":"Visio OOXML File","application/x-3ds":"3DS","application/x-3dxmlplugin":"3DXML","application/x-7z-compressed":"7z Archive","application/x-acad":"DWG","application/x-adobe-indesign":"Adobe InDesign document","application/x-adobe-indesign-interchange":"Adobe InDesign Interchange format","application/x-apple-diskimage":"Apple Disk Image","application/x-aspx":"ASP.NET","application/x-astrotite-afa":"Astrotite","application/x-autocad":"DWG","application/x-axcrypt":"AxCrypt","application/x-b6z-compressed":"B6Z","application/x-berkeley-db":"Berkeley DB","application/x-berkeley-db;format=btree":"Berkeley DB BTree Database","application/x-berkeley-db;format=hash":"Berkeley DB Hash Database","application/x-berkeley-db;format=log":"Berkeley DB Log Database","application/x-berkeley-db;format=queue":"Berkeley DB Queue Database","application/x-bittorrent":"Torrent file","application/x-bplist":"Backup list","application/x-bzip2":"Bzip2","application/x-cbr":"Comic Book Archive","application/x-cdf":"CD Audio","application/x-cdlink":"Virtual CD-ROM CD Image File","application/x-cfs-compressed":"Compact File Set","application/x-chess-pgn":"PGN","application/x-chrome-package":"Chrome Extension Package","application/x-compress":"Compress (Unix)","application/x-compressed":"Tape Archive","application/x-cpio":"Cpio","application/x-csv":"CSV","application/x-dbase":"dBASE Table (DBF)","application/x-dbf":"dBASE Table (DBF)","application/x-dbm":"Berkeley DB","application/x-debian-package":"Debian package","application/x-deflate":"ZLIB Archive","application/x-dex":"Dalvik Executable Format","application/x-dgc-compressed":"DGCA","application/x-director":"Shockwave (Director)","application/x-dosexec":"DOS/Windows executable (EXE)","application/x-dvi":"DVI (Device Independent File Format)","application/x-dwg":"DWG","application/x-elc":"Emacs Lisp bytecode","application/x-emf":"Extended Metafile","application/x-endnote-connect":"EndNote Connection File","application/x-endnote-connection":"EndNote Connection File","application/x-endnote-refer":"EndNote Import File","application/x-endnote-style":"EndNote Style File","application/x-erb":"HTML+ERB","application/x-fictionbook+xml":"FictionBook document","application/x-filemaker":"FileMaker Pro 7","application/x-font-adobe-metric":"Adobe Font Metric","application/x-font-otf":"OpenType Font","application/x-font-printer-metric":"Printer Font Metric","application/x-font-ttf":"TrueType Font","application/x-foxmail":"Foxmail Email File","application/x-frame":"FrameMaker Interchange Format","application/x-freemind":"Mm","application/x-futuresplash":"Macromedia FutureSplash File","application/x-gca-compressed":"GCA","application/x-glulx":"Glulx","application/x-gnumeric":"Gnumeric","application/x-grib":"General Regularly-distributed Information in Binary form","application/x-gtar":"GNU Archive","application/x-gunzip":"Gzip Compressed Archive","application/x-gzip":"Gzip","application/x-gzip-compressed":"Gzip Compressed Archive","application/x-hdf":"HDF","application/x-httpd-jsp":"Java Server Page","application/x-httpd-php":"HTML+PHP","application/x-hwp":"Hangul Word Processor File","application/x-hwp-v5":"Hangul Word Processor File v5","application/x-ibooks+zip":"Apple iBooks","application/x-isatab":"ISA-Tab Study file","application/x-isatab-assay":"ISA-Tab Assay file","application/x-isatab-investigation":"ISA-Tab Investigation file","application/x-iso9660-image":"ISO image","application/x-itunes-ipa":"Apple iOS IPA AppStore file","application/x-java":"Java Class File","application/x-java-jnilib":"Java Native Library for OSX","application/x-java-jnlp-file":"Java Network Launching Protocol","application/x-java-vm":"Java Class File","application/x-javascript":"JavaScript Source Code","application/x-jpg":"JFIF","application/x-jsp":"Groovy Server Pages","application/x-kchart":"KChart File","application/x-killustrator":"KIllustrator File","application/x-koan":"SSEYO Koan File","application/x-kpresenter":"KPresenter File","application/x-krita":"Krita","application/x-kspread":"KSpread File","application/x-kword":"KWord File","application/x-latex":"LaTeX Source Document","application/x-lotus-notes":"Notes Storage Facility","application/x-lzh-compressed":"LHA","application/x-lzip":"Lzip","application/x-lzma":"LZMA Alone","application/x-macbinary":"MacBinary","application/x-maff":"MAFF","application/x-matlab-data":"MAT","application/x-matroska":"Matroska Media","application/x-midi":"MIDI","application/x-mif":"FrameMaker Interchange Format","application/x-mplayer2":"ASF (Advanced Systems Format)","application/x-msaccess":"Microsoft Access","application/x-msdownload":"Microsoft Download","application/x-ms-installer":"Microsoft Windows Installer","application/x-ms-wim":"Windows Imaging Format","application/x-msi":"Microsoft Windows Installer","application/x-msmetafile":"Windows Metafile","application/x-mso":"ActiveMime","application/x-mysql-misam-compressed-index":"MySQL MISAM Compressed Index","application/x-mysql-misam-data":"MySQL MISAM Data","application/x-mysql-misam-index":"MySQL MISAM Index","application/x-mysql-table-definition":"MySQL Table Definition (Format)","application/x-navi-animation":"Windows Animated Cursor","application/x-pdf":"Portable Document Format","application/x-pn-mpg":"MPEG-2 Video Encoding (H.262)","application/x-powershell":"PowerShell","application/x-rar":"RAR archive","application/x-rar-compressed":"RAR","application/x-riff":"MIDI Instrument Definition File","application/x-roxio-toast":"TOAST","application/x-rpm":"RedHat Package Manager","application/x-sas":"SAS Program","application/x-sas-access":"SAS Access Descriptor","application/x-sas-audit":"SAS Audit","application/x-sas-backup":"SAS Backup","application/x-sas-catalog":"SAS Catalog","application/x-sas-data":"SAS Data Set","application/x-sas-data-index":"SAS Data Set Index","application/x-sas-dmdb":"SAS DMDB Data Mining Database File","application/x-sas-fdb":"SAS FDB Consolidation Database File","application/x-sas-itemstor":"SAS Item Store (ItemStor) File","application/x-sas-mddb":"SAS MDDB Multi-Dimensional Database File","application/x-sas-program-data":"SAS Stored Program (DATA Step)","application/x-sas-putility":"SAS Permanent Utility","application/x-sas-transport":"SAS Transport File","application/x-sas-utility":"SAS Utility","application/x-sas-view":"SAS Data Set View","application/x-sas-xport":"SAS Transport (XPORT) Family","application/x-setupscript":"Windows setup INFormation","application/x-sh":"UNIX/LINUX Shell Script","application/x-shockwave-flash":"SWF","application/x-shockwave-flash2-preview":"Macromedia Flash","application/x-silverlight-app":"Silverlight","application/x-sit":"StuffIt","application/x-sitx":"StuffIt X","application/x-sld":"AutoCAD Slide","application/x-snappy-framed":"Snappy","application/x-speex":"Speex Audio","application/x-spss-por":"SPSS Portable File","application/x-spss-sav":"SAV","application/x-sqlite3":"SQLite","application/x-starcalc":"SDC","application/x-stardraw":"SDA (StarOffice)","application/x-starwriter":"SDW","application/x-stuffit":"StuffIt","application/x-stuffitx":"StuffIt X","application/x-t3vm-image":"TADS 3","application/x-tads":"TADS","application/x-tar":"Tape Archive","application/x-tcl":"Tcl script","application/x-tex":"TeX","application/x-tif":"TIFF","application/x-tiff":"TIFF","application/x-troff":"Roff/nroff/troff/groff Unformatted Manual Page (UNIX)","application/x-troff-man":"Roff/nroff/troff/groff Unformatted Manual Page (UNIX)","application/x-troff-me":"Roff/nroff/troff/groff Unformatted Manual Page (UNIX)","application/x-troff-ms":"Roff/nroff/troff/groff Unformatted Manual Page (UNIX)","application/x-troff-msvideo":"AVI (Audio Video Interleaved) File Format","application/x-url":"Internet Shortcut","application/x-vhd":"Virtual PC Virtual Hard Disk","application/x-vmdk":"Virtual Disk Format","application/x-vnd.corel.designer.document+zip":"Corel Designer","application/x-vnd.corel.zcf.designer.document+zip":"Corel Designer","application/x-vnd.oasis.opendocument.chart":"OD Chart","application/x-vnd.oasis.opendocument.chart-template":"OD Chart Template","application/x-vnd.oasis.opendocument.formula":"OD Formula document","application/x-vnd.oasis.opendocument.formula-template":"OD Formula Template","application/x-vnd.oasis.opendocument.graphics":"OD Graphics (Drawing)","application/x-vnd.oasis.opendocument.graphics-template":"OD Graphics Template","application/x-vnd.oasis.opendocument.image":"OD Image","application/x-vnd.oasis.opendocument.image-template":"OD Image Template","application/x-vnd.oasis.opendocument.presentation":"OD Presentation","application/x-vnd.oasis.opendocument.presentation-template":"OD Presentation Template","application/x-vnd.oasis.opendocument.spreadsheet":"OD Spreadsheet","application/x-vnd.oasis.opendocument.spreadsheet-template":"OD Spreadsheet Template","application/x-vnd.oasis.opendocument.text":"OD Text","application/x-vnd.oasis.opendocument.text-master":"OD Global Text","application/x-vnd.oasis.opendocument.text-template":"OD Text Template","application/x-vnd.oasis.opendocument.text-web":"OD Text Template","application/x-vnd.sun.xml.writer":"OpenOffice v1.0: Writer Document","application/x-votable+xml":"VOTable","application/x-web-app-manifest+json":"Open Web App Manifest","application/x-windows-installer":"Microsoft Windows Installer","application/x-wine-extension-inf":"Windows setup INFormation","application/x-www-form-urlencoded":"Form URL encoding","application/x-x509-ca-cert":"DER encoded certificate","application/x-x509-user-cert":"DER encoded certificate","application/x-xmind":"XMind Pro","application/x-xml":"Extensible Markup Language","application/x-xpinstall":"Cross-Platform Installer Module","application/x-xz":"XZ","application/x-zip-compressed":"Zip Archive","application/x-zoo":"Zoo","application/xhtml+xml":"HTML","application/xml":"XML","application/xml-dtd":"DTD","application/xquery":"XQuery source code","application/xslfo+xml":"XSL Format","application/xslt+xml":"XSL Transformations","application/xspf+xml":"XML Shareable Playlist Format","application/zip":"Zip Archive","application/zlib":"ZLIB Compressed Data Format","application/zstd":"Zstandard","audio/3gpp":"3GP Audio","audio/3gpp2":"3G2 Audio","audio/8svx":"8-Bit Sampled Voice Audio","audio/aiff":"AIFF Audio","audio/amr":"Adaptive Multi-Rate Audio","audio/application/x-pn-realmedia":"RealMedia Audio","audio/asf":"ASF Audio","audio/aud":"WeChat Audio","audio/audible":"Audible.Com Audio","audio/avi":"AVI Audio","audio/basic":"AU Audio","audio/flac":"FLAC Audio","audio/it":"Module Music Formats (Mods) Audio","audio/m":"MIDI Audio","audio/med":"Module Music Formats (Mods) Audio","audio/mid":"MIDI Audio","audio/midi":"MIDI Audio","audio/mod":"Module Music Formats (Mods) Audio","audio/module-xm":"Module Music Formats (Mods) Audio","audio/mp3":"MP3 Audio","audio/mp4":"MP4 Audio","audio/mp4a-latm":"MP4 Audio","audio/mpa":"MPEG Audio Layer I Audio","audio/mpeg":"MP3 Audio","audio/mpeg3":"MP3 Audio","audio/mpg":"MP3 Audio","audio/ogg":"Ogg Multimedia File Audio","audio/ogg; codecs=speex":"Speex Audio Codec Audio","audio/opus":"Opus Audio","audio/prs.sid":"SID Audio","audio/rmf":"AIFF Audio","audio/s3m":"Module Music Formats (Mods) Audio","audio/speex":"Speex Audio","audio/vnd.qcelp":"AIFF Audio","audio/vnd.rn-realaudio":"RealAudio","audio/vnd.wave":"WAV Audio","audio/vorbis":"Vorbis Audio","audio/wav":"WAV Audio","audio/wave":"WAV Audio","audio/webm":"WebM Audio","audio/x-8svx":"8-Bit Sampled Voice Audio","audio/x-aiff":"AIFF Audio","audio/x-amr-wb":"Adaptive Multi-Rate WideBand Audio","audio/x-flac":"FLAC Audio","audio/x-gsm":"AIFF Audio","audio/x-matroska":"Matroska Audio","audio/x-midi":"MIDI Audio","audio/x-mod":"EPSGMOD Audio","audio/x-mp3":"MP3 Audio","audio/x-mpeg":"MPEG-1 Audio Layer 3 Audio","audio/x-mpeg3":"MP3 Audio","audio/x-mpegaudio":"MP3 Audio","audio/x-mpegurl":"MP3 Playlist File Audio","audio/x-mpg":"MP3 Audio","audio/x-ms-wax":"Windows Media Metafile Audio","audio/x-ogg":"Ogg Audio","audio/x-ogg-flac":"Free Lossless Audio","audio/x-ogg-pcm":"Unompressed Audio","audio/x-oggflac":"Free Lossless Audio","audio/x-oggpcm":"Unompressed Audio","audio/x-pn-aiff":"AIFF Audio","audio/x-pn-audibleaudio":"Audible.Com Audio","audio/x-pn-realaudio":"RealAudio","audio/x-pn-realaudio-plugin":"RAM (RealAudio) Audio","audio/x-pn-wav":"WAV Audio","audio/x-realaudio":"Real Audio","audio/x-rmf":"AIFF Audio","audio/x-s3m":"Module Music Formats (Mods) Audio","audio/x-speex":"Speex Audio Codec Audio","audio/x-voc":"Creative Voice File Audio","audio/x-wav":"WAV Audio","audio/x-xm":"Module Music Formats (Mods) Audio","audio/xm":"Extended Module Audio File Audio","chemical/x-cif":"CIF","chemical/x-cml":"CML","chemical/x-mdl-molfile":"MOL","chemical/x-pdb":"Brookhaven Protein Databank File","drawing/dwg":"DWG","gzip/document":"Gzip Compressed Archive","image/ascii-art":"ASCII Art","image/avi":"AVI (Audio Video Interleaved) File Format","image/avif":"AVIF","image/avif-sequence":"AVIF","image/bmp":"BMP","image/cgm":"CGM","image/cis-cod":"Lightning Strike","image/dicom-rle":"DICOM","image/emf":"Enhanced Metafile","image/fits":"Flexible Image Transport System","image/flif":"Free Lossless Image Format (FLIF)","image/g3fax":"CCITT Group 3","image/gif":"GIF","image/heic":"HEIC","image/heic-sequence":"High Efficiency Image File Format","image/heif":"HEIF","image/image/x-ptx":"Pentax PEF","image/ivg":"IconVG","image/jls":"JPEG-LS","image/jp2":"JP2","image/jpeg":"JPEG","image/jpeg2000":"JPEG 2000 Part 1 (Core) jp2 File Format","image/jpeg2000-image":"JPEG 2000 Part 1 (Core) jp2 File Format","image/jpg":"JFIF","image/jpm":"JPM","image/jpx":"JPX","image/jxl":"JPEG XL","image/jxr":"JPEG Extended Range","image/ktx":"KTX","image/mov":"QuickTime File Format","image/naplps":"NAPLPS","image/nia":"Naïve Image Formats","image/nie":"Naïve Image Formats","image/nii":"Naïve Image Formats","image/openraster":"OpenRaster","image/pict":"PICT","image/png":"PNG","image/png+json":"Piskel canvas","image/pwg-raster":"PWG Raster","image/svg+xml":"Scalable Vector Graphics","image/svg-xml":"Scalable Vector Graphics","image/tif":"TIFF","image/tiff":"TIFF","image/tiff-fx":"TIFF-FX","image/vnd-wap-wbmp":"Wireless Bitmap","image/vnd.adobe.photoshop":"PSD","image/vnd.djvu":"DjVu","image/vnd.dwg":"DWG","image/vnd.dxb":"AutoCAD DXF simplified Binary","image/vnd.dxf":"DXF","image/vnd.dxf;format=ascii":"AutoCAD DXF in ASCII Text form","image/vnd.dxf;format=binary":"AutoCAD DXF in Binary form","image/vnd.fpx":"FlashPix","image/vnd.fujixerox.edmics-mmr":"Xerox EDMICS-MMR","image/vnd.fujixerox.edmics-rlc":"Xerox EDMICS-RLC","image/vnd.microsoft.icon":"ICO","image/vnd.mix":"MIX (Picture It!)","image/vnd.mozilla.apng":"APNG","image/vnd.ms-modi":"MDI","image/vnd.ms-photo":"JPEG XR","image/vnd.radiance":"Radiance HDR","image/vnd.rn-realflash":"Macromedia Flash SWF File Format","image/vnd.svf":"Simple Vector Format","image/vnd.tencent.tap":"TAP (Tencent)","image/vnd.valve.source.texture":"Valve Texture Format","image/vnd.wap.wbmp":"WBMP","image/vnd.xiff":"XIFF","image/vnd.zbrush.pcx":"PCX","image/vpb":"Quantel VPB image","image/webp":"Web Photo","image/wmf":"Windows Metafile","image/x-3ds":"3DS","image/x-bmp":"Bitmap Image File (BMP)","image/x-bpg":"Better Portable Graphics","image/x-canon-cr3":"Canon RAW 3","image/x-canon-crw":"Camera Image File Format","image/x-dcx":"Multipage Zsoft Paintbrush Bitmap Graphics","image/x-djvu":"DjVu File Format","image/x-dpx":"Digital Moving-Picture Exchange (DPX)","image/x-dwg":"DWG","image/x-freehand":"FreeHand image","image/x-hasselblad-3fr":"Hasselblad 3FR","image/x-icon":"ICO","image/x-jng":"JPEG Network Graphics","image/x-jp2-codestream":"JPEG 2000 Codestream","image/x-jp2-container":"JPEG 2000 Container Format","image/x-jpeg2000-image":"JPEG 2000 Part 1 (Core) jp2 File Format","image/x-mrsid":"MrSID","image/x-mrsid-image":"MrSID Image Format","image/x-ms-bmp":"Windows bitmap","image/x-niff":"Navy Interchange File Format","image/x-pcx":"PCX","image/x-pentax-pef":"Pentax PEF","image/x-pict":"PICT","image/x-portable-anymap":"Netpbm formats","image/x-portable-arbitrarymap":"Portable Arbitrary Map","image/x-portable-bitmap":"Netpbm formats","image/x-portable-graymap":"Netpbm formats","image/x-portable-pixmap":"Netpbm formats","image/x-psd":"Photoshop Image","image/x-quicktime":"QuickTime File Format","image/x-raw-adobe":"Adobe Digital Negative","image/x-raw-canon":"Canon raw image","image/x-raw-casio":"Casio raw image","image/x-raw-epson":"Epson raw image","image/x-raw-fuji":"Fuji raw image","image/x-raw-hasselblad":"Hasselblad raw image","image/x-raw-imacon":"Imacon raw image","image/x-raw-kodak":"Kodak raw image","image/x-raw-leaf":"Leaf raw image","image/x-raw-logitech":"Logitech raw image","image/x-raw-mamiya":"Mamiya raw image","image/x-raw-minolta":"Minolta raw image","image/x-raw-nikon":"Nikon raw image","image/x-raw-olympus":"Olympus raw image","image/x-raw-panasonic":"Panasonic raw image","image/x-raw-pentax":"Pentax raw image","image/x-raw-phaseone":"Phase One raw image","image/x-raw-rawzor":"Rawzor raw image","image/x-raw-red":"Red raw image","image/x-raw-sigma":"Sigma raw image","image/x-raw-sony":"Sony raw image","image/x-rgb":"Silicon Graphics RGB Bitmap","image/x-sgi-bw":"Silicon Graphics Image","image/x-sld":"AutoCAD Slide","image/x-sun-raster":"Sun Raster Image","image/x-tif":"TIFF","image/x-tiff":"TIFF","image/x-win-bitmap":"Microsoft Windows Cursor","image/x-wmf":"Windows Metafile","image/x-xbitmap":"XBM","image/x-xcf":"GIMP Image File","image/x-xwindowdump":"X Windows Dump","image/xcf":"GIMP Image File","interface/x-winamp-skin":"Winamp Skin","message/rfc822":"Internet e-mail message format","model/gltf+json":"glTF (GL Transmission Format) 2.0","model/gltf-binary":"glTF (GL Transmission Format) 2.0","model/iges":"IGES","model/mtl":"Wavefront Material Template Library (MTL) File Format","model/obj":"Wavefront OBJ File Format","model/prc":"Product Representation Compact (PRC) File Format","model/stl":"STL (STereoLithography) File Format","model/u3d":"Universal 3D (U3D) format family. ECMA-363","model/vnd-dwf":"DWF","model/vnd.adobe.dn+dcxucf":"Adobe Dimension","model/vnd.collada+xml":"COLLADA","model/vnd.dwfx+xps":"AutoCAD Design Web Format","model/vnd.usdz+zip":"USDZ","model/vnd.valve.source.compiled-map":"BSP","model/vrml":"VRML","model/x3d+binary":"X3D","model/x3d+fastinfoset":"Extensible 3D","model/x3d+vrml":"X3D","model/x3d+xml":"X3D","model/x3d-vrml":"Extensible 3D","multipart/appledouble":"AppleDouble","multipart/x-tar":"Tape Archive","sound/aiff":"AIFF","text/apl":"APL","text/asp":"Active Server Page","text/aspdotnet":"ASP .NET","text/calendar":"ICalendar","text/comma-separated-values":"CSV","text/css":"Cascading Style Sheets","text/csv":"CSV","text/csv-schema":"CSV Schema","text/dns":"Zone file","text/ecmascript":"ECMA Script","text/gemini":"Gemini","text/html":"HTML","text/javascript":"JavaScript","text/json":"JSON (JavaScript Object Notation)","text/jsx":"TSX","text/markdown":"Markdown","text/mirc":"IRC log","text/n3":"Notation3","text/pdf":"PDF Family","text/plain":"Plain text","text/properties":"Java Properties","text/rtf":"RTF","text/sgml":"SGML","text/tab-separated-values":"Tab delimited","text/troff":"Roff/nroff/troff/groff Unformatted Manual Page (UNIX)","text/turtle":"Turtle","text/url":"Internet Shortcut","text/vbscript":"VBScript","text/vcard":"VCard","text/vnd.ascii-art":"ASCII Art","text/vnd.iptc.anpa":"American Newspaper Publishers Association Wire Feeds","text/vnd.iptc.nitf":"News Industry Text Format","text/vnd.wap.wmlscript":"WML Script","text/vtt":"WebVTT","text/x-actionscript":"ActionScript source code","text/x-ada":"Ada source code","text/x-applescript":"AppleScript source code","text/x-ascii-art":"ASCII Art","text/x-asciidoc":"Asciidoc source code","text/x-asm":"Assembler source code","text/x-aspectj":"AspectJ source code","text/x-assembly":"Assembler source code","text/x-awk":"AWK script","text/x-basic":"Basic source code","text/x-brainfuck":"Brainfuck","text/x-c":"C source code","text/x-c++":"C++ source code","text/x-c++hdr":"C++ source code header","text/x-c++src":"C++ source code","text/x-cgi":"CGI script","text/x-chdr":"C source code header","text/x-clojure":"Clojure source code","text/x-cmake":"Makefile","text/x-cobol":"COBOL source code","text/x-coffeescript":"CoffeeScript source code","text/x-coldfusion":"ColdFusion source code","text/x-comma-separated-values":"CSV","text/x-common-lisp":"Common Lisp source code","text/x-cross-domain-policy":"Adobe Cross Domain Policy File","text/x-crystal":"Crystal","text/x-csharp":"C# source code","text/x-csrc":"C source code","text/x-csv":"CSV","text/x-cython":"Cython","text/x-d":"D source code","text/x-diff":"Diff file","text/x-django":"Jinja","text/x-dockerfile":"Dockerfile","text/x-dtd":"XML Document Type Definition","text/x-dylan":"Dylan","text/x-ebnf":"Lark","text/x-ecl":"ECL","text/x-eiffel":"Eiffel source code","text/x-elm":"Elm","text/x-emacs-lisp":"Emacs Lisp source code","text/x-erlang":"Erlang source code","text/x-expect":"Expect Script","text/x-factor":"Factor","text/x-forth":"Forth source code","text/x-fortran":"Fortran source code","text/x-fsharp":"F#","text/x-gfm":"Markdown","text/x-go":"Go source code","text/x-groovy":"Groovy source code","text/x-haml":"HAML source code","text/x-haskell":"Haskell source code","text/x-haxe":"Haxe source code","text/x-idl":"Inteface Definition Language","text/x-ini":"Configuration file","text/x-java":"Java source code","text/x-java-properties":"Java Properties","text/x-java-source":"Java source code","text/x-jsp":"Java Server Page","text/x-julia":"Julia","text/x-kotlin":"Kotlin","text/x-less":"LESS source code","text/x-lex":"Lex/Flex source code","text/x-literate-haskell":"Literate Haskell","text/x-livescript":"LiveScript","text/x-log":"Log file","text/x-lua":"Lua source code","text/x-markdown":"Markdown","text/x-mathematica":"Mathematica","text/x-matlab":"Matlab source code","text/x-ml":"ML source code","text/x-modula":"Modula source code","text/x-mumps":"M","text/x-nfo":"NFO","text/x-nginx-conf":"Nginx","text/x-nh":"Newick tree Format","text/x-nsis":"NSIS","text/x-objcsrc":"Objective-C","text/x-objectivec":"Objective-C++","text/x-ocaml":"Ocaml source code","text/x-octave":"MATLAB","text/x-oz":"Oz","text/x-pascal":"Pascal source code","text/x-pdf":"PDF Family","text/x-perl":"Perl script","text/x-php":"PHP script","text/x-plsql":"PLSQL","text/x-prolog":"Prolog source code","text/x-properties":"Java Properties","text/x-protobuf":"Protocol Buffer","text/x-pug":"Pug","text/x-puppet":"Puppet","text/x-python":"Python script","text/x-rexx":"Rexx source code","text/x-rpm-spec":"RPM Spec","text/x-rsrc":"R","text/x-rst":"reStructuredText source code","text/x-ruby":"Ruby source code","text/x-rustsrc":"ReScript","text/x-sas":"SAS","text/x-sass":"Sass","text/x-scala":"Scala source code","text/x-scheme":"Scheme source code","text/x-scss":"SCSS","text/x-sed":"Sed code","text/x-server-parsed-html":"Server Side Includes","text/x-server-parsed-html3":"Server Side Includes","text/x-sh":"Shell","text/x-slim":"Slim","text/x-smarty":"Smarty","text/x-soy":"Closure Templates","text/x-spreadsheet":"LTspice Symbol","text/x-sql":"SQL code","text/x-stex":"BibTeX","text/x-stsrc":"Smalltalk source code","text/x-swift":"Swift","text/x-systemverilog":"SystemVerilog","text/x-tcl":"Tcl script","text/x-tex":"TeX Source","text/x-toml":"TOML","text/x-ttcn-asn":"ASN.1","text/x-twig":"Twig","text/x-url":"Internet Shortcut","text/x-vb":"Visual Basic .NET","text/x-vbasic":"Visual basic source code","text/x-vbdotnet":"VB.NET source code","text/x-vbscript":"VBScript source code","text/x-verilog":"Verilog source code","text/x-vhdl":"VHDL source code","text/x-web-markdown":"Markdown source code","text/x-webidl":"WebIDL","text/x-yacc":"Yacc/Bison source code","text/x-yaml":"YAML source code","text/xml":"XML","text/xsl":"XSL Format","video/3gpp":"3GP Video","video/3gpp2":"3G2 Video","video/avi":"AVI Video","video/daala":"Ogg Daala Video","video/jpm":"JPEG 2000 Part 6 (JPM) Video","video/mj2":"MJ2 Video","video/mp1s":"MPEG-2 Video","video/mp2p":"MPEG-2 Video","video/mp4":"MP4 Video","video/mpeg":"MPEG-1 Video","video/mpeg2":"MPEG-2 Video","video/mpg":"MPEG-2 Video","video/msvideo":"AVI Video","video/ogg":"Ogg Video","video/quicktime":"QuickTime Video","video/theora":"Ogg Theora Video","video/vnd-vivo":"VivoActive Video","video/vnd.avi":"AVI Video","video/vnd.radgamettools.bink":"Bink Video","video/vnd.radgamettools.smacker":"Smacker Video","video/vnd.rn-realvideo":"Real Video","video/webm":"Web Movie","video/x-daala":"Ogg Daala Video","video/x-dirac":"Dirac Video","video/x-dv":"DV-DIF Video","video/x-flv":"FLV Video","video/x-matroska":"Matroska Video","video/x-matroska-3d":"Matroska Video","video/x-mng":"MNG Video","video/x-mpeg":"MPEG-2 Video","video/x-mpeg2a":"MPEG-2 Video","video/x-mpg":"MPEG-2 Video","video/x-ms-asf":"ASF Video","video/x-ms-asf-plugin":"ASF Video","video/x-ms-asx":"Windows Media Metafile Video","video/x-ms-wm":"ASF Video","video/x-ms-wma":"WMA Video","video/x-ms-wmv":"WMV Video","video/x-msvideo":"AVI Video","video/x-ogg-rgb":"Raw RGB Video","video/x-ogg-uvs":"Raw UVS Video","video/x-ogg-yuv":"Raw YUV Video","video/x-oggrgb":"Raw RGB Video","video/x-ogguvs":"Raw UVS Video","video/x-oggyuv":"Raw YUV Video","video/x-ogm":"OGM Video","video/x-quicktime":"QuickTime Video","video/x-sgi-movie":"SGI movie Video","video/x-theora":"Ogg Theora Video","wwwserver/redirection":"Internet Shortcut","x-conference/x-cooltalk":"Cooltalk Audio","x-world/x-3dmf":"3DMF"}},differenceInDays=__webpack_require__("./node_modules/date-fns/differenceInDays.js"),format=__webpack_require__("./node_modules/date-fns/format.js"),parseISO=__webpack_require__("./node_modules/date-fns/parseISO.js"),parsePhoneNumber=__webpack_require__("./node_modules/libphonenumber-js/min/exports/parsePhoneNumber.js"),numeral=__webpack_require__("./node_modules/numeral/numeral.js"),numeral_default=__webpack_require__.n(numeral);_Format=Format||(Format={}),numberFormat=function numberFormat(number){var format=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"0,0[.]00a";return isNil(number)?"":("".concat(number).startsWith("+")?"+":"")+numeral_default()(number).format(format)},makeDuration=function makeDuration(value){var fmt=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"HH:mm:ss.SSS";if(!isNaN(value)){var days=(0,differenceInDays.c)(value,0),prefix=days>0?"".concat(days,"d:"):"",time=(0,format.GP)((0,parseISO.H)(new Date(value).toISOString().replace("Z","")),fmt);return prefix||(time=time.replace(/^00:/,"")),"".concat(prefix).concat(time)}},_Format.phone=function(value){var _phone$country,country=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"AE",useCss=arguments.length>2&&void 0!==arguments[2]&&arguments[2];if(_isType_isEmpty(value)||value.length<6||!/^[\d+\s\-()]+$/.test(value))return value;var phone=function getPhone(value,country){var phone=null!=value.match(/^[0+]/)?value.replace(/^00/,"+"):"+".concat(value),number=(0,parsePhoneNumber.l)(phone,country);return null!=number?number:{country:"",formatInternational:function formatInternational(){return value}}}(value,country);return"".concat(useCss?''):Countries.emoji(null!==(_phone$country=phone.country)&&void 0!==_phone$country?_phone$country:"")," ").concat(phone.formatInternational())},_Format.number=function(number,format){return numberFormat(number,format)},_Format.bytes=function(number){return numberFormat(number,"0,0[.]00b")},_Format.percent=function(number){return numberFormat(number,"0,0[.]00%")},_Format.date=function(date){var fmt=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"d-M-y";return date?(0,format.GP)(new Date(date),fmt):""},_Format.duration=function(number,isFraction){if(isNil(number))return"00:00.000";if(number===1/0)return"∞";var value=parseFloat("".concat(number))*(isFraction?1e3:1);return isNaN(value)?"00:00.000":makeDuration(value)},_Format.durationSeconds=function(number,isFraction){if(isNil(number))return"00:00";if(number===1/0)return"∞";var value=parseFloat("".concat(number))*(isFraction?1e3:1);return isNaN(value)?"00:00":makeDuration(value,"HH:mm:ss")};var _get=function _get(hit,field){if(!isNil(hit)){if(isNil(field))return hit;if(_isType_isObject(hit)){if(!isNil(hit[field]))return hit[field];if(field.includes("."))for(var _ret,currentValue=hit,path=field.split("."),_loop=function _loop(){var outerPath=path.slice(0,i).join("."),innerPath=path.slice(i).join(".");if(outerPath in currentValue)return currentValue=currentValue[outerPath],isArray(currentValue)?currentValue[innerPath]?{v:currentValue[innerPath]}:{v:currentValue.map((function(val){return _get(val,innerPath)})).filter((function(val){return!_isType_isEmpty(val)}))}:{v:_get(currentValue,innerPath)}},i=path.length-1;i>=0;i--)if(_ret=_loop())return _ret.v}}},getByPath=function getByPath(obj,path){var defaultValue=arguments.length>2&&void 0!==arguments[2]?arguments[2]:void 0;if(_isType_isEmpty(obj)||_isType_isEmpty(path))return defaultValue;var value=_get(obj,path);return isNil(value)?defaultValue:value},getValue=function getValue(){for(var _len=arguments.length,args=new Array(_len),_key=0;_key<_len;_key++)args[_key]=arguments[_key];return args.find((function(a){return!_isType_isEmpty(a)}))},shortHash=function shortHash(){return((new Date).getTime()+Math.trunc(1e3*Math.random())).toString(36)},uuid=function uuid(){return[1e7,1e3,4e3,8e3,1e11].join("-").replace(/[018]/g,(function(c){return(+c^16*Math.random()&15>>+c/4).toString(16)}))},matchString=function matchString(base,match){var equality=arguments.length>2&&void 0!==arguments[2]&&arguments[2],_base=ascii(base).toLowerCase(),_match=ascii(match).toLowerCase();return!0===equality?_base===_match:"start"===equality?_base.startsWith(_match):_base.includes(_match)},compareValues=function compareValues(){var order=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"asc",key=arguments.length>1?arguments[1]:void 0;return function(a,b){var aValue=key&&_isType_isObject(a)?a[key]:a,bValue=key&&_isType_isObject(b)?b[key]:b,bigger="asc"===order?1:-1,smaller="desc"===order?1:-1;if(aValue===bValue)return 0;if(_isType_isNumber(aValue)&&_isType_isNumber(bValue))return aValue>bValue?bigger:smaller;if(_isType_isBoolean(aValue)&&_isType_isBoolean(bValue))return aValue?smaller:bigger;var _a=ascii(aValue).toLowerCase(),_b=ascii(bValue).toLowerCase();return 1===_a.localeCompare(_b)?bigger:smaller}},mergeRefs=function mergeRefs(){for(var _len=arguments.length,refs=new Array(_len),_key=0;_key<_len;_key++)refs[_key]=arguments[_key];return function(el){refs.forEach((function(ref){"function"==typeof ref&&ref(el),ref&&"current"in ref&&(ref.current=el)}))}},tokenize=function tokenize(str,keywords){if(_isType_isEmpty(keywords))return[[str,""]];for(var match,keyMap=(isArray(keywords)?keywords:[keywords]).map((function(key){var escapedKey=key.replace(/([+*.?^$()[\]\\!&|\-=])/gm,"\\$1");return null!=key.match(/^[a-z0-9]/i)&&(escapedKey="\\b".concat(escapedKey)),null!=key.match(/[a-z0-9]$/i)&&(escapedKey="".concat(escapedKey,"\\b")),escapedKey})),regx=new RegExp("(".concat(keyMap.join("|"),")"),"img"),lastIndex=0,tokens=[];null!==(match=regx.exec(str));)tokens.push([str.substring(lastIndex,match.index),str.substring(match.index,regx.lastIndex)]),lastIndex=regx.lastIndex;return tokens.push([str.substring(lastIndex),""]),tokens},iconToken=function iconToken(str){var split=str.trim().split(" "),first=split[0],last=split.length>1&&split.pop();return(first&&last?"".concat(first.charAt(0)).concat(last.charAt(0)):"".concat(first.substring(0,2))).toUpperCase()},getImageColorset=function getImageColorset(el){var canvas=document.createElement("canvas");canvas.width=Math.min(500,el.naturalWidth),canvas.height=Math.min(500,el.naturalHeight);var ctx=canvas.getContext("2d");if(null!=ctx){ctx.drawImage(el,0,0,el.naturalWidth,el.naturalHeight,0,0,canvas.width,canvas.height);for(var data=ctx.getImageData(0,0,canvas.width,canvas.height).data,dark=0,light=0,totalPixels=0,transparent=0===(null==data?void 0:data[3]),x=0,len=data.length;x0?"light":"dark";return transparent&&(ret+="_transparent"),ret}return"light"};"undefined"!=typeof window&&(window.getImageColorset=getImageColorset);var objectWithoutProperties=__webpack_require__("./node_modules/@babel/runtime/helpers/esm/objectWithoutProperties.js"),toConsumableArray=__webpack_require__("./node_modules/@babel/runtime/helpers/esm/toConsumableArray.js"),_excluded=["module"],_excluded2=["module"],_excluded3=["module"],_excluded4=["module"],_excluded5=["module"],LOG_LEVEL=function(LOG_LEVEL){return LOG_LEVEL[LOG_LEVEL.OFF=0]="OFF",LOG_LEVEL[LOG_LEVEL.WARNING=1]="WARNING",LOG_LEVEL[LOG_LEVEL.INFO=2]="INFO",LOG_LEVEL[LOG_LEVEL.DEBUG=3]="DEBUG",LOG_LEVEL}(LOG_LEVEL||{}),NODE={LOG:"",INFO:"",DEBUG:"",ERROR:"",WARNING:"",TIME:"",PROCESS:"",DURATION:"",RESET:"",logLevel:function logLevel(){var _global$LOG_LEVEL;return null!==(_global$LOG_LEVEL=__webpack_require__.g.LOG_LEVEL)&&void 0!==_global$LOG_LEVEL?_global$LOG_LEVEL:LOG_LEVEL.WARNING},makeLog:function makeLog(level){var _ref=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},process=_ref.process,module=_ref.module,duration=_ref.duration,totalTime=_ref.totalTime,ret=[];return process&&ret.push("".concat(this.PROCESS,"Process: ").concat(process).concat(this.RESET)),module&&ret.push("".concat(this.PROCESS,"Module: ").concat(module).concat(this.RESET)),duration&&ret.push("".concat(this.DURATION,"Duration: ").concat(duration).concat(this.RESET)),module&&ret.push("".concat(this.DURATION,"TotalTime: ").concat(totalTime).concat(this.RESET)),["[".concat(this.TIME).concat((new Date).toISOString()).concat(this.RESET,"] ").concat(level),ret.join(" ")].filter(Boolean).join("\n")},log:function log(msg,opts){var _console;if(!(+this.logLevel()2?_len-2:0),_key=2;_key<_len;_key++)rest[_key-2]=arguments[_key];(_console=console).log.apply(_console,[this.makeLog("".concat(this.LOG,"LOG").concat(this.RESET),opts),"\n".concat(msg,"\n")].concat(rest))}},debug:function debug(msg,opts){var _console2;if(!(+this.logLevel()2?_len2-2:0),_key2=2;_key2<_len2;_key2++)rest[_key2-2]=arguments[_key2];(_console2=console).debug.apply(_console2,[this.makeLog("".concat(this.DEBUG,"DEBUG").concat(this.RESET),opts),"\n".concat(msg,"\n")].concat(rest))}},info:function info(msg,opts){var _console3;if(!(+this.logLevel()2?_len3-2:0),_key3=2;_key3<_len3;_key3++)rest[_key3-2]=arguments[_key3];(_console3=console).info.apply(_console3,[this.makeLog("".concat(this.INFO,"INFO").concat(this.RESET),opts),"\n".concat(msg,"\n")].concat(rest))}},error:function error(msg,opts){for(var _console4,_len4=arguments.length,rest=new Array(_len4>2?_len4-2:0),_key4=2;_key4<_len4;_key4++)rest[_key4-2]=arguments[_key4];(_console4=console).error.apply(_console4,[this.makeLog("".concat(this.ERROR,"ERROR").concat(this.RESET),opts),"\n".concat(msg,"\n")].concat(rest))},warning:function warning(msg,opts){var _console5;if(!(+this.logLevel()2?_len5-2:0),_key5=2;_key5<_len5;_key5++)rest[_key5-2]=arguments[_key5];(_console5=console).warn.apply(_console5,[this.makeLog("".concat(this.WARNING,"WARNING").concat(this.RESET),opts),"\n".concat(msg,"\n")].concat(rest))}}},BROWSER={LOG:"#afaf87",INFO:"#5fd7ff",DEBUG:"#87afd7",ERROR:"#d7005f",WARNING:"#ff875f",TIME:"#5faf87",PROCESS:"#87af87",DURATION:"#af87d7",logLevel:function logLevel(){var _ref2;return null!==(_ref2="undefined"!=typeof window?window.LOG_LEVEL:void 0)&&void 0!==_ref2?_ref2:LOG_LEVEL.WARNING},makeLog:function makeLog(level,color){var _ref3=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},process=_ref3.process,module=_ref3.module,duration=_ref3.duration,totalTime=_ref3.totalTime,ret=[],colors=["color:".concat(this.TIME,";font-weight:bold;"),"color:".concat(color,";font-weight:bold;")];return module&&ret.push("%cModule: ".concat(module)),process&&ret.push("%cProcess: ".concat(process)),duration&&ret.push("%cDuration: ".concat(duration)),module&&ret.push("%cTotalTime: ".concat(totalTime)),module&&colors.push("color:".concat(this.PROCESS)),process&&colors.push("color:".concat(this.PROCESS)),duration&&colors.push("color:".concat(this.DURATION)),module&&colors.push("color:".concat(this.DURATION)),[["%c[".concat((new Date).toISOString(),"] ").concat(level),ret.join(" ")].filter(Boolean).join("\n"),colors]},log:function log(msg,opts){var _console6;if(!(+this.logLevel()2?_len6-2:0),_key6=2;_key6<_len6;_key6++)rest[_key6-2]=arguments[_key6];(_console6=console).log.apply(_console6,[logs].concat((0,toConsumableArray.A)(colors),["\n".concat(msg,"\n")],rest))}},debug:function debug(msg,opts){var _console7;if(!(+this.logLevel()2?_len7-2:0),_key7=2;_key7<_len7;_key7++)rest[_key7-2]=arguments[_key7];(_console7=console).debug.apply(_console7,[logs].concat((0,toConsumableArray.A)(colors),["\n".concat(msg,"\n")],rest))}},info:function info(msg,opts){var _console8;if(!(+this.logLevel()2?_len8-2:0),_key8=2;_key8<_len8;_key8++)rest[_key8-2]=arguments[_key8];(_console8=console).info.apply(_console8,[logs].concat((0,toConsumableArray.A)(colors),["\n".concat(msg,"\n")],rest))}},error:function error(msg,opts){for(var _console9,_this$makeLog7=this.makeLog("%cERROR",this.ERROR,opts),_this$makeLog8=(0,slicedToArray.A)(_this$makeLog7,2),logs=_this$makeLog8[0],colors=_this$makeLog8[1],_len9=arguments.length,rest=new Array(_len9>2?_len9-2:0),_key9=2;_key9<_len9;_key9++)rest[_key9-2]=arguments[_key9];(_console9=console).error.apply(_console9,[logs].concat((0,toConsumableArray.A)(colors),["\n".concat(msg,"\n")],rest))},warning:function warning(msg,opts){var _console10;if(!(+this.logLevel()2?_len10-2:0),_key10=2;_key10<_len10;_key10++)rest[_key10-2]=arguments[_key10];(_console10=console).warn.apply(_console10,[logs].concat((0,toConsumableArray.A)(colors),["\n".concat(msg,"\ntest")],rest))}}},logger=function logger(){return"undefined"==typeof window?NODE:"undefined"!=typeof window?BROWSER:void 0},useLogger=function useLogger(mod){return{timer:function timer(process){var startTime=(new Date).getTime(),nextTime=(new Date).getTime(),self=this,getTime=function getTime(){var ret=((new Date).getTime()-nextTime)/1e3;return nextTime=(new Date).getTime(),ret},getFullTime=function getFullTime(){return((new Date).getTime()-startTime)/1e3};return{log:function log(msg){for(var _len11=arguments.length,rest=new Array(_len11>1?_len11-1:0),_key11=1;_key11<_len11;_key11++)rest[_key11-1]=arguments[_key11];return self.log.apply(self,[msg,{process,duration:getTime(),totalTime:getFullTime()}].concat(rest))},debug:function debug(msg){for(var _len12=arguments.length,rest=new Array(_len12>1?_len12-1:0),_key12=1;_key12<_len12;_key12++)rest[_key12-1]=arguments[_key12];return self.debug.apply(self,[msg,{process,duration:getTime(),totalTime:getFullTime()}].concat(rest))},info:function info(msg){for(var _len13=arguments.length,rest=new Array(_len13>1?_len13-1:0),_key13=1;_key13<_len13;_key13++)rest[_key13-1]=arguments[_key13];return self.info.apply(self,[msg,{process,duration:getTime(),totalTime:getFullTime()}].concat(rest))},error:function error(msg){for(var _len14=arguments.length,rest=new Array(_len14>1?_len14-1:0),_key14=1;_key14<_len14;_key14++)rest[_key14-1]=arguments[_key14];return self.error.apply(self,[msg,{process,duration:getTime(),totalTime:getFullTime()}].concat(rest))},warning:function warning(msg){for(var _len15=arguments.length,rest=new Array(_len15>1?_len15-1:0),_key15=1;_key15<_len15;_key15++)rest[_key15-1]=arguments[_key15];return self.warning.apply(self,[msg,{process,duration:getTime(),totalTime:getFullTime()}].concat(rest))},end:function end(){for(var msg=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"completed",_len16=arguments.length,rest=new Array(_len16>1?_len16-1:0),_key16=1;_key16<_len16;_key16++)rest[_key16-1]=arguments[_key16];return self.info.apply(self,[msg,{process,duration:getTime(),totalTime:getFullTime()}].concat(rest))}}},log:function log(msg,_ref4){var _logger;_ref4.module;for(var opts=(0,objectWithoutProperties.A)(_ref4,_excluded),_len17=arguments.length,rest=new Array(_len17>2?_len17-2:0),_key17=2;_key17<_len17;_key17++)rest[_key17-2]=arguments[_key17];null===(_logger=logger())||void 0===_logger||_logger.log.apply(_logger,[msg,opts].concat(rest))},debug:function debug(msg,_ref5){var _logger2;_ref5.module;for(var opts=(0,objectWithoutProperties.A)(_ref5,_excluded2),_len18=arguments.length,rest=new Array(_len18>2?_len18-2:0),_key18=2;_key18<_len18;_key18++)rest[_key18-2]=arguments[_key18];null===(_logger2=logger())||void 0===_logger2||_logger2.debug.apply(_logger2,[msg,opts].concat(rest))},info:function info(msg,_ref6){var _logger3;_ref6.module;for(var opts=(0,objectWithoutProperties.A)(_ref6,_excluded3),_len19=arguments.length,rest=new Array(_len19>2?_len19-2:0),_key19=2;_key19<_len19;_key19++)rest[_key19-2]=arguments[_key19];null===(_logger3=logger())||void 0===_logger3||_logger3.info.apply(_logger3,[msg,opts].concat(rest))},error:function error(msg,_ref7){var _logger4;_ref7.module;for(var opts=(0,objectWithoutProperties.A)(_ref7,_excluded4),_len20=arguments.length,rest=new Array(_len20>2?_len20-2:0),_key20=2;_key20<_len20;_key20++)rest[_key20-2]=arguments[_key20];null===(_logger4=logger())||void 0===_logger4||_logger4.error.apply(_logger4,[msg,opts].concat(rest))},warning:function warning(msg,_ref8){var _logger5;_ref8.module;for(var opts=(0,objectWithoutProperties.A)(_ref8,_excluded5),_len21=arguments.length,rest=new Array(_len21>2?_len21-2:0),_key21=2;_key21<_len21;_key21++)rest[_key21-2]=arguments[_key21];null===(_logger5=logger())||void 0===_logger5||_logger5.warning.apply(_logger5,[msg,opts].concat(rest))}}},index_esm=__webpack_require__("./node_modules/yup/index.esm.js");index_esm.setLocale({mixed:{default:function _default(_ref){return{key:"form:yup.invalid",values:{path:_ref.path,label:_ref.label}}},required:function required(_ref2){return{key:"form:yup.required",values:{path:_ref2.path,label:_ref2.label}}},notType:function notType(_ref3){return{key:"form:yup.invalidType",values:{type:_ref3.type,path:_ref3.path,label:_ref3.label}}}},array:{min:function min(_ref4){return{key:"form:yup.arrayMin",values:{min:_ref4.min,path:_ref4.path,label:_ref4.label}}},max:function max(_ref5){return{key:"form:yup.arrayMax",values:{max:_ref5.max,path:_ref5.path,label:_ref5.label}}}},string:{min:function min(_ref6){return{key:"form:yup.stringMin",values:{min:_ref6.min,path:_ref6.path,label:_ref6.label}}},max:function max(_ref7){return{key:"form:yup.stringMax",values:{max:_ref7.max,path:_ref7.path,label:_ref7.label}}}},number:{min:function min(_ref8){return{key:"form:yup.numberMin",values:{min:_ref8.min,path:_ref8.path,label:_ref8.label}}},max:function max(_ref9){return{key:"form:yup.numberMax",values:{max:_ref9.max,path:_ref9.path,label:_ref9.label}}}},boolean:{}});var EMPTY_ARRAY=[];Object.freeze(EMPTY_ARRAY);Object.freeze({})},"./storybook-config-entry.js":(__unused_webpack_module,__unused_webpack___webpack_exports__,__webpack_require__)=>{"use strict";var external_STORYBOOK_MODULE_GLOBAL_=__webpack_require__("@storybook/global"),external_STORYBOOK_MODULE_PREVIEW_API_=__webpack_require__("storybook/internal/preview-api"),external_STORYBOOK_MODULE_CHANNELS_=__webpack_require__("storybook/internal/channels");const importers=[async path=>{if(!/^\.[\\/](?:stories(?:\/(?!\.)(?:(?:(?!(?:^|\/)\.).)*?)\/|\/|$)(?!\.)(?=.)[^/]*?\.mdx)$/.exec(path))return;const pathRemainder=path.substring(10);return __webpack_require__("./stories lazy recursive ^\\.\\/.*$ include: (?%21.*node_modules)(?:\\/stories(?:\\/(?%21\\.)(?:(?:(?%21(?:^%7C\\/)\\.).)*?)\\/%7C\\/%7C$)(?%21\\.)(?=.)[^/]*?\\.mdx)$")("./"+pathRemainder)},async path=>{if(!/^\.[\\/](?:packages(?:\/(?!\.)(?:(?:(?!(?:^|\/)\.).)*?)\/|\/|$)stories(?:\/(?!\.)(?:(?:(?!(?:^|\/)\.).)*?)\/|\/|$)(?!\.)(?=.)[^/]*?\.mdx)$/.exec(path))return;const pathRemainder=path.substring(11);return __webpack_require__("./packages lazy recursive ^\\.\\/.*$ include: (?%21.*node_modules)(?:\\/packages(?:\\/(?%21\\.)(?:(?:(?%21(?:^%7C\\/)\\.).)*?)\\/%7C\\/%7C$)stories(?:\\/(?%21\\.)(?:(?:(?%21(?:^%7C\\/)\\.).)*?)\\/%7C\\/%7C$)(?%21\\.)(?=.)[^/]*?\\.mdx)$")("./"+pathRemainder)},async path=>{if(!/^\.[\\/](?:packages(?:\/(?!\.)(?:(?:(?!(?:^|\/)\.).)*?)\/|\/|$)stories(?:\/(?!\.)(?:(?:(?!(?:^|\/)\.).)*?)\/|\/|$)(?!\.)(?=.)[^/]*?\.stories\.(js|jsx|ts|tsx))$/.exec(path))return;const pathRemainder=path.substring(11);return __webpack_require__("./packages lazy recursive ^\\.\\/.*$ include: (?%21.*node_modules)(?:\\/packages(?:\\/(?%21\\.)(?:(?:(?%21(?:^%7C\\/)\\.).)*?)\\/%7C\\/%7C$)stories(?:\\/(?%21\\.)(?:(?:(?%21(?:^%7C\\/)\\.).)*?)\\/%7C\\/%7C$)(?%21\\.)(?=.)[^/]*?\\.stories\\.(js%7Cjsx%7Cts%7Ctsx))$")("./"+pathRemainder)}];const channel=(0,external_STORYBOOK_MODULE_CHANNELS_.createBrowserChannel)({page:"preview"});external_STORYBOOK_MODULE_PREVIEW_API_.addons.setChannel(channel),"DEVELOPMENT"===external_STORYBOOK_MODULE_GLOBAL_.global.CONFIG_TYPE&&(window.__STORYBOOK_SERVER_CHANNEL__=channel);const preview=new external_STORYBOOK_MODULE_PREVIEW_API_.PreviewWeb((async function importFn(path){for(let i=0;iimporters[i](path),x());if(moduleExports)return moduleExports}var x}),(()=>(0,external_STORYBOOK_MODULE_PREVIEW_API_.composeConfigs)([__webpack_require__("./node_modules/@storybook/react/dist/entry-preview.mjs"),__webpack_require__("./node_modules/@storybook/react/dist/entry-preview-docs.mjs"),__webpack_require__("./node_modules/@storybook/addon-links/dist/preview.mjs"),__webpack_require__("./node_modules/@storybook/addon-essentials/dist/docs/preview.mjs"),__webpack_require__("./node_modules/@storybook/addon-essentials/dist/actions/preview.mjs"),__webpack_require__("./node_modules/@storybook/addon-essentials/dist/backgrounds/preview.mjs"),__webpack_require__("./node_modules/@storybook/addon-essentials/dist/viewport/preview.mjs"),__webpack_require__("./node_modules/@storybook/addon-essentials/dist/measure/preview.mjs"),__webpack_require__("./node_modules/@storybook/addon-essentials/dist/outline/preview.mjs"),__webpack_require__("./node_modules/@storybook/addon-essentials/dist/highlight/preview.mjs"),__webpack_require__("./node_modules/@storybook/addon-interactions/dist/preview.mjs"),__webpack_require__("./node_modules/@storybook/addon-a11y/dist/preview.mjs"),__webpack_require__("./node_modules/@storybook/addon-styling/dist/preview.mjs"),__webpack_require__("./.storybook/preview.tsx")])));window.__STORYBOOK_PREVIEW__=preview,window.__STORYBOOK_STORY_STORE__=preview.storyStore,window.__STORYBOOK_ADDONS_CHANNEL__=channel},"./.storybook/preview.tsx":(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.r(__webpack_exports__),__webpack_require__.d(__webpack_exports__,{default:()=>preview});var jsx_runtime=__webpack_require__("./node_modules/react/jsx-runtime.js"),injectStylesIntoStyleTag=(__webpack_require__("./node_modules/@mdi/font/css/materialdesignicons.min.css"),__webpack_require__("./node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js")),injectStylesIntoStyleTag_default=__webpack_require__.n(injectStylesIntoStyleTag),styleDomAPI=__webpack_require__("./node_modules/style-loader/dist/runtime/styleDomAPI.js"),styleDomAPI_default=__webpack_require__.n(styleDomAPI),insertBySelector=__webpack_require__("./node_modules/style-loader/dist/runtime/insertBySelector.js"),insertBySelector_default=__webpack_require__.n(insertBySelector),setAttributesWithoutAttributes=__webpack_require__("./node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js"),setAttributesWithoutAttributes_default=__webpack_require__.n(setAttributesWithoutAttributes),insertStyleElement=__webpack_require__("./node_modules/style-loader/dist/runtime/insertStyleElement.js"),insertStyleElement_default=__webpack_require__.n(insertStyleElement),styleTagTransform=__webpack_require__("./node_modules/style-loader/dist/runtime/styleTagTransform.js"),styleTagTransform_default=__webpack_require__.n(styleTagTransform),styles=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./.storybook/styles/styles.css"),options={};options.styleTagTransform=styleTagTransform_default(),options.setAttributes=setAttributesWithoutAttributes_default(),options.insert=insertBySelector_default().bind(null,"head"),options.domAPI=styleDomAPI_default(),options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(styles.A,options);styles.A&&styles.A.locals&&styles.A.locals;var esm=__webpack_require__("./packages/core/dist/esm/index.js"),dist=__webpack_require__("./node_modules/@storybook/addon-docs/dist/index.mjs"),addon_jest_dist=__webpack_require__("./node_modules/@storybook/addon-jest/dist/index.mjs"),blocks_dist=__webpack_require__("./node_modules/@storybook/blocks/dist/index.mjs"),external_STORYBOOK_MODULE_PREVIEW_API_=__webpack_require__("storybook/internal/preview-api"),index_browser=__webpack_require__("./node_modules/msw-storybook-addon/dist/index.browser.js"),react=__webpack_require__("./node_modules/react/index.js"),es=__webpack_require__("./node_modules/react-i18next/dist/es/index.js"),i18next=__webpack_require__("./node_modules/i18next/dist/esm/i18next.js"),i18nextBrowserLanguageDetector=__webpack_require__("./node_modules/i18next-browser-languagedetector/dist/esm/i18nextBrowserLanguageDetector.js");const en_namespaceObject=JSON.parse('{"app":{"appTitle":"React UI Framework","appDescription":"React UI framework for business applications"},"login":{"demo":"Login credential for demo [demo/pass]"}}'),ar_namespaceObject=JSON.parse('{"app":{"appDescription":"إطار عمل React UI لتطبيقات الأعمال"}}');i18next.Ay.use(i18nextBrowserLanguageDetector.A).use(es.r9).init({resources:{en:en_namespaceObject,ar:ar_namespaceObject},defaultNS:"app",fallbackLng:["en"],keySeparator:".",interpolation:{escapeValue:!1}}).then();const i18n=i18next.Ay,jest_test_results_namespaceObject=JSON.parse('{"numFailedTestSuites":0,"numFailedTests":0,"numPassedTestSuites":13,"numPassedTests":62,"numPendingTestSuites":0,"numPendingTests":0,"numRuntimeErrorTestSuites":0,"numTodoTests":0,"numTotalTestSuites":13,"numTotalTests":62,"openHandles":[],"snapshot":{"added":0,"didUpdate":false,"failure":false,"filesAdded":0,"filesRemoved":0,"filesRemovedList":[],"filesUnmatched":0,"filesUpdated":0,"matched":15,"total":15,"unchecked":0,"uncheckedKeysByFile":[],"unmatched":0,"updated":0},"startTime":1729891850828,"success":true,"testResults":[{"assertionResults":[{"ancestorTitles":["Button"],"duration":31,"failureDetails":[],"failureMessages":[],"fullName":"Button should render label only","invocations":1,"location":null,"numPassingAsserts":4,"retryReasons":[],"status":"passed","title":"should render label only"},{"ancestorTitles":["Button"],"duration":6,"failureDetails":[],"failureMessages":[],"fullName":"Button should render icon only","invocations":1,"location":null,"numPassingAsserts":4,"retryReasons":[],"status":"passed","title":"should render icon only"},{"ancestorTitles":["Button"],"duration":6,"failureDetails":[],"failureMessages":[],"fullName":"Button should render alt icon","invocations":1,"location":null,"numPassingAsserts":3,"retryReasons":[],"status":"passed","title":"should render alt icon"},{"ancestorTitles":["Button"],"duration":4,"failureDetails":[],"failureMessages":[],"fullName":"Button should render rounded full-width","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"should render rounded full-width"},{"ancestorTitles":["Button"],"duration":8,"failureDetails":[],"failureMessages":[],"fullName":"Button should handle click","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"should handle click"},{"ancestorTitles":["Button"],"duration":3,"failureDetails":[],"failureMessages":[],"fullName":"Button should not handle click when disabled","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"should not handle click when disabled"},{"ancestorTitles":["Button"],"duration":9,"failureDetails":[],"failureMessages":[],"fullName":"Button should handle hotkey","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"should handle hotkey"},{"ancestorTitles":["Button"],"duration":4,"failureDetails":[],"failureMessages":[],"fullName":"Button should render with badge","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"should render with badge"},{"ancestorTitles":["Button"],"duration":104,"failureDetails":[],"failureMessages":[],"fullName":"Button should render action message","invocations":1,"location":null,"numPassingAsserts":3,"retryReasons":[],"status":"passed","title":"should render action message"},{"ancestorTitles":["Button"],"duration":28,"failureDetails":[],"failureMessages":[],"fullName":"Button should render action message via prop","invocations":1,"location":null,"numPassingAsserts":3,"retryReasons":[],"status":"passed","title":"should render action message via prop"}],"endTime":1729891863705,"message":"","name":"/home/runner/work/react-fabric/react-fabric/packages/core/tests/buttons/Button.test.tsx","startTime":1729891851166,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":["isEqual test"],"duration":1,"failureDetails":[],"failureMessages":[],"fullName":"isEqual test should check string","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"should check string"},{"ancestorTitles":["isEqual test"],"duration":3,"failureDetails":[],"failureMessages":[],"fullName":"isEqual test should check number","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"should check number"},{"ancestorTitles":["isEqual test"],"duration":0,"failureDetails":[],"failureMessages":[],"fullName":"isEqual test should check boolean","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"should check boolean"},{"ancestorTitles":["isEqual test"],"duration":2,"failureDetails":[],"failureMessages":[],"fullName":"isEqual test should check array","invocations":1,"location":null,"numPassingAsserts":5,"retryReasons":[],"status":"passed","title":"should check array"},{"ancestorTitles":["isEqual test"],"duration":2,"failureDetails":[],"failureMessages":[],"fullName":"isEqual test should check object","invocations":1,"location":null,"numPassingAsserts":4,"retryReasons":[],"status":"passed","title":"should check object"},{"ancestorTitles":["isEqual test"],"duration":2,"failureDetails":[],"failureMessages":[],"fullName":"isEqual test should check object array","invocations":1,"location":null,"numPassingAsserts":4,"retryReasons":[],"status":"passed","title":"should check object array"},{"ancestorTitles":["isEqual test"],"duration":2,"failureDetails":[],"failureMessages":[],"fullName":"isEqual test should match string","invocations":1,"location":null,"numPassingAsserts":6,"retryReasons":[],"status":"passed","title":"should match string"},{"ancestorTitles":["isEqual test"],"duration":10,"failureDetails":[],"failureMessages":[],"fullName":"isEqual test should compare","invocations":1,"location":null,"numPassingAsserts":9,"retryReasons":[],"status":"passed","title":"should compare"}],"endTime":1729891864408,"message":"","name":"/home/runner/work/react-fabric/react-fabric/packages/utilities/tests/isEqual.test.ts","startTime":1729891863720,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":["ButtonGroup"],"duration":12,"failureDetails":[],"failureMessages":[],"fullName":"ButtonGroup should render buttons","invocations":1,"location":null,"numPassingAsserts":3,"retryReasons":[],"status":"passed","title":"should render buttons"},{"ancestorTitles":["ButtonGroup"],"duration":4,"failureDetails":[],"failureMessages":[],"fullName":"ButtonGroup should render full-width","invocations":1,"location":null,"numPassingAsserts":3,"retryReasons":[],"status":"passed","title":"should render full-width"},{"ancestorTitles":["ButtonGroup"],"duration":3,"failureDetails":[],"failureMessages":[],"fullName":"ButtonGroup should render vertical","invocations":1,"location":null,"numPassingAsserts":3,"retryReasons":[],"status":"passed","title":"should render vertical"}],"endTime":1729891864629,"message":"","name":"/home/runner/work/react-fabric/react-fabric/packages/core/tests/buttons/ButtonGroup.test.tsx","startTime":1729891864419,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":["check type test"],"duration":2,"failureDetails":[],"failureMessages":[],"fullName":"check type test should check nils","invocations":1,"location":null,"numPassingAsserts":6,"retryReasons":[],"status":"passed","title":"should check nils"},{"ancestorTitles":["check type test"],"duration":1,"failureDetails":[],"failureMessages":[],"fullName":"check type test should check empty","invocations":1,"location":null,"numPassingAsserts":10,"retryReasons":[],"status":"passed","title":"should check empty"},{"ancestorTitles":["check type test"],"duration":1,"failureDetails":[],"failureMessages":[],"fullName":"check type test should check string","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"should check string"},{"ancestorTitles":["check type test"],"duration":1,"failureDetails":[],"failureMessages":[],"fullName":"check type test should check number","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"should check number"},{"ancestorTitles":["check type test"],"duration":2,"failureDetails":[],"failureMessages":[],"fullName":"check type test should check boolean","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"should check boolean"},{"ancestorTitles":["check type test"],"duration":1,"failureDetails":[],"failureMessages":[],"fullName":"check type test should check truthy","invocations":1,"location":null,"numPassingAsserts":4,"retryReasons":[],"status":"passed","title":"should check truthy"},{"ancestorTitles":["check type test"],"duration":1,"failureDetails":[],"failureMessages":[],"fullName":"check type test should check falsy","invocations":1,"location":null,"numPassingAsserts":4,"retryReasons":[],"status":"passed","title":"should check falsy"},{"ancestorTitles":["check type test"],"duration":1,"failureDetails":[],"failureMessages":[],"fullName":"check type test should check object","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"should check object"},{"ancestorTitles":["check type test"],"duration":1,"failureDetails":[],"failureMessages":[],"fullName":"check type test should check svg path","invocations":1,"location":null,"numPassingAsserts":3,"retryReasons":[],"status":"passed","title":"should check svg path"},{"ancestorTitles":["check type test"],"duration":1,"failureDetails":[],"failureMessages":[],"fullName":"check type test should check color","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"should check color"},{"ancestorTitles":["check type test"],"duration":9,"failureDetails":[],"failureMessages":[],"fullName":"check type test should check rtl","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"should check rtl"}],"endTime":1729891864810,"message":"","name":"/home/runner/work/react-fabric/react-fabric/packages/utilities/tests/isType.test.ts","startTime":1729891864639,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":["format test"],"duration":3,"failureDetails":[],"failureMessages":[],"fullName":"format test should format number","invocations":1,"location":null,"numPassingAsserts":5,"retryReasons":[],"status":"passed","title":"should format number"},{"ancestorTitles":["format test"],"duration":1,"failureDetails":[],"failureMessages":[],"fullName":"format test should format bytes","invocations":1,"location":null,"numPassingAsserts":4,"retryReasons":[],"status":"passed","title":"should format bytes"},{"ancestorTitles":["format test"],"duration":1,"failureDetails":[],"failureMessages":[],"fullName":"format test should format percentage","invocations":1,"location":null,"numPassingAsserts":3,"retryReasons":[],"status":"passed","title":"should format percentage"},{"ancestorTitles":["format test"],"duration":6,"failureDetails":[],"failureMessages":[],"fullName":"format test should format date","invocations":1,"location":null,"numPassingAsserts":3,"retryReasons":[],"status":"passed","title":"should format date"},{"ancestorTitles":["format test"],"duration":3,"failureDetails":[],"failureMessages":[],"fullName":"format test should format duration","invocations":1,"location":null,"numPassingAsserts":5,"retryReasons":[],"status":"passed","title":"should format duration"},{"ancestorTitles":["format test"],"duration":1,"failureDetails":[],"failureMessages":[],"fullName":"format test should format duration seconds","invocations":1,"location":null,"numPassingAsserts":5,"retryReasons":[],"status":"passed","title":"should format duration seconds"},{"ancestorTitles":["format test"],"duration":5,"failureDetails":[],"failureMessages":[],"fullName":"format test should format phone","invocations":1,"location":null,"numPassingAsserts":6,"retryReasons":[],"status":"passed","title":"should format phone"},{"ancestorTitles":["format test"],"duration":0,"failureDetails":[],"failureMessages":[],"fullName":"format test get mime type","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"get mime type"}],"endTime":1729891865000,"message":"","name":"/home/runner/work/react-fabric/react-fabric/packages/utilities/tests/format.test.ts","startTime":1729891864824,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":["get values by JSON path"],"duration":2,"failureDetails":[],"failureMessages":[],"fullName":"get values by JSON path should get default values","invocations":1,"location":null,"numPassingAsserts":3,"retryReasons":[],"status":"passed","title":"should get default values"},{"ancestorTitles":["get values by JSON path"],"duration":1,"failureDetails":[],"failureMessages":[],"fullName":"get values by JSON path should get inner path","invocations":1,"location":null,"numPassingAsserts":4,"retryReasons":[],"status":"passed","title":"should get inner path"},{"ancestorTitles":["get values by JSON path"],"duration":1,"failureDetails":[],"failureMessages":[],"fullName":"get values by JSON path should get inner path with . in name","invocations":1,"location":null,"numPassingAsserts":4,"retryReasons":[],"status":"passed","title":"should get inner path with . in name"},{"ancestorTitles":["get values by JSON path"],"duration":1,"failureDetails":[],"failureMessages":[],"fullName":"get values by JSON path should get first no null value","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"should get first no null value"}],"endTime":1729891865152,"message":"","name":"/home/runner/work/react-fabric/react-fabric/packages/utilities/tests/getByPath.test.ts","startTime":1729891865009,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":["bounding box test"],"duration":2,"failureDetails":[],"failureMessages":[],"fullName":"bounding box test should get bounding box","invocations":1,"location":null,"numPassingAsserts":4,"retryReasons":[],"status":"passed","title":"should get bounding box"},{"ancestorTitles":["bounding box test"],"duration":2,"failureDetails":[],"failureMessages":[],"fullName":"bounding box test should get box","invocations":1,"location":null,"numPassingAsserts":4,"retryReasons":[],"status":"passed","title":"should get box"}],"endTime":1729891865300,"message":"","name":"/home/runner/work/react-fabric/react-fabric/packages/utilities/tests/boundingBox.test.ts","startTime":1729891865163,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":["tokenize test"],"duration":2,"failureDetails":[],"failureMessages":[],"fullName":"tokenize test should tokenize text","invocations":1,"location":null,"numPassingAsserts":3,"retryReasons":[],"status":"passed","title":"should tokenize text"},{"ancestorTitles":["tokenize test"],"duration":1,"failureDetails":[],"failureMessages":[],"fullName":"tokenize test should tokenize text for icon","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"should tokenize text for icon"}],"endTime":1729891865450,"message":"","name":"/home/runner/work/react-fabric/react-fabric/packages/utilities/tests/tokenize.test.ts","startTime":1729891865310,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":["countries test"],"duration":1,"failureDetails":[],"failureMessages":[],"fullName":"countries test should return country model","invocations":1,"location":null,"numPassingAsserts":3,"retryReasons":[],"status":"passed","title":"should return country model"},{"ancestorTitles":["countries test"],"duration":0,"failureDetails":[],"failureMessages":[],"fullName":"countries test should convert iso2 to iso3","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"should convert iso2 to iso3"},{"ancestorTitles":["countries test"],"duration":1,"failureDetails":[],"failureMessages":[],"fullName":"countries test should convert iso3 to iso2","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"should convert iso3 to iso2"},{"ancestorTitles":["countries test"],"duration":1,"failureDetails":[],"failureMessages":[],"fullName":"countries test should convert alternate code to iso2","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"should convert alternate code to iso2"},{"ancestorTitles":["countries test"],"duration":1,"failureDetails":[],"failureMessages":[],"fullName":"countries test should receive flag emoji","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"should receive flag emoji"},{"ancestorTitles":["countries test"],"duration":7,"failureDetails":[],"failureMessages":[],"fullName":"countries test should receive country name","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"should receive country name"}],"endTime":1729891865611,"message":"","name":"/home/runner/work/react-fabric/react-fabric/packages/utilities/tests/countries.test.ts","startTime":1729891865462,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":["dedupe test"],"duration":1,"failureDetails":[],"failureMessages":[],"fullName":"dedupe test should dedupe","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"should dedupe"},{"ancestorTitles":["dedupe test"],"duration":6,"failureDetails":[],"failureMessages":[],"fullName":"dedupe test should flatten and dedupe","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"should flatten and dedupe"},{"ancestorTitles":["dedupe test"],"duration":1,"failureDetails":[],"failureMessages":[],"fullName":"dedupe test should group","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"should group"}],"endTime":1729891865766,"message":"","name":"/home/runner/work/react-fabric/react-fabric/packages/utilities/tests/dedupe.test.ts","startTime":1729891865622,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":["hash/uuid test"],"duration":1,"failureDetails":[],"failureMessages":[],"fullName":"hash/uuid test should create hash","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"should create hash"},{"ancestorTitles":["hash/uuid test"],"duration":1,"failureDetails":[],"failureMessages":[],"fullName":"hash/uuid test should generate uuid","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"should generate uuid"}],"endTime":1729891865916,"message":"","name":"/home/runner/work/react-fabric/react-fabric/packages/utilities/tests/hash.test.ts","startTime":1729891865776,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":["ascii converter test"],"duration":1,"failureDetails":[],"failureMessages":[],"fullName":"ascii converter test should convert latin to ascii","invocations":1,"location":null,"numPassingAsserts":4,"retryReasons":[],"status":"passed","title":"should convert latin to ascii"}],"endTime":1729891866062,"message":"","name":"/home/runner/work/react-fabric/react-fabric/packages/utilities/tests/ascii.test.ts","startTime":1729891865924,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":["interpolation test"],"duration":2,"failureDetails":[],"failureMessages":[],"fullName":"interpolation test should interpolate","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"should interpolate"},{"ancestorTitles":["interpolation test"],"duration":1,"failureDetails":[],"failureMessages":[],"fullName":"interpolation test should render template","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"should render template"}],"endTime":1729891866208,"message":"","name":"/home/runner/work/react-fabric/react-fabric/packages/utilities/tests/interpolate.test.ts","startTime":1729891866070,"status":"passed","summary":""}],"wasInterrupted":false}');var theming=__webpack_require__("./node_modules/@storybook/core/dist/theming/index.js");const theme_reset={fontBase:'Montserrat, "Helvetica Neue", Arial, sans-serif',fontCode:"Consolas, Monaco, monospace",brandImage:"poster.png",brandTitle:"React Fabric"},lightTheme=(0,theming.vt)({base:"light",appBg:"#f5f6fa",barBg:"#fefefe",appContentBg:"#fafdfd",colorPrimary:"#10ac84",colorSecondary:"#2e86de",...theme_reset}),darkTheme=(0,theming.vt)({base:"dark",appBg:"#151B20",barBg:"#2f3640",textColor:"#fefefe",inputTextColor:"#fefefe",appContentBg:"#1e272e",colorPrimary:"#10ac84",colorSecondary:"#2e86de",...theme_reset});(0,index_browser.n_)({onUnhandledRequest:"bypass",serviceWorker:{url:"./serviceWorker.js"}}),document.documentElement.dir=i18n.dir();const ContextWrapper=props=>{const{changeLocale,changeCalendar}=(0,esm.Xn)();return(0,react.useEffect)((()=>{external_STORYBOOK_MODULE_PREVIEW_API_.addons.getChannel().on("CALENDAR_CHANGE",(calendar=>{changeCalendar?.(calendar)})),external_STORYBOOK_MODULE_PREVIEW_API_.addons.getChannel().on("LOCALE_CHANGED",(locale=>{changeLocale?.(locale)}))}),[]),(0,jsx_runtime.jsx)(react.Fragment,{...props})},preview={parameters:{layout:"centered",backgrounds:{disable:!0,grid:{disable:!0}},actions:{argTypesRegex:"^on(?!Label).*"},a11y:{},controls:{exclude:/^on(?!Label).*/,sort:"requiredFirst",matchers:{date:/^date$/}},viewport:{viewports:{mobile1:{name:"Small mobile",styles:{height:"568px",width:"320px"},type:"mobile"},mobile2:{name:"Large mobile",styles:{height:"896px",width:"414px"},type:"mobile"},tablet:{name:"Tablet",styles:{height:"1112px",width:"834px"},type:"tablet"}}},themeToggle:{darkTheme,lightTheme},docs:{toc:{},controls:{sort:"alpha"},container:({children,context})=>{const globals=context.store.globals.get(),defaultCalendar=(0,react.useMemo)((()=>localStorage.getItem("storybook-calendar")??"gregorian"),[]);return(0,react.useEffect)((()=>{const scheme=localStorage.getItem("storybook-scheme")??"light",theme=localStorage.getItem("storybook-theme")??"denim:jade",tint=localStorage.getItem("storybook-tint")??"silver",round=localStorage.getItem("storybook-rounding")??"normal",[primary,accent]=theme.split(":");document.documentElement.style.setProperty("--primary",`var(--${primary})`),document.documentElement.style.setProperty("--accent",`var(--${accent})`),document.documentElement.style.setProperty("--tint",`var(--${tint})`),document.documentElement.dataset.colorScheme=scheme,document.documentElement.dataset.rounding=round}),[]),(0,jsx_runtime.jsx)(esm.QN,{defaultLocale:globals.locale,defaultColorScheme:globals.theme,defaultCalendar,children:(0,jsx_runtime.jsx)(ContextWrapper,{children:(0,jsx_runtime.jsx)(blocks_dist.vD,{context,theme:"dark"===globals.theme?darkTheme:lightTheme,children})})})},components:{h1:({storyId,...props})=>(0,jsx_runtime.jsxs)(react.Fragment,{children:[storyId&&(0,jsx_runtime.jsx)(dist.Mz,{storyId}),(0,jsx_runtime.jsx)("div",{className:"sbdocs-title",...props}),(0,jsx_runtime.jsx)("hr",{})]}),h2:({storyId,...props})=>(0,jsx_runtime.jsxs)(react.Fragment,{children:[storyId&&(0,jsx_runtime.jsx)(dist.Mz,{storyId}),(0,jsx_runtime.jsx)("cite",{className:"toc-selector",...props})]}),h3:props=>(0,jsx_runtime.jsx)("code",{...props})}}},globalTypes:{locale:{name:"Locale",description:"Internationalization locale",defaultValue:"en",toolbar:{icon:"globe",active:!0,items:[{value:"en",left:"🇺🇸",title:"English"},{value:"ar",left:"🇦🇪",title:"Arabic"}]}}},loaders:[index_browser.Rc],decorators:[Story=>{const[globals]=(0,external_STORYBOOK_MODULE_PREVIEW_API_.useGlobals)(),defaultCalendar=(0,react.useMemo)((()=>localStorage.getItem("storybook-calendar")??"gregorian"),[]);return(0,react.useEffect)((()=>{const scheme=localStorage.getItem("storybook-scheme")??"light",theme=localStorage.getItem("storybook-theme")??"denim:avacado",tint=localStorage.getItem("storybook-tint")??"silver",round=localStorage.getItem("storybook-rounding")??"normal",[primary,accent]=theme.split(":");document.documentElement.style.setProperty("--primary",`var(--${primary})`),document.documentElement.style.setProperty("--accent",`var(--${accent})`),document.documentElement.style.setProperty("--tint",`var(--${tint})`),document.documentElement.dataset.colorScheme=scheme,document.documentElement.dataset.rounding=round}),[]),(0,jsx_runtime.jsx)(es.xC,{i18n,children:(0,jsx_runtime.jsx)(esm.QN,{defaultLocale:globals.locale,defaultCalendar,children:(0,jsx_runtime.jsx)(ContextWrapper,{children:(0,jsx_runtime.jsx)(Story,{})})})})},(0,addon_jest_dist.w)({results:jest_test_results_namespaceObject})]};external_STORYBOOK_MODULE_PREVIEW_API_.addons.getChannel().on("LOCALE_CHANGED",(locale=>{i18n.changeLanguage(locale).then((()=>{document.documentElement.dir=i18n.dir()}))})),external_STORYBOOK_MODULE_PREVIEW_API_.addons.getChannel().on("SCHEME_CHANGED",((theme="light")=>{document.documentElement.dataset.colorScheme=theme})),external_STORYBOOK_MODULE_PREVIEW_API_.addons.getChannel().on("THEME_CHANGED",((primary="denim",accent="avacado")=>{document.documentElement.style.setProperty("--primary",`var(--${primary})`),document.documentElement.style.setProperty("--accent",`var(--${accent})`)})),external_STORYBOOK_MODULE_PREVIEW_API_.addons.getChannel().on("TINT_CHANGED",((tint="silver")=>{document.documentElement.style.setProperty("--tint",`var(--${tint})`)})),external_STORYBOOK_MODULE_PREVIEW_API_.addons.getChannel().on("ROUNDING_CHANGED",((round="md")=>{document.documentElement.dataset.rounding=round}))},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./.storybook/styles/styles.css":(module,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__),_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2__=__webpack_require__("./node_modules/css-loader/dist/runtime/getUrl.js"),_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2__),___CSS_LOADER_URL_IMPORT_0___=new URL(__webpack_require__("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 fill=%27none%27 viewBox=%270 0 20 20%27%3e%3cpath stroke=%27%236b7280%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27 stroke-width=%271.5%27 d=%27M6 8l4 4 4-4%27/%3e%3c/svg%3e"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_1___=new URL(__webpack_require__("data:image/svg+xml,%3csvg viewBox=%270 0 16 16%27 fill=%27white%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath d=%27M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z%27/%3e%3c/svg%3e"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_2___=new URL(__webpack_require__("data:image/svg+xml,%3csvg viewBox=%270 0 16 16%27 fill=%27white%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3ccircle cx=%278%27 cy=%278%27 r=%273%27/%3e%3c/svg%3e"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_3___=new URL(__webpack_require__("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 fill=%27none%27 viewBox=%270 0 16 16%27%3e%3cpath stroke=%27white%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27 stroke-width=%272%27 d=%27M4 8h8%27/%3e%3c/svg%3e"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_4___=new URL(__webpack_require__("data:image/svg+xml,"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_5___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAABRElEQVR42u3aoROCMBTHcf5lo2fxNHgaPItapGjRRKJooWjBIEGD/8y81xCmrjhg7xte4VZ+n21vgyMyxkSaS3V4AAAAAAAAAAAAAACKx1NlVQGMsgIAAAAAAAAA3wDpKTOb3cH0BuO3kmdJegwX4FrczXwV14JXazhdmOyShwUg4SXYr/Dl8oDgD8C25F1WQhAAMpO2gOX9Ln3h15jOAmwPiVOwfZLWxi3jXfcBJov1W6j+aGYdd8zONQBpmp0HkMAuoWzbIIgV4FoStgog20IFwKdT4pLfwgb4djn68+w3DyDhqw3SY/jmAWzLXhqmnAbBvw3K7Ntufn/e8+0BsB15Hme+eQC5CbpcjtQAeHjx4YsQAG0CsH0cUdUEAQAAAN0AHIMAAAAAAAAAAEDbANT/KKkXgJ+lAQAAAAAAAAAAABTWC/MCectA2CykAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_6___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAh1BMVEUAejbjdGrhZlvpkIjeWEzVLh/bSj0AAADTIBHYPC6MFQuMPR3mgnkwMDBAm2jsnpcwk1uAvZuXKiFAQEAVFRVdXV1grIHBk4SAgIAQgkKiUkC7gXTwsKr0yMT53duTSSu1aGFwcHCQkJCNPR2weWNQo3WhYUcgik9wtI6hQTjeV0uQxaegzbTU8WaPAAABOElEQVQ4y73USXPCMAwF4MqWxBM4ZCcLJCyllKX///f10AvMxOml03f+Zjy2nvy2eM4ST3l/e0kcrv4ICkxE5XdoYipmIrOwMAFgKoDxDEy2BgBmAKBNFoNlfQMggEAAXDYfEXisD4CpiBgbsL1upmFbtgUAGN/VM7DP1/kkLKtTAWUoIKSGfd6tp2FdLeFSYvLsKGDVbSKwTZbp6B2LBPOjX2X5NDwl7XIYvHMO6sMwrL6yxySskqQYeQeAwcxjv84+J2FdH3tnHnwncjC3zV8e8mkudbkVeJhy6hXSrCOXqY5t4yRAfgrEzTWfPnqRnA7KCmUzKFvzyCIjrKoiEDtmZkcU9l0XbU8fiHYps985onMW7+MNaapqorZLcZkp7sGUXSDyjtXOcw1nI1VAlYz7/17X2E/xDU3CHUk5qQKIAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_7___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAdBAMAAAAqZzNAAAAALVBMVEX/AAAAAACvAAB/AABvAABfAAAtAADKAACPAADfAABPAAA/AADvAACgAAAPAABIzFtLAAAAs0lEQVQoz2NgoC+YwHOjgL33ACeK4PJD23KOZetooQjO2nVZSNF29RoUwaWB4nFPC0VDUQSVHEUSxRxFlFAESwwFgUDYHUUwJBAkKOqKIqgMETRCEVR3BAmKFKEItppuExTMCo5AESx28RAUNHExRxHUYL/XlvG2oAlF8PLc7Iky227aogg2WxxKFNNptkARrGSYsVCqk2E6WuAxe6cYYIQop/amCZjhzJaAJfA5JzDQHQAA2O0qTBBsTKkAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_8___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAARVBMVEX////30tg1TTNpOTP0w8zWJUUjVDIAYjP////SEDTxtL+/FzP64eVIRTKELjPbQV6RKTLjaYCeJDP88PLmeI30xM3gWnIwpA//AAAAAXRSTlP9g+pWxwAAAHtJREFUOMvlkzsSgCAMRPkEZBVFRbz/UUUsdSCFlaZJ8ybJ7k5E91DuXkJ8HVQpMkC7AjCLbIFjxibytPV10AKDLTf6OjgAYxHTWK2AOTdycq+DGtC59caEOjgB6vQxZOH0ykT2jWzVxUfF8fFKJrWT4WddWIo//JlH8AAwAB+HdjSvjAAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_9___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAArlBMVEX////EKTjjmJ87IQ52CjqlDinCITEAAGYYAl1GBkzWZnHmo6n33+LUYWzknqTv7+/z1tn12tzSXWg0HQ2TeThBIw+akYj+/f3y0tV7XBbRWWVTNidCKhhrMxTW1NLe2dOTg3XGvrfLyMWunnZtWC+xsbHu7OdcMx5LJxFDMCbU0cl6WkhwY1rPwJimfhnj3Mepqam4trRkUkN5akOpijeOaxGObBR+dGbKwKKwmVwJBAHeAAAAzUlEQVQoz5XS5w6CMBQF4Kt1r6oUENnDwXaP938xgcgIKVjPr5J8acq5F4YMGY17fWBBncl0BkwoDQMyfaMBZmi+WGU36b56MCkwRYMcARiyqh5lvQYztO4uIQ8+HBGPOHm306ARpdE4PnGcIpz2UKBtdyNCLVbgIgW5OD03oiSihYWLgtD5F4Rb8rsCHxQ9Ut+XkIiQN5Gc0KsWTsMaWB5xbHsPtHrKDiGWCH7p34+2qcTSQ7pHV2icdTnn0Hg6NmZdCmiFzGv21+JW8QewIBq5Sg9RSgAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_10___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAcCAMAAAAkyw3kAAAAh1BMVEX+3wD73AC+p3Ppgw40QYW0mmmvlGMAGKjQEDrZOC7ffBjKr0zTtjXUuEDevyjpyBzmySXqfgn52gi6n23Or0DbvjfHrFnBp2K6oF/kmw40QIXZOS/ixCLOsiuzml7VYh3CpU/DqVndjS3UeVztpoLIakj31wTVhjLsoWT+7W/dWULNRC/51mPLu1LCAAAAtElEQVQ4y+XUSRKDIBAFUIHQSUABBadE42zG+58vutNN696/fvWLLmi88yI3b5X7ZRFvCU9reD0SNFqbbWikktw67TQOCaVNCjZtbErwRjV8+kowFhQ4lDD83t8ZgsMgyaB79d0MeTZijQpk2z6dP02k8DPWcRgKXYVxjU/tP2aoRB4/ShQGIBkTJs8l9/FGCkCBT7E4jIIk4ZTSLAmijbsmxOe8JGTHoxgLEx1vFXZA7Ev5Aw7LHoRODS8/AAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_11___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAWlBMVEUAAAAQDQDVLSbRHSpmBBfKCC7/ywBmBBfMCS8AAABPPwDhWRvAmQAjHADzvwDuiA/yrAVfSwCQcgB1XQDcRiCgfwDQpQCwjADymgufTg7pdRSzaAvFfwhAMwAtf7ufAAAACHRSTlP9/////////sajZT8AAACgSURBVDjL1Y/JDsMgDEQxNE7MDk3S/f9/s0bJhVYKXDMHLJmnGY8Ypi4N4qSgkkZ1gTLi3BltfFQd4JNNsQ3KgEFO4S6bjgYNFypPA5xVqYKtaLkfF8MPOF5qvd7bxEe1HoWgWgkX4KFtvRZ/IF3ROqLo4RAsv271n7y4Y8e8aiDIPic6BsFbZGnbcuTspEHzpTfdKrPL2dQHsmkvSKcDvxd5Iyc+x/1IAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_12___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAdVBMVEUAIWlgdKHUeY7g5O3yxs3///9nbprIEC7AyNrYVmuZzP//5sD79fe/x9n22N0NK2WLl3nz88z/7M//+e//zoOgtpnZ3Of/oxv/4bORq4mewLbT1J/u787Y27H/uE//2J/Hyoawt35Ya21jdGm4vpf/xnD/8t91fNiSAAAAt0lEQVQoz9WQSRKDIBBFcUBUBhEQZ818/yMGimBlYYlZ5m2g+a+6iwZFmkTAkCOU2zOLixTsYQOrOtFXB6oVD7WcUqoZIxAhwgjRpqS7ItrhR/HK+ThzfvGjDZqYqQhBwpi2tUtqiJ+dgPXWM0rSIs7sZ9zNv9dQLRhvog/der7VaVVYtGL6iD7wC7eqS+a1w51aRhDi8WpbrGQTFO9SQingLSiCpjSEGwJQDWU5VOCM2fenvL/jDaJ7Cj8g7Qw3AAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_13___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAn1BMVEUAAAB9oW4fGQGtjw7NECX80RV/uOLOESb///8Acsb88/TULUAZAQSnESUAOGNSRAZ+aQs/NAXdWGf209fPFio+BAtnQHXCDyMQDQG9nRDmvxPdtxPNqRHrnqZzCRXplZ69GDIAccU1WJzFECR7ChZNBw8IP2M3Z2dtlGxvWwmWfQwwKATtxBTgZ3SYKk8QarmPlLoTaLeRkLWdJ0vmvhOhEoG+AAABDUlEQVQ4y43OaXOCMBSF4duE9LQgq4ps7utY7f7/f1tZjCSQqmecQS7Ph5e29NC2tB484gZrslz9lBAxVj/UuRZZ2Ggn5pNf/ph23KCCGLeXN6I8CYKkqP/KjdHASZvpB5TyNOWcAr8NnFwglExeHEWWiWPBlUBIiFlzCYOQnUS9EytfmusMLZSZYS6yBv6KPLwGKlBmMi4u46wNVCBcz/N2+8OTssN+Vx5d6BDxq3ExutBamdzK6kEsPvrua4E+xPuy65Y/MMF+ZgwzxOeztm+oUHmBY78osx31mwYRqTDC/xDz1s1xC46G0g1HN+E1Uw80QJkZ4R7EtHJT3IdVZjfQDB27F2iEwPlsOP4B7QcfgqeTwMkAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_14___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAZCAMAAAB0BpxXAAAAP1BMVEX////u1q/oy5jSn1L37dz59O7u3L10rN/R4/T9/Pzozqjfun7koBPhvor05s/Yq3HcozzalA7lxpzXpl/VkhUfGetuAAAAWElEQVQ4y+3SOxKAMAhFUQgkSshX3f9aXYCOUFjm1qd5DLA5gwU/4e4MHknD1ATMJNWuijaMgUqhzDbMY5aRown5OOdFwYaAQXtN4FjDiPyy2n3H9Y+/wBtvcRWqoJAFOQAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_15___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAD1BMVEXZABIAM6DyqACiDTW2iiiq+uFNAAAAHklEQVQY02NgGFBgjAUwCGIB9BN0wQIYlLAAugkCALbdITUesQdRAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_16___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAKlBMVEVBjt6gsG//0QBBj96gsG58o9qqkbfvNkPKepTZan9Wm+GRpdO/jathouOFF8O8AAAAAnRSTlP9/o2EjdMAAAA9SURBVCjPY2A2xgAGDDgErYOxCNokYxG82YUpGDa9IpU4QazasVuE1UnE+2ggBZWwAAYRFwzgSBPtlAkCAFHVa1J3h5tcAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_17___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAARVBMVEUAIWn5w81QZphpbZkQLnIgPHvsS2nkACvAyNpgdKHicYz////Q1uP99Pd9jbLf4+zg5O0wSoX70trZ3OcQLnGPnbz43OPaT7sJAAAArklEQVQoz7WQ2xaEIAhFyTA0vHSZ+v9PnahlOdlq+TLnRYGNB4GuiRY2GSIjZ9t3DTxJCoIeoESDBXhBBSwwmwVm07xOnon85P0scaqhc3iC9KCziBf3Dubarf3mSsR+Wn+sd+mg08Sx6fpWPmMHud1cFasMS+u5UOfSiwcHqZAWLuh9MzWq5sexSGld1YlhWcKnhgzMoYZThtmoYsKHcbRzRRZjxBJELNuVgv/pC+H0B3jjpdgoAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_18___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAQMAAAA03l8tAAAABlBMVEXtKTn///9O8W3fAAAAEklEQVQI12NgIAv8BwGSSbIAADA3LNT5TsD+AAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_19___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAKlBMVEU/nDXtKTkAueR5dTZOiaz1fYf3oajwUl7+6ev2lJz4r7XuNUT7zdH7zNA216A/AAAAOElEQVQY02NQwgIY6CboggUwCEKB5LVwGFMQLhghKF2IIZgmKNqFIZiJTRCrdsljSBYZYwEMAwoA/3cmVGf7nvwAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_20___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAM1BMVEVAi3MAN0EAWWgASlYAa34GCwgAHSIAAAAAd4v/xywoVkfvuilfShCAYxa/lSFAMgs/MQvJSo6TAAAAW0lEQVQoz63TuxKAIAxE0agJK77//2ulcqBAb+HWZ4YQFks+o5g0OISKCUIpjRAW6hAqPkZ9YKGLvUVVziN300BpWyFU7D9DePTFLgPXQxcOnxCWgtYMFpd+hRvLVBb8dDVZSQAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_21___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYBAMAAAB6qqLzAAAAJ1BMVEXOESb////20tb88PHtpq7hb3zfZHLXPU7QHzLRHzPXPE7wtLvplp+6qWJJAAAAZElEQVQY02MQBAG1BgYUABYUNFmARVDQFIug6gRMwe0MWMxEMxKqXSgDm0VqmILC7li0n8RmEZqRUDOFvbAJumPRHolF+wlsFqEZicfx6IZCAqQAi/Zd2CxCjyQ80YFmKLYoAgD8YhWfwKLYOwAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_22___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYBAMAAAB6qqLzAAAAGFBMVEUAak70KkHlLUGyOkRrTUd6SkcuXksfYUzbDaCgAAAAUklEQVQY02NgoB1INVIOQxdjERQUFHJAEzQECgoKYyoEAlSliRBBNRTBQIigKKaR6IYqQgSFCAti1Y7VoiSIoDphx2P1JgOLIpYAAQVdOAMtAQB5kwuiqFX2NgAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_23___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAALVBMVEUAJn//xyaqkEM/MQjTpB4gGAQwJQZaRg2ffBfvuiO/lRxzWhAAAACviBoPDAKyFauCAAAAYklEQVQoz2NgAAMmQTBQYEAGAy4o4oghOFFQvFBQEk2wbaHPEakMNEHhRNcQUUM0QYmTYolzLqJbFCFm2Iphe7Ww4XYMwcvChrYYgkvrnr/CEHTeGm2C6SNhQ0FKBAdNHAEAi0wclGP3UW4AAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_24___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAOVBMVEUAfDDsoqblgYbYQUnaT1bjfIHidHrOFyA0Yyznio/qlZr209XVNT2WeGLfaG6aXUvRJC2bj3fxur4V/dY/AAAAZklEQVQoz63PwRWAIAwDUGrTYgBB3X9YRyAHc/6vaQphbnWf4oRBgYnXmwInk1OBEWRK1XerhwIHBqQx0dFT/VGqNh7RfoVytTxmYGCd+5S8W72KkAhSgpOpwcTrjwKdsKVAwqSLH3bnEGqiS5R6AAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_25___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAjBAMAAAAUF1WdAAAAD1BMVEXtKTkAAAD64EL2oT6mlSxymLhtAAAAGUlEQVQoz2MQBAMRJTAwYICAUcFRwWEhCADCrTMjCu9IjwAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_26___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAA7VBMVEXZDxm71quuz5ugxor////w8O9RULB3ElcXFpYlJJyIuWu51KnT5MqrzJbM4b66wNWkxpZ3fLeyy6vG3rq92K3T29uZvXnq2dLEwqzx5eDn6upxfKpyfaukw5pOVKW3zrSlwaGmt7jDpZXCoH7B27ORamCnu4LRuaTl8N/i3MPc6tRzrl3y4KPx15d/r069ydXLvpexvMeZupF8e8Pw39fp3diRt4TK28efloSKfm2yhWRuPDCwoIeRq2DExOSwu8bc1Kypsonb3ZxhlzBhmjwZdcf5+vvNzN6/wYjYypvD0t5+roqxqJogesuuqH05DYSvAAAA0klEQVQoz63TVRKDQBAEUGR3k2WRAEGTihF3d3e//3Fyg4FK0d/vq6eH42JPImK4ZMT8D+momJoVdRoGSYEJTVUxDQJDwotlxZaksioQCNKCgOZVuxos6mxIAZhhjVrA7I1UKblmFoAaG5eWNW+/XlUmogbAPEPY8ZxO28FITgHQYAj73rXd8UOgJiKM/WevgTHiBwDMCvVD93T5nLsukjJQPVOm9u+t1/HbVCwKFp5Wbu6j/+7xag4+Yc5q8bJsinkSOgp9Zxnb8FHEsMfIrxB7fiVOJZw8OnZYAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_27___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAgMAAABzfiX9AAAADFBMVEXoES380RYAh1HycSGsqsUBAAAAG0lEQVQY02NYBQShYMAwWJj/wQDMZICAQcAEAH5nZ5nGou1dAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_28___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAA4VBMVEXIEC5nbZnUeo3g5O3////ZWm7xw8oBIWnAyNrGDy3Vf43UfozkuL9gdKH10tcsih+tg3YvjyXgj5jx9PL88PJfc6Htv8jMYnKScFNIgzyyRE1tjVHUoa3YdYbhoq7lrrewxIe7Dirg3rzMuFN7s6H3+PvY3ejWz9y5JDaHeVXCDiuaZVGZZFCHNiyKwIO8HDZ4PSHW6dSOZTK2za3CzJbd266cQTaYoJGIt6W0sXWuPzGdvK+Btsl2SiydqXifj1Kgt4ywm4qIxNrDXUbS09LPfSvSxoTU1qnKTyjApEiNaE+TnmGmAAAA8klEQVQoz73SWXOCMBAH8FUDAeQGQcV6gEp11B7aevTy1vb7f6AmDdAXxvjk/wGys7+ZnQ2AIJYqmEQCkOi7UBREyAttUMrgX6XlwqRZoZAxjHOhRBJ7LkIASNd7fVqzjpwGLsdXVbXVIA+fI8sIofoDGaXI2eh+T9fpaOR6cTaaQK/TsTOIsVYShWKBLsNOyTJl1GieV3YzhWmTXQ+rEvi27nYX8xQy9n/hlCYw+v583y4dhbdM6xB9fZi7Oy60j+HmZx9yofk0PTnOS3tiXoZy3Xh8bc+ex0aV82XkUc2wLKs2AG6GoyCo3sM14f4QN8kvl/oSq3LmixUAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_29___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAz1BMVEX/1R/5+fn6w7D+Yy3+/v78/Pz/WR//qBr/ThL/1SD/1y362M3639b58O373Vr46KX/ehb/yh7+eEv8rZL843z58978gVf/WRL/1zH8mnf73mP+2Tv6zb76ooP+3Ef75Nz6kGn7dkj789T70cL5spn/qhv467H6lHL644f84nH8vqj677/457j79fP8+Ob86eD6hl/68cn82kf5t6D848/758j2wa/62Zb8yrj8uqP9bTz6zpr64pT6tk/8bDv8YCv8rVb37uX+dDDKysr/ZhSbtK0qAAAACHRSTlP9/////////V+qNIUAAAFMSURBVDjLjdPpcoIwFAVgAtz0sisCDpsgUHfcrWv3vv8zVcXOOC2hnF9h+DiTOyQcJ9VJs8HVgo9trAObDcR/oSxf6tjQ8wbDYnGtY0HZs4xebzweSPI2xgq49IwEgMDndL2Lu2y41Ht2TgiBTb6jWNUonfsmC5jF2b57qIK6TYix/XDUrO+atGqP1hTe0znGc1AEVqNvdTzJn4iggRKRQHXLoT9c2NPx4C0joLYU3lmFtBxaCZynBU0lYiDweJdf0CDJ6aioEQCEiGw4XJDTF6LQD0GjVbBjg5NefkWqBSY6KyacAKSgzJEKJq9potIvgUtd0o+5MhupsC9etXiRL4GyZZN8JKghvZ0CfOGhBMrGhgQjeshmd0MIf/foG2v31Tw/OxC1sCwFlJ/d29dPES+w4c9xv0xAyguvsLg9RahJWfCurircQ7uWw2/OAzNFFY4IKAAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_30___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAgMAAABzfiX9AAAACVBMVEXVKx4AeTT54wAKw3EdAAAAFUlEQVQY02NgoD1YBQc0Y4bCAa2YAHXmWafbUCnbAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_31___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAALVBMVEUAI5X+ywB/d0oQLYvPqxswTKnL0ekQMJuwut5QaLY/Wa8gPqJgdb3///9QWGaw+VaMAAAAeUlEQVQY02NgYGDo4DYRhAEFBigoX7bYEUOQ4ewBE0zB2VODHTEEGcJSTTAFORo2O2IIsldlmWAIMvDcYXbEEOTcGWqCIcjAmgZxAIogzFuoglBvoQpCvYUmCPEWmiDEW+iCYG+hC4K9hS4I9haGIMhbGIIgbz0A0QCx2SL7cD63XgAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_32___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAElBMVEVtqdIAAAA/Pz/t9PlBQUHs9PmByX+UAAAAI0lEQVQoz2NgGHYg2BgDmDI4KWEAFQZBLIAEQaxmYrV92AEAvTIRzfY9AH0AAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_33___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAcCAMAAAAkyw3kAAAAh1BMVEX+3wDu0we+sB0hpDE3qi1KrygInjgAmzoAJ3YToDUPMW8fQIaPjzTn2QU/VFgtTI47WpX43QGuyRKZxBfR0wqov8uNwRl8vB5efqUgPmff1gcQNH4BmzpjtiPBzg2jxhXW7eAfPWeSubggQoetzL/v2gNKbZljdHhLc4ycr2+14cXC4NI6VHmUxPVgAAAA9UlEQVQ4y73UyRKCMAwA0CCLLQUKKvsiuG///31mKIsjIPVCDj1k3kxImgJryYBFoKZJQSMACIx5qCeAkegzkO6hiT39AbP8DIrlmKZjKWDn2RRUC4BVTOqIVwCFOgqN0ENHukDphcYQajv8MCXuYaxgYqd9QbqtO7g/yvLgHy6pi9KqU1v6CXVbtHplhBzdyC99lI7I2XoH1U07E7Mp60Yn/2i22Q0dhUzY6HnroDoo7fAUTX0QfhqU7puxUhI11bk71kw3nopwThjD8uw1Op7vgbPpgbdXWAlZTV/hH0uxzjLJNUMqu7jiKXgyT0H+cS32A3gD3OAiYEPQ1/8AAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_34___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAABR1BMVEX34BdnCRRPBQzzxMn67Gn55kL88PEAAAD///8JBgPWMiHhaXbQFCj9+c2Yig378pzMuRL+/foQDwYtKgn77nmMjIvx1xbkfB3hax1BBAvqlZ0aAgT54eP20tZcBxA6NQX//vQcHBpSUk/19fVnXQlpZDT78JE+Pj51dXX34R7+/On66Va0tLT44yelpaX++9ztrBrdWx389bGyPBqhRlCuEx2lLxjnh5KyJhyjGRsoDwT998Sllg/45DM6OCHq6upyaAr03RZiYmKYmJi+vr7BwcGkmTwsLCzPz8/ZxBTCsBL89r1GPwaPgg3886l5bguwihJcVAjZ2dncpxc0BAnYq6/CDyPBexXmjD/ro2ORbg7IUBzXTx/jdoGTLxdjIQ6DIy7XPE7sn6jHx8ftpa3keIRtCBRZEw6GPkZjHyZSRkfw8PC1DiE//erTAAABIUlEQVQYGY3B1XLCABAAwIveJRR3d3eXKnV3d/f/fy6UyUygHcguaGYTQBsis97ICzARDYSmE/wsjEMqma1ENg8ATvgHjcpULs7z8Fc4Yl+Okprv8cZXrNiyaRiCfWuLS+tm+uVvTvXo/ERU3LUJaVCgQkqmCiciiZzuRafjfCRy1GPWG3kB+lAtwHzWcl9+juhZ9HhIEdIbeViNz0mokL4DDOLHu/2p6XkQSQ16uiZDzCphH8O0vcgGsNO+rxUOSQUUjs2dAyuy7Fur88p4W3duFtGSTOXmaQCGOM4ubxtyvS433F43DoQj9pUoEYwoyfL1VbVaPj1GNWscRjhKLper7HQe7e9tW1AFxtmYWQhacAAmMhliQQkRtDEZQJsu/ADqTiXJks3I9QAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_35___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYAgMAAAD16ldTAAAACVBMVEUAlm7WJhL////BTf+eAAAAFUlEQVQY02NYBQcMVGXSCoTCAVWZADw2T7GdUBaTAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_36___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAALVBMVEV3ZDoAnknvKy14Yzr60BVttDHxPin4nRz6vheYvSmvkCrfzBr3ix72jB4gpEG5oHn8AAAAAXRSTlP+GuMHfQAAAEdJREFUKM9jUMICGIacoFoSFkHdQ1gENZowBNVKXFzcYQYwMBtDgJWLy2Io04BBEAa2eMOZcEE5zymYgqKBooEYgshgSAsCADLrPLD18xGQAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_37___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAWlBMVEX///9y0YTXPk/RHzPzxMnz+/RIw18etTrOESbH7c7t7OQsukbpl6D88fLhanf6/vuc3qid3qmW3aPc2MrniJP++frwtbu4IyfNp5zaTFzBdGvAZ2G9PT3dW2pQSsWXAAAAzUlEQVQoz42TSRKDIBBFvyJ2bAecccr9r5kFEjEGil5QLF7xoPkNAFn6ClaawVYl/JioDJMXAFA3Pq6pAaDIQZRIeP3GKhMiEFHZefyntSvJgESu/z1m2bi6VqIvePnFbK4+i8t6A61/AnhZGJgu6x20fkBqLc3utP6C1m9OdKxPkHo41ZMfLFywCIJqGBTMGgJ7sD4Y4ENzSJ1I8L4xwNvO/seY9ih1rX/bU7a24XA27aPhkV/ohmL1h+K0emPWnjGLDG70KEQPV+y4fgCOXxe97SpR6gAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_38___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAaCAMAAADyku75AAAAb1BMVEUCLaHPzs7aACHgeIngACXfACXU1NRxF2JxF2IDLqHi4uLf39/Hw8TYDS7TpKvMtbnIyMja2trKrrHcHDzJu7zDjpbaKkjAwMDRlJ6/sLPEdoLQSF/heYjatbvCbXnQe4bXZHbXhpTFXnC8qq27u7sIHT1WAAAACHRSTlP+/////////kgsYtwAAACuSURBVDjL5dNJDsIwDAXQ2EkNZG46zwO9/xnpCiGVRl3DX3hhPf2VzdjjUhj7KXi/lhtLxCHGHHfJN9i2F2ApBOYBhcjisLMoMgIUaLsITIxVJY4AI5bKmkhj4ejpvK60a8gVkcbJQ04AQKTBT5HG1UOzVTvbGvDrOcQ61yE4rV0IOi/wFM4pUZq+x3wGzSAJlJREUipI5WBOYNbzxXLO63ofduF99gkvH8Vf/swLLRAf6S2QnckAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_39___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAHlBMVEXOESb80RYAel7ZQCGINDjyqRjRHCTiZR7ndx2INDk0zy9lAAAAPUlEQVQoz2NQAgNNBjAwFAQDBoigyhAXZDbAIsjRgCnI3hpRgCHIFiiagKm9UByLmcGmWAQT2IZVeKKmEADM8y2ZtlFueQAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_40___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAM1BMVEX/AAD/MDD/EBD/19f/QED/ICD/r6//////wMD/8PD/oKD/YGD/gID/b2//cHD/UFD/kJAQFQNAAAAAgUlEQVQoz62S2woDIQxEj5doou7l/7+2DwXbwupa2nkIjBwyGAa68oW40vdgKUugmUi2BVAOOGQBjADxFtS8A+xZZ6DW5s8CUJpvVYegAcQ+bBzt3r0bR6fPhzTemPzL+jT7dejhLszPY/I0Yjd3NOJW6xaxhVKoLrbn/2AIvzT8AWsMCOs6h1CtAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_41___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAP1BMVEUAOJP+88P/99k6W3P8/P6knTwjTH8AOJP////PICfgwx3PIin64mf41ST63lKLjUqLjEqEik1IZG3UNSPSKyVE9uWiAAAAAXRSTlP89O1mUQAAAHhJREFUKM/tklsLgCAMhb1tmhe6/v/fGmawCLFV0FPnwcnhQ4+bQliWhPjBG2A/MEA9aguwlYsTPeYV/cuMxhXJqPadU1G6swyBidxUA0PHUiBwIXeugXQ1ZUytjCqSS+86gA9GiH7KZSp9bzUcMM8agTMZgO/+4wo/5hqOVIJxmgAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_42___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAA5FBMVEUBIWlgdKHUeY4JKG3yxs1nbpolP33IEC7AyNrYVmu/x9ng5O3f4+ykgJT6+Pp4g4T88fOKkYj21drZ3Oesq43prjxOTX4FJWvSynVEWYGIf4PDwIDnw2IZNnW9vm7WzYuJoMCbXHIhcTYAWCT+/v5lh5+irLewxt/GOjfhiCvZ2OLfkjZ9lnvZzMkdWCDaztuhsatUe39SeHz13uMxNW/FYFVFXZGfqXUzNnDIbVrHvaCMkJ1bZYDUmGtukG+zsKdBeXtCg1vGkWjNLC4NWiyOfHi/maUAUyDWTTzTpk5HcjhWeT1rSu5WAAAA9klEQVQoz8XQ2XKCMBQG4GAwAZQd3HdQq4B7666tttrl/d+nnKmpdsYB7vrfwMn/TSYJEvksh8IIlArwTadEHt0LFEB/IEwZDqEICjCSCZIkmVNDcylVDE0xw1FiHdmsn/JsoHfCun2lssIJ4PPLa2v3u6MQxlQ0Q6HU1YypCfOlqrbOjlO9npLL8mIqDZfhMvDH1rF8kuU3Gf9h7HluKXn48OzekVwgK9iDA2XQ9nr2O0FxIf1gOAz6CeBkMB4PJvGw2fFHI7/TjGGL0sHqfn51rW1pFglzy1q90W43yoXHXPSWql6uWfXCXFdjD4mLql7E6N/zDVdhFLgxamGzAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_43___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAARVBMVEX/zgDKwAoBMYIplynSEDSTy5NAZKH///8AMIIolyjwjxFFJWjwsLxfais7VWSHhD1mcE7nvwzIvwqnjXNwSH3MhhcOOXp2KHH9AAAAaklEQVQ4y93NSRKAIAxE0RYnnAIIeP+jWmVW9MZs9S+7XiVwvm0bnjaaHRQGZ4IiKcplgQmIptcByTsTvKK8XZyoorDwjpnaFe68/wuOVFaYeUe/tB0KD5r7f8Gza6sKK80nuFXhire+DG9UNhiZFUzRDQAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_44___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAElBMVEXGCy/+ywAAJmTGDDDrihCpkyFr4LrDAAAAAXRSTlP9g+pWxwAAABpJREFUKM9jUAIDVUEwcDYGAQOGUcFRQbyCAPqgSzR3NRKjAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_45___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAKlBMVEUAOKVqMWLVKx4AOab////qlI7AzulrMWEQRaxCbb6sv+IgUrGAnNPKe4MtJuTCAAAAAnRSTlP9/o2EjdMAAABESURBVCjPY2A2BgEzF2TAQJLgZmyCKzAFLWb6zMZUecRlBaaglQsWM81mTcYU7DBupsjxmILi5SBQG4oMGJSwgJEsCAD/7Gr8c0BulwAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_46___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAIVBMVEXeKRD/3QDgNA/vgQjkSw32pwT7wwLiPw7pZwrmVgzxjgfoZuX/AAAAXklEQVQoz2NgwA2UMEQUGBjaHNAFFzAwKGOozARilgkoQhxWosYKDKwBKIJMgYIpDAzsaLoZBSdgOsfRDGgTSwGqYAuTAQODagAW17M7YIpNxubNtgIsgkwMowAPAAD2ignB69EaTQAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_47___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAFVBMVEX80RYAOJPOESaaGkF9hFXMECYCOZGyuUP4AAAAIklEQVQoz2NgGAWowAULYEgUxABi9BM0xgIYgpQwgCrdBAGDOyRlGGexgAAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_48___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAY1BMVEU9jjOex5lho1nn8ebOESZIlD55sXP/xh46dcT///9sqWSyKCdTm0o8i0BPlC+HuYFJgjCSv4zO48t+VSw8hmA7gXs5eLHmvyCeqig6e595nyzOuCLz+PLb6tlgolhqZy5jbC7Q/dpQAAAArUlEQVQoz43R2w6DIBBF0UEGyoAtWnu///9XloKYNBGY88TDilsRbucNawC7CxMGemdCAEY/QUYf8lr9pDptFVhJlUX2fIxah4OvQ0v0ggih31egkiSWNwUti1ATKYDRz1KJEhQkf9F+eeh6P0OlFjg4XFlOi/yew4S4Dv8/5u2wBNP1eF+uZhgvvOvCYUKswvkXfhw2Ydj2aqrL7GgMBx5OhgNb1Rm2qwkyqnFff1UYnRYEs0QAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_49___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAKlBMVEUAlEMAlUPcJB/73krzrT66y0jdKiDthjWawkfvljioxkfxoDuLvUZ+uUZGJOr2AAAAAXRSTlP9g+pWxwAAAItJREFUKM9tysENQDAUh/EawMFBIuL0VqhExM3BAjYwghVsYAUbWMEIFtLqa/t/6jv+8qmsgGZt6xRi+ZpeBfJIiH4U6EfEMCKGEZDHXaAbe0KEMeIRx4A1jAHdOBAij6dAMTJWYmTcxOiQx1GgG9sFkceJEK/PaLH5jhaT0WA6GryTkVSejqR+RnoAexFQiUISXxUAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_50___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAS1BMVEUBIWlgdKHg5O3YVmtAWI4fPHswSoXIEC4QLnLAyNryxs3U2eVnbprUeY79+/yKmbq/x9mwutBwgqtQZpigrMf88fP21dpvgar13uPvoiQ3AAAA30lEQVQoz7WR65LDIAiF0SBibKPm1r7/ky6ssU1navbXnsmoB74BJTCM1oAoeB90v92HEb5JE4pWsLkLVMFPjIEfD1kOG3LO8blvk/eTrFFsrplkuaxs0wH6L9L4smAix5RwWS7BWI6eXGJtLYrTtmvrbX9G9RKWWu2uxK4ejB2H+00fU08aw4zv11bTknU8zbmV3iCtWrLVaANXVMDXVH7n5DqTBU72bG3iHknzqYibCbrC03802OegxFdJF0ufY0B3kOQQ+KIkh8DE8sVwhektESdjJtngT81EM/ybfgCcAAmZWoOTDgAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_51___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAP1BMVEXOESbRsnvpua2CcmLULkHjeIX6+/j///8AK3/dW2rzxMmLs7qdp3+9xaXj1bkoeExBb1tBZq1KY6Klx9mHvMkwUFmwAAAAUUlEQVQoz9XTORIAIQhEUXDDXWf0/mc1NLQzyx+/BCjIg9FFKGA34c5YawgouDRcAGCsOdcIQClpFgEg99Y6A1Dp79cKGoYZGua0nhdu/cDPLAeKFD3EVE0QAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_52___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAD1BMVEUAnmD3fwD///+p3sn81KqjQLolAAAAGElEQVQoz2MQBAMRJTAwYICAUcFRQbyCAPRzJ3OsczPTAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_53___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAhFBMVEX/////i4v/aGj/f3//VFT/u7v/QUEXF5b/AABkZLn/bm7/zMx+YaFWM4JgirTvGB2PkbKwbobgT1n1wcclFYxFioSnoLn/EBDfiZOEPHxQlbL/WFj/MDD/q6v/5OSnYZH/MzMfg56yVH6WXB4wp+NCfoj/NDS+UldzI298DFSHeJVeSqKsIk37AAAAj0lEQVQoz8XNxw4DIQxFUQPBkAxM7yWTXv///8Lag8QoWeTKq6cjGfTK4BfYNCtgkp26vn/PWRKA6bF7VtdzXKUBmF/MI47t655TuCHV7c7V1nQHGt4AEQ4IoQQTzJ0IQhlpKXUkg3DEPbobg3Dgkrsbvn+9JRk2cT4xQ3dQNFsgFnYxL6FSZekZfdDbH+EHirAUn8rfZdMAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_54___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAATlBMVEX////VMEX88PHtp7ANKIjCFDCiGEDPFCsAKo/fYG/43eDSITfnipXzxMmCG1DbTl9nH1waJoI0JHXYQFLwtr10HVdNIWnniZROIWl1HVZ5UILHAAAAb0lEQVQoz43TSRKAIAxE0aDiF8F5vv9FXeBaOutXRXXoWLt00hgcjQjxpwihXUUIobfCfJCYKg2Cq8swZDoNJbh/krH5C5PMrN+y9PNf6mRVRIF12DflaRw4LYy8HiBe2sLFLxRL4W+tZo9WXPUUXqHrEc6IUEytAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_55___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAARVBMVEX///+xt6THy7724cbqvH/Xfw+QmH3VeAD99u/d4Njt6+Ty1a/vzZ/lq1/iolDaiB/tw4/S1svns3Dfmj+8wbF5g2Obo4sXWHv7AAAAkUlEQVQYGd3BSRaCQAwFwN9jkoaemO5/VH2KyibgVqvwB5jxDfYj4xqXMEDFeEpuCp6hc3P2fvSZKHiccbQLDBVPZSi0CwzFwJmOChSODupcpwGKQB8NJ0Z6qY1xplW6y35kXHFoHtdWAcDYyQpNtBZv1kaoNtMFD9LNBl2SaMQCVkyUhDPSTUwpmi64tiz4TTctpAW3+OsVrgAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_56___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAARVBMVEXXExnz9fldMVZwj7LXFBrrio0oPnHriYz///8RRX6/zdyqHi/QFRwURX3JFiAnVooyX5CdITbP2uVwLU2En7xfgqhiXoONvJBJAAAACHRSTlP+/////////kgsYtwAAAB+SURBVDjLjcxHEoAgEAVR0DEMglnvf1RzGUbg9/pVq0mXUIobA0LmVIMQmu4QmZ4wPr1gdHpDbg0Iw9MXdG2PwbVRg5B9UwHZjSBknjNZ8XMcLMnUF7q8IgLg/05A307AxBIC/bs3DOyeMLh7wKQmBOYdEQKjuwMCux0iuw0uJHMc3CNW1r8AAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_57___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAeBAMAAACs80HuAAAAD1BMVEXGCy/VSGPGDDD////fdovhlE4KAAAAAXRSTlP+GuMHfQAAAClJREFUKM9jUAIDZWNDJThQYBghgoJgIGxsIogADMZYAKWCWC0awSEPAKZsVc82AYC3AAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_58___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAY1BMVEVqsef1xcbv+PZztug+r4gSrSzYGB4SrStqsuf///+w1vIgsjjX6/nE6s80uUn2+v6MxO2r4rXztbfpf4LH4vZ8u+przHqhzvDi9eWJ1pV60YhNwWD64eLiVVnma2/wpqjbMDVRQpFcAAAAAXRSTlP9g+pWxwAAAKtJREFUOMuN0NkSgjAUA1BapDGUVZQd9P+/0heKslhvns8kMwmSx1WSICDjUAiZN0JIJoUQkvdQCJnHQkjqQghJz1Vb6LlqD6mbf1Ct+4Ufzre19eyqBY5KmUkpz1WusTLGmE8n08s+bnr+drpHhG0iB1/VVDlXWhzi4KjI57KaAb/hmrY+rJ7CzuI8W1hmgAC2AyCAugcksLSQwHQABFDXgAR2FhKYZpAkegP2fSKc/aQhAQAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_59___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAYFBMVEUAaz/THDDGHC4rKytAPTJ+nipAQECAtZ/////80RYqKSSYLC5+nSqkJS6VjoNqQzeTfCveVGOxHyy2IyyNU6QMWjZ+niveSSncSCiJMjSveRBJSDW8QxS7Tm2HZlu1MmlGHhZsAAAAfUlEQVQoz9XTSRLCUAhFUR5Gk4j8/FYT2/3v0jFYVixnOdPLiAIi7zwed0NP604bGIwX5hTW5yZlEdbpI+ytCCmPVxFEF2i05oXxrIDOLlBncQZqY2R2gQ4WK1DbDZldoMFKCiytgyQXqLcCpNyvIggu/L6evxe+iev58gpvCkQKp08QYFcAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_60___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAWlBMVEX///80V4IzV4HBydPYQFGqucrvr7YALWL////OESaFrYzc3N2MwZvw9OtdbYLyv8XDqKJ3QDOQiYx0e2jDk5hopW2UPkR2rXvRXlettL2ZOTKbhpy9bH/R5dbyk4vSAAAAAXRSTlP9g+pWxwAAAGVJREFUOMvt0LkWgCAMRNEgoiObAu7L//+mfdJQWfnKnNtkqOcZAOgGHv3wY6galsahMbY8IrB0jLE4fiUJgy27fSqgtzlvvgJO9r6WKpjONc0SivdGF4LTikdisA4AjJj3hx/DF+7cINDJhV4uAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_61___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAeCAMAAABpA6zvAAAAQlBMVEXOECH20BjicB3xuhkQhfDqmxrTKx8Af//31hjo0CXaSh6KsH0sjtbIxUNspZo+lcW6wFFdoKiatW9Omraqul/YyzWj+uowAAAAtUlEQVQ4y43Q2xKDIAxF0agoQVC02v//1ZbgBXQSOM9rsmcCumKz6UYoMz81LcAJLcfUB/sBLugmqQo3tOiEagK/OAvVA1o8ZjxTBRj6cHEz5BbFVaFtFkq7IHe2OnZm1QQVPmBeRftvEVxxmo1hq/QQgrsNn9y4qr4gEeW56g21XH1DpvqCXPUB+WoGpWoKxeoNC9UTFqsHLFcjrKhGWFGNsKKaQamaQLl6wVL1hMVqhBVV2g/BwB0JqIxfPwAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_62___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAASFBMVEXcJB8vJQcPDALvuiP2niP3nyNeRg0AAAD/xyblTSCffBf+/v4QEBDr6+vPoR6bm5vWSB7IgRyrq6swMDBbW1uHh4cuLi5xcXHPnTqaAAAAh0lEQVQoz63TyxLCIAyF4dIaflKg1N58/zd1YdVxUcjCrL+ZTA6Hzs+dbXB3tUH68aYmCH4wUADcFJoUAPoxtCjn+KFBgX0lHbgpVCmw5ZLTa32FQioxls/6S0pacozx+ELRy2Ny2R7v1aKVq5czywr7jUfUFLio6QlFTaUQNdVM9J/FtX6FJ3flBuv74gRDAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_63___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAA9lBMVEWyJ0IDTaGAlVD52wqyKESBllD+3AHtHCT/3QADTqJggGbCuyMNVaOCZRddQSCleSiiqmoXW6QmY5rivRy5Jj/z1x59XizfyhM8b5CvjxLjzyzYySPtoybSsQX8wwSoxxiQo0Bwhl5ReWxwpZl2lXNBcXmaK0mpWEyGrH6AqpMfeqZwkIY+hIfJqhTnxQPTvD52WyzIpwerk0A4VH/OwBHqxxa9uEKymkFLRnVlTTe1wxO7ulgxRYd0alugglrGvT1TkUKcqFGlrTVZaZmady9RXW+hk4iBzeO3qZetbGNFfXRmrWSxgH15k45mskDC3ubv9/my090lViSgAAAAAXRSTlP+GuMHfQAAAMhJREFUOMvdzcUOwkAUheGhg4xUoThVghZ3d3fe/2VYlyYd1vzLky/3gjD6qTD4b9jMIhRjw3RCTAw7LVGoMyBEmrAYC+0G6yLsQ01MIxSD/jCeoVm5LC8nvUzcF8Kcsa5UyvmVkYP+r/WN/Hy9jyFT/37NhVxRcro7xDkQ6t45EMCuuMLtWs0/zgXOvQc80C5eqrVa0WZBQrcli5RmlDBgNDndSZI0SEYZkOdT5n5upXjMgFjBeNTFWPFAEPSkqt4NgMiP/RX8AFm1LNtFasN6AAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_64___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAOVBMVEUAAADXu2Dy58ro1qX+/fr48+bv4rzOESb////9/f3hzIf17NXfyHzr3a3NqjbHoBzn1aDOESXDmQkYz2ycAAAAXUlEQVQ4y+3QOQ6AMAxE0Xgle4D7H5YDGMmmocovracpnI5gacOv8HqFJZtU7K1YyCzC7EOGJtKAfTiBAJYLC8M96pqBxV4Vew/AiqpYAxCVaDQfZtGTUOx7dv/2ADMgFMzubFP8AAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_65___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAXCAMAAABODP0nAAAAWlBMVEX//////O//9s/X6rsAR6sBR6v/+d////8/dL////+i0ZWXx4HM5bDp6dqhyLelvrRzvIL7662uxs7v8MKL0Iv/88Krwanv8/pmr6uEtrUtnaR3uGldpqiAzICRExgrAAAACHRSTlP+/////////dElM2YAAABfSURBVCjP7dJJDoAwCAXQQhW1gx2cp/tf071NhL3+JXmLD0FVstTqm7AVRqnuGZgIi2FTQlo8eOQhuZxS1shC6Odow0UsRLPu52aA7+iOPthBsAzoOGoqofiO/z++wRtv/hV0LCDfBAAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_66___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAhFBMVEWOP1wHccTt7e3X0c4Ac874+Pj8/Pz///8+mgDjIRjy5qYojEXz8/P69dr28Mwag3fcIx0Qe9Eyjtjj8Po0lB682vKbOlF/uOY7mAbm5ubSva1mwono2MlCrmlcUYRjT34KeasNe6K8LjYwYafGKi8nZK9Dl9uvr6/IyMh+y5u95MvZ7OBX9KKrAAAAAXRSTlP+GuMHfQAAAKhJREFUOMuN0OkOgjAQBGAou8Uth4iKHOJ9+/7vZwjQmJjKzM/Jl3ayXjTD4vkrENKhBCHNUUgRCqGZHaRjCUJkZg+BmQNcLEObJEmT8CcDpJttjElTY5yQNmPD3Dzf7Ia0HuGrbZt/MB+h3gYaeJHjDsY8uZEV1zWr2AVz2zwCpYK76+vvO+qq0s47FjKVHu4Fg+cMg/5FMFgIBneCwWuGQf8kGPQwJx8qkCM/iEB9nQAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_67___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAP1BMVEXqBDerNnXVFUwsmCzsHDRVeMiAV59Bid0SrSv8qChjbi+ZQzPPGjXwOjH6kinzVS7uKTP3fiv1Zi72cS3/vyb+/BJuAAAArElEQVQoz43Q2wLCIAgGYCo6UAGivv+zhq6Vq+n2X3n4BBWej/vptiNQsgfDnC0MbUZ4NhgC8Ai/GZIxUcR+5WknJWUBjAm716iLTBFUyetK984T9H0SQdAMv5lxnUQDUNJyIsBKCq4Dy6W9eUVahcfD5Ty9hZApxQD2X7Ggq6dOgj+CJaNmW0Uf6C0NFLl1LfpC/0IhSdxBDfT2kbtoAUdoAUfoA7dQhXtQyQsr7xFoxTBegwAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_68___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAZBAMAAACx9nFWAAAAD1BMVEUAAAAAcs7///8AJkVUVFRJK4tKAAAAHklEQVQoz2MQxAIYBqGgMRbAMAiBCxbAoIQFDEJBAGOJKS051BtAAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_69___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAV1BMVEUPR6+FklsaUaFGaojjRhZEnSZ2iGXaEhr83QkHiTAmVp1YdXuipEfOwCgIdlMKZHUVS6qRmlM0X5WzGzaNJVJ4RmN0LGVnL240PJInbm88Y49of3CaoEu2CXfUAAAAnklEQVQoz73Pyw7CIBBG4TODgkJbWnq/vP9zujNSY+vCeBZs/i+ZwP3L+AOsqhir6hxGAIhnULXGBGrVPbxmzWCwgoE5X7i9VgKaRJICZTblsMCKFLYREUtxAC3Y8HyOoQ+b6hb8MSwwyRjbBJPM4ekSkFXsKu+fuWT10CzeLw30+YLLmwDvUabdsIdugLqGwZ1B13bj2LXuHH7o9/ABsVYX6gf7JlYAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_70___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAdBAMAAAAqZzNAAAAAJFBMVEX///9HUpXtKTnf7PcAZb1XTozp8vnQ4vMBZb1+RHbM4fK20+39jzf7AAAAQklEQVQoz2NgAIEUIaWQAgY0MFQFjUFgCVBwszEcMLS4gABQ0AUOPBgEwWCS0kRBBGBQwgJIEMRqJlbbsbpz2EUHAAeHPE2odssQAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_71___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAvVBMVEVps+fyxs2OiqtgdKFhptbTeo3YVmvIEC4BIWnAyNrg5O3kiJVnbpq/yNn7+vtmr+PWS2HZ3efAQhf88fP21drIRVpsrt1voM2buM5mbZrEWQ/YhHzUegjw8PCx3cXijJrJiIbLkXTZvADN49bPLkjTiJD13uN/uOF+uOCo0Mi1FySjyFRgrIHF0NnHUBLIgYjY2NiF1ZrPsHa5iXDYcBHOhgXknQFIt3uZz7HLYFhdyI6P16/Y0M27zb3c8uYVHlLLAAAA20lEQVQoz9XQxxLCIBAGYKIQjEgCKfZuYu+9v/9jGYSMF0a8+h+Anf0YZgG2VcwX0jgYO2IvIdsCuoiGoBLKSguzpoDZJS10KKV8GAYuxm668rSkWog1eTe8nIpngND3D77frE+hejoNd4NQPB2EQy5qCbf1fv/Y3C9hNky+aNmoJIZ5n2pqGNjode1Lr7tTULLseySV8HxrJ8n11FZQss+HCyrh4D4g5PloQfA9MGIsjlkUGeGq02GMNJAJegu3RchmRj0DBGO+JmQ+GQFjylWEqmXwSyoV8E95AQvtEN53dkXyAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_72___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYBAMAAAB6qqLzAAAAFVBMVEUANYC5x9z///8cS444YZwANIC6yN25wbmkAAAAMElEQVQY02NQAgFlBgYWJQRgGISCiYJAIMzAwCwIB2IMYMDKQAJgpaIgVicNkfAEANoyJ4DL1EUnAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_73___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAD1BMVEXtKTkAI5X///+ptNv5t70X6cUbAAAAGElEQVQoz2MQBANhJTBwYICAUcFRQbyCAK7MKQicBg83AAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_74___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAbFBMVEX83AiRuRi+yBJRoSRyrx4VjS3n1gv63AkkkyoLiy/Pzg9fpyEcjyza0Q3v0Qv22wk1mSf32wlGniTSKxn83QkHiTDaEhrxnA4dfC3pZhFjVCayJx6LPiL60An4wwrNGBvvkA7cHRhWWyfgNxaA7xGhAAAAFHRSTlPzv8HPxfLO6eX6wcrrxtTd2+PT9HbczSwAAACWSURBVDjLjc1JEoJAFATRZhJQENTs3wzO3v+OLsAIVnbV+kWWaxsvzVEeRAj7QoRS1AFSdIWUmQghLUTIKRMhpLUI6c7eez8MUbhEp0mAdL2fZwHeRjMzs+sQK/J8mT3e8Wv4mF1qAd5tHO3Yx2EIEIJL6uj1umMlQlwiQthVItxG/8NNNAZxuQh/UQEuUQVC24iQMv8CwB5UlCzbsBIAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_75___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAsVBMVEXOECX/tk+2i43y9PrOESb//v5lhMLaS1r////bTV1wjcbIDyTkkmjr7vb/9+v+8d+IoNH3t2f/yHqqhqH++ff/qzbfoJV4kci3xeTb4u9afL73x4fMo7P/0IzHKTvfnYvoq3yySlTBWmXkmXvdmYjEh4zpm13Who3yx5f//fn/1pw+ZbL/6s2Dh7b/3aqLotG1f5j/oh/AZG7VfHemd3i+oKKak7bywobNamm+ECDt5uYgMvG2AAAACHRSTlP+/////////kgsYtwAAACzSURBVDjL5ZNHEoMwDEVtiA2xIfTeO+m93v9gYR0yNuvkLTVvpBl9CYDZJAD4KVGaT0ICSP4E2bY8Lo5EO2mfr+MO8cSFYyq0cyBcckQnb11Ke8Uw2KJmZpVCqXHOzQVT3MC67rvy/lCgxhQT6DbCwKmCK/boyG0uV0Eos4g5GqnESoubVaRbT2R2RATHFsGHOPQ461H1UMeErLHKS0b08V7HvsiNcFCDQPyS9eTr+cvnegOnuCDbYqL39gAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_76___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAeAgMAAAAjs7ROAAAACVBMVEUAnmA6dcT80RaPCvp4AAAAFUlEQVQY02NgoCtYBQf0YIbCAR2YAPNdY51lSXDNAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_77___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAElBMVEWGjsY6dyjOESYMHIz///+FjcUzsQhvAAAAAXRSTlP+GuMHfQAAAChJREFUKM9jUMICGIaKoAsWwMAaigECGIyxAJoIYrUdqzsFsYChIggAWI9PB/8YOioAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_78___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAALVBMVEX/////AAD/v7//Pz//wMD/8/P/f3//19f/5ub/YWH/nZ3/sLD/Ly//gID/QECpnlCHAAAAk0lEQVQoz2NggAJmQUEDBnSALsjughB0KYAKMokhBBMVIGKsLyWvwwRrJ84LgIgKCgrBBBUFBSFiHLukNGCCTQtXN+A2k4GVFSEYEIDTnS5Q4CMoeATGBlqNCWgiqAQFOoKCh2BsnOGJ1UfY/M6xS9oDJtgCDyVs4clqKZkOEyybOBlqKAu28GRXQQg6FeCLdwxBAHsYKbiOyGOgAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_79___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYAgMAAAD16ldTAAAACVBMVEXdAAAAAAD/zgCNyoGDAAAAFUlEQVQY02MIhQMGqjJpBVbBAVWZAPgZT7HoYeqNAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_80___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJ1BMVEUAaz780RYAaz/OESbOEiUAAACCbAvcthMPDQG1lg+dgg3swxQwKAR6YlIEAAAAAXRSTlP9g+pWxwAAAEtJREFUKM9jcDbGACYMQ0VQEAbEC+FMhKBYIhZBmYMYguJpqWFphegqZ4SGdmJoF2+N2IgpGBqKKSjVOWMhpuBGaYQgkxIGUBgqggBnKVEwiejeOwAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_81___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAArlBMVEX////39/e/U1jPAAn8/PzHAAnjY2raAAzpZm3UAAsAAACbAQXQGAny8vL09PS4AArVRk64GyNVAAHCOAnFfIAbBACiExmvAAaRAQejAATOmp2+io27Jwa9RwbCcnfbxcbTuru5JizFbnLQq63ksbThrrAuAADESE7TuLnCICmnTB13AAR+OQCtMDe6NjvLMjtiAALdIge5bQbDYAjITgq2VwGSP0KTPkS9AAi3cnZPTm/iAAAAy0lEQVQoz53P1xKCMBAF0BQSTAJSpKP0Yhe7/v+P+czABMb7mD2TuwvAn1EAgBBCAJQJl5VbdD6jbZlNSKdFsRARap2J6gpf4jCMLriagLV9irsuOtm1fMW0aN5f23ZeTZHKllSS3LN2lrWzvDyRXqNjRjBjmDCsS7uXjBAWBIwQtpRD7Aqf80/gYjnUCT8IzsWBE2k1RIbhe8ej5xsGgv3ZohdKqWnu96ZJKe1PgDqItnlqw9cRqLprdR58rOZB7T4Trm9zf9xcR+APFrAUctS1tzYAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_82___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAgMAAABzfiX9AAAADFBMVEUMXq////9Kh8PD1+sc/9mlAAAAKklEQVQY02NgYHVggAFcTM5QMMDBBOIYqFLsTIImEHRDKBzgYBIEFJsAALoFJ2TsUBu2AAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_83___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJ1BMVEX////QDDPohpnVIkX87/L54OX0wsvxsr/cSWbfWHPldYzrlabbSGWxUx9nAAAAj0lEQVQoz2NgoBlgTSrFEOM2FBQ0QhNjaRQEglZUQWeQmKBwAIrgRLCg4AFkMXaImKA0siAPVFAYWZARKijogCQYCBNMgIkoYQEMQAUGMAUHoTpAggIwQUMkQTFYAAgiCUpCBbmQBQULIIKJKIImkGAxRBEUBitNFkQRFJQC+sVJEE1QULhpsiCGICqgUBAANkcdSdbxxVsAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_84___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAbFBMVEX80RbUJyIjhlMSgFhKVEn5xBTWMiEAel7OESbPsiL1zhgHfVtlnUHkahyRrDN6pDujsi/WQyHiZR3lcB2FqDeGSziznirdxh7lyRzsyxq/WiihMzDRHCT3vhPtkhnrixlHk0jypxl7fjq9uifbhgG8AAAAx0lEQVQoz5XT2Q6DIBAF0AHFoYor7nbR9v//sdZawIoNvS83GU5CQASuQ4i9l4Dh2OVs6x3k15u9Fazq08/U1Qp9FA0cphHoK4iRaO2sFRGacKZpt2ddGr3WNhDRK8MtC0vvvfIFZ5oYNEy8z1xBNUGaASvyvGCQUTXUkD5GTXsuJe8NZsARIFXTYQKYBrRCCnmmIQEgBxCTO9VbF1IWB1vj92HkwWGcr+evC3f8hK6PwvGZOT/cNUEcB7be/zOM2XsHg8DeS5725xrneLCWvQAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_85___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAh1BMVEUAAAACQwAAIgDdxAsAAAIAI4cAMwAAJIj83QkAAAAQDgCuozBPXV8WM3xfaVgACAAwKgEgHAEAVwAwR2/t0AiOfQU/OAK9ryieiwURaAAAGADt0hB3e0vNuiBfUwOumQbNtAc/U2gAEABPRQJvYQOelzi9qQZqfwMQIQB+lAQoVQF+bwSOjECMgg6qAAAAAXRSTlP+GuMHfQAAAWVJREFUOMt1ktm2gyAMRUVukYAjzrNW7fz/33dptaItPTwkmr0SchbGwXqpt5TCUOWOPceDMYMOdVUx5SqvqLMDe1qpIqUq57TfgGFq02paenK3Tt2lZzU9aJ+GK+iWNeblUqSYT3jpycu0rktXjbbd2rXny1i2w9P3Ck7/LOyWKTd35Ntlyv0yIbeVI9PDWT/sNNyBlv3DR2v10fj7EpPnU4ZhwEtHb44Q+P4YJAN8aAE9k5imDADsnnRddm+TRAsCEkiYZnGBOI6oFI78Qd8RCSEQIXFLF+Gg0YEgyVzk1+uboxHWjoaCEJHnN7yCFGe+DpTTC3HLFEejeGA6EArvcj5tQNpoR7+8LMYteGp+gayZvVnU+r9A8E/dZpk8R4XpaUFgnWp5PktfCUJEA7IhWP1ps4tJkDymriMkPsazNxkwOD5R7egn2Y5xl/nj7OGReD9A+c6SoAmCQP/MdmLAvv6B8Q8o+yuQH5IUZwAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_86___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAVCAMAAAADxFwsAAAAeFBMVEXCHzmW0OxmN2t3w8MNKHaS2/xePXLGIDgAKXvGITmQPGGQTmpsTH6IQGpka51wO2xAocE0qF5ovayF1Oevx+KBW3mahqe8mUjQxGkJh9h/n5iyuXuXtrSJgqiIsbNXmmeSpJZNn9a/h5e7oblqrNiVxsm05P0sdJ7LAldAAAAACHRSTlP9/////////V+qNIUAAABxSURBVCjPzdM3EoAwDARAB8mYDCbnDP//IS9gpJKrt7hREJ7PiieEZUX8C0IcAAvGWgYcqFyea0NDmIrF6RpIqCTOBaIiYYrlXh6YktDIW67XaOiOybk9XUJ3tKbPsibizDEa2pC3mSqEv1/PB+T+zAtTThsh36bO6AAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_87___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAZCAMAAAB0BpxXAAAAXVBMVEX////g59maroTj16m6yaT09/P09PFJl9DC3O/p7+bu4ZOqu5rX382PiGiVon3T2MqYoVjCz7f5+vrM3MSitpGYm3R3k12BnGjKvKzP3bz+++rx5Z306Z/w46vf17vmoc6yAAAAaUlEQVQ4y+3Stw6AMAwE0EsFh4QSev3/z2QNk2Fgy61+OkuWUaQpkaR8jJDhV2jMG9hpNDMaz8JKnE71UXPQSmzuWDGxjRLX7jQNxEAazKJU7SsOQgRtogzErrZ12/Xt+OaOBCvym/0Fb1tLFihEHgDLAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_88___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJFBMVEX////oES353Rb5w8ruTGHwdSH1qhvrNyj40RbtTCTsPVT0nR3fS35zAAAAZUlEQVQoz2NggAJDQUFhBnRAgmBoKBbBInUsgkKKtBV0gYKFQopSMDaDIAhMBGIhRSAhCeZCBFtDQ0ODVIFEBJKgEhwgCbalpaUlqQGJDCTBQmxmCsIEIYB+fscf8tuyKYpiJEEA44Af4yfh9owAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_89___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAFVBMVEXOECXOESb80RYAlGCovC7tjxrskBsC56JSAAAAAXRSTlP9g+pWxwAAACBJREFUKM9jYBQEATElMHA2BgMGiKDoqOCoIEwQNYUAADVVSCfgcZ/QAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_90___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAIVBMVEXOESYAnkn80RbtkBpFbjwEAAC8DiEjAgaQCxqcDBxVBg4bYLCCAAAAOUlEQVQY02NgAANmJWTAQE/BBGyCC7AJRmAKspWGVmCqZA9NYGARRAYgwaUTMAUz2RowBUFgMAkCAEjfH7SkK65IAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_91___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAgVBMVEUAnkkRpVX+8bZYwIgkrGN0ypzB59P80RbOESYJCAGk3L7t+PFAt3caAgSOCxo1BAn8/fX93lf943H+7J781SvZ8OSM063/9s7+6If82UC9nBDcthS1DiFnCBPBDyP/+uUfGgIfGgJ+aQt+aAtPQgb9/O5OQQa9qE5DS0d6uJeAemJ4QqG6AAAAsElEQVQoz42TVxLCMAwFQyiSIRB6h4QS2v0PiLHNRE6Rtd9vZp9sKXq9k0hEqj6jYbcTDuJkfHnGxaDfCwXxfFL3w2yRrdYJH0Q8puoKsNtuuBJo0P49ACzn8bSthA1aP/xoK4F/rN/QWAJLnN9QL0GCxO9KFKQEehB/tQRWoH6vRD2YS4JafROo9TAPb5iseRhqZZ6HWLkHL638FzpraCmsNbhmxipYXOkpiI9Leq5frY4Y/eRr36cAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_92___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAUVBMVEUAIJ/2zdTJ1cJ6e5/K0OtQkEr////SEDTXJkgYNamdqHn3+fC7qsOVwZ3m5c1hmlHJpDHs59z848dQba0QEBDNZmTXh19voHz84Lu0hjjIpTBzGy2qAAAAU0lEQVQoz2NgGAU0AZxQQFAhCxsbrzg3GwsRCvl4mYhSKMQsyMcsgamQHQ0w8jCLiQrzMKKLYypkkhKRFGAirJCLnxUEuAgq5IACggpxgVGFeAEAvUgOmZnoHJcAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_93___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAG1BMVEUAc8////9Vot/g7fnv9vx9t+YSfdPS5fao0O4m4Cd/AAAAQUlEQVQY02NgGFCghAUwCEJAI4iQgHKggsIpINLNEEUQCEQD4UyYoCFIUARVUDwZRJoVogiKgLnijlBBrE4aUAAAhVoQix6fUHcAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_94___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAANlBMVEXeKA/qeGn3yMLmXUz75OL98vHvlIjeKRD////th3n519PkUT3xoZfiQy3oa1nzrqXgNh/jUT0/tP8hAAAAAXRSTlP+GuMHfQAAAJRJREFUOMvd08sNAzEIRdHBBnzxd9J/s6kgHktZJayP0APBdZWjuq5fhbkdwZYYJ/CucNRRCPwJtlKKmyJj5nsH1b11oztgsoGATdasqgLzM6wEXSI8AT02GTE1eWUP8bydOle0D+la76f13BFpubEe4DDQlbTaAwykklNN7GFWYJVp6B6OnlIupTSLw3uMv/mZr+Abp+scdpIFX0UAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_95___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAD1BMVEXNKj5Db03///+Cn4jdcH1rDt86AAAAHklEQVQY02NgGFDgggUwKGEB9BM0xgIYBLEAugkCAA3bITVQzOs7AAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_96___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAdBAMAAAAqZzNAAAAAG1BMVEUBUZz////A1ObcHjUCUpz2xsyBqc3o7/a/0+YtMruUAAAAAXRSTlP+GuMHfQAAADhJREFUKM9jcAEBp2BjMRc4cGAYfoJKIKAebCyuBAcaDIJgEGwsiAQYjLEAEgSxmonFdiWGkRHyAMPXhW+2p/5SAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_97___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJ1BMVEX/////mTMSiAfY2O2pqdeDg8bCwuOPj8tjY7e2tt2entJvb7xlZbj+tLZ3AAAAOUlEQVQoz2MQxAIYhoogXsByNMIBQ9B8smUwhmCZ15J0DMENHi3cxKk0xWYmW2tEAn73KWEBQ0UQAHj7LkjxXc8wAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_98___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAgMAAABzfiX9AAAADFBMVEX/////AAD/f3//AQHNXVckAAAAF0lEQVQY02O4GgoF4QyDgbkKDhgGFwAA0P04aY5rCYgAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_99___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAXCAMAAABODP0nAAAAUVBMVEXaAACe1KvjRUXxmZnaAAAjn0DwkZHfJibsd3f////kSkpduHOo2LRfunQkn0FYtW7jPz/ujIyj1q/0sLCY0ab62dn2v7/zqKhDrVyMy5r97++GuGN/AAAACXRSTlP9/////////f2Mg7y3AAAAiklEQVQoz92PsRKEIAxEg9xFISIII6j//6EXQKuzSO2SzJuwWySwfEVa4FXB3ZEnIu/cDd/AXeEaiHY4ZhWVmtuLF+L/fIAR6iG4lbJJgjrlnJIgmFEXzIJgwsQl2jEE0Y7GnOfT1ZNG1KhXBt7ACu61GxUTjMNgA5e1FTwwqvinG90fAT4iwauCP4TbGUYnV3DMAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_100___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAM1BMVEXOECWl0Lrp9O6/3s///f1/vJ1xtZMAAAD////OESbP5toVhU1Am20/mmyQxapfq4VQo3lSLMJmAAAAAXRSTlP9g+pWxwAAAGNJREFUOMvt0EEOgCAMRFFKmToCAvc/rStXBsSEJX/90kzq3DmVcxuugYFThS70n9A8hWRU8UNokQTJeGF0Ua2oAaRgBGG55dxqlZhSQhlAAwAR9QAUXfisD3/e84LHZBuugTd42CCCgiyR9gAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_101___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAD1BMVEX/iD4Wm2L///+y3sv/176zaFdvAAAAF0lEQVQY02MQBANhJTBwYICAUcHBJAgAHJ0eZQMU55UAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_102___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAilBMVEXPFCvSzsrc3Nz19fXSfIfKHzTNSVnJESjMEinKLEDHSknAOzvHXmvCHDLTo6jMZnPHU1Tkx8vLln3bx6nFOEnHRVO6e3HIkXXKn6TKn5fLUhrIf4i9cCrGUGDPn4q9Sy3Rho7NLUHVzJLd0ovVv8LLHCXSkZnit7vTqq/z5+jOuYvEp3DCnV/t7e074otqAAAAeUlEQVQYGd3BRwKCMBRAwQcE/g+92Bv27v2vpxeQZOXCGf6X8mF3gIgwYJyq3XadoKvZdMR3Mi/DYxtVsF4KQ9JeJHk1IlfDID1B9niaIsxxsbfgHgWHBAe9RGVtzCbGod63Cqo4VeFZ8ZI0+QIvRZDhJZ7gx8b8whv8pgVlegsDCgAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_103___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAdCAMAAADvl95BAAAAM1BMVEX////Cz+5Lcs2OpuBcgNI9Z8n3+f0AOLi3xuu/ze3e5fZ2k9khUsEPQ7ymueYzX8ZCbMvN/KBjAAAAbUlEQVQ4y9WTSw6AIAxES2lBfsL9T6u4104iifEtuppM/0TL2UAognwpTCCvJiaC6ZKqnSh4kcbcRHx4VmqRse9DihqWucZpHGu2kneekTvZjgFy7FeNataId33iVN3azdwtDL2eP7wC/NfLOQC4WhA4gpKDGQAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_104___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAD1BMVEUAkkbOKzf///+q28Hvt7vgJlTcAAAAGUlEQVQoz2NgAANmJTBwFAQDhlHBUUG8ggBRSidzkDNWIwAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_105___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAALVBMVEX+0QAAAAAAmzoSDwD4zwHyxgAZoTSYuxeCawCJcQCSuhgeojMfojMhojPVrwBemeiWAAAAgUlEQVQY023RwQ2AIAwF0H+Aq0lXcAq5MYJbmDiAF4+O4A6u4AiO4DpSoWqxPb6U8PkAbm7V7BHoAaUH4NH1ajft+QXEOokNbAS6dfsa46tjthspZGVbSTDrYwVZ0xQTpJAiu2IKmwrZ6uPWRZ9Ii2AwwlvPtApRJtWZJf++44y4AGk2PZ/nYcIzAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_106___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJ1BMVEX///+8AC355+vIL1Pqr73VX3vegJbyz9fhj6LADznRT27NP2DqsL6WBkFXAAAAXklEQVQoz2NgoDdgOpajgCG2UVBQCl30pCAQTEEVYxcEgwIUQWaIoAGKYCNEUAJFMBAiKIoiaAgRFEYRFIQCbCqlCZuJ1Xas7sTqIwZPLH5nYFqIJZQYmNxSFOgeiQChfg9XF5eK2QAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_107___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAflBMVEX////2zdHqlqD87e776uzWNUj0yc7ODyX//f3RHjPrnKXQHDDXOUvhbXrYP1DgaHXfY3LQGi/zwsjqoKny4qTpk53ekkTpkZvVMkLs3Jfpp6ronTfXRDX//PHjzGfn0XDks6jbfDvirDPqtzbheDb00rrsrI3uvULLWjzhkDGG5NwUAAABCUlEQVQoz42T7ZqCIBCFB1OhtCwh00f7rt26/xvcERYZCrY9PxQY4HWOM8D5ZifA037vz8VuwzmsOOdZTVZVp5TqyNk6wy0rEHKO73U6ravj8XDopmm6xvBcjgdnSxwWW3sHOzdNc7f3bwsMLmc2pvm5mcjrpb98mXGuqYx82MLx5fnRP6WjLvxUDT/BxbpvbjfMTiQe1YmVhi+G63crDLVkEJDhV+lpGE5pFaA66XCRMBajOuUjv9SPHP6Wvgyp8ElJ9q+NGt22n9C/yQhjYRVLxtozHYnYYw0H8psDhrtfOAFCZlIqvJQi5XtlRlV7ZfZOJShXuG+tACE+tsJrc8X4QNslZvDYrj+d2w/y/o7CEAAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_108___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAOVBMVEUAAADzwcY0XzY0BAlAm21AQECfKSzOESb///8Aej3aS1uaDBzRHzL42t2bDBzULkHmh5JkeFpkNDmS7NDKAAAAY0lEQVQoz43QQQ6AIAxE0SLKiIKo9z+sRhqDC+z89UubVjYvXMDqSUhSgKQASQGSoimcU7cPBBY3d1KYTFrhnpM1tUKXCwcTu5o/Rt9zjN0aGIb4k3DshRZTaLMHMuyGHIvxAjjaEhDK4xL+AAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_109___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAM1BMVEUAr8phuIFvuHYQsb0xs6UfsrE/tZpUt4ovs6b+xQx9umyGu2WfvVJKtpHvwxeQu13PwC6ofxUkAAAAmElEQVQoz6WSwQ7DMAhDAwiwm6Td/3/tDrssSdVFGkf0BMa4lO1yjT3wOuoeKEfugXn43ALgd+Ck0VJSciVF+8j1SrL1hZQ2avQ8SVIwgzG2zEGSTBQbQb2+J0LtMzExa9c6gC8JPXnWdF6Pq1tGJDJdmz8eg0C4ewf0hz0wC02HLPbUJRQV0fTmM4tjJWB/hGI7ZtvB3aw3Td0Ecu+54W4AAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_110___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAUVBMVEUAAAC7AQHdgIAmAADl5eXl7+UBZgHZcnIAZgC7AABRAADMQEDBLy9pAAAyczIwMDAQEBBAQgDY3di4UFCjAADQ0NCAgIBgh2CQkJAYWQDmoKBlCIy5AAAAmUlEQVQ4y9WRyw6DIBBFr2Ipw0PFt/7/h7az6IJRA4tuPAmB3JzcDAA8jq47n66Ze8AqoJ8zlcsG65zFtmTEvlFU16S4OaURDJ5FP8gcb8FILNIoc1SUEiYWpyDi6iSqQM5RUFkRlrwnWyQeByn8r7F4xttbF7/jS/D7GZlDm5R1Z3FfRayl2LYmOhd5z4jfFaPROife8QjxAw+XGXSXe9vGAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_111___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAgVBMVEXv5+oYMHD////GzNy+Z3Hkv8PIEBDesLbFd4C5V2Pz8/eLl7dvfqaMmLhEV4s1SoJSZJTFDg740AB+i68nPXncggLvvwDRXQPIGg23v9NgcJzIJQvorwCpssrVaQXQSgfFGQz1zQDKQwnGLwnfkgDgjQDU2OTYxFDi03vu5rZRY5M4CaL6AAAACnRSTlP8////5PL/8Obhjyud7gAAARFJREFUKM+NkImugjAQRaetgrJVpJtsBcT1/z/wtayKCbxJyCnDSe8M4CwrNo8udZN9t+H7NZNctlIKHsfOqhhftb7V57q8boiOozLOy+znwl/RUXGmlHK2RBU3sixlVqkNsZJc5LngcmPGSrcir+tctLpa/z1ciLMpIfi62Nzy2op1zvVC9PaH484F7Lk98ev5eDxfGIO7Ox723kgg2BYpJnqW3kejJyB0Ck4MoZlRmkaWzDRmAkkiRIMLmei/EXr7hFwCiqJkInRJJmokdMRAFh8ARWEY2oiRNAnDhNpRTCOaCH5qJd+faQZlqTlYaaZNGm6feL/jIfaDwLpF6LAQRSwoCCkCZkboF+nJAP2z/gCvnR084pgM9wAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_112___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAJFBMVEUAAAD///8Aej3OESbeX21Vpn5BCxEIKRgAUymNCxoAcjnBDyM+gG8gAAAATUlEQVQY02OoUsIEDAxN2ATZF2ERZODAJshQhU0Qw1iwIHsoKgALMgiiAvoKsrmgArDgZGNUABLLNsYU5DTGFGTbjEVwsjGmYDammDEAor02RGMqg7YAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_113___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYBAMAAAB6qqLzAAAAMFBMVEX/AAD/sAD/UAD/oAD/cAD/QAD/wAD/kAD/8AD/MAD/YAD/4AD/gAD/GAD/0AD//wDINHCxAAAAgklEQVQY02NgoDfg1FK9gCG2xlC4FF30UnZbxkNNNMGFG0+0SGehivHWmZTOWfwmAEWQVUI6MmhjswKqoNgTpxC3xAUogkxi6ubFJYloKi18zn850oxqJufpEvnP7s/RHLpsu6NJtRCaOyfZtWVs00UT5A0XFj41Ad3zvEGLJtA9FgCBRSUPxoTUWgAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_114___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJ1BMVEWbFjXOESabFzf///8AKGgBJ2c0VIfw8vZQa5eAlLSgr8fI0N4gQ3uPvoTKAAAAAXRSTlP+GuMHfQAAAFVJREFUKM9jEMQCGOgmyKSEARQYQlwwgCtc0G31rhQMwcnGxpbogh7GQNCCJugOEixBEzwMErRBE0wGCZphE7QhxkystmN1J3Yfubgi+R1rKA1oxAEA7A9c3kKd8BcAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_115___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUAQMAAADFiO34AAAABlBMVEWeMDn///+ut+dDAAAAEklEQVQI12NgIBH8BwEsJIkAAKwEE+3AWvguAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_116___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAP1BMVEXtGyMvtnEPq1s/vHzyVVv//f0AplHxU1n////tHCQfsWav48jv+vSV2ra/6dN/0qdfx5HW8eNvzZzbXFlPwoebhZrvAAAACHRSTlP9/////////sajZT8AAACUSURBVDjL5dPLDgMhCAVQgXqH4tvO/39rt61OdNbtXbAwJ2gIOve8Fed+Ch6PWzmc1zFR8nSm/gIWgPINmE2YaA8jVQZS28FA1dgq+rZjAhggS2sYTyKGAFbiEuZMDADVaAl9Y2MhAFLKCrYeRADIycMjx6tTaipAUNUQNgNvjGk4VzD3qLWEGY7b8/qoX9vzl5/rDXxKIaya/qD4AAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_117___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAANlBMVEUAlEM/Pz9lZWV/f3/9/v0CAgKPj48AIJ8AlUP///+8vLzPz8/v7+/f398fHx8vLy+fn59PT09zsOZCAAAAAXRSTlP9g+pWxwAAAGFJREFUOMvtzkkOwCAIQFEGpRXn+1+2dk2iHMC/JC8APM7gwi0MyaRqZ8HCoMzDAxOLsA8SiQsORN9pidG1McdVPsPaf9jyESK25TqWA6zUiSbhrMcfi4posT/C6wou3MIPDB8g750ZaJ0AAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_118___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAVCAMAAAADxFwsAAAANlBMVEXfhZhkUX1TH1NMaJXvwszvwssAKGjPR2P///+/CjBqgaZ9kbLO1uIYPHZmaZLp7PGdrMSaZ4i5Qx90AAAAWUlEQVQoz8XQOQ6AMAxEUZPAj7Ox3P+yVGmtoeLVI/nLxpJqyD4NG0DzkAGMDJx7yCBf7mMqp7s7kErIgHv2rDWC1Ci+Z1sei7nIZFVkh0hvLKI/G+XT6vAF+EQWV9KTaOcAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_119___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAG1BMVEUjnkYAAADnABMfHx9xcXHAwMAwMDBFRUXPz8+rn9MXAAAALklEQVQY02NQwgIYaCEoiAUQEDRxxhQUbhYuxBAUcRQOTSRKEKt2rBYRdie9AAAq8R55cd7EcAAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_120___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAV1BMVEUAK3+LdBxaTgkLLm0AKHxxZB+5nCXOESYAJXg/OBMAIWU1Q018by4AHnHpxDRJTzoAHVncujF2cklKQxo3SmBpZDKtlzYPKVWVgSv71DupjiVkWyBpWBVMEWERAAAAXUlEQVQoz+3PRw6AMAxE0TjEwU4Pvd3/nBzBYYOExF+/xYxSTzOm0fmuyVHMK5HsMp6aEb3kYrBWa2tnaSdtcAECBPHJstcj1TSIGydmZh4bjpMrxZF6t76xH34e3uVzD6wKgmdUAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_121___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYAgMAAAD16ldTAAAACVBMVEXBJy0AakT9uRO6V9nyAAAAFUlEQVQY02NYBQcMVGWGwgF1mTQCAF49T7GuEQs4AAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_122___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYAgMAAAD16ldTAAAACVBMVEXtKTkAod7///8YqkgeAAAAFUlEQVQY02NgoBFYBQfUZYbCAVWZAPgZT7EeR7VTAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_123___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAS1BMVEUOdGGGubDD3dglgnA8j3+Vwrqky8QPdWL///9Ll4ktglldopUee1201M5Sk09pqZ3w9/bS5eK0vTY8iVXh7ux4safSyi6zvTely8QsOr8PAAAAAXRSTlP+GuMHfQAAAKlJREFUOMvdk9sKwzAIhqMx05x6btf3f9LZDgaDYQq72v4LJfDxRQNxji/FuR8FU7oGpm0rbXC+M3cd85RaxpnZ+7NZYFEXZ8SsrSsGmKbCsYpU4vJ++YdlIopgbC3jgfwisngCb4ERQt1HNYYaIBpgL5pBjUfPBkj1JIejIlkzrjgKAqCMuFozEkDoA5EWANNI8RWyjM6H2zO7/Tx6pqxsyOpzf/FnvgMfWGQc92vH/soAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_124___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAMFBMVEX51hbOICjzwBjaTiLkeh7gZyDuqRrsnBvVPSTcWSLxtBjRLCf2yxbOHyfmhx3mhh7oX2dPAAAAw0lEQVQY02MwY2CoFgSBA0xgajsDQzKDoBkDkyGIl8AOIoUVGJIFGQSBovwbgVwHFiAh/QEoBhIUnMSwAkhOYAYSXQzKghBBwSAGR0HBBm5BQREGVUGYoGAQW6OgjKLgjQSwGFRQMOio4BVfwRiIGExQMKgivLQdKibIwJXuMrkRyJjKwBAJpCQsXcoWMIABUMacgaEYzscqiFU7VosQTnJEcxLU8RLIjgd5UxbNmygBogkRNGPgQwTdA0jQYQtkbNEBAHgKPmhpzmYhAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_125___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAGFBMVEUAfTn////8PTIAfjp+XTZWqXz9fnepk3lpgAtyAAAAAXRSTlP+GuMHfQAAAB9JREFUKM9jEAQDMSVkwDAqKO6CDKCCosZIwGAkCwIAcRhIc5cNL1IAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_126___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAIVBMVEXOESYAAAAznjUWAQM0nDQ1BAluCBNMBQ1aBg9/CRa3DiHb5SsEAAAAYklEQVQoz2MQxAIYYAzTsvRgdEHzmWlpM4tRBYU7U4tNy2YYogiKzTAOSzXuTEQRbGuOYmBYapGOLCg8w5wBCII7DZEEJTKsQIKL2wqRVRqahgJBsDBU+5AGTkoYQGWoCAIA3CUzq4wFS+cAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_127___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAPFBMVEXZPz9mADPPNjl+ZDPMAAD///8UEF3mf3/zwMAAAGZQQEb/zAA1K1DYrA/wwAaQcyyggCZgTT+wjR+vjCAG8B+KAAAAg0lEQVQoz63ROxLDIBAEUey1Rm7+SPe/qwMFdrCFCfRSpugqCDhejnAdxX7G73B3XMNWByB0Dd+OAGA1gxRtSNN07QCxlBKnN+ZkgFpKqWk2VGpAtpqq5Wn6LADRus3TqHSAnPXveXQUG1p5cKSfn9kc4eFw009H8GyLwv3uT++LltMf2s0Rk/ZL0FMAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_128___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAMFBMVEXSDzMAfjrSEDSeKzWNMzUAfTkyl2D////AGDOQx6lvto+428cEgDwPhUVQpnfv9/JzkBP1AAAAAXRSTlP+GuMHfQAAAExJREFUKM9jYFLCAAoM9BRsNkYCFlBBR0EkIEJYUG5X4lEMwfmJoRgqj1UBCVE0QclaLGaeLiRWJVYzz8xPJNadgoKhBL2JNZQGLuIAYR5H52EZ6mEAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_129___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAElBMVEXOECYUtTr80RbtjxquxyGuyCKjAxX9AAAAHklEQVQoz2MQBANRJTAwYIAAiKDIqOCoIEwQNYUAAPaxJ3WCs2XbAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_130___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAM1BMVEXPEyr23+K/tLTjpK2xrKvTmJ67oaH////PFCvLy8vGmp3gs7bgtLjmtrurmJTBj5PLiY/HwyfHAAAAAXRSTlP+GuMHfQAAAFFJREFUOMvt0DsOgDAMA9AkzQdDP9z/tLCD1AwsSPVovSExxUu2Z4juvsmZgwf2DGy1Q63yFAq0C2BTOFxV3UviRoPzl89EsJUcTA++4IK/gxfabR7af4FUXAAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_131___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAVCAMAAAADxFwsAAAAzFBMVEX////bdAEwRXMgUaAwXadQd7U/aq4AOJPddQAPQ5mQqNDx8/kSPYeaYyywwd6/zuSFXDpfg7sDO5Xg5/L3+fuAnMlykcPeewzFpYXV0tN0WEXp7PLXcwP8/f4aP4IlQnuQXzOlZSTd3OCkuNhIcLKasNRqi8DToGrTehh7WkHdhSLKspvVcgXUllTc4+/j5OnCt7C9k2rLxsfWiDEfQH7w8fO4yOE5ZavHjVHPwbXCfze+qpmKpM2ytcGWh4ByiLAaTJ4jU6LH0+fS3OzDb4x6AAABE0lEQVQoz43T2VbCMBAG4ECTtFlsbaEFWyuKCriALO4bLu//TnaSJqeA1eYqF99J5p9JkNtotU9QM+Z5DWB7z/MsZNT5k5XQwYQTyupZbzzUkPgi4Jjtshawy6s7hAA6NCg2HY432UCz6QFSC+rjHdj5YVUOjoH1+jcIGegyAieKGG+z1VO3VPcjVSMcKYLQBr9VbFze2fXDonoFGY79hFDD9lsQIFNKnBKdUfeROYnJfARsusxBZednkbnFTMayQxNg9voQVcJtjBDYai4K9R1v9aoKZcEWEOAr+dydkYXy4nrykqE8GH38OnNk2eMy141w66FMJ/2hbUQtlOnzfFZpRA2U6eKN0+jf54ve17jRr/kBh1Mh+Hah75sAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_132___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAPFBMVEUgQo26xNxmfbGLnMTI0ONYcaouTZWQocf///8hQo48WZzk6PHV2+p0ibhKZaOClb+suNXy9PjW3OqdrM5Jyi73AAAAAXRSTlP9g+pWxwAAAQNJREFUOMu1lMGOxSAIRasBpAhW7f//6yzaTlVeMm8zLG9O4ILgtu1rMDM7cdtuMAKc5MAUINEIloKIIS3gpR5zxt0UxJc2BVrAfMoHj3zI4nHHCi05EENvtoApaXBgTGeuI0iau2tmp9xhaobiyT2lM8cRlFgvFd+MhMAA2nDKSPFSZfIoiEjOY0HEu3Rywczs1Y2/jH8Av/Z4d02IH96ankk845ESAlzjHkCRV33nSKbmt4dMV7AH/LBmvZZ1zaqGJA4EDQfN4C6m4I9LLMN8XMo5xBU8MudQRhC5wXOHL2icAa47fPaxska0dowgWWCIaC2OpUsFgGMtjb/q0MwfP8UPxHsifYgZVt0AAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_133___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAM1BMVEXNKT1AeiZghx/WtAf/xAB7kRowdCnNKj4AYjMCYTIQaC/vvQOQmRagnxMgbiy/qwxQgSMBUdT8AAAAAXRSTlP9g+pWxwAAAJpJREFUOMvVk9sOwyAIhkV+WD2tff+nnelhqWm13C3jxohfgB/QuZfJnPshGCaThTswRiPovQWMIswi8TmiMsDvYUTaMwO+cVzA/bksS2kcF1B0PWrarUKVHljaukoPVGij6nxtVXM6qdXE3fYQ0lcoJVC/jxmYfVUS/QzkUcMreVgeT4Z4w5ieRyjV1LQ9UzCumXlx78E/+K4fGncfbmVDdvMAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_134___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAHlBMVEUApVH/1QAaIG3qKDm2JkWMejZAsj0bIWz91ADoJzlaCl/hAAAALElEQVQoz2OYbIwBLBnoJuiCBTAUKWEAdfoJhmIBDI2CGECCfoJpWADDgAIAZ5dK6eNZmaUAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_135___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAA51BMVEX////FxcUWFpafn5/Z2dm+vr7u7u7////S0tLf39/JKQ6zs7P319KkpKT0ysOHh4eMjIzRLA8TE5DfYUzniXnKRA398vDJyckVFYr1y8T65OHqlojvsKXHx9uZmZndoZfke2q6urrV1dWVlZXVMRXDw8N8fLKpqamBgYGKir0yMo6pqc+3t7fUiHq3XQfcVD1oaGisrKx9fX2Tk5O2ts/8/PzVkofyvbTso5ZbW1vt7fXj4+PQb1/r6+vgrqffwr3hbluVlbpycnJGRohMTJMUFInSe22+hhe+kRi/libgurOXl8K9kyT0y0IQAAAAAXRSTlP+GuMHfQAAAbRJREFUOMul09dy2zAQBVAJ7S5Egp1UqN4gq1Ddcm/pxfn/78mD8xBJdCZl3zA4MwvM3q1U8EdVqfw9zFx4cDMXbpY3Grnr5W6el8F85I4Qty6bzZ731Fi5Xq8VN8ugF8fxZbzCKkuQNGKg6fW8Mui2kuQqa2UJvOQKCdBye83G/3wGEOrwUokyqPy6VpA303a7fX7efr4BFNV9dQKN1c4EcswiFkUsYmOAO9o6x9Ah0hsJOY/YjLEZi+aA3Ggi5wgOaaAl3coxY+P3H94yNsUtST2g4RH0SQ+kEHIesVm/PWPRHELIgSb/EAobkLbFvXz++OalprgvrLaBFYeQ7NZo4vJb7Wd1wUl3tpYOoeK68APSw4ewloZhWgu7QlPgF5qrwzcqwwvjE78Il1/T9PsyvLAUmII7qmyEHW4fassvafp5GXYtN6Uj7BsLTOzF6KX1aOH4gDX9E9iBAALxuOjeLRZ33U+PYggIdE5gAEBNtFbYa73HXomJArA9gVQHds6v4XF2QJ1OY1asr6uaG9+8OwvWTtDhunq9LsqDS2TM2a5frW443xjSr68rvXr4t1X4LfwBrZs3C5ZPvrUAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_136___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAXCAMAAABODP0nAAAAilBMVEXNECXm5deCXUG7pXHvrrWqzMHIyKX////OESYAaEfu7+TW1LVuQiZkRDKoeVT39fKwtYr169e1zsS6vZXR0redhm9ooKGljINbnp7e387n1cfcrq3T0a2x1NvI6OanbEJ1VEDauXjYup+KubrAkWd8vMe3mH66sKfrubKOoKTOtoSklWRKkI9sWEt0Xo6XAAAAAXRSTlP89O1mUQAAAHdJREFUKM9j4EQGrOxIgIUDCTAwjCqEKBRUkmeSIkKhjKIKHy8PP0GFgozMQHU8ooRN5NZiYlJjUuAioFBYQwRooq66uDABhSJCEprK2qLijGwEFHJxc6lK6IiJcTMScqMkmxwzsywbG2HP8AsISQswjiYz0hQCAOOXHtBwW44mAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_137___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAVBAMAAADGNLEtAAAAG1BMVEV1st3n8vqIvOJ9tt/9/v6y1Ou+2+/T5/Sy1Oyb02ibAAAAP0lEQVQY02NgIB0wKWARDBTFImjijEXQtJmBbMAEoVAdwJgMItUEUARLwFxGd8IqsZpJErAIJtbvWEOJiRyrAdYMBYZuZK7lAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_138___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAkFBMVEUARq7hugF2WC2FXz+qozrPqQJwVSXMCS//0gDujw9pTx58XC3wxQChhg0/MBi/nAWzORRrUhh5XR6DZR+HZiiZdAxgYjlaQiGVGRZQPiatYyrSmgF4SQ6sYwrGpADEkQGFgEqvjgoXQY2Ka0Q2TmR1TCnMNBzDfwdycUJlYSqkKRZtaE6hUAxdVxg9S0+YakKn2tOlAAAAhElEQVQoz83SNxLDMAwEQAYDosWoHJwt5/j/37ll4Rmw1NVb4ObAWJyFirLM4rBZQd9ACvSWn2tVAQnzzmN1cAUJcQwhXEROQa7HV98/pDAEtO47QIMStwQ0w/Nzb48SyRu796097XVJQuGuU71Zk2WU2ZVS2BUkLAO64Glb8/m/2X/4A1rfExgCJ78JAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_139___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAgAQMAAABaY6hDAAAABlBMVEXOESb///9W4q7JAAAAEElEQVQI12NgoDH4DwK0IwHykk+xonqt7gAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_140___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAALVBMVEUAZrPaIDJJTYf/2QDjTyX2qwzwjBTfNyvmXiHqcRztfRj9zgNIT4j4twn0oA8yAhU1AAAAWklEQVQY02MQBAMhBjA4COExoAgqIgQdsQiKR2BTmY5FUGIbFsEyayyCUlmOmIIiGZgqhSNuOTtiCIaGTsYUDJ+ORWV0GhaVccnYtM8g1iJsTsIRngQEodEBABWyIo6noem1AAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_141___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAUVBMVEXEAwjNnTPENBXDCQnKkzDBJBLEQhnTrjvHfSrIii7EFAvEOhfCSBvFVB52c1LDijDHYSLHdymHek7GaCTQoTWXhzaphj+Xf0OpZTG6gjOegEZoMhC2AAAAj0lEQVQoz63SSRIDMQgDQLDBI7zNPln+/9DcU4ntqkTnvghE02BooqH8CP0YjPse+9ARKaBErg09QlhzQEjwTahminWFmmkTJmFkswwW14TBGLetVrCFNhTm7bqezNIps9i81XqbrdOaAhU5Tyl678CcUI6j4DF3oIIWkYWc770wUpK303wdRYx/n9lnOJgXvZ8Hd+ApatsAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_142___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAtFBMVEUBIWnyxs1nbppgdKEAor0AIGfYVmvIEC7AyNoAnrkuZ5M+VYqmPwb8+vu/x9kbN3b22N3g5O3Ueo7TeY3f4+yYRBP88fMsh47Z3OcAmrNldYmAh4ZtgpF9aD1Jg3wJkIsPehwFfzouSIE2XY8AdYkAUV6acFKITyhSaB9AV1e4YwAAiaARWWeqRxRwkI9eV1RwqJM/pIQtSTQgY2xwqXsReisAjWNVIwAwkFZVflocm6FHYRSUXZUeAAAA0klEQVQoz9XQxxKDIBQF0GdFElRMYje9997//78CgzFZGFnnLmAenJk7AKbS0oDFQsjiu9owFSiL2hRUQM48DaCCcljJLMdxIkoDGyGbrREbnVKISiJujDwyWIsxHi0xjut5NUtkB5RXB5RGfBYQ6+P5dqXj+rtcaylmU+WP0TzFbKj5MYP6ZtctoGDv7/miHB5v+wIK9vlwTgvYOXW/qn+EwUe7f5HDYdi5H879MHQl0J0Scu09SduQQEgJWfRmfiJz4Kb+2p9kUgcGDLLEhT/KC0hSDxL08Yr9AAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_143___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAG1BMVEXBJy22KS06TjCHOC6fMS1/Oi5ESzBmQi8rUzDm0+j4AAAAM0lEQVQoz2NgGL6AvQBTTFAsURBD0EOjqQVDkFnZyABTf5IaphiLepEDhiCjAbPA8A1aAE6IBLhFmViXAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_144___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAwFBMVEUAAABISEj+8o/LEDMAAACPwLxLS0v84QAAcWjSEDTVHTDaNSrBEDE3AgxzOEUeAQfRDzPiWyB3CB0HAgDndxrxqQ30uAm5DCxdSEeOCCHqmBCWmJkZZGH3xwY0WFsJbGWIMUX71wLQLESlDCnoixKhCSbUXBnlbB3d2K1sbGyLZQPhqhyBgYHOzcHdRCetITyeKEH98Y/2yX6rCii9c2thBReGbFz10AOvqYJoEBE6NAWnbwmxnQDOwVh0axXq1Sux+eZ8AAAAAXRSTlP+GuMHfQAAANxJREFUOMuN0cd2wjAQQFElIognFwy4m5LQa3qv//9XWTiHrITnre9RmVGXk44oxc1QCNFjISQKhRBuh0KIPxZCdC6E0DCnGnoA0+riRDWMPdC+Ds/cKWDxlK6yIgP6g5YjpaBovX1ugwcAZl0ntOVgu3v/3iVJDOAHzhPtx9em2h9+VvXno67zap1v2tX+8W/yzhOjLHh+PazXuW54I4t++bKcm2XR+GubetArQYdtdwqsrZczvT93d/e/696VOdURzo2RQJsaEbweGRGMjZFAmxgR9EZGBBumcuwXkKYmCRjY5UEAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_145___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAS1BMVEX+ywDM7Mv7+fJAtj/qKDnpKDg0sjI0sjP+ywD////zfonsQ1H719r+21Dm9uZawFn2naTuUF74tLn/7KDk9eOz4rON1IzA57/X8Nerw/7WAAAAAXRSTlP+GuMHfQAAAJxJREFUOMvV0EkOwyAMBVCwIa0ZQpr5/ictHRIVShx2Vf8CIevJ2AhxrYoQfwq9r4TDUAkB6qAn8gXYXPJMRNNXsSlAIAIW4iIfWSlmfV4XLHdESUkkHj49f7qZmzG0G2sDvwyOLzfi2dbvlu3Z94Tt6ZBDrZJ00fR9PExa1zl0BJEYIMdDS84qrbR1ZFloun0Gw8Jb8Vqa8Si/hHf9fxwRdAZrkgAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_146___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAzFBMVEUAlUP+zQEImUn+9fcQPnihlC/UGjwANYDSEDT9/PzSEjb2ztXogpXfUWwIO4XWJEUgSHDaOVb74+fuobASQ4nzvsjXLk3W3+vU7d+GzaY1q2pPdKjo9u4SnVH86+6omSvYthOUjTWf17jm6/NJtHmUqsrf8uc0X5vrk6P42uBAaKDbQ1/wsLzjaoGrvNXhXnZQZVjldYqfs8/6/PyJocTf5u9AsHKU0rDq7vX88PKr3MFebVF3e0TApx84VmSYjzPCqR5+mb9UuIFgb1Ar3ucZAAABMUlEQVQ4y4XS6XKCMBSG4cMSQVGJG9hFFm1VEBRrbWtd297/PTUiJhEjfr/feSaTOaAVrj11Zno6KOyeviJTvx+2p6uMoyFWdzsVX3EdU8+Fmrffe3lOiVlmRmmYIP9w8NEfzw06FutqTjcNVd+TJM9XGfemzFlWai0e5GOIEZLIEMKUM3iu2X0EOInuVpK2rkq5aoXjyoTLwmTtIuSuk7QLB0bjistCTUWbDUrB+mtZxNFQw1g7huGS5yaUO4fZctyYcZdhuAx4Lhgyjg8JNy7RrFItf8ogCkd2MGFZwxh+AAjC+nsxdw5HdrPGXifgTiHhWjyn9GUQhZecZTy/gGj1nwXH6XOl3xN2YDs1nX6y1bnBkUXcucc3OTLu3As4PoxX3z24HxLuF+B+OHOKOYB/YtwoD3EyzHYAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_147___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAJFBMVEUAK3/VrC5Qbaf///8qTpTw8vcQOIegsM9geq/f5O9AYJ9wiLd024YBAAAAMklEQVQY02NgGMpAEAvALggCS7wwTWDZOdsBUzDYFFMwI9i0DUOQqdhcAdNQJSWq+hIAYa8IgTmDXnwAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_148___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAxCAMAAACf+RsMAAAAgVBMVEXcFDwbM4cQRJnv8vhuJme/zeSlHVEAOJP///96I2LP2evKFkPlT23eIkgwXafCF0XgMVTnXXkpMIL3xc/98fOKpM7yp7b74ufuip5JcbJELHgMNY7pbIX509viQGAgUaDwmKrf5vHRFT+0Gkvre5H0tsJcKG9ri8CVH1evwN2EIV7bYgCjAAABm0lEQVQ4y43U6ZaCIBQA4GtWWEKBuOWWrTPN+z/gIIriQnL/3XO+A95F4HLzrALQJrKEATodreDhEaDItYEAh/y6s4JwztDFtYEAv/lKUQrC/Y2+dqqHAHsHRVYQ7ltkLkqHAKJTP64NBPjLNx8rKDt1s4GiU85SpwZISF/UG512JohZzDH9UlQDMQCLm4QJWXSdyq+fGawrYDIJCaRYFRWMi5Inhpi3WVoko05Fk2/kYdJmice08v1M22kJSanSeNwpMX5VVFs1idtvZNOeik5141ftoUWazljXKbnT+mTO+8XI5I+qQz9AprgcR7MWMtoZYrwUfrA5Wi3uFznAdiN8xyA7KCYcYyCVWXYwjqn3qkpsPrODqReKwXiV+fYGUs67pXjx2iTliaxPE2I6U0Lab09NTLULSF5aHj4NsjmRFIlKudqgmWyvDns4zGgiJSyHPB2Wbizl1VT0UQYFrD0uztWdNbxOmFc+PTx+hpyTO4VPAryACoNRDtuDyfyH0eTCa7YsV+Ag12AvV6GSgLLtSogXyG2gTQj5DxajNPKFOVDvAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_149___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAgMAAABzfiX9AAAACVBMVEUhRov///+uHCiDi+U+AAAAFUlEQVQY02NYBQcMtGKGwgHNmLQHACMlWadYLf7+AAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_150___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAS1BMVEUBIWnUeY7g5O0QLnJobZryxs1gdKHIEC7AyNrYVmsfO3rNd4rMTGQyS4X8+vu/x9n22N1SW42dfJr88fPZ3OdBQHjTXnDMiJvNLkbyVu06AAAAmklEQVQoz92QyQ7DIAxESQgxOwRI2///0uKypFGjiksvnQPY+EmDhwg2rySLA3C8l0kwciUcIFrA1n1BEfzAKD1q7pxL3kcLYPOZcuvaTColOwgX6kN1J2PgyTor2ejROnqfsD+tsHX3dWZiWnCZUtXnUP95U/QNa/EcaHhshTT1boMWOKKv0IIh/yVJx7hd632M1HrQ2vwyyycwywbEVirFRwAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_151___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAM1BMVEUAZ8bV48iesrmsuJv17tL2+/zG3br////49OD8+e/u4q/Jzq+92Cqy1TG11DLA2inx6L8SIXR/AAAATUlEQVQYGe3BOwKDMBBDQQG2nzaQz/1Pm17bUjKjxz1oTJlGJDNnmSTCKI6DToQf574vTBBpfq7ve5JEGttam0kivQo8SKLxKNPocYs/5eoIyVduk4wAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_152___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAiBAMAAADfS4Y4AAAAIVBMVEUNsCv////gUgb1xayv5bnofEP87uXvo3riXBXhXBT308Cdj1xZAAAAUUlEQVQoz2NQwgIYhp+gMRbAIAgFYqXhiTA2XNBCSakLXVCsSUlJIxFNUBxkQSGaoChIMJAYQazaxSYpKWmiWyRoqaQ0C8OdKI53wQIYRgYAAF6WO9NsHTxyAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_153___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUAgMAAACCKJcoAAAACVBMVEUAh1H///+q18VeAlDgAAAAFUlEQVQI12NgYGBQDQ2NYICAYcUEAOKRFw2YFuXeAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_154___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAANlBMVEXtHCf+6OrzZGv6uLzxVV3tGiXvLDYCT6Kzssz////1dn381df4pan5srb7x8n1f4XwRk/3mZ5jG2kVAAAAYklEQVQYGaXBixHDIAwFwQME8uNjO/03mxKkSXbxJDwJT+JK4hfDppFQi6rWS8SkhlQGgXPu2ve9J4FS6b2zGwHpQ6eoEViaDJYeAqbRNGsZRGxJOi+xYY/xvysJT8KT8KQv1DYLH0ST+zUAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_155___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAdBAMAAAAqZzNAAAAAJ1BMVEXvKiyvu8/xRkfvKy0AKGj///+6xNahr8fzVFXwPT8BKGj//v54jK6Zgt+rAAAAAXRSTlP+GuMHfQAAAE5JREFUKM9jYDYGgqkpLqXNxjBgwDCkBZVAoBUo2KQEBwxbQ0EAKBgKB9EMgmBwxOWgIAIwLHEBAi8wCQNeDChcvIJYzcRqO1Z3DrvoAADRhJHdGoS+qgAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_156___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAKlBMVEX////bFhsAgADzsbNKXAnmW17naW3hPEDypaf76+v1urvpen7um53tlZfX+7IwAAAAP0lEQVQY02MQBAEGNCAotjsRU1D4zkJMwa6ZHZiCWZPLMQVF0wMxBU0FgwWNUQGDIBZAZ0EXVAARVEIFdBMEABIJJaFkAQecAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_157___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAANlBMVEX///+ctabQ3NViiXLg6OMfVzdQfGMAQRwxZUcQTCoPTClwlH/w9PGwxLjA0Mdvk36AoI5Pe2Ll19D6AAAAjUlEQVQ4y92TzRLDIAiEV0V+qibp+79sDtHkkJZ4bTkx8LkzCwicIW7gd8FsU6AFm1Jk0v7ABxVrzyInD4zIR5IAdcAC6oYK1eCAActoNrvc38E4FEWya+bL6D8p4j0FBoBeM2ABcJkV9eYItK5pyd0MAFpVRBOpu+s6SpUfrmc5Ks2e75G3jfOffK577LpLFTQFgZZfAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_158___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAZBAMAAACx9nFWAAAAG1BMVEUAmf///wCg2V+w309Qua8Qn+/Q7C/w+Q/P7DAG5Io+AAAAVklEQVQoz2NgoDNwamxyQBcLFhQUFA5AFWMtBAoKlqIKMoPEBIVRBR3BgoKopipCBBVQBBMhgg0oghAxQQFsKhMIm4nVdqzuxOojrH4HhlJikgMD3QEAcycN4otQy3cAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_159___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAARVBMVEUAej2lJS6BCheBNy1Vpn5UVFTBEyQAAAD////OESanDR4nZjgnAwdOUjROBg7XPE720tbgaXb88PHRHzLtpa2gSEZbT1DC0kGAAAAAX0lEQVQoz63QRw6AMBAEwcUmDTn//6kITLiZPtDnkka75gqWqWogVN5BKDkKyXyAYP6CUrJl0R6ofihjvVDzAqE0Tv9COk2PWdN498Nb+yp8uzYEvRmBYPaEZPbIM2Y7L4kRqytOrv8AAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_160___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAOVBMVEX///+jrcD28fLsf4SEkqztiY3CydYGI1faEhr////nYGXqdXnaEBffMTjDytdMYIUtRXAVL2D2xsfKG8juAAAAAXRSTlP9g+pWxwAAAGlJREFUOMvF0FkKgDAMRdG0iU3naf+LdQEGfAjq/T70lRCla9GIXoTeg1AEgi7MGRwA+1JdAZl2qg764xAZEOwp9b8OfgfF6DAiNTJG6Gu4NwhzhiC3WBsjL5ZaGZouLRYIsvf5rzs+gSfVcCE9ZTrZmgAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_161___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAeCAMAAABpA6zvAAAAZlBMVEXOESYkAgbGECQTExOpDh8HAAFNBg4AAAD80RaAChfRHCQwMDDiYR7lcR5wcHDXNSLofRw/Pz/5whbUKCPcTSDtkBpQUFCsrKzxoRn19fWQkJDg4ODzrRhgYGDQ0NDnfBx/f3/ZQSGki0rXAAAA+0lEQVQ4y42S1xLCIBBFUVRWQklIb5b//0kxGkJLhuWNOXPP3AV0O6O0IadLIkiu90SQkB29fPtgXC9VHoBRfQ0RMNSXqIOaVyHo6ilTTAHAJEPQ1tPnk8MyXQhivOknMMN9MHu9slXPAJQCL9KA45it+pJWJVviWM4C9dA67elXLxHLwzJ+e8mh1tvcBa32Usd1lQ0WKyTc5VNaV/kG4uLxI/HQt9jW61KIW4lD/0sizSg8fcmpBYqm+e9IH+ft6Rvtl4m9vQtm8057HywKL9T5euRobP0mxuRo+QZs2naOhRq9+Y6PHh/qzYUQcXDVk4RZ9Cngok8Ctf4D1OgYXQgrIwMAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_162___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAWCAMAAACFUC6CAAAAM1BMVEUAOKj6+vrk8dC0u7b1ycbo6OjP0dD////VKx6/zene3t7J5c67yOTwxcK31MKdxKuKvZtVfUrjAAAAUElEQVQoz+2PwRKAIAgFEYIU1Pr/r807THKvPe7szAOoSeCb4eEZI5BwOliEvfUhk5DyPixyId5S9iFNw5kI14lmnJhepWr0TPP0Hkj4eeMBpwIRWct/suEAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_163___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAgMAAABzfiX9AAAACVBMVEXZDyP////yr7XIwwUlAAAAFklEQVQY02NgYGBQDQ2NYICAUSYuJgAGeB8eIlqm5wAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_164___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAb1BMVEUAOKj95Xv/99P+9MT80Rb/+eH+7qfOESb//////PD920j94GH81Sv+65jv8voQRK388fLRHzPF0uz+8bXniJPaTFx/m9NfgsjgandAar6Xrtz+6Ivsn6fzxMkgUbPULkH209f54uTwtbvf5vSvwOSsgxV0AAAAnUlEQVQoz43QxxLCMAxFUTsuekrvCaRS/v8bWYQVw9i66zOyJdXuShb4Xomgy105iSYaBtqbAF69dxlklGMlgIkG8JpiUHuXcZZEvgrA6dymHQAgcCrA+9Rau3gGTFGOAVik1tqlY8AUdU//+3l6bSgAtU+uZbaBKAS/53nMRDEIoO4bksDnQRSBhoFzoFjK5a6eKZ4Crw1J4HaQqA+p8xC4Vz8IHQAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_165___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAABC1BMVEUBIWlnbpoRPkkFKV7yxs1gdKHUeY7IEC7AyNrYVmsQK2QCbsY8TlEKMlVcZkP8+vu/x9ng5O0sZCunoiy3rShRZD8fUDhdiBzf4+wBI2P88fMLLVx/hDT21doxcCMiWTAmXS9DajANW3mDkSd9nkORq1oDJWQeN1ycnCoSOVJDXT0tQlczQWxmbZpBdCXIuyQ1YlZkeDansRVfY3F+emk/iZHY3ej13uPZ2+ZIV00WRkEpIFxNLkVAS3BrckNIUWt6fj1Kfx41Xy/YxyAyU0FseVtScTZEVVWRpRkySk9Jfh1xkzJ4lxhrgD1pbFaMfnUeaH2utBVlWlNJaFSkuoSKf3oge6bt8OxBiYdXl17vAAABKklEQVQoz7WS13LCMBBFFxtjcMcVN0xzqKG3VNJ77///JZHsEM9kGPkp90HS3T2aXe0ICtkSA0h5ls3jPZMrZGGTcAKjMYhdkQEgoBj8i9HiVmLyiqIsF74js6yM1jmyyjonmvt7vyC7QTguGAC91eQAgHJJIKerLvTOpxwIXpmOSiPNZcfHpR1/scQehW06CILL+4szXdPon06ZUraQy+DHMEV02o7bU8uUO32pV7tHA41LsPV4ErR9MqpLjw91U9Sk6GqMJQPHaJS41hvD98lr32wCUd7A4Pnwg69RaocIVswKP3sL+aeR1CKCYpXiG5/hrNZpSURQODW+rLHVqKkVm9zkoXBbfr45Hu7SkCKJuruy+pyRxoEnVMdWW99JBbvoP9jQ5OCf9A3qch0S+mTgLwAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_166___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAZAgMAAAA+toT2AAAACVBMVEXcFDz////tip5hJkzaAAAAFElEQVQY02MIhQOGAWOuggOGQQAAG50ufcR4g+sAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_167___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAA6lBMVEX/AADuTQiivADpbCUrdgDangABYAD/AAAAZgABZQD7PT3tKQCzwQD4AAD8AADonwDjlADmrwD+/v72LADQ2ex1oADV1QDp6AB4pQDjdwD5OzrkjQD1dwCKodDsAADi1ADmJQBonwC6ywCCpACNqwDiMgDuPgK7xQCbtgD4SUf5fHzuWi36bW3qklLseCX2ybmfstgsVqrnZwDOsQDWwQBBhQDyCgDYYiHd4ADcfwDtxADPgQDfzznnrELTjQDUMADofR/0c1Lfjj3fPwDLtkMZbQCEmiqatD35QgDgWkff5fLnfSDu8fhnhMLtoPh4AAAAAXRSTlP+GuMHfQAAANFJREFUOMvl08cOglAQBVDgFZ+PoiKCoIi99957L///O65NdHCtd30ymczNCEH2msD7CMIPQ4oL6hcQS0puFglF/WBcwRSvUmmShGGshGStsNPkUb8LQWpZSKw2GlUREVMFYKZkcq632zp3hrYIwHxZQTXdMPQaCocTAFQkfGt2Hm6nuU6THgBzUtzhd8O4cmcCTszE2CXact3WeTMNQTvScfloF+t10Z57Vgq8oyntK5pWWRCP+DSTxYfTVpYjSf+us/nlF10zxuigqP7fz3yGT1SnLAsv0Hz9AAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_168___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAb1BMVEX////3gIDWCBgRXPH////7wMD2f3/3gIAAUPDuAAAiZ/IwcfPQ3/0KT+lbMZQRSd5rmfdKg/WAqPiauvpFOKre6P7z9/80Pry6ETSUHlpxKn7hBA3zfoK3zfuIabJ5o/fMq8mDJGw2aOaow/o2Z+XRXciaAAAACHRSTlP9/////////sajZT8AAACqSURBVDjLrZTZFoIgFEVJrE6AqeTUaNP/f2OUYTwIXNfqPO917nxZlWxIYsgORxoI5HsiCLQdEQS2CRFEdjmtQhpBQJxTv5gDAmVNBIG+iYGljf+IgEpa0/t1OaUvKFL9iz/Zqjco1WBfWDK/efrIdwarpVNU5Wk4d/0CjigarVQ8R0BLE14M2DNUNR/dPun+ZTJzZk3cHrOPi4DWMzeceDPEK6TeNfVTvACicyGeiMPPMAAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_169___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAQBAMAAACW+SCeAAAAMFBMVEWMGj2NGz3////x4+e/f5KUKUn48fPKlKS4b4WwYnm8eY2pU2ybN1XcuMPq1dvp1NoxFdFrAAAAAXRSTlP7aonz8gAAAD9JREFUGNNjUAIBtRuBggggwAAR9BHEFFQywaZyIjaV6lgElVuxqXyCTWU1sYJKX7CpnEqsk7A73oTYAEELOgCpoyOl1kutCQAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_170___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAflBMVEUyZv+CoZ3q7xpYgtD/AAD//wCZs3+Ur4Z2RKszZv+5y1dOet3yBg83aPqctXthicXM2T9mjL/8/QTPFzx2matskbn1+AxQV9uLqZE+b/FDcuulu3H6AgdGdOfP2ztHW+XCHkuPOIzd5il+QaGGPZdDXerH1UXZEi6vrGSYNIG39pwpAAAACXRSTlP9/////////v4+p77OAAABMUlEQVQ4y42Q15aDIBRFkZZclGVsqLHG9P//waBGI7aZ/cACzvYIIKYsmMHYfMdSDCnGRGpuK2yuU8GYQoUeMTGC08lYEqy7CoSANMxPtsXEZw0BpEV9BMwe6bqYPhhuL9GLkGY+dseQ83HqYj/rKr4igF36fCly/2T3s1EECHFZmGJR4nBIJyJIjqP+1fqXjTCXsCbq/4usjTyv/SwTxSQyRe0Iuxdt4RnBXARpeUAIeJaEmXhIrDByiX0ets6ulO5vZRM3Cq3kgNiIakqRcc3r1Y6ZKBv1S5eN8p3nb7lsnJ0R4ifVPGOA/ctcctqRX3bFOKAjQbwtDnUrpVNxWrconYg3hy5wbguxCugqQWWKV4du4FwnYlXTHepqELfrvqXHTrzX9E/qO0JHh/4D5/gBM/8mwq7UuJMAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_171___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAElBMVEUAK3/OESb80RaomTjtjxrOESXfWuRDAAAAGklEQVQoz2NgAANmJTBwFAQBUYZRwVFBvIIAxOIn30Ew1B8AAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_172___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAgMAAABzfiX9AAAADFBMVEXVKh3///8AOabVKx55q0MDAAAAAXRSTlP+GuMHfQAAABpJREFUGNNjCIUDBloxV8EBzZj2/6HgD62YAHlVrHK7tinsAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_173___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAM1BMVEUfXzwPotA8qKQrprRXfS58uW8dpMIAod760gAgYD1prnistzbTvBF9uW+HslqQs1JWq4oAZWDQAAAAAXRSTlP+GuMHfQAAAFtJREFUOMvd0TkSgEAIRFEWbRRm8f6n9QjTiQbz41cFFBJk8jdUAMpAWLoRUC1HpesSwqq14VhCz2qtnuVoDZ+z0qir04zYMQJQfPWZflJ1ucj2ggeZyE0lW8EXy4wfIcoZkFMAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_174___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAllBMVEUBIWkrPWOynWf8+vvyxs1nbppgdKHIEC7AyNrYVmu/x9kAIGfg5O3Ueo66pmkVN2dVbm7TeY3f4+z88fP21dpbj4/Z3OcXL2QfRX4CNHZbX2UzYXN2e2utu7k2hKWGhm5Oh46/rXz13uNxmrRdhqCqzMyVpqZ+objP3dodTFuYg1Srl25SdXZZcGwQhbmyjlF1k4CbmI4Wf3HSAAAAv0lEQVQoz93Q1w6DIBQG4AMqOBG3ddTRvdv3f7lK1I7EqL3tfwE58IUTDmiyS6CJSqkqdsXSZBiK4rS0hYKZBGCECjjKVF3Xw9r3JEqlZg2bUh+EdCA/QiNCSYIio2/dJJQ8X7T2/DoUdXuDMH4UDKPXm8SVNUcRnyGmrFlKf44YqyrM0Bfrx/NJbc4vGed2B1v2HrigHSzKYFleFzAV+4bvQbCchsYRn9NDakxCyE55vl3DjOz2mxXMShzDX+YJ/VkMBuOm1OEAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_175___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAA4VBMVEUAAAA3LQT2zRXlvRP70BX///8KCADOESYAnkn80Ra6mQ/UJiPQGCUTDwFCOAUQEBDIpxH7+/uLcwzVsRJZSgfvxhTcthMdGAIIoEfxoRnuzhgWo0T7yxbZOSL1sxj4wRbdTiCliQ6Xl5dFrTprWAl5ty8xqD/lbB04ODggICAsJAN2YQrt7e2lpaXcyhwjpUHFxiGcvSnqhxuAagu5wyPnexxXsDfRyB1+fn6WfA26urpYV1OMjIy4uLjk5OTx8fGRuyvlzBqGuC0fHx9NSC+pwCZ8fHzIyMjtkhpwcHCzs7NT4XdnAAABTElEQVQ4y4XSZ3eCMBiG4VdMTKM4UEBa7RBHnV12aK3avf7/D+oboBgiIx/4wn2uc5LzwEHKad3yRg6Ck9LdH5F6ATJD5OyQSwmRWxYgM2x98HxFzgrxYfeFd1ZVgOF/l7Pjwta14EbT4ZcbcHXShniujL+3lI58rsEPS3uhg5yJf6trSuladHPSPmdMDbsXvCg4WMxm9PHXhXENOaaGzjOxzPCmW7zORENOV8MBcs3dkzwJ7uSYeUcKnVdi9eS38zidqeHgIcIBNHecFDp9TYtyPYvc6UwNkau9i0cJuaLMhSFyE1iswf0MOjPKBeHlFa+NAUaGYfhiWeX8sK+RufcalBreCsw8v9GZGiLnzf3N3UzpZvoD5Q4/PWN7B6S5rwz8VOI4EcpznyVxIozMHbnvEosP5bkvSQIXDSu2P6iMEOeezEmhN/eUjv0BCoErISxfBDYAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_176___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAVFBMVEVmzP+46P8rJhLxyBiZ3f950v/T8f/80RYAAACLzsRfX1+/v7/Pz8+egw2r3eHr5riPj4/MqRGkkT7m7O8QDQGJ0eHd6e8QEBCfn58vLy9fTwiCs6AoQUrkAAAAfElEQVQYGb3BSQ7DIBAEwAYGZgJ43+3//zNWZHELoBxShb8gQh3nUMXGaFFDea9QY922FRVoF9kJZe4QORyKbJBbtChRXs5TvELJJJpZy4QC6mfDbOaekOf0wLdBO2TZ0PBHEyxy1MiPUSGn46RDRms4MS2+W65Xci34yRvvSQUaIFkI4gAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_177___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAACRlBMVEW2DhRebHGQn6QAkchbPimqGR5CUVbl9PrU5OnQh40Aksj/////zwDMAADftQAQl8vv7+/vwgBgut0AkcdQs9m/mwBArNYIZy8wpdIgns/mgIDf398AkMafgQAAjsMKhqtwweAYgJMscWmOcwAhdXlDd1jMAADQqAATYCyvr6+fn59Tc0BKWCMNiKxjiU1qZxY9gGvLpADJAAB3cxivjwFCmbvdbQAYfqZLbkJdgUhcUgornci5lQAmhIh2YgMVms3TiYSCJxGjFAjZQEAIlcrODAA1h34hmsgzhaQ9bVFzkkXXTQDUPQC/oQgje4CkmhwxfnXrnQA0mcDZXQB9jTWAyOTTMgBBn8VeZB9iXA+IfxbpiwDstwAXfI+VfANcdDc/ZD9UWBiDbwTZdgCyoRbopQDPz8+9mQAAhbbIOgHEJAXhfADMFAAtdW5mh09qhT8oi5DilQCjoymolRC/pSeWlyY5WjlLf1enhwAveXCYixRQRQPKMAI5dmbRJADQsA5ebStrg1RqklKWmziWhg73xwCJsJZRQB17bQyOIA5umIhUnq9kcy6Pj4+QrZR2kmmzDQbB2cuwkw9pnpjBk4hvb2+jxrEgWil/f3+PZlEtgKDlhAAakacAh7pHj6qyBxvVmwBxgzM5koc/jKtfuty9nwRXh1eLiyMXh5xmbiNCinI5LwFIThgHaz1Rj2kvZFMtUybn9frUJgBFg4x/yOOAlV+fn0TBPQoHaz45RyK/v7/dhQC9qBc1YEffvQwsVCY/TyVfX1/OrkRSAAAACnRSTlPp9e//9ev36On1SIBarwAAAyFJREFUOMt9kgVX3EAQx9NuW9rb+CUnXBJO38EJx3GHO8Xd3bVCX90VqAAtpYW6u7u7fLNOwsF79PV1kjebzP52Zva/SxhfnaGi8Voq/+In3f+MOGGMzQdwMta44q8p/VKQyjMaz+HLxthJYjFo08VsSkjrlfSSkpUqRcDo6NzjZ/GF07nRa7QAIPHdupj92x62gM/MDCyAeNFea4HSzMo2b5WiPAo9s8fYbS99Tvu/M0pZTp897WnWrtZel8+/13WkocW/tMe8SI/ex9nhVpvTl+7os59qkx0NS3edt7Brf5B2D9gCfQ5R3J3tlsUBvyTpigA0/lzQ8bkGxpMkdzCBBr+9FDz5wr9vZ5lPryMuYfwbY48H41Vai9tIcrxqOxBk2W1wmUoarKmBjKwFs+pjwas1Ce8Hw2k9KkcWVau0bcuD7oBelScOyDgMQ5Sqoq1lV6t3TAPtQXC7nZK0uUbTcRpAqD/NAijtVVJDba2bNfAz1KSfBByObFVzgmWxVpyF0ja7vnNL154QbIh00985Tp44so8WG9RTJ75g1mPBQ3GYXa67401wKkGy0nX46IQsxg909Xam7uEqr2k6nscY3jjochmUTu+Krya5nT0hZ1Z6aOxUQvcszXkjZ22BY2YxDOpmqlJFDlo7Gqj5pbh6+rJByWopAnqGsAVU9AxFzV8Kh0iTMk0Ph4c5WiZp2bVwH1VLTAQXOWuX7A7Tblp0iJwYFGXRXaRTNLC/YrC8/mv/gZGVKetSUhRdysHwsQ+HyWPjO7gfM6PD36ZGr18piVlHUG8GZzvaB2uTm4jmpIy6uyXNSSVvM07OvG+um5syZ5ycy6m7YSpOSiKoDRs7mj62H+o/QKAChJhihHLMCBVnIFSQg+AHYjAUENRNaoRKPARNEhAy8I2CCSHhHd9oQLzVygsMMll5IAkqufxWcsXWrfVNAKoGnNmkjo1myMzcMzNamKAKr+7oqK+tLS8EEGYMBt7Km9S0DHzyPBIEZh7ckLxxZH174voKApl4q2AV1LBgMDC8AKsMaD4hmtdRM7U0Y0IRMwuIsZqRmY+AfwCdALIv0wUbWwAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_178___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJ1BMVEUAfC4AJnT80CK9uyRUmCjsyyI/kSqdsCbcxSJ+pigQgS0PgS0fhixRK6rDAAAAbUlEQVQoz2MQBAElOGAAg6Em6KGk1IIuqMyipORghCaoxmCkzJCEJmjAkKTGwIwm6MDA0cDAQoxKNQbzYgwzlVmilmLYruQxgRPDnUqqC7iCMATVGRiKMFVu4MZUqTSBE0soRR/FIqheRK2QBwDQhTJFgRiQewAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_179___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAG1BMVEUAK3/OESYyVJggRY9jfbEQOIeQosfAyt+gsM9en5nHAAAAQElEQVQY02NgAALWABApCAcgHgNbAhZBZgNmDEEnBgYPDEEXBgYjTO0MLAFYBJmxWMSkgEUwvJQYlYJYwJAWBAC4ZRdFtyZb0AAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_180___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAeCAMAAABpA6zvAAABR1BMVEX///+LaxFqdntctOLw8PCSlpOGcS9etuQ1SzNasN5Kk7j8/PzLzcsgOSxAUTosQC5KW0BdflOBYxumeyBpaVKFaCN0goygdh+QdSpfanFxVARqTA1xUxF0uNw/gKE+bXVLh54sUUlSptPo6ujh4+FNm8I0WUVHaUh4hHWbm5v39/fBxsJZdH44UEY1UjyrrqpreWgoR0EvTlNgcl1xc1hbVC+HdUNqbVlQSCFpazFzdTl2nLNrhmp4k6SqjEZ5pr18XRVUX2iXiWe5kiBwjp5cp86mvclapMvfz6vv37qku8g+dIRIhabf39/EuaTa0cGvtq0hLhxFUjR7eV0yPilXY1UiQTa8vLxYVzSogS9xgW0+QyG2tra4jTVFQSp6iYZkXCNic31hZk6KahyHpbWIr3FtZCd8pGp9aTOHr8hSYGhjf5JuYTEiW0ESAAABDElEQVQ4y+XPRXODUBQFYCDII8EJTrRx98a97u7u8v/X7TJZ8Mi207M939wzF0H+ZjbWF4R7uwsxX+bmIuNzdztko99vkDFXiKP6ZKKjuPtJ0rRMU3dlDDK2Nc0eI8UlGMsSl+82alnokKyWGMjDgr/0tPw9/ar7pdQtcIb71ZOaPDCmndFAfuTqzuMx4fhI6jxgvc+PYQ2A1FxJzSQEQF7rYZhqPMvlAhue7eagN3FaVjBDVUd3Up6NUI7Qk2SvBKUril2FAyIMbiV5/rX18ta+LxwkKGf4O354Xmm22s0KzwWhMB6On10T2SLjDXmgkN7EiXQulybwVRoKqbUAHd0ORunACgWHjvmf8AdLZy8UWK2OKgAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_181___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAMFBMVEVWtx//zgASrSvSEDSKSjAAAADYrgDjWCDjVyCzkAB0XQAXEwBrVgCkTiuDaQB3YAAKgYv+AAAAZklEQVQY02NwUsIEDCbYBI2dsAmaYBPEohQoaMuAAYyNjQsF0QBI0BzMEkuEEWBBiFKZgzACIghSKrk1eiKEgApagKRTw2AERLARxPq1DkaABS2w2d6IRRCr452IDRAnYgMZW3QAAIBCN0MOGs4oAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_182___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAMFBMVEUAbDWAtpqgyLMQdUFgo4FwrI1QmnSQv6fA283S5dsgfk5AkWew0cAwh1v3+/mPvqafxqwrAAAAdUlEQVQoz2NgGBzA2ABNYKuQr2tSp2vxnCIkQad2J5+gQ0HCRYVIgkGNtanZVd0lmYJIgqmdk5L8tQ6JFSoiCTKmysrOeCTq5q6JJJjTkfRJYpm7o6ANkuCqzZc3MBvssmb2opP3UbmmgiCg+RSLSmbjwRBdAAOBHQ8vIxWsAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_183___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJFBMVEUAhT/jGyP970LjGyL1pzaoy0GRwj9nsD8dkT7U3kDt6EFOpj/lyas/AAAARUlEQVQoz2NgAANWJTBwFAQBYYYhJ6g5CYugehEWQY0mDEGtDQwM3IvQVaoxMCRham/gwDRTk71gEYagWpJa0tANT0KCAK4xK1LO9A4bAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_184___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAABHVBMVEXGNTvHPkTl39/kwsP9/f4NP3QOQnfGNjz///8MQHbPdSxDRGzMaj7OjyXbz8/evb/GPD/Qkl3JcFPLq7HPXDTBMjf69/f25OVBQmvu0NHlsbPJZCvg09TSfH/KeDLEPjXUlSnLlJXo2drh2dnUt7fRsLDOhIfIUUr129zNnWzCVC3ioqRFRm7NbzjWiCfRalHRb3OuWWKubHjx7+/Fm57KTFHRmjrQi47XkpXTzM3KWlbexsbRj3LAa23x6encmZvLpKTEhYfEdXnVoaLrt7nMiUufRlfcioTil4htSkPSnk2kN0LBXjbOimLGfSbap6q8jJa0XzvQhX7Qd06qdzfaq2PSqDTCmzPUp4vYsbLhzs/t4ODJxMG6cXHIfH+gIrqyAAAAAXRSTlP9g+pWxwAAAQVJREFUOMvFzsdSwmAYheEUkJ+YbopJSCOFJk1CbwIq9t7b/V+GC51hgebLuPFdP3PmYFgmURj2N8hLySB+eswngAXh3CqJJREHoHwgVMv38klZgBbP6BrN0LVqAYL2BeM4DGNAH3n8rtN5dB6uf/mYzn61cdgYjMy2SzfaO9n10ivYVGxr0nsypjoAt1o9WWuZeF7ZBmCOcAN/zydYEPbHXdKN2CEAI48dT7UwItjNeHhFDENdXcxecwDczXPNkPyYTZ5BuAjm5LvPkT/DFPqucmMN3vrzUb2rovVSK1ikDNsjAokSUTxES+r2xeMoqQhBdGSS3GVdQyBEql7ZV1ACGNN/wk/ONTdzPjKb2QAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_185___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAb1BMVEX////cRET20dHdRi8Aej3pjIz//v782FYAP4fWKCjzuE0PSITXLSnszljumEXf7+fkZzitp2X70lQ1lWVObnfaPT2HvaAJfkNeq4S22cj319f1ysrogoKt1MGPxKkRg0lXp35mr4qwj36kj29psIx3kSIwAAAAr0lEQVQoz33N2RaCIBRA0YtToZWRQFk29//fGDLoBcHzvNc6sEU1+81cnVMcYMiQO+xoEvKZnY6UJiEaB9sAsuTWhzy99eA0jmxVAsJxbCuGWwX+OLLVSuWNF1sxZFpNkMW2SDnIl1viKQv1GG9JmUGYG8/bharau3yBGU9bX2nSnQsV6LHdIlW1vbwYYoJxrLekvMaJg3zcGtX2jwixsKlzpRR5d89iJfh+5G+dmP7QIhk7LnKNYwAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_186___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAgMAAABzfiX9AAAADFBMVEUAcsb///8etToftTtamkkBAAAAGElEQVQY02N4tQoKVjPQihkKBzRj0h4AAGLOW/Cjq+5HAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_187___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJ1BMVEXtKTn////2lJzxUV/uNUX1gYryYm7vQlD6ur/+7vD7ys73oaj1jZbd0n4ZAAAAW0lEQVQoz2NgwAFYkjHF2Bcqs2MIVk5msHBAF1wY4GCKYaKgSzMDkwKqIJskQzgDWwKqILMgNhdNLHAqCEMXDFzAYRCKLsgt4YBFf3aPAQMRQAkLYBDEAkayIADytx8PHH3E9QAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_188___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAV1BMVEXuGyTNpbfxPkfIIzr+/v8LTaH7x8kLTqL////uHCXyVFvyjZL1dXsZSpn6rbD+8fL94+QYSps4b7PkdX9hWY9gWpGSlbr4nKCdbpKOa5PFiZ9IernPj6EDTQy6AAAAAXRSTlP+GuMHfQAAAJNJREFUOMvdz9kOhCAMQFEsCtNaQHGb7f+/cyBGfXGKz94QCMkhDap+XKpWN4TB7AURGkwtS95NGbatBBubqxC96TqTHlT2rOaAzN4zlyEweU8MRUghjw5UHr19RobzAWcRfkBr7VzaIIrQfnvrbFrubWUYp/Wc4j+ocI3GfB8Jz1M7RHj1/ROwDBGHAfESlLoX/AFBXSI5QBCfVgAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_189___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAMFBMVEUAXOX/AAD///+/Fzq/1vkoTMF8crqIs/OYjMQQVtavzPcudbsweuqfgbUQZdaPl9PUMJ+YAAAAR0lEQVQY02NQwgIYSBN0L8EU1Ofe0IQhqMv34BKqoIuLi9vxmhQXZMAABKxOKgEM6IAza9kEDEGGiFYGqgJjLIBBEAugmyAAw6IoE6NtAqsAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_190___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAP1BMVEUhWzMaYsH7/P5Kgs7Fsx29sD8/cpEAUbr80RZYeSsub8WkwOY9ecqKr9/D1u/l7Pfu8/pYjNFwndjG1++zyuq3m5y9AAAAkUlEQVQoz43QyQ7CMAxF0RcHuCVDR/7/W1mEqpVo0nhj2TqSBwEOONJFvJ7DIEi5lDnV2eMtFrMVYDVb6kyCcSutcWwwqWwXwtWKJ1Ygfpp8m/0g83zDpPKXlCC0mITP0QP4T/Z1JuHMAkAwc3UmQYwOwMXYYPsxtIb+wwY7wyY74A3b4S0rsINJnUzqZFIn0xe7Ugy2JSfdKQAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_191___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJFBMVEVBid3///+gxO5bmeLN4Pbp8ftMkN+WvuyCsen4+/6vzfG30vJNbQNHAAAAUUlEQVQoz2NgGMSA2QCLINcCLIKsAVgEDYUxhLSVHEWUNqEJpggCgRu60kpBwekY+pkEBRUwBFkEBR0wBBNndIphCJYaMIdjCDYwMHAwDDEAAKAdCNZzMJXoAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_192___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAe1BMVEUAFIm/3dHwshwPfUsAd0n/uBzA3dIAAAD////gPDHeOzGQxK/g6uv47/DP5dyvpCovkGqAu6TiSD4QI5BsTgs/mXbpc2tIVqsgFwMffkP3shq/qCfAihVvkzXQlhbxqaSQmctQiztPizuAXA5/XA4wIwX1wr6wttrfsCKtJwiyAAAAwElEQVQ4y42S2RLCIAwAY1sMYr3aqnU8q/X4/y8URBTKuc87OyEECsGK0kc1CcHgIxbLOZ1tUsRolMFRmeEoA7LfadFz5RUPJEuJMsAm06JTX5SL2PLoVZnr0h0VIoroIv+auTsqRWxPZtSBFBFvRI+ObZSIdz3q4Cea0aCIDSGvFLFPK4oZu4QZe+PVI5v/HruEPQ5/5lKDjfxrPVduwYV1Pc4cZ3CPnhzHvHBfjmOctzfH0XLPGqJiLKfEaA7gDafDHAN8aOvZAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_193___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAe1BMVEX///9/f3+Pj49vb28PDw8/Pz/v7+/NLjoAR6CgoKC/v7/g4OAgICAfHx8VRJbzy862qcGEhIRmOm3Mwsqtra28L0IuR5DVhJBzbp6mMk3mlpzTR1HvvcHssLSTiKykl7bs5uxfX1+UlJT88vKPd53ZYmtTWpWXl5dQUFDfXWhyAAAA+ElEQVQ4y7WTiQ6DIAyGBYfgjdfu+37/J1zL0GVUzZZsPzGR+sEvbfG8/ykOaCyIe0DhR24o8gXleMrS6G3ToIYQJ8aTEMbbnhGGipgY4zCvpzx/xnzB7oWgxixF53wmQRdkg+JIzMPWeCOtNjCp0Dx0/pEb47XstIbpQXCaII7Gqxe4QnM2kPSqpRbw5CPVOVssU1kplyPgvESuyRSoHAVV2chmqoxmI6CG75my0gMQw1N3FCzoP7XN4+4F7nrz2FVm23Lb/srwhCW3BM21Ocq1MrWuIczd7gmZ7R5P673tnmPtds9gPzJSazR3O5waf3NnPr+Fv9IDQ40NIe3u0ysAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_194___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAYFBMVEX///9KbYVZdXr83QkHiTASRaUABhDaEhoAAAAPR68HfUUGIVMLNIMKZXQMWYsGhDhaMnamHz+luuHMFCNBOYl0LGQsXbkeUKSUnFFof3A8Y4+yrjzeyhwJb2ANUpcDEiy4e3zXAAAAc0lEQVQoz63QRxKAIBBEUZQRHXPO4f63FKVYCr3wr1/VNIhcJVCCOVMg5CgDIXN+gVBTBUJ9X2GQeWyFq4cEq6F9E39m4B7O00vrzgXDTcrFTh3+gPBp/DHw97zjiopcWVimRAA8fczA6CBCoGechWVKUDcmdhWS10VBkwAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_195___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAn1BMVEXUOBXxvxW4Zk+qUQj/wwC2Qw/5uQDGCh7VORf/xADzrwfXshjmngfOwpvJrYaiXxTRsb67dgbgtxeOlVTDqi3+yBftvAv6ww6/rD7rnAfOaQ3TsADSjAvopxbFVhTikgywRh2sWRXWeQ+1Yz+5ZwvToh+/elzRpUnMkxzTlEWxLRLMiRexqFmEOzJsU1+5WxTijbSTSRzUs55eaVvNpHBqh5K5AAAAAXRSTlP+GuMHfQAAAJdJREFUOMvl07cSwkAMBNDL4HDBgHO2h5zD/38btDSyathGzRs1K5EZMuSnIJmjQojwUBHfMEHBmNKApggYNoerLOIpqCqviqIoVOEEFGUr5euhVQlDkZrBWnNztRHwxmLT2PvFuYHlMMzZsT8/R9YyBUNf7zjvekm1D8MgW3M+yi7IEhiulot6e9r7n4moEOoafT1/+VxvK0kl3q0nSz4AAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_196___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAe1BMVEWNFTquVivxjA2KFDfZhi6miCzDbg3/vikAU07rdADGaTCyTTJ/EDP5pxy0ZCeFETW8bCjvsCX1tCXSiiffmyWfRCvTlh/CcSj5uCWRMyvAfyCiUifamCTroCTRgCqkXh/gqSXqqSXHfSiGJiqVSCLDix3kliuQIzDXkSbhs4zbAAAA8UlEQVQoz42SSXLDIBBFmxCnMxAGCRAg2Zpt3/+EaZQsXLFw+S1gwavfVfQHfBLA4ZA5fmfwfHrd43Qk8fCeefsgXrAJDu5hVfNf/NKMHpz6MxTfLi0/70QgJ14VCCdltNbmAZzDjkhMtbZmWI1v+2Rkm1N3RV7X0Qc0JlUptr1+IE7ae/R+mVnL5ARlkSmXBhMWRlhWFC9d4k1lAlbbT8ty4rqKm5XUZbH39kYsJ0Ld40jG2CyGpouiqLrZsRa1At5V9oEI7AIgwpX+j2EsjqYVZqPLSa4bE867K2RbKWi8EL+nEHy3FE2IxZo9Xdwn+QGnxBrCNL/vUwAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_197___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAARVBMVEUAAAAiXyxQVDPEFjJAQEDdTGcFZiXSEDT///8AcikAFQcARxmqIjGDNS8AKw8PejUvjFBfp3jv9vHP5Nafyq48Qz7PTmJl4CtHAAAAYElEQVQoz63QNxKAQBADwTm88P7/TyXAZYcCFHfV1C5JWlpDoTWhis6EkpNHkpz8CY38BaVkz6N7oMaliu2FGlYTStP8L3TT7jFhy6K7H97ztdPVWLABBxpZACsL0HiMA+tdEadf53u5AAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_198___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAKlBMVEU2fT67IkGwzLO0Ci3///83fj/syB3+/v7fmSDPZSTEPyfVeyK/LinpvB0xIzJ4AAAAAXRSTlP+GuMHfQAAAGFJREFUKM9jYA3FAAEMtBBUwgIYSlwwgDt2QUEsgMEYBqwWw5kIQevNWARtL2MIWna0ZXRMRlc5LS0tE0O7VVraYgxBm7S0wxiC1pnTNmMIWhy2aYYLYvUR8QGCNTzpFZsAgv2JIjNIFmMAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_199___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAA21BMVEU9XriuCwu+vr6RkZHrpgMAAAD///+xDAs+Xrn/2QAcGxuyOgm4OghBQUFtbW2rCwlOSYUrKyvrpgX92AJPPDnEaQbu6OhJUJKMMzOzKgeEHTLWqpjUmZnVm5vU1NTHbm5nPj+3Pz+pGBiMjIybJiaCXDp2JEBnL1SbYSvDZwN3W09TQniPGSkPDw/BX1+1UA9aPG60KCjr19evr6/v7+/6+vpiYGo4QGtHTo2vZBlwcHDOl12tOAbBcnLEgVe5b1S0TCI7WqNgYGByTT2XNzcPGS84THsbKU8yTYzAGvZjAAAAAXRSTlP9g+pWxwAAAQ1JREFUOMvdk9lWwjAQQDNoqqa2ScDSHShlBwFRwB13/f8vMmlOK6JoXvU+zrmZzJIgtK8FQn9BrBxoUUHlXS3KaG8TaD0lCXwJb4rNBsHpfD6LTn4WPfLGXk8NQbW+RfQPBY/4mblLfiZNI5SRSX3cXBeB+qZpHh1b1st0SaySpBqa13e3N2P6IQJQU3qY2La9WHC+I6kZ4WQVJQCQi9BvD3qO08YFWZWCK6fv9AYXfp6xy1hHHBQZL0VKm/NUZYxFcHTvMppnDM7dQB6QNQpISdUYyRgdulNa1Njpqgk31M0PWdux6jMYjta7LuYoPFL7NEfYuhmM01n8y2ayXXte65tda78e7ff4n37hOy+LLL1mIK03AAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_200___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAZAgMAAAA+toT2AAAACVBMVEUAaqf+zAB/m1N8Q7kSAAAAGklEQVQY02NgYGCYmsAAA7RmhsIBSUy6OhIASfMjv9uXrDcAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_201___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoBAMAAAB+0KVeAAAAFVBMVEX/AAD/////wMD/gID/v7//YGD/8PBls0LNAAAAPElEQVQoz2NgGLwg2NjYFENQUVBQaJALsroAQaKgoBiIDoAKMgsiAQN6C7IqAQHISSA6YIiFJ+7EMHgAACUjEjNIvHDuAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_202___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJ1BMVEUAAADOESb///8Aej3A3s8rkF3f7ubv9/PP5tqq0794uJhPo3kPgUhA53/OAAAAV0lEQVQoz2MQxAIYhoqgEhYAFVSBUE4ogqkQKgxZ0GXxlCQlJTVPKxckwVZj6yIlJfXNxhFIgmrGQSBK1TgJSVAz6jiIqlk6CVmwqANEdagjC6K7cygDAFe0LEzg45X5AAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_203___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJ1BMVEX+AAAAAJV+AEsUFJ2Cgsv///8BAJQwMKmfn9dCQrC6uuLg4PJgYL0ICCqaAAAAWUlEQVQoz2NIFIQBBgTAJSgsXmiIISje4lGILijs6bVkiiG6ypLQUHd0lZIdoaEdE9FVmoSGOmNY1LI12gPDIuMlXsYYFmXWHJ+I6SNhQ2K8qQQHDKMAFwAASRwaKceV/cMAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_204___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAJ1BMVEUAZgDMAAD////aSEhJkkn++N/97bD+88n96aD85pP74YBQlEb/++/JD/WXAAAAUUlEQVQY02MQxAIYaCFojAUwKMGAahCcCRdUSw1LwhAsUi9SxxTUnKSKLqgapJYENxUuGFO1/Ci6oFLFsqx2TNtndCJsd4ECbxeXLTA2A70AAP6jLUlcjKwxAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_205___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAeFBMVEUAAAArIwN3YwrrwhQdGAL2zBUptzcetToAo9380RbnzRxRvDHFpBHxyBUIpddfTwi0lQ8WEgHdzRqjxiNqWAm9nBCOvGw8rq7gyytivi4Rps9Osp+SwybVyjSpjA5TRQfNqhGdv2CzxyGpwVfTyxzNyDp9unovrLjWAwfLAAAAwklEQVQ4y43MWRKCMBAA0WF1hh0FRVTA/f43NBELs5BAf3c92Ng6RtSVMGbZwht5PcDiKHKWUebMI+MKgQNnfgx35OUi5wZg4nyRG+gJq7jgleljrHIJXd6IoHOpwtE+Q22Mt1Sr3AFRHTlXzXHKqHL+xEmjxlXpxIkj4xKJq6mZuP8Ynilwzdw0cs6xcL9xmRvHFdx3VLnco2uL+vigQeIKak44E6zi+ChypYnjo8zdW1wcGReZOHHsbdx/LDsrx/oAkpwc3/6WLokAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_206___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAgMAAABzfiX9AAAADFBMVEWlGTH09fjMh5QtKkoyD257AAAAH0lEQVQY02NgIAGsggOGUDggzPwPBzRjkuIcJF+QAAAjJYF/PyJQ8AAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_207___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAZBAMAAACx9nFWAAAALVBMVEUAak7SEDT/zgD//v+vHjjZLyvWJUXqj6D87/HgW3PaPVr42d/meY31y9PwsbwZZZ5IAAAATUlEQVQoz2MQhAAHBmRAkqA4NsEMbIKHJwoKBikhAQZBcWNj4x50QcEVxtaJGILixpYY2gUlzO0wBbMT12LankihNzEFlbAAmgjSCwAAG7QmPcKBtfcAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_208___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAJFBMVEXBAAD////rq6vwv7/TSkr66OjllJT++vrkkJDFFBTbamrFDw+mCkE3AAAAMUlEQVQY02MQhAIFBiQA5It4YBGU5MIUDLZmMS5EF0wAkoFECWLVjtUi7E7CdPywAwDkmwmBWzMtugAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_209___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAhFBMVEXaGjXcKEEQEBDqfY3eNUwICAj87/EAAAD////+/Pzn5+dDQ0P53OD9+PkdHR3hRFvbIDpsbGyTk5PlY3X19fX0v8bysLkzMzPMzMzV1dXw8PAqKir2yc/75unkWW2hoaG4uLjd3d3iT2RSUlKtra330dbvnqnDw8PtkJ18fHznbn9eXl5tmbTVAAAAyElEQVQoz43SRxaEIBBFUSOCihHMNua4//31AHRYwvgO+HWeYRPhyRc0nWkA70cHS8rWDx1Ixn0dSRlVKIakE/qllO5Ac0ianAXqoxm2IWkUJFUyxRsobZwpOTOeQDKniytl6a/g+AlV6kxR3X+MH1sprR39wPFdo8a7glyQTAp6q0knPsDxBz6VvGkBjr+IcDUbQfvTyKjbiFWhCTzT+jaywI0knM2ajWz4bYQUmo0EjJtwI8PbyMd4VEW6jfhPIwPVbMQTxP4DG9AQs+B16vUAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_210___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAMFBMVEXnABLnABP////zf4jtQE7rLz7qHy/83+H+8PH4qa/6xcj1j5fwYGvxb3noECH84OIlBDrBAAAAAXRSTlP9g+pWxwAAAG1JREFUKM9jYBTEAAIM9BcUDcQUzFRSmoYuKNO0eJfGQTRBp1JRYwsVVEG5isRNSkrqD1EERXRFlLarKzmiCAqrCitdy1IyRBGUVJQsETykNJGwSqxmyv0A2a7/EMOdl9Hdid1HWP2OPZQGJOIAPpI4lSZvLh0AAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_211___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAALVBMVEXjCRbjChf////nKTXrTFblGyf4wsXtZW3+8PHoOELvdHv1o6j84eL2srbxhIofikYmAAAAAXRSTlP+GuMHfQAAAGRJREFUKM9jYBTEAAIMdBYUnogpGN2klIIuKNKkW+m1EE3QQqlQUDAETTBJD8QODkQWFFY6CGKbbJyMJCiidBHEFtdJRBKUU3oIclWSkiMhlXAzjQnZjt2dWH2E1e/YQ2mgIg4A7pA0KOwEES4AAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_212___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAABL1BMVEUAhDwQi0lEdDayUi8pcTowm2HSJjAAhD0Bgzw2cjfHPS+/cDBAo23aRC/gWS3ULy9gSzfaSy7A4c+SOjG1cjCuSC+BQjK9WS+DZTCvaDCdRi9wQjSlUjB7azi6cDDCRi+iPy+iYGBVbjyWVjmFVDtPYzumWDBKWzaPdlFqYDNwupJgsoapLjGVQzEpajl+Njabj3jFVi6hk428Zi+jRy+rXTDELDCIWEuAVk3PUS6NUzGPSDOlaVuLXjCJPDFoUkORYjJ5Rz+7kI3XYi7CezCmdG80WjWAwp5Qqnmw2cOv2MLOOi+Xdz3MPTy1gC+AaEmhbjC+VEprazK3j5KgOj59ZWhZVTZUPzKSZmWUYVqaZTJ1UzI9fD2mfkqaT0zuii1ehEzrgC2Yg1t8WU+tZkZNbMQvAAAAAXRSTlP+GuMHfQAAATJJREFUOMuN0cVyw2AMBGBD7P3jGMPMzBPmhsvMjO//DD316Kg6f7OalTgOgBDyTx8fZi4G2+E4DoDz2Zvb619nSOjoD+5vzcY5AyDtTPS3UtnYhY8BUCFBtYOCSxlkOwkXA1DhDyCV7RK7PTEaULwMksQDgNsG1jPB9FMuGGAAyjwg2UHH3TgZnY2if60P9+1Wj6fpUXouMgA8rx65bcusFdEX6MUZAEgV1fY8QreTz4vJf3wmXIpEzGCN/kykcFNsmB4S1mtXewszRkNnO5wXxXCIhEJcMSw54aUTlVLuuzAf0mWyH8XY10ubTrQK28W2tKLh2npffQ7pgwshJVN8S8TpxOTrz2bZ9NFlLiebVKpZpeFpazk5OzmmoS57/FVZo6GmybJhGTSUdd3QNXkX/AXh7zbhm0h1sQAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_213___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAh1BMVEUAKGjXeorg5e2CgV70x8xncplgeaHOESbAytrcV2VSYGD8zxn8+vu/ydlDVGG2oj/9wDoSNGruxh0AnkkzS2TarhtKWWScrjfuvDnIiw7Mxx53eV3mwCTepg5GfDf98fP31dn88fL21djY3uj13uLZ3OYTNGq+fgv8q5OrVBa7ZBb+qoVPrjjs6fq2AAAAtUlEQVQoz92Q2Q6DIBBFR1HRIoL7vrRq9///vkIJTZsYbV97HoDhnjBhwLNMBwQuxq7cbcOzYAkZSFWJulpRpbiquZTSeTrsfYx9sY6ipIsiXuBHMdk9SXRrwej3g2zdD9Msa5WgomiaNEWvNx3T8gxbfkad9D3iN96eSvSh6fG8q4ifOSmJFnWgBy5VldSEXK5tVMMWWUS6jkTZpnhk1T2uWLgpQpDHcR7AFwSMfeUBhCH8JQ/SlAsDOOEqEAAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_214___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAVFBMVEUAlcjYVmvyxs1Ap5YQmbswo6Ignq/IEC4BIWnAyNr89/jUeY7g5O1dr3+/yzJnbppgdKFwtHCjw0j22N3f1BnPzyV/uWT+3QDZ3OePvldfc6FmbZpuQUo4AAAAzklEQVQoz42S2Q6EIAxFUQoojgvgPv//n9OCxpEY8D6Ukp7QDVaUn71C1UrVdPZNUbInUYDQAPrbEDOCzBHcCQxYVcVcZ9DWqNU5rZXSaFe6xy92LRr1oPt7AhjkQInINAXfp9aYFVNr5+6p+SikMZKFZoZPWTQ9NeO9718zxlcXFLBzPAG9CoTLDdg1cELjrjl7JzFuybCEYy1g2xS4LQTC3Il0PuDWE/P0qjqQkIUkAGuXTMO0ixlrFDZdYEsL4VbeBv4kPnKWhc5PE+sHuscKVSzXnS4AAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_215___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAb1BMVEUAAAB+bgKsNwH////ZAAAAAADqbQF+bgKsNwH83ATZAQD72wONjY1fX1vm5+a4uLbbEBD2v7/pb2/ukJAQEBC2UCDAwMDPW1oiJSLijVjvoZNwcHCcnJzExMTrqKjGNTWurq66mI/77e1FR0XhkJDFkXaHAAAACXRSTlP+/////////v4HKoILAAAAhElEQVQ4y82SSRLCIBQF0VYTwwcyJ45xuv8ZXUeogh328lXvXiu1T0KpjGKxSaJQ+piEzilWu1/a07n1xsoT68aaJ00dFTvsG+iiIoixgCeW2xUDuNlNL4b1XnoXAm5eJqJfC/Iwn7tExX7kJox9Qj0XuZpAPYFntP6zKA6JBOoJUmUUv8WyGwrCEGL4AAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_216___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAgMAAABzfiX9AAAADFBMVEWAmF3/1QAAW7uAmF21ZTA2AAAAAXRSTlP+GuMHfQAAABpJREFUGNNjWAUHDIOBaf8fCv4whMLBYGACAHKYirK4JSjEAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_217___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAElBMVEUAcy8AAAD/AAD///9UVFRVonQ6Np3gAAAAI0lEQVQY02NQAgEGNEBfwVBUABE0RgV0FnRBBRBBQVRAN0EAy7cuKPK5R68AAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_218___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAPFBMVEX////xw8p8jbLnv8pBWY8OLHHw8vfIEC4BIWnWTGKAkLRAWI5LYZXgeIn10tigrMfheYrx2+Htz9hKYJTy9LpmAAAAqUlEQVQoz8XTQRaDIAwFwC8SLBYE9f53LRVCCbJw1yx8koyiMcJOgFH04tBYUkDXBKnZLkldh4Z2kBnAJ2alO6SVqwrtgiSk9iaQ19EPktwL/RYuQ9c/Et45znB467dUyHAvq3AWgHtccJx+Ev+Ej19G53DBAFu0cc/wu/I2HsEVwA1PhSl1eK4NrxluuGTtJ5QUksmhaCkk68dM1SokGwxuoR0b/Qp5zw/L/xHkHUeiPgAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_219___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAVBAMAAADGNLEtAAAALVBMVEXGWWb////YkZo8O27ZkJmyIjRUU4BIR3fsyMzsyM21nbBzcpdgX4mUlLCFhKRMRAwAAAAAiklEQVQY02MwMy5ONjM3Tg5FAgzWZembQdgFCTCYX6+1OX691lgQCTDYmSU/BmEGZGB8vcrmMFAliqCtzeHHIIyi3RhoJkilEhJgsE5L2wzCKE4y25adlrYtOxlFuznYldbFM5EAgx3QEhBG0b4KCjqQAIMgFsAQigUwuGAB2LUTD7BqV8ICsDoJABuIZ60LUleQAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_220___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAflBMVEX////59vXouxDl0aKvehT9+/vR2+////8AOKgCOajHolX59Ozp3c7Gol69iQjPsnzDm0zPrV2tdwm2fwbw59bp2r3o1K7w48HfyZr17d+8iRm0gBnNp03v6OS7kDzXv5LdxYfMqW3QqEbOpkPCkBLBkinUow35zhTBkR/Ong6oZui5AAAAAXRSTlP9g+pWxwAAAJZJREFUOMvt0kcOwjAQBVCXMU7cS3qA0Mv9L4g4QJggkR1//TSaRohcFEK+gqIWXhscVjT0IeyolnJTzOUN6daeAaZIEdg0/pIdDFZVn6GwAE92SyeN9Nip5BhjeVQGGaa/OnZnMB6RirWKCVwGzlukR7rv4DEclMDWYwT3sbX4HqXkgkvzy1svgmWxKOUKcJ0P/089B19MsyEgLwCQwAAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_221___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAIVBMVEUAmbX///8etTqZimSNf5Ifpb5vxNQyrcNOt8qe2ONcvc//sX/oAAAAR0lEQVQY02NgYGBlYAhgQAPsUxkYUhsaUAU5C7Co5AxgaE9NSEAV5ErAopKhqr09IWEBipALFsAgiAXQT9AYC2BQwgLoJggAd5op+8o7j/AAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_222___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAXVBMVEUAAADtwRBeTQXetA8AfzmzDSwPCwEAlUPSEDShgwt/ZwifgQv9zhJ+Zwk/MwMfGQEAMRZGBRG3lQwARx9lBxmPdAoAiz7EDzDOqA4wJwNOPwQAcTKdDCduWgSmDCgachgdAAAAt0lEQVQoz43Qy47CMAxA0WsH7JkkTaDQmVIe//+ZLCpYFZK7s3Qky+Z4++kKo48ig3Hcd0ANfRQ6KQBRRGlQALAoQeH834Ivap8pQB3S0qTARWKUCbCUQ4HzY78RMC5aSq4ANeWx8KmZe2Re1qGmLOPvRkDSavdc2tCmNI1i7dVwCVnXY+YCp+tuoxVOBWyQoHD6883eD//OXrDJVmiDiMJh5/4VapBoDebeydzpY+4Yh6t31Mncnxi9Gc0Ued8IAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_223___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAALVBMVEXPEyr/zAAAJH3PFCv9ygECI3y7xNsbOYrp7PMuSpSotNM8V5tTaqZXbqmFlcDhG/iSAAAAAXRSTlP9g+pWxwAAAFhJREFUKM9jcBTEACIMQ0UwSAkDqMIF1TtnFKELqiWlT1NLQhOseqSkpLccVVBjEYjUakIR1LkEInUPIQtqZkM0bpuEJKgO0aekUYTqJBR3MhtjAIOhIggAAWBSAu+GeDgAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_224___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAIVBMVEXaJR3//wDhShf86gLztwnpexHcMhvvoAzlaRP41gXjWxXelDKJAAAAYUlEQVQoz2NgoDtgS8AiyBqARZDFAYsgowEWwUYJLIKOIugimoJgMAlVtBAkJo6mlMNQUFB4AboBiYKCYhj2LBQUFMIQLBQ2FMcQNHRLEUYXYxJlYAhUQA8OoABTAMOgBQBOLAlBK2IgQgAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_225___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAz1BMVEUBIWkeaiHUeY4+VYnyxs1nbpo9VIrIEC7AyNrYVms+VYoPLXEtcSMAXCVgdKENZCa/x9ng5O37/P378vTf4+weOnj21dqHiYjPu37Z3Odfc6HltDmYlIPKnSG6tIhthiXTrEGhlGf99/iGljx8jSYydT6IqI6Ikyc4cyJ3n4JPg0YtbDUcbz8bYydcgiXL2M3LzsG5y7yYtqH13uNhbYPXrDm7kR6rm26ogRvAqGNJXiTUsE9QfiNcfEEpbSpviinHxbe2zcDi5OBYjGGSrXzI51XpAAAA80lEQVQoz7XQyZKCMBAG4ETQsCQEQQXc930p911ndN7/mSY9kKo5UOTkf0jo9FfpIsjUS1UkYhBiwJ7PmTpKCzSAxhCqooNQBgWYyQzXdaNtxfcI6Yo1EqWbCklK/hp2IYmtgBambHHBnGnJaJHI8ytdQsS6jaBOYAsPOrxFNTncKelmLg8/4xThKzm28AgPV7O+hDGTz/OPWvT22KzvSzlaNuSDA40hG882X3zMNJQdi+Pl+sVGVAW1RR+v/OlTeaM9pfjbm9BBWQGbYY+/f+a9Zmhnul3tcB7O+SRs1ALF6Hr7dG039nXVaEGDYydQs4/nFxTcFD++Tcb9AAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_226___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAABm1BMVEX////bsDX+/v7dsjUUJGP8/Pzjtjb////19fXarjP7+/sWJmfWqzH5+fnPqrX28+qkNlanN1jgx4HjvlYFe7u3bYMAdbTkwmP0xT3tvjnjxnTWs1Pw8fDetD/dsDPm7PDk2rrTqTLgszPr3LXXwoXk6Orn1qbjuUTpuzjhtDbmuTjPpS+TLkxzrMzLozHHnix7rMYpiLvXs0aKsceOuNC9mjiuZG3r4L7gu1PS4eqZvdGty9unw9Sxzt+BtdFFlcCsxa/RxqR1oXwEb6vatlFllWzE08aAqIVOi1fJv5atZnrUtmHc0bLmy3zVrT3x7uXg0aT58+Gvs8LYxZVDTHQ3jLlDRFPiy43dyImix9tBQlLs48pVoMfL2uLOq0TcxH7KuYrN28/B2OTLsnNsoHOYvJ6FqoqJso/WvXrZ4tvKrK/m3cXczJ6+kGbQrlb7+O9zo77m0puSfEaTfkXywzvs4cC4l6C6mKGfXXFcnmUmgbSdn1nj5tiPljjc6d5bkWQ/eUhIi1HN0rJWoMc9dXmzqW1Dh6yquLJMjbLH8TdBAAACKklEQVQ4y7WTV3caMRBGJW20Z0VYUx0wdRdTdum9+FAMmI57t+Peu9N7cZz2s8MaMDzETl48LzrSXH2aGc0A8BDG4Pv3mGmvbHJ8WMH2jvNmXR/JKobHkx2vHdKiTj3VFkKzRl541ZWaUutEGtq7lyYIgTztNjgVEul8qVdLxwqnwSXykJCJ2+cmjRASXtQLrmdSJHq9ruVyugS9KCcUNE72AplWQ+gngkBpZhyz4vMXIueY0VGCQPwQqqf7E0NLYRKgRXpx7lHH5hZb2wAJL6FemhggjFaNvMfiHlp43LGFIbfFwxtXJRV8A6N0Gpl81tGPG+seC73SVVyhKc/6hpQdMPlMN4rLOdl2qLy3v8dZiG3T+/a11/um7t20EQvHsCPSBzxpV5zRWn3Zz6VShTm0kZpqcECpGhhU1YjtcC19ncE9ED+NhlKy/WqhDBSJvLINKvMJBb6OFtdG0C0IlkMhFhwVSgcMuBiLt8H42AWw5i6j2lRPEVi1WYC2dquVMlZT4boE1sOUAbOXkWAQ94O5VsimSvXLwZFZ3jg7VqqOzxrEzJh+B7clf2re0am2VCc0unv1teY/Pw3E4vFY4PTc34z8jPb8fV1Y+CBqEhwhfCzGE8IlNLYff+9fvPPpGzjhIWwYWy1ygn5938F3kFvvWNCUU0kXJW8CX/G97M6hGG1FbTcnk2Y7yGi187J7JwhxBgOHmaC2mP3XsMkkJSYSyfzfbCLwwPYHPCRVSi8V07AAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_227___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAMFBMVEXtKDjtKTkAI5X////vRFLuOknuNkXxWmf5tbv819qptNv7ys5YaLP83N/3oajEtdCITnYQAAAAAXRSTlP9g+pWxwAAAGFJREFUKM9jUFLSMjZuFBRxFIQDAYahKCi3e/dDsOCZM+fv3m13dwcKiqRNtkxzBAmGgkBqaChQhfi0zGmZhSBBRoRZ4pZpaZMxBI0bJYyJU4nNTITtSIIIdyILwn00RAQB9plFeRIwkYUAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_228___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAWlBMVEXEERvxxMa4ExrIIyxVVVVVpn7llpoAAAD///8Aej300tTYYmmeJSbppKj88PDttLefDRV7NyYNczolZjZ6ChANAQElAwVKUjBKBgrPPEX44uPeeH6aSD9cnHcNwNhSAAAAfUlEQVQoz43QSQ6DMBBE0TIE4wEzJCEJ0/2vyWAgC6Sm/tJ6UqmNd5tTAfWHhEh+JASY+Q0y8xES8zgqHnInROdMrAqqN5f+EGmIzhtlRAj4cnkZtE41CxU37UonwfMYpcVjxikTOz78a2/af/tlKdg8LQPvZyMkZjfIzK7NQI0WA0pe9mYAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_229___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAgMAAABzfiX9AAAACVBMVEUAAADOESb///9w5v7GAAAAFUlEQVQY02MIhQMGWjFXwQHNmLQHAJQLWadZSURAAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_230___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAP1BMVEUZigAZhQAwgQDFaQC3YQBSawNsJgPvfQDeIBAAAABmgABfZAVeRQGlaAB7bgBNeQCLcwDSawCeagBiVANaewDu6/ERAAAAYElEQVQ4y+3QSQ6AIAxA0Q4girYMev+zWg8gsjDGBS/p7gcKAB+iSAhw2CClZiiFJXPWKlybR6JyKYGZXaaH2zElcc5jx6Koip1Pwvd+ZzX7ZuLlPvSzmRbjghnhCP8UntyWCYNHCcFWAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_231___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAdVBMVEXUAAAAAACioaDw8PBqAAD/0gD0ngBAgAD///8AZADS0dDCnADaiwPyr6/97+/tk4b41dUQSBAwSjBkaGA5cQChhxDUIhIQEBBmYGBeAAB0aDDnb2/QWzvnuQBoMDBwamCIEBD0v7+rOQDWDw/f39/3qA/dagBgvDPGAAAAh0lEQVQoz42TRxLCMBAEB4nQSA4imWCbDP9/IheulrbPXbW1s7Nym7UJEbZGEb/br8oIwB0WRQRAuNjElPytWuYR4Nse3F15gPenA8I1Lza9FL/S0PjTeT6NoH6NsWoB3HE2iYAhjhUGselifCYoj67h0RaX4Y8lHsAWuP2ExlJYa2YtrvUVfoyrFApCzR7PAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_EXPORT___=_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1___default()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default()),___CSS_LOADER_URL_REPLACEMENT_0___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_0___),___CSS_LOADER_URL_REPLACEMENT_1___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_1___),___CSS_LOADER_URL_REPLACEMENT_2___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_2___),___CSS_LOADER_URL_REPLACEMENT_3___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_3___),___CSS_LOADER_URL_REPLACEMENT_4___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_4___),___CSS_LOADER_URL_REPLACEMENT_5___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_5___),___CSS_LOADER_URL_REPLACEMENT_6___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_6___),___CSS_LOADER_URL_REPLACEMENT_7___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_7___),___CSS_LOADER_URL_REPLACEMENT_8___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_8___),___CSS_LOADER_URL_REPLACEMENT_9___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_9___),___CSS_LOADER_URL_REPLACEMENT_10___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_10___),___CSS_LOADER_URL_REPLACEMENT_11___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_11___),___CSS_LOADER_URL_REPLACEMENT_12___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_12___),___CSS_LOADER_URL_REPLACEMENT_13___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_13___),___CSS_LOADER_URL_REPLACEMENT_14___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_14___),___CSS_LOADER_URL_REPLACEMENT_15___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_15___),___CSS_LOADER_URL_REPLACEMENT_16___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_16___),___CSS_LOADER_URL_REPLACEMENT_17___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_17___),___CSS_LOADER_URL_REPLACEMENT_18___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_18___),___CSS_LOADER_URL_REPLACEMENT_19___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_19___),___CSS_LOADER_URL_REPLACEMENT_20___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_20___),___CSS_LOADER_URL_REPLACEMENT_21___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_21___),___CSS_LOADER_URL_REPLACEMENT_22___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_22___),___CSS_LOADER_URL_REPLACEMENT_23___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_23___),___CSS_LOADER_URL_REPLACEMENT_24___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_24___),___CSS_LOADER_URL_REPLACEMENT_25___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_25___),___CSS_LOADER_URL_REPLACEMENT_26___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_26___),___CSS_LOADER_URL_REPLACEMENT_27___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_27___),___CSS_LOADER_URL_REPLACEMENT_28___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_28___),___CSS_LOADER_URL_REPLACEMENT_29___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_29___),___CSS_LOADER_URL_REPLACEMENT_30___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_30___),___CSS_LOADER_URL_REPLACEMENT_31___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_31___),___CSS_LOADER_URL_REPLACEMENT_32___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_32___),___CSS_LOADER_URL_REPLACEMENT_33___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_33___),___CSS_LOADER_URL_REPLACEMENT_34___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_34___),___CSS_LOADER_URL_REPLACEMENT_35___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_35___),___CSS_LOADER_URL_REPLACEMENT_36___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_36___),___CSS_LOADER_URL_REPLACEMENT_37___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_37___),___CSS_LOADER_URL_REPLACEMENT_38___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_38___),___CSS_LOADER_URL_REPLACEMENT_39___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_39___),___CSS_LOADER_URL_REPLACEMENT_40___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_40___),___CSS_LOADER_URL_REPLACEMENT_41___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_41___),___CSS_LOADER_URL_REPLACEMENT_42___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_42___),___CSS_LOADER_URL_REPLACEMENT_43___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_43___),___CSS_LOADER_URL_REPLACEMENT_44___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_44___),___CSS_LOADER_URL_REPLACEMENT_45___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_45___),___CSS_LOADER_URL_REPLACEMENT_46___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_46___),___CSS_LOADER_URL_REPLACEMENT_47___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_47___),___CSS_LOADER_URL_REPLACEMENT_48___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_48___),___CSS_LOADER_URL_REPLACEMENT_49___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_49___),___CSS_LOADER_URL_REPLACEMENT_50___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_50___),___CSS_LOADER_URL_REPLACEMENT_51___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_51___),___CSS_LOADER_URL_REPLACEMENT_52___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_52___),___CSS_LOADER_URL_REPLACEMENT_53___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_53___),___CSS_LOADER_URL_REPLACEMENT_54___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_54___),___CSS_LOADER_URL_REPLACEMENT_55___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_55___),___CSS_LOADER_URL_REPLACEMENT_56___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_56___),___CSS_LOADER_URL_REPLACEMENT_57___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_57___),___CSS_LOADER_URL_REPLACEMENT_58___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_58___),___CSS_LOADER_URL_REPLACEMENT_59___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_59___),___CSS_LOADER_URL_REPLACEMENT_60___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_60___),___CSS_LOADER_URL_REPLACEMENT_61___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_61___),___CSS_LOADER_URL_REPLACEMENT_62___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_62___),___CSS_LOADER_URL_REPLACEMENT_63___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_63___),___CSS_LOADER_URL_REPLACEMENT_64___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_64___),___CSS_LOADER_URL_REPLACEMENT_65___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_65___),___CSS_LOADER_URL_REPLACEMENT_66___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_66___),___CSS_LOADER_URL_REPLACEMENT_67___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_67___),___CSS_LOADER_URL_REPLACEMENT_68___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_68___),___CSS_LOADER_URL_REPLACEMENT_69___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_69___),___CSS_LOADER_URL_REPLACEMENT_70___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_70___),___CSS_LOADER_URL_REPLACEMENT_71___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_71___),___CSS_LOADER_URL_REPLACEMENT_72___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_72___),___CSS_LOADER_URL_REPLACEMENT_73___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_73___),___CSS_LOADER_URL_REPLACEMENT_74___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_74___),___CSS_LOADER_URL_REPLACEMENT_75___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_75___),___CSS_LOADER_URL_REPLACEMENT_76___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_76___),___CSS_LOADER_URL_REPLACEMENT_77___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_77___),___CSS_LOADER_URL_REPLACEMENT_78___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_78___),___CSS_LOADER_URL_REPLACEMENT_79___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_79___),___CSS_LOADER_URL_REPLACEMENT_80___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_80___),___CSS_LOADER_URL_REPLACEMENT_81___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_81___),___CSS_LOADER_URL_REPLACEMENT_82___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_82___),___CSS_LOADER_URL_REPLACEMENT_83___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_83___),___CSS_LOADER_URL_REPLACEMENT_84___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_84___),___CSS_LOADER_URL_REPLACEMENT_85___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_85___),___CSS_LOADER_URL_REPLACEMENT_86___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_86___),___CSS_LOADER_URL_REPLACEMENT_87___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_87___),___CSS_LOADER_URL_REPLACEMENT_88___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_88___),___CSS_LOADER_URL_REPLACEMENT_89___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_89___),___CSS_LOADER_URL_REPLACEMENT_90___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_90___),___CSS_LOADER_URL_REPLACEMENT_91___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_91___),___CSS_LOADER_URL_REPLACEMENT_92___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_92___),___CSS_LOADER_URL_REPLACEMENT_93___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_93___),___CSS_LOADER_URL_REPLACEMENT_94___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_94___),___CSS_LOADER_URL_REPLACEMENT_95___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_95___),___CSS_LOADER_URL_REPLACEMENT_96___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_96___),___CSS_LOADER_URL_REPLACEMENT_97___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_97___),___CSS_LOADER_URL_REPLACEMENT_98___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_98___),___CSS_LOADER_URL_REPLACEMENT_99___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_99___),___CSS_LOADER_URL_REPLACEMENT_100___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_100___),___CSS_LOADER_URL_REPLACEMENT_101___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_101___),___CSS_LOADER_URL_REPLACEMENT_102___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_102___),___CSS_LOADER_URL_REPLACEMENT_103___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_103___),___CSS_LOADER_URL_REPLACEMENT_104___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_104___),___CSS_LOADER_URL_REPLACEMENT_105___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_105___),___CSS_LOADER_URL_REPLACEMENT_106___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_106___),___CSS_LOADER_URL_REPLACEMENT_107___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_107___),___CSS_LOADER_URL_REPLACEMENT_108___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_108___),___CSS_LOADER_URL_REPLACEMENT_109___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_109___),___CSS_LOADER_URL_REPLACEMENT_110___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_110___),___CSS_LOADER_URL_REPLACEMENT_111___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_111___),___CSS_LOADER_URL_REPLACEMENT_112___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_112___),___CSS_LOADER_URL_REPLACEMENT_113___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_113___),___CSS_LOADER_URL_REPLACEMENT_114___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_114___),___CSS_LOADER_URL_REPLACEMENT_115___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_115___),___CSS_LOADER_URL_REPLACEMENT_116___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_116___),___CSS_LOADER_URL_REPLACEMENT_117___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_117___),___CSS_LOADER_URL_REPLACEMENT_118___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_118___),___CSS_LOADER_URL_REPLACEMENT_119___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_119___),___CSS_LOADER_URL_REPLACEMENT_120___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_120___),___CSS_LOADER_URL_REPLACEMENT_121___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_121___),___CSS_LOADER_URL_REPLACEMENT_122___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_122___),___CSS_LOADER_URL_REPLACEMENT_123___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_123___),___CSS_LOADER_URL_REPLACEMENT_124___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_124___),___CSS_LOADER_URL_REPLACEMENT_125___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_125___),___CSS_LOADER_URL_REPLACEMENT_126___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_126___),___CSS_LOADER_URL_REPLACEMENT_127___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_127___),___CSS_LOADER_URL_REPLACEMENT_128___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_128___),___CSS_LOADER_URL_REPLACEMENT_129___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_129___),___CSS_LOADER_URL_REPLACEMENT_130___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_130___),___CSS_LOADER_URL_REPLACEMENT_131___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_131___),___CSS_LOADER_URL_REPLACEMENT_132___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_132___),___CSS_LOADER_URL_REPLACEMENT_133___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_133___),___CSS_LOADER_URL_REPLACEMENT_134___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_134___),___CSS_LOADER_URL_REPLACEMENT_135___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_135___),___CSS_LOADER_URL_REPLACEMENT_136___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_136___),___CSS_LOADER_URL_REPLACEMENT_137___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_137___),___CSS_LOADER_URL_REPLACEMENT_138___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_138___),___CSS_LOADER_URL_REPLACEMENT_139___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_139___),___CSS_LOADER_URL_REPLACEMENT_140___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_140___),___CSS_LOADER_URL_REPLACEMENT_141___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_141___),___CSS_LOADER_URL_REPLACEMENT_142___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_142___),___CSS_LOADER_URL_REPLACEMENT_143___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_143___),___CSS_LOADER_URL_REPLACEMENT_144___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_144___),___CSS_LOADER_URL_REPLACEMENT_145___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_145___),___CSS_LOADER_URL_REPLACEMENT_146___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_146___),___CSS_LOADER_URL_REPLACEMENT_147___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_147___),___CSS_LOADER_URL_REPLACEMENT_148___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_148___),___CSS_LOADER_URL_REPLACEMENT_149___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_149___),___CSS_LOADER_URL_REPLACEMENT_150___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_150___),___CSS_LOADER_URL_REPLACEMENT_151___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_151___),___CSS_LOADER_URL_REPLACEMENT_152___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_152___),___CSS_LOADER_URL_REPLACEMENT_153___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_153___),___CSS_LOADER_URL_REPLACEMENT_154___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_154___),___CSS_LOADER_URL_REPLACEMENT_155___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_155___),___CSS_LOADER_URL_REPLACEMENT_156___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_156___),___CSS_LOADER_URL_REPLACEMENT_157___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_157___),___CSS_LOADER_URL_REPLACEMENT_158___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_158___),___CSS_LOADER_URL_REPLACEMENT_159___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_159___),___CSS_LOADER_URL_REPLACEMENT_160___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_160___),___CSS_LOADER_URL_REPLACEMENT_161___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_161___),___CSS_LOADER_URL_REPLACEMENT_162___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_162___),___CSS_LOADER_URL_REPLACEMENT_163___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_163___),___CSS_LOADER_URL_REPLACEMENT_164___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_164___),___CSS_LOADER_URL_REPLACEMENT_165___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_165___),___CSS_LOADER_URL_REPLACEMENT_166___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_166___),___CSS_LOADER_URL_REPLACEMENT_167___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_167___),___CSS_LOADER_URL_REPLACEMENT_168___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_168___),___CSS_LOADER_URL_REPLACEMENT_169___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_169___),___CSS_LOADER_URL_REPLACEMENT_170___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_170___),___CSS_LOADER_URL_REPLACEMENT_171___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_171___),___CSS_LOADER_URL_REPLACEMENT_172___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_172___),___CSS_LOADER_URL_REPLACEMENT_173___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_173___),___CSS_LOADER_URL_REPLACEMENT_174___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_174___),___CSS_LOADER_URL_REPLACEMENT_175___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_175___),___CSS_LOADER_URL_REPLACEMENT_176___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_176___),___CSS_LOADER_URL_REPLACEMENT_177___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_177___),___CSS_LOADER_URL_REPLACEMENT_178___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_178___),___CSS_LOADER_URL_REPLACEMENT_179___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_179___),___CSS_LOADER_URL_REPLACEMENT_180___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_180___),___CSS_LOADER_URL_REPLACEMENT_181___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_181___),___CSS_LOADER_URL_REPLACEMENT_182___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_182___),___CSS_LOADER_URL_REPLACEMENT_183___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_183___),___CSS_LOADER_URL_REPLACEMENT_184___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_184___),___CSS_LOADER_URL_REPLACEMENT_185___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_185___),___CSS_LOADER_URL_REPLACEMENT_186___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_186___),___CSS_LOADER_URL_REPLACEMENT_187___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_187___),___CSS_LOADER_URL_REPLACEMENT_188___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_188___),___CSS_LOADER_URL_REPLACEMENT_189___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_189___),___CSS_LOADER_URL_REPLACEMENT_190___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_190___),___CSS_LOADER_URL_REPLACEMENT_191___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_191___),___CSS_LOADER_URL_REPLACEMENT_192___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_192___),___CSS_LOADER_URL_REPLACEMENT_193___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_193___),___CSS_LOADER_URL_REPLACEMENT_194___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_194___),___CSS_LOADER_URL_REPLACEMENT_195___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_195___),___CSS_LOADER_URL_REPLACEMENT_196___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_196___),___CSS_LOADER_URL_REPLACEMENT_197___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_197___),___CSS_LOADER_URL_REPLACEMENT_198___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_198___),___CSS_LOADER_URL_REPLACEMENT_199___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_199___),___CSS_LOADER_URL_REPLACEMENT_200___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_200___),___CSS_LOADER_URL_REPLACEMENT_201___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_201___),___CSS_LOADER_URL_REPLACEMENT_202___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_202___),___CSS_LOADER_URL_REPLACEMENT_203___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_203___),___CSS_LOADER_URL_REPLACEMENT_204___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_204___),___CSS_LOADER_URL_REPLACEMENT_205___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_205___),___CSS_LOADER_URL_REPLACEMENT_206___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_206___),___CSS_LOADER_URL_REPLACEMENT_207___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_207___),___CSS_LOADER_URL_REPLACEMENT_208___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_208___),___CSS_LOADER_URL_REPLACEMENT_209___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_209___),___CSS_LOADER_URL_REPLACEMENT_210___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_210___),___CSS_LOADER_URL_REPLACEMENT_211___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_211___),___CSS_LOADER_URL_REPLACEMENT_212___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_212___),___CSS_LOADER_URL_REPLACEMENT_213___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_213___),___CSS_LOADER_URL_REPLACEMENT_214___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_214___),___CSS_LOADER_URL_REPLACEMENT_215___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_215___),___CSS_LOADER_URL_REPLACEMENT_216___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_216___),___CSS_LOADER_URL_REPLACEMENT_217___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_217___),___CSS_LOADER_URL_REPLACEMENT_218___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_218___),___CSS_LOADER_URL_REPLACEMENT_219___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_219___),___CSS_LOADER_URL_REPLACEMENT_220___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_220___),___CSS_LOADER_URL_REPLACEMENT_221___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_221___),___CSS_LOADER_URL_REPLACEMENT_222___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_222___),___CSS_LOADER_URL_REPLACEMENT_223___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_223___),___CSS_LOADER_URL_REPLACEMENT_224___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_224___),___CSS_LOADER_URL_REPLACEMENT_225___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_225___),___CSS_LOADER_URL_REPLACEMENT_226___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_226___),___CSS_LOADER_URL_REPLACEMENT_227___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_227___),___CSS_LOADER_URL_REPLACEMENT_228___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_228___),___CSS_LOADER_URL_REPLACEMENT_229___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_229___),___CSS_LOADER_URL_REPLACEMENT_230___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_230___),___CSS_LOADER_URL_REPLACEMENT_231___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_231___);___CSS_LOADER_EXPORT___.push([module.id,`/*\n * React Fabric\n * @version : 1.0.0\n * @copyright : 2024\n * @author : Adarsh Pastakia\n */\n\n/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer colors, reset, comp, util, var;\n\n@layer reset{\n/*\n ! tailwindcss v3.4.4 | MIT License | https://tailwindcss.com\n *//*\n1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)\n2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)\n*/\n\n*,\n::before,\n::after {\n box-sizing: border-box; /* 1 */\n border-width: 0; /* 2 */\n border-style: solid; /* 2 */\n border-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 65%, color(from var(--tint) srgb r g b / 1)); /* 2 */\n}\n\n::before,\n::after {\n --tw-content: '';\n}\n\n/*\n1. Use a consistent sensible line-height in all browsers.\n2. Prevent adjustments of font size after orientation changes in iOS.\n3. Use a more readable tab size.\n4. Use the user's configured \`sans\` font-family by default.\n5. Use the user's configured \`sans\` font-feature-settings by default.\n6. Use the user's configured \`sans\` font-variation-settings by default.\n7. Disable tap highlights on iOS\n*/\n\nhtml,\n:host {\n line-height: 1.5; /* 1 */\n -webkit-text-size-adjust: 100%; /* 2 */\n -moz-tab-size: 4; /* 3 */\n -o-tab-size: 4;\n tab-size: 4; /* 3 */\n font-family: Avenir Next, Avenir, Noto Sans, Roboto, Helvetica Neue, Segoe UI, Arial, sans-serif, BlinkMacSystemFont, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji; /* 4 */\n font-feature-settings: normal; /* 5 */\n font-variation-settings: normal; /* 6 */\n -webkit-tap-highlight-color: transparent; /* 7 */\n}\n\n/*\n1. Remove the margin in all browsers.\n2. Inherit line-height from \`html\` so users can set them as a class directly on the \`html\` element.\n*/\n\nbody {\n margin: 0; /* 1 */\n line-height: inherit; /* 2 */\n}\n\n/*\n1. Add the correct height in Firefox.\n2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)\n3. Ensure horizontal rules are visible by default.\n*/\n\nhr {\n height: 0; /* 1 */\n color: inherit; /* 2 */\n border-top-width: 1px; /* 3 */\n}\n\n/*\nAdd the correct text decoration in Chrome, Edge, and Safari.\n*/\n\nabbr:where([title]) {\n -webkit-text-decoration: underline dotted;\n text-decoration: underline dotted;\n}\n\n/*\nRemove the default font size and weight for headings.\n*/\n\nh1,\nh2,\nh3,\nh4,\nh5,\nh6 {\n font-size: inherit;\n font-weight: inherit;\n}\n\n/*\nReset links to optimize for opt-in styling instead of opt-out.\n*/\n\na {\n color: inherit;\n text-decoration: inherit;\n}\n\n/*\nAdd the correct font weight in Edge and Safari.\n*/\n\nb,\nstrong {\n font-weight: bolder;\n}\n\n/*\n1. Use the user's configured \`mono\` font-family by default.\n2. Use the user's configured \`mono\` font-feature-settings by default.\n3. Use the user's configured \`mono\` font-variation-settings by default.\n4. Correct the odd \`em\` font sizing in all browsers.\n*/\n\ncode,\nkbd,\nsamp,\npre {\n font-family: Noto Sans Mono, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace; /* 1 */\n font-feature-settings: normal; /* 2 */\n font-variation-settings: normal; /* 3 */\n font-size: 1em; /* 4 */\n}\n\n/*\nAdd the correct font size in all browsers.\n*/\n\nsmall {\n font-size: 80%;\n}\n\n/*\nPrevent \`sub\` and \`sup\` elements from affecting the line height in all browsers.\n*/\n\nsub,\nsup {\n font-size: 75%;\n line-height: 0;\n position: relative;\n vertical-align: baseline;\n}\n\nsub {\n bottom: -0.25em;\n}\n\nsup {\n top: -0.5em;\n}\n\n/*\n1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)\n2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)\n3. Remove gaps between table borders by default.\n*/\n\ntable {\n text-indent: 0; /* 1 */\n border-color: inherit; /* 2 */\n border-collapse: collapse; /* 3 */\n}\n\n/*\n1. Change the font styles in all browsers.\n2. Remove the margin in Firefox and Safari.\n3. Remove default padding in all browsers.\n*/\n\nbutton,\ninput,\noptgroup,\nselect,\ntextarea {\n font-family: inherit; /* 1 */\n font-feature-settings: inherit; /* 1 */\n font-variation-settings: inherit; /* 1 */\n font-size: 100%; /* 1 */\n font-weight: inherit; /* 1 */\n line-height: inherit; /* 1 */\n letter-spacing: inherit; /* 1 */\n color: inherit; /* 1 */\n margin: 0; /* 2 */\n padding: 0; /* 3 */\n}\n\n/*\nRemove the inheritance of text transform in Edge and Firefox.\n*/\n\nbutton,\nselect {\n text-transform: none;\n}\n\n/*\n1. Correct the inability to style clickable types in iOS and Safari.\n2. Remove default button styles.\n*/\n\nbutton,\ninput:where([type='button']),\ninput:where([type='reset']),\ninput:where([type='submit']) {\n -webkit-appearance: button; /* 1 */\n background-color: transparent; /* 2 */\n background-image: none; /* 2 */\n}\n\n/*\nUse the modern Firefox focus style for all focusable elements.\n*/\n\n:-moz-focusring {\n outline: auto;\n}\n\n/*\nRemove the additional \`:invalid\` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)\n*/\n\n:-moz-ui-invalid {\n box-shadow: none;\n}\n\n/*\nAdd the correct vertical alignment in Chrome and Firefox.\n*/\n\nprogress {\n vertical-align: baseline;\n}\n\n/*\nCorrect the cursor style of increment and decrement buttons in Safari.\n*/\n\n::-webkit-inner-spin-button,\n::-webkit-outer-spin-button {\n height: auto;\n}\n\n/*\n1. Correct the odd appearance in Chrome and Safari.\n2. Correct the outline style in Safari.\n*/\n\n[type='search'] {\n -webkit-appearance: textfield; /* 1 */\n outline-offset: -2px; /* 2 */\n}\n\n/*\nRemove the inner padding in Chrome and Safari on macOS.\n*/\n\n::-webkit-search-decoration {\n -webkit-appearance: none;\n}\n\n/*\n1. Correct the inability to style clickable types in iOS and Safari.\n2. Change font properties to \`inherit\` in Safari.\n*/\n\n::-webkit-file-upload-button {\n -webkit-appearance: button; /* 1 */\n font: inherit; /* 2 */\n}\n\n/*\nAdd the correct display in Chrome and Safari.\n*/\n\nsummary {\n display: list-item;\n}\n\n/*\nRemoves the default spacing and border for appropriate elements.\n*/\n\nblockquote,\ndl,\ndd,\nh1,\nh2,\nh3,\nh4,\nh5,\nh6,\nhr,\nfigure,\np,\npre {\n margin: 0;\n}\n\nfieldset {\n margin: 0;\n padding: 0;\n}\n\nlegend {\n padding: 0;\n}\n\nol,\nul,\nmenu {\n list-style: none;\n margin: 0;\n padding: 0;\n}\n\n/*\nReset default styling for dialogs.\n*/\ndialog {\n padding: 0;\n}\n\n/*\nPrevent resizing textareas horizontally by default.\n*/\n\ntextarea {\n resize: vertical;\n}\n\n/*\n1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)\n2. Set the default placeholder color to the user's configured gray 400 color.\n*/\n\ninput::-moz-placeholder, textarea::-moz-placeholder {\n opacity: 1; /* 1 */\n color: #9ca3af; /* 2 */\n}\n\ninput::placeholder,\ntextarea::placeholder {\n opacity: 1; /* 1 */\n color: #9ca3af; /* 2 */\n}\n\n/*\nSet the default cursor for buttons.\n*/\n\nbutton,\n[role="button"] {\n cursor: pointer;\n}\n\n/*\nMake sure disabled buttons don't get the pointer cursor.\n*/\n:disabled {\n cursor: default;\n}\n\n/*\n1. Make replaced elements \`display: block\` by default. (https://github.com/mozdevs/cssremedy/issues/14)\n2. Add \`vertical-align: middle\` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)\n This can trigger a poorly considered lint error in some tools but is included by design.\n*/\n\nimg,\nsvg,\nvideo,\ncanvas,\naudio,\niframe,\nembed,\nobject {\n display: block; /* 1 */\n vertical-align: middle; /* 2 */\n}\n\n/*\nConstrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)\n*/\n\nimg,\nvideo {\n max-width: 100%;\n height: auto;\n}\n\n/* Make elements with the HTML hidden attribute stay hidden by default */\n[hidden] {\n display: none;\n}\n[type='text'],input:where(:not([type])),[type='email'],[type='url'],[type='password'],[type='number'],[type='date'],[type='datetime-local'],[type='month'],[type='search'],[type='tel'],[type='time'],[type='week'],[multiple],textarea,select{\n-webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\nbackground-color: #fff;\nborder-color: #6b7280;\nborder-width: 1px;\nborder-radius: 0px;\npadding-top: 0.5rem;\npadding-right: 0.75rem;\npadding-bottom: 0.5rem;\npadding-left: 0.75rem;\nfont-size: 1rem;\nline-height: 1.5rem;\n--tw-shadow: 0 0 #0000;\n}\n[type='text']:focus, input:where(:not([type])):focus, [type='email']:focus, [type='url']:focus, [type='password']:focus, [type='number']:focus, [type='date']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='week']:focus, [multiple]:focus, textarea:focus, select:focus{\noutline: 2px solid transparent;\noutline-offset: 2px;\n--tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);\n--tw-ring-offset-width: 0px;\n--tw-ring-offset-color: #fff;\n--tw-ring-color: #2563eb;\n--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);\n--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);\nbox-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);\nborder-color: #2563eb;\n}\ninput::-moz-placeholder, textarea::-moz-placeholder{\ncolor: #6b7280;\nopacity: 1;\n}\ninput::placeholder,textarea::placeholder{\ncolor: #6b7280;\nopacity: 1;\n}\n::-webkit-datetime-edit-fields-wrapper{\npadding: 0;\n}\n::-webkit-date-and-time-value{\nmin-height: 1.5em;\ntext-align: inherit;\n}\n::-webkit-datetime-edit{\ndisplay: inline-flex;\n}\n::-webkit-datetime-edit,::-webkit-datetime-edit-year-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute-field,::-webkit-datetime-edit-second-field,::-webkit-datetime-edit-millisecond-field,::-webkit-datetime-edit-meridiem-field{\npadding-top: 0;\npadding-bottom: 0;\n}\nselect{\nbackground-image: url(${___CSS_LOADER_URL_REPLACEMENT_0___});\nbackground-position: right 0.5rem center;\nbackground-repeat: no-repeat;\nbackground-size: 1.5em 1.5em;\npadding-right: 2.5rem;\n-webkit-print-color-adjust: exact;\n print-color-adjust: exact;\n}\n[multiple],[size]:where(select:not([size="1"])){\nbackground-image: initial;\nbackground-position: initial;\nbackground-repeat: unset;\nbackground-size: initial;\npadding-right: 0.75rem;\n-webkit-print-color-adjust: unset;\n print-color-adjust: unset;\n}\n[type='checkbox'],[type='radio']{\n-webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\npadding: 0;\n-webkit-print-color-adjust: exact;\n print-color-adjust: exact;\ndisplay: inline-block;\nvertical-align: middle;\nbackground-origin: border-box;\n-webkit-user-select: none;\n -moz-user-select: none;\n user-select: none;\nflex-shrink: 0;\nheight: 1rem;\nwidth: 1rem;\ncolor: #2563eb;\nbackground-color: #fff;\nborder-color: #6b7280;\nborder-width: 1px;\n--tw-shadow: 0 0 #0000;\n}\n[type='checkbox']{\nborder-radius: 0px;\n}\n[type='radio']{\nborder-radius: 100%;\n}\n[type='checkbox']:focus,[type='radio']:focus{\noutline: 2px solid transparent;\noutline-offset: 2px;\n--tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);\n--tw-ring-offset-width: 2px;\n--tw-ring-offset-color: #fff;\n--tw-ring-color: #2563eb;\n--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);\n--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);\nbox-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);\n}\n[type='checkbox']:checked,[type='radio']:checked{\nborder-color: transparent;\nbackground-color: currentColor;\nbackground-size: 100% 100%;\nbackground-position: center;\nbackground-repeat: no-repeat;\n}\n[type='checkbox']:checked{\nbackground-image: url(${___CSS_LOADER_URL_REPLACEMENT_1___});\n}\n@media (forced-colors: active) {\n\n[type='checkbox']:checked{\n-webkit-appearance: auto;\n -moz-appearance: auto;\n appearance: auto;\n}\n}\n[type='radio']:checked{\nbackground-image: url(${___CSS_LOADER_URL_REPLACEMENT_2___});\n}\n@media (forced-colors: active) {\n\n[type='radio']:checked{\n-webkit-appearance: auto;\n -moz-appearance: auto;\n appearance: auto;\n}\n}\n[type='checkbox']:checked:hover,[type='checkbox']:checked:focus,[type='radio']:checked:hover,[type='radio']:checked:focus{\nborder-color: transparent;\nbackground-color: currentColor;\n}\n[type='checkbox']:indeterminate{\nbackground-image: url(${___CSS_LOADER_URL_REPLACEMENT_3___});\nborder-color: transparent;\nbackground-color: currentColor;\nbackground-size: 100% 100%;\nbackground-position: center;\nbackground-repeat: no-repeat;\n}\n@media (forced-colors: active) {\n\n[type='checkbox']:indeterminate{\n-webkit-appearance: auto;\n -moz-appearance: auto;\n appearance: auto;\n}\n}\n[type='checkbox']:indeterminate:hover,[type='checkbox']:indeterminate:focus{\nborder-color: transparent;\nbackground-color: currentColor;\n}\n[type='file']{\nbackground: unset;\nborder-color: inherit;\nborder-width: 0;\nborder-radius: 0;\npadding: 0;\nfont-size: unset;\nline-height: inherit;\n}\n[type='file']:focus{\noutline: 1px solid ButtonText;\noutline: 1px auto -webkit-focus-ring-color;\n}\n*, ::before, ::after{\n--tw-border-spacing-x: 0;\n--tw-border-spacing-y: 0;\n--tw-translate-x: 0;\n--tw-translate-y: 0;\n--tw-rotate: 0;\n--tw-skew-x: 0;\n--tw-skew-y: 0;\n--tw-scale-x: 1;\n--tw-scale-y: 1;\n--tw-pan-x: ;\n--tw-pan-y: ;\n--tw-pinch-zoom: ;\n--tw-scroll-snap-strictness: proximity;\n--tw-gradient-from-position: ;\n--tw-gradient-via-position: ;\n--tw-gradient-to-position: ;\n--tw-ordinal: ;\n--tw-slashed-zero: ;\n--tw-numeric-figure: ;\n--tw-numeric-spacing: ;\n--tw-numeric-fraction: ;\n--tw-ring-inset: ;\n--tw-ring-offset-width: 0px;\n--tw-ring-offset-color: #fff;\n--tw-ring-color: rgb(59 130 246 / 0.5);\n--tw-ring-offset-shadow: 0 0 #0000;\n--tw-ring-shadow: 0 0 #0000;\n--tw-shadow: 0 0 #0000;\n--tw-shadow-colored: 0 0 #0000;\n--tw-blur: ;\n--tw-brightness: ;\n--tw-contrast: ;\n--tw-grayscale: ;\n--tw-hue-rotate: ;\n--tw-invert: ;\n--tw-saturate: ;\n--tw-sepia: ;\n--tw-drop-shadow: ;\n--tw-backdrop-blur: ;\n--tw-backdrop-brightness: ;\n--tw-backdrop-contrast: ;\n--tw-backdrop-grayscale: ;\n--tw-backdrop-hue-rotate: ;\n--tw-backdrop-invert: ;\n--tw-backdrop-opacity: ;\n--tw-backdrop-saturate: ;\n--tw-backdrop-sepia: ;\n--tw-contain-size: ;\n--tw-contain-layout: ;\n--tw-contain-paint: ;\n--tw-contain-style: ;\n}\n::backdrop{\n--tw-border-spacing-x: 0;\n--tw-border-spacing-y: 0;\n--tw-translate-x: 0;\n--tw-translate-y: 0;\n--tw-rotate: 0;\n--tw-skew-x: 0;\n--tw-skew-y: 0;\n--tw-scale-x: 1;\n--tw-scale-y: 1;\n--tw-pan-x: ;\n--tw-pan-y: ;\n--tw-pinch-zoom: ;\n--tw-scroll-snap-strictness: proximity;\n--tw-gradient-from-position: ;\n--tw-gradient-via-position: ;\n--tw-gradient-to-position: ;\n--tw-ordinal: ;\n--tw-slashed-zero: ;\n--tw-numeric-figure: ;\n--tw-numeric-spacing: ;\n--tw-numeric-fraction: ;\n--tw-ring-inset: ;\n--tw-ring-offset-width: 0px;\n--tw-ring-offset-color: #fff;\n--tw-ring-color: rgb(59 130 246 / 0.5);\n--tw-ring-offset-shadow: 0 0 #0000;\n--tw-ring-shadow: 0 0 #0000;\n--tw-shadow: 0 0 #0000;\n--tw-shadow-colored: 0 0 #0000;\n--tw-blur: ;\n--tw-brightness: ;\n--tw-contrast: ;\n--tw-grayscale: ;\n--tw-hue-rotate: ;\n--tw-invert: ;\n--tw-saturate: ;\n--tw-sepia: ;\n--tw-drop-shadow: ;\n--tw-backdrop-blur: ;\n--tw-backdrop-brightness: ;\n--tw-backdrop-contrast: ;\n--tw-backdrop-grayscale: ;\n--tw-backdrop-hue-rotate: ;\n--tw-backdrop-invert: ;\n--tw-backdrop-opacity: ;\n--tw-backdrop-saturate: ;\n--tw-backdrop-sepia: ;\n--tw-contain-size: ;\n--tw-contain-layout: ;\n--tw-contain-paint: ;\n--tw-contain-style: ;\n}\n}\n\n@layer comp{\n.container{\nwidth: 100%;\n}\n@media (min-width: 320px){\n\n.container{\nmax-width: 320px;\n}\n}\n@media (min-width: 640px){\n\n.container{\nmax-width: 640px;\n}\n}\n@media (min-width: 768px){\n\n.container{\nmax-width: 768px;\n}\n}\n@media (min-width: 1024px){\n\n.container{\nmax-width: 1024px;\n}\n}\n@media (min-width: 1280px){\n\n.container{\nmax-width: 1280px;\n}\n}\n@media (min-width: 1536px){\n\n.container{\nmax-width: 1536px;\n}\n}\n}\n\n@layer util{\n.pointer-events-none{\npointer-events: none;\n}\n.pointer-events-auto{\npointer-events: auto;\n}\n.visible{\nvisibility: visible;\n}\n.invisible{\nvisibility: hidden;\n}\n.collapse{\nvisibility: collapse;\n}\n.static{\nposition: static;\n}\n.fixed{\nposition: fixed;\n}\n.absolute{\nposition: absolute;\n}\n.relative{\nposition: relative;\n}\n.sticky{\nposition: sticky;\n}\n.inset-0{\ninset: 0px;\n}\n.inset-4{\ninset: 1rem;\n}\n.inset-x-0{\nleft: 0px;\nright: 0px;\n}\n.inset-x-px{\nleft: 1px;\nright: 1px;\n}\n.inset-y-0{\ntop: 0px;\nbottom: 0px;\n}\n.-bottom-1{\nbottom: -0.25rem;\n}\n.-bottom-2{\nbottom: -0.5rem;\n}\n.-left-\\[100vw\\]{\nleft: -100vw;\n}\n.-top-5{\ntop: -1.25rem;\n}\n.-top-px{\ntop: -1px;\n}\n.bottom-0{\nbottom: 0px;\n}\n.bottom-2{\nbottom: 0.5rem;\n}\n.bottom-6{\nbottom: 1.5rem;\n}\n.bottom-px{\nbottom: 1px;\n}\n.end-0{\ninset-inline-end: 0px;\n}\n.end-1{\ninset-inline-end: 0.25rem;\n}\n.end-2{\ninset-inline-end: 0.5rem;\n}\n.end-6{\ninset-inline-end: 1.5rem;\n}\n.left-0{\nleft: 0px;\n}\n.left-1\\/2{\nleft: 50%;\n}\n.left-4{\nleft: 1rem;\n}\n.left-\\[2cm\\]{\nleft: 2cm;\n}\n.start-0{\ninset-inline-start: 0px;\n}\n.start-1{\ninset-inline-start: 0.25rem;\n}\n.top-0{\ntop: 0px;\n}\n.top-0\\.5{\ntop: 0.125rem;\n}\n.top-1\\/2{\ntop: 50%;\n}\n.top-2{\ntop: 0.5rem;\n}\n.top-\\[1cm\\]{\ntop: 1cm;\n}\n.\\!z-\\[99\\]{\nz-index: 99 !important;\n}\n.z-0{\nz-index: 0;\n}\n.z-10{\nz-index: 10;\n}\n.z-20{\nz-index: 20;\n}\n.z-50{\nz-index: 50;\n}\n.z-\\[5\\]{\nz-index: 5;\n}\n.z-\\[99\\]{\nz-index: 99;\n}\n.z-\\[var\\(--z-popover\\)\\]{\nz-index: var(--z-popover);\n}\n.order-2{\norder: 2;\n}\n.order-3{\norder: 3;\n}\n.order-9{\norder: 9;\n}\n.col-span-2{\ngrid-column: span 2 / span 2;\n}\n.m-0{\nmargin: 0px;\n}\n.m-1{\nmargin: 0.25rem;\n}\n.m-2{\nmargin: 0.5rem;\n}\n.m-20{\nmargin: 5rem;\n}\n.m-\\[0\\.25em\\]{\nmargin: 0.25em;\n}\n.m-\\[6px\\]{\nmargin: 6px;\n}\n.m-auto{\nmargin: auto;\n}\n.m-px{\nmargin: 1px;\n}\n.mx-1{\nmargin-left: 0.25rem;\nmargin-right: 0.25rem;\n}\n.mx-2{\nmargin-left: 0.5rem;\nmargin-right: 0.5rem;\n}\n.mx-4{\nmargin-left: 1rem;\nmargin-right: 1rem;\n}\n.mx-auto{\nmargin-left: auto;\nmargin-right: auto;\n}\n.mx-px{\nmargin-left: 1px;\nmargin-right: 1px;\n}\n.my-0{\nmargin-top: 0px;\nmargin-bottom: 0px;\n}\n.my-0\\.5{\nmargin-top: 0.125rem;\nmargin-bottom: 0.125rem;\n}\n.my-1{\nmargin-top: 0.25rem;\nmargin-bottom: 0.25rem;\n}\n.my-2{\nmargin-top: 0.5rem;\nmargin-bottom: 0.5rem;\n}\n.my-4{\nmargin-top: 1rem;\nmargin-bottom: 1rem;\n}\n.my-px{\nmargin-top: 1px;\nmargin-bottom: 1px;\n}\n.-ml-0{\nmargin-left: -0px;\n}\n.-ml-0\\.5{\nmargin-left: -0.125rem;\n}\n.-ml-1{\nmargin-left: -0.25rem;\n}\n.-ml-1\\.5{\nmargin-left: -0.375rem;\n}\n.-ms-3{\nmargin-inline-start: -0.75rem;\n}\n.-ms-px{\nmargin-inline-start: -1px;\n}\n.mb-1{\nmargin-bottom: 0.25rem;\n}\n.mb-2{\nmargin-bottom: 0.5rem;\n}\n.mb-4{\nmargin-bottom: 1rem;\n}\n.mb-6{\nmargin-bottom: 1.5rem;\n}\n.me-1{\nmargin-inline-end: 0.25rem;\n}\n.me-10{\nmargin-inline-end: 2.5rem;\n}\n.ms-1{\nmargin-inline-start: 0.25rem;\n}\n.ms-2{\nmargin-inline-start: 0.5rem;\n}\n.ms-3{\nmargin-inline-start: 0.75rem;\n}\n.mt-1{\nmargin-top: 0.25rem;\n}\n.mt-4{\nmargin-top: 1rem;\n}\n.mt-6{\nmargin-top: 1.5rem;\n}\n.mt-8{\nmargin-top: 2rem;\n}\n.box-content{\nbox-sizing: content-box;\n}\n.line-clamp-1{\noverflow: hidden;\ndisplay: -webkit-box;\n-webkit-box-orient: vertical;\n-webkit-line-clamp: 1;\n}\n.line-clamp-4{\noverflow: hidden;\ndisplay: -webkit-box;\n-webkit-box-orient: vertical;\n-webkit-line-clamp: 4;\n}\n.block{\ndisplay: block;\n}\n.inline-block{\ndisplay: inline-block;\n}\n.inline{\ndisplay: inline;\n}\n.\\!flex{\ndisplay: flex !important;\n}\n.flex{\ndisplay: flex;\n}\n.inline-flex{\ndisplay: inline-flex;\n}\n.table{\ndisplay: table;\n}\n.grid{\ndisplay: grid;\n}\n.inline-grid{\ndisplay: inline-grid;\n}\n.contents{\ndisplay: contents;\n}\n.hidden{\ndisplay: none;\n}\n.aspect-square{\naspect-ratio: 1 / 1;\n}\n.aspect-video{\naspect-ratio: 16 / 9;\n}\n.size-6{\nwidth: 1.5rem;\nheight: 1.5rem;\n}\n.size-8{\nwidth: 2rem;\nheight: 2rem;\n}\n.size-full{\nwidth: 100%;\nheight: 100%;\n}\n.h-0{\nheight: 0px;\n}\n.h-0\\.5{\nheight: 0.125rem;\n}\n.h-1{\nheight: 0.25rem;\n}\n.h-12{\nheight: 3rem;\n}\n.h-16{\nheight: 4rem;\n}\n.h-2{\nheight: 0.5rem;\n}\n.h-24{\nheight: 6rem;\n}\n.h-28{\nheight: 7rem;\n}\n.h-3{\nheight: 0.75rem;\n}\n.h-4{\nheight: 1rem;\n}\n.h-48{\nheight: 12rem;\n}\n.h-6{\nheight: 1.5rem;\n}\n.h-7{\nheight: 1.75rem;\n}\n.h-8{\nheight: 2rem;\n}\n.h-96{\nheight: 24rem;\n}\n.h-\\[1\\.5em\\]{\nheight: 1.5em;\n}\n.h-\\[192px\\]{\nheight: 192px;\n}\n.h-\\[200px\\]{\nheight: 200px;\n}\n.h-\\[24rem\\]{\nheight: 24rem;\n}\n.h-\\[3px\\]{\nheight: 3px;\n}\n.h-\\[4em\\]{\nheight: 4em;\n}\n.h-\\[6rem\\]{\nheight: 6rem;\n}\n.h-auto{\nheight: auto;\n}\n.h-full{\nheight: 100%;\n}\n.h-screen{\nheight: 100vh;\n}\n.max-h-48{\nmax-height: 12rem;\n}\n.max-h-96{\nmax-height: 24rem;\n}\n.max-h-\\[24rem\\]{\nmax-height: 24rem;\n}\n.max-h-\\[40vh\\]{\nmax-height: 40vh;\n}\n.max-h-\\[70vh\\]{\nmax-height: 70vh;\n}\n.max-h-full{\nmax-height: 100%;\n}\n.min-h-2{\nmin-height: 0.5rem;\n}\n.min-h-20{\nmin-height: 5rem;\n}\n.min-h-5{\nmin-height: 1.25rem;\n}\n.min-h-6{\nmin-height: 1.5rem;\n}\n.min-h-8{\nmin-height: 2rem;\n}\n.min-h-80{\nmin-height: 20rem;\n}\n.min-h-\\[1\\.5em\\]{\nmin-height: 1.5em;\n}\n.min-h-\\[600px\\]{\nmin-height: 600px;\n}\n.min-h-full{\nmin-height: 100%;\n}\n.min-h-screen{\nmin-height: 100vh;\n}\n.w-0{\nwidth: 0px;\n}\n.w-0\\.5{\nwidth: 0.125rem;\n}\n.w-1{\nwidth: 0.25rem;\n}\n.w-12{\nwidth: 3rem;\n}\n.w-2{\nwidth: 0.5rem;\n}\n.w-24{\nwidth: 6rem;\n}\n.w-3{\nwidth: 0.75rem;\n}\n.w-32{\nwidth: 8rem;\n}\n.w-4{\nwidth: 1rem;\n}\n.w-6{\nwidth: 1.5rem;\n}\n.w-8{\nwidth: 2rem;\n}\n.w-96{\nwidth: 24rem;\n}\n.w-\\[12rem\\]{\nwidth: 12rem;\n}\n.w-\\[20rem\\]{\nwidth: 20rem;\n}\n.w-\\[32rem\\]{\nwidth: 32rem;\n}\n.w-\\[36rem\\]{\nwidth: 36rem;\n}\n.w-\\[40rem\\]{\nwidth: 40rem;\n}\n.w-\\[420px\\]{\nwidth: 420px;\n}\n.w-\\[480px\\]{\nwidth: 480px;\n}\n.w-\\[4em\\]{\nwidth: 4em;\n}\n.w-\\[5px\\]{\nwidth: 5px;\n}\n.w-\\[60vw\\]{\nwidth: 60vw;\n}\n.w-\\[620px\\]{\nwidth: 620px;\n}\n.w-\\[80vw\\]{\nwidth: 80vw;\n}\n.w-full{\nwidth: 100%;\n}\n.w-screen{\nwidth: 100vw;\n}\n.min-w-10{\nmin-width: 2.5rem;\n}\n.min-w-16{\nmin-width: 4rem;\n}\n.min-w-2{\nmin-width: 0.5rem;\n}\n.min-w-24{\nmin-width: 6rem;\n}\n.min-w-72{\nmin-width: 18rem;\n}\n.min-w-\\[1\\.5em\\]{\nmin-width: 1.5em;\n}\n.min-w-\\[24rem\\]{\nmin-width: 24rem;\n}\n.min-w-\\[3\\.5em\\]{\nmin-width: 3.5em;\n}\n.min-w-\\[420px\\]{\nmin-width: 420px;\n}\n.min-w-full{\nmin-width: 100%;\n}\n.\\!max-w-64{\nmax-width: 16rem !important;\n}\n.max-w-2xl{\nmax-width: 42rem;\n}\n.max-w-36{\nmax-width: 9rem;\n}\n.max-w-60{\nmax-width: 15rem;\n}\n.max-w-72{\nmax-width: 18rem;\n}\n.max-w-96{\nmax-width: 24rem;\n}\n.max-w-\\[32rem\\]{\nmax-width: 32rem;\n}\n.max-w-\\[36rem\\]{\nmax-width: 36rem;\n}\n.max-w-\\[48rem\\]{\nmax-width: 48rem;\n}\n.max-w-\\[50vw\\]{\nmax-width: 50vw;\n}\n.max-w-\\[6rem\\]{\nmax-width: 6rem;\n}\n.max-w-full{\nmax-width: 100%;\n}\n.max-w-lg{\nmax-width: 32rem;\n}\n.max-w-md{\nmax-width: 28rem;\n}\n.max-w-screen{\nmax-width: 100vw;\n}\n.max-w-sm{\nmax-width: 24rem;\n}\n.max-w-xl{\nmax-width: 36rem;\n}\n.flex-1{\nflex: 1 1 0%;\n}\n.flex-auto{\nflex: 1 1 auto;\n}\n.flex-content{\nflex: 0 0 auto;\n}\n.flex-full{\nflex: 1 1 100%;\n}\n.flex-initial{\nflex: 0 1 auto;\n}\n.basis-16{\nflex-basis: 4rem;\n}\n.basis-20{\nflex-basis: 5rem;\n}\n.basis-28{\nflex-basis: 7rem;\n}\n.basis-\\[30\\%\\]{\nflex-basis: 30%;\n}\n.basis-\\[60\\%\\]{\nflex-basis: 60%;\n}\n.table-fixed{\ntable-layout: fixed;\n}\n.border-separate{\nborder-collapse: separate;\n}\n.border-spacing-1{\n--tw-border-spacing-x: 0.25rem;\n--tw-border-spacing-y: 0.25rem;\nborder-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);\n}\n.origin-center{\ntransform-origin: center;\n}\n.origin-left{\ntransform-origin: left;\n}\n.-translate-x-1\\/2{\n--tw-translate-x: -50%;\ntransform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));\n}\n.-translate-y-1\\/2{\n--tw-translate-y: -50%;\ntransform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));\n}\n.translate-x-0{\n--tw-translate-x: 0px;\ntransform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));\n}\n.translate-x-\\[100\\%\\]{\n--tw-translate-x: 100%;\ntransform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));\n}\n.translate-y-2{\n--tw-translate-y: 0.5rem;\ntransform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));\n}\n.-rotate-90{\n--tw-rotate: -90deg;\ntransform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));\n}\n.scale-90{\n--tw-scale-x: .9;\n--tw-scale-y: .9;\ntransform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));\n}\n.-scale-y-100{\n--tw-scale-y: -1;\ntransform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));\n}\n.transform{\ntransform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));\n}\n@keyframes bounce{\n\n0%, 100%{\ntransform: translateY(-25%);\nanimation-timing-function: cubic-bezier(0.8,0,1,1);\n}\n\n50%{\ntransform: none;\nanimation-timing-function: cubic-bezier(0,0,0.2,1);\n}\n}\n.animate-bounce{\nanimation: bounce 1s infinite;\n}\n@keyframes bgprogress{\n\n0%{\nbackground-position-x: 0;\n}\n\n100%{\nbackground-position-x: 1rem;\n}\n}\n.animate-progress{\nanimation: bgprogress 750ms linear infinite;\n}\n@keyframes cardpulse{\n\n50%{\nopacity: 0.5;\n}\n}\n.animate-pulse{\nanimation: cardpulse 2s cubic-bezier(.4,0,.6,1) infinite;\n}\n@keyframes spin{\n\nto{\ntransform: rotate(360deg);\n}\n}\n.animate-spin{\nanimation: spin 1s linear infinite;\n}\n.cursor-col-resize{\ncursor: col-resize;\n}\n.cursor-crosshair{\ncursor: crosshair;\n}\n.cursor-default{\ncursor: default;\n}\n.cursor-ew-resize{\ncursor: ew-resize;\n}\n.cursor-grab{\ncursor: grab;\n}\n.cursor-grabbing{\ncursor: grabbing;\n}\n.cursor-not-allowed{\ncursor: not-allowed;\n}\n.cursor-ns-resize{\ncursor: ns-resize;\n}\n.cursor-pointer{\ncursor: pointer;\n}\n.cursor-wait{\ncursor: wait;\n}\n.select-none{\n-webkit-user-select: none;\n -moz-user-select: none;\n user-select: none;\n}\n.resize-none{\nresize: none;\n}\n.resize{\nresize: both;\n}\n.snap-y{\nscroll-snap-type: y var(--tw-scroll-snap-strictness);\n}\n.snap-mandatory{\n--tw-scroll-snap-strictness: mandatory;\n}\n.snap-center{\nscroll-snap-align: center;\n}\n.appearance-none{\n-webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n}\n.grid-cols-2{\ngrid-template-columns: repeat(2, minmax(0, 1fr));\n}\n.grid-cols-3{\ngrid-template-columns: repeat(3, minmax(0, 1fr));\n}\n.grid-cols-4{\ngrid-template-columns: repeat(4, minmax(0, 1fr));\n}\n.grid-cols-8{\ngrid-template-columns: repeat(8, minmax(0, 1fr));\n}\n.grid-rows-1{\ngrid-template-rows: repeat(1, minmax(0, 1fr));\n}\n.flex-row{\nflex-direction: row;\n}\n.flex-row-reverse{\nflex-direction: row-reverse;\n}\n.flex-col{\nflex-direction: column;\n}\n.flex-col-reverse{\nflex-direction: column-reverse;\n}\n.flex-wrap{\nflex-wrap: wrap;\n}\n.flex-nowrap{\nflex-wrap: nowrap;\n}\n.place-content-center{\nplace-content: center;\n}\n.place-content-start{\nplace-content: start;\n}\n.place-items-center{\nplace-items: center;\n}\n.items-start{\nalign-items: flex-start;\n}\n.items-end{\nalign-items: flex-end;\n}\n.items-center{\nalign-items: center;\n}\n.items-stretch{\nalign-items: stretch;\n}\n.justify-start{\njustify-content: flex-start;\n}\n.justify-end{\njustify-content: flex-end;\n}\n.justify-center{\njustify-content: center;\n}\n.justify-between{\njustify-content: space-between;\n}\n.gap-\\[2px\\]{\ngap: 2px;\n}\n.divide-y > :not([hidden]) ~ :not([hidden]){\n--tw-divide-y-reverse: 0;\nborder-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));\nborder-bottom-width: calc(1px * var(--tw-divide-y-reverse));\n}\n.self-start{\nalign-self: flex-start;\n}\n.self-end{\nalign-self: flex-end;\n}\n.self-center{\nalign-self: center;\n}\n.self-stretch{\nalign-self: stretch;\n}\n.overflow-auto{\noverflow: auto;\n}\n.overflow-hidden{\noverflow: hidden;\n}\n.overflow-clip{\noverflow: clip;\n}\n.overflow-visible{\noverflow: visible;\n}\n.overflow-x-auto{\noverflow-x: auto;\n}\n.overflow-y-auto{\noverflow-y: auto;\n}\n.overflow-x-hidden{\noverflow-x: hidden;\n}\n.overflow-x-clip{\noverflow-x: clip;\n}\n.truncate{\noverflow: hidden;\ntext-overflow: ellipsis;\nwhite-space: nowrap;\n}\n.whitespace-nowrap{\nwhite-space: nowrap;\n}\n.whitespace-pre-wrap{\nwhite-space: pre-wrap;\n}\n.whitespace-break-spaces{\nwhite-space: break-spaces;\n}\n.text-wrap{\ntext-wrap: wrap;\n}\n.break-words{\noverflow-wrap: break-word;\n}\n.\\!rounded{\nborder-radius: var(--rounding) !important;\n}\n.\\!rounded-none{\nborder-radius: 0px !important;\n}\n.rounded{\nborder-radius: var(--rounding);\n}\n.rounded-capped{\nborder-radius: var(--rounding-cap);\n}\n.rounded-full{\nborder-radius: 9999px;\n}\n.rounded-none{\nborder-radius: 0px;\n}\n.rounded-sm{\nborder-radius: 0.125rem;\n}\n.rounded-b-none{\nborder-bottom-right-radius: 0px;\nborder-bottom-left-radius: 0px;\n}\n.rounded-e-none{\nborder-start-end-radius: 0px;\nborder-end-end-radius: 0px;\n}\n.rounded-s-none{\nborder-start-start-radius: 0px;\nborder-end-start-radius: 0px;\n}\n.rounded-t{\nborder-top-left-radius: var(--rounding);\nborder-top-right-radius: var(--rounding);\n}\n.rounded-t-full{\nborder-top-left-radius: 9999px;\nborder-top-right-radius: 9999px;\n}\n.rounded-t-none{\nborder-top-left-radius: 0px;\nborder-top-right-radius: 0px;\n}\n.border{\nborder-width: 1px;\n}\n.border-0{\nborder-width: 0px;\n}\n.border-2{\nborder-width: 2px;\n}\n.border-4{\nborder-width: 4px;\n}\n.border-b{\nborder-bottom-width: 1px;\n}\n.border-b-4{\nborder-bottom-width: 4px;\n}\n.border-e{\nborder-inline-end-width: 1px;\n}\n.border-e-2{\nborder-inline-end-width: 2px;\n}\n.border-e-4{\nborder-inline-end-width: 4px;\n}\n.border-s{\nborder-inline-start-width: 1px;\n}\n.border-s-4{\nborder-inline-start-width: 4px;\n}\n.border-t{\nborder-top-width: 1px;\n}\n.border-t-4{\nborder-top-width: 4px;\n}\n.border-dashed{\nborder-style: dashed;\n}\n.border-dotted{\nborder-style: dotted;\n}\n.border-none{\nborder-style: none;\n}\n.border-accent{\nborder-color: var(--accent);\n}\n.border-accent-100{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / var(--tw-border-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-accent-100\\/0{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-accent-100\\/10{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-accent-100\\/100{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-accent-100\\/15{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-accent-100\\/20{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-accent-100\\/25{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-accent-100\\/30{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-accent-100\\/35{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-accent-100\\/40{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-accent-100\\/45{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-accent-100\\/5{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-accent-100\\/50{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-accent-100\\/55{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-accent-100\\/60{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-accent-100\\/65{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-accent-100\\/70{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-accent-100\\/75{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-accent-100\\/80{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-accent-100\\/85{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-accent-100\\/90{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-accent-100\\/95{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-accent-200{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / var(--tw-border-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-accent-200\\/0{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-accent-200\\/10{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-accent-200\\/100{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-accent-200\\/15{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-accent-200\\/20{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-accent-200\\/25{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-accent-200\\/30{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-accent-200\\/35{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-accent-200\\/40{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-accent-200\\/45{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-accent-200\\/5{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-accent-200\\/50{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-accent-200\\/55{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-accent-200\\/60{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-accent-200\\/65{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-accent-200\\/70{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-accent-200\\/75{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-accent-200\\/80{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-accent-200\\/85{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-accent-200\\/90{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-accent-200\\/95{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-accent-300{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / var(--tw-border-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-accent-300\\/0{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-accent-300\\/10{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-accent-300\\/100{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-accent-300\\/15{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-accent-300\\/20{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-accent-300\\/25{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-accent-300\\/30{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-accent-300\\/35{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-accent-300\\/40{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-accent-300\\/45{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-accent-300\\/5{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-accent-300\\/50{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-accent-300\\/55{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-accent-300\\/60{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-accent-300\\/65{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-accent-300\\/70{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-accent-300\\/75{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-accent-300\\/80{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-accent-300\\/85{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-accent-300\\/90{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-accent-300\\/95{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-accent-400{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / var(--tw-border-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-accent-400\\/0{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-accent-400\\/10{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-accent-400\\/100{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-accent-400\\/15{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-accent-400\\/20{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-accent-400\\/25{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-accent-400\\/30{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-accent-400\\/35{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-accent-400\\/40{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-accent-400\\/45{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-accent-400\\/5{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-accent-400\\/50{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-accent-400\\/55{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-accent-400\\/60{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-accent-400\\/65{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-accent-400\\/70{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-accent-400\\/75{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-accent-400\\/80{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-accent-400\\/85{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-accent-400\\/90{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-accent-400\\/95{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-accent-50{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / var(--tw-border-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-accent-50\\/0{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-accent-50\\/10{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-accent-50\\/100{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-accent-50\\/15{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-accent-50\\/20{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-accent-50\\/25{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-accent-50\\/30{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-accent-50\\/35{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-accent-50\\/40{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-accent-50\\/45{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-accent-50\\/5{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-accent-50\\/50{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-accent-50\\/55{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-accent-50\\/60{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-accent-50\\/65{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-accent-50\\/70{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-accent-50\\/75{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-accent-50\\/80{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-accent-50\\/85{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-accent-50\\/90{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-accent-50\\/95{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-accent-500{\n--tw-border-opacity: 1;\nborder-color: color(from var(--accent) srgb r g b / var(--tw-border-opacity));\n}\n.border-accent-500\\/0{\nborder-color: color(from var(--accent) srgb r g b / 0);\n}\n.border-accent-500\\/10{\nborder-color: color(from var(--accent) srgb r g b / 0.1);\n}\n.border-accent-500\\/100{\nborder-color: color(from var(--accent) srgb r g b / 1);\n}\n.border-accent-500\\/15{\nborder-color: color(from var(--accent) srgb r g b / 0.15);\n}\n.border-accent-500\\/20{\nborder-color: color(from var(--accent) srgb r g b / 0.2);\n}\n.border-accent-500\\/25{\nborder-color: color(from var(--accent) srgb r g b / 0.25);\n}\n.border-accent-500\\/30{\nborder-color: color(from var(--accent) srgb r g b / 0.3);\n}\n.border-accent-500\\/35{\nborder-color: color(from var(--accent) srgb r g b / 0.35);\n}\n.border-accent-500\\/40{\nborder-color: color(from var(--accent) srgb r g b / 0.4);\n}\n.border-accent-500\\/45{\nborder-color: color(from var(--accent) srgb r g b / 0.45);\n}\n.border-accent-500\\/5{\nborder-color: color(from var(--accent) srgb r g b / 0.05);\n}\n.border-accent-500\\/50{\nborder-color: color(from var(--accent) srgb r g b / 0.5);\n}\n.border-accent-500\\/55{\nborder-color: color(from var(--accent) srgb r g b / 0.55);\n}\n.border-accent-500\\/60{\nborder-color: color(from var(--accent) srgb r g b / 0.6);\n}\n.border-accent-500\\/65{\nborder-color: color(from var(--accent) srgb r g b / 0.65);\n}\n.border-accent-500\\/70{\nborder-color: color(from var(--accent) srgb r g b / 0.7);\n}\n.border-accent-500\\/75{\nborder-color: color(from var(--accent) srgb r g b / 0.75);\n}\n.border-accent-500\\/80{\nborder-color: color(from var(--accent) srgb r g b / 0.8);\n}\n.border-accent-500\\/85{\nborder-color: color(from var(--accent) srgb r g b / 0.85);\n}\n.border-accent-500\\/90{\nborder-color: color(from var(--accent) srgb r g b / 0.9);\n}\n.border-accent-500\\/95{\nborder-color: color(from var(--accent) srgb r g b / 0.95);\n}\n.border-accent-600{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / var(--tw-border-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-accent-600\\/0{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-accent-600\\/10{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-accent-600\\/100{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-accent-600\\/15{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-accent-600\\/20{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-accent-600\\/25{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-accent-600\\/30{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-accent-600\\/35{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-accent-600\\/40{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-accent-600\\/45{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-accent-600\\/5{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-accent-600\\/50{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-accent-600\\/55{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-accent-600\\/60{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-accent-600\\/65{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-accent-600\\/70{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-accent-600\\/75{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-accent-600\\/80{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-accent-600\\/85{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-accent-600\\/90{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-accent-600\\/95{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-accent-700{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / var(--tw-border-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-accent-700\\/0{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-accent-700\\/10{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-accent-700\\/100{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-accent-700\\/15{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-accent-700\\/20{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-accent-700\\/25{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-accent-700\\/30{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-accent-700\\/35{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-accent-700\\/40{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-accent-700\\/45{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-accent-700\\/5{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-accent-700\\/50{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-accent-700\\/55{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-accent-700\\/60{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-accent-700\\/65{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-accent-700\\/70{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-accent-700\\/75{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-accent-700\\/80{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-accent-700\\/85{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-accent-700\\/90{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-accent-700\\/95{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-accent-800{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / var(--tw-border-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-accent-800\\/0{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-accent-800\\/10{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-accent-800\\/100{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-accent-800\\/15{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-accent-800\\/20{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-accent-800\\/25{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-accent-800\\/30{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-accent-800\\/35{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-accent-800\\/40{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-accent-800\\/45{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-accent-800\\/5{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-accent-800\\/50{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-accent-800\\/55{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-accent-800\\/60{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-accent-800\\/65{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-accent-800\\/70{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-accent-800\\/75{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-accent-800\\/80{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-accent-800\\/85{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-accent-800\\/90{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-accent-800\\/95{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-accent-900{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / var(--tw-border-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-accent-900\\/0{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-accent-900\\/10{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-accent-900\\/100{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-accent-900\\/15{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-accent-900\\/20{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-accent-900\\/25{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-accent-900\\/30{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-accent-900\\/35{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-accent-900\\/40{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-accent-900\\/45{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-accent-900\\/5{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-accent-900\\/50{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-accent-900\\/55{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-accent-900\\/60{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-accent-900\\/65{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-accent-900\\/70{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-accent-900\\/75{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-accent-900\\/80{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-accent-900\\/85{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-accent-900\\/90{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-accent-900\\/95{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-accent-950{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / var(--tw-border-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-accent-950\\/0{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-accent-950\\/10{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-accent-950\\/100{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-accent-950\\/15{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-accent-950\\/20{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-accent-950\\/25{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-accent-950\\/30{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-accent-950\\/35{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-accent-950\\/40{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-accent-950\\/45{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-accent-950\\/5{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-accent-950\\/50{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-accent-950\\/55{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-accent-950\\/60{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-accent-950\\/65{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-accent-950\\/70{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-accent-950\\/75{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-accent-950\\/80{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-accent-950\\/85{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-accent-950\\/90{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-accent-950\\/95{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-avacado{\n--tw-border-opacity: 1;\nborder-color: rgb(70 167 88 / var(--tw-border-opacity));\n}\n.border-avacado-100{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / var(--tw-border-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-avacado-100\\/0{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-avacado-100\\/10{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-avacado-100\\/100{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-avacado-100\\/15{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-avacado-100\\/20{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-avacado-100\\/25{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-avacado-100\\/30{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-avacado-100\\/35{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-avacado-100\\/40{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-avacado-100\\/45{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-avacado-100\\/5{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-avacado-100\\/50{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-avacado-100\\/55{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-avacado-100\\/60{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-avacado-100\\/65{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-avacado-100\\/70{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-avacado-100\\/75{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-avacado-100\\/80{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-avacado-100\\/85{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-avacado-100\\/90{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-avacado-100\\/95{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-avacado-200{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / var(--tw-border-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-avacado-200\\/0{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-avacado-200\\/10{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-avacado-200\\/100{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-avacado-200\\/15{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-avacado-200\\/20{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-avacado-200\\/25{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-avacado-200\\/30{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-avacado-200\\/35{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-avacado-200\\/40{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-avacado-200\\/45{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-avacado-200\\/5{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-avacado-200\\/50{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-avacado-200\\/55{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-avacado-200\\/60{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-avacado-200\\/65{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-avacado-200\\/70{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-avacado-200\\/75{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-avacado-200\\/80{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-avacado-200\\/85{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-avacado-200\\/90{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-avacado-200\\/95{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-avacado-300{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / var(--tw-border-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-avacado-300\\/0{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-avacado-300\\/10{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-avacado-300\\/100{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-avacado-300\\/15{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-avacado-300\\/20{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-avacado-300\\/25{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-avacado-300\\/30{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-avacado-300\\/35{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-avacado-300\\/40{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-avacado-300\\/45{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-avacado-300\\/5{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-avacado-300\\/50{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-avacado-300\\/55{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-avacado-300\\/60{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-avacado-300\\/65{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-avacado-300\\/70{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-avacado-300\\/75{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-avacado-300\\/80{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-avacado-300\\/85{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-avacado-300\\/90{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-avacado-300\\/95{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-avacado-400{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / var(--tw-border-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-avacado-400\\/0{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-avacado-400\\/10{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-avacado-400\\/100{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-avacado-400\\/15{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-avacado-400\\/20{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-avacado-400\\/25{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-avacado-400\\/30{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-avacado-400\\/35{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-avacado-400\\/40{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-avacado-400\\/45{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-avacado-400\\/5{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-avacado-400\\/50{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-avacado-400\\/55{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-avacado-400\\/60{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-avacado-400\\/65{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-avacado-400\\/70{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-avacado-400\\/75{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-avacado-400\\/80{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-avacado-400\\/85{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-avacado-400\\/90{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-avacado-400\\/95{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-avacado-50{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / var(--tw-border-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-avacado-50\\/0{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-avacado-50\\/10{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-avacado-50\\/100{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-avacado-50\\/15{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-avacado-50\\/20{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-avacado-50\\/25{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-avacado-50\\/30{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-avacado-50\\/35{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-avacado-50\\/40{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-avacado-50\\/45{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-avacado-50\\/5{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-avacado-50\\/50{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-avacado-50\\/55{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-avacado-50\\/60{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-avacado-50\\/65{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-avacado-50\\/70{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-avacado-50\\/75{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-avacado-50\\/80{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-avacado-50\\/85{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-avacado-50\\/90{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-avacado-50\\/95{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-avacado-500{\n--tw-border-opacity: 1;\nborder-color: color(from #46a758 srgb r g b / var(--tw-border-opacity));\n}\n.border-avacado-500\\/0{\nborder-color: color(from #46a758 srgb r g b / 0);\n}\n.border-avacado-500\\/10{\nborder-color: color(from #46a758 srgb r g b / 0.1);\n}\n.border-avacado-500\\/100{\nborder-color: color(from #46a758 srgb r g b / 1);\n}\n.border-avacado-500\\/15{\nborder-color: color(from #46a758 srgb r g b / 0.15);\n}\n.border-avacado-500\\/20{\nborder-color: color(from #46a758 srgb r g b / 0.2);\n}\n.border-avacado-500\\/25{\nborder-color: color(from #46a758 srgb r g b / 0.25);\n}\n.border-avacado-500\\/30{\nborder-color: color(from #46a758 srgb r g b / 0.3);\n}\n.border-avacado-500\\/35{\nborder-color: color(from #46a758 srgb r g b / 0.35);\n}\n.border-avacado-500\\/40{\nborder-color: color(from #46a758 srgb r g b / 0.4);\n}\n.border-avacado-500\\/45{\nborder-color: color(from #46a758 srgb r g b / 0.45);\n}\n.border-avacado-500\\/5{\nborder-color: color(from #46a758 srgb r g b / 0.05);\n}\n.border-avacado-500\\/50{\nborder-color: color(from #46a758 srgb r g b / 0.5);\n}\n.border-avacado-500\\/55{\nborder-color: color(from #46a758 srgb r g b / 0.55);\n}\n.border-avacado-500\\/60{\nborder-color: color(from #46a758 srgb r g b / 0.6);\n}\n.border-avacado-500\\/65{\nborder-color: color(from #46a758 srgb r g b / 0.65);\n}\n.border-avacado-500\\/70{\nborder-color: color(from #46a758 srgb r g b / 0.7);\n}\n.border-avacado-500\\/75{\nborder-color: color(from #46a758 srgb r g b / 0.75);\n}\n.border-avacado-500\\/80{\nborder-color: color(from #46a758 srgb r g b / 0.8);\n}\n.border-avacado-500\\/85{\nborder-color: color(from #46a758 srgb r g b / 0.85);\n}\n.border-avacado-500\\/90{\nborder-color: color(from #46a758 srgb r g b / 0.9);\n}\n.border-avacado-500\\/95{\nborder-color: color(from #46a758 srgb r g b / 0.95);\n}\n.border-avacado-600{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / var(--tw-border-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-avacado-600\\/0{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-avacado-600\\/10{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-avacado-600\\/100{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-avacado-600\\/15{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-avacado-600\\/20{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-avacado-600\\/25{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-avacado-600\\/30{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-avacado-600\\/35{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-avacado-600\\/40{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-avacado-600\\/45{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-avacado-600\\/5{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-avacado-600\\/50{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-avacado-600\\/55{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-avacado-600\\/60{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-avacado-600\\/65{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-avacado-600\\/70{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-avacado-600\\/75{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-avacado-600\\/80{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-avacado-600\\/85{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-avacado-600\\/90{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-avacado-600\\/95{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-avacado-700{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / var(--tw-border-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-avacado-700\\/0{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-avacado-700\\/10{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-avacado-700\\/100{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-avacado-700\\/15{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-avacado-700\\/20{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-avacado-700\\/25{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-avacado-700\\/30{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-avacado-700\\/35{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-avacado-700\\/40{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-avacado-700\\/45{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-avacado-700\\/5{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-avacado-700\\/50{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-avacado-700\\/55{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-avacado-700\\/60{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-avacado-700\\/65{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-avacado-700\\/70{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-avacado-700\\/75{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-avacado-700\\/80{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-avacado-700\\/85{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-avacado-700\\/90{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-avacado-700\\/95{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-avacado-800{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / var(--tw-border-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-avacado-800\\/0{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-avacado-800\\/10{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-avacado-800\\/100{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-avacado-800\\/15{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-avacado-800\\/20{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-avacado-800\\/25{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-avacado-800\\/30{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-avacado-800\\/35{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-avacado-800\\/40{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-avacado-800\\/45{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-avacado-800\\/5{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-avacado-800\\/50{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-avacado-800\\/55{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-avacado-800\\/60{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-avacado-800\\/65{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-avacado-800\\/70{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-avacado-800\\/75{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-avacado-800\\/80{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-avacado-800\\/85{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-avacado-800\\/90{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-avacado-800\\/95{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-avacado-900{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / var(--tw-border-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-avacado-900\\/0{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-avacado-900\\/10{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-avacado-900\\/100{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-avacado-900\\/15{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-avacado-900\\/20{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-avacado-900\\/25{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-avacado-900\\/30{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-avacado-900\\/35{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-avacado-900\\/40{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-avacado-900\\/45{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-avacado-900\\/5{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-avacado-900\\/50{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-avacado-900\\/55{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-avacado-900\\/60{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-avacado-900\\/65{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-avacado-900\\/70{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-avacado-900\\/75{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-avacado-900\\/80{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-avacado-900\\/85{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-avacado-900\\/90{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-avacado-900\\/95{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-avacado-950{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / var(--tw-border-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-avacado-950\\/0{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-avacado-950\\/10{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-avacado-950\\/100{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-avacado-950\\/15{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-avacado-950\\/20{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-avacado-950\\/25{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-avacado-950\\/30{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-avacado-950\\/35{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-avacado-950\\/40{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-avacado-950\\/45{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-avacado-950\\/5{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-avacado-950\\/50{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-avacado-950\\/55{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-avacado-950\\/60{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-avacado-950\\/65{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-avacado-950\\/70{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-avacado-950\\/75{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-avacado-950\\/80{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-avacado-950\\/85{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-avacado-950\\/90{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-avacado-950\\/95{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-avacado\\/0{\nborder-color: rgb(70 167 88 / 0);\n}\n.border-avacado\\/10{\nborder-color: rgb(70 167 88 / 0.1);\n}\n.border-avacado\\/100{\nborder-color: rgb(70 167 88 / 1);\n}\n.border-avacado\\/15{\nborder-color: rgb(70 167 88 / 0.15);\n}\n.border-avacado\\/20{\nborder-color: rgb(70 167 88 / 0.2);\n}\n.border-avacado\\/25{\nborder-color: rgb(70 167 88 / 0.25);\n}\n.border-avacado\\/30{\nborder-color: rgb(70 167 88 / 0.3);\n}\n.border-avacado\\/35{\nborder-color: rgb(70 167 88 / 0.35);\n}\n.border-avacado\\/40{\nborder-color: rgb(70 167 88 / 0.4);\n}\n.border-avacado\\/45{\nborder-color: rgb(70 167 88 / 0.45);\n}\n.border-avacado\\/5{\nborder-color: rgb(70 167 88 / 0.05);\n}\n.border-avacado\\/50{\nborder-color: rgb(70 167 88 / 0.5);\n}\n.border-avacado\\/55{\nborder-color: rgb(70 167 88 / 0.55);\n}\n.border-avacado\\/60{\nborder-color: rgb(70 167 88 / 0.6);\n}\n.border-avacado\\/65{\nborder-color: rgb(70 167 88 / 0.65);\n}\n.border-avacado\\/70{\nborder-color: rgb(70 167 88 / 0.7);\n}\n.border-avacado\\/75{\nborder-color: rgb(70 167 88 / 0.75);\n}\n.border-avacado\\/80{\nborder-color: rgb(70 167 88 / 0.8);\n}\n.border-avacado\\/85{\nborder-color: rgb(70 167 88 / 0.85);\n}\n.border-avacado\\/90{\nborder-color: rgb(70 167 88 / 0.9);\n}\n.border-avacado\\/95{\nborder-color: rgb(70 167 88 / 0.95);\n}\n.border-base{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)) 65%, color(from var(--tint) srgb r g b / var(--tw-border-opacity)));\n}\n.border-base\\/0{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0) 65%, color(from var(--tint) srgb r g b / 0));\n}\n.border-base\\/10{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.1) 65%, color(from var(--tint) srgb r g b / 0.1));\n}\n.border-base\\/100{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 65%, color(from var(--tint) srgb r g b / 1));\n}\n.border-base\\/15{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.15) 65%, color(from var(--tint) srgb r g b / 0.15));\n}\n.border-base\\/20{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.2) 65%, color(from var(--tint) srgb r g b / 0.2));\n}\n.border-base\\/25{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.25) 65%, color(from var(--tint) srgb r g b / 0.25));\n}\n.border-base\\/30{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.3) 65%, color(from var(--tint) srgb r g b / 0.3));\n}\n.border-base\\/35{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.35) 65%, color(from var(--tint) srgb r g b / 0.35));\n}\n.border-base\\/40{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.4) 65%, color(from var(--tint) srgb r g b / 0.4));\n}\n.border-base\\/45{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.45) 65%, color(from var(--tint) srgb r g b / 0.45));\n}\n.border-base\\/5{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.05) 65%, color(from var(--tint) srgb r g b / 0.05));\n}\n.border-base\\/50{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.5) 65%, color(from var(--tint) srgb r g b / 0.5));\n}\n.border-base\\/55{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.55) 65%, color(from var(--tint) srgb r g b / 0.55));\n}\n.border-base\\/60{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.6) 65%, color(from var(--tint) srgb r g b / 0.6));\n}\n.border-base\\/65{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.65) 65%, color(from var(--tint) srgb r g b / 0.65));\n}\n.border-base\\/70{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.7) 65%, color(from var(--tint) srgb r g b / 0.7));\n}\n.border-base\\/75{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.75) 65%, color(from var(--tint) srgb r g b / 0.75));\n}\n.border-base\\/80{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.8) 65%, color(from var(--tint) srgb r g b / 0.8));\n}\n.border-base\\/85{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.85) 65%, color(from var(--tint) srgb r g b / 0.85));\n}\n.border-base\\/90{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.9) 65%, color(from var(--tint) srgb r g b / 0.9));\n}\n.border-base\\/95{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.95) 65%, color(from var(--tint) srgb r g b / 0.95));\n}\n.border-black{\n--tw-border-opacity: 1;\nborder-color: rgb(25 26 27 / var(--tw-border-opacity));\n}\n.border-black\\/0{\nborder-color: rgb(25 26 27 / 0);\n}\n.border-black\\/10{\nborder-color: rgb(25 26 27 / 0.1);\n}\n.border-black\\/100{\nborder-color: rgb(25 26 27 / 1);\n}\n.border-black\\/15{\nborder-color: rgb(25 26 27 / 0.15);\n}\n.border-black\\/20{\nborder-color: rgb(25 26 27 / 0.2);\n}\n.border-black\\/25{\nborder-color: rgb(25 26 27 / 0.25);\n}\n.border-black\\/30{\nborder-color: rgb(25 26 27 / 0.3);\n}\n.border-black\\/35{\nborder-color: rgb(25 26 27 / 0.35);\n}\n.border-black\\/40{\nborder-color: rgb(25 26 27 / 0.4);\n}\n.border-black\\/45{\nborder-color: rgb(25 26 27 / 0.45);\n}\n.border-black\\/5{\nborder-color: rgb(25 26 27 / 0.05);\n}\n.border-black\\/50{\nborder-color: rgb(25 26 27 / 0.5);\n}\n.border-black\\/55{\nborder-color: rgb(25 26 27 / 0.55);\n}\n.border-black\\/60{\nborder-color: rgb(25 26 27 / 0.6);\n}\n.border-black\\/65{\nborder-color: rgb(25 26 27 / 0.65);\n}\n.border-black\\/70{\nborder-color: rgb(25 26 27 / 0.7);\n}\n.border-black\\/75{\nborder-color: rgb(25 26 27 / 0.75);\n}\n.border-black\\/80{\nborder-color: rgb(25 26 27 / 0.8);\n}\n.border-black\\/85{\nborder-color: rgb(25 26 27 / 0.85);\n}\n.border-black\\/90{\nborder-color: rgb(25 26 27 / 0.9);\n}\n.border-black\\/95{\nborder-color: rgb(25 26 27 / 0.95);\n}\n.border-coral{\n--tw-border-opacity: 1;\nborder-color: rgb(233 61 130 / var(--tw-border-opacity));\n}\n.border-coral-100{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / var(--tw-border-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-coral-100\\/0{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-coral-100\\/10{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-coral-100\\/100{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-coral-100\\/15{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-coral-100\\/20{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-coral-100\\/25{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-coral-100\\/30{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-coral-100\\/35{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-coral-100\\/40{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-coral-100\\/45{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-coral-100\\/5{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-coral-100\\/50{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-coral-100\\/55{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-coral-100\\/60{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-coral-100\\/65{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-coral-100\\/70{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-coral-100\\/75{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-coral-100\\/80{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-coral-100\\/85{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-coral-100\\/90{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-coral-100\\/95{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-coral-200{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / var(--tw-border-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-coral-200\\/0{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-coral-200\\/10{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-coral-200\\/100{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-coral-200\\/15{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-coral-200\\/20{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-coral-200\\/25{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-coral-200\\/30{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-coral-200\\/35{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-coral-200\\/40{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-coral-200\\/45{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-coral-200\\/5{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-coral-200\\/50{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-coral-200\\/55{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-coral-200\\/60{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-coral-200\\/65{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-coral-200\\/70{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-coral-200\\/75{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-coral-200\\/80{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-coral-200\\/85{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-coral-200\\/90{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-coral-200\\/95{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-coral-300{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / var(--tw-border-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-coral-300\\/0{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-coral-300\\/10{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-coral-300\\/100{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-coral-300\\/15{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-coral-300\\/20{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-coral-300\\/25{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-coral-300\\/30{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-coral-300\\/35{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-coral-300\\/40{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-coral-300\\/45{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-coral-300\\/5{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-coral-300\\/50{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-coral-300\\/55{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-coral-300\\/60{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-coral-300\\/65{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-coral-300\\/70{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-coral-300\\/75{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-coral-300\\/80{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-coral-300\\/85{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-coral-300\\/90{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-coral-300\\/95{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-coral-400{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / var(--tw-border-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-coral-400\\/0{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-coral-400\\/10{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-coral-400\\/100{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-coral-400\\/15{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-coral-400\\/20{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-coral-400\\/25{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-coral-400\\/30{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-coral-400\\/35{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-coral-400\\/40{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-coral-400\\/45{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-coral-400\\/5{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-coral-400\\/50{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-coral-400\\/55{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-coral-400\\/60{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-coral-400\\/65{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-coral-400\\/70{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-coral-400\\/75{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-coral-400\\/80{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-coral-400\\/85{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-coral-400\\/90{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-coral-400\\/95{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-coral-50{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / var(--tw-border-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-coral-50\\/0{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-coral-50\\/10{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-coral-50\\/100{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-coral-50\\/15{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-coral-50\\/20{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-coral-50\\/25{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-coral-50\\/30{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-coral-50\\/35{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-coral-50\\/40{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-coral-50\\/45{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-coral-50\\/5{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-coral-50\\/50{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-coral-50\\/55{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-coral-50\\/60{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-coral-50\\/65{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-coral-50\\/70{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-coral-50\\/75{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-coral-50\\/80{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-coral-50\\/85{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-coral-50\\/90{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-coral-50\\/95{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-coral-500{\n--tw-border-opacity: 1;\nborder-color: color(from #e93d82 srgb r g b / var(--tw-border-opacity));\n}\n.border-coral-500\\/0{\nborder-color: color(from #e93d82 srgb r g b / 0);\n}\n.border-coral-500\\/10{\nborder-color: color(from #e93d82 srgb r g b / 0.1);\n}\n.border-coral-500\\/100{\nborder-color: color(from #e93d82 srgb r g b / 1);\n}\n.border-coral-500\\/15{\nborder-color: color(from #e93d82 srgb r g b / 0.15);\n}\n.border-coral-500\\/20{\nborder-color: color(from #e93d82 srgb r g b / 0.2);\n}\n.border-coral-500\\/25{\nborder-color: color(from #e93d82 srgb r g b / 0.25);\n}\n.border-coral-500\\/30{\nborder-color: color(from #e93d82 srgb r g b / 0.3);\n}\n.border-coral-500\\/35{\nborder-color: color(from #e93d82 srgb r g b / 0.35);\n}\n.border-coral-500\\/40{\nborder-color: color(from #e93d82 srgb r g b / 0.4);\n}\n.border-coral-500\\/45{\nborder-color: color(from #e93d82 srgb r g b / 0.45);\n}\n.border-coral-500\\/5{\nborder-color: color(from #e93d82 srgb r g b / 0.05);\n}\n.border-coral-500\\/50{\nborder-color: color(from #e93d82 srgb r g b / 0.5);\n}\n.border-coral-500\\/55{\nborder-color: color(from #e93d82 srgb r g b / 0.55);\n}\n.border-coral-500\\/60{\nborder-color: color(from #e93d82 srgb r g b / 0.6);\n}\n.border-coral-500\\/65{\nborder-color: color(from #e93d82 srgb r g b / 0.65);\n}\n.border-coral-500\\/70{\nborder-color: color(from #e93d82 srgb r g b / 0.7);\n}\n.border-coral-500\\/75{\nborder-color: color(from #e93d82 srgb r g b / 0.75);\n}\n.border-coral-500\\/80{\nborder-color: color(from #e93d82 srgb r g b / 0.8);\n}\n.border-coral-500\\/85{\nborder-color: color(from #e93d82 srgb r g b / 0.85);\n}\n.border-coral-500\\/90{\nborder-color: color(from #e93d82 srgb r g b / 0.9);\n}\n.border-coral-500\\/95{\nborder-color: color(from #e93d82 srgb r g b / 0.95);\n}\n.border-coral-600{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / var(--tw-border-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-coral-600\\/0{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-coral-600\\/10{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-coral-600\\/100{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-coral-600\\/15{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-coral-600\\/20{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-coral-600\\/25{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-coral-600\\/30{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-coral-600\\/35{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-coral-600\\/40{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-coral-600\\/45{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-coral-600\\/5{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-coral-600\\/50{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-coral-600\\/55{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-coral-600\\/60{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-coral-600\\/65{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-coral-600\\/70{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-coral-600\\/75{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-coral-600\\/80{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-coral-600\\/85{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-coral-600\\/90{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-coral-600\\/95{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-coral-700{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / var(--tw-border-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-coral-700\\/0{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-coral-700\\/10{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-coral-700\\/100{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-coral-700\\/15{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-coral-700\\/20{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-coral-700\\/25{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-coral-700\\/30{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-coral-700\\/35{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-coral-700\\/40{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-coral-700\\/45{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-coral-700\\/5{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-coral-700\\/50{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-coral-700\\/55{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-coral-700\\/60{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-coral-700\\/65{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-coral-700\\/70{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-coral-700\\/75{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-coral-700\\/80{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-coral-700\\/85{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-coral-700\\/90{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-coral-700\\/95{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-coral-800{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / var(--tw-border-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-coral-800\\/0{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-coral-800\\/10{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-coral-800\\/100{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-coral-800\\/15{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-coral-800\\/20{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-coral-800\\/25{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-coral-800\\/30{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-coral-800\\/35{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-coral-800\\/40{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-coral-800\\/45{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-coral-800\\/5{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-coral-800\\/50{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-coral-800\\/55{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-coral-800\\/60{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-coral-800\\/65{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-coral-800\\/70{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-coral-800\\/75{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-coral-800\\/80{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-coral-800\\/85{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-coral-800\\/90{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-coral-800\\/95{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-coral-900{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / var(--tw-border-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-coral-900\\/0{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-coral-900\\/10{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-coral-900\\/100{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-coral-900\\/15{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-coral-900\\/20{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-coral-900\\/25{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-coral-900\\/30{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-coral-900\\/35{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-coral-900\\/40{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-coral-900\\/45{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-coral-900\\/5{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-coral-900\\/50{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-coral-900\\/55{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-coral-900\\/60{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-coral-900\\/65{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-coral-900\\/70{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-coral-900\\/75{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-coral-900\\/80{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-coral-900\\/85{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-coral-900\\/90{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-coral-900\\/95{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-coral-950{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / var(--tw-border-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-coral-950\\/0{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-coral-950\\/10{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-coral-950\\/100{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-coral-950\\/15{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-coral-950\\/20{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-coral-950\\/25{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-coral-950\\/30{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-coral-950\\/35{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-coral-950\\/40{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-coral-950\\/45{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-coral-950\\/5{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-coral-950\\/50{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-coral-950\\/55{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-coral-950\\/60{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-coral-950\\/65{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-coral-950\\/70{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-coral-950\\/75{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-coral-950\\/80{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-coral-950\\/85{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-coral-950\\/90{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-coral-950\\/95{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-coral\\/0{\nborder-color: rgb(233 61 130 / 0);\n}\n.border-coral\\/10{\nborder-color: rgb(233 61 130 / 0.1);\n}\n.border-coral\\/100{\nborder-color: rgb(233 61 130 / 1);\n}\n.border-coral\\/15{\nborder-color: rgb(233 61 130 / 0.15);\n}\n.border-coral\\/20{\nborder-color: rgb(233 61 130 / 0.2);\n}\n.border-coral\\/25{\nborder-color: rgb(233 61 130 / 0.25);\n}\n.border-coral\\/30{\nborder-color: rgb(233 61 130 / 0.3);\n}\n.border-coral\\/35{\nborder-color: rgb(233 61 130 / 0.35);\n}\n.border-coral\\/40{\nborder-color: rgb(233 61 130 / 0.4);\n}\n.border-coral\\/45{\nborder-color: rgb(233 61 130 / 0.45);\n}\n.border-coral\\/5{\nborder-color: rgb(233 61 130 / 0.05);\n}\n.border-coral\\/50{\nborder-color: rgb(233 61 130 / 0.5);\n}\n.border-coral\\/55{\nborder-color: rgb(233 61 130 / 0.55);\n}\n.border-coral\\/60{\nborder-color: rgb(233 61 130 / 0.6);\n}\n.border-coral\\/65{\nborder-color: rgb(233 61 130 / 0.65);\n}\n.border-coral\\/70{\nborder-color: rgb(233 61 130 / 0.7);\n}\n.border-coral\\/75{\nborder-color: rgb(233 61 130 / 0.75);\n}\n.border-coral\\/80{\nborder-color: rgb(233 61 130 / 0.8);\n}\n.border-coral\\/85{\nborder-color: rgb(233 61 130 / 0.85);\n}\n.border-coral\\/90{\nborder-color: rgb(233 61 130 / 0.9);\n}\n.border-coral\\/95{\nborder-color: rgb(233 61 130 / 0.95);\n}\n.border-danger{\n--tw-border-opacity: 1;\nborder-color: rgb(242 76 61 / var(--tw-border-opacity));\n}\n.border-danger-100{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / var(--tw-border-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-danger-100\\/0{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-danger-100\\/10{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-danger-100\\/100{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-danger-100\\/15{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-danger-100\\/20{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-danger-100\\/25{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-danger-100\\/30{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-danger-100\\/35{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-danger-100\\/40{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-danger-100\\/45{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-danger-100\\/5{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-danger-100\\/50{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-danger-100\\/55{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-danger-100\\/60{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-danger-100\\/65{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-danger-100\\/70{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-danger-100\\/75{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-danger-100\\/80{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-danger-100\\/85{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-danger-100\\/90{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-danger-100\\/95{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-danger-200{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / var(--tw-border-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-danger-200\\/0{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-danger-200\\/10{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-danger-200\\/100{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-danger-200\\/15{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-danger-200\\/20{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-danger-200\\/25{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-danger-200\\/30{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-danger-200\\/35{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-danger-200\\/40{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-danger-200\\/45{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-danger-200\\/5{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-danger-200\\/50{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-danger-200\\/55{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-danger-200\\/60{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-danger-200\\/65{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-danger-200\\/70{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-danger-200\\/75{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-danger-200\\/80{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-danger-200\\/85{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-danger-200\\/90{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-danger-200\\/95{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-danger-300{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / var(--tw-border-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-danger-300\\/0{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-danger-300\\/10{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-danger-300\\/100{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-danger-300\\/15{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-danger-300\\/20{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-danger-300\\/25{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-danger-300\\/30{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-danger-300\\/35{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-danger-300\\/40{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-danger-300\\/45{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-danger-300\\/5{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-danger-300\\/50{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-danger-300\\/55{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-danger-300\\/60{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-danger-300\\/65{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-danger-300\\/70{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-danger-300\\/75{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-danger-300\\/80{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-danger-300\\/85{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-danger-300\\/90{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-danger-300\\/95{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-danger-400{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / var(--tw-border-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-danger-400\\/0{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-danger-400\\/10{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-danger-400\\/100{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-danger-400\\/15{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-danger-400\\/20{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-danger-400\\/25{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-danger-400\\/30{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-danger-400\\/35{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-danger-400\\/40{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-danger-400\\/45{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-danger-400\\/5{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-danger-400\\/50{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-danger-400\\/55{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-danger-400\\/60{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-danger-400\\/65{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-danger-400\\/70{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-danger-400\\/75{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-danger-400\\/80{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-danger-400\\/85{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-danger-400\\/90{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-danger-400\\/95{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-danger-50{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / var(--tw-border-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-danger-50\\/0{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-danger-50\\/10{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-danger-50\\/100{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-danger-50\\/15{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-danger-50\\/20{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-danger-50\\/25{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-danger-50\\/30{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-danger-50\\/35{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-danger-50\\/40{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-danger-50\\/45{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-danger-50\\/5{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-danger-50\\/50{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-danger-50\\/55{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-danger-50\\/60{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-danger-50\\/65{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-danger-50\\/70{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-danger-50\\/75{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-danger-50\\/80{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-danger-50\\/85{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-danger-50\\/90{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-danger-50\\/95{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-danger-500{\n--tw-border-opacity: 1;\nborder-color: color(from #f24c3d srgb r g b / var(--tw-border-opacity));\n}\n.border-danger-500\\/0{\nborder-color: color(from #f24c3d srgb r g b / 0);\n}\n.border-danger-500\\/10{\nborder-color: color(from #f24c3d srgb r g b / 0.1);\n}\n.border-danger-500\\/100{\nborder-color: color(from #f24c3d srgb r g b / 1);\n}\n.border-danger-500\\/15{\nborder-color: color(from #f24c3d srgb r g b / 0.15);\n}\n.border-danger-500\\/20{\nborder-color: color(from #f24c3d srgb r g b / 0.2);\n}\n.border-danger-500\\/25{\nborder-color: color(from #f24c3d srgb r g b / 0.25);\n}\n.border-danger-500\\/30{\nborder-color: color(from #f24c3d srgb r g b / 0.3);\n}\n.border-danger-500\\/35{\nborder-color: color(from #f24c3d srgb r g b / 0.35);\n}\n.border-danger-500\\/40{\nborder-color: color(from #f24c3d srgb r g b / 0.4);\n}\n.border-danger-500\\/45{\nborder-color: color(from #f24c3d srgb r g b / 0.45);\n}\n.border-danger-500\\/5{\nborder-color: color(from #f24c3d srgb r g b / 0.05);\n}\n.border-danger-500\\/50{\nborder-color: color(from #f24c3d srgb r g b / 0.5);\n}\n.border-danger-500\\/55{\nborder-color: color(from #f24c3d srgb r g b / 0.55);\n}\n.border-danger-500\\/60{\nborder-color: color(from #f24c3d srgb r g b / 0.6);\n}\n.border-danger-500\\/65{\nborder-color: color(from #f24c3d srgb r g b / 0.65);\n}\n.border-danger-500\\/70{\nborder-color: color(from #f24c3d srgb r g b / 0.7);\n}\n.border-danger-500\\/75{\nborder-color: color(from #f24c3d srgb r g b / 0.75);\n}\n.border-danger-500\\/80{\nborder-color: color(from #f24c3d srgb r g b / 0.8);\n}\n.border-danger-500\\/85{\nborder-color: color(from #f24c3d srgb r g b / 0.85);\n}\n.border-danger-500\\/90{\nborder-color: color(from #f24c3d srgb r g b / 0.9);\n}\n.border-danger-500\\/95{\nborder-color: color(from #f24c3d srgb r g b / 0.95);\n}\n.border-danger-600{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / var(--tw-border-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-danger-600\\/0{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-danger-600\\/10{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-danger-600\\/100{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-danger-600\\/15{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-danger-600\\/20{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-danger-600\\/25{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-danger-600\\/30{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-danger-600\\/35{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-danger-600\\/40{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-danger-600\\/45{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-danger-600\\/5{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-danger-600\\/50{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-danger-600\\/55{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-danger-600\\/60{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-danger-600\\/65{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-danger-600\\/70{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-danger-600\\/75{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-danger-600\\/80{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-danger-600\\/85{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-danger-600\\/90{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-danger-600\\/95{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-danger-700{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / var(--tw-border-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-danger-700\\/0{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-danger-700\\/10{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-danger-700\\/100{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-danger-700\\/15{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-danger-700\\/20{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-danger-700\\/25{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-danger-700\\/30{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-danger-700\\/35{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-danger-700\\/40{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-danger-700\\/45{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-danger-700\\/5{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-danger-700\\/50{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-danger-700\\/55{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-danger-700\\/60{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-danger-700\\/65{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-danger-700\\/70{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-danger-700\\/75{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-danger-700\\/80{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-danger-700\\/85{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-danger-700\\/90{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-danger-700\\/95{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-danger-800{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / var(--tw-border-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-danger-800\\/0{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-danger-800\\/10{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-danger-800\\/100{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-danger-800\\/15{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-danger-800\\/20{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-danger-800\\/25{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-danger-800\\/30{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-danger-800\\/35{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-danger-800\\/40{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-danger-800\\/45{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-danger-800\\/5{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-danger-800\\/50{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-danger-800\\/55{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-danger-800\\/60{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-danger-800\\/65{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-danger-800\\/70{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-danger-800\\/75{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-danger-800\\/80{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-danger-800\\/85{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-danger-800\\/90{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-danger-800\\/95{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-danger-900{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / var(--tw-border-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-danger-900\\/0{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-danger-900\\/10{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-danger-900\\/100{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-danger-900\\/15{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-danger-900\\/20{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-danger-900\\/25{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-danger-900\\/30{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-danger-900\\/35{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-danger-900\\/40{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-danger-900\\/45{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-danger-900\\/5{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-danger-900\\/50{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-danger-900\\/55{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-danger-900\\/60{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-danger-900\\/65{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-danger-900\\/70{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-danger-900\\/75{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-danger-900\\/80{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-danger-900\\/85{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-danger-900\\/90{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-danger-900\\/95{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-danger-950{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / var(--tw-border-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-danger-950\\/0{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-danger-950\\/10{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-danger-950\\/100{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-danger-950\\/15{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-danger-950\\/20{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-danger-950\\/25{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-danger-950\\/30{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-danger-950\\/35{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-danger-950\\/40{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-danger-950\\/45{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-danger-950\\/5{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-danger-950\\/50{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-danger-950\\/55{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-danger-950\\/60{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-danger-950\\/65{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-danger-950\\/70{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-danger-950\\/75{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-danger-950\\/80{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-danger-950\\/85{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-danger-950\\/90{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-danger-950\\/95{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-danger\\/0{\nborder-color: rgb(242 76 61 / 0);\n}\n.border-danger\\/10{\nborder-color: rgb(242 76 61 / 0.1);\n}\n.border-danger\\/100{\nborder-color: rgb(242 76 61 / 1);\n}\n.border-danger\\/15{\nborder-color: rgb(242 76 61 / 0.15);\n}\n.border-danger\\/20{\nborder-color: rgb(242 76 61 / 0.2);\n}\n.border-danger\\/25{\nborder-color: rgb(242 76 61 / 0.25);\n}\n.border-danger\\/30{\nborder-color: rgb(242 76 61 / 0.3);\n}\n.border-danger\\/35{\nborder-color: rgb(242 76 61 / 0.35);\n}\n.border-danger\\/40{\nborder-color: rgb(242 76 61 / 0.4);\n}\n.border-danger\\/45{\nborder-color: rgb(242 76 61 / 0.45);\n}\n.border-danger\\/5{\nborder-color: rgb(242 76 61 / 0.05);\n}\n.border-danger\\/50{\nborder-color: rgb(242 76 61 / 0.5);\n}\n.border-danger\\/55{\nborder-color: rgb(242 76 61 / 0.55);\n}\n.border-danger\\/60{\nborder-color: rgb(242 76 61 / 0.6);\n}\n.border-danger\\/65{\nborder-color: rgb(242 76 61 / 0.65);\n}\n.border-danger\\/70{\nborder-color: rgb(242 76 61 / 0.7);\n}\n.border-danger\\/75{\nborder-color: rgb(242 76 61 / 0.75);\n}\n.border-danger\\/80{\nborder-color: rgb(242 76 61 / 0.8);\n}\n.border-danger\\/85{\nborder-color: rgb(242 76 61 / 0.85);\n}\n.border-danger\\/90{\nborder-color: rgb(242 76 61 / 0.9);\n}\n.border-danger\\/95{\nborder-color: rgb(242 76 61 / 0.95);\n}\n.border-dark{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from var(--black) srgb r g b / var(--tw-border-opacity)) 75%, color(from var(--tint) srgb r g b / var(--tw-border-opacity)));\n}\n.border-dark\\/0{\nborder-color: color-mix(in lab, color(from var(--black) srgb r g b / 0) 75%, color(from var(--tint) srgb r g b / 0));\n}\n.border-dark\\/10{\nborder-color: color-mix(in lab, color(from var(--black) srgb r g b / 0.1) 75%, color(from var(--tint) srgb r g b / 0.1));\n}\n.border-dark\\/100{\nborder-color: color-mix(in lab, color(from var(--black) srgb r g b / 1) 75%, color(from var(--tint) srgb r g b / 1));\n}\n.border-dark\\/15{\nborder-color: color-mix(in lab, color(from var(--black) srgb r g b / 0.15) 75%, color(from var(--tint) srgb r g b / 0.15));\n}\n.border-dark\\/20{\nborder-color: color-mix(in lab, color(from var(--black) srgb r g b / 0.2) 75%, color(from var(--tint) srgb r g b / 0.2));\n}\n.border-dark\\/25{\nborder-color: color-mix(in lab, color(from var(--black) srgb r g b / 0.25) 75%, color(from var(--tint) srgb r g b / 0.25));\n}\n.border-dark\\/30{\nborder-color: color-mix(in lab, color(from var(--black) srgb r g b / 0.3) 75%, color(from var(--tint) srgb r g b / 0.3));\n}\n.border-dark\\/35{\nborder-color: color-mix(in lab, color(from var(--black) srgb r g b / 0.35) 75%, color(from var(--tint) srgb r g b / 0.35));\n}\n.border-dark\\/40{\nborder-color: color-mix(in lab, color(from var(--black) srgb r g b / 0.4) 75%, color(from var(--tint) srgb r g b / 0.4));\n}\n.border-dark\\/45{\nborder-color: color-mix(in lab, color(from var(--black) srgb r g b / 0.45) 75%, color(from var(--tint) srgb r g b / 0.45));\n}\n.border-dark\\/5{\nborder-color: color-mix(in lab, color(from var(--black) srgb r g b / 0.05) 75%, color(from var(--tint) srgb r g b / 0.05));\n}\n.border-dark\\/50{\nborder-color: color-mix(in lab, color(from var(--black) srgb r g b / 0.5) 75%, color(from var(--tint) srgb r g b / 0.5));\n}\n.border-dark\\/55{\nborder-color: color-mix(in lab, color(from var(--black) srgb r g b / 0.55) 75%, color(from var(--tint) srgb r g b / 0.55));\n}\n.border-dark\\/60{\nborder-color: color-mix(in lab, color(from var(--black) srgb r g b / 0.6) 75%, color(from var(--tint) srgb r g b / 0.6));\n}\n.border-dark\\/65{\nborder-color: color-mix(in lab, color(from var(--black) srgb r g b / 0.65) 75%, color(from var(--tint) srgb r g b / 0.65));\n}\n.border-dark\\/70{\nborder-color: color-mix(in lab, color(from var(--black) srgb r g b / 0.7) 75%, color(from var(--tint) srgb r g b / 0.7));\n}\n.border-dark\\/75{\nborder-color: color-mix(in lab, color(from var(--black) srgb r g b / 0.75) 75%, color(from var(--tint) srgb r g b / 0.75));\n}\n.border-dark\\/80{\nborder-color: color-mix(in lab, color(from var(--black) srgb r g b / 0.8) 75%, color(from var(--tint) srgb r g b / 0.8));\n}\n.border-dark\\/85{\nborder-color: color-mix(in lab, color(from var(--black) srgb r g b / 0.85) 75%, color(from var(--tint) srgb r g b / 0.85));\n}\n.border-dark\\/90{\nborder-color: color-mix(in lab, color(from var(--black) srgb r g b / 0.9) 75%, color(from var(--tint) srgb r g b / 0.9));\n}\n.border-dark\\/95{\nborder-color: color-mix(in lab, color(from var(--black) srgb r g b / 0.95) 75%, color(from var(--tint) srgb r g b / 0.95));\n}\n.border-denim{\n--tw-border-opacity: 1;\nborder-color: rgb(1 144 255 / var(--tw-border-opacity));\n}\n.border-denim-100{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / var(--tw-border-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-denim-100\\/0{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-denim-100\\/10{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-denim-100\\/100{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-denim-100\\/15{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-denim-100\\/20{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-denim-100\\/25{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-denim-100\\/30{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-denim-100\\/35{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-denim-100\\/40{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-denim-100\\/45{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-denim-100\\/5{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-denim-100\\/50{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-denim-100\\/55{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-denim-100\\/60{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-denim-100\\/65{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-denim-100\\/70{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-denim-100\\/75{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-denim-100\\/80{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-denim-100\\/85{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-denim-100\\/90{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-denim-100\\/95{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-denim-200{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / var(--tw-border-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-denim-200\\/0{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-denim-200\\/10{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-denim-200\\/100{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-denim-200\\/15{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-denim-200\\/20{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-denim-200\\/25{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-denim-200\\/30{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-denim-200\\/35{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-denim-200\\/40{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-denim-200\\/45{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-denim-200\\/5{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-denim-200\\/50{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-denim-200\\/55{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-denim-200\\/60{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-denim-200\\/65{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-denim-200\\/70{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-denim-200\\/75{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-denim-200\\/80{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-denim-200\\/85{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-denim-200\\/90{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-denim-200\\/95{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-denim-300{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / var(--tw-border-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-denim-300\\/0{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-denim-300\\/10{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-denim-300\\/100{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-denim-300\\/15{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-denim-300\\/20{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-denim-300\\/25{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-denim-300\\/30{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-denim-300\\/35{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-denim-300\\/40{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-denim-300\\/45{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-denim-300\\/5{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-denim-300\\/50{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-denim-300\\/55{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-denim-300\\/60{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-denim-300\\/65{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-denim-300\\/70{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-denim-300\\/75{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-denim-300\\/80{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-denim-300\\/85{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-denim-300\\/90{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-denim-300\\/95{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-denim-400{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / var(--tw-border-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-denim-400\\/0{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-denim-400\\/10{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-denim-400\\/100{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-denim-400\\/15{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-denim-400\\/20{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-denim-400\\/25{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-denim-400\\/30{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-denim-400\\/35{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-denim-400\\/40{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-denim-400\\/45{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-denim-400\\/5{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-denim-400\\/50{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-denim-400\\/55{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-denim-400\\/60{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-denim-400\\/65{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-denim-400\\/70{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-denim-400\\/75{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-denim-400\\/80{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-denim-400\\/85{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-denim-400\\/90{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-denim-400\\/95{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-denim-50{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / var(--tw-border-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-denim-50\\/0{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-denim-50\\/10{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-denim-50\\/100{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-denim-50\\/15{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-denim-50\\/20{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-denim-50\\/25{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-denim-50\\/30{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-denim-50\\/35{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-denim-50\\/40{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-denim-50\\/45{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-denim-50\\/5{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-denim-50\\/50{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-denim-50\\/55{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-denim-50\\/60{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-denim-50\\/65{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-denim-50\\/70{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-denim-50\\/75{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-denim-50\\/80{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-denim-50\\/85{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-denim-50\\/90{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-denim-50\\/95{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-denim-500{\n--tw-border-opacity: 1;\nborder-color: color(from #0190ff srgb r g b / var(--tw-border-opacity));\n}\n.border-denim-500\\/0{\nborder-color: color(from #0190ff srgb r g b / 0);\n}\n.border-denim-500\\/10{\nborder-color: color(from #0190ff srgb r g b / 0.1);\n}\n.border-denim-500\\/100{\nborder-color: color(from #0190ff srgb r g b / 1);\n}\n.border-denim-500\\/15{\nborder-color: color(from #0190ff srgb r g b / 0.15);\n}\n.border-denim-500\\/20{\nborder-color: color(from #0190ff srgb r g b / 0.2);\n}\n.border-denim-500\\/25{\nborder-color: color(from #0190ff srgb r g b / 0.25);\n}\n.border-denim-500\\/30{\nborder-color: color(from #0190ff srgb r g b / 0.3);\n}\n.border-denim-500\\/35{\nborder-color: color(from #0190ff srgb r g b / 0.35);\n}\n.border-denim-500\\/40{\nborder-color: color(from #0190ff srgb r g b / 0.4);\n}\n.border-denim-500\\/45{\nborder-color: color(from #0190ff srgb r g b / 0.45);\n}\n.border-denim-500\\/5{\nborder-color: color(from #0190ff srgb r g b / 0.05);\n}\n.border-denim-500\\/50{\nborder-color: color(from #0190ff srgb r g b / 0.5);\n}\n.border-denim-500\\/55{\nborder-color: color(from #0190ff srgb r g b / 0.55);\n}\n.border-denim-500\\/60{\nborder-color: color(from #0190ff srgb r g b / 0.6);\n}\n.border-denim-500\\/65{\nborder-color: color(from #0190ff srgb r g b / 0.65);\n}\n.border-denim-500\\/70{\nborder-color: color(from #0190ff srgb r g b / 0.7);\n}\n.border-denim-500\\/75{\nborder-color: color(from #0190ff srgb r g b / 0.75);\n}\n.border-denim-500\\/80{\nborder-color: color(from #0190ff srgb r g b / 0.8);\n}\n.border-denim-500\\/85{\nborder-color: color(from #0190ff srgb r g b / 0.85);\n}\n.border-denim-500\\/90{\nborder-color: color(from #0190ff srgb r g b / 0.9);\n}\n.border-denim-500\\/95{\nborder-color: color(from #0190ff srgb r g b / 0.95);\n}\n.border-denim-600{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / var(--tw-border-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-denim-600\\/0{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-denim-600\\/10{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-denim-600\\/100{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-denim-600\\/15{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-denim-600\\/20{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-denim-600\\/25{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-denim-600\\/30{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-denim-600\\/35{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-denim-600\\/40{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-denim-600\\/45{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-denim-600\\/5{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-denim-600\\/50{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-denim-600\\/55{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-denim-600\\/60{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-denim-600\\/65{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-denim-600\\/70{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-denim-600\\/75{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-denim-600\\/80{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-denim-600\\/85{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-denim-600\\/90{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-denim-600\\/95{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-denim-700{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / var(--tw-border-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-denim-700\\/0{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-denim-700\\/10{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-denim-700\\/100{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-denim-700\\/15{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-denim-700\\/20{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-denim-700\\/25{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-denim-700\\/30{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-denim-700\\/35{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-denim-700\\/40{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-denim-700\\/45{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-denim-700\\/5{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-denim-700\\/50{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-denim-700\\/55{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-denim-700\\/60{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-denim-700\\/65{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-denim-700\\/70{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-denim-700\\/75{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-denim-700\\/80{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-denim-700\\/85{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-denim-700\\/90{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-denim-700\\/95{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-denim-800{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / var(--tw-border-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-denim-800\\/0{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-denim-800\\/10{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-denim-800\\/100{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-denim-800\\/15{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-denim-800\\/20{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-denim-800\\/25{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-denim-800\\/30{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-denim-800\\/35{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-denim-800\\/40{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-denim-800\\/45{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-denim-800\\/5{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-denim-800\\/50{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-denim-800\\/55{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-denim-800\\/60{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-denim-800\\/65{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-denim-800\\/70{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-denim-800\\/75{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-denim-800\\/80{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-denim-800\\/85{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-denim-800\\/90{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-denim-800\\/95{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-denim-900{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / var(--tw-border-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-denim-900\\/0{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-denim-900\\/10{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-denim-900\\/100{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-denim-900\\/15{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-denim-900\\/20{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-denim-900\\/25{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-denim-900\\/30{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-denim-900\\/35{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-denim-900\\/40{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-denim-900\\/45{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-denim-900\\/5{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-denim-900\\/50{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-denim-900\\/55{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-denim-900\\/60{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-denim-900\\/65{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-denim-900\\/70{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-denim-900\\/75{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-denim-900\\/80{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-denim-900\\/85{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-denim-900\\/90{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-denim-900\\/95{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-denim-950{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / var(--tw-border-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-denim-950\\/0{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-denim-950\\/10{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-denim-950\\/100{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-denim-950\\/15{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-denim-950\\/20{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-denim-950\\/25{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-denim-950\\/30{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-denim-950\\/35{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-denim-950\\/40{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-denim-950\\/45{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-denim-950\\/5{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-denim-950\\/50{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-denim-950\\/55{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-denim-950\\/60{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-denim-950\\/65{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-denim-950\\/70{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-denim-950\\/75{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-denim-950\\/80{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-denim-950\\/85{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-denim-950\\/90{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-denim-950\\/95{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-denim\\/0{\nborder-color: rgb(1 144 255 / 0);\n}\n.border-denim\\/10{\nborder-color: rgb(1 144 255 / 0.1);\n}\n.border-denim\\/100{\nborder-color: rgb(1 144 255 / 1);\n}\n.border-denim\\/15{\nborder-color: rgb(1 144 255 / 0.15);\n}\n.border-denim\\/20{\nborder-color: rgb(1 144 255 / 0.2);\n}\n.border-denim\\/25{\nborder-color: rgb(1 144 255 / 0.25);\n}\n.border-denim\\/30{\nborder-color: rgb(1 144 255 / 0.3);\n}\n.border-denim\\/35{\nborder-color: rgb(1 144 255 / 0.35);\n}\n.border-denim\\/40{\nborder-color: rgb(1 144 255 / 0.4);\n}\n.border-denim\\/45{\nborder-color: rgb(1 144 255 / 0.45);\n}\n.border-denim\\/5{\nborder-color: rgb(1 144 255 / 0.05);\n}\n.border-denim\\/50{\nborder-color: rgb(1 144 255 / 0.5);\n}\n.border-denim\\/55{\nborder-color: rgb(1 144 255 / 0.55);\n}\n.border-denim\\/60{\nborder-color: rgb(1 144 255 / 0.6);\n}\n.border-denim\\/65{\nborder-color: rgb(1 144 255 / 0.65);\n}\n.border-denim\\/70{\nborder-color: rgb(1 144 255 / 0.7);\n}\n.border-denim\\/75{\nborder-color: rgb(1 144 255 / 0.75);\n}\n.border-denim\\/80{\nborder-color: rgb(1 144 255 / 0.8);\n}\n.border-denim\\/85{\nborder-color: rgb(1 144 255 / 0.85);\n}\n.border-denim\\/90{\nborder-color: rgb(1 144 255 / 0.9);\n}\n.border-denim\\/95{\nborder-color: rgb(1 144 255 / 0.95);\n}\n.border-dimmed{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)) 72%, color(from var(--tint) srgb r g b / var(--tw-border-opacity)));\n}\n.border-dimmed\\/0{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0) 72%, color(from var(--tint) srgb r g b / 0));\n}\n.border-dimmed\\/10{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.1) 72%, color(from var(--tint) srgb r g b / 0.1));\n}\n.border-dimmed\\/100{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 72%, color(from var(--tint) srgb r g b / 1));\n}\n.border-dimmed\\/15{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.15) 72%, color(from var(--tint) srgb r g b / 0.15));\n}\n.border-dimmed\\/20{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.2) 72%, color(from var(--tint) srgb r g b / 0.2));\n}\n.border-dimmed\\/25{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.25) 72%, color(from var(--tint) srgb r g b / 0.25));\n}\n.border-dimmed\\/30{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.3) 72%, color(from var(--tint) srgb r g b / 0.3));\n}\n.border-dimmed\\/35{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.35) 72%, color(from var(--tint) srgb r g b / 0.35));\n}\n.border-dimmed\\/40{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.4) 72%, color(from var(--tint) srgb r g b / 0.4));\n}\n.border-dimmed\\/45{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.45) 72%, color(from var(--tint) srgb r g b / 0.45));\n}\n.border-dimmed\\/5{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.05) 72%, color(from var(--tint) srgb r g b / 0.05));\n}\n.border-dimmed\\/50{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.5) 72%, color(from var(--tint) srgb r g b / 0.5));\n}\n.border-dimmed\\/55{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.55) 72%, color(from var(--tint) srgb r g b / 0.55));\n}\n.border-dimmed\\/60{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.6) 72%, color(from var(--tint) srgb r g b / 0.6));\n}\n.border-dimmed\\/65{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.65) 72%, color(from var(--tint) srgb r g b / 0.65));\n}\n.border-dimmed\\/70{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.7) 72%, color(from var(--tint) srgb r g b / 0.7));\n}\n.border-dimmed\\/75{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.75) 72%, color(from var(--tint) srgb r g b / 0.75));\n}\n.border-dimmed\\/80{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.8) 72%, color(from var(--tint) srgb r g b / 0.8));\n}\n.border-dimmed\\/85{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.85) 72%, color(from var(--tint) srgb r g b / 0.85));\n}\n.border-dimmed\\/90{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.9) 72%, color(from var(--tint) srgb r g b / 0.9));\n}\n.border-dimmed\\/95{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.95) 72%, color(from var(--tint) srgb r g b / 0.95));\n}\n.border-info{\n--tw-border-opacity: 1;\nborder-color: rgb(0 191 255 / var(--tw-border-opacity));\n}\n.border-info-100{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / var(--tw-border-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-info-100\\/0{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-info-100\\/10{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-info-100\\/100{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-info-100\\/15{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-info-100\\/20{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-info-100\\/25{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-info-100\\/30{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-info-100\\/35{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-info-100\\/40{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-info-100\\/45{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-info-100\\/5{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-info-100\\/50{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-info-100\\/55{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-info-100\\/60{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-info-100\\/65{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-info-100\\/70{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-info-100\\/75{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-info-100\\/80{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-info-100\\/85{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-info-100\\/90{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-info-100\\/95{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-info-200{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / var(--tw-border-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-info-200\\/0{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-info-200\\/10{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-info-200\\/100{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-info-200\\/15{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-info-200\\/20{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-info-200\\/25{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-info-200\\/30{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-info-200\\/35{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-info-200\\/40{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-info-200\\/45{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-info-200\\/5{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-info-200\\/50{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-info-200\\/55{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-info-200\\/60{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-info-200\\/65{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-info-200\\/70{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-info-200\\/75{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-info-200\\/80{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-info-200\\/85{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-info-200\\/90{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-info-200\\/95{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-info-300{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / var(--tw-border-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-info-300\\/0{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-info-300\\/10{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-info-300\\/100{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-info-300\\/15{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-info-300\\/20{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-info-300\\/25{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-info-300\\/30{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-info-300\\/35{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-info-300\\/40{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-info-300\\/45{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-info-300\\/5{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-info-300\\/50{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-info-300\\/55{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-info-300\\/60{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-info-300\\/65{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-info-300\\/70{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-info-300\\/75{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-info-300\\/80{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-info-300\\/85{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-info-300\\/90{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-info-300\\/95{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-info-400{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / var(--tw-border-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-info-400\\/0{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-info-400\\/10{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-info-400\\/100{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-info-400\\/15{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-info-400\\/20{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-info-400\\/25{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-info-400\\/30{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-info-400\\/35{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-info-400\\/40{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-info-400\\/45{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-info-400\\/5{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-info-400\\/50{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-info-400\\/55{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-info-400\\/60{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-info-400\\/65{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-info-400\\/70{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-info-400\\/75{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-info-400\\/80{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-info-400\\/85{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-info-400\\/90{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-info-400\\/95{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-info-50{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / var(--tw-border-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-info-50\\/0{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-info-50\\/10{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-info-50\\/100{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-info-50\\/15{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-info-50\\/20{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-info-50\\/25{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-info-50\\/30{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-info-50\\/35{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-info-50\\/40{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-info-50\\/45{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-info-50\\/5{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-info-50\\/50{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-info-50\\/55{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-info-50\\/60{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-info-50\\/65{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-info-50\\/70{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-info-50\\/75{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-info-50\\/80{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-info-50\\/85{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-info-50\\/90{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-info-50\\/95{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-info-500{\n--tw-border-opacity: 1;\nborder-color: color(from #00bfff srgb r g b / var(--tw-border-opacity));\n}\n.border-info-500\\/0{\nborder-color: color(from #00bfff srgb r g b / 0);\n}\n.border-info-500\\/10{\nborder-color: color(from #00bfff srgb r g b / 0.1);\n}\n.border-info-500\\/100{\nborder-color: color(from #00bfff srgb r g b / 1);\n}\n.border-info-500\\/15{\nborder-color: color(from #00bfff srgb r g b / 0.15);\n}\n.border-info-500\\/20{\nborder-color: color(from #00bfff srgb r g b / 0.2);\n}\n.border-info-500\\/25{\nborder-color: color(from #00bfff srgb r g b / 0.25);\n}\n.border-info-500\\/30{\nborder-color: color(from #00bfff srgb r g b / 0.3);\n}\n.border-info-500\\/35{\nborder-color: color(from #00bfff srgb r g b / 0.35);\n}\n.border-info-500\\/40{\nborder-color: color(from #00bfff srgb r g b / 0.4);\n}\n.border-info-500\\/45{\nborder-color: color(from #00bfff srgb r g b / 0.45);\n}\n.border-info-500\\/5{\nborder-color: color(from #00bfff srgb r g b / 0.05);\n}\n.border-info-500\\/50{\nborder-color: color(from #00bfff srgb r g b / 0.5);\n}\n.border-info-500\\/55{\nborder-color: color(from #00bfff srgb r g b / 0.55);\n}\n.border-info-500\\/60{\nborder-color: color(from #00bfff srgb r g b / 0.6);\n}\n.border-info-500\\/65{\nborder-color: color(from #00bfff srgb r g b / 0.65);\n}\n.border-info-500\\/70{\nborder-color: color(from #00bfff srgb r g b / 0.7);\n}\n.border-info-500\\/75{\nborder-color: color(from #00bfff srgb r g b / 0.75);\n}\n.border-info-500\\/80{\nborder-color: color(from #00bfff srgb r g b / 0.8);\n}\n.border-info-500\\/85{\nborder-color: color(from #00bfff srgb r g b / 0.85);\n}\n.border-info-500\\/90{\nborder-color: color(from #00bfff srgb r g b / 0.9);\n}\n.border-info-500\\/95{\nborder-color: color(from #00bfff srgb r g b / 0.95);\n}\n.border-info-600{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / var(--tw-border-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-info-600\\/0{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-info-600\\/10{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-info-600\\/100{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-info-600\\/15{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-info-600\\/20{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-info-600\\/25{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-info-600\\/30{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-info-600\\/35{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-info-600\\/40{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-info-600\\/45{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-info-600\\/5{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-info-600\\/50{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-info-600\\/55{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-info-600\\/60{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-info-600\\/65{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-info-600\\/70{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-info-600\\/75{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-info-600\\/80{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-info-600\\/85{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-info-600\\/90{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-info-600\\/95{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-info-700{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / var(--tw-border-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-info-700\\/0{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-info-700\\/10{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-info-700\\/100{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-info-700\\/15{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-info-700\\/20{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-info-700\\/25{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-info-700\\/30{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-info-700\\/35{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-info-700\\/40{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-info-700\\/45{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-info-700\\/5{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-info-700\\/50{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-info-700\\/55{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-info-700\\/60{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-info-700\\/65{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-info-700\\/70{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-info-700\\/75{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-info-700\\/80{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-info-700\\/85{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-info-700\\/90{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-info-700\\/95{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-info-800{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / var(--tw-border-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-info-800\\/0{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-info-800\\/10{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-info-800\\/100{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-info-800\\/15{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-info-800\\/20{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-info-800\\/25{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-info-800\\/30{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-info-800\\/35{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-info-800\\/40{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-info-800\\/45{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-info-800\\/5{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-info-800\\/50{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-info-800\\/55{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-info-800\\/60{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-info-800\\/65{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-info-800\\/70{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-info-800\\/75{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-info-800\\/80{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-info-800\\/85{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-info-800\\/90{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-info-800\\/95{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-info-900{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / var(--tw-border-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-info-900\\/0{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-info-900\\/10{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-info-900\\/100{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-info-900\\/15{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-info-900\\/20{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-info-900\\/25{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-info-900\\/30{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-info-900\\/35{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-info-900\\/40{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-info-900\\/45{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-info-900\\/5{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-info-900\\/50{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-info-900\\/55{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-info-900\\/60{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-info-900\\/65{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-info-900\\/70{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-info-900\\/75{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-info-900\\/80{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-info-900\\/85{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-info-900\\/90{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-info-900\\/95{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-info-950{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / var(--tw-border-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-info-950\\/0{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-info-950\\/10{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-info-950\\/100{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-info-950\\/15{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-info-950\\/20{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-info-950\\/25{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-info-950\\/30{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-info-950\\/35{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-info-950\\/40{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-info-950\\/45{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-info-950\\/5{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-info-950\\/50{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-info-950\\/55{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-info-950\\/60{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-info-950\\/65{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-info-950\\/70{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-info-950\\/75{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-info-950\\/80{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-info-950\\/85{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-info-950\\/90{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-info-950\\/95{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-info\\/0{\nborder-color: rgb(0 191 255 / 0);\n}\n.border-info\\/10{\nborder-color: rgb(0 191 255 / 0.1);\n}\n.border-info\\/100{\nborder-color: rgb(0 191 255 / 1);\n}\n.border-info\\/15{\nborder-color: rgb(0 191 255 / 0.15);\n}\n.border-info\\/20{\nborder-color: rgb(0 191 255 / 0.2);\n}\n.border-info\\/25{\nborder-color: rgb(0 191 255 / 0.25);\n}\n.border-info\\/30{\nborder-color: rgb(0 191 255 / 0.3);\n}\n.border-info\\/35{\nborder-color: rgb(0 191 255 / 0.35);\n}\n.border-info\\/40{\nborder-color: rgb(0 191 255 / 0.4);\n}\n.border-info\\/45{\nborder-color: rgb(0 191 255 / 0.45);\n}\n.border-info\\/5{\nborder-color: rgb(0 191 255 / 0.05);\n}\n.border-info\\/50{\nborder-color: rgb(0 191 255 / 0.5);\n}\n.border-info\\/55{\nborder-color: rgb(0 191 255 / 0.55);\n}\n.border-info\\/60{\nborder-color: rgb(0 191 255 / 0.6);\n}\n.border-info\\/65{\nborder-color: rgb(0 191 255 / 0.65);\n}\n.border-info\\/70{\nborder-color: rgb(0 191 255 / 0.7);\n}\n.border-info\\/75{\nborder-color: rgb(0 191 255 / 0.75);\n}\n.border-info\\/80{\nborder-color: rgb(0 191 255 / 0.8);\n}\n.border-info\\/85{\nborder-color: rgb(0 191 255 / 0.85);\n}\n.border-info\\/90{\nborder-color: rgb(0 191 255 / 0.9);\n}\n.border-info\\/95{\nborder-color: rgb(0 191 255 / 0.95);\n}\n.border-iris{\n--tw-border-opacity: 1;\nborder-color: rgb(91 91 214 / var(--tw-border-opacity));\n}\n.border-iris-100{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / var(--tw-border-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-iris-100\\/0{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-iris-100\\/10{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-iris-100\\/100{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-iris-100\\/15{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-iris-100\\/20{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-iris-100\\/25{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-iris-100\\/30{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-iris-100\\/35{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-iris-100\\/40{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-iris-100\\/45{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-iris-100\\/5{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-iris-100\\/50{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-iris-100\\/55{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-iris-100\\/60{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-iris-100\\/65{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-iris-100\\/70{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-iris-100\\/75{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-iris-100\\/80{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-iris-100\\/85{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-iris-100\\/90{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-iris-100\\/95{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-iris-200{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / var(--tw-border-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-iris-200\\/0{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-iris-200\\/10{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-iris-200\\/100{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-iris-200\\/15{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-iris-200\\/20{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-iris-200\\/25{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-iris-200\\/30{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-iris-200\\/35{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-iris-200\\/40{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-iris-200\\/45{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-iris-200\\/5{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-iris-200\\/50{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-iris-200\\/55{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-iris-200\\/60{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-iris-200\\/65{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-iris-200\\/70{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-iris-200\\/75{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-iris-200\\/80{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-iris-200\\/85{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-iris-200\\/90{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-iris-200\\/95{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-iris-300{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / var(--tw-border-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-iris-300\\/0{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-iris-300\\/10{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-iris-300\\/100{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-iris-300\\/15{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-iris-300\\/20{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-iris-300\\/25{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-iris-300\\/30{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-iris-300\\/35{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-iris-300\\/40{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-iris-300\\/45{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-iris-300\\/5{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-iris-300\\/50{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-iris-300\\/55{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-iris-300\\/60{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-iris-300\\/65{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-iris-300\\/70{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-iris-300\\/75{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-iris-300\\/80{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-iris-300\\/85{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-iris-300\\/90{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-iris-300\\/95{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-iris-400{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / var(--tw-border-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-iris-400\\/0{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-iris-400\\/10{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-iris-400\\/100{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-iris-400\\/15{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-iris-400\\/20{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-iris-400\\/25{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-iris-400\\/30{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-iris-400\\/35{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-iris-400\\/40{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-iris-400\\/45{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-iris-400\\/5{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-iris-400\\/50{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-iris-400\\/55{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-iris-400\\/60{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-iris-400\\/65{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-iris-400\\/70{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-iris-400\\/75{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-iris-400\\/80{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-iris-400\\/85{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-iris-400\\/90{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-iris-400\\/95{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-iris-50{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / var(--tw-border-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-iris-50\\/0{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-iris-50\\/10{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-iris-50\\/100{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-iris-50\\/15{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-iris-50\\/20{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-iris-50\\/25{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-iris-50\\/30{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-iris-50\\/35{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-iris-50\\/40{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-iris-50\\/45{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-iris-50\\/5{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-iris-50\\/50{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-iris-50\\/55{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-iris-50\\/60{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-iris-50\\/65{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-iris-50\\/70{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-iris-50\\/75{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-iris-50\\/80{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-iris-50\\/85{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-iris-50\\/90{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-iris-50\\/95{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-iris-500{\n--tw-border-opacity: 1;\nborder-color: color(from #5b5bd6 srgb r g b / var(--tw-border-opacity));\n}\n.border-iris-500\\/0{\nborder-color: color(from #5b5bd6 srgb r g b / 0);\n}\n.border-iris-500\\/10{\nborder-color: color(from #5b5bd6 srgb r g b / 0.1);\n}\n.border-iris-500\\/100{\nborder-color: color(from #5b5bd6 srgb r g b / 1);\n}\n.border-iris-500\\/15{\nborder-color: color(from #5b5bd6 srgb r g b / 0.15);\n}\n.border-iris-500\\/20{\nborder-color: color(from #5b5bd6 srgb r g b / 0.2);\n}\n.border-iris-500\\/25{\nborder-color: color(from #5b5bd6 srgb r g b / 0.25);\n}\n.border-iris-500\\/30{\nborder-color: color(from #5b5bd6 srgb r g b / 0.3);\n}\n.border-iris-500\\/35{\nborder-color: color(from #5b5bd6 srgb r g b / 0.35);\n}\n.border-iris-500\\/40{\nborder-color: color(from #5b5bd6 srgb r g b / 0.4);\n}\n.border-iris-500\\/45{\nborder-color: color(from #5b5bd6 srgb r g b / 0.45);\n}\n.border-iris-500\\/5{\nborder-color: color(from #5b5bd6 srgb r g b / 0.05);\n}\n.border-iris-500\\/50{\nborder-color: color(from #5b5bd6 srgb r g b / 0.5);\n}\n.border-iris-500\\/55{\nborder-color: color(from #5b5bd6 srgb r g b / 0.55);\n}\n.border-iris-500\\/60{\nborder-color: color(from #5b5bd6 srgb r g b / 0.6);\n}\n.border-iris-500\\/65{\nborder-color: color(from #5b5bd6 srgb r g b / 0.65);\n}\n.border-iris-500\\/70{\nborder-color: color(from #5b5bd6 srgb r g b / 0.7);\n}\n.border-iris-500\\/75{\nborder-color: color(from #5b5bd6 srgb r g b / 0.75);\n}\n.border-iris-500\\/80{\nborder-color: color(from #5b5bd6 srgb r g b / 0.8);\n}\n.border-iris-500\\/85{\nborder-color: color(from #5b5bd6 srgb r g b / 0.85);\n}\n.border-iris-500\\/90{\nborder-color: color(from #5b5bd6 srgb r g b / 0.9);\n}\n.border-iris-500\\/95{\nborder-color: color(from #5b5bd6 srgb r g b / 0.95);\n}\n.border-iris-600{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / var(--tw-border-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-iris-600\\/0{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-iris-600\\/10{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-iris-600\\/100{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-iris-600\\/15{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-iris-600\\/20{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-iris-600\\/25{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-iris-600\\/30{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-iris-600\\/35{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-iris-600\\/40{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-iris-600\\/45{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-iris-600\\/5{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-iris-600\\/50{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-iris-600\\/55{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-iris-600\\/60{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-iris-600\\/65{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-iris-600\\/70{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-iris-600\\/75{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-iris-600\\/80{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-iris-600\\/85{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-iris-600\\/90{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-iris-600\\/95{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-iris-700{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / var(--tw-border-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-iris-700\\/0{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-iris-700\\/10{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-iris-700\\/100{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-iris-700\\/15{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-iris-700\\/20{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-iris-700\\/25{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-iris-700\\/30{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-iris-700\\/35{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-iris-700\\/40{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-iris-700\\/45{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-iris-700\\/5{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-iris-700\\/50{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-iris-700\\/55{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-iris-700\\/60{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-iris-700\\/65{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-iris-700\\/70{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-iris-700\\/75{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-iris-700\\/80{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-iris-700\\/85{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-iris-700\\/90{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-iris-700\\/95{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-iris-800{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / var(--tw-border-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-iris-800\\/0{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-iris-800\\/10{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-iris-800\\/100{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-iris-800\\/15{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-iris-800\\/20{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-iris-800\\/25{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-iris-800\\/30{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-iris-800\\/35{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-iris-800\\/40{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-iris-800\\/45{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-iris-800\\/5{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-iris-800\\/50{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-iris-800\\/55{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-iris-800\\/60{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-iris-800\\/65{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-iris-800\\/70{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-iris-800\\/75{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-iris-800\\/80{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-iris-800\\/85{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-iris-800\\/90{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-iris-800\\/95{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-iris-900{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / var(--tw-border-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-iris-900\\/0{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-iris-900\\/10{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-iris-900\\/100{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-iris-900\\/15{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-iris-900\\/20{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-iris-900\\/25{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-iris-900\\/30{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-iris-900\\/35{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-iris-900\\/40{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-iris-900\\/45{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-iris-900\\/5{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-iris-900\\/50{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-iris-900\\/55{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-iris-900\\/60{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-iris-900\\/65{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-iris-900\\/70{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-iris-900\\/75{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-iris-900\\/80{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-iris-900\\/85{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-iris-900\\/90{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-iris-900\\/95{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-iris-950{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / var(--tw-border-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-iris-950\\/0{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-iris-950\\/10{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-iris-950\\/100{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-iris-950\\/15{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-iris-950\\/20{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-iris-950\\/25{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-iris-950\\/30{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-iris-950\\/35{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-iris-950\\/40{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-iris-950\\/45{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-iris-950\\/5{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-iris-950\\/50{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-iris-950\\/55{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-iris-950\\/60{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-iris-950\\/65{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-iris-950\\/70{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-iris-950\\/75{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-iris-950\\/80{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-iris-950\\/85{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-iris-950\\/90{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-iris-950\\/95{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-iris\\/0{\nborder-color: rgb(91 91 214 / 0);\n}\n.border-iris\\/10{\nborder-color: rgb(91 91 214 / 0.1);\n}\n.border-iris\\/100{\nborder-color: rgb(91 91 214 / 1);\n}\n.border-iris\\/15{\nborder-color: rgb(91 91 214 / 0.15);\n}\n.border-iris\\/20{\nborder-color: rgb(91 91 214 / 0.2);\n}\n.border-iris\\/25{\nborder-color: rgb(91 91 214 / 0.25);\n}\n.border-iris\\/30{\nborder-color: rgb(91 91 214 / 0.3);\n}\n.border-iris\\/35{\nborder-color: rgb(91 91 214 / 0.35);\n}\n.border-iris\\/40{\nborder-color: rgb(91 91 214 / 0.4);\n}\n.border-iris\\/45{\nborder-color: rgb(91 91 214 / 0.45);\n}\n.border-iris\\/5{\nborder-color: rgb(91 91 214 / 0.05);\n}\n.border-iris\\/50{\nborder-color: rgb(91 91 214 / 0.5);\n}\n.border-iris\\/55{\nborder-color: rgb(91 91 214 / 0.55);\n}\n.border-iris\\/60{\nborder-color: rgb(91 91 214 / 0.6);\n}\n.border-iris\\/65{\nborder-color: rgb(91 91 214 / 0.65);\n}\n.border-iris\\/70{\nborder-color: rgb(91 91 214 / 0.7);\n}\n.border-iris\\/75{\nborder-color: rgb(91 91 214 / 0.75);\n}\n.border-iris\\/80{\nborder-color: rgb(91 91 214 / 0.8);\n}\n.border-iris\\/85{\nborder-color: rgb(91 91 214 / 0.85);\n}\n.border-iris\\/90{\nborder-color: rgb(91 91 214 / 0.9);\n}\n.border-iris\\/95{\nborder-color: rgb(91 91 214 / 0.95);\n}\n.border-jade{\n--tw-border-opacity: 1;\nborder-color: rgb(41 163 131 / var(--tw-border-opacity));\n}\n.border-jade-100{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / var(--tw-border-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-jade-100\\/0{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-jade-100\\/10{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-jade-100\\/100{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-jade-100\\/15{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-jade-100\\/20{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-jade-100\\/25{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-jade-100\\/30{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-jade-100\\/35{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-jade-100\\/40{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-jade-100\\/45{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-jade-100\\/5{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-jade-100\\/50{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-jade-100\\/55{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-jade-100\\/60{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-jade-100\\/65{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-jade-100\\/70{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-jade-100\\/75{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-jade-100\\/80{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-jade-100\\/85{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-jade-100\\/90{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-jade-100\\/95{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-jade-200{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / var(--tw-border-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-jade-200\\/0{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-jade-200\\/10{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-jade-200\\/100{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-jade-200\\/15{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-jade-200\\/20{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-jade-200\\/25{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-jade-200\\/30{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-jade-200\\/35{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-jade-200\\/40{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-jade-200\\/45{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-jade-200\\/5{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-jade-200\\/50{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-jade-200\\/55{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-jade-200\\/60{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-jade-200\\/65{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-jade-200\\/70{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-jade-200\\/75{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-jade-200\\/80{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-jade-200\\/85{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-jade-200\\/90{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-jade-200\\/95{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-jade-300{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / var(--tw-border-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-jade-300\\/0{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-jade-300\\/10{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-jade-300\\/100{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-jade-300\\/15{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-jade-300\\/20{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-jade-300\\/25{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-jade-300\\/30{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-jade-300\\/35{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-jade-300\\/40{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-jade-300\\/45{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-jade-300\\/5{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-jade-300\\/50{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-jade-300\\/55{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-jade-300\\/60{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-jade-300\\/65{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-jade-300\\/70{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-jade-300\\/75{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-jade-300\\/80{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-jade-300\\/85{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-jade-300\\/90{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-jade-300\\/95{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-jade-400{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / var(--tw-border-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-jade-400\\/0{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-jade-400\\/10{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-jade-400\\/100{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-jade-400\\/15{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-jade-400\\/20{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-jade-400\\/25{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-jade-400\\/30{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-jade-400\\/35{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-jade-400\\/40{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-jade-400\\/45{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-jade-400\\/5{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-jade-400\\/50{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-jade-400\\/55{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-jade-400\\/60{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-jade-400\\/65{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-jade-400\\/70{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-jade-400\\/75{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-jade-400\\/80{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-jade-400\\/85{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-jade-400\\/90{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-jade-400\\/95{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-jade-50{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / var(--tw-border-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-jade-50\\/0{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-jade-50\\/10{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-jade-50\\/100{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-jade-50\\/15{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-jade-50\\/20{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-jade-50\\/25{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-jade-50\\/30{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-jade-50\\/35{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-jade-50\\/40{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-jade-50\\/45{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-jade-50\\/5{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-jade-50\\/50{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-jade-50\\/55{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-jade-50\\/60{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-jade-50\\/65{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-jade-50\\/70{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-jade-50\\/75{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-jade-50\\/80{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-jade-50\\/85{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-jade-50\\/90{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-jade-50\\/95{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-jade-500{\n--tw-border-opacity: 1;\nborder-color: color(from #29a383 srgb r g b / var(--tw-border-opacity));\n}\n.border-jade-500\\/0{\nborder-color: color(from #29a383 srgb r g b / 0);\n}\n.border-jade-500\\/10{\nborder-color: color(from #29a383 srgb r g b / 0.1);\n}\n.border-jade-500\\/100{\nborder-color: color(from #29a383 srgb r g b / 1);\n}\n.border-jade-500\\/15{\nborder-color: color(from #29a383 srgb r g b / 0.15);\n}\n.border-jade-500\\/20{\nborder-color: color(from #29a383 srgb r g b / 0.2);\n}\n.border-jade-500\\/25{\nborder-color: color(from #29a383 srgb r g b / 0.25);\n}\n.border-jade-500\\/30{\nborder-color: color(from #29a383 srgb r g b / 0.3);\n}\n.border-jade-500\\/35{\nborder-color: color(from #29a383 srgb r g b / 0.35);\n}\n.border-jade-500\\/40{\nborder-color: color(from #29a383 srgb r g b / 0.4);\n}\n.border-jade-500\\/45{\nborder-color: color(from #29a383 srgb r g b / 0.45);\n}\n.border-jade-500\\/5{\nborder-color: color(from #29a383 srgb r g b / 0.05);\n}\n.border-jade-500\\/50{\nborder-color: color(from #29a383 srgb r g b / 0.5);\n}\n.border-jade-500\\/55{\nborder-color: color(from #29a383 srgb r g b / 0.55);\n}\n.border-jade-500\\/60{\nborder-color: color(from #29a383 srgb r g b / 0.6);\n}\n.border-jade-500\\/65{\nborder-color: color(from #29a383 srgb r g b / 0.65);\n}\n.border-jade-500\\/70{\nborder-color: color(from #29a383 srgb r g b / 0.7);\n}\n.border-jade-500\\/75{\nborder-color: color(from #29a383 srgb r g b / 0.75);\n}\n.border-jade-500\\/80{\nborder-color: color(from #29a383 srgb r g b / 0.8);\n}\n.border-jade-500\\/85{\nborder-color: color(from #29a383 srgb r g b / 0.85);\n}\n.border-jade-500\\/90{\nborder-color: color(from #29a383 srgb r g b / 0.9);\n}\n.border-jade-500\\/95{\nborder-color: color(from #29a383 srgb r g b / 0.95);\n}\n.border-jade-600{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / var(--tw-border-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-jade-600\\/0{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-jade-600\\/10{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-jade-600\\/100{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-jade-600\\/15{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-jade-600\\/20{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-jade-600\\/25{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-jade-600\\/30{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-jade-600\\/35{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-jade-600\\/40{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-jade-600\\/45{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-jade-600\\/5{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-jade-600\\/50{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-jade-600\\/55{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-jade-600\\/60{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-jade-600\\/65{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-jade-600\\/70{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-jade-600\\/75{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-jade-600\\/80{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-jade-600\\/85{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-jade-600\\/90{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-jade-600\\/95{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-jade-700{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / var(--tw-border-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-jade-700\\/0{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-jade-700\\/10{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-jade-700\\/100{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-jade-700\\/15{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-jade-700\\/20{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-jade-700\\/25{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-jade-700\\/30{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-jade-700\\/35{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-jade-700\\/40{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-jade-700\\/45{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-jade-700\\/5{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-jade-700\\/50{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-jade-700\\/55{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-jade-700\\/60{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-jade-700\\/65{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-jade-700\\/70{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-jade-700\\/75{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-jade-700\\/80{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-jade-700\\/85{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-jade-700\\/90{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-jade-700\\/95{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-jade-800{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / var(--tw-border-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-jade-800\\/0{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-jade-800\\/10{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-jade-800\\/100{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-jade-800\\/15{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-jade-800\\/20{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-jade-800\\/25{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-jade-800\\/30{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-jade-800\\/35{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-jade-800\\/40{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-jade-800\\/45{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-jade-800\\/5{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-jade-800\\/50{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-jade-800\\/55{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-jade-800\\/60{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-jade-800\\/65{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-jade-800\\/70{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-jade-800\\/75{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-jade-800\\/80{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-jade-800\\/85{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-jade-800\\/90{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-jade-800\\/95{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-jade-900{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / var(--tw-border-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-jade-900\\/0{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-jade-900\\/10{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-jade-900\\/100{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-jade-900\\/15{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-jade-900\\/20{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-jade-900\\/25{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-jade-900\\/30{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-jade-900\\/35{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-jade-900\\/40{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-jade-900\\/45{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-jade-900\\/5{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-jade-900\\/50{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-jade-900\\/55{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-jade-900\\/60{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-jade-900\\/65{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-jade-900\\/70{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-jade-900\\/75{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-jade-900\\/80{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-jade-900\\/85{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-jade-900\\/90{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-jade-900\\/95{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-jade-950{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / var(--tw-border-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-jade-950\\/0{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-jade-950\\/10{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-jade-950\\/100{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-jade-950\\/15{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-jade-950\\/20{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-jade-950\\/25{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-jade-950\\/30{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-jade-950\\/35{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-jade-950\\/40{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-jade-950\\/45{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-jade-950\\/5{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-jade-950\\/50{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-jade-950\\/55{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-jade-950\\/60{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-jade-950\\/65{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-jade-950\\/70{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-jade-950\\/75{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-jade-950\\/80{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-jade-950\\/85{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-jade-950\\/90{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-jade-950\\/95{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-jade\\/0{\nborder-color: rgb(41 163 131 / 0);\n}\n.border-jade\\/10{\nborder-color: rgb(41 163 131 / 0.1);\n}\n.border-jade\\/100{\nborder-color: rgb(41 163 131 / 1);\n}\n.border-jade\\/15{\nborder-color: rgb(41 163 131 / 0.15);\n}\n.border-jade\\/20{\nborder-color: rgb(41 163 131 / 0.2);\n}\n.border-jade\\/25{\nborder-color: rgb(41 163 131 / 0.25);\n}\n.border-jade\\/30{\nborder-color: rgb(41 163 131 / 0.3);\n}\n.border-jade\\/35{\nborder-color: rgb(41 163 131 / 0.35);\n}\n.border-jade\\/40{\nborder-color: rgb(41 163 131 / 0.4);\n}\n.border-jade\\/45{\nborder-color: rgb(41 163 131 / 0.45);\n}\n.border-jade\\/5{\nborder-color: rgb(41 163 131 / 0.05);\n}\n.border-jade\\/50{\nborder-color: rgb(41 163 131 / 0.5);\n}\n.border-jade\\/55{\nborder-color: rgb(41 163 131 / 0.55);\n}\n.border-jade\\/60{\nborder-color: rgb(41 163 131 / 0.6);\n}\n.border-jade\\/65{\nborder-color: rgb(41 163 131 / 0.65);\n}\n.border-jade\\/70{\nborder-color: rgb(41 163 131 / 0.7);\n}\n.border-jade\\/75{\nborder-color: rgb(41 163 131 / 0.75);\n}\n.border-jade\\/80{\nborder-color: rgb(41 163 131 / 0.8);\n}\n.border-jade\\/85{\nborder-color: rgb(41 163 131 / 0.85);\n}\n.border-jade\\/90{\nborder-color: rgb(41 163 131 / 0.9);\n}\n.border-jade\\/95{\nborder-color: rgb(41 163 131 / 0.95);\n}\n.border-light{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from var(--white) srgb r g b / var(--tw-border-opacity)) 75%, color(from var(--tint) srgb r g b / var(--tw-border-opacity)));\n}\n.border-light\\/0{\nborder-color: color-mix(in lab, color(from var(--white) srgb r g b / 0) 75%, color(from var(--tint) srgb r g b / 0));\n}\n.border-light\\/10{\nborder-color: color-mix(in lab, color(from var(--white) srgb r g b / 0.1) 75%, color(from var(--tint) srgb r g b / 0.1));\n}\n.border-light\\/100{\nborder-color: color-mix(in lab, color(from var(--white) srgb r g b / 1) 75%, color(from var(--tint) srgb r g b / 1));\n}\n.border-light\\/15{\nborder-color: color-mix(in lab, color(from var(--white) srgb r g b / 0.15) 75%, color(from var(--tint) srgb r g b / 0.15));\n}\n.border-light\\/20{\nborder-color: color-mix(in lab, color(from var(--white) srgb r g b / 0.2) 75%, color(from var(--tint) srgb r g b / 0.2));\n}\n.border-light\\/25{\nborder-color: color-mix(in lab, color(from var(--white) srgb r g b / 0.25) 75%, color(from var(--tint) srgb r g b / 0.25));\n}\n.border-light\\/30{\nborder-color: color-mix(in lab, color(from var(--white) srgb r g b / 0.3) 75%, color(from var(--tint) srgb r g b / 0.3));\n}\n.border-light\\/35{\nborder-color: color-mix(in lab, color(from var(--white) srgb r g b / 0.35) 75%, color(from var(--tint) srgb r g b / 0.35));\n}\n.border-light\\/40{\nborder-color: color-mix(in lab, color(from var(--white) srgb r g b / 0.4) 75%, color(from var(--tint) srgb r g b / 0.4));\n}\n.border-light\\/45{\nborder-color: color-mix(in lab, color(from var(--white) srgb r g b / 0.45) 75%, color(from var(--tint) srgb r g b / 0.45));\n}\n.border-light\\/5{\nborder-color: color-mix(in lab, color(from var(--white) srgb r g b / 0.05) 75%, color(from var(--tint) srgb r g b / 0.05));\n}\n.border-light\\/50{\nborder-color: color-mix(in lab, color(from var(--white) srgb r g b / 0.5) 75%, color(from var(--tint) srgb r g b / 0.5));\n}\n.border-light\\/55{\nborder-color: color-mix(in lab, color(from var(--white) srgb r g b / 0.55) 75%, color(from var(--tint) srgb r g b / 0.55));\n}\n.border-light\\/60{\nborder-color: color-mix(in lab, color(from var(--white) srgb r g b / 0.6) 75%, color(from var(--tint) srgb r g b / 0.6));\n}\n.border-light\\/65{\nborder-color: color-mix(in lab, color(from var(--white) srgb r g b / 0.65) 75%, color(from var(--tint) srgb r g b / 0.65));\n}\n.border-light\\/70{\nborder-color: color-mix(in lab, color(from var(--white) srgb r g b / 0.7) 75%, color(from var(--tint) srgb r g b / 0.7));\n}\n.border-light\\/75{\nborder-color: color-mix(in lab, color(from var(--white) srgb r g b / 0.75) 75%, color(from var(--tint) srgb r g b / 0.75));\n}\n.border-light\\/80{\nborder-color: color-mix(in lab, color(from var(--white) srgb r g b / 0.8) 75%, color(from var(--tint) srgb r g b / 0.8));\n}\n.border-light\\/85{\nborder-color: color-mix(in lab, color(from var(--white) srgb r g b / 0.85) 75%, color(from var(--tint) srgb r g b / 0.85));\n}\n.border-light\\/90{\nborder-color: color-mix(in lab, color(from var(--white) srgb r g b / 0.9) 75%, color(from var(--tint) srgb r g b / 0.9));\n}\n.border-light\\/95{\nborder-color: color-mix(in lab, color(from var(--white) srgb r g b / 0.95) 75%, color(from var(--tint) srgb r g b / 0.95));\n}\n.border-lilac{\n--tw-border-opacity: 1;\nborder-color: rgb(142 78 198 / var(--tw-border-opacity));\n}\n.border-lilac-100{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / var(--tw-border-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-lilac-100\\/0{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-lilac-100\\/10{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-lilac-100\\/100{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-lilac-100\\/15{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-lilac-100\\/20{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-lilac-100\\/25{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-lilac-100\\/30{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-lilac-100\\/35{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-lilac-100\\/40{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-lilac-100\\/45{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-lilac-100\\/5{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-lilac-100\\/50{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-lilac-100\\/55{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-lilac-100\\/60{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-lilac-100\\/65{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-lilac-100\\/70{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-lilac-100\\/75{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-lilac-100\\/80{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-lilac-100\\/85{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-lilac-100\\/90{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-lilac-100\\/95{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-lilac-200{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / var(--tw-border-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-lilac-200\\/0{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-lilac-200\\/10{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-lilac-200\\/100{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-lilac-200\\/15{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-lilac-200\\/20{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-lilac-200\\/25{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-lilac-200\\/30{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-lilac-200\\/35{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-lilac-200\\/40{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-lilac-200\\/45{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-lilac-200\\/5{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-lilac-200\\/50{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-lilac-200\\/55{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-lilac-200\\/60{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-lilac-200\\/65{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-lilac-200\\/70{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-lilac-200\\/75{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-lilac-200\\/80{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-lilac-200\\/85{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-lilac-200\\/90{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-lilac-200\\/95{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-lilac-300{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / var(--tw-border-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-lilac-300\\/0{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-lilac-300\\/10{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-lilac-300\\/100{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-lilac-300\\/15{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-lilac-300\\/20{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-lilac-300\\/25{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-lilac-300\\/30{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-lilac-300\\/35{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-lilac-300\\/40{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-lilac-300\\/45{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-lilac-300\\/5{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-lilac-300\\/50{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-lilac-300\\/55{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-lilac-300\\/60{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-lilac-300\\/65{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-lilac-300\\/70{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-lilac-300\\/75{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-lilac-300\\/80{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-lilac-300\\/85{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-lilac-300\\/90{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-lilac-300\\/95{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-lilac-400{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / var(--tw-border-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-lilac-400\\/0{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-lilac-400\\/10{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-lilac-400\\/100{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-lilac-400\\/15{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-lilac-400\\/20{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-lilac-400\\/25{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-lilac-400\\/30{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-lilac-400\\/35{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-lilac-400\\/40{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-lilac-400\\/45{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-lilac-400\\/5{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-lilac-400\\/50{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-lilac-400\\/55{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-lilac-400\\/60{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-lilac-400\\/65{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-lilac-400\\/70{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-lilac-400\\/75{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-lilac-400\\/80{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-lilac-400\\/85{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-lilac-400\\/90{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-lilac-400\\/95{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-lilac-50{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / var(--tw-border-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-lilac-50\\/0{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-lilac-50\\/10{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-lilac-50\\/100{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-lilac-50\\/15{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-lilac-50\\/20{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-lilac-50\\/25{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-lilac-50\\/30{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-lilac-50\\/35{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-lilac-50\\/40{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-lilac-50\\/45{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-lilac-50\\/5{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-lilac-50\\/50{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-lilac-50\\/55{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-lilac-50\\/60{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-lilac-50\\/65{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-lilac-50\\/70{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-lilac-50\\/75{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-lilac-50\\/80{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-lilac-50\\/85{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-lilac-50\\/90{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-lilac-50\\/95{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-lilac-500{\n--tw-border-opacity: 1;\nborder-color: color(from #8e4ec6 srgb r g b / var(--tw-border-opacity));\n}\n.border-lilac-500\\/0{\nborder-color: color(from #8e4ec6 srgb r g b / 0);\n}\n.border-lilac-500\\/10{\nborder-color: color(from #8e4ec6 srgb r g b / 0.1);\n}\n.border-lilac-500\\/100{\nborder-color: color(from #8e4ec6 srgb r g b / 1);\n}\n.border-lilac-500\\/15{\nborder-color: color(from #8e4ec6 srgb r g b / 0.15);\n}\n.border-lilac-500\\/20{\nborder-color: color(from #8e4ec6 srgb r g b / 0.2);\n}\n.border-lilac-500\\/25{\nborder-color: color(from #8e4ec6 srgb r g b / 0.25);\n}\n.border-lilac-500\\/30{\nborder-color: color(from #8e4ec6 srgb r g b / 0.3);\n}\n.border-lilac-500\\/35{\nborder-color: color(from #8e4ec6 srgb r g b / 0.35);\n}\n.border-lilac-500\\/40{\nborder-color: color(from #8e4ec6 srgb r g b / 0.4);\n}\n.border-lilac-500\\/45{\nborder-color: color(from #8e4ec6 srgb r g b / 0.45);\n}\n.border-lilac-500\\/5{\nborder-color: color(from #8e4ec6 srgb r g b / 0.05);\n}\n.border-lilac-500\\/50{\nborder-color: color(from #8e4ec6 srgb r g b / 0.5);\n}\n.border-lilac-500\\/55{\nborder-color: color(from #8e4ec6 srgb r g b / 0.55);\n}\n.border-lilac-500\\/60{\nborder-color: color(from #8e4ec6 srgb r g b / 0.6);\n}\n.border-lilac-500\\/65{\nborder-color: color(from #8e4ec6 srgb r g b / 0.65);\n}\n.border-lilac-500\\/70{\nborder-color: color(from #8e4ec6 srgb r g b / 0.7);\n}\n.border-lilac-500\\/75{\nborder-color: color(from #8e4ec6 srgb r g b / 0.75);\n}\n.border-lilac-500\\/80{\nborder-color: color(from #8e4ec6 srgb r g b / 0.8);\n}\n.border-lilac-500\\/85{\nborder-color: color(from #8e4ec6 srgb r g b / 0.85);\n}\n.border-lilac-500\\/90{\nborder-color: color(from #8e4ec6 srgb r g b / 0.9);\n}\n.border-lilac-500\\/95{\nborder-color: color(from #8e4ec6 srgb r g b / 0.95);\n}\n.border-lilac-600{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / var(--tw-border-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-lilac-600\\/0{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-lilac-600\\/10{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-lilac-600\\/100{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-lilac-600\\/15{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-lilac-600\\/20{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-lilac-600\\/25{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-lilac-600\\/30{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-lilac-600\\/35{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-lilac-600\\/40{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-lilac-600\\/45{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-lilac-600\\/5{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-lilac-600\\/50{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-lilac-600\\/55{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-lilac-600\\/60{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-lilac-600\\/65{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-lilac-600\\/70{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-lilac-600\\/75{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-lilac-600\\/80{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-lilac-600\\/85{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-lilac-600\\/90{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-lilac-600\\/95{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-lilac-700{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / var(--tw-border-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-lilac-700\\/0{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-lilac-700\\/10{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-lilac-700\\/100{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-lilac-700\\/15{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-lilac-700\\/20{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-lilac-700\\/25{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-lilac-700\\/30{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-lilac-700\\/35{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-lilac-700\\/40{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-lilac-700\\/45{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-lilac-700\\/5{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-lilac-700\\/50{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-lilac-700\\/55{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-lilac-700\\/60{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-lilac-700\\/65{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-lilac-700\\/70{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-lilac-700\\/75{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-lilac-700\\/80{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-lilac-700\\/85{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-lilac-700\\/90{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-lilac-700\\/95{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-lilac-800{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / var(--tw-border-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-lilac-800\\/0{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-lilac-800\\/10{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-lilac-800\\/100{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-lilac-800\\/15{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-lilac-800\\/20{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-lilac-800\\/25{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-lilac-800\\/30{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-lilac-800\\/35{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-lilac-800\\/40{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-lilac-800\\/45{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-lilac-800\\/5{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-lilac-800\\/50{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-lilac-800\\/55{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-lilac-800\\/60{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-lilac-800\\/65{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-lilac-800\\/70{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-lilac-800\\/75{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-lilac-800\\/80{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-lilac-800\\/85{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-lilac-800\\/90{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-lilac-800\\/95{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-lilac-900{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / var(--tw-border-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-lilac-900\\/0{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-lilac-900\\/10{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-lilac-900\\/100{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-lilac-900\\/15{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-lilac-900\\/20{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-lilac-900\\/25{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-lilac-900\\/30{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-lilac-900\\/35{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-lilac-900\\/40{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-lilac-900\\/45{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-lilac-900\\/5{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-lilac-900\\/50{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-lilac-900\\/55{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-lilac-900\\/60{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-lilac-900\\/65{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-lilac-900\\/70{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-lilac-900\\/75{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-lilac-900\\/80{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-lilac-900\\/85{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-lilac-900\\/90{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-lilac-900\\/95{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-lilac-950{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / var(--tw-border-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-lilac-950\\/0{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-lilac-950\\/10{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-lilac-950\\/100{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-lilac-950\\/15{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-lilac-950\\/20{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-lilac-950\\/25{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-lilac-950\\/30{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-lilac-950\\/35{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-lilac-950\\/40{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-lilac-950\\/45{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-lilac-950\\/5{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-lilac-950\\/50{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-lilac-950\\/55{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-lilac-950\\/60{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-lilac-950\\/65{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-lilac-950\\/70{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-lilac-950\\/75{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-lilac-950\\/80{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-lilac-950\\/85{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-lilac-950\\/90{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-lilac-950\\/95{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-lilac\\/0{\nborder-color: rgb(142 78 198 / 0);\n}\n.border-lilac\\/10{\nborder-color: rgb(142 78 198 / 0.1);\n}\n.border-lilac\\/100{\nborder-color: rgb(142 78 198 / 1);\n}\n.border-lilac\\/15{\nborder-color: rgb(142 78 198 / 0.15);\n}\n.border-lilac\\/20{\nborder-color: rgb(142 78 198 / 0.2);\n}\n.border-lilac\\/25{\nborder-color: rgb(142 78 198 / 0.25);\n}\n.border-lilac\\/30{\nborder-color: rgb(142 78 198 / 0.3);\n}\n.border-lilac\\/35{\nborder-color: rgb(142 78 198 / 0.35);\n}\n.border-lilac\\/40{\nborder-color: rgb(142 78 198 / 0.4);\n}\n.border-lilac\\/45{\nborder-color: rgb(142 78 198 / 0.45);\n}\n.border-lilac\\/5{\nborder-color: rgb(142 78 198 / 0.05);\n}\n.border-lilac\\/50{\nborder-color: rgb(142 78 198 / 0.5);\n}\n.border-lilac\\/55{\nborder-color: rgb(142 78 198 / 0.55);\n}\n.border-lilac\\/60{\nborder-color: rgb(142 78 198 / 0.6);\n}\n.border-lilac\\/65{\nborder-color: rgb(142 78 198 / 0.65);\n}\n.border-lilac\\/70{\nborder-color: rgb(142 78 198 / 0.7);\n}\n.border-lilac\\/75{\nborder-color: rgb(142 78 198 / 0.75);\n}\n.border-lilac\\/80{\nborder-color: rgb(142 78 198 / 0.8);\n}\n.border-lilac\\/85{\nborder-color: rgb(142 78 198 / 0.85);\n}\n.border-lilac\\/90{\nborder-color: rgb(142 78 198 / 0.9);\n}\n.border-lilac\\/95{\nborder-color: rgb(142 78 198 / 0.95);\n}\n.border-marigold{\n--tw-border-opacity: 1;\nborder-color: rgb(255 193 0 / var(--tw-border-opacity));\n}\n.border-marigold-100{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / var(--tw-border-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-marigold-100\\/0{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-marigold-100\\/10{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-marigold-100\\/100{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-marigold-100\\/15{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-marigold-100\\/20{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-marigold-100\\/25{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-marigold-100\\/30{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-marigold-100\\/35{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-marigold-100\\/40{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-marigold-100\\/45{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-marigold-100\\/5{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-marigold-100\\/50{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-marigold-100\\/55{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-marigold-100\\/60{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-marigold-100\\/65{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-marigold-100\\/70{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-marigold-100\\/75{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-marigold-100\\/80{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-marigold-100\\/85{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-marigold-100\\/90{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-marigold-100\\/95{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-marigold-200{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / var(--tw-border-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-marigold-200\\/0{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-marigold-200\\/10{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-marigold-200\\/100{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-marigold-200\\/15{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-marigold-200\\/20{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-marigold-200\\/25{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-marigold-200\\/30{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-marigold-200\\/35{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-marigold-200\\/40{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-marigold-200\\/45{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-marigold-200\\/5{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-marigold-200\\/50{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-marigold-200\\/55{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-marigold-200\\/60{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-marigold-200\\/65{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-marigold-200\\/70{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-marigold-200\\/75{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-marigold-200\\/80{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-marigold-200\\/85{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-marigold-200\\/90{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-marigold-200\\/95{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-marigold-300{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / var(--tw-border-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-marigold-300\\/0{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-marigold-300\\/10{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-marigold-300\\/100{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-marigold-300\\/15{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-marigold-300\\/20{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-marigold-300\\/25{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-marigold-300\\/30{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-marigold-300\\/35{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-marigold-300\\/40{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-marigold-300\\/45{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-marigold-300\\/5{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-marigold-300\\/50{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-marigold-300\\/55{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-marigold-300\\/60{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-marigold-300\\/65{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-marigold-300\\/70{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-marigold-300\\/75{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-marigold-300\\/80{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-marigold-300\\/85{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-marigold-300\\/90{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-marigold-300\\/95{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-marigold-400{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / var(--tw-border-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-marigold-400\\/0{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-marigold-400\\/10{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-marigold-400\\/100{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-marigold-400\\/15{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-marigold-400\\/20{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-marigold-400\\/25{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-marigold-400\\/30{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-marigold-400\\/35{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-marigold-400\\/40{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-marigold-400\\/45{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-marigold-400\\/5{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-marigold-400\\/50{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-marigold-400\\/55{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-marigold-400\\/60{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-marigold-400\\/65{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-marigold-400\\/70{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-marigold-400\\/75{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-marigold-400\\/80{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-marigold-400\\/85{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-marigold-400\\/90{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-marigold-400\\/95{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-marigold-50{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / var(--tw-border-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-marigold-50\\/0{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-marigold-50\\/10{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-marigold-50\\/100{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-marigold-50\\/15{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-marigold-50\\/20{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-marigold-50\\/25{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-marigold-50\\/30{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-marigold-50\\/35{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-marigold-50\\/40{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-marigold-50\\/45{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-marigold-50\\/5{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-marigold-50\\/50{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-marigold-50\\/55{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-marigold-50\\/60{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-marigold-50\\/65{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-marigold-50\\/70{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-marigold-50\\/75{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-marigold-50\\/80{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-marigold-50\\/85{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-marigold-50\\/90{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-marigold-50\\/95{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-marigold-500{\n--tw-border-opacity: 1;\nborder-color: color(from #ffc100 srgb r g b / var(--tw-border-opacity));\n}\n.border-marigold-500\\/0{\nborder-color: color(from #ffc100 srgb r g b / 0);\n}\n.border-marigold-500\\/10{\nborder-color: color(from #ffc100 srgb r g b / 0.1);\n}\n.border-marigold-500\\/100{\nborder-color: color(from #ffc100 srgb r g b / 1);\n}\n.border-marigold-500\\/15{\nborder-color: color(from #ffc100 srgb r g b / 0.15);\n}\n.border-marigold-500\\/20{\nborder-color: color(from #ffc100 srgb r g b / 0.2);\n}\n.border-marigold-500\\/25{\nborder-color: color(from #ffc100 srgb r g b / 0.25);\n}\n.border-marigold-500\\/30{\nborder-color: color(from #ffc100 srgb r g b / 0.3);\n}\n.border-marigold-500\\/35{\nborder-color: color(from #ffc100 srgb r g b / 0.35);\n}\n.border-marigold-500\\/40{\nborder-color: color(from #ffc100 srgb r g b / 0.4);\n}\n.border-marigold-500\\/45{\nborder-color: color(from #ffc100 srgb r g b / 0.45);\n}\n.border-marigold-500\\/5{\nborder-color: color(from #ffc100 srgb r g b / 0.05);\n}\n.border-marigold-500\\/50{\nborder-color: color(from #ffc100 srgb r g b / 0.5);\n}\n.border-marigold-500\\/55{\nborder-color: color(from #ffc100 srgb r g b / 0.55);\n}\n.border-marigold-500\\/60{\nborder-color: color(from #ffc100 srgb r g b / 0.6);\n}\n.border-marigold-500\\/65{\nborder-color: color(from #ffc100 srgb r g b / 0.65);\n}\n.border-marigold-500\\/70{\nborder-color: color(from #ffc100 srgb r g b / 0.7);\n}\n.border-marigold-500\\/75{\nborder-color: color(from #ffc100 srgb r g b / 0.75);\n}\n.border-marigold-500\\/80{\nborder-color: color(from #ffc100 srgb r g b / 0.8);\n}\n.border-marigold-500\\/85{\nborder-color: color(from #ffc100 srgb r g b / 0.85);\n}\n.border-marigold-500\\/90{\nborder-color: color(from #ffc100 srgb r g b / 0.9);\n}\n.border-marigold-500\\/95{\nborder-color: color(from #ffc100 srgb r g b / 0.95);\n}\n.border-marigold-600{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / var(--tw-border-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-marigold-600\\/0{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-marigold-600\\/10{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-marigold-600\\/100{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-marigold-600\\/15{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-marigold-600\\/20{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-marigold-600\\/25{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-marigold-600\\/30{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-marigold-600\\/35{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-marigold-600\\/40{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-marigold-600\\/45{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-marigold-600\\/5{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-marigold-600\\/50{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-marigold-600\\/55{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-marigold-600\\/60{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-marigold-600\\/65{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-marigold-600\\/70{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-marigold-600\\/75{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-marigold-600\\/80{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-marigold-600\\/85{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-marigold-600\\/90{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-marigold-600\\/95{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-marigold-700{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / var(--tw-border-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-marigold-700\\/0{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-marigold-700\\/10{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-marigold-700\\/100{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-marigold-700\\/15{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-marigold-700\\/20{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-marigold-700\\/25{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-marigold-700\\/30{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-marigold-700\\/35{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-marigold-700\\/40{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-marigold-700\\/45{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-marigold-700\\/5{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-marigold-700\\/50{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-marigold-700\\/55{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-marigold-700\\/60{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-marigold-700\\/65{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-marigold-700\\/70{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-marigold-700\\/75{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-marigold-700\\/80{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-marigold-700\\/85{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-marigold-700\\/90{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-marigold-700\\/95{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-marigold-800{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / var(--tw-border-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-marigold-800\\/0{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-marigold-800\\/10{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-marigold-800\\/100{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-marigold-800\\/15{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-marigold-800\\/20{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-marigold-800\\/25{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-marigold-800\\/30{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-marigold-800\\/35{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-marigold-800\\/40{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-marigold-800\\/45{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-marigold-800\\/5{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-marigold-800\\/50{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-marigold-800\\/55{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-marigold-800\\/60{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-marigold-800\\/65{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-marigold-800\\/70{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-marigold-800\\/75{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-marigold-800\\/80{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-marigold-800\\/85{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-marigold-800\\/90{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-marigold-800\\/95{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-marigold-900{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / var(--tw-border-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-marigold-900\\/0{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-marigold-900\\/10{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-marigold-900\\/100{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-marigold-900\\/15{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-marigold-900\\/20{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-marigold-900\\/25{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-marigold-900\\/30{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-marigold-900\\/35{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-marigold-900\\/40{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-marigold-900\\/45{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-marigold-900\\/5{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-marigold-900\\/50{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-marigold-900\\/55{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-marigold-900\\/60{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-marigold-900\\/65{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-marigold-900\\/70{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-marigold-900\\/75{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-marigold-900\\/80{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-marigold-900\\/85{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-marigold-900\\/90{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-marigold-900\\/95{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-marigold-950{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / var(--tw-border-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-marigold-950\\/0{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-marigold-950\\/10{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-marigold-950\\/100{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-marigold-950\\/15{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-marigold-950\\/20{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-marigold-950\\/25{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-marigold-950\\/30{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-marigold-950\\/35{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-marigold-950\\/40{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-marigold-950\\/45{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-marigold-950\\/5{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-marigold-950\\/50{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-marigold-950\\/55{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-marigold-950\\/60{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-marigold-950\\/65{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-marigold-950\\/70{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-marigold-950\\/75{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-marigold-950\\/80{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-marigold-950\\/85{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-marigold-950\\/90{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-marigold-950\\/95{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-marigold\\/0{\nborder-color: rgb(255 193 0 / 0);\n}\n.border-marigold\\/10{\nborder-color: rgb(255 193 0 / 0.1);\n}\n.border-marigold\\/100{\nborder-color: rgb(255 193 0 / 1);\n}\n.border-marigold\\/15{\nborder-color: rgb(255 193 0 / 0.15);\n}\n.border-marigold\\/20{\nborder-color: rgb(255 193 0 / 0.2);\n}\n.border-marigold\\/25{\nborder-color: rgb(255 193 0 / 0.25);\n}\n.border-marigold\\/30{\nborder-color: rgb(255 193 0 / 0.3);\n}\n.border-marigold\\/35{\nborder-color: rgb(255 193 0 / 0.35);\n}\n.border-marigold\\/40{\nborder-color: rgb(255 193 0 / 0.4);\n}\n.border-marigold\\/45{\nborder-color: rgb(255 193 0 / 0.45);\n}\n.border-marigold\\/5{\nborder-color: rgb(255 193 0 / 0.05);\n}\n.border-marigold\\/50{\nborder-color: rgb(255 193 0 / 0.5);\n}\n.border-marigold\\/55{\nborder-color: rgb(255 193 0 / 0.55);\n}\n.border-marigold\\/60{\nborder-color: rgb(255 193 0 / 0.6);\n}\n.border-marigold\\/65{\nborder-color: rgb(255 193 0 / 0.65);\n}\n.border-marigold\\/70{\nborder-color: rgb(255 193 0 / 0.7);\n}\n.border-marigold\\/75{\nborder-color: rgb(255 193 0 / 0.75);\n}\n.border-marigold\\/80{\nborder-color: rgb(255 193 0 / 0.8);\n}\n.border-marigold\\/85{\nborder-color: rgb(255 193 0 / 0.85);\n}\n.border-marigold\\/90{\nborder-color: rgb(255 193 0 / 0.9);\n}\n.border-marigold\\/95{\nborder-color: rgb(255 193 0 / 0.95);\n}\n.border-muted{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)) 80%, color(from var(--tint) srgb r g b / var(--tw-border-opacity)));\n}\n.border-muted\\/0{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0) 80%, color(from var(--tint) srgb r g b / 0));\n}\n.border-muted\\/10{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.1) 80%, color(from var(--tint) srgb r g b / 0.1));\n}\n.border-muted\\/100{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 80%, color(from var(--tint) srgb r g b / 1));\n}\n.border-muted\\/15{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.15) 80%, color(from var(--tint) srgb r g b / 0.15));\n}\n.border-muted\\/20{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.2) 80%, color(from var(--tint) srgb r g b / 0.2));\n}\n.border-muted\\/25{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.25) 80%, color(from var(--tint) srgb r g b / 0.25));\n}\n.border-muted\\/30{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.3) 80%, color(from var(--tint) srgb r g b / 0.3));\n}\n.border-muted\\/35{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.35) 80%, color(from var(--tint) srgb r g b / 0.35));\n}\n.border-muted\\/40{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.4) 80%, color(from var(--tint) srgb r g b / 0.4));\n}\n.border-muted\\/45{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.45) 80%, color(from var(--tint) srgb r g b / 0.45));\n}\n.border-muted\\/5{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.05) 80%, color(from var(--tint) srgb r g b / 0.05));\n}\n.border-muted\\/50{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.5) 80%, color(from var(--tint) srgb r g b / 0.5));\n}\n.border-muted\\/55{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.55) 80%, color(from var(--tint) srgb r g b / 0.55));\n}\n.border-muted\\/60{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.6) 80%, color(from var(--tint) srgb r g b / 0.6));\n}\n.border-muted\\/65{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.65) 80%, color(from var(--tint) srgb r g b / 0.65));\n}\n.border-muted\\/70{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.7) 80%, color(from var(--tint) srgb r g b / 0.7));\n}\n.border-muted\\/75{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.75) 80%, color(from var(--tint) srgb r g b / 0.75));\n}\n.border-muted\\/80{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.8) 80%, color(from var(--tint) srgb r g b / 0.8));\n}\n.border-muted\\/85{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.85) 80%, color(from var(--tint) srgb r g b / 0.85));\n}\n.border-muted\\/90{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.9) 80%, color(from var(--tint) srgb r g b / 0.9));\n}\n.border-muted\\/95{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.95) 80%, color(from var(--tint) srgb r g b / 0.95));\n}\n.border-olive{\n--tw-border-opacity: 1;\nborder-color: rgb(118 155 141 / var(--tw-border-opacity));\n}\n.border-olive-100{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / var(--tw-border-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-olive-100\\/0{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-olive-100\\/10{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-olive-100\\/100{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-olive-100\\/15{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-olive-100\\/20{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-olive-100\\/25{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-olive-100\\/30{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-olive-100\\/35{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-olive-100\\/40{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-olive-100\\/45{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-olive-100\\/5{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-olive-100\\/50{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-olive-100\\/55{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-olive-100\\/60{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-olive-100\\/65{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-olive-100\\/70{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-olive-100\\/75{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-olive-100\\/80{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-olive-100\\/85{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-olive-100\\/90{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-olive-100\\/95{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-olive-200{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / var(--tw-border-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-olive-200\\/0{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-olive-200\\/10{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-olive-200\\/100{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-olive-200\\/15{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-olive-200\\/20{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-olive-200\\/25{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-olive-200\\/30{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-olive-200\\/35{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-olive-200\\/40{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-olive-200\\/45{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-olive-200\\/5{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-olive-200\\/50{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-olive-200\\/55{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-olive-200\\/60{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-olive-200\\/65{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-olive-200\\/70{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-olive-200\\/75{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-olive-200\\/80{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-olive-200\\/85{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-olive-200\\/90{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-olive-200\\/95{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-olive-300{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / var(--tw-border-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-olive-300\\/0{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-olive-300\\/10{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-olive-300\\/100{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-olive-300\\/15{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-olive-300\\/20{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-olive-300\\/25{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-olive-300\\/30{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-olive-300\\/35{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-olive-300\\/40{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-olive-300\\/45{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-olive-300\\/5{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-olive-300\\/50{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-olive-300\\/55{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-olive-300\\/60{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-olive-300\\/65{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-olive-300\\/70{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-olive-300\\/75{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-olive-300\\/80{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-olive-300\\/85{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-olive-300\\/90{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-olive-300\\/95{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-olive-400{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / var(--tw-border-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-olive-400\\/0{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-olive-400\\/10{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-olive-400\\/100{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-olive-400\\/15{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-olive-400\\/20{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-olive-400\\/25{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-olive-400\\/30{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-olive-400\\/35{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-olive-400\\/40{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-olive-400\\/45{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-olive-400\\/5{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-olive-400\\/50{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-olive-400\\/55{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-olive-400\\/60{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-olive-400\\/65{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-olive-400\\/70{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-olive-400\\/75{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-olive-400\\/80{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-olive-400\\/85{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-olive-400\\/90{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-olive-400\\/95{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-olive-50{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / var(--tw-border-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-olive-50\\/0{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-olive-50\\/10{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-olive-50\\/100{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-olive-50\\/15{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-olive-50\\/20{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-olive-50\\/25{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-olive-50\\/30{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-olive-50\\/35{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-olive-50\\/40{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-olive-50\\/45{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-olive-50\\/5{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-olive-50\\/50{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-olive-50\\/55{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-olive-50\\/60{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-olive-50\\/65{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-olive-50\\/70{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-olive-50\\/75{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-olive-50\\/80{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-olive-50\\/85{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-olive-50\\/90{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-olive-50\\/95{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-olive-500{\n--tw-border-opacity: 1;\nborder-color: color(from #769b8d srgb r g b / var(--tw-border-opacity));\n}\n.border-olive-500\\/0{\nborder-color: color(from #769b8d srgb r g b / 0);\n}\n.border-olive-500\\/10{\nborder-color: color(from #769b8d srgb r g b / 0.1);\n}\n.border-olive-500\\/100{\nborder-color: color(from #769b8d srgb r g b / 1);\n}\n.border-olive-500\\/15{\nborder-color: color(from #769b8d srgb r g b / 0.15);\n}\n.border-olive-500\\/20{\nborder-color: color(from #769b8d srgb r g b / 0.2);\n}\n.border-olive-500\\/25{\nborder-color: color(from #769b8d srgb r g b / 0.25);\n}\n.border-olive-500\\/30{\nborder-color: color(from #769b8d srgb r g b / 0.3);\n}\n.border-olive-500\\/35{\nborder-color: color(from #769b8d srgb r g b / 0.35);\n}\n.border-olive-500\\/40{\nborder-color: color(from #769b8d srgb r g b / 0.4);\n}\n.border-olive-500\\/45{\nborder-color: color(from #769b8d srgb r g b / 0.45);\n}\n.border-olive-500\\/5{\nborder-color: color(from #769b8d srgb r g b / 0.05);\n}\n.border-olive-500\\/50{\nborder-color: color(from #769b8d srgb r g b / 0.5);\n}\n.border-olive-500\\/55{\nborder-color: color(from #769b8d srgb r g b / 0.55);\n}\n.border-olive-500\\/60{\nborder-color: color(from #769b8d srgb r g b / 0.6);\n}\n.border-olive-500\\/65{\nborder-color: color(from #769b8d srgb r g b / 0.65);\n}\n.border-olive-500\\/70{\nborder-color: color(from #769b8d srgb r g b / 0.7);\n}\n.border-olive-500\\/75{\nborder-color: color(from #769b8d srgb r g b / 0.75);\n}\n.border-olive-500\\/80{\nborder-color: color(from #769b8d srgb r g b / 0.8);\n}\n.border-olive-500\\/85{\nborder-color: color(from #769b8d srgb r g b / 0.85);\n}\n.border-olive-500\\/90{\nborder-color: color(from #769b8d srgb r g b / 0.9);\n}\n.border-olive-500\\/95{\nborder-color: color(from #769b8d srgb r g b / 0.95);\n}\n.border-olive-600{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / var(--tw-border-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-olive-600\\/0{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-olive-600\\/10{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-olive-600\\/100{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-olive-600\\/15{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-olive-600\\/20{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-olive-600\\/25{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-olive-600\\/30{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-olive-600\\/35{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-olive-600\\/40{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-olive-600\\/45{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-olive-600\\/5{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-olive-600\\/50{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-olive-600\\/55{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-olive-600\\/60{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-olive-600\\/65{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-olive-600\\/70{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-olive-600\\/75{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-olive-600\\/80{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-olive-600\\/85{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-olive-600\\/90{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-olive-600\\/95{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-olive-700{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / var(--tw-border-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-olive-700\\/0{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-olive-700\\/10{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-olive-700\\/100{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-olive-700\\/15{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-olive-700\\/20{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-olive-700\\/25{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-olive-700\\/30{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-olive-700\\/35{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-olive-700\\/40{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-olive-700\\/45{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-olive-700\\/5{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-olive-700\\/50{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-olive-700\\/55{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-olive-700\\/60{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-olive-700\\/65{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-olive-700\\/70{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-olive-700\\/75{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-olive-700\\/80{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-olive-700\\/85{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-olive-700\\/90{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-olive-700\\/95{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-olive-800{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / var(--tw-border-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-olive-800\\/0{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-olive-800\\/10{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-olive-800\\/100{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-olive-800\\/15{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-olive-800\\/20{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-olive-800\\/25{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-olive-800\\/30{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-olive-800\\/35{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-olive-800\\/40{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-olive-800\\/45{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-olive-800\\/5{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-olive-800\\/50{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-olive-800\\/55{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-olive-800\\/60{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-olive-800\\/65{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-olive-800\\/70{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-olive-800\\/75{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-olive-800\\/80{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-olive-800\\/85{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-olive-800\\/90{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-olive-800\\/95{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-olive-900{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / var(--tw-border-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-olive-900\\/0{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-olive-900\\/10{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-olive-900\\/100{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-olive-900\\/15{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-olive-900\\/20{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-olive-900\\/25{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-olive-900\\/30{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-olive-900\\/35{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-olive-900\\/40{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-olive-900\\/45{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-olive-900\\/5{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-olive-900\\/50{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-olive-900\\/55{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-olive-900\\/60{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-olive-900\\/65{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-olive-900\\/70{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-olive-900\\/75{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-olive-900\\/80{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-olive-900\\/85{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-olive-900\\/90{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-olive-900\\/95{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-olive-950{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / var(--tw-border-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-olive-950\\/0{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-olive-950\\/10{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-olive-950\\/100{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-olive-950\\/15{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-olive-950\\/20{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-olive-950\\/25{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-olive-950\\/30{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-olive-950\\/35{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-olive-950\\/40{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-olive-950\\/45{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-olive-950\\/5{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-olive-950\\/50{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-olive-950\\/55{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-olive-950\\/60{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-olive-950\\/65{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-olive-950\\/70{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-olive-950\\/75{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-olive-950\\/80{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-olive-950\\/85{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-olive-950\\/90{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-olive-950\\/95{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-olive\\/0{\nborder-color: rgb(118 155 141 / 0);\n}\n.border-olive\\/10{\nborder-color: rgb(118 155 141 / 0.1);\n}\n.border-olive\\/100{\nborder-color: rgb(118 155 141 / 1);\n}\n.border-olive\\/15{\nborder-color: rgb(118 155 141 / 0.15);\n}\n.border-olive\\/20{\nborder-color: rgb(118 155 141 / 0.2);\n}\n.border-olive\\/25{\nborder-color: rgb(118 155 141 / 0.25);\n}\n.border-olive\\/30{\nborder-color: rgb(118 155 141 / 0.3);\n}\n.border-olive\\/35{\nborder-color: rgb(118 155 141 / 0.35);\n}\n.border-olive\\/40{\nborder-color: rgb(118 155 141 / 0.4);\n}\n.border-olive\\/45{\nborder-color: rgb(118 155 141 / 0.45);\n}\n.border-olive\\/5{\nborder-color: rgb(118 155 141 / 0.05);\n}\n.border-olive\\/50{\nborder-color: rgb(118 155 141 / 0.5);\n}\n.border-olive\\/55{\nborder-color: rgb(118 155 141 / 0.55);\n}\n.border-olive\\/60{\nborder-color: rgb(118 155 141 / 0.6);\n}\n.border-olive\\/65{\nborder-color: rgb(118 155 141 / 0.65);\n}\n.border-olive\\/70{\nborder-color: rgb(118 155 141 / 0.7);\n}\n.border-olive\\/75{\nborder-color: rgb(118 155 141 / 0.75);\n}\n.border-olive\\/80{\nborder-color: rgb(118 155 141 / 0.8);\n}\n.border-olive\\/85{\nborder-color: rgb(118 155 141 / 0.85);\n}\n.border-olive\\/90{\nborder-color: rgb(118 155 141 / 0.9);\n}\n.border-olive\\/95{\nborder-color: rgb(118 155 141 / 0.95);\n}\n.border-primary{\nborder-color: var(--primary);\n}\n.border-primary-100{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-border-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-primary-100\\/0{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-primary-100\\/10{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-primary-100\\/100{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-primary-100\\/15{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-primary-100\\/20{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-primary-100\\/25{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-primary-100\\/30{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-primary-100\\/35{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-primary-100\\/40{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-primary-100\\/45{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-primary-100\\/5{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-primary-100\\/50{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-primary-100\\/55{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-primary-100\\/60{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-primary-100\\/65{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-primary-100\\/70{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-primary-100\\/75{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-primary-100\\/80{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-primary-100\\/85{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-primary-100\\/90{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-primary-100\\/95{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-primary-200{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-border-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-primary-200\\/0{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-primary-200\\/10{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-primary-200\\/100{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-primary-200\\/15{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-primary-200\\/20{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-primary-200\\/25{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-primary-200\\/30{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-primary-200\\/35{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-primary-200\\/40{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-primary-200\\/45{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-primary-200\\/5{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-primary-200\\/50{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-primary-200\\/55{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-primary-200\\/60{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-primary-200\\/65{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-primary-200\\/70{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-primary-200\\/75{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-primary-200\\/80{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-primary-200\\/85{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-primary-200\\/90{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-primary-200\\/95{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-primary-300{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-border-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-primary-300\\/0{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-primary-300\\/10{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-primary-300\\/100{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-primary-300\\/15{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-primary-300\\/20{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-primary-300\\/25{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-primary-300\\/30{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-primary-300\\/35{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-primary-300\\/40{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-primary-300\\/45{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-primary-300\\/5{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-primary-300\\/50{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-primary-300\\/55{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-primary-300\\/60{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-primary-300\\/65{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-primary-300\\/70{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-primary-300\\/75{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-primary-300\\/80{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-primary-300\\/85{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-primary-300\\/90{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-primary-300\\/95{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-primary-400{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-border-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-primary-400\\/0{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-primary-400\\/10{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-primary-400\\/100{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-primary-400\\/15{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-primary-400\\/20{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-primary-400\\/25{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-primary-400\\/30{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-primary-400\\/35{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-primary-400\\/40{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-primary-400\\/45{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-primary-400\\/5{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-primary-400\\/50{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-primary-400\\/55{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-primary-400\\/60{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-primary-400\\/65{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-primary-400\\/70{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-primary-400\\/75{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-primary-400\\/80{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-primary-400\\/85{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-primary-400\\/90{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-primary-400\\/95{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-primary-50{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-border-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-primary-50\\/0{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-primary-50\\/10{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-primary-50\\/100{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-primary-50\\/15{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-primary-50\\/20{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-primary-50\\/25{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-primary-50\\/30{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-primary-50\\/35{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-primary-50\\/40{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-primary-50\\/45{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-primary-50\\/5{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-primary-50\\/50{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-primary-50\\/55{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-primary-50\\/60{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-primary-50\\/65{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-primary-50\\/70{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-primary-50\\/75{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-primary-50\\/80{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-primary-50\\/85{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-primary-50\\/90{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-primary-50\\/95{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-primary-500{\n--tw-border-opacity: 1;\nborder-color: color(from var(--primary) srgb r g b / var(--tw-border-opacity));\n}\n.border-primary-500\\/0{\nborder-color: color(from var(--primary) srgb r g b / 0);\n}\n.border-primary-500\\/10{\nborder-color: color(from var(--primary) srgb r g b / 0.1);\n}\n.border-primary-500\\/100{\nborder-color: color(from var(--primary) srgb r g b / 1);\n}\n.border-primary-500\\/15{\nborder-color: color(from var(--primary) srgb r g b / 0.15);\n}\n.border-primary-500\\/20{\nborder-color: color(from var(--primary) srgb r g b / 0.2);\n}\n.border-primary-500\\/25{\nborder-color: color(from var(--primary) srgb r g b / 0.25);\n}\n.border-primary-500\\/30{\nborder-color: color(from var(--primary) srgb r g b / 0.3);\n}\n.border-primary-500\\/35{\nborder-color: color(from var(--primary) srgb r g b / 0.35);\n}\n.border-primary-500\\/40{\nborder-color: color(from var(--primary) srgb r g b / 0.4);\n}\n.border-primary-500\\/45{\nborder-color: color(from var(--primary) srgb r g b / 0.45);\n}\n.border-primary-500\\/5{\nborder-color: color(from var(--primary) srgb r g b / 0.05);\n}\n.border-primary-500\\/50{\nborder-color: color(from var(--primary) srgb r g b / 0.5);\n}\n.border-primary-500\\/55{\nborder-color: color(from var(--primary) srgb r g b / 0.55);\n}\n.border-primary-500\\/60{\nborder-color: color(from var(--primary) srgb r g b / 0.6);\n}\n.border-primary-500\\/65{\nborder-color: color(from var(--primary) srgb r g b / 0.65);\n}\n.border-primary-500\\/70{\nborder-color: color(from var(--primary) srgb r g b / 0.7);\n}\n.border-primary-500\\/75{\nborder-color: color(from var(--primary) srgb r g b / 0.75);\n}\n.border-primary-500\\/80{\nborder-color: color(from var(--primary) srgb r g b / 0.8);\n}\n.border-primary-500\\/85{\nborder-color: color(from var(--primary) srgb r g b / 0.85);\n}\n.border-primary-500\\/90{\nborder-color: color(from var(--primary) srgb r g b / 0.9);\n}\n.border-primary-500\\/95{\nborder-color: color(from var(--primary) srgb r g b / 0.95);\n}\n.border-primary-600{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-border-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-primary-600\\/0{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-primary-600\\/10{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-primary-600\\/100{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-primary-600\\/15{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-primary-600\\/20{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-primary-600\\/25{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-primary-600\\/30{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-primary-600\\/35{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-primary-600\\/40{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-primary-600\\/45{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-primary-600\\/5{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-primary-600\\/50{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-primary-600\\/55{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-primary-600\\/60{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-primary-600\\/65{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-primary-600\\/70{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-primary-600\\/75{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-primary-600\\/80{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-primary-600\\/85{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-primary-600\\/90{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-primary-600\\/95{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-primary-700{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-border-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-primary-700\\/0{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-primary-700\\/10{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-primary-700\\/100{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-primary-700\\/15{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-primary-700\\/20{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-primary-700\\/25{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-primary-700\\/30{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-primary-700\\/35{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-primary-700\\/40{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-primary-700\\/45{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-primary-700\\/5{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-primary-700\\/50{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-primary-700\\/55{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-primary-700\\/60{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-primary-700\\/65{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-primary-700\\/70{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-primary-700\\/75{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-primary-700\\/80{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-primary-700\\/85{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-primary-700\\/90{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-primary-700\\/95{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-primary-800{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-border-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-primary-800\\/0{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-primary-800\\/10{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-primary-800\\/100{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-primary-800\\/15{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-primary-800\\/20{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-primary-800\\/25{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-primary-800\\/30{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-primary-800\\/35{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-primary-800\\/40{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-primary-800\\/45{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-primary-800\\/5{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-primary-800\\/50{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-primary-800\\/55{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-primary-800\\/60{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-primary-800\\/65{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-primary-800\\/70{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-primary-800\\/75{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-primary-800\\/80{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-primary-800\\/85{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-primary-800\\/90{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-primary-800\\/95{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-primary-900{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-border-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-primary-900\\/0{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-primary-900\\/10{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-primary-900\\/100{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-primary-900\\/15{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-primary-900\\/20{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-primary-900\\/25{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-primary-900\\/30{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-primary-900\\/35{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-primary-900\\/40{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-primary-900\\/45{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-primary-900\\/5{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-primary-900\\/50{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-primary-900\\/55{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-primary-900\\/60{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-primary-900\\/65{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-primary-900\\/70{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-primary-900\\/75{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-primary-900\\/80{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-primary-900\\/85{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-primary-900\\/90{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-primary-900\\/95{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-primary-950{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-border-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-primary-950\\/0{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-primary-950\\/10{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-primary-950\\/100{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-primary-950\\/15{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-primary-950\\/20{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-primary-950\\/25{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-primary-950\\/30{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-primary-950\\/35{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-primary-950\\/40{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-primary-950\\/45{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-primary-950\\/5{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-primary-950\\/50{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-primary-950\\/55{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-primary-950\\/60{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-primary-950\\/65{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-primary-950\\/70{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-primary-950\\/75{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-primary-950\\/80{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-primary-950\\/85{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-primary-950\\/90{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-primary-950\\/95{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-pumpkin{\n--tw-border-opacity: 1;\nborder-color: rgb(247 106 21 / var(--tw-border-opacity));\n}\n.border-pumpkin-100{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / var(--tw-border-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-pumpkin-100\\/0{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-pumpkin-100\\/10{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-pumpkin-100\\/100{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-pumpkin-100\\/15{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-pumpkin-100\\/20{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-pumpkin-100\\/25{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-pumpkin-100\\/30{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-pumpkin-100\\/35{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-pumpkin-100\\/40{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-pumpkin-100\\/45{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-pumpkin-100\\/5{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-pumpkin-100\\/50{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-pumpkin-100\\/55{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-pumpkin-100\\/60{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-pumpkin-100\\/65{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-pumpkin-100\\/70{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-pumpkin-100\\/75{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-pumpkin-100\\/80{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-pumpkin-100\\/85{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-pumpkin-100\\/90{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-pumpkin-100\\/95{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-pumpkin-200{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / var(--tw-border-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-pumpkin-200\\/0{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-pumpkin-200\\/10{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-pumpkin-200\\/100{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-pumpkin-200\\/15{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-pumpkin-200\\/20{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-pumpkin-200\\/25{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-pumpkin-200\\/30{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-pumpkin-200\\/35{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-pumpkin-200\\/40{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-pumpkin-200\\/45{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-pumpkin-200\\/5{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-pumpkin-200\\/50{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-pumpkin-200\\/55{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-pumpkin-200\\/60{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-pumpkin-200\\/65{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-pumpkin-200\\/70{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-pumpkin-200\\/75{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-pumpkin-200\\/80{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-pumpkin-200\\/85{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-pumpkin-200\\/90{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-pumpkin-200\\/95{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-pumpkin-300{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / var(--tw-border-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-pumpkin-300\\/0{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-pumpkin-300\\/10{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-pumpkin-300\\/100{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-pumpkin-300\\/15{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-pumpkin-300\\/20{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-pumpkin-300\\/25{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-pumpkin-300\\/30{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-pumpkin-300\\/35{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-pumpkin-300\\/40{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-pumpkin-300\\/45{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-pumpkin-300\\/5{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-pumpkin-300\\/50{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-pumpkin-300\\/55{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-pumpkin-300\\/60{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-pumpkin-300\\/65{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-pumpkin-300\\/70{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-pumpkin-300\\/75{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-pumpkin-300\\/80{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-pumpkin-300\\/85{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-pumpkin-300\\/90{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-pumpkin-300\\/95{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-pumpkin-400{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / var(--tw-border-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-pumpkin-400\\/0{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-pumpkin-400\\/10{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-pumpkin-400\\/100{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-pumpkin-400\\/15{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-pumpkin-400\\/20{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-pumpkin-400\\/25{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-pumpkin-400\\/30{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-pumpkin-400\\/35{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-pumpkin-400\\/40{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-pumpkin-400\\/45{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-pumpkin-400\\/5{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-pumpkin-400\\/50{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-pumpkin-400\\/55{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-pumpkin-400\\/60{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-pumpkin-400\\/65{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-pumpkin-400\\/70{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-pumpkin-400\\/75{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-pumpkin-400\\/80{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-pumpkin-400\\/85{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-pumpkin-400\\/90{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-pumpkin-400\\/95{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-pumpkin-50{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / var(--tw-border-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-pumpkin-50\\/0{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-pumpkin-50\\/10{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-pumpkin-50\\/100{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-pumpkin-50\\/15{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-pumpkin-50\\/20{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-pumpkin-50\\/25{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-pumpkin-50\\/30{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-pumpkin-50\\/35{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-pumpkin-50\\/40{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-pumpkin-50\\/45{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-pumpkin-50\\/5{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-pumpkin-50\\/50{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-pumpkin-50\\/55{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-pumpkin-50\\/60{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-pumpkin-50\\/65{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-pumpkin-50\\/70{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-pumpkin-50\\/75{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-pumpkin-50\\/80{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-pumpkin-50\\/85{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-pumpkin-50\\/90{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-pumpkin-50\\/95{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-pumpkin-500{\n--tw-border-opacity: 1;\nborder-color: color(from #f76a15 srgb r g b / var(--tw-border-opacity));\n}\n.border-pumpkin-500\\/0{\nborder-color: color(from #f76a15 srgb r g b / 0);\n}\n.border-pumpkin-500\\/10{\nborder-color: color(from #f76a15 srgb r g b / 0.1);\n}\n.border-pumpkin-500\\/100{\nborder-color: color(from #f76a15 srgb r g b / 1);\n}\n.border-pumpkin-500\\/15{\nborder-color: color(from #f76a15 srgb r g b / 0.15);\n}\n.border-pumpkin-500\\/20{\nborder-color: color(from #f76a15 srgb r g b / 0.2);\n}\n.border-pumpkin-500\\/25{\nborder-color: color(from #f76a15 srgb r g b / 0.25);\n}\n.border-pumpkin-500\\/30{\nborder-color: color(from #f76a15 srgb r g b / 0.3);\n}\n.border-pumpkin-500\\/35{\nborder-color: color(from #f76a15 srgb r g b / 0.35);\n}\n.border-pumpkin-500\\/40{\nborder-color: color(from #f76a15 srgb r g b / 0.4);\n}\n.border-pumpkin-500\\/45{\nborder-color: color(from #f76a15 srgb r g b / 0.45);\n}\n.border-pumpkin-500\\/5{\nborder-color: color(from #f76a15 srgb r g b / 0.05);\n}\n.border-pumpkin-500\\/50{\nborder-color: color(from #f76a15 srgb r g b / 0.5);\n}\n.border-pumpkin-500\\/55{\nborder-color: color(from #f76a15 srgb r g b / 0.55);\n}\n.border-pumpkin-500\\/60{\nborder-color: color(from #f76a15 srgb r g b / 0.6);\n}\n.border-pumpkin-500\\/65{\nborder-color: color(from #f76a15 srgb r g b / 0.65);\n}\n.border-pumpkin-500\\/70{\nborder-color: color(from #f76a15 srgb r g b / 0.7);\n}\n.border-pumpkin-500\\/75{\nborder-color: color(from #f76a15 srgb r g b / 0.75);\n}\n.border-pumpkin-500\\/80{\nborder-color: color(from #f76a15 srgb r g b / 0.8);\n}\n.border-pumpkin-500\\/85{\nborder-color: color(from #f76a15 srgb r g b / 0.85);\n}\n.border-pumpkin-500\\/90{\nborder-color: color(from #f76a15 srgb r g b / 0.9);\n}\n.border-pumpkin-500\\/95{\nborder-color: color(from #f76a15 srgb r g b / 0.95);\n}\n.border-pumpkin-600{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / var(--tw-border-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-pumpkin-600\\/0{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-pumpkin-600\\/10{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-pumpkin-600\\/100{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-pumpkin-600\\/15{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-pumpkin-600\\/20{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-pumpkin-600\\/25{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-pumpkin-600\\/30{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-pumpkin-600\\/35{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-pumpkin-600\\/40{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-pumpkin-600\\/45{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-pumpkin-600\\/5{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-pumpkin-600\\/50{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-pumpkin-600\\/55{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-pumpkin-600\\/60{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-pumpkin-600\\/65{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-pumpkin-600\\/70{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-pumpkin-600\\/75{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-pumpkin-600\\/80{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-pumpkin-600\\/85{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-pumpkin-600\\/90{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-pumpkin-600\\/95{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-pumpkin-700{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / var(--tw-border-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-pumpkin-700\\/0{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-pumpkin-700\\/10{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-pumpkin-700\\/100{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-pumpkin-700\\/15{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-pumpkin-700\\/20{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-pumpkin-700\\/25{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-pumpkin-700\\/30{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-pumpkin-700\\/35{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-pumpkin-700\\/40{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-pumpkin-700\\/45{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-pumpkin-700\\/5{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-pumpkin-700\\/50{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-pumpkin-700\\/55{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-pumpkin-700\\/60{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-pumpkin-700\\/65{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-pumpkin-700\\/70{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-pumpkin-700\\/75{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-pumpkin-700\\/80{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-pumpkin-700\\/85{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-pumpkin-700\\/90{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-pumpkin-700\\/95{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-pumpkin-800{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / var(--tw-border-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-pumpkin-800\\/0{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-pumpkin-800\\/10{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-pumpkin-800\\/100{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-pumpkin-800\\/15{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-pumpkin-800\\/20{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-pumpkin-800\\/25{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-pumpkin-800\\/30{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-pumpkin-800\\/35{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-pumpkin-800\\/40{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-pumpkin-800\\/45{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-pumpkin-800\\/5{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-pumpkin-800\\/50{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-pumpkin-800\\/55{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-pumpkin-800\\/60{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-pumpkin-800\\/65{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-pumpkin-800\\/70{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-pumpkin-800\\/75{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-pumpkin-800\\/80{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-pumpkin-800\\/85{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-pumpkin-800\\/90{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-pumpkin-800\\/95{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-pumpkin-900{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / var(--tw-border-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-pumpkin-900\\/0{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-pumpkin-900\\/10{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-pumpkin-900\\/100{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-pumpkin-900\\/15{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-pumpkin-900\\/20{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-pumpkin-900\\/25{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-pumpkin-900\\/30{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-pumpkin-900\\/35{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-pumpkin-900\\/40{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-pumpkin-900\\/45{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-pumpkin-900\\/5{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-pumpkin-900\\/50{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-pumpkin-900\\/55{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-pumpkin-900\\/60{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-pumpkin-900\\/65{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-pumpkin-900\\/70{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-pumpkin-900\\/75{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-pumpkin-900\\/80{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-pumpkin-900\\/85{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-pumpkin-900\\/90{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-pumpkin-900\\/95{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-pumpkin-950{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / var(--tw-border-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-pumpkin-950\\/0{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-pumpkin-950\\/10{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-pumpkin-950\\/100{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-pumpkin-950\\/15{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-pumpkin-950\\/20{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-pumpkin-950\\/25{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-pumpkin-950\\/30{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-pumpkin-950\\/35{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-pumpkin-950\\/40{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-pumpkin-950\\/45{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-pumpkin-950\\/5{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-pumpkin-950\\/50{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-pumpkin-950\\/55{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-pumpkin-950\\/60{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-pumpkin-950\\/65{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-pumpkin-950\\/70{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-pumpkin-950\\/75{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-pumpkin-950\\/80{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-pumpkin-950\\/85{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-pumpkin-950\\/90{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-pumpkin-950\\/95{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-pumpkin\\/0{\nborder-color: rgb(247 106 21 / 0);\n}\n.border-pumpkin\\/10{\nborder-color: rgb(247 106 21 / 0.1);\n}\n.border-pumpkin\\/100{\nborder-color: rgb(247 106 21 / 1);\n}\n.border-pumpkin\\/15{\nborder-color: rgb(247 106 21 / 0.15);\n}\n.border-pumpkin\\/20{\nborder-color: rgb(247 106 21 / 0.2);\n}\n.border-pumpkin\\/25{\nborder-color: rgb(247 106 21 / 0.25);\n}\n.border-pumpkin\\/30{\nborder-color: rgb(247 106 21 / 0.3);\n}\n.border-pumpkin\\/35{\nborder-color: rgb(247 106 21 / 0.35);\n}\n.border-pumpkin\\/40{\nborder-color: rgb(247 106 21 / 0.4);\n}\n.border-pumpkin\\/45{\nborder-color: rgb(247 106 21 / 0.45);\n}\n.border-pumpkin\\/5{\nborder-color: rgb(247 106 21 / 0.05);\n}\n.border-pumpkin\\/50{\nborder-color: rgb(247 106 21 / 0.5);\n}\n.border-pumpkin\\/55{\nborder-color: rgb(247 106 21 / 0.55);\n}\n.border-pumpkin\\/60{\nborder-color: rgb(247 106 21 / 0.6);\n}\n.border-pumpkin\\/65{\nborder-color: rgb(247 106 21 / 0.65);\n}\n.border-pumpkin\\/70{\nborder-color: rgb(247 106 21 / 0.7);\n}\n.border-pumpkin\\/75{\nborder-color: rgb(247 106 21 / 0.75);\n}\n.border-pumpkin\\/80{\nborder-color: rgb(247 106 21 / 0.8);\n}\n.border-pumpkin\\/85{\nborder-color: rgb(247 106 21 / 0.85);\n}\n.border-pumpkin\\/90{\nborder-color: rgb(247 106 21 / 0.9);\n}\n.border-pumpkin\\/95{\nborder-color: rgb(247 106 21 / 0.95);\n}\n.border-sand{\n--tw-border-opacity: 1;\nborder-color: rgb(155 151 137 / var(--tw-border-opacity));\n}\n.border-sand-100{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / var(--tw-border-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-sand-100\\/0{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-sand-100\\/10{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-sand-100\\/100{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-sand-100\\/15{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-sand-100\\/20{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-sand-100\\/25{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-sand-100\\/30{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-sand-100\\/35{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-sand-100\\/40{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-sand-100\\/45{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-sand-100\\/5{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-sand-100\\/50{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-sand-100\\/55{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-sand-100\\/60{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-sand-100\\/65{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-sand-100\\/70{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-sand-100\\/75{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-sand-100\\/80{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-sand-100\\/85{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-sand-100\\/90{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-sand-100\\/95{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-sand-200{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / var(--tw-border-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-sand-200\\/0{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-sand-200\\/10{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-sand-200\\/100{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-sand-200\\/15{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-sand-200\\/20{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-sand-200\\/25{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-sand-200\\/30{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-sand-200\\/35{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-sand-200\\/40{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-sand-200\\/45{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-sand-200\\/5{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-sand-200\\/50{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-sand-200\\/55{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-sand-200\\/60{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-sand-200\\/65{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-sand-200\\/70{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-sand-200\\/75{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-sand-200\\/80{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-sand-200\\/85{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-sand-200\\/90{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-sand-200\\/95{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-sand-300{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / var(--tw-border-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-sand-300\\/0{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-sand-300\\/10{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-sand-300\\/100{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-sand-300\\/15{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-sand-300\\/20{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-sand-300\\/25{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-sand-300\\/30{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-sand-300\\/35{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-sand-300\\/40{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-sand-300\\/45{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-sand-300\\/5{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-sand-300\\/50{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-sand-300\\/55{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-sand-300\\/60{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-sand-300\\/65{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-sand-300\\/70{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-sand-300\\/75{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-sand-300\\/80{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-sand-300\\/85{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-sand-300\\/90{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-sand-300\\/95{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-sand-400{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / var(--tw-border-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-sand-400\\/0{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-sand-400\\/10{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-sand-400\\/100{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-sand-400\\/15{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-sand-400\\/20{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-sand-400\\/25{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-sand-400\\/30{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-sand-400\\/35{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-sand-400\\/40{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-sand-400\\/45{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-sand-400\\/5{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-sand-400\\/50{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-sand-400\\/55{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-sand-400\\/60{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-sand-400\\/65{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-sand-400\\/70{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-sand-400\\/75{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-sand-400\\/80{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-sand-400\\/85{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-sand-400\\/90{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-sand-400\\/95{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-sand-50{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / var(--tw-border-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-sand-50\\/0{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-sand-50\\/10{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-sand-50\\/100{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-sand-50\\/15{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-sand-50\\/20{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-sand-50\\/25{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-sand-50\\/30{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-sand-50\\/35{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-sand-50\\/40{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-sand-50\\/45{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-sand-50\\/5{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-sand-50\\/50{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-sand-50\\/55{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-sand-50\\/60{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-sand-50\\/65{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-sand-50\\/70{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-sand-50\\/75{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-sand-50\\/80{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-sand-50\\/85{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-sand-50\\/90{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-sand-50\\/95{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-sand-500{\n--tw-border-opacity: 1;\nborder-color: color(from #9b9789 srgb r g b / var(--tw-border-opacity));\n}\n.border-sand-500\\/0{\nborder-color: color(from #9b9789 srgb r g b / 0);\n}\n.border-sand-500\\/10{\nborder-color: color(from #9b9789 srgb r g b / 0.1);\n}\n.border-sand-500\\/100{\nborder-color: color(from #9b9789 srgb r g b / 1);\n}\n.border-sand-500\\/15{\nborder-color: color(from #9b9789 srgb r g b / 0.15);\n}\n.border-sand-500\\/20{\nborder-color: color(from #9b9789 srgb r g b / 0.2);\n}\n.border-sand-500\\/25{\nborder-color: color(from #9b9789 srgb r g b / 0.25);\n}\n.border-sand-500\\/30{\nborder-color: color(from #9b9789 srgb r g b / 0.3);\n}\n.border-sand-500\\/35{\nborder-color: color(from #9b9789 srgb r g b / 0.35);\n}\n.border-sand-500\\/40{\nborder-color: color(from #9b9789 srgb r g b / 0.4);\n}\n.border-sand-500\\/45{\nborder-color: color(from #9b9789 srgb r g b / 0.45);\n}\n.border-sand-500\\/5{\nborder-color: color(from #9b9789 srgb r g b / 0.05);\n}\n.border-sand-500\\/50{\nborder-color: color(from #9b9789 srgb r g b / 0.5);\n}\n.border-sand-500\\/55{\nborder-color: color(from #9b9789 srgb r g b / 0.55);\n}\n.border-sand-500\\/60{\nborder-color: color(from #9b9789 srgb r g b / 0.6);\n}\n.border-sand-500\\/65{\nborder-color: color(from #9b9789 srgb r g b / 0.65);\n}\n.border-sand-500\\/70{\nborder-color: color(from #9b9789 srgb r g b / 0.7);\n}\n.border-sand-500\\/75{\nborder-color: color(from #9b9789 srgb r g b / 0.75);\n}\n.border-sand-500\\/80{\nborder-color: color(from #9b9789 srgb r g b / 0.8);\n}\n.border-sand-500\\/85{\nborder-color: color(from #9b9789 srgb r g b / 0.85);\n}\n.border-sand-500\\/90{\nborder-color: color(from #9b9789 srgb r g b / 0.9);\n}\n.border-sand-500\\/95{\nborder-color: color(from #9b9789 srgb r g b / 0.95);\n}\n.border-sand-600{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / var(--tw-border-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-sand-600\\/0{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-sand-600\\/10{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-sand-600\\/100{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-sand-600\\/15{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-sand-600\\/20{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-sand-600\\/25{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-sand-600\\/30{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-sand-600\\/35{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-sand-600\\/40{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-sand-600\\/45{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-sand-600\\/5{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-sand-600\\/50{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-sand-600\\/55{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-sand-600\\/60{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-sand-600\\/65{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-sand-600\\/70{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-sand-600\\/75{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-sand-600\\/80{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-sand-600\\/85{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-sand-600\\/90{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-sand-600\\/95{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-sand-700{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / var(--tw-border-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-sand-700\\/0{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-sand-700\\/10{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-sand-700\\/100{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-sand-700\\/15{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-sand-700\\/20{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-sand-700\\/25{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-sand-700\\/30{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-sand-700\\/35{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-sand-700\\/40{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-sand-700\\/45{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-sand-700\\/5{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-sand-700\\/50{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-sand-700\\/55{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-sand-700\\/60{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-sand-700\\/65{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-sand-700\\/70{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-sand-700\\/75{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-sand-700\\/80{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-sand-700\\/85{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-sand-700\\/90{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-sand-700\\/95{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-sand-800{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / var(--tw-border-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-sand-800\\/0{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-sand-800\\/10{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-sand-800\\/100{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-sand-800\\/15{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-sand-800\\/20{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-sand-800\\/25{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-sand-800\\/30{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-sand-800\\/35{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-sand-800\\/40{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-sand-800\\/45{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-sand-800\\/5{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-sand-800\\/50{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-sand-800\\/55{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-sand-800\\/60{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-sand-800\\/65{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-sand-800\\/70{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-sand-800\\/75{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-sand-800\\/80{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-sand-800\\/85{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-sand-800\\/90{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-sand-800\\/95{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-sand-900{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / var(--tw-border-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-sand-900\\/0{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-sand-900\\/10{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-sand-900\\/100{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-sand-900\\/15{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-sand-900\\/20{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-sand-900\\/25{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-sand-900\\/30{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-sand-900\\/35{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-sand-900\\/40{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-sand-900\\/45{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-sand-900\\/5{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-sand-900\\/50{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-sand-900\\/55{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-sand-900\\/60{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-sand-900\\/65{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-sand-900\\/70{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-sand-900\\/75{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-sand-900\\/80{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-sand-900\\/85{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-sand-900\\/90{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-sand-900\\/95{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-sand-950{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / var(--tw-border-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-sand-950\\/0{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-sand-950\\/10{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-sand-950\\/100{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-sand-950\\/15{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-sand-950\\/20{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-sand-950\\/25{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-sand-950\\/30{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-sand-950\\/35{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-sand-950\\/40{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-sand-950\\/45{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-sand-950\\/5{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-sand-950\\/50{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-sand-950\\/55{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-sand-950\\/60{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-sand-950\\/65{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-sand-950\\/70{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-sand-950\\/75{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-sand-950\\/80{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-sand-950\\/85{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-sand-950\\/90{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-sand-950\\/95{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-sand\\/0{\nborder-color: rgb(155 151 137 / 0);\n}\n.border-sand\\/10{\nborder-color: rgb(155 151 137 / 0.1);\n}\n.border-sand\\/100{\nborder-color: rgb(155 151 137 / 1);\n}\n.border-sand\\/15{\nborder-color: rgb(155 151 137 / 0.15);\n}\n.border-sand\\/20{\nborder-color: rgb(155 151 137 / 0.2);\n}\n.border-sand\\/25{\nborder-color: rgb(155 151 137 / 0.25);\n}\n.border-sand\\/30{\nborder-color: rgb(155 151 137 / 0.3);\n}\n.border-sand\\/35{\nborder-color: rgb(155 151 137 / 0.35);\n}\n.border-sand\\/40{\nborder-color: rgb(155 151 137 / 0.4);\n}\n.border-sand\\/45{\nborder-color: rgb(155 151 137 / 0.45);\n}\n.border-sand\\/5{\nborder-color: rgb(155 151 137 / 0.05);\n}\n.border-sand\\/50{\nborder-color: rgb(155 151 137 / 0.5);\n}\n.border-sand\\/55{\nborder-color: rgb(155 151 137 / 0.55);\n}\n.border-sand\\/60{\nborder-color: rgb(155 151 137 / 0.6);\n}\n.border-sand\\/65{\nborder-color: rgb(155 151 137 / 0.65);\n}\n.border-sand\\/70{\nborder-color: rgb(155 151 137 / 0.7);\n}\n.border-sand\\/75{\nborder-color: rgb(155 151 137 / 0.75);\n}\n.border-sand\\/80{\nborder-color: rgb(155 151 137 / 0.8);\n}\n.border-sand\\/85{\nborder-color: rgb(155 151 137 / 0.85);\n}\n.border-sand\\/90{\nborder-color: rgb(155 151 137 / 0.9);\n}\n.border-sand\\/95{\nborder-color: rgb(155 151 137 / 0.95);\n}\n.border-scarlet{\n--tw-border-opacity: 1;\nborder-color: rgb(229 72 77 / var(--tw-border-opacity));\n}\n.border-scarlet-100{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / var(--tw-border-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-scarlet-100\\/0{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-scarlet-100\\/10{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-scarlet-100\\/100{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-scarlet-100\\/15{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-scarlet-100\\/20{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-scarlet-100\\/25{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-scarlet-100\\/30{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-scarlet-100\\/35{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-scarlet-100\\/40{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-scarlet-100\\/45{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-scarlet-100\\/5{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-scarlet-100\\/50{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-scarlet-100\\/55{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-scarlet-100\\/60{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-scarlet-100\\/65{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-scarlet-100\\/70{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-scarlet-100\\/75{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-scarlet-100\\/80{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-scarlet-100\\/85{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-scarlet-100\\/90{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-scarlet-100\\/95{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-scarlet-200{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / var(--tw-border-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-scarlet-200\\/0{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-scarlet-200\\/10{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-scarlet-200\\/100{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-scarlet-200\\/15{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-scarlet-200\\/20{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-scarlet-200\\/25{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-scarlet-200\\/30{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-scarlet-200\\/35{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-scarlet-200\\/40{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-scarlet-200\\/45{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-scarlet-200\\/5{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-scarlet-200\\/50{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-scarlet-200\\/55{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-scarlet-200\\/60{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-scarlet-200\\/65{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-scarlet-200\\/70{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-scarlet-200\\/75{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-scarlet-200\\/80{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-scarlet-200\\/85{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-scarlet-200\\/90{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-scarlet-200\\/95{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-scarlet-300{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / var(--tw-border-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-scarlet-300\\/0{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-scarlet-300\\/10{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-scarlet-300\\/100{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-scarlet-300\\/15{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-scarlet-300\\/20{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-scarlet-300\\/25{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-scarlet-300\\/30{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-scarlet-300\\/35{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-scarlet-300\\/40{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-scarlet-300\\/45{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-scarlet-300\\/5{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-scarlet-300\\/50{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-scarlet-300\\/55{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-scarlet-300\\/60{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-scarlet-300\\/65{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-scarlet-300\\/70{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-scarlet-300\\/75{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-scarlet-300\\/80{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-scarlet-300\\/85{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-scarlet-300\\/90{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-scarlet-300\\/95{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-scarlet-400{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / var(--tw-border-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-scarlet-400\\/0{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-scarlet-400\\/10{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-scarlet-400\\/100{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-scarlet-400\\/15{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-scarlet-400\\/20{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-scarlet-400\\/25{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-scarlet-400\\/30{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-scarlet-400\\/35{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-scarlet-400\\/40{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-scarlet-400\\/45{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-scarlet-400\\/5{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-scarlet-400\\/50{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-scarlet-400\\/55{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-scarlet-400\\/60{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-scarlet-400\\/65{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-scarlet-400\\/70{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-scarlet-400\\/75{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-scarlet-400\\/80{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-scarlet-400\\/85{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-scarlet-400\\/90{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-scarlet-400\\/95{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-scarlet-50{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / var(--tw-border-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-scarlet-50\\/0{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-scarlet-50\\/10{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-scarlet-50\\/100{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-scarlet-50\\/15{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-scarlet-50\\/20{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-scarlet-50\\/25{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-scarlet-50\\/30{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-scarlet-50\\/35{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-scarlet-50\\/40{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-scarlet-50\\/45{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-scarlet-50\\/5{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-scarlet-50\\/50{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-scarlet-50\\/55{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-scarlet-50\\/60{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-scarlet-50\\/65{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-scarlet-50\\/70{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-scarlet-50\\/75{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-scarlet-50\\/80{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-scarlet-50\\/85{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-scarlet-50\\/90{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-scarlet-50\\/95{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-scarlet-500{\n--tw-border-opacity: 1;\nborder-color: color(from #e5484d srgb r g b / var(--tw-border-opacity));\n}\n.border-scarlet-500\\/0{\nborder-color: color(from #e5484d srgb r g b / 0);\n}\n.border-scarlet-500\\/10{\nborder-color: color(from #e5484d srgb r g b / 0.1);\n}\n.border-scarlet-500\\/100{\nborder-color: color(from #e5484d srgb r g b / 1);\n}\n.border-scarlet-500\\/15{\nborder-color: color(from #e5484d srgb r g b / 0.15);\n}\n.border-scarlet-500\\/20{\nborder-color: color(from #e5484d srgb r g b / 0.2);\n}\n.border-scarlet-500\\/25{\nborder-color: color(from #e5484d srgb r g b / 0.25);\n}\n.border-scarlet-500\\/30{\nborder-color: color(from #e5484d srgb r g b / 0.3);\n}\n.border-scarlet-500\\/35{\nborder-color: color(from #e5484d srgb r g b / 0.35);\n}\n.border-scarlet-500\\/40{\nborder-color: color(from #e5484d srgb r g b / 0.4);\n}\n.border-scarlet-500\\/45{\nborder-color: color(from #e5484d srgb r g b / 0.45);\n}\n.border-scarlet-500\\/5{\nborder-color: color(from #e5484d srgb r g b / 0.05);\n}\n.border-scarlet-500\\/50{\nborder-color: color(from #e5484d srgb r g b / 0.5);\n}\n.border-scarlet-500\\/55{\nborder-color: color(from #e5484d srgb r g b / 0.55);\n}\n.border-scarlet-500\\/60{\nborder-color: color(from #e5484d srgb r g b / 0.6);\n}\n.border-scarlet-500\\/65{\nborder-color: color(from #e5484d srgb r g b / 0.65);\n}\n.border-scarlet-500\\/70{\nborder-color: color(from #e5484d srgb r g b / 0.7);\n}\n.border-scarlet-500\\/75{\nborder-color: color(from #e5484d srgb r g b / 0.75);\n}\n.border-scarlet-500\\/80{\nborder-color: color(from #e5484d srgb r g b / 0.8);\n}\n.border-scarlet-500\\/85{\nborder-color: color(from #e5484d srgb r g b / 0.85);\n}\n.border-scarlet-500\\/90{\nborder-color: color(from #e5484d srgb r g b / 0.9);\n}\n.border-scarlet-500\\/95{\nborder-color: color(from #e5484d srgb r g b / 0.95);\n}\n.border-scarlet-600{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / var(--tw-border-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-scarlet-600\\/0{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-scarlet-600\\/10{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-scarlet-600\\/100{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-scarlet-600\\/15{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-scarlet-600\\/20{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-scarlet-600\\/25{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-scarlet-600\\/30{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-scarlet-600\\/35{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-scarlet-600\\/40{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-scarlet-600\\/45{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-scarlet-600\\/5{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-scarlet-600\\/50{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-scarlet-600\\/55{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-scarlet-600\\/60{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-scarlet-600\\/65{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-scarlet-600\\/70{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-scarlet-600\\/75{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-scarlet-600\\/80{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-scarlet-600\\/85{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-scarlet-600\\/90{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-scarlet-600\\/95{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-scarlet-700{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / var(--tw-border-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-scarlet-700\\/0{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-scarlet-700\\/10{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-scarlet-700\\/100{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-scarlet-700\\/15{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-scarlet-700\\/20{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-scarlet-700\\/25{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-scarlet-700\\/30{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-scarlet-700\\/35{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-scarlet-700\\/40{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-scarlet-700\\/45{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-scarlet-700\\/5{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-scarlet-700\\/50{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-scarlet-700\\/55{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-scarlet-700\\/60{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-scarlet-700\\/65{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-scarlet-700\\/70{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-scarlet-700\\/75{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-scarlet-700\\/80{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-scarlet-700\\/85{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-scarlet-700\\/90{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-scarlet-700\\/95{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-scarlet-800{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / var(--tw-border-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-scarlet-800\\/0{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-scarlet-800\\/10{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-scarlet-800\\/100{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-scarlet-800\\/15{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-scarlet-800\\/20{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-scarlet-800\\/25{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-scarlet-800\\/30{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-scarlet-800\\/35{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-scarlet-800\\/40{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-scarlet-800\\/45{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-scarlet-800\\/5{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-scarlet-800\\/50{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-scarlet-800\\/55{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-scarlet-800\\/60{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-scarlet-800\\/65{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-scarlet-800\\/70{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-scarlet-800\\/75{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-scarlet-800\\/80{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-scarlet-800\\/85{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-scarlet-800\\/90{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-scarlet-800\\/95{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-scarlet-900{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / var(--tw-border-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-scarlet-900\\/0{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-scarlet-900\\/10{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-scarlet-900\\/100{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-scarlet-900\\/15{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-scarlet-900\\/20{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-scarlet-900\\/25{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-scarlet-900\\/30{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-scarlet-900\\/35{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-scarlet-900\\/40{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-scarlet-900\\/45{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-scarlet-900\\/5{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-scarlet-900\\/50{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-scarlet-900\\/55{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-scarlet-900\\/60{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-scarlet-900\\/65{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-scarlet-900\\/70{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-scarlet-900\\/75{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-scarlet-900\\/80{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-scarlet-900\\/85{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-scarlet-900\\/90{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-scarlet-900\\/95{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-scarlet-950{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / var(--tw-border-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-scarlet-950\\/0{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-scarlet-950\\/10{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-scarlet-950\\/100{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-scarlet-950\\/15{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-scarlet-950\\/20{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-scarlet-950\\/25{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-scarlet-950\\/30{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-scarlet-950\\/35{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-scarlet-950\\/40{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-scarlet-950\\/45{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-scarlet-950\\/5{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-scarlet-950\\/50{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-scarlet-950\\/55{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-scarlet-950\\/60{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-scarlet-950\\/65{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-scarlet-950\\/70{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-scarlet-950\\/75{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-scarlet-950\\/80{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-scarlet-950\\/85{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-scarlet-950\\/90{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-scarlet-950\\/95{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-scarlet\\/0{\nborder-color: rgb(229 72 77 / 0);\n}\n.border-scarlet\\/10{\nborder-color: rgb(229 72 77 / 0.1);\n}\n.border-scarlet\\/100{\nborder-color: rgb(229 72 77 / 1);\n}\n.border-scarlet\\/15{\nborder-color: rgb(229 72 77 / 0.15);\n}\n.border-scarlet\\/20{\nborder-color: rgb(229 72 77 / 0.2);\n}\n.border-scarlet\\/25{\nborder-color: rgb(229 72 77 / 0.25);\n}\n.border-scarlet\\/30{\nborder-color: rgb(229 72 77 / 0.3);\n}\n.border-scarlet\\/35{\nborder-color: rgb(229 72 77 / 0.35);\n}\n.border-scarlet\\/40{\nborder-color: rgb(229 72 77 / 0.4);\n}\n.border-scarlet\\/45{\nborder-color: rgb(229 72 77 / 0.45);\n}\n.border-scarlet\\/5{\nborder-color: rgb(229 72 77 / 0.05);\n}\n.border-scarlet\\/50{\nborder-color: rgb(229 72 77 / 0.5);\n}\n.border-scarlet\\/55{\nborder-color: rgb(229 72 77 / 0.55);\n}\n.border-scarlet\\/60{\nborder-color: rgb(229 72 77 / 0.6);\n}\n.border-scarlet\\/65{\nborder-color: rgb(229 72 77 / 0.65);\n}\n.border-scarlet\\/70{\nborder-color: rgb(229 72 77 / 0.7);\n}\n.border-scarlet\\/75{\nborder-color: rgb(229 72 77 / 0.75);\n}\n.border-scarlet\\/80{\nborder-color: rgb(229 72 77 / 0.8);\n}\n.border-scarlet\\/85{\nborder-color: rgb(229 72 77 / 0.85);\n}\n.border-scarlet\\/90{\nborder-color: rgb(229 72 77 / 0.9);\n}\n.border-scarlet\\/95{\nborder-color: rgb(229 72 77 / 0.95);\n}\n.border-silver{\n--tw-border-opacity: 1;\nborder-color: rgb(152 157 165 / var(--tw-border-opacity));\n}\n.border-silver-100{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / var(--tw-border-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-silver-100\\/0{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-silver-100\\/10{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-silver-100\\/100{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-silver-100\\/15{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-silver-100\\/20{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-silver-100\\/25{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-silver-100\\/30{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-silver-100\\/35{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-silver-100\\/40{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-silver-100\\/45{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-silver-100\\/5{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-silver-100\\/50{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-silver-100\\/55{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-silver-100\\/60{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-silver-100\\/65{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-silver-100\\/70{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-silver-100\\/75{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-silver-100\\/80{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-silver-100\\/85{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-silver-100\\/90{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-silver-100\\/95{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-silver-200{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / var(--tw-border-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-silver-200\\/0{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-silver-200\\/10{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-silver-200\\/100{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-silver-200\\/15{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-silver-200\\/20{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-silver-200\\/25{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-silver-200\\/30{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-silver-200\\/35{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-silver-200\\/40{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-silver-200\\/45{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-silver-200\\/5{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-silver-200\\/50{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-silver-200\\/55{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-silver-200\\/60{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-silver-200\\/65{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-silver-200\\/70{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-silver-200\\/75{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-silver-200\\/80{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-silver-200\\/85{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-silver-200\\/90{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-silver-200\\/95{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-silver-300{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / var(--tw-border-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-silver-300\\/0{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-silver-300\\/10{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-silver-300\\/100{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-silver-300\\/15{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-silver-300\\/20{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-silver-300\\/25{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-silver-300\\/30{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-silver-300\\/35{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-silver-300\\/40{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-silver-300\\/45{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-silver-300\\/5{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-silver-300\\/50{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-silver-300\\/55{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-silver-300\\/60{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-silver-300\\/65{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-silver-300\\/70{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-silver-300\\/75{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-silver-300\\/80{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-silver-300\\/85{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-silver-300\\/90{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-silver-300\\/95{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-silver-400{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / var(--tw-border-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-silver-400\\/0{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-silver-400\\/10{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-silver-400\\/100{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-silver-400\\/15{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-silver-400\\/20{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-silver-400\\/25{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-silver-400\\/30{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-silver-400\\/35{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-silver-400\\/40{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-silver-400\\/45{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-silver-400\\/5{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-silver-400\\/50{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-silver-400\\/55{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-silver-400\\/60{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-silver-400\\/65{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-silver-400\\/70{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-silver-400\\/75{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-silver-400\\/80{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-silver-400\\/85{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-silver-400\\/90{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-silver-400\\/95{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-silver-50{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / var(--tw-border-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-silver-50\\/0{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-silver-50\\/10{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-silver-50\\/100{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-silver-50\\/15{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-silver-50\\/20{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-silver-50\\/25{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-silver-50\\/30{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-silver-50\\/35{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-silver-50\\/40{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-silver-50\\/45{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-silver-50\\/5{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-silver-50\\/50{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-silver-50\\/55{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-silver-50\\/60{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-silver-50\\/65{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-silver-50\\/70{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-silver-50\\/75{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-silver-50\\/80{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-silver-50\\/85{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-silver-50\\/90{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-silver-50\\/95{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-silver-500{\n--tw-border-opacity: 1;\nborder-color: color(from #989da5 srgb r g b / var(--tw-border-opacity));\n}\n.border-silver-500\\/0{\nborder-color: color(from #989da5 srgb r g b / 0);\n}\n.border-silver-500\\/10{\nborder-color: color(from #989da5 srgb r g b / 0.1);\n}\n.border-silver-500\\/100{\nborder-color: color(from #989da5 srgb r g b / 1);\n}\n.border-silver-500\\/15{\nborder-color: color(from #989da5 srgb r g b / 0.15);\n}\n.border-silver-500\\/20{\nborder-color: color(from #989da5 srgb r g b / 0.2);\n}\n.border-silver-500\\/25{\nborder-color: color(from #989da5 srgb r g b / 0.25);\n}\n.border-silver-500\\/30{\nborder-color: color(from #989da5 srgb r g b / 0.3);\n}\n.border-silver-500\\/35{\nborder-color: color(from #989da5 srgb r g b / 0.35);\n}\n.border-silver-500\\/40{\nborder-color: color(from #989da5 srgb r g b / 0.4);\n}\n.border-silver-500\\/45{\nborder-color: color(from #989da5 srgb r g b / 0.45);\n}\n.border-silver-500\\/5{\nborder-color: color(from #989da5 srgb r g b / 0.05);\n}\n.border-silver-500\\/50{\nborder-color: color(from #989da5 srgb r g b / 0.5);\n}\n.border-silver-500\\/55{\nborder-color: color(from #989da5 srgb r g b / 0.55);\n}\n.border-silver-500\\/60{\nborder-color: color(from #989da5 srgb r g b / 0.6);\n}\n.border-silver-500\\/65{\nborder-color: color(from #989da5 srgb r g b / 0.65);\n}\n.border-silver-500\\/70{\nborder-color: color(from #989da5 srgb r g b / 0.7);\n}\n.border-silver-500\\/75{\nborder-color: color(from #989da5 srgb r g b / 0.75);\n}\n.border-silver-500\\/80{\nborder-color: color(from #989da5 srgb r g b / 0.8);\n}\n.border-silver-500\\/85{\nborder-color: color(from #989da5 srgb r g b / 0.85);\n}\n.border-silver-500\\/90{\nborder-color: color(from #989da5 srgb r g b / 0.9);\n}\n.border-silver-500\\/95{\nborder-color: color(from #989da5 srgb r g b / 0.95);\n}\n.border-silver-600{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / var(--tw-border-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-silver-600\\/0{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-silver-600\\/10{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-silver-600\\/100{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-silver-600\\/15{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-silver-600\\/20{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-silver-600\\/25{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-silver-600\\/30{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-silver-600\\/35{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-silver-600\\/40{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-silver-600\\/45{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-silver-600\\/5{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-silver-600\\/50{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-silver-600\\/55{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-silver-600\\/60{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-silver-600\\/65{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-silver-600\\/70{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-silver-600\\/75{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-silver-600\\/80{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-silver-600\\/85{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-silver-600\\/90{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-silver-600\\/95{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-silver-700{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / var(--tw-border-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-silver-700\\/0{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-silver-700\\/10{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-silver-700\\/100{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-silver-700\\/15{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-silver-700\\/20{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-silver-700\\/25{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-silver-700\\/30{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-silver-700\\/35{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-silver-700\\/40{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-silver-700\\/45{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-silver-700\\/5{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-silver-700\\/50{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-silver-700\\/55{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-silver-700\\/60{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-silver-700\\/65{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-silver-700\\/70{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-silver-700\\/75{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-silver-700\\/80{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-silver-700\\/85{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-silver-700\\/90{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-silver-700\\/95{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-silver-800{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / var(--tw-border-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-silver-800\\/0{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-silver-800\\/10{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-silver-800\\/100{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-silver-800\\/15{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-silver-800\\/20{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-silver-800\\/25{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-silver-800\\/30{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-silver-800\\/35{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-silver-800\\/40{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-silver-800\\/45{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-silver-800\\/5{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-silver-800\\/50{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-silver-800\\/55{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-silver-800\\/60{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-silver-800\\/65{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-silver-800\\/70{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-silver-800\\/75{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-silver-800\\/80{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-silver-800\\/85{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-silver-800\\/90{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-silver-800\\/95{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-silver-900{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / var(--tw-border-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-silver-900\\/0{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-silver-900\\/10{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-silver-900\\/100{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-silver-900\\/15{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-silver-900\\/20{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-silver-900\\/25{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-silver-900\\/30{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-silver-900\\/35{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-silver-900\\/40{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-silver-900\\/45{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-silver-900\\/5{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-silver-900\\/50{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-silver-900\\/55{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-silver-900\\/60{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-silver-900\\/65{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-silver-900\\/70{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-silver-900\\/75{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-silver-900\\/80{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-silver-900\\/85{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-silver-900\\/90{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-silver-900\\/95{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-silver-950{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / var(--tw-border-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-silver-950\\/0{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-silver-950\\/10{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-silver-950\\/100{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-silver-950\\/15{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-silver-950\\/20{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-silver-950\\/25{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-silver-950\\/30{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-silver-950\\/35{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-silver-950\\/40{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-silver-950\\/45{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-silver-950\\/5{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-silver-950\\/50{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-silver-950\\/55{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-silver-950\\/60{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-silver-950\\/65{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-silver-950\\/70{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-silver-950\\/75{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-silver-950\\/80{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-silver-950\\/85{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-silver-950\\/90{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-silver-950\\/95{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-silver\\/0{\nborder-color: rgb(152 157 165 / 0);\n}\n.border-silver\\/10{\nborder-color: rgb(152 157 165 / 0.1);\n}\n.border-silver\\/100{\nborder-color: rgb(152 157 165 / 1);\n}\n.border-silver\\/15{\nborder-color: rgb(152 157 165 / 0.15);\n}\n.border-silver\\/20{\nborder-color: rgb(152 157 165 / 0.2);\n}\n.border-silver\\/25{\nborder-color: rgb(152 157 165 / 0.25);\n}\n.border-silver\\/30{\nborder-color: rgb(152 157 165 / 0.3);\n}\n.border-silver\\/35{\nborder-color: rgb(152 157 165 / 0.35);\n}\n.border-silver\\/40{\nborder-color: rgb(152 157 165 / 0.4);\n}\n.border-silver\\/45{\nborder-color: rgb(152 157 165 / 0.45);\n}\n.border-silver\\/5{\nborder-color: rgb(152 157 165 / 0.05);\n}\n.border-silver\\/50{\nborder-color: rgb(152 157 165 / 0.5);\n}\n.border-silver\\/55{\nborder-color: rgb(152 157 165 / 0.55);\n}\n.border-silver\\/60{\nborder-color: rgb(152 157 165 / 0.6);\n}\n.border-silver\\/65{\nborder-color: rgb(152 157 165 / 0.65);\n}\n.border-silver\\/70{\nborder-color: rgb(152 157 165 / 0.7);\n}\n.border-silver\\/75{\nborder-color: rgb(152 157 165 / 0.75);\n}\n.border-silver\\/80{\nborder-color: rgb(152 157 165 / 0.8);\n}\n.border-silver\\/85{\nborder-color: rgb(152 157 165 / 0.85);\n}\n.border-silver\\/90{\nborder-color: rgb(152 157 165 / 0.9);\n}\n.border-silver\\/95{\nborder-color: rgb(152 157 165 / 0.95);\n}\n.border-steel{\n--tw-border-opacity: 1;\nborder-color: rgb(124 153 175 / var(--tw-border-opacity));\n}\n.border-steel-100{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / var(--tw-border-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-steel-100\\/0{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-steel-100\\/10{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-steel-100\\/100{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-steel-100\\/15{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-steel-100\\/20{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-steel-100\\/25{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-steel-100\\/30{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-steel-100\\/35{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-steel-100\\/40{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-steel-100\\/45{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-steel-100\\/5{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-steel-100\\/50{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-steel-100\\/55{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-steel-100\\/60{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-steel-100\\/65{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-steel-100\\/70{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-steel-100\\/75{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-steel-100\\/80{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-steel-100\\/85{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-steel-100\\/90{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-steel-100\\/95{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-steel-200{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / var(--tw-border-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-steel-200\\/0{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-steel-200\\/10{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-steel-200\\/100{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-steel-200\\/15{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-steel-200\\/20{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-steel-200\\/25{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-steel-200\\/30{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-steel-200\\/35{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-steel-200\\/40{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-steel-200\\/45{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-steel-200\\/5{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-steel-200\\/50{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-steel-200\\/55{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-steel-200\\/60{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-steel-200\\/65{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-steel-200\\/70{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-steel-200\\/75{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-steel-200\\/80{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-steel-200\\/85{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-steel-200\\/90{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-steel-200\\/95{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-steel-300{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / var(--tw-border-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-steel-300\\/0{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-steel-300\\/10{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-steel-300\\/100{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-steel-300\\/15{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-steel-300\\/20{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-steel-300\\/25{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-steel-300\\/30{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-steel-300\\/35{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-steel-300\\/40{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-steel-300\\/45{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-steel-300\\/5{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-steel-300\\/50{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-steel-300\\/55{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-steel-300\\/60{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-steel-300\\/65{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-steel-300\\/70{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-steel-300\\/75{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-steel-300\\/80{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-steel-300\\/85{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-steel-300\\/90{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-steel-300\\/95{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-steel-400{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / var(--tw-border-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-steel-400\\/0{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-steel-400\\/10{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-steel-400\\/100{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-steel-400\\/15{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-steel-400\\/20{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-steel-400\\/25{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-steel-400\\/30{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-steel-400\\/35{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-steel-400\\/40{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-steel-400\\/45{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-steel-400\\/5{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-steel-400\\/50{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-steel-400\\/55{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-steel-400\\/60{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-steel-400\\/65{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-steel-400\\/70{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-steel-400\\/75{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-steel-400\\/80{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-steel-400\\/85{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-steel-400\\/90{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-steel-400\\/95{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-steel-50{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / var(--tw-border-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-steel-50\\/0{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-steel-50\\/10{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-steel-50\\/100{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-steel-50\\/15{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-steel-50\\/20{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-steel-50\\/25{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-steel-50\\/30{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-steel-50\\/35{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-steel-50\\/40{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-steel-50\\/45{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-steel-50\\/5{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-steel-50\\/50{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-steel-50\\/55{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-steel-50\\/60{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-steel-50\\/65{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-steel-50\\/70{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-steel-50\\/75{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-steel-50\\/80{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-steel-50\\/85{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-steel-50\\/90{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-steel-50\\/95{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-steel-500{\n--tw-border-opacity: 1;\nborder-color: color(from #7c99af srgb r g b / var(--tw-border-opacity));\n}\n.border-steel-500\\/0{\nborder-color: color(from #7c99af srgb r g b / 0);\n}\n.border-steel-500\\/10{\nborder-color: color(from #7c99af srgb r g b / 0.1);\n}\n.border-steel-500\\/100{\nborder-color: color(from #7c99af srgb r g b / 1);\n}\n.border-steel-500\\/15{\nborder-color: color(from #7c99af srgb r g b / 0.15);\n}\n.border-steel-500\\/20{\nborder-color: color(from #7c99af srgb r g b / 0.2);\n}\n.border-steel-500\\/25{\nborder-color: color(from #7c99af srgb r g b / 0.25);\n}\n.border-steel-500\\/30{\nborder-color: color(from #7c99af srgb r g b / 0.3);\n}\n.border-steel-500\\/35{\nborder-color: color(from #7c99af srgb r g b / 0.35);\n}\n.border-steel-500\\/40{\nborder-color: color(from #7c99af srgb r g b / 0.4);\n}\n.border-steel-500\\/45{\nborder-color: color(from #7c99af srgb r g b / 0.45);\n}\n.border-steel-500\\/5{\nborder-color: color(from #7c99af srgb r g b / 0.05);\n}\n.border-steel-500\\/50{\nborder-color: color(from #7c99af srgb r g b / 0.5);\n}\n.border-steel-500\\/55{\nborder-color: color(from #7c99af srgb r g b / 0.55);\n}\n.border-steel-500\\/60{\nborder-color: color(from #7c99af srgb r g b / 0.6);\n}\n.border-steel-500\\/65{\nborder-color: color(from #7c99af srgb r g b / 0.65);\n}\n.border-steel-500\\/70{\nborder-color: color(from #7c99af srgb r g b / 0.7);\n}\n.border-steel-500\\/75{\nborder-color: color(from #7c99af srgb r g b / 0.75);\n}\n.border-steel-500\\/80{\nborder-color: color(from #7c99af srgb r g b / 0.8);\n}\n.border-steel-500\\/85{\nborder-color: color(from #7c99af srgb r g b / 0.85);\n}\n.border-steel-500\\/90{\nborder-color: color(from #7c99af srgb r g b / 0.9);\n}\n.border-steel-500\\/95{\nborder-color: color(from #7c99af srgb r g b / 0.95);\n}\n.border-steel-600{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / var(--tw-border-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-steel-600\\/0{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-steel-600\\/10{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-steel-600\\/100{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-steel-600\\/15{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-steel-600\\/20{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-steel-600\\/25{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-steel-600\\/30{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-steel-600\\/35{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-steel-600\\/40{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-steel-600\\/45{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-steel-600\\/5{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-steel-600\\/50{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-steel-600\\/55{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-steel-600\\/60{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-steel-600\\/65{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-steel-600\\/70{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-steel-600\\/75{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-steel-600\\/80{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-steel-600\\/85{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-steel-600\\/90{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-steel-600\\/95{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-steel-700{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / var(--tw-border-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-steel-700\\/0{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-steel-700\\/10{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-steel-700\\/100{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-steel-700\\/15{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-steel-700\\/20{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-steel-700\\/25{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-steel-700\\/30{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-steel-700\\/35{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-steel-700\\/40{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-steel-700\\/45{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-steel-700\\/5{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-steel-700\\/50{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-steel-700\\/55{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-steel-700\\/60{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-steel-700\\/65{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-steel-700\\/70{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-steel-700\\/75{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-steel-700\\/80{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-steel-700\\/85{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-steel-700\\/90{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-steel-700\\/95{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-steel-800{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / var(--tw-border-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-steel-800\\/0{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-steel-800\\/10{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-steel-800\\/100{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-steel-800\\/15{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-steel-800\\/20{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-steel-800\\/25{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-steel-800\\/30{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-steel-800\\/35{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-steel-800\\/40{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-steel-800\\/45{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-steel-800\\/5{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-steel-800\\/50{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-steel-800\\/55{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-steel-800\\/60{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-steel-800\\/65{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-steel-800\\/70{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-steel-800\\/75{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-steel-800\\/80{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-steel-800\\/85{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-steel-800\\/90{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-steel-800\\/95{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-steel-900{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / var(--tw-border-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-steel-900\\/0{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-steel-900\\/10{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-steel-900\\/100{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-steel-900\\/15{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-steel-900\\/20{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-steel-900\\/25{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-steel-900\\/30{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-steel-900\\/35{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-steel-900\\/40{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-steel-900\\/45{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-steel-900\\/5{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-steel-900\\/50{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-steel-900\\/55{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-steel-900\\/60{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-steel-900\\/65{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-steel-900\\/70{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-steel-900\\/75{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-steel-900\\/80{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-steel-900\\/85{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-steel-900\\/90{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-steel-900\\/95{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-steel-950{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / var(--tw-border-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-steel-950\\/0{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-steel-950\\/10{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-steel-950\\/100{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-steel-950\\/15{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-steel-950\\/20{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-steel-950\\/25{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-steel-950\\/30{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-steel-950\\/35{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-steel-950\\/40{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-steel-950\\/45{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-steel-950\\/5{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-steel-950\\/50{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-steel-950\\/55{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-steel-950\\/60{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-steel-950\\/65{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-steel-950\\/70{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-steel-950\\/75{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-steel-950\\/80{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-steel-950\\/85{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-steel-950\\/90{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-steel-950\\/95{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-steel\\/0{\nborder-color: rgb(124 153 175 / 0);\n}\n.border-steel\\/10{\nborder-color: rgb(124 153 175 / 0.1);\n}\n.border-steel\\/100{\nborder-color: rgb(124 153 175 / 1);\n}\n.border-steel\\/15{\nborder-color: rgb(124 153 175 / 0.15);\n}\n.border-steel\\/20{\nborder-color: rgb(124 153 175 / 0.2);\n}\n.border-steel\\/25{\nborder-color: rgb(124 153 175 / 0.25);\n}\n.border-steel\\/30{\nborder-color: rgb(124 153 175 / 0.3);\n}\n.border-steel\\/35{\nborder-color: rgb(124 153 175 / 0.35);\n}\n.border-steel\\/40{\nborder-color: rgb(124 153 175 / 0.4);\n}\n.border-steel\\/45{\nborder-color: rgb(124 153 175 / 0.45);\n}\n.border-steel\\/5{\nborder-color: rgb(124 153 175 / 0.05);\n}\n.border-steel\\/50{\nborder-color: rgb(124 153 175 / 0.5);\n}\n.border-steel\\/55{\nborder-color: rgb(124 153 175 / 0.55);\n}\n.border-steel\\/60{\nborder-color: rgb(124 153 175 / 0.6);\n}\n.border-steel\\/65{\nborder-color: rgb(124 153 175 / 0.65);\n}\n.border-steel\\/70{\nborder-color: rgb(124 153 175 / 0.7);\n}\n.border-steel\\/75{\nborder-color: rgb(124 153 175 / 0.75);\n}\n.border-steel\\/80{\nborder-color: rgb(124 153 175 / 0.8);\n}\n.border-steel\\/85{\nborder-color: rgb(124 153 175 / 0.85);\n}\n.border-steel\\/90{\nborder-color: rgb(124 153 175 / 0.9);\n}\n.border-steel\\/95{\nborder-color: rgb(124 153 175 / 0.95);\n}\n.border-success{\n--tw-border-opacity: 1;\nborder-color: rgb(68 188 105 / var(--tw-border-opacity));\n}\n.border-success-100{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / var(--tw-border-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-success-100\\/0{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-success-100\\/10{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-success-100\\/100{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-success-100\\/15{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-success-100\\/20{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-success-100\\/25{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-success-100\\/30{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-success-100\\/35{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-success-100\\/40{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-success-100\\/45{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-success-100\\/5{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-success-100\\/50{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-success-100\\/55{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-success-100\\/60{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-success-100\\/65{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-success-100\\/70{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-success-100\\/75{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-success-100\\/80{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-success-100\\/85{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-success-100\\/90{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-success-100\\/95{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-success-200{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / var(--tw-border-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-success-200\\/0{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-success-200\\/10{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-success-200\\/100{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-success-200\\/15{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-success-200\\/20{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-success-200\\/25{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-success-200\\/30{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-success-200\\/35{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-success-200\\/40{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-success-200\\/45{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-success-200\\/5{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-success-200\\/50{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-success-200\\/55{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-success-200\\/60{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-success-200\\/65{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-success-200\\/70{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-success-200\\/75{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-success-200\\/80{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-success-200\\/85{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-success-200\\/90{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-success-200\\/95{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-success-300{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / var(--tw-border-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-success-300\\/0{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-success-300\\/10{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-success-300\\/100{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-success-300\\/15{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-success-300\\/20{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-success-300\\/25{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-success-300\\/30{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-success-300\\/35{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-success-300\\/40{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-success-300\\/45{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-success-300\\/5{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-success-300\\/50{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-success-300\\/55{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-success-300\\/60{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-success-300\\/65{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-success-300\\/70{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-success-300\\/75{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-success-300\\/80{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-success-300\\/85{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-success-300\\/90{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-success-300\\/95{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-success-400{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / var(--tw-border-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-success-400\\/0{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-success-400\\/10{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-success-400\\/100{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-success-400\\/15{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-success-400\\/20{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-success-400\\/25{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-success-400\\/30{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-success-400\\/35{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-success-400\\/40{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-success-400\\/45{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-success-400\\/5{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-success-400\\/50{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-success-400\\/55{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-success-400\\/60{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-success-400\\/65{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-success-400\\/70{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-success-400\\/75{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-success-400\\/80{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-success-400\\/85{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-success-400\\/90{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-success-400\\/95{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-success-50{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / var(--tw-border-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-success-50\\/0{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-success-50\\/10{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-success-50\\/100{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-success-50\\/15{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-success-50\\/20{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-success-50\\/25{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-success-50\\/30{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-success-50\\/35{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-success-50\\/40{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-success-50\\/45{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-success-50\\/5{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-success-50\\/50{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-success-50\\/55{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-success-50\\/60{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-success-50\\/65{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-success-50\\/70{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-success-50\\/75{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-success-50\\/80{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-success-50\\/85{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-success-50\\/90{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-success-50\\/95{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-success-500{\n--tw-border-opacity: 1;\nborder-color: color(from #44bc69 srgb r g b / var(--tw-border-opacity));\n}\n.border-success-500\\/0{\nborder-color: color(from #44bc69 srgb r g b / 0);\n}\n.border-success-500\\/10{\nborder-color: color(from #44bc69 srgb r g b / 0.1);\n}\n.border-success-500\\/100{\nborder-color: color(from #44bc69 srgb r g b / 1);\n}\n.border-success-500\\/15{\nborder-color: color(from #44bc69 srgb r g b / 0.15);\n}\n.border-success-500\\/20{\nborder-color: color(from #44bc69 srgb r g b / 0.2);\n}\n.border-success-500\\/25{\nborder-color: color(from #44bc69 srgb r g b / 0.25);\n}\n.border-success-500\\/30{\nborder-color: color(from #44bc69 srgb r g b / 0.3);\n}\n.border-success-500\\/35{\nborder-color: color(from #44bc69 srgb r g b / 0.35);\n}\n.border-success-500\\/40{\nborder-color: color(from #44bc69 srgb r g b / 0.4);\n}\n.border-success-500\\/45{\nborder-color: color(from #44bc69 srgb r g b / 0.45);\n}\n.border-success-500\\/5{\nborder-color: color(from #44bc69 srgb r g b / 0.05);\n}\n.border-success-500\\/50{\nborder-color: color(from #44bc69 srgb r g b / 0.5);\n}\n.border-success-500\\/55{\nborder-color: color(from #44bc69 srgb r g b / 0.55);\n}\n.border-success-500\\/60{\nborder-color: color(from #44bc69 srgb r g b / 0.6);\n}\n.border-success-500\\/65{\nborder-color: color(from #44bc69 srgb r g b / 0.65);\n}\n.border-success-500\\/70{\nborder-color: color(from #44bc69 srgb r g b / 0.7);\n}\n.border-success-500\\/75{\nborder-color: color(from #44bc69 srgb r g b / 0.75);\n}\n.border-success-500\\/80{\nborder-color: color(from #44bc69 srgb r g b / 0.8);\n}\n.border-success-500\\/85{\nborder-color: color(from #44bc69 srgb r g b / 0.85);\n}\n.border-success-500\\/90{\nborder-color: color(from #44bc69 srgb r g b / 0.9);\n}\n.border-success-500\\/95{\nborder-color: color(from #44bc69 srgb r g b / 0.95);\n}\n.border-success-600{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / var(--tw-border-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-success-600\\/0{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-success-600\\/10{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-success-600\\/100{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-success-600\\/15{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-success-600\\/20{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-success-600\\/25{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-success-600\\/30{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-success-600\\/35{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-success-600\\/40{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-success-600\\/45{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-success-600\\/5{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-success-600\\/50{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-success-600\\/55{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-success-600\\/60{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-success-600\\/65{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-success-600\\/70{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-success-600\\/75{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-success-600\\/80{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-success-600\\/85{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-success-600\\/90{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-success-600\\/95{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-success-700{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / var(--tw-border-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-success-700\\/0{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-success-700\\/10{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-success-700\\/100{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-success-700\\/15{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-success-700\\/20{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-success-700\\/25{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-success-700\\/30{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-success-700\\/35{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-success-700\\/40{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-success-700\\/45{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-success-700\\/5{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-success-700\\/50{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-success-700\\/55{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-success-700\\/60{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-success-700\\/65{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-success-700\\/70{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-success-700\\/75{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-success-700\\/80{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-success-700\\/85{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-success-700\\/90{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-success-700\\/95{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-success-800{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / var(--tw-border-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-success-800\\/0{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-success-800\\/10{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-success-800\\/100{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-success-800\\/15{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-success-800\\/20{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-success-800\\/25{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-success-800\\/30{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-success-800\\/35{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-success-800\\/40{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-success-800\\/45{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-success-800\\/5{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-success-800\\/50{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-success-800\\/55{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-success-800\\/60{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-success-800\\/65{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-success-800\\/70{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-success-800\\/75{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-success-800\\/80{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-success-800\\/85{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-success-800\\/90{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-success-800\\/95{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-success-900{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / var(--tw-border-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-success-900\\/0{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-success-900\\/10{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-success-900\\/100{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-success-900\\/15{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-success-900\\/20{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-success-900\\/25{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-success-900\\/30{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-success-900\\/35{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-success-900\\/40{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-success-900\\/45{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-success-900\\/5{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-success-900\\/50{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-success-900\\/55{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-success-900\\/60{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-success-900\\/65{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-success-900\\/70{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-success-900\\/75{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-success-900\\/80{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-success-900\\/85{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-success-900\\/90{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-success-900\\/95{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-success-950{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / var(--tw-border-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-success-950\\/0{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-success-950\\/10{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-success-950\\/100{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-success-950\\/15{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-success-950\\/20{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-success-950\\/25{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-success-950\\/30{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-success-950\\/35{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-success-950\\/40{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-success-950\\/45{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-success-950\\/5{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-success-950\\/50{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-success-950\\/55{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-success-950\\/60{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-success-950\\/65{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-success-950\\/70{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-success-950\\/75{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-success-950\\/80{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-success-950\\/85{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-success-950\\/90{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-success-950\\/95{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-success\\/0{\nborder-color: rgb(68 188 105 / 0);\n}\n.border-success\\/10{\nborder-color: rgb(68 188 105 / 0.1);\n}\n.border-success\\/100{\nborder-color: rgb(68 188 105 / 1);\n}\n.border-success\\/15{\nborder-color: rgb(68 188 105 / 0.15);\n}\n.border-success\\/20{\nborder-color: rgb(68 188 105 / 0.2);\n}\n.border-success\\/25{\nborder-color: rgb(68 188 105 / 0.25);\n}\n.border-success\\/30{\nborder-color: rgb(68 188 105 / 0.3);\n}\n.border-success\\/35{\nborder-color: rgb(68 188 105 / 0.35);\n}\n.border-success\\/40{\nborder-color: rgb(68 188 105 / 0.4);\n}\n.border-success\\/45{\nborder-color: rgb(68 188 105 / 0.45);\n}\n.border-success\\/5{\nborder-color: rgb(68 188 105 / 0.05);\n}\n.border-success\\/50{\nborder-color: rgb(68 188 105 / 0.5);\n}\n.border-success\\/55{\nborder-color: rgb(68 188 105 / 0.55);\n}\n.border-success\\/60{\nborder-color: rgb(68 188 105 / 0.6);\n}\n.border-success\\/65{\nborder-color: rgb(68 188 105 / 0.65);\n}\n.border-success\\/70{\nborder-color: rgb(68 188 105 / 0.7);\n}\n.border-success\\/75{\nborder-color: rgb(68 188 105 / 0.75);\n}\n.border-success\\/80{\nborder-color: rgb(68 188 105 / 0.8);\n}\n.border-success\\/85{\nborder-color: rgb(68 188 105 / 0.85);\n}\n.border-success\\/90{\nborder-color: rgb(68 188 105 / 0.9);\n}\n.border-success\\/95{\nborder-color: rgb(68 188 105 / 0.95);\n}\n.border-tint{\nborder-color: var(--tint);\n}\n.border-tint-100{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-border-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-tint-100\\/0{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-tint-100\\/10{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-tint-100\\/100{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-tint-100\\/15{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-tint-100\\/20{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-tint-100\\/25{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-tint-100\\/30{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-tint-100\\/35{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-tint-100\\/40{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-tint-100\\/45{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-tint-100\\/5{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-tint-100\\/50{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-tint-100\\/55{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-tint-100\\/60{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-tint-100\\/65{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-tint-100\\/70{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-tint-100\\/75{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-tint-100\\/80{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-tint-100\\/85{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-tint-100\\/90{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-tint-100\\/95{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-tint-200{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-border-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-tint-200\\/0{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-tint-200\\/10{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-tint-200\\/100{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-tint-200\\/15{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-tint-200\\/20{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-tint-200\\/25{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-tint-200\\/30{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-tint-200\\/35{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-tint-200\\/40{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-tint-200\\/45{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-tint-200\\/5{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-tint-200\\/50{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-tint-200\\/55{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-tint-200\\/60{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-tint-200\\/65{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-tint-200\\/70{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-tint-200\\/75{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-tint-200\\/80{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-tint-200\\/85{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-tint-200\\/90{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-tint-200\\/95{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-tint-300{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-border-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-tint-300\\/0{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-tint-300\\/10{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-tint-300\\/100{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-tint-300\\/15{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-tint-300\\/20{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-tint-300\\/25{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-tint-300\\/30{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-tint-300\\/35{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-tint-300\\/40{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-tint-300\\/45{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-tint-300\\/5{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-tint-300\\/50{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-tint-300\\/55{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-tint-300\\/60{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-tint-300\\/65{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-tint-300\\/70{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-tint-300\\/75{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-tint-300\\/80{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-tint-300\\/85{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-tint-300\\/90{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-tint-300\\/95{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-tint-400{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-border-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-tint-400\\/0{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-tint-400\\/10{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-tint-400\\/100{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-tint-400\\/15{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-tint-400\\/20{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-tint-400\\/25{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-tint-400\\/30{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-tint-400\\/35{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-tint-400\\/40{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-tint-400\\/45{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-tint-400\\/5{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-tint-400\\/50{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-tint-400\\/55{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-tint-400\\/60{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-tint-400\\/65{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-tint-400\\/70{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-tint-400\\/75{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-tint-400\\/80{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-tint-400\\/85{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-tint-400\\/90{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-tint-400\\/95{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-tint-50{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-border-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-tint-50\\/0{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-tint-50\\/10{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-tint-50\\/100{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-tint-50\\/15{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-tint-50\\/20{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-tint-50\\/25{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-tint-50\\/30{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-tint-50\\/35{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-tint-50\\/40{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-tint-50\\/45{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-tint-50\\/5{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-tint-50\\/50{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-tint-50\\/55{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-tint-50\\/60{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-tint-50\\/65{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-tint-50\\/70{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-tint-50\\/75{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-tint-50\\/80{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-tint-50\\/85{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-tint-50\\/90{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-tint-50\\/95{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-tint-500{\n--tw-border-opacity: 1;\nborder-color: color(from var(--tint) srgb r g b / var(--tw-border-opacity));\n}\n.border-tint-500\\/0{\nborder-color: color(from var(--tint) srgb r g b / 0);\n}\n.border-tint-500\\/10{\nborder-color: color(from var(--tint) srgb r g b / 0.1);\n}\n.border-tint-500\\/100{\nborder-color: color(from var(--tint) srgb r g b / 1);\n}\n.border-tint-500\\/15{\nborder-color: color(from var(--tint) srgb r g b / 0.15);\n}\n.border-tint-500\\/20{\nborder-color: color(from var(--tint) srgb r g b / 0.2);\n}\n.border-tint-500\\/25{\nborder-color: color(from var(--tint) srgb r g b / 0.25);\n}\n.border-tint-500\\/30{\nborder-color: color(from var(--tint) srgb r g b / 0.3);\n}\n.border-tint-500\\/35{\nborder-color: color(from var(--tint) srgb r g b / 0.35);\n}\n.border-tint-500\\/40{\nborder-color: color(from var(--tint) srgb r g b / 0.4);\n}\n.border-tint-500\\/45{\nborder-color: color(from var(--tint) srgb r g b / 0.45);\n}\n.border-tint-500\\/5{\nborder-color: color(from var(--tint) srgb r g b / 0.05);\n}\n.border-tint-500\\/50{\nborder-color: color(from var(--tint) srgb r g b / 0.5);\n}\n.border-tint-500\\/55{\nborder-color: color(from var(--tint) srgb r g b / 0.55);\n}\n.border-tint-500\\/60{\nborder-color: color(from var(--tint) srgb r g b / 0.6);\n}\n.border-tint-500\\/65{\nborder-color: color(from var(--tint) srgb r g b / 0.65);\n}\n.border-tint-500\\/70{\nborder-color: color(from var(--tint) srgb r g b / 0.7);\n}\n.border-tint-500\\/75{\nborder-color: color(from var(--tint) srgb r g b / 0.75);\n}\n.border-tint-500\\/80{\nborder-color: color(from var(--tint) srgb r g b / 0.8);\n}\n.border-tint-500\\/85{\nborder-color: color(from var(--tint) srgb r g b / 0.85);\n}\n.border-tint-500\\/90{\nborder-color: color(from var(--tint) srgb r g b / 0.9);\n}\n.border-tint-500\\/95{\nborder-color: color(from var(--tint) srgb r g b / 0.95);\n}\n.border-tint-600{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-border-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-tint-600\\/0{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-tint-600\\/10{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-tint-600\\/100{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-tint-600\\/15{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-tint-600\\/20{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-tint-600\\/25{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-tint-600\\/30{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-tint-600\\/35{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-tint-600\\/40{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-tint-600\\/45{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-tint-600\\/5{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-tint-600\\/50{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-tint-600\\/55{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-tint-600\\/60{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-tint-600\\/65{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-tint-600\\/70{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-tint-600\\/75{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-tint-600\\/80{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-tint-600\\/85{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-tint-600\\/90{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-tint-600\\/95{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-tint-700{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-border-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-tint-700\\/0{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-tint-700\\/10{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-tint-700\\/100{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-tint-700\\/15{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-tint-700\\/20{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-tint-700\\/25{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-tint-700\\/30{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-tint-700\\/35{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-tint-700\\/40{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-tint-700\\/45{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-tint-700\\/5{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-tint-700\\/50{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-tint-700\\/55{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-tint-700\\/60{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-tint-700\\/65{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-tint-700\\/70{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-tint-700\\/75{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-tint-700\\/80{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-tint-700\\/85{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-tint-700\\/90{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-tint-700\\/95{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-tint-800{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-border-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-tint-800\\/0{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-tint-800\\/10{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-tint-800\\/100{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-tint-800\\/15{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-tint-800\\/20{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-tint-800\\/25{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-tint-800\\/30{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-tint-800\\/35{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-tint-800\\/40{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-tint-800\\/45{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-tint-800\\/5{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-tint-800\\/50{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-tint-800\\/55{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-tint-800\\/60{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-tint-800\\/65{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-tint-800\\/70{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-tint-800\\/75{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-tint-800\\/80{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-tint-800\\/85{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-tint-800\\/90{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-tint-800\\/95{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-tint-900{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-border-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-tint-900\\/0{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-tint-900\\/10{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-tint-900\\/100{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-tint-900\\/15{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-tint-900\\/20{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-tint-900\\/25{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-tint-900\\/30{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-tint-900\\/35{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-tint-900\\/40{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-tint-900\\/45{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-tint-900\\/5{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-tint-900\\/50{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-tint-900\\/55{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-tint-900\\/60{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-tint-900\\/65{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-tint-900\\/70{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-tint-900\\/75{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-tint-900\\/80{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-tint-900\\/85{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-tint-900\\/90{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-tint-900\\/95{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-tint-950{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-border-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-tint-950\\/0{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-tint-950\\/10{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-tint-950\\/100{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-tint-950\\/15{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-tint-950\\/20{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-tint-950\\/25{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-tint-950\\/30{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-tint-950\\/35{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-tint-950\\/40{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-tint-950\\/45{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-tint-950\\/5{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-tint-950\\/50{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-tint-950\\/55{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-tint-950\\/60{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-tint-950\\/65{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-tint-950\\/70{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-tint-950\\/75{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-tint-950\\/80{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-tint-950\\/85{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-tint-950\\/90{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-tint-950\\/95{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-transparent{\nborder-color: transparent;\n}\n.border-warning{\n--tw-border-opacity: 1;\nborder-color: rgb(237 170 0 / var(--tw-border-opacity));\n}\n.border-warning-100{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / var(--tw-border-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-warning-100\\/0{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-warning-100\\/10{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-warning-100\\/100{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-warning-100\\/15{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-warning-100\\/20{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-warning-100\\/25{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-warning-100\\/30{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-warning-100\\/35{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-warning-100\\/40{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-warning-100\\/45{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-warning-100\\/5{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-warning-100\\/50{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-warning-100\\/55{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-warning-100\\/60{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-warning-100\\/65{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-warning-100\\/70{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-warning-100\\/75{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-warning-100\\/80{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-warning-100\\/85{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-warning-100\\/90{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-warning-100\\/95{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-warning-200{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / var(--tw-border-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-warning-200\\/0{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-warning-200\\/10{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-warning-200\\/100{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-warning-200\\/15{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-warning-200\\/20{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-warning-200\\/25{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-warning-200\\/30{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-warning-200\\/35{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-warning-200\\/40{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-warning-200\\/45{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-warning-200\\/5{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-warning-200\\/50{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-warning-200\\/55{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-warning-200\\/60{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-warning-200\\/65{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-warning-200\\/70{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-warning-200\\/75{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-warning-200\\/80{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-warning-200\\/85{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-warning-200\\/90{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-warning-200\\/95{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-warning-300{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / var(--tw-border-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-warning-300\\/0{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-warning-300\\/10{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-warning-300\\/100{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-warning-300\\/15{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-warning-300\\/20{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-warning-300\\/25{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-warning-300\\/30{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-warning-300\\/35{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-warning-300\\/40{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-warning-300\\/45{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-warning-300\\/5{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-warning-300\\/50{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-warning-300\\/55{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-warning-300\\/60{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-warning-300\\/65{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-warning-300\\/70{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-warning-300\\/75{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-warning-300\\/80{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-warning-300\\/85{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-warning-300\\/90{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-warning-300\\/95{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-warning-400{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / var(--tw-border-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-warning-400\\/0{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-warning-400\\/10{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-warning-400\\/100{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-warning-400\\/15{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-warning-400\\/20{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-warning-400\\/25{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-warning-400\\/30{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-warning-400\\/35{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-warning-400\\/40{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-warning-400\\/45{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-warning-400\\/5{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-warning-400\\/50{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-warning-400\\/55{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-warning-400\\/60{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-warning-400\\/65{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-warning-400\\/70{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-warning-400\\/75{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-warning-400\\/80{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-warning-400\\/85{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-warning-400\\/90{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-warning-400\\/95{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-warning-50{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / var(--tw-border-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-warning-50\\/0{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-warning-50\\/10{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-warning-50\\/100{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-warning-50\\/15{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-warning-50\\/20{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-warning-50\\/25{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-warning-50\\/30{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-warning-50\\/35{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-warning-50\\/40{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-warning-50\\/45{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-warning-50\\/5{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-warning-50\\/50{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-warning-50\\/55{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-warning-50\\/60{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-warning-50\\/65{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-warning-50\\/70{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-warning-50\\/75{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-warning-50\\/80{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-warning-50\\/85{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-warning-50\\/90{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-warning-50\\/95{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-warning-500{\n--tw-border-opacity: 1;\nborder-color: color(from #edaa00 srgb r g b / var(--tw-border-opacity));\n}\n.border-warning-500\\/0{\nborder-color: color(from #edaa00 srgb r g b / 0);\n}\n.border-warning-500\\/10{\nborder-color: color(from #edaa00 srgb r g b / 0.1);\n}\n.border-warning-500\\/100{\nborder-color: color(from #edaa00 srgb r g b / 1);\n}\n.border-warning-500\\/15{\nborder-color: color(from #edaa00 srgb r g b / 0.15);\n}\n.border-warning-500\\/20{\nborder-color: color(from #edaa00 srgb r g b / 0.2);\n}\n.border-warning-500\\/25{\nborder-color: color(from #edaa00 srgb r g b / 0.25);\n}\n.border-warning-500\\/30{\nborder-color: color(from #edaa00 srgb r g b / 0.3);\n}\n.border-warning-500\\/35{\nborder-color: color(from #edaa00 srgb r g b / 0.35);\n}\n.border-warning-500\\/40{\nborder-color: color(from #edaa00 srgb r g b / 0.4);\n}\n.border-warning-500\\/45{\nborder-color: color(from #edaa00 srgb r g b / 0.45);\n}\n.border-warning-500\\/5{\nborder-color: color(from #edaa00 srgb r g b / 0.05);\n}\n.border-warning-500\\/50{\nborder-color: color(from #edaa00 srgb r g b / 0.5);\n}\n.border-warning-500\\/55{\nborder-color: color(from #edaa00 srgb r g b / 0.55);\n}\n.border-warning-500\\/60{\nborder-color: color(from #edaa00 srgb r g b / 0.6);\n}\n.border-warning-500\\/65{\nborder-color: color(from #edaa00 srgb r g b / 0.65);\n}\n.border-warning-500\\/70{\nborder-color: color(from #edaa00 srgb r g b / 0.7);\n}\n.border-warning-500\\/75{\nborder-color: color(from #edaa00 srgb r g b / 0.75);\n}\n.border-warning-500\\/80{\nborder-color: color(from #edaa00 srgb r g b / 0.8);\n}\n.border-warning-500\\/85{\nborder-color: color(from #edaa00 srgb r g b / 0.85);\n}\n.border-warning-500\\/90{\nborder-color: color(from #edaa00 srgb r g b / 0.9);\n}\n.border-warning-500\\/95{\nborder-color: color(from #edaa00 srgb r g b / 0.95);\n}\n.border-warning-600{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / var(--tw-border-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-warning-600\\/0{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-warning-600\\/10{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-warning-600\\/100{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-warning-600\\/15{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-warning-600\\/20{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-warning-600\\/25{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-warning-600\\/30{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-warning-600\\/35{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-warning-600\\/40{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-warning-600\\/45{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-warning-600\\/5{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-warning-600\\/50{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-warning-600\\/55{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-warning-600\\/60{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-warning-600\\/65{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-warning-600\\/70{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-warning-600\\/75{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-warning-600\\/80{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-warning-600\\/85{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-warning-600\\/90{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-warning-600\\/95{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-warning-700{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / var(--tw-border-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-warning-700\\/0{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-warning-700\\/10{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-warning-700\\/100{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-warning-700\\/15{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-warning-700\\/20{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-warning-700\\/25{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-warning-700\\/30{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-warning-700\\/35{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-warning-700\\/40{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-warning-700\\/45{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-warning-700\\/5{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-warning-700\\/50{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-warning-700\\/55{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-warning-700\\/60{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-warning-700\\/65{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-warning-700\\/70{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-warning-700\\/75{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-warning-700\\/80{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-warning-700\\/85{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-warning-700\\/90{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-warning-700\\/95{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-warning-800{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / var(--tw-border-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-warning-800\\/0{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-warning-800\\/10{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-warning-800\\/100{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-warning-800\\/15{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-warning-800\\/20{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-warning-800\\/25{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-warning-800\\/30{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-warning-800\\/35{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-warning-800\\/40{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-warning-800\\/45{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-warning-800\\/5{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-warning-800\\/50{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-warning-800\\/55{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-warning-800\\/60{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-warning-800\\/65{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-warning-800\\/70{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-warning-800\\/75{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-warning-800\\/80{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-warning-800\\/85{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-warning-800\\/90{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-warning-800\\/95{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-warning-900{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / var(--tw-border-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-warning-900\\/0{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-warning-900\\/10{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-warning-900\\/100{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-warning-900\\/15{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-warning-900\\/20{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-warning-900\\/25{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-warning-900\\/30{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-warning-900\\/35{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-warning-900\\/40{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-warning-900\\/45{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-warning-900\\/5{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-warning-900\\/50{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-warning-900\\/55{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-warning-900\\/60{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-warning-900\\/65{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-warning-900\\/70{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-warning-900\\/75{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-warning-900\\/80{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-warning-900\\/85{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-warning-900\\/90{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-warning-900\\/95{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-warning-950{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / var(--tw-border-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-warning-950\\/0{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-warning-950\\/10{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-warning-950\\/100{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-warning-950\\/15{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-warning-950\\/20{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-warning-950\\/25{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-warning-950\\/30{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-warning-950\\/35{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-warning-950\\/40{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-warning-950\\/45{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-warning-950\\/5{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-warning-950\\/50{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-warning-950\\/55{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-warning-950\\/60{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-warning-950\\/65{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-warning-950\\/70{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-warning-950\\/75{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-warning-950\\/80{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-warning-950\\/85{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-warning-950\\/90{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-warning-950\\/95{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-warning\\/0{\nborder-color: rgb(237 170 0 / 0);\n}\n.border-warning\\/10{\nborder-color: rgb(237 170 0 / 0.1);\n}\n.border-warning\\/100{\nborder-color: rgb(237 170 0 / 1);\n}\n.border-warning\\/15{\nborder-color: rgb(237 170 0 / 0.15);\n}\n.border-warning\\/20{\nborder-color: rgb(237 170 0 / 0.2);\n}\n.border-warning\\/25{\nborder-color: rgb(237 170 0 / 0.25);\n}\n.border-warning\\/30{\nborder-color: rgb(237 170 0 / 0.3);\n}\n.border-warning\\/35{\nborder-color: rgb(237 170 0 / 0.35);\n}\n.border-warning\\/40{\nborder-color: rgb(237 170 0 / 0.4);\n}\n.border-warning\\/45{\nborder-color: rgb(237 170 0 / 0.45);\n}\n.border-warning\\/5{\nborder-color: rgb(237 170 0 / 0.05);\n}\n.border-warning\\/50{\nborder-color: rgb(237 170 0 / 0.5);\n}\n.border-warning\\/55{\nborder-color: rgb(237 170 0 / 0.55);\n}\n.border-warning\\/60{\nborder-color: rgb(237 170 0 / 0.6);\n}\n.border-warning\\/65{\nborder-color: rgb(237 170 0 / 0.65);\n}\n.border-warning\\/70{\nborder-color: rgb(237 170 0 / 0.7);\n}\n.border-warning\\/75{\nborder-color: rgb(237 170 0 / 0.75);\n}\n.border-warning\\/80{\nborder-color: rgb(237 170 0 / 0.8);\n}\n.border-warning\\/85{\nborder-color: rgb(237 170 0 / 0.85);\n}\n.border-warning\\/90{\nborder-color: rgb(237 170 0 / 0.9);\n}\n.border-warning\\/95{\nborder-color: rgb(237 170 0 / 0.95);\n}\n.border-white{\n--tw-border-opacity: 1;\nborder-color: rgb(254 253 252 / var(--tw-border-opacity));\n}\n.border-white\\/0{\nborder-color: rgb(254 253 252 / 0);\n}\n.border-white\\/10{\nborder-color: rgb(254 253 252 / 0.1);\n}\n.border-white\\/100{\nborder-color: rgb(254 253 252 / 1);\n}\n.border-white\\/15{\nborder-color: rgb(254 253 252 / 0.15);\n}\n.border-white\\/20{\nborder-color: rgb(254 253 252 / 0.2);\n}\n.border-white\\/25{\nborder-color: rgb(254 253 252 / 0.25);\n}\n.border-white\\/30{\nborder-color: rgb(254 253 252 / 0.3);\n}\n.border-white\\/35{\nborder-color: rgb(254 253 252 / 0.35);\n}\n.border-white\\/40{\nborder-color: rgb(254 253 252 / 0.4);\n}\n.border-white\\/45{\nborder-color: rgb(254 253 252 / 0.45);\n}\n.border-white\\/5{\nborder-color: rgb(254 253 252 / 0.05);\n}\n.border-white\\/50{\nborder-color: rgb(254 253 252 / 0.5);\n}\n.border-white\\/55{\nborder-color: rgb(254 253 252 / 0.55);\n}\n.border-white\\/60{\nborder-color: rgb(254 253 252 / 0.6);\n}\n.border-white\\/65{\nborder-color: rgb(254 253 252 / 0.65);\n}\n.border-white\\/70{\nborder-color: rgb(254 253 252 / 0.7);\n}\n.border-white\\/75{\nborder-color: rgb(254 253 252 / 0.75);\n}\n.border-white\\/80{\nborder-color: rgb(254 253 252 / 0.8);\n}\n.border-white\\/85{\nborder-color: rgb(254 253 252 / 0.85);\n}\n.border-white\\/90{\nborder-color: rgb(254 253 252 / 0.9);\n}\n.border-white\\/95{\nborder-color: rgb(254 253 252 / 0.95);\n}\n.border-wood{\n--tw-border-opacity: 1;\nborder-color: rgb(173 127 88 / var(--tw-border-opacity));\n}\n.border-wood-100{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / var(--tw-border-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-wood-100\\/0{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-wood-100\\/10{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-wood-100\\/100{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-wood-100\\/15{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-wood-100\\/20{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-wood-100\\/25{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-wood-100\\/30{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-wood-100\\/35{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-wood-100\\/40{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-wood-100\\/45{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-wood-100\\/5{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-wood-100\\/50{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-wood-100\\/55{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-wood-100\\/60{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-wood-100\\/65{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-wood-100\\/70{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-wood-100\\/75{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-wood-100\\/80{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-wood-100\\/85{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-wood-100\\/90{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-wood-100\\/95{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-wood-200{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / var(--tw-border-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-wood-200\\/0{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-wood-200\\/10{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-wood-200\\/100{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-wood-200\\/15{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-wood-200\\/20{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-wood-200\\/25{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-wood-200\\/30{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-wood-200\\/35{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-wood-200\\/40{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-wood-200\\/45{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-wood-200\\/5{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-wood-200\\/50{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-wood-200\\/55{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-wood-200\\/60{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-wood-200\\/65{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-wood-200\\/70{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-wood-200\\/75{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-wood-200\\/80{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-wood-200\\/85{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-wood-200\\/90{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-wood-200\\/95{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-wood-300{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / var(--tw-border-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-wood-300\\/0{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-wood-300\\/10{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-wood-300\\/100{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-wood-300\\/15{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-wood-300\\/20{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-wood-300\\/25{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-wood-300\\/30{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-wood-300\\/35{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-wood-300\\/40{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-wood-300\\/45{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-wood-300\\/5{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-wood-300\\/50{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-wood-300\\/55{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-wood-300\\/60{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-wood-300\\/65{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-wood-300\\/70{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-wood-300\\/75{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-wood-300\\/80{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-wood-300\\/85{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-wood-300\\/90{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-wood-300\\/95{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-wood-400{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / var(--tw-border-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-wood-400\\/0{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-wood-400\\/10{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-wood-400\\/100{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-wood-400\\/15{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-wood-400\\/20{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-wood-400\\/25{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-wood-400\\/30{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-wood-400\\/35{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-wood-400\\/40{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-wood-400\\/45{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-wood-400\\/5{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-wood-400\\/50{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-wood-400\\/55{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-wood-400\\/60{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-wood-400\\/65{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-wood-400\\/70{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-wood-400\\/75{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-wood-400\\/80{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-wood-400\\/85{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-wood-400\\/90{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-wood-400\\/95{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-wood-50{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / var(--tw-border-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-wood-50\\/0{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-wood-50\\/10{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-wood-50\\/100{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-wood-50\\/15{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-wood-50\\/20{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-wood-50\\/25{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-wood-50\\/30{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-wood-50\\/35{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-wood-50\\/40{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-wood-50\\/45{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-wood-50\\/5{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-wood-50\\/50{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-wood-50\\/55{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-wood-50\\/60{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-wood-50\\/65{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-wood-50\\/70{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-wood-50\\/75{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-wood-50\\/80{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-wood-50\\/85{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-wood-50\\/90{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-wood-50\\/95{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-wood-500{\n--tw-border-opacity: 1;\nborder-color: color(from #ad7f58 srgb r g b / var(--tw-border-opacity));\n}\n.border-wood-500\\/0{\nborder-color: color(from #ad7f58 srgb r g b / 0);\n}\n.border-wood-500\\/10{\nborder-color: color(from #ad7f58 srgb r g b / 0.1);\n}\n.border-wood-500\\/100{\nborder-color: color(from #ad7f58 srgb r g b / 1);\n}\n.border-wood-500\\/15{\nborder-color: color(from #ad7f58 srgb r g b / 0.15);\n}\n.border-wood-500\\/20{\nborder-color: color(from #ad7f58 srgb r g b / 0.2);\n}\n.border-wood-500\\/25{\nborder-color: color(from #ad7f58 srgb r g b / 0.25);\n}\n.border-wood-500\\/30{\nborder-color: color(from #ad7f58 srgb r g b / 0.3);\n}\n.border-wood-500\\/35{\nborder-color: color(from #ad7f58 srgb r g b / 0.35);\n}\n.border-wood-500\\/40{\nborder-color: color(from #ad7f58 srgb r g b / 0.4);\n}\n.border-wood-500\\/45{\nborder-color: color(from #ad7f58 srgb r g b / 0.45);\n}\n.border-wood-500\\/5{\nborder-color: color(from #ad7f58 srgb r g b / 0.05);\n}\n.border-wood-500\\/50{\nborder-color: color(from #ad7f58 srgb r g b / 0.5);\n}\n.border-wood-500\\/55{\nborder-color: color(from #ad7f58 srgb r g b / 0.55);\n}\n.border-wood-500\\/60{\nborder-color: color(from #ad7f58 srgb r g b / 0.6);\n}\n.border-wood-500\\/65{\nborder-color: color(from #ad7f58 srgb r g b / 0.65);\n}\n.border-wood-500\\/70{\nborder-color: color(from #ad7f58 srgb r g b / 0.7);\n}\n.border-wood-500\\/75{\nborder-color: color(from #ad7f58 srgb r g b / 0.75);\n}\n.border-wood-500\\/80{\nborder-color: color(from #ad7f58 srgb r g b / 0.8);\n}\n.border-wood-500\\/85{\nborder-color: color(from #ad7f58 srgb r g b / 0.85);\n}\n.border-wood-500\\/90{\nborder-color: color(from #ad7f58 srgb r g b / 0.9);\n}\n.border-wood-500\\/95{\nborder-color: color(from #ad7f58 srgb r g b / 0.95);\n}\n.border-wood-600{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / var(--tw-border-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-wood-600\\/0{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-wood-600\\/10{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-wood-600\\/100{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-wood-600\\/15{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-wood-600\\/20{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-wood-600\\/25{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-wood-600\\/30{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-wood-600\\/35{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-wood-600\\/40{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-wood-600\\/45{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-wood-600\\/5{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-wood-600\\/50{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-wood-600\\/55{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-wood-600\\/60{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-wood-600\\/65{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-wood-600\\/70{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-wood-600\\/75{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-wood-600\\/80{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-wood-600\\/85{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-wood-600\\/90{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-wood-600\\/95{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-wood-700{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / var(--tw-border-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-wood-700\\/0{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-wood-700\\/10{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-wood-700\\/100{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-wood-700\\/15{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-wood-700\\/20{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-wood-700\\/25{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-wood-700\\/30{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-wood-700\\/35{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-wood-700\\/40{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-wood-700\\/45{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-wood-700\\/5{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-wood-700\\/50{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-wood-700\\/55{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-wood-700\\/60{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-wood-700\\/65{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-wood-700\\/70{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-wood-700\\/75{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-wood-700\\/80{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-wood-700\\/85{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-wood-700\\/90{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-wood-700\\/95{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-wood-800{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / var(--tw-border-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-wood-800\\/0{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-wood-800\\/10{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-wood-800\\/100{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-wood-800\\/15{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-wood-800\\/20{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-wood-800\\/25{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-wood-800\\/30{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-wood-800\\/35{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-wood-800\\/40{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-wood-800\\/45{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-wood-800\\/5{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-wood-800\\/50{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-wood-800\\/55{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-wood-800\\/60{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-wood-800\\/65{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-wood-800\\/70{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-wood-800\\/75{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-wood-800\\/80{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-wood-800\\/85{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-wood-800\\/90{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-wood-800\\/95{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-wood-900{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / var(--tw-border-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-wood-900\\/0{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-wood-900\\/10{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-wood-900\\/100{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-wood-900\\/15{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-wood-900\\/20{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-wood-900\\/25{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-wood-900\\/30{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-wood-900\\/35{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-wood-900\\/40{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-wood-900\\/45{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-wood-900\\/5{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-wood-900\\/50{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-wood-900\\/55{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-wood-900\\/60{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-wood-900\\/65{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-wood-900\\/70{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-wood-900\\/75{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-wood-900\\/80{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-wood-900\\/85{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-wood-900\\/90{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-wood-900\\/95{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-wood-950{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / var(--tw-border-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-wood-950\\/0{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-wood-950\\/10{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-wood-950\\/100{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-wood-950\\/15{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-wood-950\\/20{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-wood-950\\/25{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-wood-950\\/30{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-wood-950\\/35{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-wood-950\\/40{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-wood-950\\/45{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-wood-950\\/5{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-wood-950\\/50{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-wood-950\\/55{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-wood-950\\/60{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-wood-950\\/65{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-wood-950\\/70{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-wood-950\\/75{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-wood-950\\/80{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-wood-950\\/85{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-wood-950\\/90{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-wood-950\\/95{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-wood\\/0{\nborder-color: rgb(173 127 88 / 0);\n}\n.border-wood\\/10{\nborder-color: rgb(173 127 88 / 0.1);\n}\n.border-wood\\/100{\nborder-color: rgb(173 127 88 / 1);\n}\n.border-wood\\/15{\nborder-color: rgb(173 127 88 / 0.15);\n}\n.border-wood\\/20{\nborder-color: rgb(173 127 88 / 0.2);\n}\n.border-wood\\/25{\nborder-color: rgb(173 127 88 / 0.25);\n}\n.border-wood\\/30{\nborder-color: rgb(173 127 88 / 0.3);\n}\n.border-wood\\/35{\nborder-color: rgb(173 127 88 / 0.35);\n}\n.border-wood\\/40{\nborder-color: rgb(173 127 88 / 0.4);\n}\n.border-wood\\/45{\nborder-color: rgb(173 127 88 / 0.45);\n}\n.border-wood\\/5{\nborder-color: rgb(173 127 88 / 0.05);\n}\n.border-wood\\/50{\nborder-color: rgb(173 127 88 / 0.5);\n}\n.border-wood\\/55{\nborder-color: rgb(173 127 88 / 0.55);\n}\n.border-wood\\/60{\nborder-color: rgb(173 127 88 / 0.6);\n}\n.border-wood\\/65{\nborder-color: rgb(173 127 88 / 0.65);\n}\n.border-wood\\/70{\nborder-color: rgb(173 127 88 / 0.7);\n}\n.border-wood\\/75{\nborder-color: rgb(173 127 88 / 0.75);\n}\n.border-wood\\/80{\nborder-color: rgb(173 127 88 / 0.8);\n}\n.border-wood\\/85{\nborder-color: rgb(173 127 88 / 0.85);\n}\n.border-wood\\/90{\nborder-color: rgb(173 127 88 / 0.9);\n}\n.border-wood\\/95{\nborder-color: rgb(173 127 88 / 0.95);\n}\n.border-b-danger-500{\n--tw-border-opacity: 1;\nborder-bottom-color: color(from #f24c3d srgb r g b / var(--tw-border-opacity));\n}\n.border-b-info-500{\n--tw-border-opacity: 1;\nborder-bottom-color: color(from #00bfff srgb r g b / var(--tw-border-opacity));\n}\n.border-b-success-500{\n--tw-border-opacity: 1;\nborder-bottom-color: color(from #44bc69 srgb r g b / var(--tw-border-opacity));\n}\n.border-b-warning-500{\n--tw-border-opacity: 1;\nborder-bottom-color: color(from #edaa00 srgb r g b / var(--tw-border-opacity));\n}\n.border-e-primary-500{\n--tw-border-opacity: 1;\nborder-inline-end-color: color(from var(--primary) srgb r g b / var(--tw-border-opacity));\n}\n.border-s-dimmed{\n--tw-border-opacity: 1;\nborder-inline-start-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)) 72%, color(from var(--tint) srgb r g b / var(--tw-border-opacity)));\n}\n.border-s-primary-500{\n--tw-border-opacity: 1;\nborder-inline-start-color: color(from var(--primary) srgb r g b / var(--tw-border-opacity));\n}\n.border-s-tint-50{\n--tw-border-opacity: 1;\nborder-inline-start-color: color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-border-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.bg{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)) 99%, color(from var(--tint) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-\\[var\\(--fabric-input\\)\\]{\nbackground-color: var(--fabric-input);\n}\n.bg-accent{\nbackground-color: var(--accent);\n}\n.bg-accent-100{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-accent-100\\/0{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-accent-100\\/10{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-accent-100\\/100{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-accent-100\\/15{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-accent-100\\/20{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-accent-100\\/25{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-accent-100\\/30{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-accent-100\\/35{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-accent-100\\/40{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-accent-100\\/45{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-accent-100\\/5{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-accent-100\\/50{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-accent-100\\/55{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-accent-100\\/60{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-accent-100\\/65{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-accent-100\\/70{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-accent-100\\/75{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-accent-100\\/80{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-accent-100\\/85{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-accent-100\\/90{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-accent-100\\/95{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-accent-200{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-accent-200\\/0{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-accent-200\\/10{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-accent-200\\/100{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-accent-200\\/15{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-accent-200\\/20{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-accent-200\\/25{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-accent-200\\/30{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-accent-200\\/35{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-accent-200\\/40{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-accent-200\\/45{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-accent-200\\/5{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-accent-200\\/50{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-accent-200\\/55{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-accent-200\\/60{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-accent-200\\/65{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-accent-200\\/70{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-accent-200\\/75{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-accent-200\\/80{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-accent-200\\/85{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-accent-200\\/90{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-accent-200\\/95{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-accent-300{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / var(--tw-bg-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-accent-300\\/0{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-accent-300\\/10{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-accent-300\\/100{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-accent-300\\/15{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-accent-300\\/20{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-accent-300\\/25{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-accent-300\\/30{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-accent-300\\/35{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-accent-300\\/40{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-accent-300\\/45{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-accent-300\\/5{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-accent-300\\/50{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-accent-300\\/55{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-accent-300\\/60{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-accent-300\\/65{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-accent-300\\/70{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-accent-300\\/75{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-accent-300\\/80{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-accent-300\\/85{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-accent-300\\/90{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-accent-300\\/95{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-accent-400{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-accent-400\\/0{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-accent-400\\/10{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-accent-400\\/100{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-accent-400\\/15{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-accent-400\\/20{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-accent-400\\/25{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-accent-400\\/30{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-accent-400\\/35{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-accent-400\\/40{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-accent-400\\/45{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-accent-400\\/5{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-accent-400\\/50{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-accent-400\\/55{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-accent-400\\/60{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-accent-400\\/65{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-accent-400\\/70{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-accent-400\\/75{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-accent-400\\/80{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-accent-400\\/85{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-accent-400\\/90{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-accent-400\\/95{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-accent-50{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / var(--tw-bg-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-accent-50\\/0{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-accent-50\\/10{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-accent-50\\/100{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-accent-50\\/15{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-accent-50\\/20{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-accent-50\\/25{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-accent-50\\/30{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-accent-50\\/35{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-accent-50\\/40{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-accent-50\\/45{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-accent-50\\/5{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-accent-50\\/50{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-accent-50\\/55{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-accent-50\\/60{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-accent-50\\/65{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-accent-50\\/70{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-accent-50\\/75{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-accent-50\\/80{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-accent-50\\/85{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-accent-50\\/90{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-accent-50\\/95{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-accent-500{\n--tw-bg-opacity: 1;\nbackground-color: color(from var(--accent) srgb r g b / var(--tw-bg-opacity));\n}\n.bg-accent-500\\/0{\nbackground-color: color(from var(--accent) srgb r g b / 0);\n}\n.bg-accent-500\\/10{\nbackground-color: color(from var(--accent) srgb r g b / 0.1);\n}\n.bg-accent-500\\/100{\nbackground-color: color(from var(--accent) srgb r g b / 1);\n}\n.bg-accent-500\\/15{\nbackground-color: color(from var(--accent) srgb r g b / 0.15);\n}\n.bg-accent-500\\/20{\nbackground-color: color(from var(--accent) srgb r g b / 0.2);\n}\n.bg-accent-500\\/25{\nbackground-color: color(from var(--accent) srgb r g b / 0.25);\n}\n.bg-accent-500\\/30{\nbackground-color: color(from var(--accent) srgb r g b / 0.3);\n}\n.bg-accent-500\\/35{\nbackground-color: color(from var(--accent) srgb r g b / 0.35);\n}\n.bg-accent-500\\/40{\nbackground-color: color(from var(--accent) srgb r g b / 0.4);\n}\n.bg-accent-500\\/45{\nbackground-color: color(from var(--accent) srgb r g b / 0.45);\n}\n.bg-accent-500\\/5{\nbackground-color: color(from var(--accent) srgb r g b / 0.05);\n}\n.bg-accent-500\\/50{\nbackground-color: color(from var(--accent) srgb r g b / 0.5);\n}\n.bg-accent-500\\/55{\nbackground-color: color(from var(--accent) srgb r g b / 0.55);\n}\n.bg-accent-500\\/60{\nbackground-color: color(from var(--accent) srgb r g b / 0.6);\n}\n.bg-accent-500\\/65{\nbackground-color: color(from var(--accent) srgb r g b / 0.65);\n}\n.bg-accent-500\\/70{\nbackground-color: color(from var(--accent) srgb r g b / 0.7);\n}\n.bg-accent-500\\/75{\nbackground-color: color(from var(--accent) srgb r g b / 0.75);\n}\n.bg-accent-500\\/80{\nbackground-color: color(from var(--accent) srgb r g b / 0.8);\n}\n.bg-accent-500\\/85{\nbackground-color: color(from var(--accent) srgb r g b / 0.85);\n}\n.bg-accent-500\\/90{\nbackground-color: color(from var(--accent) srgb r g b / 0.9);\n}\n.bg-accent-500\\/95{\nbackground-color: color(from var(--accent) srgb r g b / 0.95);\n}\n.bg-accent-600{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-accent-600\\/0{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-accent-600\\/10{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-accent-600\\/100{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-accent-600\\/15{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-accent-600\\/20{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-accent-600\\/25{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-accent-600\\/30{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-accent-600\\/35{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-accent-600\\/40{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-accent-600\\/45{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-accent-600\\/5{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-accent-600\\/50{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-accent-600\\/55{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-accent-600\\/60{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-accent-600\\/65{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-accent-600\\/70{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-accent-600\\/75{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-accent-600\\/80{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-accent-600\\/85{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-accent-600\\/90{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-accent-600\\/95{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-accent-700{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / var(--tw-bg-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-accent-700\\/0{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-accent-700\\/10{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-accent-700\\/100{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-accent-700\\/15{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-accent-700\\/20{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-accent-700\\/25{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-accent-700\\/30{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-accent-700\\/35{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-accent-700\\/40{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-accent-700\\/45{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-accent-700\\/5{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-accent-700\\/50{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-accent-700\\/55{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-accent-700\\/60{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-accent-700\\/65{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-accent-700\\/70{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-accent-700\\/75{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-accent-700\\/80{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-accent-700\\/85{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-accent-700\\/90{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-accent-700\\/95{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-accent-800{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-accent-800\\/0{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-accent-800\\/10{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-accent-800\\/100{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-accent-800\\/15{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-accent-800\\/20{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-accent-800\\/25{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-accent-800\\/30{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-accent-800\\/35{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-accent-800\\/40{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-accent-800\\/45{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-accent-800\\/5{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-accent-800\\/50{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-accent-800\\/55{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-accent-800\\/60{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-accent-800\\/65{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-accent-800\\/70{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-accent-800\\/75{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-accent-800\\/80{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-accent-800\\/85{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-accent-800\\/90{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-accent-800\\/95{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-accent-900{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-accent-900\\/0{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-accent-900\\/10{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-accent-900\\/100{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-accent-900\\/15{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-accent-900\\/20{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-accent-900\\/25{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-accent-900\\/30{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-accent-900\\/35{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-accent-900\\/40{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-accent-900\\/45{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-accent-900\\/5{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-accent-900\\/50{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-accent-900\\/55{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-accent-900\\/60{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-accent-900\\/65{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-accent-900\\/70{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-accent-900\\/75{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-accent-900\\/80{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-accent-900\\/85{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-accent-900\\/90{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-accent-900\\/95{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-accent-950{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / var(--tw-bg-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-accent-950\\/0{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-accent-950\\/10{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-accent-950\\/100{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-accent-950\\/15{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-accent-950\\/20{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-accent-950\\/25{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-accent-950\\/30{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-accent-950\\/35{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-accent-950\\/40{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-accent-950\\/45{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-accent-950\\/5{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-accent-950\\/50{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-accent-950\\/55{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-accent-950\\/60{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-accent-950\\/65{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-accent-950\\/70{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-accent-950\\/75{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-accent-950\\/80{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-accent-950\\/85{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-accent-950\\/90{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-accent-950\\/95{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-avacado{\n--tw-bg-opacity: 1;\nbackground-color: rgb(70 167 88 / var(--tw-bg-opacity));\n}\n.bg-avacado-100{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-avacado-100\\/0{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-avacado-100\\/10{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-avacado-100\\/100{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-avacado-100\\/15{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-avacado-100\\/20{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-avacado-100\\/25{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-avacado-100\\/30{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-avacado-100\\/35{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-avacado-100\\/40{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-avacado-100\\/45{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-avacado-100\\/5{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-avacado-100\\/50{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-avacado-100\\/55{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-avacado-100\\/60{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-avacado-100\\/65{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-avacado-100\\/70{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-avacado-100\\/75{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-avacado-100\\/80{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-avacado-100\\/85{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-avacado-100\\/90{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-avacado-100\\/95{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-avacado-200{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-avacado-200\\/0{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-avacado-200\\/10{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-avacado-200\\/100{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-avacado-200\\/15{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-avacado-200\\/20{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-avacado-200\\/25{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-avacado-200\\/30{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-avacado-200\\/35{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-avacado-200\\/40{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-avacado-200\\/45{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-avacado-200\\/5{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-avacado-200\\/50{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-avacado-200\\/55{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-avacado-200\\/60{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-avacado-200\\/65{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-avacado-200\\/70{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-avacado-200\\/75{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-avacado-200\\/80{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-avacado-200\\/85{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-avacado-200\\/90{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-avacado-200\\/95{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-avacado-300{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / var(--tw-bg-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-avacado-300\\/0{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-avacado-300\\/10{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-avacado-300\\/100{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-avacado-300\\/15{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-avacado-300\\/20{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-avacado-300\\/25{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-avacado-300\\/30{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-avacado-300\\/35{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-avacado-300\\/40{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-avacado-300\\/45{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-avacado-300\\/5{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-avacado-300\\/50{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-avacado-300\\/55{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-avacado-300\\/60{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-avacado-300\\/65{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-avacado-300\\/70{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-avacado-300\\/75{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-avacado-300\\/80{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-avacado-300\\/85{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-avacado-300\\/90{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-avacado-300\\/95{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-avacado-400{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-avacado-400\\/0{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-avacado-400\\/10{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-avacado-400\\/100{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-avacado-400\\/15{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-avacado-400\\/20{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-avacado-400\\/25{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-avacado-400\\/30{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-avacado-400\\/35{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-avacado-400\\/40{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-avacado-400\\/45{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-avacado-400\\/5{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-avacado-400\\/50{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-avacado-400\\/55{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-avacado-400\\/60{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-avacado-400\\/65{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-avacado-400\\/70{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-avacado-400\\/75{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-avacado-400\\/80{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-avacado-400\\/85{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-avacado-400\\/90{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-avacado-400\\/95{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-avacado-50{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / var(--tw-bg-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-avacado-50\\/0{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-avacado-50\\/10{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-avacado-50\\/100{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-avacado-50\\/15{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-avacado-50\\/20{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-avacado-50\\/25{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-avacado-50\\/30{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-avacado-50\\/35{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-avacado-50\\/40{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-avacado-50\\/45{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-avacado-50\\/5{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-avacado-50\\/50{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-avacado-50\\/55{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-avacado-50\\/60{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-avacado-50\\/65{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-avacado-50\\/70{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-avacado-50\\/75{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-avacado-50\\/80{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-avacado-50\\/85{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-avacado-50\\/90{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-avacado-50\\/95{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-avacado-500{\n--tw-bg-opacity: 1;\nbackground-color: color(from #46a758 srgb r g b / var(--tw-bg-opacity));\n}\n.bg-avacado-500\\/0{\nbackground-color: color(from #46a758 srgb r g b / 0);\n}\n.bg-avacado-500\\/10{\nbackground-color: color(from #46a758 srgb r g b / 0.1);\n}\n.bg-avacado-500\\/100{\nbackground-color: color(from #46a758 srgb r g b / 1);\n}\n.bg-avacado-500\\/15{\nbackground-color: color(from #46a758 srgb r g b / 0.15);\n}\n.bg-avacado-500\\/20{\nbackground-color: color(from #46a758 srgb r g b / 0.2);\n}\n.bg-avacado-500\\/25{\nbackground-color: color(from #46a758 srgb r g b / 0.25);\n}\n.bg-avacado-500\\/30{\nbackground-color: color(from #46a758 srgb r g b / 0.3);\n}\n.bg-avacado-500\\/35{\nbackground-color: color(from #46a758 srgb r g b / 0.35);\n}\n.bg-avacado-500\\/40{\nbackground-color: color(from #46a758 srgb r g b / 0.4);\n}\n.bg-avacado-500\\/45{\nbackground-color: color(from #46a758 srgb r g b / 0.45);\n}\n.bg-avacado-500\\/5{\nbackground-color: color(from #46a758 srgb r g b / 0.05);\n}\n.bg-avacado-500\\/50{\nbackground-color: color(from #46a758 srgb r g b / 0.5);\n}\n.bg-avacado-500\\/55{\nbackground-color: color(from #46a758 srgb r g b / 0.55);\n}\n.bg-avacado-500\\/60{\nbackground-color: color(from #46a758 srgb r g b / 0.6);\n}\n.bg-avacado-500\\/65{\nbackground-color: color(from #46a758 srgb r g b / 0.65);\n}\n.bg-avacado-500\\/70{\nbackground-color: color(from #46a758 srgb r g b / 0.7);\n}\n.bg-avacado-500\\/75{\nbackground-color: color(from #46a758 srgb r g b / 0.75);\n}\n.bg-avacado-500\\/80{\nbackground-color: color(from #46a758 srgb r g b / 0.8);\n}\n.bg-avacado-500\\/85{\nbackground-color: color(from #46a758 srgb r g b / 0.85);\n}\n.bg-avacado-500\\/90{\nbackground-color: color(from #46a758 srgb r g b / 0.9);\n}\n.bg-avacado-500\\/95{\nbackground-color: color(from #46a758 srgb r g b / 0.95);\n}\n.bg-avacado-600{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-avacado-600\\/0{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-avacado-600\\/10{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-avacado-600\\/100{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-avacado-600\\/15{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-avacado-600\\/20{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-avacado-600\\/25{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-avacado-600\\/30{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-avacado-600\\/35{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-avacado-600\\/40{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-avacado-600\\/45{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-avacado-600\\/5{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-avacado-600\\/50{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-avacado-600\\/55{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-avacado-600\\/60{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-avacado-600\\/65{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-avacado-600\\/70{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-avacado-600\\/75{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-avacado-600\\/80{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-avacado-600\\/85{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-avacado-600\\/90{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-avacado-600\\/95{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-avacado-700{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / var(--tw-bg-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-avacado-700\\/0{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-avacado-700\\/10{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-avacado-700\\/100{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-avacado-700\\/15{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-avacado-700\\/20{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-avacado-700\\/25{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-avacado-700\\/30{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-avacado-700\\/35{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-avacado-700\\/40{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-avacado-700\\/45{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-avacado-700\\/5{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-avacado-700\\/50{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-avacado-700\\/55{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-avacado-700\\/60{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-avacado-700\\/65{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-avacado-700\\/70{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-avacado-700\\/75{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-avacado-700\\/80{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-avacado-700\\/85{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-avacado-700\\/90{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-avacado-700\\/95{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-avacado-800{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-avacado-800\\/0{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-avacado-800\\/10{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-avacado-800\\/100{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-avacado-800\\/15{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-avacado-800\\/20{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-avacado-800\\/25{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-avacado-800\\/30{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-avacado-800\\/35{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-avacado-800\\/40{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-avacado-800\\/45{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-avacado-800\\/5{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-avacado-800\\/50{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-avacado-800\\/55{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-avacado-800\\/60{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-avacado-800\\/65{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-avacado-800\\/70{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-avacado-800\\/75{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-avacado-800\\/80{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-avacado-800\\/85{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-avacado-800\\/90{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-avacado-800\\/95{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-avacado-900{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-avacado-900\\/0{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-avacado-900\\/10{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-avacado-900\\/100{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-avacado-900\\/15{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-avacado-900\\/20{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-avacado-900\\/25{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-avacado-900\\/30{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-avacado-900\\/35{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-avacado-900\\/40{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-avacado-900\\/45{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-avacado-900\\/5{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-avacado-900\\/50{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-avacado-900\\/55{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-avacado-900\\/60{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-avacado-900\\/65{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-avacado-900\\/70{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-avacado-900\\/75{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-avacado-900\\/80{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-avacado-900\\/85{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-avacado-900\\/90{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-avacado-900\\/95{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-avacado-950{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / var(--tw-bg-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-avacado-950\\/0{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-avacado-950\\/10{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-avacado-950\\/100{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-avacado-950\\/15{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-avacado-950\\/20{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-avacado-950\\/25{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-avacado-950\\/30{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-avacado-950\\/35{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-avacado-950\\/40{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-avacado-950\\/45{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-avacado-950\\/5{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-avacado-950\\/50{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-avacado-950\\/55{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-avacado-950\\/60{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-avacado-950\\/65{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-avacado-950\\/70{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-avacado-950\\/75{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-avacado-950\\/80{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-avacado-950\\/85{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-avacado-950\\/90{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-avacado-950\\/95{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-avacado\\/0{\nbackground-color: rgb(70 167 88 / 0);\n}\n.bg-avacado\\/10{\nbackground-color: rgb(70 167 88 / 0.1);\n}\n.bg-avacado\\/100{\nbackground-color: rgb(70 167 88 / 1);\n}\n.bg-avacado\\/15{\nbackground-color: rgb(70 167 88 / 0.15);\n}\n.bg-avacado\\/20{\nbackground-color: rgb(70 167 88 / 0.2);\n}\n.bg-avacado\\/25{\nbackground-color: rgb(70 167 88 / 0.25);\n}\n.bg-avacado\\/30{\nbackground-color: rgb(70 167 88 / 0.3);\n}\n.bg-avacado\\/35{\nbackground-color: rgb(70 167 88 / 0.35);\n}\n.bg-avacado\\/40{\nbackground-color: rgb(70 167 88 / 0.4);\n}\n.bg-avacado\\/45{\nbackground-color: rgb(70 167 88 / 0.45);\n}\n.bg-avacado\\/5{\nbackground-color: rgb(70 167 88 / 0.05);\n}\n.bg-avacado\\/50{\nbackground-color: rgb(70 167 88 / 0.5);\n}\n.bg-avacado\\/55{\nbackground-color: rgb(70 167 88 / 0.55);\n}\n.bg-avacado\\/60{\nbackground-color: rgb(70 167 88 / 0.6);\n}\n.bg-avacado\\/65{\nbackground-color: rgb(70 167 88 / 0.65);\n}\n.bg-avacado\\/70{\nbackground-color: rgb(70 167 88 / 0.7);\n}\n.bg-avacado\\/75{\nbackground-color: rgb(70 167 88 / 0.75);\n}\n.bg-avacado\\/80{\nbackground-color: rgb(70 167 88 / 0.8);\n}\n.bg-avacado\\/85{\nbackground-color: rgb(70 167 88 / 0.85);\n}\n.bg-avacado\\/90{\nbackground-color: rgb(70 167 88 / 0.9);\n}\n.bg-avacado\\/95{\nbackground-color: rgb(70 167 88 / 0.95);\n}\n.bg-base{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)) 99%, color(from var(--tint) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-base\\/0{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0) 99%, color(from var(--tint) srgb r g b / 0));\n}\n.bg-base\\/10{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.1) 99%, color(from var(--tint) srgb r g b / 0.1));\n}\n.bg-base\\/100{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 99%, color(from var(--tint) srgb r g b / 1));\n}\n.bg-base\\/15{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.15) 99%, color(from var(--tint) srgb r g b / 0.15));\n}\n.bg-base\\/20{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.2) 99%, color(from var(--tint) srgb r g b / 0.2));\n}\n.bg-base\\/25{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.25) 99%, color(from var(--tint) srgb r g b / 0.25));\n}\n.bg-base\\/30{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.3) 99%, color(from var(--tint) srgb r g b / 0.3));\n}\n.bg-base\\/35{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.35) 99%, color(from var(--tint) srgb r g b / 0.35));\n}\n.bg-base\\/40{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.4) 99%, color(from var(--tint) srgb r g b / 0.4));\n}\n.bg-base\\/45{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.45) 99%, color(from var(--tint) srgb r g b / 0.45));\n}\n.bg-base\\/5{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.05) 99%, color(from var(--tint) srgb r g b / 0.05));\n}\n.bg-base\\/50{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.5) 99%, color(from var(--tint) srgb r g b / 0.5));\n}\n.bg-base\\/55{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.55) 99%, color(from var(--tint) srgb r g b / 0.55));\n}\n.bg-base\\/60{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.6) 99%, color(from var(--tint) srgb r g b / 0.6));\n}\n.bg-base\\/65{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.65) 99%, color(from var(--tint) srgb r g b / 0.65));\n}\n.bg-base\\/70{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.7) 99%, color(from var(--tint) srgb r g b / 0.7));\n}\n.bg-base\\/75{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.75) 99%, color(from var(--tint) srgb r g b / 0.75));\n}\n.bg-base\\/80{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.8) 99%, color(from var(--tint) srgb r g b / 0.8));\n}\n.bg-base\\/85{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.85) 99%, color(from var(--tint) srgb r g b / 0.85));\n}\n.bg-base\\/90{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.9) 99%, color(from var(--tint) srgb r g b / 0.9));\n}\n.bg-base\\/95{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.95) 99%, color(from var(--tint) srgb r g b / 0.95));\n}\n.bg-black{\n--tw-bg-opacity: 1;\nbackground-color: rgb(25 26 27 / var(--tw-bg-opacity));\n}\n.bg-black\\/0{\nbackground-color: rgb(25 26 27 / 0);\n}\n.bg-black\\/10{\nbackground-color: rgb(25 26 27 / 0.1);\n}\n.bg-black\\/100{\nbackground-color: rgb(25 26 27 / 1);\n}\n.bg-black\\/15{\nbackground-color: rgb(25 26 27 / 0.15);\n}\n.bg-black\\/20{\nbackground-color: rgb(25 26 27 / 0.2);\n}\n.bg-black\\/25{\nbackground-color: rgb(25 26 27 / 0.25);\n}\n.bg-black\\/30{\nbackground-color: rgb(25 26 27 / 0.3);\n}\n.bg-black\\/35{\nbackground-color: rgb(25 26 27 / 0.35);\n}\n.bg-black\\/40{\nbackground-color: rgb(25 26 27 / 0.4);\n}\n.bg-black\\/45{\nbackground-color: rgb(25 26 27 / 0.45);\n}\n.bg-black\\/5{\nbackground-color: rgb(25 26 27 / 0.05);\n}\n.bg-black\\/50{\nbackground-color: rgb(25 26 27 / 0.5);\n}\n.bg-black\\/55{\nbackground-color: rgb(25 26 27 / 0.55);\n}\n.bg-black\\/60{\nbackground-color: rgb(25 26 27 / 0.6);\n}\n.bg-black\\/65{\nbackground-color: rgb(25 26 27 / 0.65);\n}\n.bg-black\\/70{\nbackground-color: rgb(25 26 27 / 0.7);\n}\n.bg-black\\/75{\nbackground-color: rgb(25 26 27 / 0.75);\n}\n.bg-black\\/80{\nbackground-color: rgb(25 26 27 / 0.8);\n}\n.bg-black\\/85{\nbackground-color: rgb(25 26 27 / 0.85);\n}\n.bg-black\\/90{\nbackground-color: rgb(25 26 27 / 0.9);\n}\n.bg-black\\/95{\nbackground-color: rgb(25 26 27 / 0.95);\n}\n.bg-coral{\n--tw-bg-opacity: 1;\nbackground-color: rgb(233 61 130 / var(--tw-bg-opacity));\n}\n.bg-coral-100{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-coral-100\\/0{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-coral-100\\/10{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-coral-100\\/100{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-coral-100\\/15{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-coral-100\\/20{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-coral-100\\/25{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-coral-100\\/30{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-coral-100\\/35{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-coral-100\\/40{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-coral-100\\/45{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-coral-100\\/5{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-coral-100\\/50{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-coral-100\\/55{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-coral-100\\/60{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-coral-100\\/65{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-coral-100\\/70{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-coral-100\\/75{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-coral-100\\/80{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-coral-100\\/85{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-coral-100\\/90{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-coral-100\\/95{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-coral-200{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-coral-200\\/0{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-coral-200\\/10{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-coral-200\\/100{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-coral-200\\/15{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-coral-200\\/20{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-coral-200\\/25{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-coral-200\\/30{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-coral-200\\/35{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-coral-200\\/40{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-coral-200\\/45{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-coral-200\\/5{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-coral-200\\/50{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-coral-200\\/55{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-coral-200\\/60{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-coral-200\\/65{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-coral-200\\/70{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-coral-200\\/75{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-coral-200\\/80{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-coral-200\\/85{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-coral-200\\/90{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-coral-200\\/95{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-coral-300{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / var(--tw-bg-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-coral-300\\/0{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-coral-300\\/10{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-coral-300\\/100{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-coral-300\\/15{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-coral-300\\/20{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-coral-300\\/25{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-coral-300\\/30{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-coral-300\\/35{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-coral-300\\/40{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-coral-300\\/45{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-coral-300\\/5{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-coral-300\\/50{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-coral-300\\/55{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-coral-300\\/60{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-coral-300\\/65{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-coral-300\\/70{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-coral-300\\/75{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-coral-300\\/80{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-coral-300\\/85{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-coral-300\\/90{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-coral-300\\/95{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-coral-400{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-coral-400\\/0{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-coral-400\\/10{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-coral-400\\/100{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-coral-400\\/15{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-coral-400\\/20{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-coral-400\\/25{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-coral-400\\/30{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-coral-400\\/35{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-coral-400\\/40{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-coral-400\\/45{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-coral-400\\/5{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-coral-400\\/50{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-coral-400\\/55{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-coral-400\\/60{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-coral-400\\/65{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-coral-400\\/70{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-coral-400\\/75{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-coral-400\\/80{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-coral-400\\/85{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-coral-400\\/90{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-coral-400\\/95{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-coral-50{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / var(--tw-bg-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-coral-50\\/0{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-coral-50\\/10{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-coral-50\\/100{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-coral-50\\/15{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-coral-50\\/20{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-coral-50\\/25{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-coral-50\\/30{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-coral-50\\/35{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-coral-50\\/40{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-coral-50\\/45{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-coral-50\\/5{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-coral-50\\/50{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-coral-50\\/55{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-coral-50\\/60{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-coral-50\\/65{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-coral-50\\/70{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-coral-50\\/75{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-coral-50\\/80{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-coral-50\\/85{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-coral-50\\/90{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-coral-50\\/95{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-coral-500{\n--tw-bg-opacity: 1;\nbackground-color: color(from #e93d82 srgb r g b / var(--tw-bg-opacity));\n}\n.bg-coral-500\\/0{\nbackground-color: color(from #e93d82 srgb r g b / 0);\n}\n.bg-coral-500\\/10{\nbackground-color: color(from #e93d82 srgb r g b / 0.1);\n}\n.bg-coral-500\\/100{\nbackground-color: color(from #e93d82 srgb r g b / 1);\n}\n.bg-coral-500\\/15{\nbackground-color: color(from #e93d82 srgb r g b / 0.15);\n}\n.bg-coral-500\\/20{\nbackground-color: color(from #e93d82 srgb r g b / 0.2);\n}\n.bg-coral-500\\/25{\nbackground-color: color(from #e93d82 srgb r g b / 0.25);\n}\n.bg-coral-500\\/30{\nbackground-color: color(from #e93d82 srgb r g b / 0.3);\n}\n.bg-coral-500\\/35{\nbackground-color: color(from #e93d82 srgb r g b / 0.35);\n}\n.bg-coral-500\\/40{\nbackground-color: color(from #e93d82 srgb r g b / 0.4);\n}\n.bg-coral-500\\/45{\nbackground-color: color(from #e93d82 srgb r g b / 0.45);\n}\n.bg-coral-500\\/5{\nbackground-color: color(from #e93d82 srgb r g b / 0.05);\n}\n.bg-coral-500\\/50{\nbackground-color: color(from #e93d82 srgb r g b / 0.5);\n}\n.bg-coral-500\\/55{\nbackground-color: color(from #e93d82 srgb r g b / 0.55);\n}\n.bg-coral-500\\/60{\nbackground-color: color(from #e93d82 srgb r g b / 0.6);\n}\n.bg-coral-500\\/65{\nbackground-color: color(from #e93d82 srgb r g b / 0.65);\n}\n.bg-coral-500\\/70{\nbackground-color: color(from #e93d82 srgb r g b / 0.7);\n}\n.bg-coral-500\\/75{\nbackground-color: color(from #e93d82 srgb r g b / 0.75);\n}\n.bg-coral-500\\/80{\nbackground-color: color(from #e93d82 srgb r g b / 0.8);\n}\n.bg-coral-500\\/85{\nbackground-color: color(from #e93d82 srgb r g b / 0.85);\n}\n.bg-coral-500\\/90{\nbackground-color: color(from #e93d82 srgb r g b / 0.9);\n}\n.bg-coral-500\\/95{\nbackground-color: color(from #e93d82 srgb r g b / 0.95);\n}\n.bg-coral-600{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-coral-600\\/0{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-coral-600\\/10{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-coral-600\\/100{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-coral-600\\/15{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-coral-600\\/20{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-coral-600\\/25{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-coral-600\\/30{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-coral-600\\/35{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-coral-600\\/40{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-coral-600\\/45{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-coral-600\\/5{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-coral-600\\/50{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-coral-600\\/55{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-coral-600\\/60{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-coral-600\\/65{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-coral-600\\/70{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-coral-600\\/75{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-coral-600\\/80{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-coral-600\\/85{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-coral-600\\/90{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-coral-600\\/95{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-coral-700{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / var(--tw-bg-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-coral-700\\/0{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-coral-700\\/10{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-coral-700\\/100{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-coral-700\\/15{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-coral-700\\/20{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-coral-700\\/25{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-coral-700\\/30{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-coral-700\\/35{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-coral-700\\/40{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-coral-700\\/45{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-coral-700\\/5{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-coral-700\\/50{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-coral-700\\/55{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-coral-700\\/60{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-coral-700\\/65{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-coral-700\\/70{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-coral-700\\/75{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-coral-700\\/80{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-coral-700\\/85{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-coral-700\\/90{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-coral-700\\/95{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-coral-800{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-coral-800\\/0{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-coral-800\\/10{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-coral-800\\/100{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-coral-800\\/15{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-coral-800\\/20{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-coral-800\\/25{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-coral-800\\/30{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-coral-800\\/35{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-coral-800\\/40{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-coral-800\\/45{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-coral-800\\/5{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-coral-800\\/50{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-coral-800\\/55{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-coral-800\\/60{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-coral-800\\/65{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-coral-800\\/70{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-coral-800\\/75{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-coral-800\\/80{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-coral-800\\/85{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-coral-800\\/90{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-coral-800\\/95{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-coral-900{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-coral-900\\/0{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-coral-900\\/10{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-coral-900\\/100{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-coral-900\\/15{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-coral-900\\/20{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-coral-900\\/25{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-coral-900\\/30{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-coral-900\\/35{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-coral-900\\/40{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-coral-900\\/45{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-coral-900\\/5{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-coral-900\\/50{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-coral-900\\/55{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-coral-900\\/60{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-coral-900\\/65{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-coral-900\\/70{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-coral-900\\/75{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-coral-900\\/80{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-coral-900\\/85{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-coral-900\\/90{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-coral-900\\/95{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-coral-950{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / var(--tw-bg-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-coral-950\\/0{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-coral-950\\/10{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-coral-950\\/100{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-coral-950\\/15{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-coral-950\\/20{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-coral-950\\/25{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-coral-950\\/30{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-coral-950\\/35{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-coral-950\\/40{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-coral-950\\/45{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-coral-950\\/5{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-coral-950\\/50{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-coral-950\\/55{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-coral-950\\/60{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-coral-950\\/65{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-coral-950\\/70{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-coral-950\\/75{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-coral-950\\/80{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-coral-950\\/85{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-coral-950\\/90{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-coral-950\\/95{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-coral\\/0{\nbackground-color: rgb(233 61 130 / 0);\n}\n.bg-coral\\/10{\nbackground-color: rgb(233 61 130 / 0.1);\n}\n.bg-coral\\/100{\nbackground-color: rgb(233 61 130 / 1);\n}\n.bg-coral\\/15{\nbackground-color: rgb(233 61 130 / 0.15);\n}\n.bg-coral\\/20{\nbackground-color: rgb(233 61 130 / 0.2);\n}\n.bg-coral\\/25{\nbackground-color: rgb(233 61 130 / 0.25);\n}\n.bg-coral\\/30{\nbackground-color: rgb(233 61 130 / 0.3);\n}\n.bg-coral\\/35{\nbackground-color: rgb(233 61 130 / 0.35);\n}\n.bg-coral\\/40{\nbackground-color: rgb(233 61 130 / 0.4);\n}\n.bg-coral\\/45{\nbackground-color: rgb(233 61 130 / 0.45);\n}\n.bg-coral\\/5{\nbackground-color: rgb(233 61 130 / 0.05);\n}\n.bg-coral\\/50{\nbackground-color: rgb(233 61 130 / 0.5);\n}\n.bg-coral\\/55{\nbackground-color: rgb(233 61 130 / 0.55);\n}\n.bg-coral\\/60{\nbackground-color: rgb(233 61 130 / 0.6);\n}\n.bg-coral\\/65{\nbackground-color: rgb(233 61 130 / 0.65);\n}\n.bg-coral\\/70{\nbackground-color: rgb(233 61 130 / 0.7);\n}\n.bg-coral\\/75{\nbackground-color: rgb(233 61 130 / 0.75);\n}\n.bg-coral\\/80{\nbackground-color: rgb(233 61 130 / 0.8);\n}\n.bg-coral\\/85{\nbackground-color: rgb(233 61 130 / 0.85);\n}\n.bg-coral\\/90{\nbackground-color: rgb(233 61 130 / 0.9);\n}\n.bg-coral\\/95{\nbackground-color: rgb(233 61 130 / 0.95);\n}\n.bg-current{\nbackground-color: currentColor;\n}\n.bg-danger{\n--tw-bg-opacity: 1;\nbackground-color: rgb(242 76 61 / var(--tw-bg-opacity));\n}\n.bg-danger-100{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-danger-100\\/0{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-danger-100\\/10{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-danger-100\\/100{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-danger-100\\/15{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-danger-100\\/20{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-danger-100\\/25{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-danger-100\\/30{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-danger-100\\/35{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-danger-100\\/40{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-danger-100\\/45{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-danger-100\\/5{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-danger-100\\/50{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-danger-100\\/55{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-danger-100\\/60{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-danger-100\\/65{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-danger-100\\/70{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-danger-100\\/75{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-danger-100\\/80{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-danger-100\\/85{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-danger-100\\/90{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-danger-100\\/95{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-danger-200{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-danger-200\\/0{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-danger-200\\/10{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-danger-200\\/100{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-danger-200\\/15{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-danger-200\\/20{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-danger-200\\/25{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-danger-200\\/30{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-danger-200\\/35{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-danger-200\\/40{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-danger-200\\/45{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-danger-200\\/5{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-danger-200\\/50{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-danger-200\\/55{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-danger-200\\/60{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-danger-200\\/65{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-danger-200\\/70{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-danger-200\\/75{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-danger-200\\/80{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-danger-200\\/85{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-danger-200\\/90{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-danger-200\\/95{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-danger-300{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / var(--tw-bg-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-danger-300\\/0{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-danger-300\\/10{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-danger-300\\/100{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-danger-300\\/15{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-danger-300\\/20{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-danger-300\\/25{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-danger-300\\/30{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-danger-300\\/35{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-danger-300\\/40{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-danger-300\\/45{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-danger-300\\/5{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-danger-300\\/50{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-danger-300\\/55{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-danger-300\\/60{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-danger-300\\/65{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-danger-300\\/70{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-danger-300\\/75{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-danger-300\\/80{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-danger-300\\/85{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-danger-300\\/90{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-danger-300\\/95{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-danger-400{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-danger-400\\/0{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-danger-400\\/10{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-danger-400\\/100{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-danger-400\\/15{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-danger-400\\/20{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-danger-400\\/25{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-danger-400\\/30{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-danger-400\\/35{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-danger-400\\/40{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-danger-400\\/45{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-danger-400\\/5{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-danger-400\\/50{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-danger-400\\/55{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-danger-400\\/60{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-danger-400\\/65{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-danger-400\\/70{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-danger-400\\/75{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-danger-400\\/80{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-danger-400\\/85{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-danger-400\\/90{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-danger-400\\/95{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-danger-50{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / var(--tw-bg-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-danger-50\\/0{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-danger-50\\/10{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-danger-50\\/100{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-danger-50\\/15{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-danger-50\\/20{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-danger-50\\/25{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-danger-50\\/30{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-danger-50\\/35{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-danger-50\\/40{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-danger-50\\/45{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-danger-50\\/5{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-danger-50\\/50{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-danger-50\\/55{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-danger-50\\/60{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-danger-50\\/65{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-danger-50\\/70{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-danger-50\\/75{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-danger-50\\/80{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-danger-50\\/85{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-danger-50\\/90{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-danger-50\\/95{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-danger-500{\n--tw-bg-opacity: 1;\nbackground-color: color(from #f24c3d srgb r g b / var(--tw-bg-opacity));\n}\n.bg-danger-500\\/0{\nbackground-color: color(from #f24c3d srgb r g b / 0);\n}\n.bg-danger-500\\/10{\nbackground-color: color(from #f24c3d srgb r g b / 0.1);\n}\n.bg-danger-500\\/100{\nbackground-color: color(from #f24c3d srgb r g b / 1);\n}\n.bg-danger-500\\/15{\nbackground-color: color(from #f24c3d srgb r g b / 0.15);\n}\n.bg-danger-500\\/20{\nbackground-color: color(from #f24c3d srgb r g b / 0.2);\n}\n.bg-danger-500\\/25{\nbackground-color: color(from #f24c3d srgb r g b / 0.25);\n}\n.bg-danger-500\\/30{\nbackground-color: color(from #f24c3d srgb r g b / 0.3);\n}\n.bg-danger-500\\/35{\nbackground-color: color(from #f24c3d srgb r g b / 0.35);\n}\n.bg-danger-500\\/40{\nbackground-color: color(from #f24c3d srgb r g b / 0.4);\n}\n.bg-danger-500\\/45{\nbackground-color: color(from #f24c3d srgb r g b / 0.45);\n}\n.bg-danger-500\\/5{\nbackground-color: color(from #f24c3d srgb r g b / 0.05);\n}\n.bg-danger-500\\/50{\nbackground-color: color(from #f24c3d srgb r g b / 0.5);\n}\n.bg-danger-500\\/55{\nbackground-color: color(from #f24c3d srgb r g b / 0.55);\n}\n.bg-danger-500\\/60{\nbackground-color: color(from #f24c3d srgb r g b / 0.6);\n}\n.bg-danger-500\\/65{\nbackground-color: color(from #f24c3d srgb r g b / 0.65);\n}\n.bg-danger-500\\/70{\nbackground-color: color(from #f24c3d srgb r g b / 0.7);\n}\n.bg-danger-500\\/75{\nbackground-color: color(from #f24c3d srgb r g b / 0.75);\n}\n.bg-danger-500\\/80{\nbackground-color: color(from #f24c3d srgb r g b / 0.8);\n}\n.bg-danger-500\\/85{\nbackground-color: color(from #f24c3d srgb r g b / 0.85);\n}\n.bg-danger-500\\/90{\nbackground-color: color(from #f24c3d srgb r g b / 0.9);\n}\n.bg-danger-500\\/95{\nbackground-color: color(from #f24c3d srgb r g b / 0.95);\n}\n.bg-danger-600{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-danger-600\\/0{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-danger-600\\/10{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-danger-600\\/100{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-danger-600\\/15{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-danger-600\\/20{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-danger-600\\/25{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-danger-600\\/30{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-danger-600\\/35{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-danger-600\\/40{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-danger-600\\/45{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-danger-600\\/5{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-danger-600\\/50{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-danger-600\\/55{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-danger-600\\/60{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-danger-600\\/65{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-danger-600\\/70{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-danger-600\\/75{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-danger-600\\/80{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-danger-600\\/85{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-danger-600\\/90{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-danger-600\\/95{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-danger-700{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / var(--tw-bg-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-danger-700\\/0{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-danger-700\\/10{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-danger-700\\/100{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-danger-700\\/15{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-danger-700\\/20{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-danger-700\\/25{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-danger-700\\/30{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-danger-700\\/35{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-danger-700\\/40{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-danger-700\\/45{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-danger-700\\/5{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-danger-700\\/50{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-danger-700\\/55{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-danger-700\\/60{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-danger-700\\/65{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-danger-700\\/70{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-danger-700\\/75{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-danger-700\\/80{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-danger-700\\/85{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-danger-700\\/90{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-danger-700\\/95{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-danger-800{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-danger-800\\/0{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-danger-800\\/10{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-danger-800\\/100{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-danger-800\\/15{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-danger-800\\/20{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-danger-800\\/25{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-danger-800\\/30{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-danger-800\\/35{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-danger-800\\/40{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-danger-800\\/45{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-danger-800\\/5{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-danger-800\\/50{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-danger-800\\/55{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-danger-800\\/60{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-danger-800\\/65{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-danger-800\\/70{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-danger-800\\/75{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-danger-800\\/80{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-danger-800\\/85{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-danger-800\\/90{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-danger-800\\/95{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-danger-900{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-danger-900\\/0{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-danger-900\\/10{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-danger-900\\/100{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-danger-900\\/15{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-danger-900\\/20{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-danger-900\\/25{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-danger-900\\/30{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-danger-900\\/35{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-danger-900\\/40{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-danger-900\\/45{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-danger-900\\/5{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-danger-900\\/50{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-danger-900\\/55{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-danger-900\\/60{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-danger-900\\/65{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-danger-900\\/70{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-danger-900\\/75{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-danger-900\\/80{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-danger-900\\/85{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-danger-900\\/90{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-danger-900\\/95{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-danger-950{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / var(--tw-bg-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-danger-950\\/0{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-danger-950\\/10{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-danger-950\\/100{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-danger-950\\/15{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-danger-950\\/20{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-danger-950\\/25{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-danger-950\\/30{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-danger-950\\/35{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-danger-950\\/40{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-danger-950\\/45{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-danger-950\\/5{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-danger-950\\/50{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-danger-950\\/55{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-danger-950\\/60{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-danger-950\\/65{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-danger-950\\/70{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-danger-950\\/75{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-danger-950\\/80{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-danger-950\\/85{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-danger-950\\/90{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-danger-950\\/95{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-danger\\/0{\nbackground-color: rgb(242 76 61 / 0);\n}\n.bg-danger\\/10{\nbackground-color: rgb(242 76 61 / 0.1);\n}\n.bg-danger\\/100{\nbackground-color: rgb(242 76 61 / 1);\n}\n.bg-danger\\/15{\nbackground-color: rgb(242 76 61 / 0.15);\n}\n.bg-danger\\/20{\nbackground-color: rgb(242 76 61 / 0.2);\n}\n.bg-danger\\/25{\nbackground-color: rgb(242 76 61 / 0.25);\n}\n.bg-danger\\/30{\nbackground-color: rgb(242 76 61 / 0.3);\n}\n.bg-danger\\/35{\nbackground-color: rgb(242 76 61 / 0.35);\n}\n.bg-danger\\/40{\nbackground-color: rgb(242 76 61 / 0.4);\n}\n.bg-danger\\/45{\nbackground-color: rgb(242 76 61 / 0.45);\n}\n.bg-danger\\/5{\nbackground-color: rgb(242 76 61 / 0.05);\n}\n.bg-danger\\/50{\nbackground-color: rgb(242 76 61 / 0.5);\n}\n.bg-danger\\/55{\nbackground-color: rgb(242 76 61 / 0.55);\n}\n.bg-danger\\/60{\nbackground-color: rgb(242 76 61 / 0.6);\n}\n.bg-danger\\/65{\nbackground-color: rgb(242 76 61 / 0.65);\n}\n.bg-danger\\/70{\nbackground-color: rgb(242 76 61 / 0.7);\n}\n.bg-danger\\/75{\nbackground-color: rgb(242 76 61 / 0.75);\n}\n.bg-danger\\/80{\nbackground-color: rgb(242 76 61 / 0.8);\n}\n.bg-danger\\/85{\nbackground-color: rgb(242 76 61 / 0.85);\n}\n.bg-danger\\/90{\nbackground-color: rgb(242 76 61 / 0.9);\n}\n.bg-danger\\/95{\nbackground-color: rgb(242 76 61 / 0.95);\n}\n.bg-dark{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--black) srgb r g b / var(--tw-bg-opacity)) 90%, color(from var(--tint) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-dark\\/0{\nbackground-color: color-mix(in lab, color(from var(--black) srgb r g b / 0) 90%, color(from var(--tint) srgb r g b / 0));\n}\n.bg-dark\\/10{\nbackground-color: color-mix(in lab, color(from var(--black) srgb r g b / 0.1) 90%, color(from var(--tint) srgb r g b / 0.1));\n}\n.bg-dark\\/100{\nbackground-color: color-mix(in lab, color(from var(--black) srgb r g b / 1) 90%, color(from var(--tint) srgb r g b / 1));\n}\n.bg-dark\\/15{\nbackground-color: color-mix(in lab, color(from var(--black) srgb r g b / 0.15) 90%, color(from var(--tint) srgb r g b / 0.15));\n}\n.bg-dark\\/20{\nbackground-color: color-mix(in lab, color(from var(--black) srgb r g b / 0.2) 90%, color(from var(--tint) srgb r g b / 0.2));\n}\n.bg-dark\\/25{\nbackground-color: color-mix(in lab, color(from var(--black) srgb r g b / 0.25) 90%, color(from var(--tint) srgb r g b / 0.25));\n}\n.bg-dark\\/30{\nbackground-color: color-mix(in lab, color(from var(--black) srgb r g b / 0.3) 90%, color(from var(--tint) srgb r g b / 0.3));\n}\n.bg-dark\\/35{\nbackground-color: color-mix(in lab, color(from var(--black) srgb r g b / 0.35) 90%, color(from var(--tint) srgb r g b / 0.35));\n}\n.bg-dark\\/40{\nbackground-color: color-mix(in lab, color(from var(--black) srgb r g b / 0.4) 90%, color(from var(--tint) srgb r g b / 0.4));\n}\n.bg-dark\\/45{\nbackground-color: color-mix(in lab, color(from var(--black) srgb r g b / 0.45) 90%, color(from var(--tint) srgb r g b / 0.45));\n}\n.bg-dark\\/5{\nbackground-color: color-mix(in lab, color(from var(--black) srgb r g b / 0.05) 90%, color(from var(--tint) srgb r g b / 0.05));\n}\n.bg-dark\\/50{\nbackground-color: color-mix(in lab, color(from var(--black) srgb r g b / 0.5) 90%, color(from var(--tint) srgb r g b / 0.5));\n}\n.bg-dark\\/55{\nbackground-color: color-mix(in lab, color(from var(--black) srgb r g b / 0.55) 90%, color(from var(--tint) srgb r g b / 0.55));\n}\n.bg-dark\\/60{\nbackground-color: color-mix(in lab, color(from var(--black) srgb r g b / 0.6) 90%, color(from var(--tint) srgb r g b / 0.6));\n}\n.bg-dark\\/65{\nbackground-color: color-mix(in lab, color(from var(--black) srgb r g b / 0.65) 90%, color(from var(--tint) srgb r g b / 0.65));\n}\n.bg-dark\\/70{\nbackground-color: color-mix(in lab, color(from var(--black) srgb r g b / 0.7) 90%, color(from var(--tint) srgb r g b / 0.7));\n}\n.bg-dark\\/75{\nbackground-color: color-mix(in lab, color(from var(--black) srgb r g b / 0.75) 90%, color(from var(--tint) srgb r g b / 0.75));\n}\n.bg-dark\\/80{\nbackground-color: color-mix(in lab, color(from var(--black) srgb r g b / 0.8) 90%, color(from var(--tint) srgb r g b / 0.8));\n}\n.bg-dark\\/85{\nbackground-color: color-mix(in lab, color(from var(--black) srgb r g b / 0.85) 90%, color(from var(--tint) srgb r g b / 0.85));\n}\n.bg-dark\\/90{\nbackground-color: color-mix(in lab, color(from var(--black) srgb r g b / 0.9) 90%, color(from var(--tint) srgb r g b / 0.9));\n}\n.bg-dark\\/95{\nbackground-color: color-mix(in lab, color(from var(--black) srgb r g b / 0.95) 90%, color(from var(--tint) srgb r g b / 0.95));\n}\n.bg-denim{\n--tw-bg-opacity: 1;\nbackground-color: rgb(1 144 255 / var(--tw-bg-opacity));\n}\n.bg-denim-100{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-denim-100\\/0{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-denim-100\\/10{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-denim-100\\/100{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-denim-100\\/15{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-denim-100\\/20{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-denim-100\\/25{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-denim-100\\/30{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-denim-100\\/35{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-denim-100\\/40{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-denim-100\\/45{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-denim-100\\/5{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-denim-100\\/50{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-denim-100\\/55{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-denim-100\\/60{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-denim-100\\/65{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-denim-100\\/70{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-denim-100\\/75{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-denim-100\\/80{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-denim-100\\/85{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-denim-100\\/90{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-denim-100\\/95{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-denim-200{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-denim-200\\/0{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-denim-200\\/10{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-denim-200\\/100{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-denim-200\\/15{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-denim-200\\/20{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-denim-200\\/25{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-denim-200\\/30{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-denim-200\\/35{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-denim-200\\/40{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-denim-200\\/45{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-denim-200\\/5{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-denim-200\\/50{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-denim-200\\/55{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-denim-200\\/60{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-denim-200\\/65{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-denim-200\\/70{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-denim-200\\/75{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-denim-200\\/80{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-denim-200\\/85{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-denim-200\\/90{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-denim-200\\/95{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-denim-300{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / var(--tw-bg-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-denim-300\\/0{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-denim-300\\/10{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-denim-300\\/100{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-denim-300\\/15{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-denim-300\\/20{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-denim-300\\/25{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-denim-300\\/30{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-denim-300\\/35{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-denim-300\\/40{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-denim-300\\/45{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-denim-300\\/5{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-denim-300\\/50{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-denim-300\\/55{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-denim-300\\/60{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-denim-300\\/65{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-denim-300\\/70{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-denim-300\\/75{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-denim-300\\/80{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-denim-300\\/85{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-denim-300\\/90{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-denim-300\\/95{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-denim-400{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-denim-400\\/0{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-denim-400\\/10{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-denim-400\\/100{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-denim-400\\/15{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-denim-400\\/20{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-denim-400\\/25{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-denim-400\\/30{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-denim-400\\/35{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-denim-400\\/40{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-denim-400\\/45{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-denim-400\\/5{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-denim-400\\/50{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-denim-400\\/55{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-denim-400\\/60{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-denim-400\\/65{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-denim-400\\/70{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-denim-400\\/75{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-denim-400\\/80{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-denim-400\\/85{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-denim-400\\/90{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-denim-400\\/95{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-denim-50{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / var(--tw-bg-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-denim-50\\/0{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-denim-50\\/10{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-denim-50\\/100{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-denim-50\\/15{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-denim-50\\/20{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-denim-50\\/25{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-denim-50\\/30{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-denim-50\\/35{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-denim-50\\/40{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-denim-50\\/45{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-denim-50\\/5{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-denim-50\\/50{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-denim-50\\/55{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-denim-50\\/60{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-denim-50\\/65{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-denim-50\\/70{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-denim-50\\/75{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-denim-50\\/80{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-denim-50\\/85{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-denim-50\\/90{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-denim-50\\/95{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-denim-500{\n--tw-bg-opacity: 1;\nbackground-color: color(from #0190ff srgb r g b / var(--tw-bg-opacity));\n}\n.bg-denim-500\\/0{\nbackground-color: color(from #0190ff srgb r g b / 0);\n}\n.bg-denim-500\\/10{\nbackground-color: color(from #0190ff srgb r g b / 0.1);\n}\n.bg-denim-500\\/100{\nbackground-color: color(from #0190ff srgb r g b / 1);\n}\n.bg-denim-500\\/15{\nbackground-color: color(from #0190ff srgb r g b / 0.15);\n}\n.bg-denim-500\\/20{\nbackground-color: color(from #0190ff srgb r g b / 0.2);\n}\n.bg-denim-500\\/25{\nbackground-color: color(from #0190ff srgb r g b / 0.25);\n}\n.bg-denim-500\\/30{\nbackground-color: color(from #0190ff srgb r g b / 0.3);\n}\n.bg-denim-500\\/35{\nbackground-color: color(from #0190ff srgb r g b / 0.35);\n}\n.bg-denim-500\\/40{\nbackground-color: color(from #0190ff srgb r g b / 0.4);\n}\n.bg-denim-500\\/45{\nbackground-color: color(from #0190ff srgb r g b / 0.45);\n}\n.bg-denim-500\\/5{\nbackground-color: color(from #0190ff srgb r g b / 0.05);\n}\n.bg-denim-500\\/50{\nbackground-color: color(from #0190ff srgb r g b / 0.5);\n}\n.bg-denim-500\\/55{\nbackground-color: color(from #0190ff srgb r g b / 0.55);\n}\n.bg-denim-500\\/60{\nbackground-color: color(from #0190ff srgb r g b / 0.6);\n}\n.bg-denim-500\\/65{\nbackground-color: color(from #0190ff srgb r g b / 0.65);\n}\n.bg-denim-500\\/70{\nbackground-color: color(from #0190ff srgb r g b / 0.7);\n}\n.bg-denim-500\\/75{\nbackground-color: color(from #0190ff srgb r g b / 0.75);\n}\n.bg-denim-500\\/80{\nbackground-color: color(from #0190ff srgb r g b / 0.8);\n}\n.bg-denim-500\\/85{\nbackground-color: color(from #0190ff srgb r g b / 0.85);\n}\n.bg-denim-500\\/90{\nbackground-color: color(from #0190ff srgb r g b / 0.9);\n}\n.bg-denim-500\\/95{\nbackground-color: color(from #0190ff srgb r g b / 0.95);\n}\n.bg-denim-600{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-denim-600\\/0{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-denim-600\\/10{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-denim-600\\/100{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-denim-600\\/15{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-denim-600\\/20{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-denim-600\\/25{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-denim-600\\/30{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-denim-600\\/35{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-denim-600\\/40{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-denim-600\\/45{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-denim-600\\/5{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-denim-600\\/50{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-denim-600\\/55{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-denim-600\\/60{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-denim-600\\/65{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-denim-600\\/70{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-denim-600\\/75{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-denim-600\\/80{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-denim-600\\/85{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-denim-600\\/90{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-denim-600\\/95{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-denim-700{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / var(--tw-bg-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-denim-700\\/0{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-denim-700\\/10{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-denim-700\\/100{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-denim-700\\/15{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-denim-700\\/20{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-denim-700\\/25{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-denim-700\\/30{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-denim-700\\/35{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-denim-700\\/40{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-denim-700\\/45{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-denim-700\\/5{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-denim-700\\/50{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-denim-700\\/55{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-denim-700\\/60{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-denim-700\\/65{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-denim-700\\/70{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-denim-700\\/75{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-denim-700\\/80{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-denim-700\\/85{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-denim-700\\/90{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-denim-700\\/95{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-denim-800{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-denim-800\\/0{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-denim-800\\/10{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-denim-800\\/100{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-denim-800\\/15{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-denim-800\\/20{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-denim-800\\/25{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-denim-800\\/30{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-denim-800\\/35{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-denim-800\\/40{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-denim-800\\/45{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-denim-800\\/5{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-denim-800\\/50{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-denim-800\\/55{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-denim-800\\/60{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-denim-800\\/65{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-denim-800\\/70{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-denim-800\\/75{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-denim-800\\/80{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-denim-800\\/85{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-denim-800\\/90{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-denim-800\\/95{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-denim-900{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-denim-900\\/0{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-denim-900\\/10{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-denim-900\\/100{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-denim-900\\/15{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-denim-900\\/20{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-denim-900\\/25{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-denim-900\\/30{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-denim-900\\/35{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-denim-900\\/40{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-denim-900\\/45{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-denim-900\\/5{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-denim-900\\/50{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-denim-900\\/55{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-denim-900\\/60{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-denim-900\\/65{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-denim-900\\/70{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-denim-900\\/75{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-denim-900\\/80{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-denim-900\\/85{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-denim-900\\/90{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-denim-900\\/95{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-denim-950{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / var(--tw-bg-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-denim-950\\/0{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-denim-950\\/10{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-denim-950\\/100{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-denim-950\\/15{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-denim-950\\/20{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-denim-950\\/25{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-denim-950\\/30{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-denim-950\\/35{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-denim-950\\/40{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-denim-950\\/45{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-denim-950\\/5{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-denim-950\\/50{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-denim-950\\/55{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-denim-950\\/60{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-denim-950\\/65{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-denim-950\\/70{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-denim-950\\/75{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-denim-950\\/80{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-denim-950\\/85{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-denim-950\\/90{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-denim-950\\/95{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-denim\\/0{\nbackground-color: rgb(1 144 255 / 0);\n}\n.bg-denim\\/10{\nbackground-color: rgb(1 144 255 / 0.1);\n}\n.bg-denim\\/100{\nbackground-color: rgb(1 144 255 / 1);\n}\n.bg-denim\\/15{\nbackground-color: rgb(1 144 255 / 0.15);\n}\n.bg-denim\\/20{\nbackground-color: rgb(1 144 255 / 0.2);\n}\n.bg-denim\\/25{\nbackground-color: rgb(1 144 255 / 0.25);\n}\n.bg-denim\\/30{\nbackground-color: rgb(1 144 255 / 0.3);\n}\n.bg-denim\\/35{\nbackground-color: rgb(1 144 255 / 0.35);\n}\n.bg-denim\\/40{\nbackground-color: rgb(1 144 255 / 0.4);\n}\n.bg-denim\\/45{\nbackground-color: rgb(1 144 255 / 0.45);\n}\n.bg-denim\\/5{\nbackground-color: rgb(1 144 255 / 0.05);\n}\n.bg-denim\\/50{\nbackground-color: rgb(1 144 255 / 0.5);\n}\n.bg-denim\\/55{\nbackground-color: rgb(1 144 255 / 0.55);\n}\n.bg-denim\\/60{\nbackground-color: rgb(1 144 255 / 0.6);\n}\n.bg-denim\\/65{\nbackground-color: rgb(1 144 255 / 0.65);\n}\n.bg-denim\\/70{\nbackground-color: rgb(1 144 255 / 0.7);\n}\n.bg-denim\\/75{\nbackground-color: rgb(1 144 255 / 0.75);\n}\n.bg-denim\\/80{\nbackground-color: rgb(1 144 255 / 0.8);\n}\n.bg-denim\\/85{\nbackground-color: rgb(1 144 255 / 0.85);\n}\n.bg-denim\\/90{\nbackground-color: rgb(1 144 255 / 0.9);\n}\n.bg-denim\\/95{\nbackground-color: rgb(1 144 255 / 0.95);\n}\n.bg-dimmed{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)) 90%, color(from var(--tint) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-dimmed\\/0{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0) 90%, color(from var(--tint) srgb r g b / 0));\n}\n.bg-dimmed\\/10{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.1) 90%, color(from var(--tint) srgb r g b / 0.1));\n}\n.bg-dimmed\\/100{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 90%, color(from var(--tint) srgb r g b / 1));\n}\n.bg-dimmed\\/15{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.15) 90%, color(from var(--tint) srgb r g b / 0.15));\n}\n.bg-dimmed\\/20{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.2) 90%, color(from var(--tint) srgb r g b / 0.2));\n}\n.bg-dimmed\\/25{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.25) 90%, color(from var(--tint) srgb r g b / 0.25));\n}\n.bg-dimmed\\/30{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.3) 90%, color(from var(--tint) srgb r g b / 0.3));\n}\n.bg-dimmed\\/35{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.35) 90%, color(from var(--tint) srgb r g b / 0.35));\n}\n.bg-dimmed\\/40{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.4) 90%, color(from var(--tint) srgb r g b / 0.4));\n}\n.bg-dimmed\\/45{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.45) 90%, color(from var(--tint) srgb r g b / 0.45));\n}\n.bg-dimmed\\/5{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.05) 90%, color(from var(--tint) srgb r g b / 0.05));\n}\n.bg-dimmed\\/50{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.5) 90%, color(from var(--tint) srgb r g b / 0.5));\n}\n.bg-dimmed\\/55{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.55) 90%, color(from var(--tint) srgb r g b / 0.55));\n}\n.bg-dimmed\\/60{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.6) 90%, color(from var(--tint) srgb r g b / 0.6));\n}\n.bg-dimmed\\/65{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.65) 90%, color(from var(--tint) srgb r g b / 0.65));\n}\n.bg-dimmed\\/70{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.7) 90%, color(from var(--tint) srgb r g b / 0.7));\n}\n.bg-dimmed\\/75{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.75) 90%, color(from var(--tint) srgb r g b / 0.75));\n}\n.bg-dimmed\\/80{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.8) 90%, color(from var(--tint) srgb r g b / 0.8));\n}\n.bg-dimmed\\/85{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.85) 90%, color(from var(--tint) srgb r g b / 0.85));\n}\n.bg-dimmed\\/90{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.9) 90%, color(from var(--tint) srgb r g b / 0.9));\n}\n.bg-dimmed\\/95{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.95) 90%, color(from var(--tint) srgb r g b / 0.95));\n}\n.bg-gray{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)) 50%, color(from var(--tint) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-info{\n--tw-bg-opacity: 1;\nbackground-color: rgb(0 191 255 / var(--tw-bg-opacity));\n}\n.bg-info-100{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-info-100\\/0{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-info-100\\/10{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-info-100\\/100{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-info-100\\/15{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-info-100\\/20{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-info-100\\/25{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-info-100\\/30{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-info-100\\/35{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-info-100\\/40{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-info-100\\/45{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-info-100\\/5{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-info-100\\/50{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-info-100\\/55{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-info-100\\/60{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-info-100\\/65{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-info-100\\/70{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-info-100\\/75{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-info-100\\/80{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-info-100\\/85{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-info-100\\/90{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-info-100\\/95{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-info-200{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-info-200\\/0{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-info-200\\/10{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-info-200\\/100{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-info-200\\/15{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-info-200\\/20{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-info-200\\/25{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-info-200\\/30{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-info-200\\/35{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-info-200\\/40{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-info-200\\/45{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-info-200\\/5{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-info-200\\/50{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-info-200\\/55{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-info-200\\/60{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-info-200\\/65{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-info-200\\/70{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-info-200\\/75{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-info-200\\/80{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-info-200\\/85{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-info-200\\/90{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-info-200\\/95{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-info-300{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / var(--tw-bg-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-info-300\\/0{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-info-300\\/10{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-info-300\\/100{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-info-300\\/15{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-info-300\\/20{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-info-300\\/25{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-info-300\\/30{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-info-300\\/35{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-info-300\\/40{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-info-300\\/45{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-info-300\\/5{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-info-300\\/50{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-info-300\\/55{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-info-300\\/60{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-info-300\\/65{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-info-300\\/70{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-info-300\\/75{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-info-300\\/80{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-info-300\\/85{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-info-300\\/90{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-info-300\\/95{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-info-400{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-info-400\\/0{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-info-400\\/10{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-info-400\\/100{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-info-400\\/15{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-info-400\\/20{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-info-400\\/25{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-info-400\\/30{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-info-400\\/35{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-info-400\\/40{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-info-400\\/45{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-info-400\\/5{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-info-400\\/50{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-info-400\\/55{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-info-400\\/60{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-info-400\\/65{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-info-400\\/70{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-info-400\\/75{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-info-400\\/80{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-info-400\\/85{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-info-400\\/90{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-info-400\\/95{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-info-50{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / var(--tw-bg-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-info-50\\/0{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-info-50\\/10{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-info-50\\/100{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-info-50\\/15{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-info-50\\/20{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-info-50\\/25{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-info-50\\/30{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-info-50\\/35{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-info-50\\/40{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-info-50\\/45{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-info-50\\/5{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-info-50\\/50{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-info-50\\/55{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-info-50\\/60{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-info-50\\/65{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-info-50\\/70{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-info-50\\/75{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-info-50\\/80{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-info-50\\/85{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-info-50\\/90{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-info-50\\/95{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-info-500{\n--tw-bg-opacity: 1;\nbackground-color: color(from #00bfff srgb r g b / var(--tw-bg-opacity));\n}\n.bg-info-500\\/0{\nbackground-color: color(from #00bfff srgb r g b / 0);\n}\n.bg-info-500\\/10{\nbackground-color: color(from #00bfff srgb r g b / 0.1);\n}\n.bg-info-500\\/100{\nbackground-color: color(from #00bfff srgb r g b / 1);\n}\n.bg-info-500\\/15{\nbackground-color: color(from #00bfff srgb r g b / 0.15);\n}\n.bg-info-500\\/20{\nbackground-color: color(from #00bfff srgb r g b / 0.2);\n}\n.bg-info-500\\/25{\nbackground-color: color(from #00bfff srgb r g b / 0.25);\n}\n.bg-info-500\\/30{\nbackground-color: color(from #00bfff srgb r g b / 0.3);\n}\n.bg-info-500\\/35{\nbackground-color: color(from #00bfff srgb r g b / 0.35);\n}\n.bg-info-500\\/40{\nbackground-color: color(from #00bfff srgb r g b / 0.4);\n}\n.bg-info-500\\/45{\nbackground-color: color(from #00bfff srgb r g b / 0.45);\n}\n.bg-info-500\\/5{\nbackground-color: color(from #00bfff srgb r g b / 0.05);\n}\n.bg-info-500\\/50{\nbackground-color: color(from #00bfff srgb r g b / 0.5);\n}\n.bg-info-500\\/55{\nbackground-color: color(from #00bfff srgb r g b / 0.55);\n}\n.bg-info-500\\/60{\nbackground-color: color(from #00bfff srgb r g b / 0.6);\n}\n.bg-info-500\\/65{\nbackground-color: color(from #00bfff srgb r g b / 0.65);\n}\n.bg-info-500\\/70{\nbackground-color: color(from #00bfff srgb r g b / 0.7);\n}\n.bg-info-500\\/75{\nbackground-color: color(from #00bfff srgb r g b / 0.75);\n}\n.bg-info-500\\/80{\nbackground-color: color(from #00bfff srgb r g b / 0.8);\n}\n.bg-info-500\\/85{\nbackground-color: color(from #00bfff srgb r g b / 0.85);\n}\n.bg-info-500\\/90{\nbackground-color: color(from #00bfff srgb r g b / 0.9);\n}\n.bg-info-500\\/95{\nbackground-color: color(from #00bfff srgb r g b / 0.95);\n}\n.bg-info-600{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-info-600\\/0{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-info-600\\/10{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-info-600\\/100{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-info-600\\/15{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-info-600\\/20{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-info-600\\/25{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-info-600\\/30{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-info-600\\/35{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-info-600\\/40{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-info-600\\/45{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-info-600\\/5{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-info-600\\/50{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-info-600\\/55{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-info-600\\/60{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-info-600\\/65{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-info-600\\/70{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-info-600\\/75{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-info-600\\/80{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-info-600\\/85{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-info-600\\/90{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-info-600\\/95{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-info-700{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / var(--tw-bg-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-info-700\\/0{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-info-700\\/10{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-info-700\\/100{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-info-700\\/15{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-info-700\\/20{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-info-700\\/25{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-info-700\\/30{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-info-700\\/35{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-info-700\\/40{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-info-700\\/45{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-info-700\\/5{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-info-700\\/50{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-info-700\\/55{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-info-700\\/60{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-info-700\\/65{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-info-700\\/70{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-info-700\\/75{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-info-700\\/80{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-info-700\\/85{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-info-700\\/90{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-info-700\\/95{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-info-800{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-info-800\\/0{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-info-800\\/10{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-info-800\\/100{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-info-800\\/15{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-info-800\\/20{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-info-800\\/25{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-info-800\\/30{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-info-800\\/35{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-info-800\\/40{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-info-800\\/45{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-info-800\\/5{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-info-800\\/50{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-info-800\\/55{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-info-800\\/60{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-info-800\\/65{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-info-800\\/70{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-info-800\\/75{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-info-800\\/80{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-info-800\\/85{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-info-800\\/90{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-info-800\\/95{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-info-900{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-info-900\\/0{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-info-900\\/10{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-info-900\\/100{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-info-900\\/15{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-info-900\\/20{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-info-900\\/25{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-info-900\\/30{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-info-900\\/35{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-info-900\\/40{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-info-900\\/45{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-info-900\\/5{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-info-900\\/50{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-info-900\\/55{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-info-900\\/60{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-info-900\\/65{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-info-900\\/70{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-info-900\\/75{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-info-900\\/80{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-info-900\\/85{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-info-900\\/90{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-info-900\\/95{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-info-950{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / var(--tw-bg-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-info-950\\/0{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-info-950\\/10{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-info-950\\/100{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-info-950\\/15{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-info-950\\/20{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-info-950\\/25{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-info-950\\/30{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-info-950\\/35{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-info-950\\/40{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-info-950\\/45{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-info-950\\/5{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-info-950\\/50{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-info-950\\/55{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-info-950\\/60{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-info-950\\/65{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-info-950\\/70{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-info-950\\/75{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-info-950\\/80{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-info-950\\/85{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-info-950\\/90{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-info-950\\/95{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-info\\/0{\nbackground-color: rgb(0 191 255 / 0);\n}\n.bg-info\\/10{\nbackground-color: rgb(0 191 255 / 0.1);\n}\n.bg-info\\/100{\nbackground-color: rgb(0 191 255 / 1);\n}\n.bg-info\\/15{\nbackground-color: rgb(0 191 255 / 0.15);\n}\n.bg-info\\/20{\nbackground-color: rgb(0 191 255 / 0.2);\n}\n.bg-info\\/25{\nbackground-color: rgb(0 191 255 / 0.25);\n}\n.bg-info\\/30{\nbackground-color: rgb(0 191 255 / 0.3);\n}\n.bg-info\\/35{\nbackground-color: rgb(0 191 255 / 0.35);\n}\n.bg-info\\/40{\nbackground-color: rgb(0 191 255 / 0.4);\n}\n.bg-info\\/45{\nbackground-color: rgb(0 191 255 / 0.45);\n}\n.bg-info\\/5{\nbackground-color: rgb(0 191 255 / 0.05);\n}\n.bg-info\\/50{\nbackground-color: rgb(0 191 255 / 0.5);\n}\n.bg-info\\/55{\nbackground-color: rgb(0 191 255 / 0.55);\n}\n.bg-info\\/60{\nbackground-color: rgb(0 191 255 / 0.6);\n}\n.bg-info\\/65{\nbackground-color: rgb(0 191 255 / 0.65);\n}\n.bg-info\\/70{\nbackground-color: rgb(0 191 255 / 0.7);\n}\n.bg-info\\/75{\nbackground-color: rgb(0 191 255 / 0.75);\n}\n.bg-info\\/80{\nbackground-color: rgb(0 191 255 / 0.8);\n}\n.bg-info\\/85{\nbackground-color: rgb(0 191 255 / 0.85);\n}\n.bg-info\\/90{\nbackground-color: rgb(0 191 255 / 0.9);\n}\n.bg-info\\/95{\nbackground-color: rgb(0 191 255 / 0.95);\n}\n.bg-inherit{\nbackground-color: inherit;\n}\n.bg-invert{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)) 5%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-invert\\/0{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0) 5%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-invert\\/10{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.1) 5%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-invert\\/100{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 5%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-invert\\/15{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.15) 5%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-invert\\/20{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.2) 5%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-invert\\/25{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.25) 5%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-invert\\/30{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.3) 5%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-invert\\/35{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.35) 5%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-invert\\/40{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.4) 5%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-invert\\/45{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.45) 5%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-invert\\/5{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.05) 5%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-invert\\/50{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.5) 5%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-invert\\/55{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.55) 5%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-invert\\/60{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.6) 5%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-invert\\/65{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.65) 5%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-invert\\/70{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.7) 5%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-invert\\/75{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.75) 5%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-invert\\/80{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.8) 5%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-invert\\/85{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.85) 5%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-invert\\/90{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.9) 5%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-invert\\/95{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.95) 5%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-iris{\n--tw-bg-opacity: 1;\nbackground-color: rgb(91 91 214 / var(--tw-bg-opacity));\n}\n.bg-iris-100{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-iris-100\\/0{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-iris-100\\/10{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-iris-100\\/100{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-iris-100\\/15{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-iris-100\\/20{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-iris-100\\/25{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-iris-100\\/30{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-iris-100\\/35{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-iris-100\\/40{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-iris-100\\/45{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-iris-100\\/5{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-iris-100\\/50{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-iris-100\\/55{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-iris-100\\/60{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-iris-100\\/65{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-iris-100\\/70{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-iris-100\\/75{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-iris-100\\/80{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-iris-100\\/85{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-iris-100\\/90{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-iris-100\\/95{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-iris-200{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-iris-200\\/0{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-iris-200\\/10{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-iris-200\\/100{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-iris-200\\/15{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-iris-200\\/20{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-iris-200\\/25{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-iris-200\\/30{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-iris-200\\/35{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-iris-200\\/40{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-iris-200\\/45{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-iris-200\\/5{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-iris-200\\/50{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-iris-200\\/55{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-iris-200\\/60{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-iris-200\\/65{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-iris-200\\/70{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-iris-200\\/75{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-iris-200\\/80{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-iris-200\\/85{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-iris-200\\/90{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-iris-200\\/95{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-iris-300{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / var(--tw-bg-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-iris-300\\/0{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-iris-300\\/10{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-iris-300\\/100{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-iris-300\\/15{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-iris-300\\/20{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-iris-300\\/25{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-iris-300\\/30{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-iris-300\\/35{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-iris-300\\/40{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-iris-300\\/45{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-iris-300\\/5{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-iris-300\\/50{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-iris-300\\/55{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-iris-300\\/60{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-iris-300\\/65{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-iris-300\\/70{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-iris-300\\/75{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-iris-300\\/80{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-iris-300\\/85{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-iris-300\\/90{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-iris-300\\/95{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-iris-400{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-iris-400\\/0{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-iris-400\\/10{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-iris-400\\/100{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-iris-400\\/15{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-iris-400\\/20{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-iris-400\\/25{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-iris-400\\/30{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-iris-400\\/35{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-iris-400\\/40{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-iris-400\\/45{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-iris-400\\/5{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-iris-400\\/50{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-iris-400\\/55{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-iris-400\\/60{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-iris-400\\/65{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-iris-400\\/70{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-iris-400\\/75{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-iris-400\\/80{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-iris-400\\/85{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-iris-400\\/90{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-iris-400\\/95{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-iris-50{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / var(--tw-bg-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-iris-50\\/0{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-iris-50\\/10{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-iris-50\\/100{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-iris-50\\/15{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-iris-50\\/20{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-iris-50\\/25{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-iris-50\\/30{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-iris-50\\/35{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-iris-50\\/40{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-iris-50\\/45{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-iris-50\\/5{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-iris-50\\/50{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-iris-50\\/55{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-iris-50\\/60{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-iris-50\\/65{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-iris-50\\/70{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-iris-50\\/75{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-iris-50\\/80{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-iris-50\\/85{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-iris-50\\/90{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-iris-50\\/95{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-iris-500{\n--tw-bg-opacity: 1;\nbackground-color: color(from #5b5bd6 srgb r g b / var(--tw-bg-opacity));\n}\n.bg-iris-500\\/0{\nbackground-color: color(from #5b5bd6 srgb r g b / 0);\n}\n.bg-iris-500\\/10{\nbackground-color: color(from #5b5bd6 srgb r g b / 0.1);\n}\n.bg-iris-500\\/100{\nbackground-color: color(from #5b5bd6 srgb r g b / 1);\n}\n.bg-iris-500\\/15{\nbackground-color: color(from #5b5bd6 srgb r g b / 0.15);\n}\n.bg-iris-500\\/20{\nbackground-color: color(from #5b5bd6 srgb r g b / 0.2);\n}\n.bg-iris-500\\/25{\nbackground-color: color(from #5b5bd6 srgb r g b / 0.25);\n}\n.bg-iris-500\\/30{\nbackground-color: color(from #5b5bd6 srgb r g b / 0.3);\n}\n.bg-iris-500\\/35{\nbackground-color: color(from #5b5bd6 srgb r g b / 0.35);\n}\n.bg-iris-500\\/40{\nbackground-color: color(from #5b5bd6 srgb r g b / 0.4);\n}\n.bg-iris-500\\/45{\nbackground-color: color(from #5b5bd6 srgb r g b / 0.45);\n}\n.bg-iris-500\\/5{\nbackground-color: color(from #5b5bd6 srgb r g b / 0.05);\n}\n.bg-iris-500\\/50{\nbackground-color: color(from #5b5bd6 srgb r g b / 0.5);\n}\n.bg-iris-500\\/55{\nbackground-color: color(from #5b5bd6 srgb r g b / 0.55);\n}\n.bg-iris-500\\/60{\nbackground-color: color(from #5b5bd6 srgb r g b / 0.6);\n}\n.bg-iris-500\\/65{\nbackground-color: color(from #5b5bd6 srgb r g b / 0.65);\n}\n.bg-iris-500\\/70{\nbackground-color: color(from #5b5bd6 srgb r g b / 0.7);\n}\n.bg-iris-500\\/75{\nbackground-color: color(from #5b5bd6 srgb r g b / 0.75);\n}\n.bg-iris-500\\/80{\nbackground-color: color(from #5b5bd6 srgb r g b / 0.8);\n}\n.bg-iris-500\\/85{\nbackground-color: color(from #5b5bd6 srgb r g b / 0.85);\n}\n.bg-iris-500\\/90{\nbackground-color: color(from #5b5bd6 srgb r g b / 0.9);\n}\n.bg-iris-500\\/95{\nbackground-color: color(from #5b5bd6 srgb r g b / 0.95);\n}\n.bg-iris-600{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-iris-600\\/0{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-iris-600\\/10{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-iris-600\\/100{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-iris-600\\/15{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-iris-600\\/20{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-iris-600\\/25{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-iris-600\\/30{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-iris-600\\/35{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-iris-600\\/40{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-iris-600\\/45{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-iris-600\\/5{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-iris-600\\/50{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-iris-600\\/55{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-iris-600\\/60{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-iris-600\\/65{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-iris-600\\/70{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-iris-600\\/75{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-iris-600\\/80{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-iris-600\\/85{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-iris-600\\/90{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-iris-600\\/95{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-iris-700{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / var(--tw-bg-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-iris-700\\/0{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-iris-700\\/10{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-iris-700\\/100{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-iris-700\\/15{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-iris-700\\/20{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-iris-700\\/25{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-iris-700\\/30{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-iris-700\\/35{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-iris-700\\/40{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-iris-700\\/45{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-iris-700\\/5{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-iris-700\\/50{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-iris-700\\/55{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-iris-700\\/60{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-iris-700\\/65{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-iris-700\\/70{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-iris-700\\/75{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-iris-700\\/80{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-iris-700\\/85{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-iris-700\\/90{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-iris-700\\/95{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-iris-800{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-iris-800\\/0{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-iris-800\\/10{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-iris-800\\/100{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-iris-800\\/15{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-iris-800\\/20{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-iris-800\\/25{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-iris-800\\/30{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-iris-800\\/35{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-iris-800\\/40{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-iris-800\\/45{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-iris-800\\/5{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-iris-800\\/50{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-iris-800\\/55{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-iris-800\\/60{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-iris-800\\/65{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-iris-800\\/70{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-iris-800\\/75{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-iris-800\\/80{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-iris-800\\/85{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-iris-800\\/90{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-iris-800\\/95{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-iris-900{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-iris-900\\/0{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-iris-900\\/10{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-iris-900\\/100{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-iris-900\\/15{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-iris-900\\/20{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-iris-900\\/25{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-iris-900\\/30{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-iris-900\\/35{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-iris-900\\/40{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-iris-900\\/45{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-iris-900\\/5{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-iris-900\\/50{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-iris-900\\/55{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-iris-900\\/60{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-iris-900\\/65{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-iris-900\\/70{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-iris-900\\/75{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-iris-900\\/80{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-iris-900\\/85{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-iris-900\\/90{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-iris-900\\/95{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-iris-950{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / var(--tw-bg-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-iris-950\\/0{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-iris-950\\/10{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-iris-950\\/100{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-iris-950\\/15{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-iris-950\\/20{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-iris-950\\/25{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-iris-950\\/30{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-iris-950\\/35{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-iris-950\\/40{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-iris-950\\/45{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-iris-950\\/5{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-iris-950\\/50{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-iris-950\\/55{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-iris-950\\/60{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-iris-950\\/65{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-iris-950\\/70{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-iris-950\\/75{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-iris-950\\/80{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-iris-950\\/85{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-iris-950\\/90{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-iris-950\\/95{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-iris\\/0{\nbackground-color: rgb(91 91 214 / 0);\n}\n.bg-iris\\/10{\nbackground-color: rgb(91 91 214 / 0.1);\n}\n.bg-iris\\/100{\nbackground-color: rgb(91 91 214 / 1);\n}\n.bg-iris\\/15{\nbackground-color: rgb(91 91 214 / 0.15);\n}\n.bg-iris\\/20{\nbackground-color: rgb(91 91 214 / 0.2);\n}\n.bg-iris\\/25{\nbackground-color: rgb(91 91 214 / 0.25);\n}\n.bg-iris\\/30{\nbackground-color: rgb(91 91 214 / 0.3);\n}\n.bg-iris\\/35{\nbackground-color: rgb(91 91 214 / 0.35);\n}\n.bg-iris\\/40{\nbackground-color: rgb(91 91 214 / 0.4);\n}\n.bg-iris\\/45{\nbackground-color: rgb(91 91 214 / 0.45);\n}\n.bg-iris\\/5{\nbackground-color: rgb(91 91 214 / 0.05);\n}\n.bg-iris\\/50{\nbackground-color: rgb(91 91 214 / 0.5);\n}\n.bg-iris\\/55{\nbackground-color: rgb(91 91 214 / 0.55);\n}\n.bg-iris\\/60{\nbackground-color: rgb(91 91 214 / 0.6);\n}\n.bg-iris\\/65{\nbackground-color: rgb(91 91 214 / 0.65);\n}\n.bg-iris\\/70{\nbackground-color: rgb(91 91 214 / 0.7);\n}\n.bg-iris\\/75{\nbackground-color: rgb(91 91 214 / 0.75);\n}\n.bg-iris\\/80{\nbackground-color: rgb(91 91 214 / 0.8);\n}\n.bg-iris\\/85{\nbackground-color: rgb(91 91 214 / 0.85);\n}\n.bg-iris\\/90{\nbackground-color: rgb(91 91 214 / 0.9);\n}\n.bg-iris\\/95{\nbackground-color: rgb(91 91 214 / 0.95);\n}\n.bg-jade{\n--tw-bg-opacity: 1;\nbackground-color: rgb(41 163 131 / var(--tw-bg-opacity));\n}\n.bg-jade-100{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-jade-100\\/0{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-jade-100\\/10{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-jade-100\\/100{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-jade-100\\/15{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-jade-100\\/20{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-jade-100\\/25{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-jade-100\\/30{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-jade-100\\/35{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-jade-100\\/40{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-jade-100\\/45{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-jade-100\\/5{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-jade-100\\/50{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-jade-100\\/55{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-jade-100\\/60{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-jade-100\\/65{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-jade-100\\/70{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-jade-100\\/75{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-jade-100\\/80{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-jade-100\\/85{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-jade-100\\/90{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-jade-100\\/95{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-jade-200{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-jade-200\\/0{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-jade-200\\/10{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-jade-200\\/100{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-jade-200\\/15{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-jade-200\\/20{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-jade-200\\/25{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-jade-200\\/30{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-jade-200\\/35{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-jade-200\\/40{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-jade-200\\/45{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-jade-200\\/5{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-jade-200\\/50{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-jade-200\\/55{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-jade-200\\/60{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-jade-200\\/65{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-jade-200\\/70{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-jade-200\\/75{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-jade-200\\/80{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-jade-200\\/85{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-jade-200\\/90{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-jade-200\\/95{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-jade-300{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / var(--tw-bg-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-jade-300\\/0{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-jade-300\\/10{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-jade-300\\/100{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-jade-300\\/15{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-jade-300\\/20{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-jade-300\\/25{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-jade-300\\/30{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-jade-300\\/35{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-jade-300\\/40{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-jade-300\\/45{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-jade-300\\/5{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-jade-300\\/50{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-jade-300\\/55{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-jade-300\\/60{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-jade-300\\/65{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-jade-300\\/70{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-jade-300\\/75{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-jade-300\\/80{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-jade-300\\/85{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-jade-300\\/90{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-jade-300\\/95{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-jade-400{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-jade-400\\/0{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-jade-400\\/10{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-jade-400\\/100{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-jade-400\\/15{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-jade-400\\/20{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-jade-400\\/25{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-jade-400\\/30{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-jade-400\\/35{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-jade-400\\/40{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-jade-400\\/45{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-jade-400\\/5{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-jade-400\\/50{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-jade-400\\/55{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-jade-400\\/60{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-jade-400\\/65{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-jade-400\\/70{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-jade-400\\/75{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-jade-400\\/80{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-jade-400\\/85{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-jade-400\\/90{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-jade-400\\/95{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-jade-50{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / var(--tw-bg-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-jade-50\\/0{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-jade-50\\/10{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-jade-50\\/100{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-jade-50\\/15{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-jade-50\\/20{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-jade-50\\/25{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-jade-50\\/30{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-jade-50\\/35{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-jade-50\\/40{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-jade-50\\/45{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-jade-50\\/5{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-jade-50\\/50{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-jade-50\\/55{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-jade-50\\/60{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-jade-50\\/65{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-jade-50\\/70{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-jade-50\\/75{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-jade-50\\/80{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-jade-50\\/85{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-jade-50\\/90{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-jade-50\\/95{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-jade-500{\n--tw-bg-opacity: 1;\nbackground-color: color(from #29a383 srgb r g b / var(--tw-bg-opacity));\n}\n.bg-jade-500\\/0{\nbackground-color: color(from #29a383 srgb r g b / 0);\n}\n.bg-jade-500\\/10{\nbackground-color: color(from #29a383 srgb r g b / 0.1);\n}\n.bg-jade-500\\/100{\nbackground-color: color(from #29a383 srgb r g b / 1);\n}\n.bg-jade-500\\/15{\nbackground-color: color(from #29a383 srgb r g b / 0.15);\n}\n.bg-jade-500\\/20{\nbackground-color: color(from #29a383 srgb r g b / 0.2);\n}\n.bg-jade-500\\/25{\nbackground-color: color(from #29a383 srgb r g b / 0.25);\n}\n.bg-jade-500\\/30{\nbackground-color: color(from #29a383 srgb r g b / 0.3);\n}\n.bg-jade-500\\/35{\nbackground-color: color(from #29a383 srgb r g b / 0.35);\n}\n.bg-jade-500\\/40{\nbackground-color: color(from #29a383 srgb r g b / 0.4);\n}\n.bg-jade-500\\/45{\nbackground-color: color(from #29a383 srgb r g b / 0.45);\n}\n.bg-jade-500\\/5{\nbackground-color: color(from #29a383 srgb r g b / 0.05);\n}\n.bg-jade-500\\/50{\nbackground-color: color(from #29a383 srgb r g b / 0.5);\n}\n.bg-jade-500\\/55{\nbackground-color: color(from #29a383 srgb r g b / 0.55);\n}\n.bg-jade-500\\/60{\nbackground-color: color(from #29a383 srgb r g b / 0.6);\n}\n.bg-jade-500\\/65{\nbackground-color: color(from #29a383 srgb r g b / 0.65);\n}\n.bg-jade-500\\/70{\nbackground-color: color(from #29a383 srgb r g b / 0.7);\n}\n.bg-jade-500\\/75{\nbackground-color: color(from #29a383 srgb r g b / 0.75);\n}\n.bg-jade-500\\/80{\nbackground-color: color(from #29a383 srgb r g b / 0.8);\n}\n.bg-jade-500\\/85{\nbackground-color: color(from #29a383 srgb r g b / 0.85);\n}\n.bg-jade-500\\/90{\nbackground-color: color(from #29a383 srgb r g b / 0.9);\n}\n.bg-jade-500\\/95{\nbackground-color: color(from #29a383 srgb r g b / 0.95);\n}\n.bg-jade-600{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-jade-600\\/0{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-jade-600\\/10{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-jade-600\\/100{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-jade-600\\/15{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-jade-600\\/20{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-jade-600\\/25{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-jade-600\\/30{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-jade-600\\/35{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-jade-600\\/40{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-jade-600\\/45{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-jade-600\\/5{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-jade-600\\/50{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-jade-600\\/55{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-jade-600\\/60{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-jade-600\\/65{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-jade-600\\/70{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-jade-600\\/75{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-jade-600\\/80{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-jade-600\\/85{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-jade-600\\/90{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-jade-600\\/95{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-jade-700{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / var(--tw-bg-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-jade-700\\/0{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-jade-700\\/10{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-jade-700\\/100{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-jade-700\\/15{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-jade-700\\/20{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-jade-700\\/25{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-jade-700\\/30{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-jade-700\\/35{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-jade-700\\/40{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-jade-700\\/45{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-jade-700\\/5{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-jade-700\\/50{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-jade-700\\/55{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-jade-700\\/60{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-jade-700\\/65{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-jade-700\\/70{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-jade-700\\/75{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-jade-700\\/80{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-jade-700\\/85{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-jade-700\\/90{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-jade-700\\/95{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-jade-800{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-jade-800\\/0{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-jade-800\\/10{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-jade-800\\/100{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-jade-800\\/15{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-jade-800\\/20{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-jade-800\\/25{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-jade-800\\/30{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-jade-800\\/35{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-jade-800\\/40{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-jade-800\\/45{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-jade-800\\/5{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-jade-800\\/50{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-jade-800\\/55{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-jade-800\\/60{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-jade-800\\/65{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-jade-800\\/70{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-jade-800\\/75{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-jade-800\\/80{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-jade-800\\/85{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-jade-800\\/90{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-jade-800\\/95{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-jade-900{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-jade-900\\/0{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-jade-900\\/10{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-jade-900\\/100{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-jade-900\\/15{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-jade-900\\/20{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-jade-900\\/25{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-jade-900\\/30{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-jade-900\\/35{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-jade-900\\/40{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-jade-900\\/45{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-jade-900\\/5{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-jade-900\\/50{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-jade-900\\/55{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-jade-900\\/60{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-jade-900\\/65{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-jade-900\\/70{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-jade-900\\/75{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-jade-900\\/80{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-jade-900\\/85{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-jade-900\\/90{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-jade-900\\/95{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-jade-950{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / var(--tw-bg-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-jade-950\\/0{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-jade-950\\/10{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-jade-950\\/100{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-jade-950\\/15{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-jade-950\\/20{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-jade-950\\/25{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-jade-950\\/30{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-jade-950\\/35{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-jade-950\\/40{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-jade-950\\/45{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-jade-950\\/5{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-jade-950\\/50{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-jade-950\\/55{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-jade-950\\/60{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-jade-950\\/65{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-jade-950\\/70{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-jade-950\\/75{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-jade-950\\/80{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-jade-950\\/85{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-jade-950\\/90{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-jade-950\\/95{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-jade\\/0{\nbackground-color: rgb(41 163 131 / 0);\n}\n.bg-jade\\/10{\nbackground-color: rgb(41 163 131 / 0.1);\n}\n.bg-jade\\/100{\nbackground-color: rgb(41 163 131 / 1);\n}\n.bg-jade\\/15{\nbackground-color: rgb(41 163 131 / 0.15);\n}\n.bg-jade\\/20{\nbackground-color: rgb(41 163 131 / 0.2);\n}\n.bg-jade\\/25{\nbackground-color: rgb(41 163 131 / 0.25);\n}\n.bg-jade\\/30{\nbackground-color: rgb(41 163 131 / 0.3);\n}\n.bg-jade\\/35{\nbackground-color: rgb(41 163 131 / 0.35);\n}\n.bg-jade\\/40{\nbackground-color: rgb(41 163 131 / 0.4);\n}\n.bg-jade\\/45{\nbackground-color: rgb(41 163 131 / 0.45);\n}\n.bg-jade\\/5{\nbackground-color: rgb(41 163 131 / 0.05);\n}\n.bg-jade\\/50{\nbackground-color: rgb(41 163 131 / 0.5);\n}\n.bg-jade\\/55{\nbackground-color: rgb(41 163 131 / 0.55);\n}\n.bg-jade\\/60{\nbackground-color: rgb(41 163 131 / 0.6);\n}\n.bg-jade\\/65{\nbackground-color: rgb(41 163 131 / 0.65);\n}\n.bg-jade\\/70{\nbackground-color: rgb(41 163 131 / 0.7);\n}\n.bg-jade\\/75{\nbackground-color: rgb(41 163 131 / 0.75);\n}\n.bg-jade\\/80{\nbackground-color: rgb(41 163 131 / 0.8);\n}\n.bg-jade\\/85{\nbackground-color: rgb(41 163 131 / 0.85);\n}\n.bg-jade\\/90{\nbackground-color: rgb(41 163 131 / 0.9);\n}\n.bg-jade\\/95{\nbackground-color: rgb(41 163 131 / 0.95);\n}\n.bg-light{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--white) srgb r g b / var(--tw-bg-opacity)) 90%, color(from var(--tint) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-light\\/0{\nbackground-color: color-mix(in lab, color(from var(--white) srgb r g b / 0) 90%, color(from var(--tint) srgb r g b / 0));\n}\n.bg-light\\/10{\nbackground-color: color-mix(in lab, color(from var(--white) srgb r g b / 0.1) 90%, color(from var(--tint) srgb r g b / 0.1));\n}\n.bg-light\\/100{\nbackground-color: color-mix(in lab, color(from var(--white) srgb r g b / 1) 90%, color(from var(--tint) srgb r g b / 1));\n}\n.bg-light\\/15{\nbackground-color: color-mix(in lab, color(from var(--white) srgb r g b / 0.15) 90%, color(from var(--tint) srgb r g b / 0.15));\n}\n.bg-light\\/20{\nbackground-color: color-mix(in lab, color(from var(--white) srgb r g b / 0.2) 90%, color(from var(--tint) srgb r g b / 0.2));\n}\n.bg-light\\/25{\nbackground-color: color-mix(in lab, color(from var(--white) srgb r g b / 0.25) 90%, color(from var(--tint) srgb r g b / 0.25));\n}\n.bg-light\\/30{\nbackground-color: color-mix(in lab, color(from var(--white) srgb r g b / 0.3) 90%, color(from var(--tint) srgb r g b / 0.3));\n}\n.bg-light\\/35{\nbackground-color: color-mix(in lab, color(from var(--white) srgb r g b / 0.35) 90%, color(from var(--tint) srgb r g b / 0.35));\n}\n.bg-light\\/40{\nbackground-color: color-mix(in lab, color(from var(--white) srgb r g b / 0.4) 90%, color(from var(--tint) srgb r g b / 0.4));\n}\n.bg-light\\/45{\nbackground-color: color-mix(in lab, color(from var(--white) srgb r g b / 0.45) 90%, color(from var(--tint) srgb r g b / 0.45));\n}\n.bg-light\\/5{\nbackground-color: color-mix(in lab, color(from var(--white) srgb r g b / 0.05) 90%, color(from var(--tint) srgb r g b / 0.05));\n}\n.bg-light\\/50{\nbackground-color: color-mix(in lab, color(from var(--white) srgb r g b / 0.5) 90%, color(from var(--tint) srgb r g b / 0.5));\n}\n.bg-light\\/55{\nbackground-color: color-mix(in lab, color(from var(--white) srgb r g b / 0.55) 90%, color(from var(--tint) srgb r g b / 0.55));\n}\n.bg-light\\/60{\nbackground-color: color-mix(in lab, color(from var(--white) srgb r g b / 0.6) 90%, color(from var(--tint) srgb r g b / 0.6));\n}\n.bg-light\\/65{\nbackground-color: color-mix(in lab, color(from var(--white) srgb r g b / 0.65) 90%, color(from var(--tint) srgb r g b / 0.65));\n}\n.bg-light\\/70{\nbackground-color: color-mix(in lab, color(from var(--white) srgb r g b / 0.7) 90%, color(from var(--tint) srgb r g b / 0.7));\n}\n.bg-light\\/75{\nbackground-color: color-mix(in lab, color(from var(--white) srgb r g b / 0.75) 90%, color(from var(--tint) srgb r g b / 0.75));\n}\n.bg-light\\/80{\nbackground-color: color-mix(in lab, color(from var(--white) srgb r g b / 0.8) 90%, color(from var(--tint) srgb r g b / 0.8));\n}\n.bg-light\\/85{\nbackground-color: color-mix(in lab, color(from var(--white) srgb r g b / 0.85) 90%, color(from var(--tint) srgb r g b / 0.85));\n}\n.bg-light\\/90{\nbackground-color: color-mix(in lab, color(from var(--white) srgb r g b / 0.9) 90%, color(from var(--tint) srgb r g b / 0.9));\n}\n.bg-light\\/95{\nbackground-color: color-mix(in lab, color(from var(--white) srgb r g b / 0.95) 90%, color(from var(--tint) srgb r g b / 0.95));\n}\n.bg-lilac{\n--tw-bg-opacity: 1;\nbackground-color: rgb(142 78 198 / var(--tw-bg-opacity));\n}\n.bg-lilac-100{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-lilac-100\\/0{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-lilac-100\\/10{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-lilac-100\\/100{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-lilac-100\\/15{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-lilac-100\\/20{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-lilac-100\\/25{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-lilac-100\\/30{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-lilac-100\\/35{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-lilac-100\\/40{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-lilac-100\\/45{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-lilac-100\\/5{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-lilac-100\\/50{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-lilac-100\\/55{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-lilac-100\\/60{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-lilac-100\\/65{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-lilac-100\\/70{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-lilac-100\\/75{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-lilac-100\\/80{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-lilac-100\\/85{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-lilac-100\\/90{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-lilac-100\\/95{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-lilac-200{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-lilac-200\\/0{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-lilac-200\\/10{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-lilac-200\\/100{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-lilac-200\\/15{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-lilac-200\\/20{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-lilac-200\\/25{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-lilac-200\\/30{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-lilac-200\\/35{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-lilac-200\\/40{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-lilac-200\\/45{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-lilac-200\\/5{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-lilac-200\\/50{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-lilac-200\\/55{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-lilac-200\\/60{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-lilac-200\\/65{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-lilac-200\\/70{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-lilac-200\\/75{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-lilac-200\\/80{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-lilac-200\\/85{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-lilac-200\\/90{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-lilac-200\\/95{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-lilac-300{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / var(--tw-bg-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-lilac-300\\/0{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-lilac-300\\/10{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-lilac-300\\/100{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-lilac-300\\/15{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-lilac-300\\/20{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-lilac-300\\/25{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-lilac-300\\/30{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-lilac-300\\/35{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-lilac-300\\/40{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-lilac-300\\/45{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-lilac-300\\/5{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-lilac-300\\/50{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-lilac-300\\/55{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-lilac-300\\/60{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-lilac-300\\/65{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-lilac-300\\/70{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-lilac-300\\/75{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-lilac-300\\/80{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-lilac-300\\/85{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-lilac-300\\/90{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-lilac-300\\/95{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-lilac-400{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-lilac-400\\/0{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-lilac-400\\/10{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-lilac-400\\/100{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-lilac-400\\/15{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-lilac-400\\/20{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-lilac-400\\/25{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-lilac-400\\/30{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-lilac-400\\/35{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-lilac-400\\/40{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-lilac-400\\/45{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-lilac-400\\/5{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-lilac-400\\/50{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-lilac-400\\/55{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-lilac-400\\/60{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-lilac-400\\/65{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-lilac-400\\/70{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-lilac-400\\/75{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-lilac-400\\/80{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-lilac-400\\/85{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-lilac-400\\/90{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-lilac-400\\/95{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-lilac-50{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / var(--tw-bg-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-lilac-50\\/0{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-lilac-50\\/10{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-lilac-50\\/100{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-lilac-50\\/15{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-lilac-50\\/20{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-lilac-50\\/25{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-lilac-50\\/30{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-lilac-50\\/35{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-lilac-50\\/40{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-lilac-50\\/45{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-lilac-50\\/5{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-lilac-50\\/50{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-lilac-50\\/55{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-lilac-50\\/60{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-lilac-50\\/65{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-lilac-50\\/70{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-lilac-50\\/75{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-lilac-50\\/80{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-lilac-50\\/85{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-lilac-50\\/90{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-lilac-50\\/95{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-lilac-500{\n--tw-bg-opacity: 1;\nbackground-color: color(from #8e4ec6 srgb r g b / var(--tw-bg-opacity));\n}\n.bg-lilac-500\\/0{\nbackground-color: color(from #8e4ec6 srgb r g b / 0);\n}\n.bg-lilac-500\\/10{\nbackground-color: color(from #8e4ec6 srgb r g b / 0.1);\n}\n.bg-lilac-500\\/100{\nbackground-color: color(from #8e4ec6 srgb r g b / 1);\n}\n.bg-lilac-500\\/15{\nbackground-color: color(from #8e4ec6 srgb r g b / 0.15);\n}\n.bg-lilac-500\\/20{\nbackground-color: color(from #8e4ec6 srgb r g b / 0.2);\n}\n.bg-lilac-500\\/25{\nbackground-color: color(from #8e4ec6 srgb r g b / 0.25);\n}\n.bg-lilac-500\\/30{\nbackground-color: color(from #8e4ec6 srgb r g b / 0.3);\n}\n.bg-lilac-500\\/35{\nbackground-color: color(from #8e4ec6 srgb r g b / 0.35);\n}\n.bg-lilac-500\\/40{\nbackground-color: color(from #8e4ec6 srgb r g b / 0.4);\n}\n.bg-lilac-500\\/45{\nbackground-color: color(from #8e4ec6 srgb r g b / 0.45);\n}\n.bg-lilac-500\\/5{\nbackground-color: color(from #8e4ec6 srgb r g b / 0.05);\n}\n.bg-lilac-500\\/50{\nbackground-color: color(from #8e4ec6 srgb r g b / 0.5);\n}\n.bg-lilac-500\\/55{\nbackground-color: color(from #8e4ec6 srgb r g b / 0.55);\n}\n.bg-lilac-500\\/60{\nbackground-color: color(from #8e4ec6 srgb r g b / 0.6);\n}\n.bg-lilac-500\\/65{\nbackground-color: color(from #8e4ec6 srgb r g b / 0.65);\n}\n.bg-lilac-500\\/70{\nbackground-color: color(from #8e4ec6 srgb r g b / 0.7);\n}\n.bg-lilac-500\\/75{\nbackground-color: color(from #8e4ec6 srgb r g b / 0.75);\n}\n.bg-lilac-500\\/80{\nbackground-color: color(from #8e4ec6 srgb r g b / 0.8);\n}\n.bg-lilac-500\\/85{\nbackground-color: color(from #8e4ec6 srgb r g b / 0.85);\n}\n.bg-lilac-500\\/90{\nbackground-color: color(from #8e4ec6 srgb r g b / 0.9);\n}\n.bg-lilac-500\\/95{\nbackground-color: color(from #8e4ec6 srgb r g b / 0.95);\n}\n.bg-lilac-600{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-lilac-600\\/0{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-lilac-600\\/10{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-lilac-600\\/100{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-lilac-600\\/15{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-lilac-600\\/20{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-lilac-600\\/25{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-lilac-600\\/30{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-lilac-600\\/35{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-lilac-600\\/40{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-lilac-600\\/45{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-lilac-600\\/5{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-lilac-600\\/50{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-lilac-600\\/55{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-lilac-600\\/60{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-lilac-600\\/65{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-lilac-600\\/70{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-lilac-600\\/75{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-lilac-600\\/80{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-lilac-600\\/85{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-lilac-600\\/90{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-lilac-600\\/95{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-lilac-700{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / var(--tw-bg-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-lilac-700\\/0{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-lilac-700\\/10{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-lilac-700\\/100{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-lilac-700\\/15{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-lilac-700\\/20{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-lilac-700\\/25{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-lilac-700\\/30{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-lilac-700\\/35{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-lilac-700\\/40{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-lilac-700\\/45{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-lilac-700\\/5{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-lilac-700\\/50{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-lilac-700\\/55{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-lilac-700\\/60{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-lilac-700\\/65{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-lilac-700\\/70{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-lilac-700\\/75{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-lilac-700\\/80{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-lilac-700\\/85{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-lilac-700\\/90{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-lilac-700\\/95{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-lilac-800{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-lilac-800\\/0{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-lilac-800\\/10{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-lilac-800\\/100{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-lilac-800\\/15{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-lilac-800\\/20{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-lilac-800\\/25{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-lilac-800\\/30{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-lilac-800\\/35{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-lilac-800\\/40{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-lilac-800\\/45{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-lilac-800\\/5{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-lilac-800\\/50{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-lilac-800\\/55{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-lilac-800\\/60{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-lilac-800\\/65{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-lilac-800\\/70{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-lilac-800\\/75{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-lilac-800\\/80{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-lilac-800\\/85{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-lilac-800\\/90{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-lilac-800\\/95{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-lilac-900{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-lilac-900\\/0{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-lilac-900\\/10{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-lilac-900\\/100{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-lilac-900\\/15{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-lilac-900\\/20{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-lilac-900\\/25{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-lilac-900\\/30{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-lilac-900\\/35{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-lilac-900\\/40{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-lilac-900\\/45{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-lilac-900\\/5{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-lilac-900\\/50{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-lilac-900\\/55{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-lilac-900\\/60{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-lilac-900\\/65{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-lilac-900\\/70{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-lilac-900\\/75{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-lilac-900\\/80{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-lilac-900\\/85{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-lilac-900\\/90{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-lilac-900\\/95{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-lilac-950{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / var(--tw-bg-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-lilac-950\\/0{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-lilac-950\\/10{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-lilac-950\\/100{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-lilac-950\\/15{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-lilac-950\\/20{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-lilac-950\\/25{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-lilac-950\\/30{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-lilac-950\\/35{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-lilac-950\\/40{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-lilac-950\\/45{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-lilac-950\\/5{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-lilac-950\\/50{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-lilac-950\\/55{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-lilac-950\\/60{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-lilac-950\\/65{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-lilac-950\\/70{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-lilac-950\\/75{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-lilac-950\\/80{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-lilac-950\\/85{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-lilac-950\\/90{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-lilac-950\\/95{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-lilac\\/0{\nbackground-color: rgb(142 78 198 / 0);\n}\n.bg-lilac\\/10{\nbackground-color: rgb(142 78 198 / 0.1);\n}\n.bg-lilac\\/100{\nbackground-color: rgb(142 78 198 / 1);\n}\n.bg-lilac\\/15{\nbackground-color: rgb(142 78 198 / 0.15);\n}\n.bg-lilac\\/20{\nbackground-color: rgb(142 78 198 / 0.2);\n}\n.bg-lilac\\/25{\nbackground-color: rgb(142 78 198 / 0.25);\n}\n.bg-lilac\\/30{\nbackground-color: rgb(142 78 198 / 0.3);\n}\n.bg-lilac\\/35{\nbackground-color: rgb(142 78 198 / 0.35);\n}\n.bg-lilac\\/40{\nbackground-color: rgb(142 78 198 / 0.4);\n}\n.bg-lilac\\/45{\nbackground-color: rgb(142 78 198 / 0.45);\n}\n.bg-lilac\\/5{\nbackground-color: rgb(142 78 198 / 0.05);\n}\n.bg-lilac\\/50{\nbackground-color: rgb(142 78 198 / 0.5);\n}\n.bg-lilac\\/55{\nbackground-color: rgb(142 78 198 / 0.55);\n}\n.bg-lilac\\/60{\nbackground-color: rgb(142 78 198 / 0.6);\n}\n.bg-lilac\\/65{\nbackground-color: rgb(142 78 198 / 0.65);\n}\n.bg-lilac\\/70{\nbackground-color: rgb(142 78 198 / 0.7);\n}\n.bg-lilac\\/75{\nbackground-color: rgb(142 78 198 / 0.75);\n}\n.bg-lilac\\/80{\nbackground-color: rgb(142 78 198 / 0.8);\n}\n.bg-lilac\\/85{\nbackground-color: rgb(142 78 198 / 0.85);\n}\n.bg-lilac\\/90{\nbackground-color: rgb(142 78 198 / 0.9);\n}\n.bg-lilac\\/95{\nbackground-color: rgb(142 78 198 / 0.95);\n}\n.bg-marigold{\n--tw-bg-opacity: 1;\nbackground-color: rgb(255 193 0 / var(--tw-bg-opacity));\n}\n.bg-marigold-100{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-marigold-100\\/0{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-marigold-100\\/10{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-marigold-100\\/100{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-marigold-100\\/15{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-marigold-100\\/20{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-marigold-100\\/25{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-marigold-100\\/30{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-marigold-100\\/35{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-marigold-100\\/40{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-marigold-100\\/45{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-marigold-100\\/5{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-marigold-100\\/50{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-marigold-100\\/55{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-marigold-100\\/60{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-marigold-100\\/65{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-marigold-100\\/70{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-marigold-100\\/75{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-marigold-100\\/80{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-marigold-100\\/85{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-marigold-100\\/90{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-marigold-100\\/95{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-marigold-200{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-marigold-200\\/0{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-marigold-200\\/10{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-marigold-200\\/100{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-marigold-200\\/15{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-marigold-200\\/20{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-marigold-200\\/25{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-marigold-200\\/30{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-marigold-200\\/35{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-marigold-200\\/40{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-marigold-200\\/45{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-marigold-200\\/5{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-marigold-200\\/50{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-marigold-200\\/55{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-marigold-200\\/60{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-marigold-200\\/65{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-marigold-200\\/70{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-marigold-200\\/75{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-marigold-200\\/80{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-marigold-200\\/85{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-marigold-200\\/90{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-marigold-200\\/95{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-marigold-300{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / var(--tw-bg-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-marigold-300\\/0{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-marigold-300\\/10{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-marigold-300\\/100{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-marigold-300\\/15{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-marigold-300\\/20{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-marigold-300\\/25{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-marigold-300\\/30{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-marigold-300\\/35{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-marigold-300\\/40{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-marigold-300\\/45{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-marigold-300\\/5{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-marigold-300\\/50{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-marigold-300\\/55{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-marigold-300\\/60{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-marigold-300\\/65{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-marigold-300\\/70{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-marigold-300\\/75{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-marigold-300\\/80{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-marigold-300\\/85{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-marigold-300\\/90{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-marigold-300\\/95{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-marigold-400{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-marigold-400\\/0{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-marigold-400\\/10{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-marigold-400\\/100{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-marigold-400\\/15{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-marigold-400\\/20{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-marigold-400\\/25{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-marigold-400\\/30{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-marigold-400\\/35{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-marigold-400\\/40{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-marigold-400\\/45{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-marigold-400\\/5{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-marigold-400\\/50{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-marigold-400\\/55{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-marigold-400\\/60{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-marigold-400\\/65{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-marigold-400\\/70{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-marigold-400\\/75{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-marigold-400\\/80{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-marigold-400\\/85{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-marigold-400\\/90{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-marigold-400\\/95{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-marigold-50{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / var(--tw-bg-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-marigold-50\\/0{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-marigold-50\\/10{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-marigold-50\\/100{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-marigold-50\\/15{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-marigold-50\\/20{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-marigold-50\\/25{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-marigold-50\\/30{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-marigold-50\\/35{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-marigold-50\\/40{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-marigold-50\\/45{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-marigold-50\\/5{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-marigold-50\\/50{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-marigold-50\\/55{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-marigold-50\\/60{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-marigold-50\\/65{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-marigold-50\\/70{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-marigold-50\\/75{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-marigold-50\\/80{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-marigold-50\\/85{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-marigold-50\\/90{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-marigold-50\\/95{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-marigold-500{\n--tw-bg-opacity: 1;\nbackground-color: color(from #ffc100 srgb r g b / var(--tw-bg-opacity));\n}\n.bg-marigold-500\\/0{\nbackground-color: color(from #ffc100 srgb r g b / 0);\n}\n.bg-marigold-500\\/10{\nbackground-color: color(from #ffc100 srgb r g b / 0.1);\n}\n.bg-marigold-500\\/100{\nbackground-color: color(from #ffc100 srgb r g b / 1);\n}\n.bg-marigold-500\\/15{\nbackground-color: color(from #ffc100 srgb r g b / 0.15);\n}\n.bg-marigold-500\\/20{\nbackground-color: color(from #ffc100 srgb r g b / 0.2);\n}\n.bg-marigold-500\\/25{\nbackground-color: color(from #ffc100 srgb r g b / 0.25);\n}\n.bg-marigold-500\\/30{\nbackground-color: color(from #ffc100 srgb r g b / 0.3);\n}\n.bg-marigold-500\\/35{\nbackground-color: color(from #ffc100 srgb r g b / 0.35);\n}\n.bg-marigold-500\\/40{\nbackground-color: color(from #ffc100 srgb r g b / 0.4);\n}\n.bg-marigold-500\\/45{\nbackground-color: color(from #ffc100 srgb r g b / 0.45);\n}\n.bg-marigold-500\\/5{\nbackground-color: color(from #ffc100 srgb r g b / 0.05);\n}\n.bg-marigold-500\\/50{\nbackground-color: color(from #ffc100 srgb r g b / 0.5);\n}\n.bg-marigold-500\\/55{\nbackground-color: color(from #ffc100 srgb r g b / 0.55);\n}\n.bg-marigold-500\\/60{\nbackground-color: color(from #ffc100 srgb r g b / 0.6);\n}\n.bg-marigold-500\\/65{\nbackground-color: color(from #ffc100 srgb r g b / 0.65);\n}\n.bg-marigold-500\\/70{\nbackground-color: color(from #ffc100 srgb r g b / 0.7);\n}\n.bg-marigold-500\\/75{\nbackground-color: color(from #ffc100 srgb r g b / 0.75);\n}\n.bg-marigold-500\\/80{\nbackground-color: color(from #ffc100 srgb r g b / 0.8);\n}\n.bg-marigold-500\\/85{\nbackground-color: color(from #ffc100 srgb r g b / 0.85);\n}\n.bg-marigold-500\\/90{\nbackground-color: color(from #ffc100 srgb r g b / 0.9);\n}\n.bg-marigold-500\\/95{\nbackground-color: color(from #ffc100 srgb r g b / 0.95);\n}\n.bg-marigold-600{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-marigold-600\\/0{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-marigold-600\\/10{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-marigold-600\\/100{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-marigold-600\\/15{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-marigold-600\\/20{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-marigold-600\\/25{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-marigold-600\\/30{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-marigold-600\\/35{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-marigold-600\\/40{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-marigold-600\\/45{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-marigold-600\\/5{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-marigold-600\\/50{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-marigold-600\\/55{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-marigold-600\\/60{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-marigold-600\\/65{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-marigold-600\\/70{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-marigold-600\\/75{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-marigold-600\\/80{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-marigold-600\\/85{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-marigold-600\\/90{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-marigold-600\\/95{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-marigold-700{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / var(--tw-bg-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-marigold-700\\/0{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-marigold-700\\/10{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-marigold-700\\/100{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-marigold-700\\/15{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-marigold-700\\/20{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-marigold-700\\/25{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-marigold-700\\/30{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-marigold-700\\/35{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-marigold-700\\/40{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-marigold-700\\/45{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-marigold-700\\/5{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-marigold-700\\/50{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-marigold-700\\/55{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-marigold-700\\/60{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-marigold-700\\/65{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-marigold-700\\/70{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-marigold-700\\/75{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-marigold-700\\/80{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-marigold-700\\/85{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-marigold-700\\/90{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-marigold-700\\/95{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-marigold-800{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-marigold-800\\/0{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-marigold-800\\/10{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-marigold-800\\/100{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-marigold-800\\/15{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-marigold-800\\/20{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-marigold-800\\/25{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-marigold-800\\/30{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-marigold-800\\/35{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-marigold-800\\/40{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-marigold-800\\/45{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-marigold-800\\/5{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-marigold-800\\/50{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-marigold-800\\/55{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-marigold-800\\/60{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-marigold-800\\/65{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-marigold-800\\/70{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-marigold-800\\/75{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-marigold-800\\/80{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-marigold-800\\/85{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-marigold-800\\/90{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-marigold-800\\/95{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-marigold-900{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-marigold-900\\/0{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-marigold-900\\/10{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-marigold-900\\/100{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-marigold-900\\/15{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-marigold-900\\/20{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-marigold-900\\/25{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-marigold-900\\/30{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-marigold-900\\/35{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-marigold-900\\/40{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-marigold-900\\/45{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-marigold-900\\/5{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-marigold-900\\/50{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-marigold-900\\/55{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-marigold-900\\/60{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-marigold-900\\/65{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-marigold-900\\/70{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-marigold-900\\/75{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-marigold-900\\/80{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-marigold-900\\/85{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-marigold-900\\/90{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-marigold-900\\/95{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-marigold-950{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / var(--tw-bg-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-marigold-950\\/0{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-marigold-950\\/10{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-marigold-950\\/100{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-marigold-950\\/15{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-marigold-950\\/20{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-marigold-950\\/25{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-marigold-950\\/30{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-marigold-950\\/35{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-marigold-950\\/40{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-marigold-950\\/45{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-marigold-950\\/5{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-marigold-950\\/50{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-marigold-950\\/55{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-marigold-950\\/60{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-marigold-950\\/65{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-marigold-950\\/70{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-marigold-950\\/75{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-marigold-950\\/80{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-marigold-950\\/85{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-marigold-950\\/90{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-marigold-950\\/95{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-marigold\\/0{\nbackground-color: rgb(255 193 0 / 0);\n}\n.bg-marigold\\/10{\nbackground-color: rgb(255 193 0 / 0.1);\n}\n.bg-marigold\\/100{\nbackground-color: rgb(255 193 0 / 1);\n}\n.bg-marigold\\/15{\nbackground-color: rgb(255 193 0 / 0.15);\n}\n.bg-marigold\\/20{\nbackground-color: rgb(255 193 0 / 0.2);\n}\n.bg-marigold\\/25{\nbackground-color: rgb(255 193 0 / 0.25);\n}\n.bg-marigold\\/30{\nbackground-color: rgb(255 193 0 / 0.3);\n}\n.bg-marigold\\/35{\nbackground-color: rgb(255 193 0 / 0.35);\n}\n.bg-marigold\\/40{\nbackground-color: rgb(255 193 0 / 0.4);\n}\n.bg-marigold\\/45{\nbackground-color: rgb(255 193 0 / 0.45);\n}\n.bg-marigold\\/5{\nbackground-color: rgb(255 193 0 / 0.05);\n}\n.bg-marigold\\/50{\nbackground-color: rgb(255 193 0 / 0.5);\n}\n.bg-marigold\\/55{\nbackground-color: rgb(255 193 0 / 0.55);\n}\n.bg-marigold\\/60{\nbackground-color: rgb(255 193 0 / 0.6);\n}\n.bg-marigold\\/65{\nbackground-color: rgb(255 193 0 / 0.65);\n}\n.bg-marigold\\/70{\nbackground-color: rgb(255 193 0 / 0.7);\n}\n.bg-marigold\\/75{\nbackground-color: rgb(255 193 0 / 0.75);\n}\n.bg-marigold\\/80{\nbackground-color: rgb(255 193 0 / 0.8);\n}\n.bg-marigold\\/85{\nbackground-color: rgb(255 193 0 / 0.85);\n}\n.bg-marigold\\/90{\nbackground-color: rgb(255 193 0 / 0.9);\n}\n.bg-marigold\\/95{\nbackground-color: rgb(255 193 0 / 0.95);\n}\n.bg-muted{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--tint) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-muted\\/0{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0) 80%, color(from var(--tint) srgb r g b / 0));\n}\n.bg-muted\\/10{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.1) 80%, color(from var(--tint) srgb r g b / 0.1));\n}\n.bg-muted\\/100{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 80%, color(from var(--tint) srgb r g b / 1));\n}\n.bg-muted\\/15{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.15) 80%, color(from var(--tint) srgb r g b / 0.15));\n}\n.bg-muted\\/20{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.2) 80%, color(from var(--tint) srgb r g b / 0.2));\n}\n.bg-muted\\/25{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.25) 80%, color(from var(--tint) srgb r g b / 0.25));\n}\n.bg-muted\\/30{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.3) 80%, color(from var(--tint) srgb r g b / 0.3));\n}\n.bg-muted\\/35{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.35) 80%, color(from var(--tint) srgb r g b / 0.35));\n}\n.bg-muted\\/40{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.4) 80%, color(from var(--tint) srgb r g b / 0.4));\n}\n.bg-muted\\/45{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.45) 80%, color(from var(--tint) srgb r g b / 0.45));\n}\n.bg-muted\\/5{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.05) 80%, color(from var(--tint) srgb r g b / 0.05));\n}\n.bg-muted\\/50{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.5) 80%, color(from var(--tint) srgb r g b / 0.5));\n}\n.bg-muted\\/55{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.55) 80%, color(from var(--tint) srgb r g b / 0.55));\n}\n.bg-muted\\/60{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.6) 80%, color(from var(--tint) srgb r g b / 0.6));\n}\n.bg-muted\\/65{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.65) 80%, color(from var(--tint) srgb r g b / 0.65));\n}\n.bg-muted\\/70{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.7) 80%, color(from var(--tint) srgb r g b / 0.7));\n}\n.bg-muted\\/75{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.75) 80%, color(from var(--tint) srgb r g b / 0.75));\n}\n.bg-muted\\/80{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.8) 80%, color(from var(--tint) srgb r g b / 0.8));\n}\n.bg-muted\\/85{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.85) 80%, color(from var(--tint) srgb r g b / 0.85));\n}\n.bg-muted\\/90{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.9) 80%, color(from var(--tint) srgb r g b / 0.9));\n}\n.bg-muted\\/95{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.95) 80%, color(from var(--tint) srgb r g b / 0.95));\n}\n.bg-olive{\n--tw-bg-opacity: 1;\nbackground-color: rgb(118 155 141 / var(--tw-bg-opacity));\n}\n.bg-olive-100{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-olive-100\\/0{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-olive-100\\/10{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-olive-100\\/100{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-olive-100\\/15{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-olive-100\\/20{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-olive-100\\/25{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-olive-100\\/30{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-olive-100\\/35{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-olive-100\\/40{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-olive-100\\/45{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-olive-100\\/5{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-olive-100\\/50{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-olive-100\\/55{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-olive-100\\/60{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-olive-100\\/65{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-olive-100\\/70{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-olive-100\\/75{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-olive-100\\/80{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-olive-100\\/85{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-olive-100\\/90{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-olive-100\\/95{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-olive-200{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-olive-200\\/0{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-olive-200\\/10{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-olive-200\\/100{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-olive-200\\/15{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-olive-200\\/20{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-olive-200\\/25{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-olive-200\\/30{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-olive-200\\/35{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-olive-200\\/40{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-olive-200\\/45{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-olive-200\\/5{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-olive-200\\/50{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-olive-200\\/55{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-olive-200\\/60{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-olive-200\\/65{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-olive-200\\/70{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-olive-200\\/75{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-olive-200\\/80{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-olive-200\\/85{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-olive-200\\/90{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-olive-200\\/95{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-olive-300{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / var(--tw-bg-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-olive-300\\/0{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-olive-300\\/10{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-olive-300\\/100{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-olive-300\\/15{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-olive-300\\/20{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-olive-300\\/25{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-olive-300\\/30{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-olive-300\\/35{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-olive-300\\/40{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-olive-300\\/45{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-olive-300\\/5{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-olive-300\\/50{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-olive-300\\/55{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-olive-300\\/60{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-olive-300\\/65{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-olive-300\\/70{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-olive-300\\/75{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-olive-300\\/80{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-olive-300\\/85{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-olive-300\\/90{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-olive-300\\/95{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-olive-400{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-olive-400\\/0{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-olive-400\\/10{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-olive-400\\/100{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-olive-400\\/15{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-olive-400\\/20{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-olive-400\\/25{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-olive-400\\/30{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-olive-400\\/35{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-olive-400\\/40{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-olive-400\\/45{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-olive-400\\/5{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-olive-400\\/50{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-olive-400\\/55{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-olive-400\\/60{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-olive-400\\/65{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-olive-400\\/70{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-olive-400\\/75{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-olive-400\\/80{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-olive-400\\/85{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-olive-400\\/90{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-olive-400\\/95{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-olive-50{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / var(--tw-bg-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-olive-50\\/0{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-olive-50\\/10{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-olive-50\\/100{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-olive-50\\/15{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-olive-50\\/20{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-olive-50\\/25{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-olive-50\\/30{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-olive-50\\/35{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-olive-50\\/40{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-olive-50\\/45{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-olive-50\\/5{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-olive-50\\/50{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-olive-50\\/55{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-olive-50\\/60{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-olive-50\\/65{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-olive-50\\/70{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-olive-50\\/75{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-olive-50\\/80{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-olive-50\\/85{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-olive-50\\/90{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-olive-50\\/95{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-olive-500{\n--tw-bg-opacity: 1;\nbackground-color: color(from #769b8d srgb r g b / var(--tw-bg-opacity));\n}\n.bg-olive-500\\/0{\nbackground-color: color(from #769b8d srgb r g b / 0);\n}\n.bg-olive-500\\/10{\nbackground-color: color(from #769b8d srgb r g b / 0.1);\n}\n.bg-olive-500\\/100{\nbackground-color: color(from #769b8d srgb r g b / 1);\n}\n.bg-olive-500\\/15{\nbackground-color: color(from #769b8d srgb r g b / 0.15);\n}\n.bg-olive-500\\/20{\nbackground-color: color(from #769b8d srgb r g b / 0.2);\n}\n.bg-olive-500\\/25{\nbackground-color: color(from #769b8d srgb r g b / 0.25);\n}\n.bg-olive-500\\/30{\nbackground-color: color(from #769b8d srgb r g b / 0.3);\n}\n.bg-olive-500\\/35{\nbackground-color: color(from #769b8d srgb r g b / 0.35);\n}\n.bg-olive-500\\/40{\nbackground-color: color(from #769b8d srgb r g b / 0.4);\n}\n.bg-olive-500\\/45{\nbackground-color: color(from #769b8d srgb r g b / 0.45);\n}\n.bg-olive-500\\/5{\nbackground-color: color(from #769b8d srgb r g b / 0.05);\n}\n.bg-olive-500\\/50{\nbackground-color: color(from #769b8d srgb r g b / 0.5);\n}\n.bg-olive-500\\/55{\nbackground-color: color(from #769b8d srgb r g b / 0.55);\n}\n.bg-olive-500\\/60{\nbackground-color: color(from #769b8d srgb r g b / 0.6);\n}\n.bg-olive-500\\/65{\nbackground-color: color(from #769b8d srgb r g b / 0.65);\n}\n.bg-olive-500\\/70{\nbackground-color: color(from #769b8d srgb r g b / 0.7);\n}\n.bg-olive-500\\/75{\nbackground-color: color(from #769b8d srgb r g b / 0.75);\n}\n.bg-olive-500\\/80{\nbackground-color: color(from #769b8d srgb r g b / 0.8);\n}\n.bg-olive-500\\/85{\nbackground-color: color(from #769b8d srgb r g b / 0.85);\n}\n.bg-olive-500\\/90{\nbackground-color: color(from #769b8d srgb r g b / 0.9);\n}\n.bg-olive-500\\/95{\nbackground-color: color(from #769b8d srgb r g b / 0.95);\n}\n.bg-olive-600{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-olive-600\\/0{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-olive-600\\/10{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-olive-600\\/100{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-olive-600\\/15{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-olive-600\\/20{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-olive-600\\/25{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-olive-600\\/30{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-olive-600\\/35{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-olive-600\\/40{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-olive-600\\/45{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-olive-600\\/5{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-olive-600\\/50{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-olive-600\\/55{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-olive-600\\/60{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-olive-600\\/65{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-olive-600\\/70{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-olive-600\\/75{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-olive-600\\/80{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-olive-600\\/85{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-olive-600\\/90{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-olive-600\\/95{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-olive-700{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / var(--tw-bg-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-olive-700\\/0{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-olive-700\\/10{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-olive-700\\/100{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-olive-700\\/15{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-olive-700\\/20{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-olive-700\\/25{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-olive-700\\/30{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-olive-700\\/35{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-olive-700\\/40{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-olive-700\\/45{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-olive-700\\/5{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-olive-700\\/50{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-olive-700\\/55{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-olive-700\\/60{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-olive-700\\/65{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-olive-700\\/70{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-olive-700\\/75{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-olive-700\\/80{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-olive-700\\/85{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-olive-700\\/90{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-olive-700\\/95{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-olive-800{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-olive-800\\/0{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-olive-800\\/10{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-olive-800\\/100{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-olive-800\\/15{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-olive-800\\/20{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-olive-800\\/25{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-olive-800\\/30{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-olive-800\\/35{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-olive-800\\/40{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-olive-800\\/45{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-olive-800\\/5{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-olive-800\\/50{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-olive-800\\/55{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-olive-800\\/60{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-olive-800\\/65{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-olive-800\\/70{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-olive-800\\/75{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-olive-800\\/80{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-olive-800\\/85{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-olive-800\\/90{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-olive-800\\/95{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-olive-900{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-olive-900\\/0{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-olive-900\\/10{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-olive-900\\/100{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-olive-900\\/15{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-olive-900\\/20{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-olive-900\\/25{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-olive-900\\/30{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-olive-900\\/35{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-olive-900\\/40{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-olive-900\\/45{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-olive-900\\/5{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-olive-900\\/50{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-olive-900\\/55{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-olive-900\\/60{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-olive-900\\/65{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-olive-900\\/70{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-olive-900\\/75{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-olive-900\\/80{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-olive-900\\/85{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-olive-900\\/90{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-olive-900\\/95{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-olive-950{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / var(--tw-bg-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-olive-950\\/0{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-olive-950\\/10{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-olive-950\\/100{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-olive-950\\/15{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-olive-950\\/20{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-olive-950\\/25{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-olive-950\\/30{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-olive-950\\/35{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-olive-950\\/40{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-olive-950\\/45{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-olive-950\\/5{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-olive-950\\/50{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-olive-950\\/55{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-olive-950\\/60{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-olive-950\\/65{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-olive-950\\/70{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-olive-950\\/75{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-olive-950\\/80{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-olive-950\\/85{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-olive-950\\/90{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-olive-950\\/95{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-olive\\/0{\nbackground-color: rgb(118 155 141 / 0);\n}\n.bg-olive\\/10{\nbackground-color: rgb(118 155 141 / 0.1);\n}\n.bg-olive\\/100{\nbackground-color: rgb(118 155 141 / 1);\n}\n.bg-olive\\/15{\nbackground-color: rgb(118 155 141 / 0.15);\n}\n.bg-olive\\/20{\nbackground-color: rgb(118 155 141 / 0.2);\n}\n.bg-olive\\/25{\nbackground-color: rgb(118 155 141 / 0.25);\n}\n.bg-olive\\/30{\nbackground-color: rgb(118 155 141 / 0.3);\n}\n.bg-olive\\/35{\nbackground-color: rgb(118 155 141 / 0.35);\n}\n.bg-olive\\/40{\nbackground-color: rgb(118 155 141 / 0.4);\n}\n.bg-olive\\/45{\nbackground-color: rgb(118 155 141 / 0.45);\n}\n.bg-olive\\/5{\nbackground-color: rgb(118 155 141 / 0.05);\n}\n.bg-olive\\/50{\nbackground-color: rgb(118 155 141 / 0.5);\n}\n.bg-olive\\/55{\nbackground-color: rgb(118 155 141 / 0.55);\n}\n.bg-olive\\/60{\nbackground-color: rgb(118 155 141 / 0.6);\n}\n.bg-olive\\/65{\nbackground-color: rgb(118 155 141 / 0.65);\n}\n.bg-olive\\/70{\nbackground-color: rgb(118 155 141 / 0.7);\n}\n.bg-olive\\/75{\nbackground-color: rgb(118 155 141 / 0.75);\n}\n.bg-olive\\/80{\nbackground-color: rgb(118 155 141 / 0.8);\n}\n.bg-olive\\/85{\nbackground-color: rgb(118 155 141 / 0.85);\n}\n.bg-olive\\/90{\nbackground-color: rgb(118 155 141 / 0.9);\n}\n.bg-olive\\/95{\nbackground-color: rgb(118 155 141 / 0.95);\n}\n.bg-primary{\nbackground-color: var(--primary);\n}\n.bg-primary-100{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-primary-100\\/0{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-primary-100\\/10{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-primary-100\\/100{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-primary-100\\/15{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-primary-100\\/20{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-primary-100\\/25{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-primary-100\\/30{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-primary-100\\/35{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-primary-100\\/40{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-primary-100\\/45{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-primary-100\\/5{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-primary-100\\/50{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-primary-100\\/55{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-primary-100\\/60{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-primary-100\\/65{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-primary-100\\/70{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-primary-100\\/75{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-primary-100\\/80{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-primary-100\\/85{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-primary-100\\/90{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-primary-100\\/95{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-primary-200{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-primary-200\\/0{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-primary-200\\/10{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-primary-200\\/100{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-primary-200\\/15{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-primary-200\\/20{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-primary-200\\/25{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-primary-200\\/30{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-primary-200\\/35{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-primary-200\\/40{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-primary-200\\/45{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-primary-200\\/5{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-primary-200\\/50{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-primary-200\\/55{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-primary-200\\/60{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-primary-200\\/65{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-primary-200\\/70{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-primary-200\\/75{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-primary-200\\/80{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-primary-200\\/85{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-primary-200\\/90{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-primary-200\\/95{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-primary-300{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-bg-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-primary-300\\/0{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-primary-300\\/10{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-primary-300\\/100{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-primary-300\\/15{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-primary-300\\/20{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-primary-300\\/25{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-primary-300\\/30{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-primary-300\\/35{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-primary-300\\/40{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-primary-300\\/45{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-primary-300\\/5{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-primary-300\\/50{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-primary-300\\/55{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-primary-300\\/60{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-primary-300\\/65{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-primary-300\\/70{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-primary-300\\/75{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-primary-300\\/80{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-primary-300\\/85{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-primary-300\\/90{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-primary-300\\/95{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-primary-400{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-primary-400\\/0{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-primary-400\\/10{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-primary-400\\/100{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-primary-400\\/15{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-primary-400\\/20{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-primary-400\\/25{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-primary-400\\/30{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-primary-400\\/35{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-primary-400\\/40{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-primary-400\\/45{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-primary-400\\/5{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-primary-400\\/50{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-primary-400\\/55{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-primary-400\\/60{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-primary-400\\/65{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-primary-400\\/70{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-primary-400\\/75{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-primary-400\\/80{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-primary-400\\/85{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-primary-400\\/90{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-primary-400\\/95{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-primary-50{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-bg-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-primary-50\\/0{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-primary-50\\/10{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-primary-50\\/100{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-primary-50\\/15{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-primary-50\\/20{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-primary-50\\/25{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-primary-50\\/30{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-primary-50\\/35{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-primary-50\\/40{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-primary-50\\/45{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-primary-50\\/5{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-primary-50\\/50{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-primary-50\\/55{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-primary-50\\/60{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-primary-50\\/65{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-primary-50\\/70{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-primary-50\\/75{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-primary-50\\/80{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-primary-50\\/85{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-primary-50\\/90{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-primary-50\\/95{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-primary-500{\n--tw-bg-opacity: 1;\nbackground-color: color(from var(--primary) srgb r g b / var(--tw-bg-opacity));\n}\n.bg-primary-500\\/0{\nbackground-color: color(from var(--primary) srgb r g b / 0);\n}\n.bg-primary-500\\/10{\nbackground-color: color(from var(--primary) srgb r g b / 0.1);\n}\n.bg-primary-500\\/100{\nbackground-color: color(from var(--primary) srgb r g b / 1);\n}\n.bg-primary-500\\/15{\nbackground-color: color(from var(--primary) srgb r g b / 0.15);\n}\n.bg-primary-500\\/20{\nbackground-color: color(from var(--primary) srgb r g b / 0.2);\n}\n.bg-primary-500\\/25{\nbackground-color: color(from var(--primary) srgb r g b / 0.25);\n}\n.bg-primary-500\\/30{\nbackground-color: color(from var(--primary) srgb r g b / 0.3);\n}\n.bg-primary-500\\/35{\nbackground-color: color(from var(--primary) srgb r g b / 0.35);\n}\n.bg-primary-500\\/40{\nbackground-color: color(from var(--primary) srgb r g b / 0.4);\n}\n.bg-primary-500\\/45{\nbackground-color: color(from var(--primary) srgb r g b / 0.45);\n}\n.bg-primary-500\\/5{\nbackground-color: color(from var(--primary) srgb r g b / 0.05);\n}\n.bg-primary-500\\/50{\nbackground-color: color(from var(--primary) srgb r g b / 0.5);\n}\n.bg-primary-500\\/55{\nbackground-color: color(from var(--primary) srgb r g b / 0.55);\n}\n.bg-primary-500\\/60{\nbackground-color: color(from var(--primary) srgb r g b / 0.6);\n}\n.bg-primary-500\\/65{\nbackground-color: color(from var(--primary) srgb r g b / 0.65);\n}\n.bg-primary-500\\/70{\nbackground-color: color(from var(--primary) srgb r g b / 0.7);\n}\n.bg-primary-500\\/75{\nbackground-color: color(from var(--primary) srgb r g b / 0.75);\n}\n.bg-primary-500\\/80{\nbackground-color: color(from var(--primary) srgb r g b / 0.8);\n}\n.bg-primary-500\\/85{\nbackground-color: color(from var(--primary) srgb r g b / 0.85);\n}\n.bg-primary-500\\/90{\nbackground-color: color(from var(--primary) srgb r g b / 0.9);\n}\n.bg-primary-500\\/95{\nbackground-color: color(from var(--primary) srgb r g b / 0.95);\n}\n.bg-primary-600{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-primary-600\\/0{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-primary-600\\/10{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-primary-600\\/100{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-primary-600\\/15{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-primary-600\\/20{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-primary-600\\/25{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-primary-600\\/30{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-primary-600\\/35{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-primary-600\\/40{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-primary-600\\/45{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-primary-600\\/5{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-primary-600\\/50{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-primary-600\\/55{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-primary-600\\/60{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-primary-600\\/65{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-primary-600\\/70{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-primary-600\\/75{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-primary-600\\/80{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-primary-600\\/85{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-primary-600\\/90{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-primary-600\\/95{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-primary-700{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-bg-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-primary-700\\/0{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-primary-700\\/10{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-primary-700\\/100{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-primary-700\\/15{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-primary-700\\/20{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-primary-700\\/25{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-primary-700\\/30{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-primary-700\\/35{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-primary-700\\/40{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-primary-700\\/45{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-primary-700\\/5{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-primary-700\\/50{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-primary-700\\/55{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-primary-700\\/60{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-primary-700\\/65{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-primary-700\\/70{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-primary-700\\/75{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-primary-700\\/80{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-primary-700\\/85{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-primary-700\\/90{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-primary-700\\/95{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-primary-800{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-primary-800\\/0{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-primary-800\\/10{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-primary-800\\/100{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-primary-800\\/15{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-primary-800\\/20{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-primary-800\\/25{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-primary-800\\/30{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-primary-800\\/35{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-primary-800\\/40{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-primary-800\\/45{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-primary-800\\/5{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-primary-800\\/50{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-primary-800\\/55{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-primary-800\\/60{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-primary-800\\/65{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-primary-800\\/70{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-primary-800\\/75{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-primary-800\\/80{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-primary-800\\/85{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-primary-800\\/90{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-primary-800\\/95{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-primary-900{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-primary-900\\/0{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-primary-900\\/10{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-primary-900\\/100{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-primary-900\\/15{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-primary-900\\/20{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-primary-900\\/25{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-primary-900\\/30{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-primary-900\\/35{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-primary-900\\/40{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-primary-900\\/45{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-primary-900\\/5{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-primary-900\\/50{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-primary-900\\/55{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-primary-900\\/60{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-primary-900\\/65{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-primary-900\\/70{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-primary-900\\/75{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-primary-900\\/80{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-primary-900\\/85{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-primary-900\\/90{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-primary-900\\/95{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-primary-950{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-bg-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-primary-950\\/0{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-primary-950\\/10{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-primary-950\\/100{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-primary-950\\/15{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-primary-950\\/20{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-primary-950\\/25{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-primary-950\\/30{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-primary-950\\/35{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-primary-950\\/40{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-primary-950\\/45{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-primary-950\\/5{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-primary-950\\/50{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-primary-950\\/55{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-primary-950\\/60{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-primary-950\\/65{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-primary-950\\/70{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-primary-950\\/75{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-primary-950\\/80{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-primary-950\\/85{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-primary-950\\/90{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-primary-950\\/95{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-pumpkin{\n--tw-bg-opacity: 1;\nbackground-color: rgb(247 106 21 / var(--tw-bg-opacity));\n}\n.bg-pumpkin-100{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-pumpkin-100\\/0{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-pumpkin-100\\/10{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-pumpkin-100\\/100{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-pumpkin-100\\/15{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-pumpkin-100\\/20{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-pumpkin-100\\/25{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-pumpkin-100\\/30{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-pumpkin-100\\/35{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-pumpkin-100\\/40{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-pumpkin-100\\/45{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-pumpkin-100\\/5{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-pumpkin-100\\/50{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-pumpkin-100\\/55{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-pumpkin-100\\/60{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-pumpkin-100\\/65{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-pumpkin-100\\/70{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-pumpkin-100\\/75{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-pumpkin-100\\/80{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-pumpkin-100\\/85{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-pumpkin-100\\/90{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-pumpkin-100\\/95{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-pumpkin-200{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-pumpkin-200\\/0{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-pumpkin-200\\/10{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-pumpkin-200\\/100{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-pumpkin-200\\/15{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-pumpkin-200\\/20{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-pumpkin-200\\/25{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-pumpkin-200\\/30{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-pumpkin-200\\/35{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-pumpkin-200\\/40{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-pumpkin-200\\/45{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-pumpkin-200\\/5{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-pumpkin-200\\/50{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-pumpkin-200\\/55{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-pumpkin-200\\/60{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-pumpkin-200\\/65{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-pumpkin-200\\/70{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-pumpkin-200\\/75{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-pumpkin-200\\/80{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-pumpkin-200\\/85{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-pumpkin-200\\/90{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-pumpkin-200\\/95{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-pumpkin-300{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / var(--tw-bg-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-pumpkin-300\\/0{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-pumpkin-300\\/10{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-pumpkin-300\\/100{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-pumpkin-300\\/15{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-pumpkin-300\\/20{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-pumpkin-300\\/25{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-pumpkin-300\\/30{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-pumpkin-300\\/35{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-pumpkin-300\\/40{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-pumpkin-300\\/45{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-pumpkin-300\\/5{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-pumpkin-300\\/50{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-pumpkin-300\\/55{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-pumpkin-300\\/60{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-pumpkin-300\\/65{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-pumpkin-300\\/70{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-pumpkin-300\\/75{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-pumpkin-300\\/80{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-pumpkin-300\\/85{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-pumpkin-300\\/90{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-pumpkin-300\\/95{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-pumpkin-400{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-pumpkin-400\\/0{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-pumpkin-400\\/10{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-pumpkin-400\\/100{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-pumpkin-400\\/15{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-pumpkin-400\\/20{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-pumpkin-400\\/25{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-pumpkin-400\\/30{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-pumpkin-400\\/35{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-pumpkin-400\\/40{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-pumpkin-400\\/45{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-pumpkin-400\\/5{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-pumpkin-400\\/50{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-pumpkin-400\\/55{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-pumpkin-400\\/60{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-pumpkin-400\\/65{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-pumpkin-400\\/70{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-pumpkin-400\\/75{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-pumpkin-400\\/80{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-pumpkin-400\\/85{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-pumpkin-400\\/90{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-pumpkin-400\\/95{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-pumpkin-50{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / var(--tw-bg-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-pumpkin-50\\/0{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-pumpkin-50\\/10{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-pumpkin-50\\/100{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-pumpkin-50\\/15{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-pumpkin-50\\/20{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-pumpkin-50\\/25{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-pumpkin-50\\/30{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-pumpkin-50\\/35{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-pumpkin-50\\/40{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-pumpkin-50\\/45{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-pumpkin-50\\/5{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-pumpkin-50\\/50{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-pumpkin-50\\/55{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-pumpkin-50\\/60{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-pumpkin-50\\/65{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-pumpkin-50\\/70{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-pumpkin-50\\/75{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-pumpkin-50\\/80{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-pumpkin-50\\/85{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-pumpkin-50\\/90{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-pumpkin-50\\/95{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-pumpkin-500{\n--tw-bg-opacity: 1;\nbackground-color: color(from #f76a15 srgb r g b / var(--tw-bg-opacity));\n}\n.bg-pumpkin-500\\/0{\nbackground-color: color(from #f76a15 srgb r g b / 0);\n}\n.bg-pumpkin-500\\/10{\nbackground-color: color(from #f76a15 srgb r g b / 0.1);\n}\n.bg-pumpkin-500\\/100{\nbackground-color: color(from #f76a15 srgb r g b / 1);\n}\n.bg-pumpkin-500\\/15{\nbackground-color: color(from #f76a15 srgb r g b / 0.15);\n}\n.bg-pumpkin-500\\/20{\nbackground-color: color(from #f76a15 srgb r g b / 0.2);\n}\n.bg-pumpkin-500\\/25{\nbackground-color: color(from #f76a15 srgb r g b / 0.25);\n}\n.bg-pumpkin-500\\/30{\nbackground-color: color(from #f76a15 srgb r g b / 0.3);\n}\n.bg-pumpkin-500\\/35{\nbackground-color: color(from #f76a15 srgb r g b / 0.35);\n}\n.bg-pumpkin-500\\/40{\nbackground-color: color(from #f76a15 srgb r g b / 0.4);\n}\n.bg-pumpkin-500\\/45{\nbackground-color: color(from #f76a15 srgb r g b / 0.45);\n}\n.bg-pumpkin-500\\/5{\nbackground-color: color(from #f76a15 srgb r g b / 0.05);\n}\n.bg-pumpkin-500\\/50{\nbackground-color: color(from #f76a15 srgb r g b / 0.5);\n}\n.bg-pumpkin-500\\/55{\nbackground-color: color(from #f76a15 srgb r g b / 0.55);\n}\n.bg-pumpkin-500\\/60{\nbackground-color: color(from #f76a15 srgb r g b / 0.6);\n}\n.bg-pumpkin-500\\/65{\nbackground-color: color(from #f76a15 srgb r g b / 0.65);\n}\n.bg-pumpkin-500\\/70{\nbackground-color: color(from #f76a15 srgb r g b / 0.7);\n}\n.bg-pumpkin-500\\/75{\nbackground-color: color(from #f76a15 srgb r g b / 0.75);\n}\n.bg-pumpkin-500\\/80{\nbackground-color: color(from #f76a15 srgb r g b / 0.8);\n}\n.bg-pumpkin-500\\/85{\nbackground-color: color(from #f76a15 srgb r g b / 0.85);\n}\n.bg-pumpkin-500\\/90{\nbackground-color: color(from #f76a15 srgb r g b / 0.9);\n}\n.bg-pumpkin-500\\/95{\nbackground-color: color(from #f76a15 srgb r g b / 0.95);\n}\n.bg-pumpkin-600{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-pumpkin-600\\/0{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-pumpkin-600\\/10{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-pumpkin-600\\/100{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-pumpkin-600\\/15{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-pumpkin-600\\/20{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-pumpkin-600\\/25{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-pumpkin-600\\/30{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-pumpkin-600\\/35{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-pumpkin-600\\/40{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-pumpkin-600\\/45{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-pumpkin-600\\/5{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-pumpkin-600\\/50{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-pumpkin-600\\/55{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-pumpkin-600\\/60{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-pumpkin-600\\/65{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-pumpkin-600\\/70{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-pumpkin-600\\/75{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-pumpkin-600\\/80{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-pumpkin-600\\/85{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-pumpkin-600\\/90{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-pumpkin-600\\/95{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-pumpkin-700{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / var(--tw-bg-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-pumpkin-700\\/0{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-pumpkin-700\\/10{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-pumpkin-700\\/100{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-pumpkin-700\\/15{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-pumpkin-700\\/20{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-pumpkin-700\\/25{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-pumpkin-700\\/30{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-pumpkin-700\\/35{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-pumpkin-700\\/40{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-pumpkin-700\\/45{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-pumpkin-700\\/5{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-pumpkin-700\\/50{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-pumpkin-700\\/55{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-pumpkin-700\\/60{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-pumpkin-700\\/65{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-pumpkin-700\\/70{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-pumpkin-700\\/75{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-pumpkin-700\\/80{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-pumpkin-700\\/85{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-pumpkin-700\\/90{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-pumpkin-700\\/95{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-pumpkin-800{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-pumpkin-800\\/0{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-pumpkin-800\\/10{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-pumpkin-800\\/100{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-pumpkin-800\\/15{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-pumpkin-800\\/20{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-pumpkin-800\\/25{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-pumpkin-800\\/30{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-pumpkin-800\\/35{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-pumpkin-800\\/40{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-pumpkin-800\\/45{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-pumpkin-800\\/5{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-pumpkin-800\\/50{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-pumpkin-800\\/55{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-pumpkin-800\\/60{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-pumpkin-800\\/65{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-pumpkin-800\\/70{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-pumpkin-800\\/75{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-pumpkin-800\\/80{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-pumpkin-800\\/85{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-pumpkin-800\\/90{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-pumpkin-800\\/95{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-pumpkin-900{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-pumpkin-900\\/0{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-pumpkin-900\\/10{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-pumpkin-900\\/100{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-pumpkin-900\\/15{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-pumpkin-900\\/20{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-pumpkin-900\\/25{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-pumpkin-900\\/30{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-pumpkin-900\\/35{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-pumpkin-900\\/40{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-pumpkin-900\\/45{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-pumpkin-900\\/5{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-pumpkin-900\\/50{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-pumpkin-900\\/55{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-pumpkin-900\\/60{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-pumpkin-900\\/65{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-pumpkin-900\\/70{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-pumpkin-900\\/75{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-pumpkin-900\\/80{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-pumpkin-900\\/85{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-pumpkin-900\\/90{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-pumpkin-900\\/95{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-pumpkin-950{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / var(--tw-bg-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-pumpkin-950\\/0{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-pumpkin-950\\/10{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-pumpkin-950\\/100{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-pumpkin-950\\/15{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-pumpkin-950\\/20{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-pumpkin-950\\/25{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-pumpkin-950\\/30{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-pumpkin-950\\/35{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-pumpkin-950\\/40{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-pumpkin-950\\/45{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-pumpkin-950\\/5{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-pumpkin-950\\/50{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-pumpkin-950\\/55{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-pumpkin-950\\/60{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-pumpkin-950\\/65{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-pumpkin-950\\/70{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-pumpkin-950\\/75{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-pumpkin-950\\/80{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-pumpkin-950\\/85{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-pumpkin-950\\/90{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-pumpkin-950\\/95{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-pumpkin\\/0{\nbackground-color: rgb(247 106 21 / 0);\n}\n.bg-pumpkin\\/10{\nbackground-color: rgb(247 106 21 / 0.1);\n}\n.bg-pumpkin\\/100{\nbackground-color: rgb(247 106 21 / 1);\n}\n.bg-pumpkin\\/15{\nbackground-color: rgb(247 106 21 / 0.15);\n}\n.bg-pumpkin\\/20{\nbackground-color: rgb(247 106 21 / 0.2);\n}\n.bg-pumpkin\\/25{\nbackground-color: rgb(247 106 21 / 0.25);\n}\n.bg-pumpkin\\/30{\nbackground-color: rgb(247 106 21 / 0.3);\n}\n.bg-pumpkin\\/35{\nbackground-color: rgb(247 106 21 / 0.35);\n}\n.bg-pumpkin\\/40{\nbackground-color: rgb(247 106 21 / 0.4);\n}\n.bg-pumpkin\\/45{\nbackground-color: rgb(247 106 21 / 0.45);\n}\n.bg-pumpkin\\/5{\nbackground-color: rgb(247 106 21 / 0.05);\n}\n.bg-pumpkin\\/50{\nbackground-color: rgb(247 106 21 / 0.5);\n}\n.bg-pumpkin\\/55{\nbackground-color: rgb(247 106 21 / 0.55);\n}\n.bg-pumpkin\\/60{\nbackground-color: rgb(247 106 21 / 0.6);\n}\n.bg-pumpkin\\/65{\nbackground-color: rgb(247 106 21 / 0.65);\n}\n.bg-pumpkin\\/70{\nbackground-color: rgb(247 106 21 / 0.7);\n}\n.bg-pumpkin\\/75{\nbackground-color: rgb(247 106 21 / 0.75);\n}\n.bg-pumpkin\\/80{\nbackground-color: rgb(247 106 21 / 0.8);\n}\n.bg-pumpkin\\/85{\nbackground-color: rgb(247 106 21 / 0.85);\n}\n.bg-pumpkin\\/90{\nbackground-color: rgb(247 106 21 / 0.9);\n}\n.bg-pumpkin\\/95{\nbackground-color: rgb(247 106 21 / 0.95);\n}\n.bg-sand{\n--tw-bg-opacity: 1;\nbackground-color: rgb(155 151 137 / var(--tw-bg-opacity));\n}\n.bg-sand-100{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-sand-100\\/0{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-sand-100\\/10{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-sand-100\\/100{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-sand-100\\/15{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-sand-100\\/20{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-sand-100\\/25{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-sand-100\\/30{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-sand-100\\/35{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-sand-100\\/40{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-sand-100\\/45{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-sand-100\\/5{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-sand-100\\/50{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-sand-100\\/55{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-sand-100\\/60{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-sand-100\\/65{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-sand-100\\/70{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-sand-100\\/75{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-sand-100\\/80{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-sand-100\\/85{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-sand-100\\/90{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-sand-100\\/95{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-sand-200{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-sand-200\\/0{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-sand-200\\/10{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-sand-200\\/100{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-sand-200\\/15{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-sand-200\\/20{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-sand-200\\/25{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-sand-200\\/30{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-sand-200\\/35{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-sand-200\\/40{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-sand-200\\/45{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-sand-200\\/5{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-sand-200\\/50{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-sand-200\\/55{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-sand-200\\/60{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-sand-200\\/65{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-sand-200\\/70{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-sand-200\\/75{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-sand-200\\/80{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-sand-200\\/85{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-sand-200\\/90{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-sand-200\\/95{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-sand-300{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / var(--tw-bg-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-sand-300\\/0{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-sand-300\\/10{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-sand-300\\/100{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-sand-300\\/15{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-sand-300\\/20{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-sand-300\\/25{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-sand-300\\/30{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-sand-300\\/35{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-sand-300\\/40{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-sand-300\\/45{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-sand-300\\/5{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-sand-300\\/50{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-sand-300\\/55{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-sand-300\\/60{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-sand-300\\/65{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-sand-300\\/70{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-sand-300\\/75{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-sand-300\\/80{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-sand-300\\/85{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-sand-300\\/90{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-sand-300\\/95{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-sand-400{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-sand-400\\/0{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-sand-400\\/10{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-sand-400\\/100{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-sand-400\\/15{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-sand-400\\/20{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-sand-400\\/25{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-sand-400\\/30{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-sand-400\\/35{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-sand-400\\/40{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-sand-400\\/45{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-sand-400\\/5{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-sand-400\\/50{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-sand-400\\/55{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-sand-400\\/60{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-sand-400\\/65{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-sand-400\\/70{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-sand-400\\/75{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-sand-400\\/80{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-sand-400\\/85{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-sand-400\\/90{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-sand-400\\/95{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-sand-50{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / var(--tw-bg-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-sand-50\\/0{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-sand-50\\/10{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-sand-50\\/100{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-sand-50\\/15{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-sand-50\\/20{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-sand-50\\/25{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-sand-50\\/30{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-sand-50\\/35{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-sand-50\\/40{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-sand-50\\/45{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-sand-50\\/5{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-sand-50\\/50{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-sand-50\\/55{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-sand-50\\/60{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-sand-50\\/65{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-sand-50\\/70{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-sand-50\\/75{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-sand-50\\/80{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-sand-50\\/85{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-sand-50\\/90{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-sand-50\\/95{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-sand-500{\n--tw-bg-opacity: 1;\nbackground-color: color(from #9b9789 srgb r g b / var(--tw-bg-opacity));\n}\n.bg-sand-500\\/0{\nbackground-color: color(from #9b9789 srgb r g b / 0);\n}\n.bg-sand-500\\/10{\nbackground-color: color(from #9b9789 srgb r g b / 0.1);\n}\n.bg-sand-500\\/100{\nbackground-color: color(from #9b9789 srgb r g b / 1);\n}\n.bg-sand-500\\/15{\nbackground-color: color(from #9b9789 srgb r g b / 0.15);\n}\n.bg-sand-500\\/20{\nbackground-color: color(from #9b9789 srgb r g b / 0.2);\n}\n.bg-sand-500\\/25{\nbackground-color: color(from #9b9789 srgb r g b / 0.25);\n}\n.bg-sand-500\\/30{\nbackground-color: color(from #9b9789 srgb r g b / 0.3);\n}\n.bg-sand-500\\/35{\nbackground-color: color(from #9b9789 srgb r g b / 0.35);\n}\n.bg-sand-500\\/40{\nbackground-color: color(from #9b9789 srgb r g b / 0.4);\n}\n.bg-sand-500\\/45{\nbackground-color: color(from #9b9789 srgb r g b / 0.45);\n}\n.bg-sand-500\\/5{\nbackground-color: color(from #9b9789 srgb r g b / 0.05);\n}\n.bg-sand-500\\/50{\nbackground-color: color(from #9b9789 srgb r g b / 0.5);\n}\n.bg-sand-500\\/55{\nbackground-color: color(from #9b9789 srgb r g b / 0.55);\n}\n.bg-sand-500\\/60{\nbackground-color: color(from #9b9789 srgb r g b / 0.6);\n}\n.bg-sand-500\\/65{\nbackground-color: color(from #9b9789 srgb r g b / 0.65);\n}\n.bg-sand-500\\/70{\nbackground-color: color(from #9b9789 srgb r g b / 0.7);\n}\n.bg-sand-500\\/75{\nbackground-color: color(from #9b9789 srgb r g b / 0.75);\n}\n.bg-sand-500\\/80{\nbackground-color: color(from #9b9789 srgb r g b / 0.8);\n}\n.bg-sand-500\\/85{\nbackground-color: color(from #9b9789 srgb r g b / 0.85);\n}\n.bg-sand-500\\/90{\nbackground-color: color(from #9b9789 srgb r g b / 0.9);\n}\n.bg-sand-500\\/95{\nbackground-color: color(from #9b9789 srgb r g b / 0.95);\n}\n.bg-sand-600{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-sand-600\\/0{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-sand-600\\/10{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-sand-600\\/100{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-sand-600\\/15{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-sand-600\\/20{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-sand-600\\/25{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-sand-600\\/30{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-sand-600\\/35{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-sand-600\\/40{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-sand-600\\/45{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-sand-600\\/5{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-sand-600\\/50{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-sand-600\\/55{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-sand-600\\/60{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-sand-600\\/65{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-sand-600\\/70{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-sand-600\\/75{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-sand-600\\/80{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-sand-600\\/85{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-sand-600\\/90{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-sand-600\\/95{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-sand-700{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / var(--tw-bg-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-sand-700\\/0{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-sand-700\\/10{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-sand-700\\/100{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-sand-700\\/15{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-sand-700\\/20{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-sand-700\\/25{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-sand-700\\/30{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-sand-700\\/35{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-sand-700\\/40{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-sand-700\\/45{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-sand-700\\/5{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-sand-700\\/50{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-sand-700\\/55{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-sand-700\\/60{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-sand-700\\/65{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-sand-700\\/70{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-sand-700\\/75{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-sand-700\\/80{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-sand-700\\/85{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-sand-700\\/90{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-sand-700\\/95{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-sand-800{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-sand-800\\/0{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-sand-800\\/10{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-sand-800\\/100{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-sand-800\\/15{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-sand-800\\/20{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-sand-800\\/25{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-sand-800\\/30{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-sand-800\\/35{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-sand-800\\/40{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-sand-800\\/45{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-sand-800\\/5{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-sand-800\\/50{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-sand-800\\/55{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-sand-800\\/60{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-sand-800\\/65{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-sand-800\\/70{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-sand-800\\/75{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-sand-800\\/80{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-sand-800\\/85{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-sand-800\\/90{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-sand-800\\/95{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-sand-900{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-sand-900\\/0{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-sand-900\\/10{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-sand-900\\/100{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-sand-900\\/15{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-sand-900\\/20{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-sand-900\\/25{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-sand-900\\/30{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-sand-900\\/35{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-sand-900\\/40{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-sand-900\\/45{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-sand-900\\/5{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-sand-900\\/50{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-sand-900\\/55{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-sand-900\\/60{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-sand-900\\/65{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-sand-900\\/70{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-sand-900\\/75{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-sand-900\\/80{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-sand-900\\/85{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-sand-900\\/90{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-sand-900\\/95{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-sand-950{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / var(--tw-bg-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-sand-950\\/0{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-sand-950\\/10{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-sand-950\\/100{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-sand-950\\/15{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-sand-950\\/20{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-sand-950\\/25{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-sand-950\\/30{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-sand-950\\/35{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-sand-950\\/40{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-sand-950\\/45{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-sand-950\\/5{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-sand-950\\/50{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-sand-950\\/55{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-sand-950\\/60{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-sand-950\\/65{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-sand-950\\/70{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-sand-950\\/75{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-sand-950\\/80{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-sand-950\\/85{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-sand-950\\/90{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-sand-950\\/95{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-sand\\/0{\nbackground-color: rgb(155 151 137 / 0);\n}\n.bg-sand\\/10{\nbackground-color: rgb(155 151 137 / 0.1);\n}\n.bg-sand\\/100{\nbackground-color: rgb(155 151 137 / 1);\n}\n.bg-sand\\/15{\nbackground-color: rgb(155 151 137 / 0.15);\n}\n.bg-sand\\/20{\nbackground-color: rgb(155 151 137 / 0.2);\n}\n.bg-sand\\/25{\nbackground-color: rgb(155 151 137 / 0.25);\n}\n.bg-sand\\/30{\nbackground-color: rgb(155 151 137 / 0.3);\n}\n.bg-sand\\/35{\nbackground-color: rgb(155 151 137 / 0.35);\n}\n.bg-sand\\/40{\nbackground-color: rgb(155 151 137 / 0.4);\n}\n.bg-sand\\/45{\nbackground-color: rgb(155 151 137 / 0.45);\n}\n.bg-sand\\/5{\nbackground-color: rgb(155 151 137 / 0.05);\n}\n.bg-sand\\/50{\nbackground-color: rgb(155 151 137 / 0.5);\n}\n.bg-sand\\/55{\nbackground-color: rgb(155 151 137 / 0.55);\n}\n.bg-sand\\/60{\nbackground-color: rgb(155 151 137 / 0.6);\n}\n.bg-sand\\/65{\nbackground-color: rgb(155 151 137 / 0.65);\n}\n.bg-sand\\/70{\nbackground-color: rgb(155 151 137 / 0.7);\n}\n.bg-sand\\/75{\nbackground-color: rgb(155 151 137 / 0.75);\n}\n.bg-sand\\/80{\nbackground-color: rgb(155 151 137 / 0.8);\n}\n.bg-sand\\/85{\nbackground-color: rgb(155 151 137 / 0.85);\n}\n.bg-sand\\/90{\nbackground-color: rgb(155 151 137 / 0.9);\n}\n.bg-sand\\/95{\nbackground-color: rgb(155 151 137 / 0.95);\n}\n.bg-scarlet{\n--tw-bg-opacity: 1;\nbackground-color: rgb(229 72 77 / var(--tw-bg-opacity));\n}\n.bg-scarlet-100{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-scarlet-100\\/0{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-scarlet-100\\/10{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-scarlet-100\\/100{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-scarlet-100\\/15{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-scarlet-100\\/20{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-scarlet-100\\/25{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-scarlet-100\\/30{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-scarlet-100\\/35{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-scarlet-100\\/40{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-scarlet-100\\/45{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-scarlet-100\\/5{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-scarlet-100\\/50{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-scarlet-100\\/55{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-scarlet-100\\/60{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-scarlet-100\\/65{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-scarlet-100\\/70{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-scarlet-100\\/75{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-scarlet-100\\/80{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-scarlet-100\\/85{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-scarlet-100\\/90{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-scarlet-100\\/95{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-scarlet-200{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-scarlet-200\\/0{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-scarlet-200\\/10{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-scarlet-200\\/100{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-scarlet-200\\/15{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-scarlet-200\\/20{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-scarlet-200\\/25{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-scarlet-200\\/30{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-scarlet-200\\/35{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-scarlet-200\\/40{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-scarlet-200\\/45{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-scarlet-200\\/5{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-scarlet-200\\/50{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-scarlet-200\\/55{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-scarlet-200\\/60{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-scarlet-200\\/65{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-scarlet-200\\/70{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-scarlet-200\\/75{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-scarlet-200\\/80{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-scarlet-200\\/85{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-scarlet-200\\/90{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-scarlet-200\\/95{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-scarlet-300{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / var(--tw-bg-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-scarlet-300\\/0{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-scarlet-300\\/10{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-scarlet-300\\/100{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-scarlet-300\\/15{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-scarlet-300\\/20{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-scarlet-300\\/25{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-scarlet-300\\/30{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-scarlet-300\\/35{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-scarlet-300\\/40{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-scarlet-300\\/45{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-scarlet-300\\/5{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-scarlet-300\\/50{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-scarlet-300\\/55{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-scarlet-300\\/60{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-scarlet-300\\/65{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-scarlet-300\\/70{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-scarlet-300\\/75{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-scarlet-300\\/80{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-scarlet-300\\/85{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-scarlet-300\\/90{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-scarlet-300\\/95{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-scarlet-400{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-scarlet-400\\/0{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-scarlet-400\\/10{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-scarlet-400\\/100{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-scarlet-400\\/15{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-scarlet-400\\/20{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-scarlet-400\\/25{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-scarlet-400\\/30{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-scarlet-400\\/35{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-scarlet-400\\/40{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-scarlet-400\\/45{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-scarlet-400\\/5{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-scarlet-400\\/50{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-scarlet-400\\/55{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-scarlet-400\\/60{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-scarlet-400\\/65{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-scarlet-400\\/70{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-scarlet-400\\/75{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-scarlet-400\\/80{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-scarlet-400\\/85{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-scarlet-400\\/90{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-scarlet-400\\/95{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-scarlet-50{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / var(--tw-bg-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-scarlet-50\\/0{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-scarlet-50\\/10{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-scarlet-50\\/100{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-scarlet-50\\/15{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-scarlet-50\\/20{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-scarlet-50\\/25{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-scarlet-50\\/30{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-scarlet-50\\/35{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-scarlet-50\\/40{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-scarlet-50\\/45{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-scarlet-50\\/5{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-scarlet-50\\/50{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-scarlet-50\\/55{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-scarlet-50\\/60{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-scarlet-50\\/65{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-scarlet-50\\/70{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-scarlet-50\\/75{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-scarlet-50\\/80{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-scarlet-50\\/85{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-scarlet-50\\/90{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-scarlet-50\\/95{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-scarlet-500{\n--tw-bg-opacity: 1;\nbackground-color: color(from #e5484d srgb r g b / var(--tw-bg-opacity));\n}\n.bg-scarlet-500\\/0{\nbackground-color: color(from #e5484d srgb r g b / 0);\n}\n.bg-scarlet-500\\/10{\nbackground-color: color(from #e5484d srgb r g b / 0.1);\n}\n.bg-scarlet-500\\/100{\nbackground-color: color(from #e5484d srgb r g b / 1);\n}\n.bg-scarlet-500\\/15{\nbackground-color: color(from #e5484d srgb r g b / 0.15);\n}\n.bg-scarlet-500\\/20{\nbackground-color: color(from #e5484d srgb r g b / 0.2);\n}\n.bg-scarlet-500\\/25{\nbackground-color: color(from #e5484d srgb r g b / 0.25);\n}\n.bg-scarlet-500\\/30{\nbackground-color: color(from #e5484d srgb r g b / 0.3);\n}\n.bg-scarlet-500\\/35{\nbackground-color: color(from #e5484d srgb r g b / 0.35);\n}\n.bg-scarlet-500\\/40{\nbackground-color: color(from #e5484d srgb r g b / 0.4);\n}\n.bg-scarlet-500\\/45{\nbackground-color: color(from #e5484d srgb r g b / 0.45);\n}\n.bg-scarlet-500\\/5{\nbackground-color: color(from #e5484d srgb r g b / 0.05);\n}\n.bg-scarlet-500\\/50{\nbackground-color: color(from #e5484d srgb r g b / 0.5);\n}\n.bg-scarlet-500\\/55{\nbackground-color: color(from #e5484d srgb r g b / 0.55);\n}\n.bg-scarlet-500\\/60{\nbackground-color: color(from #e5484d srgb r g b / 0.6);\n}\n.bg-scarlet-500\\/65{\nbackground-color: color(from #e5484d srgb r g b / 0.65);\n}\n.bg-scarlet-500\\/70{\nbackground-color: color(from #e5484d srgb r g b / 0.7);\n}\n.bg-scarlet-500\\/75{\nbackground-color: color(from #e5484d srgb r g b / 0.75);\n}\n.bg-scarlet-500\\/80{\nbackground-color: color(from #e5484d srgb r g b / 0.8);\n}\n.bg-scarlet-500\\/85{\nbackground-color: color(from #e5484d srgb r g b / 0.85);\n}\n.bg-scarlet-500\\/90{\nbackground-color: color(from #e5484d srgb r g b / 0.9);\n}\n.bg-scarlet-500\\/95{\nbackground-color: color(from #e5484d srgb r g b / 0.95);\n}\n.bg-scarlet-600{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-scarlet-600\\/0{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-scarlet-600\\/10{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-scarlet-600\\/100{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-scarlet-600\\/15{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-scarlet-600\\/20{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-scarlet-600\\/25{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-scarlet-600\\/30{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-scarlet-600\\/35{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-scarlet-600\\/40{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-scarlet-600\\/45{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-scarlet-600\\/5{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-scarlet-600\\/50{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-scarlet-600\\/55{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-scarlet-600\\/60{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-scarlet-600\\/65{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-scarlet-600\\/70{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-scarlet-600\\/75{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-scarlet-600\\/80{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-scarlet-600\\/85{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-scarlet-600\\/90{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-scarlet-600\\/95{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-scarlet-700{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / var(--tw-bg-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-scarlet-700\\/0{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-scarlet-700\\/10{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-scarlet-700\\/100{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-scarlet-700\\/15{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-scarlet-700\\/20{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-scarlet-700\\/25{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-scarlet-700\\/30{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-scarlet-700\\/35{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-scarlet-700\\/40{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-scarlet-700\\/45{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-scarlet-700\\/5{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-scarlet-700\\/50{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-scarlet-700\\/55{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-scarlet-700\\/60{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-scarlet-700\\/65{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-scarlet-700\\/70{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-scarlet-700\\/75{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-scarlet-700\\/80{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-scarlet-700\\/85{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-scarlet-700\\/90{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-scarlet-700\\/95{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-scarlet-800{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-scarlet-800\\/0{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-scarlet-800\\/10{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-scarlet-800\\/100{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-scarlet-800\\/15{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-scarlet-800\\/20{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-scarlet-800\\/25{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-scarlet-800\\/30{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-scarlet-800\\/35{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-scarlet-800\\/40{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-scarlet-800\\/45{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-scarlet-800\\/5{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-scarlet-800\\/50{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-scarlet-800\\/55{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-scarlet-800\\/60{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-scarlet-800\\/65{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-scarlet-800\\/70{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-scarlet-800\\/75{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-scarlet-800\\/80{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-scarlet-800\\/85{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-scarlet-800\\/90{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-scarlet-800\\/95{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-scarlet-900{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-scarlet-900\\/0{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-scarlet-900\\/10{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-scarlet-900\\/100{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-scarlet-900\\/15{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-scarlet-900\\/20{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-scarlet-900\\/25{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-scarlet-900\\/30{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-scarlet-900\\/35{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-scarlet-900\\/40{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-scarlet-900\\/45{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-scarlet-900\\/5{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-scarlet-900\\/50{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-scarlet-900\\/55{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-scarlet-900\\/60{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-scarlet-900\\/65{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-scarlet-900\\/70{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-scarlet-900\\/75{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-scarlet-900\\/80{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-scarlet-900\\/85{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-scarlet-900\\/90{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-scarlet-900\\/95{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-scarlet-950{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / var(--tw-bg-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-scarlet-950\\/0{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-scarlet-950\\/10{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-scarlet-950\\/100{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-scarlet-950\\/15{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-scarlet-950\\/20{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-scarlet-950\\/25{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-scarlet-950\\/30{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-scarlet-950\\/35{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-scarlet-950\\/40{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-scarlet-950\\/45{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-scarlet-950\\/5{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-scarlet-950\\/50{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-scarlet-950\\/55{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-scarlet-950\\/60{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-scarlet-950\\/65{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-scarlet-950\\/70{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-scarlet-950\\/75{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-scarlet-950\\/80{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-scarlet-950\\/85{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-scarlet-950\\/90{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-scarlet-950\\/95{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-scarlet\\/0{\nbackground-color: rgb(229 72 77 / 0);\n}\n.bg-scarlet\\/10{\nbackground-color: rgb(229 72 77 / 0.1);\n}\n.bg-scarlet\\/100{\nbackground-color: rgb(229 72 77 / 1);\n}\n.bg-scarlet\\/15{\nbackground-color: rgb(229 72 77 / 0.15);\n}\n.bg-scarlet\\/20{\nbackground-color: rgb(229 72 77 / 0.2);\n}\n.bg-scarlet\\/25{\nbackground-color: rgb(229 72 77 / 0.25);\n}\n.bg-scarlet\\/30{\nbackground-color: rgb(229 72 77 / 0.3);\n}\n.bg-scarlet\\/35{\nbackground-color: rgb(229 72 77 / 0.35);\n}\n.bg-scarlet\\/40{\nbackground-color: rgb(229 72 77 / 0.4);\n}\n.bg-scarlet\\/45{\nbackground-color: rgb(229 72 77 / 0.45);\n}\n.bg-scarlet\\/5{\nbackground-color: rgb(229 72 77 / 0.05);\n}\n.bg-scarlet\\/50{\nbackground-color: rgb(229 72 77 / 0.5);\n}\n.bg-scarlet\\/55{\nbackground-color: rgb(229 72 77 / 0.55);\n}\n.bg-scarlet\\/60{\nbackground-color: rgb(229 72 77 / 0.6);\n}\n.bg-scarlet\\/65{\nbackground-color: rgb(229 72 77 / 0.65);\n}\n.bg-scarlet\\/70{\nbackground-color: rgb(229 72 77 / 0.7);\n}\n.bg-scarlet\\/75{\nbackground-color: rgb(229 72 77 / 0.75);\n}\n.bg-scarlet\\/80{\nbackground-color: rgb(229 72 77 / 0.8);\n}\n.bg-scarlet\\/85{\nbackground-color: rgb(229 72 77 / 0.85);\n}\n.bg-scarlet\\/90{\nbackground-color: rgb(229 72 77 / 0.9);\n}\n.bg-scarlet\\/95{\nbackground-color: rgb(229 72 77 / 0.95);\n}\n.bg-silver{\n--tw-bg-opacity: 1;\nbackground-color: rgb(152 157 165 / var(--tw-bg-opacity));\n}\n.bg-silver-100{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-silver-100\\/0{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-silver-100\\/10{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-silver-100\\/100{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-silver-100\\/15{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-silver-100\\/20{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-silver-100\\/25{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-silver-100\\/30{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-silver-100\\/35{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-silver-100\\/40{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-silver-100\\/45{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-silver-100\\/5{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-silver-100\\/50{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-silver-100\\/55{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-silver-100\\/60{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-silver-100\\/65{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-silver-100\\/70{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-silver-100\\/75{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-silver-100\\/80{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-silver-100\\/85{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-silver-100\\/90{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-silver-100\\/95{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-silver-200{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-silver-200\\/0{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-silver-200\\/10{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-silver-200\\/100{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-silver-200\\/15{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-silver-200\\/20{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-silver-200\\/25{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-silver-200\\/30{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-silver-200\\/35{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-silver-200\\/40{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-silver-200\\/45{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-silver-200\\/5{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-silver-200\\/50{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-silver-200\\/55{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-silver-200\\/60{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-silver-200\\/65{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-silver-200\\/70{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-silver-200\\/75{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-silver-200\\/80{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-silver-200\\/85{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-silver-200\\/90{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-silver-200\\/95{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-silver-300{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / var(--tw-bg-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-silver-300\\/0{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-silver-300\\/10{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-silver-300\\/100{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-silver-300\\/15{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-silver-300\\/20{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-silver-300\\/25{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-silver-300\\/30{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-silver-300\\/35{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-silver-300\\/40{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-silver-300\\/45{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-silver-300\\/5{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-silver-300\\/50{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-silver-300\\/55{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-silver-300\\/60{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-silver-300\\/65{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-silver-300\\/70{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-silver-300\\/75{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-silver-300\\/80{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-silver-300\\/85{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-silver-300\\/90{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-silver-300\\/95{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-silver-400{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-silver-400\\/0{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-silver-400\\/10{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-silver-400\\/100{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-silver-400\\/15{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-silver-400\\/20{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-silver-400\\/25{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-silver-400\\/30{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-silver-400\\/35{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-silver-400\\/40{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-silver-400\\/45{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-silver-400\\/5{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-silver-400\\/50{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-silver-400\\/55{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-silver-400\\/60{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-silver-400\\/65{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-silver-400\\/70{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-silver-400\\/75{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-silver-400\\/80{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-silver-400\\/85{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-silver-400\\/90{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-silver-400\\/95{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-silver-50{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / var(--tw-bg-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-silver-50\\/0{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-silver-50\\/10{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-silver-50\\/100{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-silver-50\\/15{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-silver-50\\/20{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-silver-50\\/25{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-silver-50\\/30{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-silver-50\\/35{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-silver-50\\/40{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-silver-50\\/45{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-silver-50\\/5{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-silver-50\\/50{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-silver-50\\/55{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-silver-50\\/60{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-silver-50\\/65{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-silver-50\\/70{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-silver-50\\/75{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-silver-50\\/80{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-silver-50\\/85{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-silver-50\\/90{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-silver-50\\/95{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-silver-500{\n--tw-bg-opacity: 1;\nbackground-color: color(from #989da5 srgb r g b / var(--tw-bg-opacity));\n}\n.bg-silver-500\\/0{\nbackground-color: color(from #989da5 srgb r g b / 0);\n}\n.bg-silver-500\\/10{\nbackground-color: color(from #989da5 srgb r g b / 0.1);\n}\n.bg-silver-500\\/100{\nbackground-color: color(from #989da5 srgb r g b / 1);\n}\n.bg-silver-500\\/15{\nbackground-color: color(from #989da5 srgb r g b / 0.15);\n}\n.bg-silver-500\\/20{\nbackground-color: color(from #989da5 srgb r g b / 0.2);\n}\n.bg-silver-500\\/25{\nbackground-color: color(from #989da5 srgb r g b / 0.25);\n}\n.bg-silver-500\\/30{\nbackground-color: color(from #989da5 srgb r g b / 0.3);\n}\n.bg-silver-500\\/35{\nbackground-color: color(from #989da5 srgb r g b / 0.35);\n}\n.bg-silver-500\\/40{\nbackground-color: color(from #989da5 srgb r g b / 0.4);\n}\n.bg-silver-500\\/45{\nbackground-color: color(from #989da5 srgb r g b / 0.45);\n}\n.bg-silver-500\\/5{\nbackground-color: color(from #989da5 srgb r g b / 0.05);\n}\n.bg-silver-500\\/50{\nbackground-color: color(from #989da5 srgb r g b / 0.5);\n}\n.bg-silver-500\\/55{\nbackground-color: color(from #989da5 srgb r g b / 0.55);\n}\n.bg-silver-500\\/60{\nbackground-color: color(from #989da5 srgb r g b / 0.6);\n}\n.bg-silver-500\\/65{\nbackground-color: color(from #989da5 srgb r g b / 0.65);\n}\n.bg-silver-500\\/70{\nbackground-color: color(from #989da5 srgb r g b / 0.7);\n}\n.bg-silver-500\\/75{\nbackground-color: color(from #989da5 srgb r g b / 0.75);\n}\n.bg-silver-500\\/80{\nbackground-color: color(from #989da5 srgb r g b / 0.8);\n}\n.bg-silver-500\\/85{\nbackground-color: color(from #989da5 srgb r g b / 0.85);\n}\n.bg-silver-500\\/90{\nbackground-color: color(from #989da5 srgb r g b / 0.9);\n}\n.bg-silver-500\\/95{\nbackground-color: color(from #989da5 srgb r g b / 0.95);\n}\n.bg-silver-600{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-silver-600\\/0{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-silver-600\\/10{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-silver-600\\/100{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-silver-600\\/15{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-silver-600\\/20{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-silver-600\\/25{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-silver-600\\/30{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-silver-600\\/35{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-silver-600\\/40{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-silver-600\\/45{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-silver-600\\/5{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-silver-600\\/50{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-silver-600\\/55{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-silver-600\\/60{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-silver-600\\/65{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-silver-600\\/70{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-silver-600\\/75{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-silver-600\\/80{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-silver-600\\/85{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-silver-600\\/90{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-silver-600\\/95{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-silver-700{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / var(--tw-bg-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-silver-700\\/0{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-silver-700\\/10{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-silver-700\\/100{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-silver-700\\/15{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-silver-700\\/20{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-silver-700\\/25{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-silver-700\\/30{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-silver-700\\/35{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-silver-700\\/40{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-silver-700\\/45{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-silver-700\\/5{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-silver-700\\/50{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-silver-700\\/55{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-silver-700\\/60{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-silver-700\\/65{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-silver-700\\/70{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-silver-700\\/75{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-silver-700\\/80{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-silver-700\\/85{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-silver-700\\/90{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-silver-700\\/95{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-silver-800{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-silver-800\\/0{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-silver-800\\/10{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-silver-800\\/100{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-silver-800\\/15{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-silver-800\\/20{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-silver-800\\/25{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-silver-800\\/30{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-silver-800\\/35{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-silver-800\\/40{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-silver-800\\/45{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-silver-800\\/5{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-silver-800\\/50{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-silver-800\\/55{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-silver-800\\/60{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-silver-800\\/65{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-silver-800\\/70{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-silver-800\\/75{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-silver-800\\/80{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-silver-800\\/85{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-silver-800\\/90{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-silver-800\\/95{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-silver-900{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-silver-900\\/0{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-silver-900\\/10{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-silver-900\\/100{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-silver-900\\/15{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-silver-900\\/20{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-silver-900\\/25{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-silver-900\\/30{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-silver-900\\/35{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-silver-900\\/40{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-silver-900\\/45{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-silver-900\\/5{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-silver-900\\/50{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-silver-900\\/55{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-silver-900\\/60{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-silver-900\\/65{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-silver-900\\/70{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-silver-900\\/75{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-silver-900\\/80{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-silver-900\\/85{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-silver-900\\/90{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-silver-900\\/95{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-silver-950{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / var(--tw-bg-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-silver-950\\/0{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-silver-950\\/10{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-silver-950\\/100{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-silver-950\\/15{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-silver-950\\/20{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-silver-950\\/25{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-silver-950\\/30{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-silver-950\\/35{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-silver-950\\/40{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-silver-950\\/45{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-silver-950\\/5{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-silver-950\\/50{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-silver-950\\/55{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-silver-950\\/60{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-silver-950\\/65{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-silver-950\\/70{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-silver-950\\/75{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-silver-950\\/80{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-silver-950\\/85{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-silver-950\\/90{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-silver-950\\/95{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-silver\\/0{\nbackground-color: rgb(152 157 165 / 0);\n}\n.bg-silver\\/10{\nbackground-color: rgb(152 157 165 / 0.1);\n}\n.bg-silver\\/100{\nbackground-color: rgb(152 157 165 / 1);\n}\n.bg-silver\\/15{\nbackground-color: rgb(152 157 165 / 0.15);\n}\n.bg-silver\\/20{\nbackground-color: rgb(152 157 165 / 0.2);\n}\n.bg-silver\\/25{\nbackground-color: rgb(152 157 165 / 0.25);\n}\n.bg-silver\\/30{\nbackground-color: rgb(152 157 165 / 0.3);\n}\n.bg-silver\\/35{\nbackground-color: rgb(152 157 165 / 0.35);\n}\n.bg-silver\\/40{\nbackground-color: rgb(152 157 165 / 0.4);\n}\n.bg-silver\\/45{\nbackground-color: rgb(152 157 165 / 0.45);\n}\n.bg-silver\\/5{\nbackground-color: rgb(152 157 165 / 0.05);\n}\n.bg-silver\\/50{\nbackground-color: rgb(152 157 165 / 0.5);\n}\n.bg-silver\\/55{\nbackground-color: rgb(152 157 165 / 0.55);\n}\n.bg-silver\\/60{\nbackground-color: rgb(152 157 165 / 0.6);\n}\n.bg-silver\\/65{\nbackground-color: rgb(152 157 165 / 0.65);\n}\n.bg-silver\\/70{\nbackground-color: rgb(152 157 165 / 0.7);\n}\n.bg-silver\\/75{\nbackground-color: rgb(152 157 165 / 0.75);\n}\n.bg-silver\\/80{\nbackground-color: rgb(152 157 165 / 0.8);\n}\n.bg-silver\\/85{\nbackground-color: rgb(152 157 165 / 0.85);\n}\n.bg-silver\\/90{\nbackground-color: rgb(152 157 165 / 0.9);\n}\n.bg-silver\\/95{\nbackground-color: rgb(152 157 165 / 0.95);\n}\n.bg-steel{\n--tw-bg-opacity: 1;\nbackground-color: rgb(124 153 175 / var(--tw-bg-opacity));\n}\n.bg-steel-100{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-steel-100\\/0{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-steel-100\\/10{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-steel-100\\/100{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-steel-100\\/15{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-steel-100\\/20{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-steel-100\\/25{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-steel-100\\/30{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-steel-100\\/35{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-steel-100\\/40{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-steel-100\\/45{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-steel-100\\/5{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-steel-100\\/50{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-steel-100\\/55{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-steel-100\\/60{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-steel-100\\/65{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-steel-100\\/70{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-steel-100\\/75{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-steel-100\\/80{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-steel-100\\/85{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-steel-100\\/90{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-steel-100\\/95{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-steel-200{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-steel-200\\/0{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-steel-200\\/10{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-steel-200\\/100{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-steel-200\\/15{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-steel-200\\/20{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-steel-200\\/25{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-steel-200\\/30{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-steel-200\\/35{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-steel-200\\/40{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-steel-200\\/45{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-steel-200\\/5{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-steel-200\\/50{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-steel-200\\/55{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-steel-200\\/60{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-steel-200\\/65{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-steel-200\\/70{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-steel-200\\/75{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-steel-200\\/80{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-steel-200\\/85{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-steel-200\\/90{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-steel-200\\/95{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-steel-300{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / var(--tw-bg-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-steel-300\\/0{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-steel-300\\/10{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-steel-300\\/100{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-steel-300\\/15{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-steel-300\\/20{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-steel-300\\/25{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-steel-300\\/30{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-steel-300\\/35{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-steel-300\\/40{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-steel-300\\/45{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-steel-300\\/5{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-steel-300\\/50{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-steel-300\\/55{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-steel-300\\/60{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-steel-300\\/65{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-steel-300\\/70{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-steel-300\\/75{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-steel-300\\/80{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-steel-300\\/85{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-steel-300\\/90{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-steel-300\\/95{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-steel-400{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-steel-400\\/0{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-steel-400\\/10{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-steel-400\\/100{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-steel-400\\/15{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-steel-400\\/20{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-steel-400\\/25{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-steel-400\\/30{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-steel-400\\/35{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-steel-400\\/40{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-steel-400\\/45{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-steel-400\\/5{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-steel-400\\/50{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-steel-400\\/55{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-steel-400\\/60{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-steel-400\\/65{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-steel-400\\/70{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-steel-400\\/75{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-steel-400\\/80{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-steel-400\\/85{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-steel-400\\/90{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-steel-400\\/95{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-steel-50{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / var(--tw-bg-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-steel-50\\/0{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-steel-50\\/10{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-steel-50\\/100{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-steel-50\\/15{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-steel-50\\/20{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-steel-50\\/25{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-steel-50\\/30{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-steel-50\\/35{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-steel-50\\/40{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-steel-50\\/45{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-steel-50\\/5{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-steel-50\\/50{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-steel-50\\/55{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-steel-50\\/60{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-steel-50\\/65{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-steel-50\\/70{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-steel-50\\/75{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-steel-50\\/80{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-steel-50\\/85{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-steel-50\\/90{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-steel-50\\/95{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-steel-500{\n--tw-bg-opacity: 1;\nbackground-color: color(from #7c99af srgb r g b / var(--tw-bg-opacity));\n}\n.bg-steel-500\\/0{\nbackground-color: color(from #7c99af srgb r g b / 0);\n}\n.bg-steel-500\\/10{\nbackground-color: color(from #7c99af srgb r g b / 0.1);\n}\n.bg-steel-500\\/100{\nbackground-color: color(from #7c99af srgb r g b / 1);\n}\n.bg-steel-500\\/15{\nbackground-color: color(from #7c99af srgb r g b / 0.15);\n}\n.bg-steel-500\\/20{\nbackground-color: color(from #7c99af srgb r g b / 0.2);\n}\n.bg-steel-500\\/25{\nbackground-color: color(from #7c99af srgb r g b / 0.25);\n}\n.bg-steel-500\\/30{\nbackground-color: color(from #7c99af srgb r g b / 0.3);\n}\n.bg-steel-500\\/35{\nbackground-color: color(from #7c99af srgb r g b / 0.35);\n}\n.bg-steel-500\\/40{\nbackground-color: color(from #7c99af srgb r g b / 0.4);\n}\n.bg-steel-500\\/45{\nbackground-color: color(from #7c99af srgb r g b / 0.45);\n}\n.bg-steel-500\\/5{\nbackground-color: color(from #7c99af srgb r g b / 0.05);\n}\n.bg-steel-500\\/50{\nbackground-color: color(from #7c99af srgb r g b / 0.5);\n}\n.bg-steel-500\\/55{\nbackground-color: color(from #7c99af srgb r g b / 0.55);\n}\n.bg-steel-500\\/60{\nbackground-color: color(from #7c99af srgb r g b / 0.6);\n}\n.bg-steel-500\\/65{\nbackground-color: color(from #7c99af srgb r g b / 0.65);\n}\n.bg-steel-500\\/70{\nbackground-color: color(from #7c99af srgb r g b / 0.7);\n}\n.bg-steel-500\\/75{\nbackground-color: color(from #7c99af srgb r g b / 0.75);\n}\n.bg-steel-500\\/80{\nbackground-color: color(from #7c99af srgb r g b / 0.8);\n}\n.bg-steel-500\\/85{\nbackground-color: color(from #7c99af srgb r g b / 0.85);\n}\n.bg-steel-500\\/90{\nbackground-color: color(from #7c99af srgb r g b / 0.9);\n}\n.bg-steel-500\\/95{\nbackground-color: color(from #7c99af srgb r g b / 0.95);\n}\n.bg-steel-600{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-steel-600\\/0{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-steel-600\\/10{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-steel-600\\/100{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-steel-600\\/15{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-steel-600\\/20{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-steel-600\\/25{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-steel-600\\/30{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-steel-600\\/35{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-steel-600\\/40{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-steel-600\\/45{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-steel-600\\/5{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-steel-600\\/50{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-steel-600\\/55{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-steel-600\\/60{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-steel-600\\/65{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-steel-600\\/70{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-steel-600\\/75{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-steel-600\\/80{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-steel-600\\/85{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-steel-600\\/90{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-steel-600\\/95{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-steel-700{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / var(--tw-bg-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-steel-700\\/0{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-steel-700\\/10{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-steel-700\\/100{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-steel-700\\/15{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-steel-700\\/20{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-steel-700\\/25{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-steel-700\\/30{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-steel-700\\/35{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-steel-700\\/40{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-steel-700\\/45{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-steel-700\\/5{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-steel-700\\/50{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-steel-700\\/55{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-steel-700\\/60{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-steel-700\\/65{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-steel-700\\/70{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-steel-700\\/75{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-steel-700\\/80{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-steel-700\\/85{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-steel-700\\/90{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-steel-700\\/95{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-steel-800{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-steel-800\\/0{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-steel-800\\/10{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-steel-800\\/100{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-steel-800\\/15{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-steel-800\\/20{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-steel-800\\/25{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-steel-800\\/30{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-steel-800\\/35{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-steel-800\\/40{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-steel-800\\/45{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-steel-800\\/5{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-steel-800\\/50{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-steel-800\\/55{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-steel-800\\/60{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-steel-800\\/65{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-steel-800\\/70{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-steel-800\\/75{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-steel-800\\/80{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-steel-800\\/85{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-steel-800\\/90{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-steel-800\\/95{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-steel-900{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-steel-900\\/0{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-steel-900\\/10{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-steel-900\\/100{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-steel-900\\/15{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-steel-900\\/20{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-steel-900\\/25{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-steel-900\\/30{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-steel-900\\/35{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-steel-900\\/40{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-steel-900\\/45{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-steel-900\\/5{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-steel-900\\/50{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-steel-900\\/55{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-steel-900\\/60{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-steel-900\\/65{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-steel-900\\/70{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-steel-900\\/75{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-steel-900\\/80{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-steel-900\\/85{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-steel-900\\/90{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-steel-900\\/95{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-steel-950{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / var(--tw-bg-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-steel-950\\/0{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-steel-950\\/10{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-steel-950\\/100{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-steel-950\\/15{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-steel-950\\/20{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-steel-950\\/25{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-steel-950\\/30{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-steel-950\\/35{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-steel-950\\/40{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-steel-950\\/45{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-steel-950\\/5{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-steel-950\\/50{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-steel-950\\/55{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-steel-950\\/60{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-steel-950\\/65{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-steel-950\\/70{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-steel-950\\/75{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-steel-950\\/80{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-steel-950\\/85{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-steel-950\\/90{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-steel-950\\/95{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-steel\\/0{\nbackground-color: rgb(124 153 175 / 0);\n}\n.bg-steel\\/10{\nbackground-color: rgb(124 153 175 / 0.1);\n}\n.bg-steel\\/100{\nbackground-color: rgb(124 153 175 / 1);\n}\n.bg-steel\\/15{\nbackground-color: rgb(124 153 175 / 0.15);\n}\n.bg-steel\\/20{\nbackground-color: rgb(124 153 175 / 0.2);\n}\n.bg-steel\\/25{\nbackground-color: rgb(124 153 175 / 0.25);\n}\n.bg-steel\\/30{\nbackground-color: rgb(124 153 175 / 0.3);\n}\n.bg-steel\\/35{\nbackground-color: rgb(124 153 175 / 0.35);\n}\n.bg-steel\\/40{\nbackground-color: rgb(124 153 175 / 0.4);\n}\n.bg-steel\\/45{\nbackground-color: rgb(124 153 175 / 0.45);\n}\n.bg-steel\\/5{\nbackground-color: rgb(124 153 175 / 0.05);\n}\n.bg-steel\\/50{\nbackground-color: rgb(124 153 175 / 0.5);\n}\n.bg-steel\\/55{\nbackground-color: rgb(124 153 175 / 0.55);\n}\n.bg-steel\\/60{\nbackground-color: rgb(124 153 175 / 0.6);\n}\n.bg-steel\\/65{\nbackground-color: rgb(124 153 175 / 0.65);\n}\n.bg-steel\\/70{\nbackground-color: rgb(124 153 175 / 0.7);\n}\n.bg-steel\\/75{\nbackground-color: rgb(124 153 175 / 0.75);\n}\n.bg-steel\\/80{\nbackground-color: rgb(124 153 175 / 0.8);\n}\n.bg-steel\\/85{\nbackground-color: rgb(124 153 175 / 0.85);\n}\n.bg-steel\\/90{\nbackground-color: rgb(124 153 175 / 0.9);\n}\n.bg-steel\\/95{\nbackground-color: rgb(124 153 175 / 0.95);\n}\n.bg-success{\n--tw-bg-opacity: 1;\nbackground-color: rgb(68 188 105 / var(--tw-bg-opacity));\n}\n.bg-success-100{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-success-100\\/0{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-success-100\\/10{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-success-100\\/100{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-success-100\\/15{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-success-100\\/20{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-success-100\\/25{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-success-100\\/30{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-success-100\\/35{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-success-100\\/40{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-success-100\\/45{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-success-100\\/5{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-success-100\\/50{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-success-100\\/55{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-success-100\\/60{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-success-100\\/65{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-success-100\\/70{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-success-100\\/75{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-success-100\\/80{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-success-100\\/85{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-success-100\\/90{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-success-100\\/95{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-success-200{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-success-200\\/0{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-success-200\\/10{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-success-200\\/100{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-success-200\\/15{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-success-200\\/20{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-success-200\\/25{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-success-200\\/30{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-success-200\\/35{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-success-200\\/40{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-success-200\\/45{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-success-200\\/5{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-success-200\\/50{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-success-200\\/55{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-success-200\\/60{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-success-200\\/65{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-success-200\\/70{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-success-200\\/75{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-success-200\\/80{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-success-200\\/85{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-success-200\\/90{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-success-200\\/95{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-success-300{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / var(--tw-bg-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-success-300\\/0{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-success-300\\/10{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-success-300\\/100{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-success-300\\/15{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-success-300\\/20{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-success-300\\/25{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-success-300\\/30{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-success-300\\/35{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-success-300\\/40{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-success-300\\/45{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-success-300\\/5{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-success-300\\/50{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-success-300\\/55{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-success-300\\/60{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-success-300\\/65{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-success-300\\/70{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-success-300\\/75{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-success-300\\/80{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-success-300\\/85{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-success-300\\/90{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-success-300\\/95{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-success-400{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-success-400\\/0{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-success-400\\/10{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-success-400\\/100{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-success-400\\/15{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-success-400\\/20{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-success-400\\/25{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-success-400\\/30{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-success-400\\/35{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-success-400\\/40{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-success-400\\/45{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-success-400\\/5{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-success-400\\/50{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-success-400\\/55{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-success-400\\/60{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-success-400\\/65{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-success-400\\/70{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-success-400\\/75{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-success-400\\/80{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-success-400\\/85{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-success-400\\/90{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-success-400\\/95{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-success-50{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / var(--tw-bg-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-success-50\\/0{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-success-50\\/10{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-success-50\\/100{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-success-50\\/15{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-success-50\\/20{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-success-50\\/25{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-success-50\\/30{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-success-50\\/35{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-success-50\\/40{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-success-50\\/45{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-success-50\\/5{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-success-50\\/50{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-success-50\\/55{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-success-50\\/60{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-success-50\\/65{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-success-50\\/70{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-success-50\\/75{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-success-50\\/80{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-success-50\\/85{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-success-50\\/90{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-success-50\\/95{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-success-500{\n--tw-bg-opacity: 1;\nbackground-color: color(from #44bc69 srgb r g b / var(--tw-bg-opacity));\n}\n.bg-success-500\\/0{\nbackground-color: color(from #44bc69 srgb r g b / 0);\n}\n.bg-success-500\\/10{\nbackground-color: color(from #44bc69 srgb r g b / 0.1);\n}\n.bg-success-500\\/100{\nbackground-color: color(from #44bc69 srgb r g b / 1);\n}\n.bg-success-500\\/15{\nbackground-color: color(from #44bc69 srgb r g b / 0.15);\n}\n.bg-success-500\\/20{\nbackground-color: color(from #44bc69 srgb r g b / 0.2);\n}\n.bg-success-500\\/25{\nbackground-color: color(from #44bc69 srgb r g b / 0.25);\n}\n.bg-success-500\\/30{\nbackground-color: color(from #44bc69 srgb r g b / 0.3);\n}\n.bg-success-500\\/35{\nbackground-color: color(from #44bc69 srgb r g b / 0.35);\n}\n.bg-success-500\\/40{\nbackground-color: color(from #44bc69 srgb r g b / 0.4);\n}\n.bg-success-500\\/45{\nbackground-color: color(from #44bc69 srgb r g b / 0.45);\n}\n.bg-success-500\\/5{\nbackground-color: color(from #44bc69 srgb r g b / 0.05);\n}\n.bg-success-500\\/50{\nbackground-color: color(from #44bc69 srgb r g b / 0.5);\n}\n.bg-success-500\\/55{\nbackground-color: color(from #44bc69 srgb r g b / 0.55);\n}\n.bg-success-500\\/60{\nbackground-color: color(from #44bc69 srgb r g b / 0.6);\n}\n.bg-success-500\\/65{\nbackground-color: color(from #44bc69 srgb r g b / 0.65);\n}\n.bg-success-500\\/70{\nbackground-color: color(from #44bc69 srgb r g b / 0.7);\n}\n.bg-success-500\\/75{\nbackground-color: color(from #44bc69 srgb r g b / 0.75);\n}\n.bg-success-500\\/80{\nbackground-color: color(from #44bc69 srgb r g b / 0.8);\n}\n.bg-success-500\\/85{\nbackground-color: color(from #44bc69 srgb r g b / 0.85);\n}\n.bg-success-500\\/90{\nbackground-color: color(from #44bc69 srgb r g b / 0.9);\n}\n.bg-success-500\\/95{\nbackground-color: color(from #44bc69 srgb r g b / 0.95);\n}\n.bg-success-600{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-success-600\\/0{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-success-600\\/10{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-success-600\\/100{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-success-600\\/15{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-success-600\\/20{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-success-600\\/25{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-success-600\\/30{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-success-600\\/35{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-success-600\\/40{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-success-600\\/45{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-success-600\\/5{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-success-600\\/50{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-success-600\\/55{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-success-600\\/60{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-success-600\\/65{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-success-600\\/70{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-success-600\\/75{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-success-600\\/80{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-success-600\\/85{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-success-600\\/90{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-success-600\\/95{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-success-700{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / var(--tw-bg-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-success-700\\/0{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-success-700\\/10{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-success-700\\/100{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-success-700\\/15{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-success-700\\/20{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-success-700\\/25{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-success-700\\/30{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-success-700\\/35{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-success-700\\/40{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-success-700\\/45{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-success-700\\/5{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-success-700\\/50{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-success-700\\/55{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-success-700\\/60{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-success-700\\/65{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-success-700\\/70{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-success-700\\/75{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-success-700\\/80{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-success-700\\/85{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-success-700\\/90{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-success-700\\/95{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-success-800{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-success-800\\/0{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-success-800\\/10{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-success-800\\/100{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-success-800\\/15{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-success-800\\/20{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-success-800\\/25{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-success-800\\/30{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-success-800\\/35{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-success-800\\/40{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-success-800\\/45{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-success-800\\/5{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-success-800\\/50{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-success-800\\/55{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-success-800\\/60{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-success-800\\/65{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-success-800\\/70{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-success-800\\/75{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-success-800\\/80{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-success-800\\/85{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-success-800\\/90{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-success-800\\/95{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-success-900{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-success-900\\/0{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-success-900\\/10{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-success-900\\/100{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-success-900\\/15{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-success-900\\/20{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-success-900\\/25{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-success-900\\/30{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-success-900\\/35{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-success-900\\/40{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-success-900\\/45{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-success-900\\/5{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-success-900\\/50{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-success-900\\/55{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-success-900\\/60{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-success-900\\/65{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-success-900\\/70{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-success-900\\/75{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-success-900\\/80{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-success-900\\/85{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-success-900\\/90{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-success-900\\/95{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-success-950{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / var(--tw-bg-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-success-950\\/0{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-success-950\\/10{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-success-950\\/100{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-success-950\\/15{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-success-950\\/20{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-success-950\\/25{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-success-950\\/30{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-success-950\\/35{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-success-950\\/40{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-success-950\\/45{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-success-950\\/5{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-success-950\\/50{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-success-950\\/55{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-success-950\\/60{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-success-950\\/65{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-success-950\\/70{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-success-950\\/75{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-success-950\\/80{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-success-950\\/85{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-success-950\\/90{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-success-950\\/95{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-success\\/0{\nbackground-color: rgb(68 188 105 / 0);\n}\n.bg-success\\/10{\nbackground-color: rgb(68 188 105 / 0.1);\n}\n.bg-success\\/100{\nbackground-color: rgb(68 188 105 / 1);\n}\n.bg-success\\/15{\nbackground-color: rgb(68 188 105 / 0.15);\n}\n.bg-success\\/20{\nbackground-color: rgb(68 188 105 / 0.2);\n}\n.bg-success\\/25{\nbackground-color: rgb(68 188 105 / 0.25);\n}\n.bg-success\\/30{\nbackground-color: rgb(68 188 105 / 0.3);\n}\n.bg-success\\/35{\nbackground-color: rgb(68 188 105 / 0.35);\n}\n.bg-success\\/40{\nbackground-color: rgb(68 188 105 / 0.4);\n}\n.bg-success\\/45{\nbackground-color: rgb(68 188 105 / 0.45);\n}\n.bg-success\\/5{\nbackground-color: rgb(68 188 105 / 0.05);\n}\n.bg-success\\/50{\nbackground-color: rgb(68 188 105 / 0.5);\n}\n.bg-success\\/55{\nbackground-color: rgb(68 188 105 / 0.55);\n}\n.bg-success\\/60{\nbackground-color: rgb(68 188 105 / 0.6);\n}\n.bg-success\\/65{\nbackground-color: rgb(68 188 105 / 0.65);\n}\n.bg-success\\/70{\nbackground-color: rgb(68 188 105 / 0.7);\n}\n.bg-success\\/75{\nbackground-color: rgb(68 188 105 / 0.75);\n}\n.bg-success\\/80{\nbackground-color: rgb(68 188 105 / 0.8);\n}\n.bg-success\\/85{\nbackground-color: rgb(68 188 105 / 0.85);\n}\n.bg-success\\/90{\nbackground-color: rgb(68 188 105 / 0.9);\n}\n.bg-success\\/95{\nbackground-color: rgb(68 188 105 / 0.95);\n}\n.bg-tint{\nbackground-color: var(--tint);\n}\n.bg-tint-100{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-tint-100\\/0{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-tint-100\\/10{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-tint-100\\/100{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-tint-100\\/15{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-tint-100\\/20{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-tint-100\\/25{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-tint-100\\/30{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-tint-100\\/35{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-tint-100\\/40{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-tint-100\\/45{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-tint-100\\/5{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-tint-100\\/50{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-tint-100\\/55{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-tint-100\\/60{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-tint-100\\/65{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-tint-100\\/70{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-tint-100\\/75{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-tint-100\\/80{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-tint-100\\/85{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-tint-100\\/90{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-tint-100\\/95{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-tint-200{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-tint-200\\/0{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-tint-200\\/10{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-tint-200\\/100{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-tint-200\\/15{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-tint-200\\/20{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-tint-200\\/25{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-tint-200\\/30{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-tint-200\\/35{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-tint-200\\/40{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-tint-200\\/45{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-tint-200\\/5{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-tint-200\\/50{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-tint-200\\/55{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-tint-200\\/60{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-tint-200\\/65{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-tint-200\\/70{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-tint-200\\/75{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-tint-200\\/80{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-tint-200\\/85{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-tint-200\\/90{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-tint-200\\/95{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-tint-300{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-bg-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-tint-300\\/0{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-tint-300\\/10{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-tint-300\\/100{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-tint-300\\/15{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-tint-300\\/20{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-tint-300\\/25{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-tint-300\\/30{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-tint-300\\/35{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-tint-300\\/40{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-tint-300\\/45{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-tint-300\\/5{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-tint-300\\/50{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-tint-300\\/55{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-tint-300\\/60{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-tint-300\\/65{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-tint-300\\/70{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-tint-300\\/75{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-tint-300\\/80{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-tint-300\\/85{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-tint-300\\/90{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-tint-300\\/95{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-tint-400{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-tint-400\\/0{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-tint-400\\/10{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-tint-400\\/100{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-tint-400\\/15{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-tint-400\\/20{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-tint-400\\/25{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-tint-400\\/30{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-tint-400\\/35{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-tint-400\\/40{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-tint-400\\/45{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-tint-400\\/5{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-tint-400\\/50{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-tint-400\\/55{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-tint-400\\/60{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-tint-400\\/65{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-tint-400\\/70{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-tint-400\\/75{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-tint-400\\/80{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-tint-400\\/85{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-tint-400\\/90{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-tint-400\\/95{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-tint-50{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-bg-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-tint-50\\/0{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-tint-50\\/10{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-tint-50\\/100{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-tint-50\\/15{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-tint-50\\/20{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-tint-50\\/25{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-tint-50\\/30{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-tint-50\\/35{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-tint-50\\/40{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-tint-50\\/45{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-tint-50\\/5{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-tint-50\\/50{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-tint-50\\/55{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-tint-50\\/60{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-tint-50\\/65{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-tint-50\\/70{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-tint-50\\/75{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-tint-50\\/80{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-tint-50\\/85{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-tint-50\\/90{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-tint-50\\/95{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-tint-500{\n--tw-bg-opacity: 1;\nbackground-color: color(from var(--tint) srgb r g b / var(--tw-bg-opacity));\n}\n.bg-tint-500\\/0{\nbackground-color: color(from var(--tint) srgb r g b / 0);\n}\n.bg-tint-500\\/10{\nbackground-color: color(from var(--tint) srgb r g b / 0.1);\n}\n.bg-tint-500\\/100{\nbackground-color: color(from var(--tint) srgb r g b / 1);\n}\n.bg-tint-500\\/15{\nbackground-color: color(from var(--tint) srgb r g b / 0.15);\n}\n.bg-tint-500\\/20{\nbackground-color: color(from var(--tint) srgb r g b / 0.2);\n}\n.bg-tint-500\\/25{\nbackground-color: color(from var(--tint) srgb r g b / 0.25);\n}\n.bg-tint-500\\/30{\nbackground-color: color(from var(--tint) srgb r g b / 0.3);\n}\n.bg-tint-500\\/35{\nbackground-color: color(from var(--tint) srgb r g b / 0.35);\n}\n.bg-tint-500\\/40{\nbackground-color: color(from var(--tint) srgb r g b / 0.4);\n}\n.bg-tint-500\\/45{\nbackground-color: color(from var(--tint) srgb r g b / 0.45);\n}\n.bg-tint-500\\/5{\nbackground-color: color(from var(--tint) srgb r g b / 0.05);\n}\n.bg-tint-500\\/50{\nbackground-color: color(from var(--tint) srgb r g b / 0.5);\n}\n.bg-tint-500\\/55{\nbackground-color: color(from var(--tint) srgb r g b / 0.55);\n}\n.bg-tint-500\\/60{\nbackground-color: color(from var(--tint) srgb r g b / 0.6);\n}\n.bg-tint-500\\/65{\nbackground-color: color(from var(--tint) srgb r g b / 0.65);\n}\n.bg-tint-500\\/70{\nbackground-color: color(from var(--tint) srgb r g b / 0.7);\n}\n.bg-tint-500\\/75{\nbackground-color: color(from var(--tint) srgb r g b / 0.75);\n}\n.bg-tint-500\\/80{\nbackground-color: color(from var(--tint) srgb r g b / 0.8);\n}\n.bg-tint-500\\/85{\nbackground-color: color(from var(--tint) srgb r g b / 0.85);\n}\n.bg-tint-500\\/90{\nbackground-color: color(from var(--tint) srgb r g b / 0.9);\n}\n.bg-tint-500\\/95{\nbackground-color: color(from var(--tint) srgb r g b / 0.95);\n}\n.bg-tint-600{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-tint-600\\/0{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-tint-600\\/10{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-tint-600\\/100{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-tint-600\\/15{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-tint-600\\/20{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-tint-600\\/25{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-tint-600\\/30{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-tint-600\\/35{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-tint-600\\/40{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-tint-600\\/45{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-tint-600\\/5{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-tint-600\\/50{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-tint-600\\/55{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-tint-600\\/60{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-tint-600\\/65{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-tint-600\\/70{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-tint-600\\/75{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-tint-600\\/80{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-tint-600\\/85{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-tint-600\\/90{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-tint-600\\/95{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-tint-700{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-bg-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-tint-700\\/0{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-tint-700\\/10{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-tint-700\\/100{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-tint-700\\/15{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-tint-700\\/20{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-tint-700\\/25{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-tint-700\\/30{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-tint-700\\/35{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-tint-700\\/40{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-tint-700\\/45{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-tint-700\\/5{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-tint-700\\/50{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-tint-700\\/55{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-tint-700\\/60{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-tint-700\\/65{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-tint-700\\/70{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-tint-700\\/75{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-tint-700\\/80{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-tint-700\\/85{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-tint-700\\/90{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-tint-700\\/95{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-tint-800{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-tint-800\\/0{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-tint-800\\/10{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-tint-800\\/100{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-tint-800\\/15{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-tint-800\\/20{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-tint-800\\/25{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-tint-800\\/30{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-tint-800\\/35{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-tint-800\\/40{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-tint-800\\/45{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-tint-800\\/5{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-tint-800\\/50{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-tint-800\\/55{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-tint-800\\/60{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-tint-800\\/65{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-tint-800\\/70{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-tint-800\\/75{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-tint-800\\/80{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-tint-800\\/85{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-tint-800\\/90{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-tint-800\\/95{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-tint-900{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-tint-900\\/0{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-tint-900\\/10{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-tint-900\\/100{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-tint-900\\/15{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-tint-900\\/20{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-tint-900\\/25{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-tint-900\\/30{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-tint-900\\/35{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-tint-900\\/40{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-tint-900\\/45{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-tint-900\\/5{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-tint-900\\/50{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-tint-900\\/55{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-tint-900\\/60{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-tint-900\\/65{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-tint-900\\/70{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-tint-900\\/75{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-tint-900\\/80{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-tint-900\\/85{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-tint-900\\/90{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-tint-900\\/95{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-tint-950{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-bg-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-tint-950\\/0{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-tint-950\\/10{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-tint-950\\/100{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-tint-950\\/15{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-tint-950\\/20{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-tint-950\\/25{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-tint-950\\/30{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-tint-950\\/35{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-tint-950\\/40{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-tint-950\\/45{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-tint-950\\/5{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-tint-950\\/50{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-tint-950\\/55{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-tint-950\\/60{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-tint-950\\/65{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-tint-950\\/70{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-tint-950\\/75{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-tint-950\\/80{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-tint-950\\/85{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-tint-950\\/90{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-tint-950\\/95{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-transparent{\nbackground-color: transparent;\n}\n.bg-warning{\n--tw-bg-opacity: 1;\nbackground-color: rgb(237 170 0 / var(--tw-bg-opacity));\n}\n.bg-warning-100{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-warning-100\\/0{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-warning-100\\/10{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-warning-100\\/100{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-warning-100\\/15{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-warning-100\\/20{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-warning-100\\/25{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-warning-100\\/30{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-warning-100\\/35{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-warning-100\\/40{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-warning-100\\/45{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-warning-100\\/5{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-warning-100\\/50{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-warning-100\\/55{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-warning-100\\/60{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-warning-100\\/65{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-warning-100\\/70{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-warning-100\\/75{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-warning-100\\/80{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-warning-100\\/85{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-warning-100\\/90{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-warning-100\\/95{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-warning-200{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-warning-200\\/0{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-warning-200\\/10{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-warning-200\\/100{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-warning-200\\/15{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-warning-200\\/20{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-warning-200\\/25{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-warning-200\\/30{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-warning-200\\/35{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-warning-200\\/40{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-warning-200\\/45{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-warning-200\\/5{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-warning-200\\/50{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-warning-200\\/55{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-warning-200\\/60{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-warning-200\\/65{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-warning-200\\/70{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-warning-200\\/75{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-warning-200\\/80{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-warning-200\\/85{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-warning-200\\/90{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-warning-200\\/95{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-warning-300{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / var(--tw-bg-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-warning-300\\/0{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-warning-300\\/10{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-warning-300\\/100{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-warning-300\\/15{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-warning-300\\/20{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-warning-300\\/25{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-warning-300\\/30{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-warning-300\\/35{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-warning-300\\/40{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-warning-300\\/45{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-warning-300\\/5{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-warning-300\\/50{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-warning-300\\/55{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-warning-300\\/60{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-warning-300\\/65{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-warning-300\\/70{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-warning-300\\/75{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-warning-300\\/80{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-warning-300\\/85{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-warning-300\\/90{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-warning-300\\/95{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-warning-400{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-warning-400\\/0{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-warning-400\\/10{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-warning-400\\/100{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-warning-400\\/15{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-warning-400\\/20{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-warning-400\\/25{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-warning-400\\/30{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-warning-400\\/35{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-warning-400\\/40{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-warning-400\\/45{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-warning-400\\/5{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-warning-400\\/50{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-warning-400\\/55{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-warning-400\\/60{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-warning-400\\/65{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-warning-400\\/70{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-warning-400\\/75{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-warning-400\\/80{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-warning-400\\/85{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-warning-400\\/90{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-warning-400\\/95{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-warning-50{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / var(--tw-bg-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-warning-50\\/0{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-warning-50\\/10{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-warning-50\\/100{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-warning-50\\/15{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-warning-50\\/20{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-warning-50\\/25{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-warning-50\\/30{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-warning-50\\/35{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-warning-50\\/40{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-warning-50\\/45{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-warning-50\\/5{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-warning-50\\/50{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-warning-50\\/55{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-warning-50\\/60{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-warning-50\\/65{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-warning-50\\/70{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-warning-50\\/75{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-warning-50\\/80{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-warning-50\\/85{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-warning-50\\/90{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-warning-50\\/95{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-warning-500{\n--tw-bg-opacity: 1;\nbackground-color: color(from #edaa00 srgb r g b / var(--tw-bg-opacity));\n}\n.bg-warning-500\\/0{\nbackground-color: color(from #edaa00 srgb r g b / 0);\n}\n.bg-warning-500\\/10{\nbackground-color: color(from #edaa00 srgb r g b / 0.1);\n}\n.bg-warning-500\\/100{\nbackground-color: color(from #edaa00 srgb r g b / 1);\n}\n.bg-warning-500\\/15{\nbackground-color: color(from #edaa00 srgb r g b / 0.15);\n}\n.bg-warning-500\\/20{\nbackground-color: color(from #edaa00 srgb r g b / 0.2);\n}\n.bg-warning-500\\/25{\nbackground-color: color(from #edaa00 srgb r g b / 0.25);\n}\n.bg-warning-500\\/30{\nbackground-color: color(from #edaa00 srgb r g b / 0.3);\n}\n.bg-warning-500\\/35{\nbackground-color: color(from #edaa00 srgb r g b / 0.35);\n}\n.bg-warning-500\\/40{\nbackground-color: color(from #edaa00 srgb r g b / 0.4);\n}\n.bg-warning-500\\/45{\nbackground-color: color(from #edaa00 srgb r g b / 0.45);\n}\n.bg-warning-500\\/5{\nbackground-color: color(from #edaa00 srgb r g b / 0.05);\n}\n.bg-warning-500\\/50{\nbackground-color: color(from #edaa00 srgb r g b / 0.5);\n}\n.bg-warning-500\\/55{\nbackground-color: color(from #edaa00 srgb r g b / 0.55);\n}\n.bg-warning-500\\/60{\nbackground-color: color(from #edaa00 srgb r g b / 0.6);\n}\n.bg-warning-500\\/65{\nbackground-color: color(from #edaa00 srgb r g b / 0.65);\n}\n.bg-warning-500\\/70{\nbackground-color: color(from #edaa00 srgb r g b / 0.7);\n}\n.bg-warning-500\\/75{\nbackground-color: color(from #edaa00 srgb r g b / 0.75);\n}\n.bg-warning-500\\/80{\nbackground-color: color(from #edaa00 srgb r g b / 0.8);\n}\n.bg-warning-500\\/85{\nbackground-color: color(from #edaa00 srgb r g b / 0.85);\n}\n.bg-warning-500\\/90{\nbackground-color: color(from #edaa00 srgb r g b / 0.9);\n}\n.bg-warning-500\\/95{\nbackground-color: color(from #edaa00 srgb r g b / 0.95);\n}\n.bg-warning-600{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-warning-600\\/0{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-warning-600\\/10{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-warning-600\\/100{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-warning-600\\/15{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-warning-600\\/20{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-warning-600\\/25{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-warning-600\\/30{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-warning-600\\/35{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-warning-600\\/40{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-warning-600\\/45{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-warning-600\\/5{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-warning-600\\/50{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-warning-600\\/55{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-warning-600\\/60{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-warning-600\\/65{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-warning-600\\/70{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-warning-600\\/75{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-warning-600\\/80{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-warning-600\\/85{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-warning-600\\/90{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-warning-600\\/95{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-warning-700{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / var(--tw-bg-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-warning-700\\/0{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-warning-700\\/10{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-warning-700\\/100{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-warning-700\\/15{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-warning-700\\/20{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-warning-700\\/25{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-warning-700\\/30{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-warning-700\\/35{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-warning-700\\/40{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-warning-700\\/45{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-warning-700\\/5{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-warning-700\\/50{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-warning-700\\/55{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-warning-700\\/60{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-warning-700\\/65{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-warning-700\\/70{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-warning-700\\/75{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-warning-700\\/80{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-warning-700\\/85{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-warning-700\\/90{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-warning-700\\/95{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-warning-800{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-warning-800\\/0{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-warning-800\\/10{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-warning-800\\/100{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-warning-800\\/15{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-warning-800\\/20{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-warning-800\\/25{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-warning-800\\/30{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-warning-800\\/35{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-warning-800\\/40{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-warning-800\\/45{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-warning-800\\/5{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-warning-800\\/50{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-warning-800\\/55{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-warning-800\\/60{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-warning-800\\/65{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-warning-800\\/70{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-warning-800\\/75{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-warning-800\\/80{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-warning-800\\/85{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-warning-800\\/90{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-warning-800\\/95{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-warning-900{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-warning-900\\/0{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-warning-900\\/10{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-warning-900\\/100{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-warning-900\\/15{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-warning-900\\/20{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-warning-900\\/25{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-warning-900\\/30{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-warning-900\\/35{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-warning-900\\/40{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-warning-900\\/45{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-warning-900\\/5{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-warning-900\\/50{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-warning-900\\/55{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-warning-900\\/60{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-warning-900\\/65{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-warning-900\\/70{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-warning-900\\/75{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-warning-900\\/80{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-warning-900\\/85{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-warning-900\\/90{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-warning-900\\/95{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-warning-950{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / var(--tw-bg-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-warning-950\\/0{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-warning-950\\/10{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-warning-950\\/100{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-warning-950\\/15{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-warning-950\\/20{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-warning-950\\/25{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-warning-950\\/30{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-warning-950\\/35{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-warning-950\\/40{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-warning-950\\/45{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-warning-950\\/5{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-warning-950\\/50{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-warning-950\\/55{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-warning-950\\/60{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-warning-950\\/65{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-warning-950\\/70{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-warning-950\\/75{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-warning-950\\/80{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-warning-950\\/85{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-warning-950\\/90{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-warning-950\\/95{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-warning\\/0{\nbackground-color: rgb(237 170 0 / 0);\n}\n.bg-warning\\/10{\nbackground-color: rgb(237 170 0 / 0.1);\n}\n.bg-warning\\/100{\nbackground-color: rgb(237 170 0 / 1);\n}\n.bg-warning\\/15{\nbackground-color: rgb(237 170 0 / 0.15);\n}\n.bg-warning\\/20{\nbackground-color: rgb(237 170 0 / 0.2);\n}\n.bg-warning\\/25{\nbackground-color: rgb(237 170 0 / 0.25);\n}\n.bg-warning\\/30{\nbackground-color: rgb(237 170 0 / 0.3);\n}\n.bg-warning\\/35{\nbackground-color: rgb(237 170 0 / 0.35);\n}\n.bg-warning\\/40{\nbackground-color: rgb(237 170 0 / 0.4);\n}\n.bg-warning\\/45{\nbackground-color: rgb(237 170 0 / 0.45);\n}\n.bg-warning\\/5{\nbackground-color: rgb(237 170 0 / 0.05);\n}\n.bg-warning\\/50{\nbackground-color: rgb(237 170 0 / 0.5);\n}\n.bg-warning\\/55{\nbackground-color: rgb(237 170 0 / 0.55);\n}\n.bg-warning\\/60{\nbackground-color: rgb(237 170 0 / 0.6);\n}\n.bg-warning\\/65{\nbackground-color: rgb(237 170 0 / 0.65);\n}\n.bg-warning\\/70{\nbackground-color: rgb(237 170 0 / 0.7);\n}\n.bg-warning\\/75{\nbackground-color: rgb(237 170 0 / 0.75);\n}\n.bg-warning\\/80{\nbackground-color: rgb(237 170 0 / 0.8);\n}\n.bg-warning\\/85{\nbackground-color: rgb(237 170 0 / 0.85);\n}\n.bg-warning\\/90{\nbackground-color: rgb(237 170 0 / 0.9);\n}\n.bg-warning\\/95{\nbackground-color: rgb(237 170 0 / 0.95);\n}\n.bg-white{\n--tw-bg-opacity: 1;\nbackground-color: rgb(254 253 252 / var(--tw-bg-opacity));\n}\n.bg-white\\/0{\nbackground-color: rgb(254 253 252 / 0);\n}\n.bg-white\\/10{\nbackground-color: rgb(254 253 252 / 0.1);\n}\n.bg-white\\/100{\nbackground-color: rgb(254 253 252 / 1);\n}\n.bg-white\\/15{\nbackground-color: rgb(254 253 252 / 0.15);\n}\n.bg-white\\/20{\nbackground-color: rgb(254 253 252 / 0.2);\n}\n.bg-white\\/25{\nbackground-color: rgb(254 253 252 / 0.25);\n}\n.bg-white\\/30{\nbackground-color: rgb(254 253 252 / 0.3);\n}\n.bg-white\\/35{\nbackground-color: rgb(254 253 252 / 0.35);\n}\n.bg-white\\/40{\nbackground-color: rgb(254 253 252 / 0.4);\n}\n.bg-white\\/45{\nbackground-color: rgb(254 253 252 / 0.45);\n}\n.bg-white\\/5{\nbackground-color: rgb(254 253 252 / 0.05);\n}\n.bg-white\\/50{\nbackground-color: rgb(254 253 252 / 0.5);\n}\n.bg-white\\/55{\nbackground-color: rgb(254 253 252 / 0.55);\n}\n.bg-white\\/60{\nbackground-color: rgb(254 253 252 / 0.6);\n}\n.bg-white\\/65{\nbackground-color: rgb(254 253 252 / 0.65);\n}\n.bg-white\\/70{\nbackground-color: rgb(254 253 252 / 0.7);\n}\n.bg-white\\/75{\nbackground-color: rgb(254 253 252 / 0.75);\n}\n.bg-white\\/80{\nbackground-color: rgb(254 253 252 / 0.8);\n}\n.bg-white\\/85{\nbackground-color: rgb(254 253 252 / 0.85);\n}\n.bg-white\\/90{\nbackground-color: rgb(254 253 252 / 0.9);\n}\n.bg-white\\/95{\nbackground-color: rgb(254 253 252 / 0.95);\n}\n.bg-wood{\n--tw-bg-opacity: 1;\nbackground-color: rgb(173 127 88 / var(--tw-bg-opacity));\n}\n.bg-wood-100{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-wood-100\\/0{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-wood-100\\/10{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-wood-100\\/100{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-wood-100\\/15{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-wood-100\\/20{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-wood-100\\/25{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-wood-100\\/30{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-wood-100\\/35{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-wood-100\\/40{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-wood-100\\/45{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-wood-100\\/5{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-wood-100\\/50{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-wood-100\\/55{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-wood-100\\/60{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-wood-100\\/65{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-wood-100\\/70{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-wood-100\\/75{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-wood-100\\/80{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-wood-100\\/85{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-wood-100\\/90{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-wood-100\\/95{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-wood-200{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-wood-200\\/0{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-wood-200\\/10{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-wood-200\\/100{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-wood-200\\/15{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-wood-200\\/20{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-wood-200\\/25{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-wood-200\\/30{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-wood-200\\/35{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-wood-200\\/40{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-wood-200\\/45{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-wood-200\\/5{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-wood-200\\/50{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-wood-200\\/55{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-wood-200\\/60{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-wood-200\\/65{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-wood-200\\/70{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-wood-200\\/75{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-wood-200\\/80{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-wood-200\\/85{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-wood-200\\/90{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-wood-200\\/95{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-wood-300{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / var(--tw-bg-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-wood-300\\/0{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-wood-300\\/10{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-wood-300\\/100{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-wood-300\\/15{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-wood-300\\/20{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-wood-300\\/25{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-wood-300\\/30{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-wood-300\\/35{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-wood-300\\/40{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-wood-300\\/45{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-wood-300\\/5{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-wood-300\\/50{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-wood-300\\/55{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-wood-300\\/60{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-wood-300\\/65{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-wood-300\\/70{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-wood-300\\/75{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-wood-300\\/80{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-wood-300\\/85{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-wood-300\\/90{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-wood-300\\/95{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-wood-400{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-wood-400\\/0{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-wood-400\\/10{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-wood-400\\/100{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-wood-400\\/15{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-wood-400\\/20{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-wood-400\\/25{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-wood-400\\/30{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-wood-400\\/35{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-wood-400\\/40{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-wood-400\\/45{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-wood-400\\/5{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-wood-400\\/50{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-wood-400\\/55{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-wood-400\\/60{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-wood-400\\/65{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-wood-400\\/70{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-wood-400\\/75{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-wood-400\\/80{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-wood-400\\/85{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-wood-400\\/90{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-wood-400\\/95{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-wood-50{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / var(--tw-bg-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-wood-50\\/0{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-wood-50\\/10{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-wood-50\\/100{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-wood-50\\/15{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-wood-50\\/20{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-wood-50\\/25{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-wood-50\\/30{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-wood-50\\/35{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-wood-50\\/40{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-wood-50\\/45{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-wood-50\\/5{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-wood-50\\/50{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-wood-50\\/55{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-wood-50\\/60{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-wood-50\\/65{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-wood-50\\/70{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-wood-50\\/75{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-wood-50\\/80{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-wood-50\\/85{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-wood-50\\/90{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-wood-50\\/95{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-wood-500{\n--tw-bg-opacity: 1;\nbackground-color: color(from #ad7f58 srgb r g b / var(--tw-bg-opacity));\n}\n.bg-wood-500\\/0{\nbackground-color: color(from #ad7f58 srgb r g b / 0);\n}\n.bg-wood-500\\/10{\nbackground-color: color(from #ad7f58 srgb r g b / 0.1);\n}\n.bg-wood-500\\/100{\nbackground-color: color(from #ad7f58 srgb r g b / 1);\n}\n.bg-wood-500\\/15{\nbackground-color: color(from #ad7f58 srgb r g b / 0.15);\n}\n.bg-wood-500\\/20{\nbackground-color: color(from #ad7f58 srgb r g b / 0.2);\n}\n.bg-wood-500\\/25{\nbackground-color: color(from #ad7f58 srgb r g b / 0.25);\n}\n.bg-wood-500\\/30{\nbackground-color: color(from #ad7f58 srgb r g b / 0.3);\n}\n.bg-wood-500\\/35{\nbackground-color: color(from #ad7f58 srgb r g b / 0.35);\n}\n.bg-wood-500\\/40{\nbackground-color: color(from #ad7f58 srgb r g b / 0.4);\n}\n.bg-wood-500\\/45{\nbackground-color: color(from #ad7f58 srgb r g b / 0.45);\n}\n.bg-wood-500\\/5{\nbackground-color: color(from #ad7f58 srgb r g b / 0.05);\n}\n.bg-wood-500\\/50{\nbackground-color: color(from #ad7f58 srgb r g b / 0.5);\n}\n.bg-wood-500\\/55{\nbackground-color: color(from #ad7f58 srgb r g b / 0.55);\n}\n.bg-wood-500\\/60{\nbackground-color: color(from #ad7f58 srgb r g b / 0.6);\n}\n.bg-wood-500\\/65{\nbackground-color: color(from #ad7f58 srgb r g b / 0.65);\n}\n.bg-wood-500\\/70{\nbackground-color: color(from #ad7f58 srgb r g b / 0.7);\n}\n.bg-wood-500\\/75{\nbackground-color: color(from #ad7f58 srgb r g b / 0.75);\n}\n.bg-wood-500\\/80{\nbackground-color: color(from #ad7f58 srgb r g b / 0.8);\n}\n.bg-wood-500\\/85{\nbackground-color: color(from #ad7f58 srgb r g b / 0.85);\n}\n.bg-wood-500\\/90{\nbackground-color: color(from #ad7f58 srgb r g b / 0.9);\n}\n.bg-wood-500\\/95{\nbackground-color: color(from #ad7f58 srgb r g b / 0.95);\n}\n.bg-wood-600{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-wood-600\\/0{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-wood-600\\/10{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-wood-600\\/100{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-wood-600\\/15{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-wood-600\\/20{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-wood-600\\/25{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-wood-600\\/30{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-wood-600\\/35{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-wood-600\\/40{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-wood-600\\/45{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-wood-600\\/5{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-wood-600\\/50{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-wood-600\\/55{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-wood-600\\/60{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-wood-600\\/65{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-wood-600\\/70{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-wood-600\\/75{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-wood-600\\/80{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-wood-600\\/85{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-wood-600\\/90{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-wood-600\\/95{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-wood-700{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / var(--tw-bg-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-wood-700\\/0{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-wood-700\\/10{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-wood-700\\/100{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-wood-700\\/15{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-wood-700\\/20{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-wood-700\\/25{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-wood-700\\/30{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-wood-700\\/35{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-wood-700\\/40{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-wood-700\\/45{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-wood-700\\/5{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-wood-700\\/50{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-wood-700\\/55{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-wood-700\\/60{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-wood-700\\/65{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-wood-700\\/70{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-wood-700\\/75{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-wood-700\\/80{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-wood-700\\/85{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-wood-700\\/90{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-wood-700\\/95{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-wood-800{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-wood-800\\/0{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-wood-800\\/10{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-wood-800\\/100{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-wood-800\\/15{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-wood-800\\/20{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-wood-800\\/25{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-wood-800\\/30{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-wood-800\\/35{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-wood-800\\/40{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-wood-800\\/45{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-wood-800\\/5{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-wood-800\\/50{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-wood-800\\/55{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-wood-800\\/60{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-wood-800\\/65{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-wood-800\\/70{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-wood-800\\/75{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-wood-800\\/80{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-wood-800\\/85{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-wood-800\\/90{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-wood-800\\/95{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-wood-900{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-wood-900\\/0{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-wood-900\\/10{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-wood-900\\/100{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-wood-900\\/15{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-wood-900\\/20{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-wood-900\\/25{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-wood-900\\/30{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-wood-900\\/35{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-wood-900\\/40{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-wood-900\\/45{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-wood-900\\/5{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-wood-900\\/50{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-wood-900\\/55{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-wood-900\\/60{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-wood-900\\/65{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-wood-900\\/70{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-wood-900\\/75{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-wood-900\\/80{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-wood-900\\/85{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-wood-900\\/90{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-wood-900\\/95{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-wood-950{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / var(--tw-bg-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-wood-950\\/0{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-wood-950\\/10{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-wood-950\\/100{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-wood-950\\/15{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-wood-950\\/20{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-wood-950\\/25{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-wood-950\\/30{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-wood-950\\/35{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-wood-950\\/40{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-wood-950\\/45{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-wood-950\\/5{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-wood-950\\/50{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-wood-950\\/55{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-wood-950\\/60{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-wood-950\\/65{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-wood-950\\/70{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-wood-950\\/75{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-wood-950\\/80{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-wood-950\\/85{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-wood-950\\/90{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-wood-950\\/95{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-wood\\/0{\nbackground-color: rgb(173 127 88 / 0);\n}\n.bg-wood\\/10{\nbackground-color: rgb(173 127 88 / 0.1);\n}\n.bg-wood\\/100{\nbackground-color: rgb(173 127 88 / 1);\n}\n.bg-wood\\/15{\nbackground-color: rgb(173 127 88 / 0.15);\n}\n.bg-wood\\/20{\nbackground-color: rgb(173 127 88 / 0.2);\n}\n.bg-wood\\/25{\nbackground-color: rgb(173 127 88 / 0.25);\n}\n.bg-wood\\/30{\nbackground-color: rgb(173 127 88 / 0.3);\n}\n.bg-wood\\/35{\nbackground-color: rgb(173 127 88 / 0.35);\n}\n.bg-wood\\/40{\nbackground-color: rgb(173 127 88 / 0.4);\n}\n.bg-wood\\/45{\nbackground-color: rgb(173 127 88 / 0.45);\n}\n.bg-wood\\/5{\nbackground-color: rgb(173 127 88 / 0.05);\n}\n.bg-wood\\/50{\nbackground-color: rgb(173 127 88 / 0.5);\n}\n.bg-wood\\/55{\nbackground-color: rgb(173 127 88 / 0.55);\n}\n.bg-wood\\/60{\nbackground-color: rgb(173 127 88 / 0.6);\n}\n.bg-wood\\/65{\nbackground-color: rgb(173 127 88 / 0.65);\n}\n.bg-wood\\/70{\nbackground-color: rgb(173 127 88 / 0.7);\n}\n.bg-wood\\/75{\nbackground-color: rgb(173 127 88 / 0.75);\n}\n.bg-wood\\/80{\nbackground-color: rgb(173 127 88 / 0.8);\n}\n.bg-wood\\/85{\nbackground-color: rgb(173 127 88 / 0.85);\n}\n.bg-wood\\/90{\nbackground-color: rgb(173 127 88 / 0.9);\n}\n.bg-wood\\/95{\nbackground-color: rgb(173 127 88 / 0.95);\n}\n.bg-opacity-20{\n--tw-bg-opacity: 0.2;\n}\n.bg-opacity-50{\n--tw-bg-opacity: 0.5;\n}\n.from-danger-500{\n--tw-gradient-from: color(from #f24c3d srgb r g b / 1) var(--tw-gradient-from-position);\n--tw-gradient-to: color(from #f24c3d srgb r g b / 0) var(--tw-gradient-to-position);\n--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);\n}\n.from-0\\%{\n--tw-gradient-from-position: 0%;\n}\n.via-marigold-500{\n--tw-gradient-to: color(from #ffc100 srgb r g b / 0) var(--tw-gradient-to-position);\n--tw-gradient-stops: var(--tw-gradient-from), color(from #ffc100 srgb r g b / 1) var(--tw-gradient-via-position), var(--tw-gradient-to);\n}\n.to-jade-500{\n--tw-gradient-to: color(from #29a383 srgb r g b / 1) var(--tw-gradient-to-position);\n}\n.to-100\\%{\n--tw-gradient-to-position: 100%;\n}\n.\\!fill{\nfill: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 99%, color(from var(--tint) srgb r g b / 1)) !important;\n}\n.fill{\nfill: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 99%, color(from var(--tint) srgb r g b / 1));\n}\n.fill-base{\nfill: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 99%, color(from var(--tint) srgb r g b / 1));\n}\n.fill-tint-200{\nfill: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.stroke{\nstroke: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 65%, color(from var(--tint) srgb r g b / 1));\n}\n.stroke-dimmed{\nstroke: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 72%, color(from var(--tint) srgb r g b / 1));\n}\n.stroke-muted{\nstroke: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 80%, color(from var(--tint) srgb r g b / 1));\n}\n.object-contain{\n-o-object-fit: contain;\n object-fit: contain;\n}\n.object-cover{\n-o-object-fit: cover;\n object-fit: cover;\n}\n.object-fill{\n-o-object-fit: fill;\n object-fit: fill;\n}\n.p-0{\npadding: 0px;\n}\n.p-0\\.5{\npadding: 0.125rem;\n}\n.p-1{\npadding: 0.25rem;\n}\n.p-2{\npadding: 0.5rem;\n}\n.p-4{\npadding: 1rem;\n}\n.p-6{\npadding: 1.5rem;\n}\n.p-\\[0\\.25em\\]{\npadding: 0.25em;\n}\n.p-\\[2px\\]{\npadding: 2px;\n}\n.p-\\[8px\\]{\npadding: 8px;\n}\n.p-px{\npadding: 1px;\n}\n.px-0{\npadding-left: 0px;\npadding-right: 0px;\n}\n.px-0\\.5{\npadding-left: 0.125rem;\npadding-right: 0.125rem;\n}\n.px-1{\npadding-left: 0.25rem;\npadding-right: 0.25rem;\n}\n.px-2{\npadding-left: 0.5rem;\npadding-right: 0.5rem;\n}\n.px-2\\.5{\npadding-left: 0.625rem;\npadding-right: 0.625rem;\n}\n.px-4{\npadding-left: 1rem;\npadding-right: 1rem;\n}\n.px-6{\npadding-left: 1.5rem;\npadding-right: 1.5rem;\n}\n.px-8{\npadding-left: 2rem;\npadding-right: 2rem;\n}\n.px-\\[2cm\\]{\npadding-left: 2cm;\npadding-right: 2cm;\n}\n.px-\\[2px\\]{\npadding-left: 2px;\npadding-right: 2px;\n}\n.py-0{\npadding-top: 0px;\npadding-bottom: 0px;\n}\n.py-0\\.5{\npadding-top: 0.125rem;\npadding-bottom: 0.125rem;\n}\n.py-1{\npadding-top: 0.25rem;\npadding-bottom: 0.25rem;\n}\n.py-1\\.5{\npadding-top: 0.375rem;\npadding-bottom: 0.375rem;\n}\n.py-2{\npadding-top: 0.5rem;\npadding-bottom: 0.5rem;\n}\n.py-3{\npadding-top: 0.75rem;\npadding-bottom: 0.75rem;\n}\n.py-4{\npadding-top: 1rem;\npadding-bottom: 1rem;\n}\n.py-\\[0\\.375em\\]{\npadding-top: 0.375em;\npadding-bottom: 0.375em;\n}\n.py-\\[1cm\\]{\npadding-top: 1cm;\npadding-bottom: 1cm;\n}\n.py-px{\npadding-top: 1px;\npadding-bottom: 1px;\n}\n.pb-4{\npadding-bottom: 1rem;\n}\n.pe-1{\npadding-inline-end: 0.25rem;\n}\n.pe-2{\npadding-inline-end: 0.5rem;\n}\n.pe-4{\npadding-inline-end: 1rem;\n}\n.ps-1{\npadding-inline-start: 0.25rem;\n}\n.ps-2{\npadding-inline-start: 0.5rem;\n}\n.pt-2{\npadding-top: 0.5rem;\n}\n.pt-4{\npadding-top: 1rem;\n}\n.pt-6{\npadding-top: 1.5rem;\n}\n.text-center{\ntext-align: center;\n}\n.text-start{\ntext-align: start;\n}\n.text-end{\ntext-align: end;\n}\n.align-baseline{\nvertical-align: baseline;\n}\n.align-top{\nvertical-align: top;\n}\n.align-middle{\nvertical-align: middle;\n}\n.align-bottom{\nvertical-align: bottom;\n}\n.align-text-top{\nvertical-align: text-top;\n}\n.font-mono{\nfont-family: Noto Sans Mono, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace;\n}\n.font-sans{\nfont-family: Avenir Next, Avenir, Noto Sans, Roboto, Helvetica Neue, Segoe UI, Arial, sans-serif, BlinkMacSystemFont, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;\n}\n.font-serif{\nfont-family: Noto Serif, Georgia, Cambria, Times New Roman, Times, serif;\n}\n.text-2xl{\nfont-size: 1.75rem;\nline-height: 2.25rem;\n}\n.text-4xl{\nfont-size: 2.25rem;\nline-height: 2.5rem;\n}\n.text-5xl{\nfont-size: 3rem;\nline-height: 1;\n}\n.text-\\[0\\.5rem\\]{\nfont-size: 0.5rem;\n}\n.text-\\[0\\.625em\\]{\nfont-size: 0.625em;\n}\n.text-\\[0\\.625rem\\]{\nfont-size: 0.625rem;\n}\n.text-\\[0\\.75em\\]{\nfont-size: 0.75em;\n}\n.text-\\[10px\\]{\nfont-size: 10px;\n}\n.text-\\[1em\\]{\nfont-size: 1em;\n}\n.text-lg{\nfont-size: 1.25rem;\nline-height: 1.75rem;\n}\n.text-md{\nfont-size: 1.125rem;\nline-height: 1.5rem;\n}\n.text-reset{\nfont-size: 1rem;\nline-height: 1.5rem;\n}\n.text-sm{\nfont-size: 0.875rem;\nline-height: 1.25rem;\n}\n.text-xl{\nfont-size: 1.5rem;\nline-height: 2rem;\n}\n.text-xs{\nfont-size: 0.75rem;\nline-height: 1rem;\n}\n.font-bold{\nfont-weight: 700;\n}\n.font-light{\nfont-weight: 300;\n}\n.font-medium{\nfont-weight: 500;\n}\n.font-semibold{\nfont-weight: 600;\n}\n.uppercase{\ntext-transform: uppercase;\n}\n.lowercase{\ntext-transform: lowercase;\n}\n.capitalize{\ntext-transform: capitalize;\n}\n.italic{\nfont-style: italic;\n}\n.not-italic{\nfont-style: normal;\n}\n.tabular-nums{\n--tw-numeric-spacing: tabular-nums;\nfont-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction);\n}\n.leading-4{\nline-height: 1rem;\n}\n.leading-5{\nline-height: 1.25rem;\n}\n.leading-\\[0\\]{\nline-height: 0;\n}\n.leading-none{\nline-height: 1;\n}\n.leading-normal{\nline-height: 1.5;\n}\n.\\!text{\n--tw-text-opacity: 1 !important;\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)) 95%, color(from var(--tint) srgb r g b / var(--tw-text-opacity))) !important;\n}\n.text{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)) 95%, color(from var(--tint) srgb r g b / var(--tw-text-opacity)));\n}\n.text-\\[var\\(--fabric-bg\\)\\]{\ncolor: var(--fabric-bg);\n}\n.text-accent{\ncolor: var(--accent);\n}\n.text-accent-100{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / var(--tw-text-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-accent-100\\/0{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-accent-100\\/10{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-accent-100\\/100{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-accent-100\\/15{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-accent-100\\/20{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-accent-100\\/25{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-accent-100\\/30{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-accent-100\\/35{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-accent-100\\/40{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-accent-100\\/45{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-accent-100\\/5{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-accent-100\\/50{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-accent-100\\/55{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-accent-100\\/60{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-accent-100\\/65{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-accent-100\\/70{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-accent-100\\/75{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-accent-100\\/80{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-accent-100\\/85{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-accent-100\\/90{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-accent-100\\/95{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-accent-200{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / var(--tw-text-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-accent-200\\/0{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-accent-200\\/10{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-accent-200\\/100{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-accent-200\\/15{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-accent-200\\/20{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-accent-200\\/25{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-accent-200\\/30{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-accent-200\\/35{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-accent-200\\/40{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-accent-200\\/45{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-accent-200\\/5{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-accent-200\\/50{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-accent-200\\/55{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-accent-200\\/60{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-accent-200\\/65{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-accent-200\\/70{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-accent-200\\/75{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-accent-200\\/80{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-accent-200\\/85{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-accent-200\\/90{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-accent-200\\/95{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-accent-300{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / var(--tw-text-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-accent-300\\/0{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-accent-300\\/10{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-accent-300\\/100{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-accent-300\\/15{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-accent-300\\/20{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-accent-300\\/25{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-accent-300\\/30{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-accent-300\\/35{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-accent-300\\/40{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-accent-300\\/45{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-accent-300\\/5{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-accent-300\\/50{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-accent-300\\/55{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-accent-300\\/60{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-accent-300\\/65{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-accent-300\\/70{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-accent-300\\/75{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-accent-300\\/80{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-accent-300\\/85{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-accent-300\\/90{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-accent-300\\/95{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-accent-400{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / var(--tw-text-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-accent-400\\/0{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-accent-400\\/10{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-accent-400\\/100{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-accent-400\\/15{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-accent-400\\/20{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-accent-400\\/25{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-accent-400\\/30{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-accent-400\\/35{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-accent-400\\/40{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-accent-400\\/45{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-accent-400\\/5{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-accent-400\\/50{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-accent-400\\/55{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-accent-400\\/60{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-accent-400\\/65{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-accent-400\\/70{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-accent-400\\/75{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-accent-400\\/80{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-accent-400\\/85{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-accent-400\\/90{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-accent-400\\/95{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-accent-50{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / var(--tw-text-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-accent-50\\/0{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-accent-50\\/10{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-accent-50\\/100{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-accent-50\\/15{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-accent-50\\/20{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-accent-50\\/25{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-accent-50\\/30{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-accent-50\\/35{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-accent-50\\/40{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-accent-50\\/45{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-accent-50\\/5{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-accent-50\\/50{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-accent-50\\/55{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-accent-50\\/60{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-accent-50\\/65{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-accent-50\\/70{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-accent-50\\/75{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-accent-50\\/80{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-accent-50\\/85{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-accent-50\\/90{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-accent-50\\/95{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-accent-500{\n--tw-text-opacity: 1;\ncolor: color(from var(--accent) srgb r g b / var(--tw-text-opacity));\n}\n.text-accent-500\\/0{\ncolor: color(from var(--accent) srgb r g b / 0);\n}\n.text-accent-500\\/10{\ncolor: color(from var(--accent) srgb r g b / 0.1);\n}\n.text-accent-500\\/100{\ncolor: color(from var(--accent) srgb r g b / 1);\n}\n.text-accent-500\\/15{\ncolor: color(from var(--accent) srgb r g b / 0.15);\n}\n.text-accent-500\\/20{\ncolor: color(from var(--accent) srgb r g b / 0.2);\n}\n.text-accent-500\\/25{\ncolor: color(from var(--accent) srgb r g b / 0.25);\n}\n.text-accent-500\\/30{\ncolor: color(from var(--accent) srgb r g b / 0.3);\n}\n.text-accent-500\\/35{\ncolor: color(from var(--accent) srgb r g b / 0.35);\n}\n.text-accent-500\\/40{\ncolor: color(from var(--accent) srgb r g b / 0.4);\n}\n.text-accent-500\\/45{\ncolor: color(from var(--accent) srgb r g b / 0.45);\n}\n.text-accent-500\\/5{\ncolor: color(from var(--accent) srgb r g b / 0.05);\n}\n.text-accent-500\\/50{\ncolor: color(from var(--accent) srgb r g b / 0.5);\n}\n.text-accent-500\\/55{\ncolor: color(from var(--accent) srgb r g b / 0.55);\n}\n.text-accent-500\\/60{\ncolor: color(from var(--accent) srgb r g b / 0.6);\n}\n.text-accent-500\\/65{\ncolor: color(from var(--accent) srgb r g b / 0.65);\n}\n.text-accent-500\\/70{\ncolor: color(from var(--accent) srgb r g b / 0.7);\n}\n.text-accent-500\\/75{\ncolor: color(from var(--accent) srgb r g b / 0.75);\n}\n.text-accent-500\\/80{\ncolor: color(from var(--accent) srgb r g b / 0.8);\n}\n.text-accent-500\\/85{\ncolor: color(from var(--accent) srgb r g b / 0.85);\n}\n.text-accent-500\\/90{\ncolor: color(from var(--accent) srgb r g b / 0.9);\n}\n.text-accent-500\\/95{\ncolor: color(from var(--accent) srgb r g b / 0.95);\n}\n.text-accent-600{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / var(--tw-text-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-accent-600\\/0{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-accent-600\\/10{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-accent-600\\/100{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-accent-600\\/15{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-accent-600\\/20{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-accent-600\\/25{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-accent-600\\/30{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-accent-600\\/35{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-accent-600\\/40{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-accent-600\\/45{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-accent-600\\/5{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-accent-600\\/50{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-accent-600\\/55{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-accent-600\\/60{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-accent-600\\/65{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-accent-600\\/70{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-accent-600\\/75{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-accent-600\\/80{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-accent-600\\/85{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-accent-600\\/90{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-accent-600\\/95{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-accent-700{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / var(--tw-text-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-accent-700\\/0{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-accent-700\\/10{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-accent-700\\/100{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-accent-700\\/15{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-accent-700\\/20{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-accent-700\\/25{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-accent-700\\/30{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-accent-700\\/35{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-accent-700\\/40{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-accent-700\\/45{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-accent-700\\/5{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-accent-700\\/50{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-accent-700\\/55{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-accent-700\\/60{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-accent-700\\/65{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-accent-700\\/70{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-accent-700\\/75{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-accent-700\\/80{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-accent-700\\/85{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-accent-700\\/90{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-accent-700\\/95{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-accent-800{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / var(--tw-text-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-accent-800\\/0{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-accent-800\\/10{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-accent-800\\/100{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-accent-800\\/15{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-accent-800\\/20{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-accent-800\\/25{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-accent-800\\/30{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-accent-800\\/35{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-accent-800\\/40{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-accent-800\\/45{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-accent-800\\/5{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-accent-800\\/50{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-accent-800\\/55{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-accent-800\\/60{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-accent-800\\/65{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-accent-800\\/70{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-accent-800\\/75{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-accent-800\\/80{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-accent-800\\/85{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-accent-800\\/90{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-accent-800\\/95{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-accent-900{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / var(--tw-text-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-accent-900\\/0{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-accent-900\\/10{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-accent-900\\/100{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-accent-900\\/15{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-accent-900\\/20{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-accent-900\\/25{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-accent-900\\/30{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-accent-900\\/35{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-accent-900\\/40{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-accent-900\\/45{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-accent-900\\/5{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-accent-900\\/50{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-accent-900\\/55{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-accent-900\\/60{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-accent-900\\/65{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-accent-900\\/70{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-accent-900\\/75{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-accent-900\\/80{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-accent-900\\/85{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-accent-900\\/90{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-accent-900\\/95{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-accent-950{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / var(--tw-text-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-accent-950\\/0{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-accent-950\\/10{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-accent-950\\/100{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-accent-950\\/15{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-accent-950\\/20{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-accent-950\\/25{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-accent-950\\/30{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-accent-950\\/35{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-accent-950\\/40{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-accent-950\\/45{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-accent-950\\/5{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-accent-950\\/50{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-accent-950\\/55{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-accent-950\\/60{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-accent-950\\/65{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-accent-950\\/70{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-accent-950\\/75{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-accent-950\\/80{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-accent-950\\/85{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-accent-950\\/90{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-accent-950\\/95{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-avacado{\n--tw-text-opacity: 1;\ncolor: rgb(70 167 88 / var(--tw-text-opacity));\n}\n.text-avacado-100{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / var(--tw-text-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-avacado-100\\/0{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-avacado-100\\/10{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-avacado-100\\/100{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-avacado-100\\/15{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-avacado-100\\/20{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-avacado-100\\/25{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-avacado-100\\/30{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-avacado-100\\/35{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-avacado-100\\/40{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-avacado-100\\/45{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-avacado-100\\/5{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-avacado-100\\/50{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-avacado-100\\/55{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-avacado-100\\/60{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-avacado-100\\/65{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-avacado-100\\/70{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-avacado-100\\/75{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-avacado-100\\/80{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-avacado-100\\/85{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-avacado-100\\/90{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-avacado-100\\/95{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-avacado-200{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / var(--tw-text-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-avacado-200\\/0{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-avacado-200\\/10{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-avacado-200\\/100{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-avacado-200\\/15{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-avacado-200\\/20{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-avacado-200\\/25{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-avacado-200\\/30{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-avacado-200\\/35{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-avacado-200\\/40{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-avacado-200\\/45{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-avacado-200\\/5{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-avacado-200\\/50{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-avacado-200\\/55{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-avacado-200\\/60{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-avacado-200\\/65{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-avacado-200\\/70{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-avacado-200\\/75{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-avacado-200\\/80{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-avacado-200\\/85{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-avacado-200\\/90{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-avacado-200\\/95{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-avacado-300{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / var(--tw-text-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-avacado-300\\/0{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-avacado-300\\/10{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-avacado-300\\/100{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-avacado-300\\/15{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-avacado-300\\/20{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-avacado-300\\/25{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-avacado-300\\/30{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-avacado-300\\/35{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-avacado-300\\/40{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-avacado-300\\/45{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-avacado-300\\/5{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-avacado-300\\/50{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-avacado-300\\/55{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-avacado-300\\/60{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-avacado-300\\/65{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-avacado-300\\/70{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-avacado-300\\/75{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-avacado-300\\/80{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-avacado-300\\/85{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-avacado-300\\/90{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-avacado-300\\/95{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-avacado-400{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / var(--tw-text-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-avacado-400\\/0{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-avacado-400\\/10{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-avacado-400\\/100{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-avacado-400\\/15{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-avacado-400\\/20{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-avacado-400\\/25{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-avacado-400\\/30{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-avacado-400\\/35{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-avacado-400\\/40{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-avacado-400\\/45{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-avacado-400\\/5{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-avacado-400\\/50{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-avacado-400\\/55{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-avacado-400\\/60{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-avacado-400\\/65{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-avacado-400\\/70{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-avacado-400\\/75{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-avacado-400\\/80{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-avacado-400\\/85{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-avacado-400\\/90{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-avacado-400\\/95{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-avacado-50{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / var(--tw-text-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-avacado-50\\/0{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-avacado-50\\/10{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-avacado-50\\/100{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-avacado-50\\/15{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-avacado-50\\/20{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-avacado-50\\/25{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-avacado-50\\/30{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-avacado-50\\/35{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-avacado-50\\/40{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-avacado-50\\/45{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-avacado-50\\/5{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-avacado-50\\/50{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-avacado-50\\/55{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-avacado-50\\/60{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-avacado-50\\/65{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-avacado-50\\/70{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-avacado-50\\/75{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-avacado-50\\/80{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-avacado-50\\/85{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-avacado-50\\/90{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-avacado-50\\/95{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-avacado-500{\n--tw-text-opacity: 1;\ncolor: color(from #46a758 srgb r g b / var(--tw-text-opacity));\n}\n.text-avacado-500\\/0{\ncolor: color(from #46a758 srgb r g b / 0);\n}\n.text-avacado-500\\/10{\ncolor: color(from #46a758 srgb r g b / 0.1);\n}\n.text-avacado-500\\/100{\ncolor: color(from #46a758 srgb r g b / 1);\n}\n.text-avacado-500\\/15{\ncolor: color(from #46a758 srgb r g b / 0.15);\n}\n.text-avacado-500\\/20{\ncolor: color(from #46a758 srgb r g b / 0.2);\n}\n.text-avacado-500\\/25{\ncolor: color(from #46a758 srgb r g b / 0.25);\n}\n.text-avacado-500\\/30{\ncolor: color(from #46a758 srgb r g b / 0.3);\n}\n.text-avacado-500\\/35{\ncolor: color(from #46a758 srgb r g b / 0.35);\n}\n.text-avacado-500\\/40{\ncolor: color(from #46a758 srgb r g b / 0.4);\n}\n.text-avacado-500\\/45{\ncolor: color(from #46a758 srgb r g b / 0.45);\n}\n.text-avacado-500\\/5{\ncolor: color(from #46a758 srgb r g b / 0.05);\n}\n.text-avacado-500\\/50{\ncolor: color(from #46a758 srgb r g b / 0.5);\n}\n.text-avacado-500\\/55{\ncolor: color(from #46a758 srgb r g b / 0.55);\n}\n.text-avacado-500\\/60{\ncolor: color(from #46a758 srgb r g b / 0.6);\n}\n.text-avacado-500\\/65{\ncolor: color(from #46a758 srgb r g b / 0.65);\n}\n.text-avacado-500\\/70{\ncolor: color(from #46a758 srgb r g b / 0.7);\n}\n.text-avacado-500\\/75{\ncolor: color(from #46a758 srgb r g b / 0.75);\n}\n.text-avacado-500\\/80{\ncolor: color(from #46a758 srgb r g b / 0.8);\n}\n.text-avacado-500\\/85{\ncolor: color(from #46a758 srgb r g b / 0.85);\n}\n.text-avacado-500\\/90{\ncolor: color(from #46a758 srgb r g b / 0.9);\n}\n.text-avacado-500\\/95{\ncolor: color(from #46a758 srgb r g b / 0.95);\n}\n.text-avacado-600{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / var(--tw-text-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-avacado-600\\/0{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-avacado-600\\/10{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-avacado-600\\/100{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-avacado-600\\/15{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-avacado-600\\/20{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-avacado-600\\/25{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-avacado-600\\/30{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-avacado-600\\/35{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-avacado-600\\/40{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-avacado-600\\/45{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-avacado-600\\/5{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-avacado-600\\/50{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-avacado-600\\/55{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-avacado-600\\/60{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-avacado-600\\/65{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-avacado-600\\/70{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-avacado-600\\/75{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-avacado-600\\/80{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-avacado-600\\/85{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-avacado-600\\/90{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-avacado-600\\/95{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-avacado-700{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / var(--tw-text-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-avacado-700\\/0{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-avacado-700\\/10{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-avacado-700\\/100{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-avacado-700\\/15{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-avacado-700\\/20{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-avacado-700\\/25{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-avacado-700\\/30{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-avacado-700\\/35{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-avacado-700\\/40{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-avacado-700\\/45{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-avacado-700\\/5{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-avacado-700\\/50{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-avacado-700\\/55{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-avacado-700\\/60{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-avacado-700\\/65{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-avacado-700\\/70{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-avacado-700\\/75{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-avacado-700\\/80{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-avacado-700\\/85{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-avacado-700\\/90{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-avacado-700\\/95{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-avacado-800{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / var(--tw-text-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-avacado-800\\/0{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-avacado-800\\/10{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-avacado-800\\/100{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-avacado-800\\/15{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-avacado-800\\/20{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-avacado-800\\/25{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-avacado-800\\/30{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-avacado-800\\/35{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-avacado-800\\/40{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-avacado-800\\/45{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-avacado-800\\/5{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-avacado-800\\/50{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-avacado-800\\/55{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-avacado-800\\/60{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-avacado-800\\/65{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-avacado-800\\/70{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-avacado-800\\/75{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-avacado-800\\/80{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-avacado-800\\/85{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-avacado-800\\/90{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-avacado-800\\/95{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-avacado-900{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / var(--tw-text-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-avacado-900\\/0{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-avacado-900\\/10{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-avacado-900\\/100{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-avacado-900\\/15{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-avacado-900\\/20{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-avacado-900\\/25{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-avacado-900\\/30{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-avacado-900\\/35{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-avacado-900\\/40{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-avacado-900\\/45{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-avacado-900\\/5{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-avacado-900\\/50{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-avacado-900\\/55{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-avacado-900\\/60{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-avacado-900\\/65{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-avacado-900\\/70{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-avacado-900\\/75{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-avacado-900\\/80{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-avacado-900\\/85{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-avacado-900\\/90{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-avacado-900\\/95{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-avacado-950{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / var(--tw-text-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-avacado-950\\/0{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-avacado-950\\/10{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-avacado-950\\/100{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-avacado-950\\/15{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-avacado-950\\/20{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-avacado-950\\/25{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-avacado-950\\/30{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-avacado-950\\/35{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-avacado-950\\/40{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-avacado-950\\/45{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-avacado-950\\/5{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-avacado-950\\/50{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-avacado-950\\/55{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-avacado-950\\/60{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-avacado-950\\/65{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-avacado-950\\/70{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-avacado-950\\/75{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-avacado-950\\/80{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-avacado-950\\/85{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-avacado-950\\/90{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-avacado-950\\/95{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-avacado\\/0{\ncolor: rgb(70 167 88 / 0);\n}\n.text-avacado\\/10{\ncolor: rgb(70 167 88 / 0.1);\n}\n.text-avacado\\/100{\ncolor: rgb(70 167 88 / 1);\n}\n.text-avacado\\/15{\ncolor: rgb(70 167 88 / 0.15);\n}\n.text-avacado\\/20{\ncolor: rgb(70 167 88 / 0.2);\n}\n.text-avacado\\/25{\ncolor: rgb(70 167 88 / 0.25);\n}\n.text-avacado\\/30{\ncolor: rgb(70 167 88 / 0.3);\n}\n.text-avacado\\/35{\ncolor: rgb(70 167 88 / 0.35);\n}\n.text-avacado\\/40{\ncolor: rgb(70 167 88 / 0.4);\n}\n.text-avacado\\/45{\ncolor: rgb(70 167 88 / 0.45);\n}\n.text-avacado\\/5{\ncolor: rgb(70 167 88 / 0.05);\n}\n.text-avacado\\/50{\ncolor: rgb(70 167 88 / 0.5);\n}\n.text-avacado\\/55{\ncolor: rgb(70 167 88 / 0.55);\n}\n.text-avacado\\/60{\ncolor: rgb(70 167 88 / 0.6);\n}\n.text-avacado\\/65{\ncolor: rgb(70 167 88 / 0.65);\n}\n.text-avacado\\/70{\ncolor: rgb(70 167 88 / 0.7);\n}\n.text-avacado\\/75{\ncolor: rgb(70 167 88 / 0.75);\n}\n.text-avacado\\/80{\ncolor: rgb(70 167 88 / 0.8);\n}\n.text-avacado\\/85{\ncolor: rgb(70 167 88 / 0.85);\n}\n.text-avacado\\/90{\ncolor: rgb(70 167 88 / 0.9);\n}\n.text-avacado\\/95{\ncolor: rgb(70 167 88 / 0.95);\n}\n.text-base{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)) 95%, color(from var(--tint) srgb r g b / var(--tw-text-opacity)));\n}\n.text-base\\/0{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0) 95%, color(from var(--tint) srgb r g b / 0));\n}\n.text-base\\/10{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.1) 95%, color(from var(--tint) srgb r g b / 0.1));\n}\n.text-base\\/100{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 1) 95%, color(from var(--tint) srgb r g b / 1));\n}\n.text-base\\/15{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.15) 95%, color(from var(--tint) srgb r g b / 0.15));\n}\n.text-base\\/20{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.2) 95%, color(from var(--tint) srgb r g b / 0.2));\n}\n.text-base\\/25{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.25) 95%, color(from var(--tint) srgb r g b / 0.25));\n}\n.text-base\\/30{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.3) 95%, color(from var(--tint) srgb r g b / 0.3));\n}\n.text-base\\/35{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.35) 95%, color(from var(--tint) srgb r g b / 0.35));\n}\n.text-base\\/40{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.4) 95%, color(from var(--tint) srgb r g b / 0.4));\n}\n.text-base\\/45{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.45) 95%, color(from var(--tint) srgb r g b / 0.45));\n}\n.text-base\\/5{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.05) 95%, color(from var(--tint) srgb r g b / 0.05));\n}\n.text-base\\/50{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.5) 95%, color(from var(--tint) srgb r g b / 0.5));\n}\n.text-base\\/55{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.55) 95%, color(from var(--tint) srgb r g b / 0.55));\n}\n.text-base\\/60{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.6) 95%, color(from var(--tint) srgb r g b / 0.6));\n}\n.text-base\\/65{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.65) 95%, color(from var(--tint) srgb r g b / 0.65));\n}\n.text-base\\/70{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.7) 95%, color(from var(--tint) srgb r g b / 0.7));\n}\n.text-base\\/75{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.75) 95%, color(from var(--tint) srgb r g b / 0.75));\n}\n.text-base\\/80{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.8) 95%, color(from var(--tint) srgb r g b / 0.8));\n}\n.text-base\\/85{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.85) 95%, color(from var(--tint) srgb r g b / 0.85));\n}\n.text-base\\/90{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.9) 95%, color(from var(--tint) srgb r g b / 0.9));\n}\n.text-base\\/95{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.95) 95%, color(from var(--tint) srgb r g b / 0.95));\n}\n.text-black{\n--tw-text-opacity: 1;\ncolor: rgb(25 26 27 / var(--tw-text-opacity));\n}\n.text-black\\/0{\ncolor: rgb(25 26 27 / 0);\n}\n.text-black\\/10{\ncolor: rgb(25 26 27 / 0.1);\n}\n.text-black\\/100{\ncolor: rgb(25 26 27 / 1);\n}\n.text-black\\/15{\ncolor: rgb(25 26 27 / 0.15);\n}\n.text-black\\/20{\ncolor: rgb(25 26 27 / 0.2);\n}\n.text-black\\/25{\ncolor: rgb(25 26 27 / 0.25);\n}\n.text-black\\/30{\ncolor: rgb(25 26 27 / 0.3);\n}\n.text-black\\/35{\ncolor: rgb(25 26 27 / 0.35);\n}\n.text-black\\/40{\ncolor: rgb(25 26 27 / 0.4);\n}\n.text-black\\/45{\ncolor: rgb(25 26 27 / 0.45);\n}\n.text-black\\/5{\ncolor: rgb(25 26 27 / 0.05);\n}\n.text-black\\/50{\ncolor: rgb(25 26 27 / 0.5);\n}\n.text-black\\/55{\ncolor: rgb(25 26 27 / 0.55);\n}\n.text-black\\/60{\ncolor: rgb(25 26 27 / 0.6);\n}\n.text-black\\/65{\ncolor: rgb(25 26 27 / 0.65);\n}\n.text-black\\/70{\ncolor: rgb(25 26 27 / 0.7);\n}\n.text-black\\/75{\ncolor: rgb(25 26 27 / 0.75);\n}\n.text-black\\/80{\ncolor: rgb(25 26 27 / 0.8);\n}\n.text-black\\/85{\ncolor: rgb(25 26 27 / 0.85);\n}\n.text-black\\/90{\ncolor: rgb(25 26 27 / 0.9);\n}\n.text-black\\/95{\ncolor: rgb(25 26 27 / 0.95);\n}\n.text-coral{\n--tw-text-opacity: 1;\ncolor: rgb(233 61 130 / var(--tw-text-opacity));\n}\n.text-coral-100{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / var(--tw-text-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-coral-100\\/0{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-coral-100\\/10{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-coral-100\\/100{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-coral-100\\/15{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-coral-100\\/20{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-coral-100\\/25{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-coral-100\\/30{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-coral-100\\/35{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-coral-100\\/40{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-coral-100\\/45{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-coral-100\\/5{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-coral-100\\/50{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-coral-100\\/55{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-coral-100\\/60{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-coral-100\\/65{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-coral-100\\/70{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-coral-100\\/75{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-coral-100\\/80{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-coral-100\\/85{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-coral-100\\/90{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-coral-100\\/95{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-coral-200{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / var(--tw-text-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-coral-200\\/0{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-coral-200\\/10{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-coral-200\\/100{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-coral-200\\/15{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-coral-200\\/20{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-coral-200\\/25{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-coral-200\\/30{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-coral-200\\/35{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-coral-200\\/40{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-coral-200\\/45{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-coral-200\\/5{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-coral-200\\/50{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-coral-200\\/55{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-coral-200\\/60{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-coral-200\\/65{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-coral-200\\/70{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-coral-200\\/75{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-coral-200\\/80{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-coral-200\\/85{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-coral-200\\/90{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-coral-200\\/95{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-coral-300{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / var(--tw-text-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-coral-300\\/0{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-coral-300\\/10{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-coral-300\\/100{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-coral-300\\/15{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-coral-300\\/20{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-coral-300\\/25{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-coral-300\\/30{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-coral-300\\/35{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-coral-300\\/40{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-coral-300\\/45{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-coral-300\\/5{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-coral-300\\/50{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-coral-300\\/55{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-coral-300\\/60{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-coral-300\\/65{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-coral-300\\/70{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-coral-300\\/75{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-coral-300\\/80{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-coral-300\\/85{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-coral-300\\/90{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-coral-300\\/95{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-coral-400{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / var(--tw-text-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-coral-400\\/0{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-coral-400\\/10{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-coral-400\\/100{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-coral-400\\/15{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-coral-400\\/20{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-coral-400\\/25{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-coral-400\\/30{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-coral-400\\/35{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-coral-400\\/40{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-coral-400\\/45{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-coral-400\\/5{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-coral-400\\/50{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-coral-400\\/55{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-coral-400\\/60{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-coral-400\\/65{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-coral-400\\/70{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-coral-400\\/75{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-coral-400\\/80{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-coral-400\\/85{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-coral-400\\/90{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-coral-400\\/95{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-coral-50{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / var(--tw-text-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-coral-50\\/0{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-coral-50\\/10{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-coral-50\\/100{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-coral-50\\/15{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-coral-50\\/20{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-coral-50\\/25{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-coral-50\\/30{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-coral-50\\/35{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-coral-50\\/40{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-coral-50\\/45{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-coral-50\\/5{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-coral-50\\/50{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-coral-50\\/55{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-coral-50\\/60{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-coral-50\\/65{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-coral-50\\/70{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-coral-50\\/75{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-coral-50\\/80{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-coral-50\\/85{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-coral-50\\/90{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-coral-50\\/95{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-coral-500{\n--tw-text-opacity: 1;\ncolor: color(from #e93d82 srgb r g b / var(--tw-text-opacity));\n}\n.text-coral-500\\/0{\ncolor: color(from #e93d82 srgb r g b / 0);\n}\n.text-coral-500\\/10{\ncolor: color(from #e93d82 srgb r g b / 0.1);\n}\n.text-coral-500\\/100{\ncolor: color(from #e93d82 srgb r g b / 1);\n}\n.text-coral-500\\/15{\ncolor: color(from #e93d82 srgb r g b / 0.15);\n}\n.text-coral-500\\/20{\ncolor: color(from #e93d82 srgb r g b / 0.2);\n}\n.text-coral-500\\/25{\ncolor: color(from #e93d82 srgb r g b / 0.25);\n}\n.text-coral-500\\/30{\ncolor: color(from #e93d82 srgb r g b / 0.3);\n}\n.text-coral-500\\/35{\ncolor: color(from #e93d82 srgb r g b / 0.35);\n}\n.text-coral-500\\/40{\ncolor: color(from #e93d82 srgb r g b / 0.4);\n}\n.text-coral-500\\/45{\ncolor: color(from #e93d82 srgb r g b / 0.45);\n}\n.text-coral-500\\/5{\ncolor: color(from #e93d82 srgb r g b / 0.05);\n}\n.text-coral-500\\/50{\ncolor: color(from #e93d82 srgb r g b / 0.5);\n}\n.text-coral-500\\/55{\ncolor: color(from #e93d82 srgb r g b / 0.55);\n}\n.text-coral-500\\/60{\ncolor: color(from #e93d82 srgb r g b / 0.6);\n}\n.text-coral-500\\/65{\ncolor: color(from #e93d82 srgb r g b / 0.65);\n}\n.text-coral-500\\/70{\ncolor: color(from #e93d82 srgb r g b / 0.7);\n}\n.text-coral-500\\/75{\ncolor: color(from #e93d82 srgb r g b / 0.75);\n}\n.text-coral-500\\/80{\ncolor: color(from #e93d82 srgb r g b / 0.8);\n}\n.text-coral-500\\/85{\ncolor: color(from #e93d82 srgb r g b / 0.85);\n}\n.text-coral-500\\/90{\ncolor: color(from #e93d82 srgb r g b / 0.9);\n}\n.text-coral-500\\/95{\ncolor: color(from #e93d82 srgb r g b / 0.95);\n}\n.text-coral-600{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / var(--tw-text-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-coral-600\\/0{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-coral-600\\/10{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-coral-600\\/100{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-coral-600\\/15{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-coral-600\\/20{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-coral-600\\/25{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-coral-600\\/30{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-coral-600\\/35{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-coral-600\\/40{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-coral-600\\/45{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-coral-600\\/5{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-coral-600\\/50{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-coral-600\\/55{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-coral-600\\/60{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-coral-600\\/65{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-coral-600\\/70{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-coral-600\\/75{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-coral-600\\/80{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-coral-600\\/85{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-coral-600\\/90{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-coral-600\\/95{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-coral-700{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / var(--tw-text-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-coral-700\\/0{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-coral-700\\/10{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-coral-700\\/100{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-coral-700\\/15{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-coral-700\\/20{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-coral-700\\/25{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-coral-700\\/30{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-coral-700\\/35{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-coral-700\\/40{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-coral-700\\/45{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-coral-700\\/5{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-coral-700\\/50{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-coral-700\\/55{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-coral-700\\/60{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-coral-700\\/65{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-coral-700\\/70{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-coral-700\\/75{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-coral-700\\/80{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-coral-700\\/85{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-coral-700\\/90{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-coral-700\\/95{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-coral-800{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / var(--tw-text-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-coral-800\\/0{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-coral-800\\/10{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-coral-800\\/100{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-coral-800\\/15{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-coral-800\\/20{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-coral-800\\/25{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-coral-800\\/30{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-coral-800\\/35{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-coral-800\\/40{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-coral-800\\/45{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-coral-800\\/5{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-coral-800\\/50{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-coral-800\\/55{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-coral-800\\/60{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-coral-800\\/65{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-coral-800\\/70{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-coral-800\\/75{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-coral-800\\/80{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-coral-800\\/85{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-coral-800\\/90{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-coral-800\\/95{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-coral-900{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / var(--tw-text-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-coral-900\\/0{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-coral-900\\/10{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-coral-900\\/100{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-coral-900\\/15{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-coral-900\\/20{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-coral-900\\/25{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-coral-900\\/30{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-coral-900\\/35{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-coral-900\\/40{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-coral-900\\/45{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-coral-900\\/5{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-coral-900\\/50{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-coral-900\\/55{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-coral-900\\/60{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-coral-900\\/65{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-coral-900\\/70{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-coral-900\\/75{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-coral-900\\/80{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-coral-900\\/85{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-coral-900\\/90{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-coral-900\\/95{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-coral-950{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / var(--tw-text-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-coral-950\\/0{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-coral-950\\/10{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-coral-950\\/100{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-coral-950\\/15{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-coral-950\\/20{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-coral-950\\/25{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-coral-950\\/30{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-coral-950\\/35{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-coral-950\\/40{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-coral-950\\/45{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-coral-950\\/5{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-coral-950\\/50{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-coral-950\\/55{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-coral-950\\/60{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-coral-950\\/65{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-coral-950\\/70{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-coral-950\\/75{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-coral-950\\/80{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-coral-950\\/85{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-coral-950\\/90{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-coral-950\\/95{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-coral\\/0{\ncolor: rgb(233 61 130 / 0);\n}\n.text-coral\\/10{\ncolor: rgb(233 61 130 / 0.1);\n}\n.text-coral\\/100{\ncolor: rgb(233 61 130 / 1);\n}\n.text-coral\\/15{\ncolor: rgb(233 61 130 / 0.15);\n}\n.text-coral\\/20{\ncolor: rgb(233 61 130 / 0.2);\n}\n.text-coral\\/25{\ncolor: rgb(233 61 130 / 0.25);\n}\n.text-coral\\/30{\ncolor: rgb(233 61 130 / 0.3);\n}\n.text-coral\\/35{\ncolor: rgb(233 61 130 / 0.35);\n}\n.text-coral\\/40{\ncolor: rgb(233 61 130 / 0.4);\n}\n.text-coral\\/45{\ncolor: rgb(233 61 130 / 0.45);\n}\n.text-coral\\/5{\ncolor: rgb(233 61 130 / 0.05);\n}\n.text-coral\\/50{\ncolor: rgb(233 61 130 / 0.5);\n}\n.text-coral\\/55{\ncolor: rgb(233 61 130 / 0.55);\n}\n.text-coral\\/60{\ncolor: rgb(233 61 130 / 0.6);\n}\n.text-coral\\/65{\ncolor: rgb(233 61 130 / 0.65);\n}\n.text-coral\\/70{\ncolor: rgb(233 61 130 / 0.7);\n}\n.text-coral\\/75{\ncolor: rgb(233 61 130 / 0.75);\n}\n.text-coral\\/80{\ncolor: rgb(233 61 130 / 0.8);\n}\n.text-coral\\/85{\ncolor: rgb(233 61 130 / 0.85);\n}\n.text-coral\\/90{\ncolor: rgb(233 61 130 / 0.9);\n}\n.text-coral\\/95{\ncolor: rgb(233 61 130 / 0.95);\n}\n.text-danger{\n--tw-text-opacity: 1;\ncolor: rgb(242 76 61 / var(--tw-text-opacity));\n}\n.text-danger-100{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / var(--tw-text-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-danger-100\\/0{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-danger-100\\/10{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-danger-100\\/100{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-danger-100\\/15{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-danger-100\\/20{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-danger-100\\/25{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-danger-100\\/30{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-danger-100\\/35{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-danger-100\\/40{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-danger-100\\/45{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-danger-100\\/5{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-danger-100\\/50{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-danger-100\\/55{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-danger-100\\/60{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-danger-100\\/65{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-danger-100\\/70{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-danger-100\\/75{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-danger-100\\/80{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-danger-100\\/85{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-danger-100\\/90{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-danger-100\\/95{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-danger-200{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / var(--tw-text-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-danger-200\\/0{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-danger-200\\/10{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-danger-200\\/100{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-danger-200\\/15{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-danger-200\\/20{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-danger-200\\/25{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-danger-200\\/30{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-danger-200\\/35{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-danger-200\\/40{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-danger-200\\/45{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-danger-200\\/5{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-danger-200\\/50{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-danger-200\\/55{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-danger-200\\/60{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-danger-200\\/65{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-danger-200\\/70{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-danger-200\\/75{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-danger-200\\/80{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-danger-200\\/85{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-danger-200\\/90{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-danger-200\\/95{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-danger-300{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / var(--tw-text-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-danger-300\\/0{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-danger-300\\/10{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-danger-300\\/100{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-danger-300\\/15{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-danger-300\\/20{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-danger-300\\/25{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-danger-300\\/30{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-danger-300\\/35{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-danger-300\\/40{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-danger-300\\/45{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-danger-300\\/5{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-danger-300\\/50{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-danger-300\\/55{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-danger-300\\/60{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-danger-300\\/65{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-danger-300\\/70{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-danger-300\\/75{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-danger-300\\/80{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-danger-300\\/85{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-danger-300\\/90{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-danger-300\\/95{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-danger-400{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / var(--tw-text-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-danger-400\\/0{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-danger-400\\/10{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-danger-400\\/100{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-danger-400\\/15{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-danger-400\\/20{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-danger-400\\/25{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-danger-400\\/30{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-danger-400\\/35{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-danger-400\\/40{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-danger-400\\/45{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-danger-400\\/5{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-danger-400\\/50{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-danger-400\\/55{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-danger-400\\/60{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-danger-400\\/65{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-danger-400\\/70{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-danger-400\\/75{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-danger-400\\/80{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-danger-400\\/85{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-danger-400\\/90{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-danger-400\\/95{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-danger-50{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / var(--tw-text-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-danger-50\\/0{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-danger-50\\/10{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-danger-50\\/100{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-danger-50\\/15{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-danger-50\\/20{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-danger-50\\/25{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-danger-50\\/30{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-danger-50\\/35{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-danger-50\\/40{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-danger-50\\/45{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-danger-50\\/5{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-danger-50\\/50{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-danger-50\\/55{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-danger-50\\/60{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-danger-50\\/65{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-danger-50\\/70{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-danger-50\\/75{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-danger-50\\/80{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-danger-50\\/85{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-danger-50\\/90{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-danger-50\\/95{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-danger-500{\n--tw-text-opacity: 1;\ncolor: color(from #f24c3d srgb r g b / var(--tw-text-opacity));\n}\n.text-danger-500\\/0{\ncolor: color(from #f24c3d srgb r g b / 0);\n}\n.text-danger-500\\/10{\ncolor: color(from #f24c3d srgb r g b / 0.1);\n}\n.text-danger-500\\/100{\ncolor: color(from #f24c3d srgb r g b / 1);\n}\n.text-danger-500\\/15{\ncolor: color(from #f24c3d srgb r g b / 0.15);\n}\n.text-danger-500\\/20{\ncolor: color(from #f24c3d srgb r g b / 0.2);\n}\n.text-danger-500\\/25{\ncolor: color(from #f24c3d srgb r g b / 0.25);\n}\n.text-danger-500\\/30{\ncolor: color(from #f24c3d srgb r g b / 0.3);\n}\n.text-danger-500\\/35{\ncolor: color(from #f24c3d srgb r g b / 0.35);\n}\n.text-danger-500\\/40{\ncolor: color(from #f24c3d srgb r g b / 0.4);\n}\n.text-danger-500\\/45{\ncolor: color(from #f24c3d srgb r g b / 0.45);\n}\n.text-danger-500\\/5{\ncolor: color(from #f24c3d srgb r g b / 0.05);\n}\n.text-danger-500\\/50{\ncolor: color(from #f24c3d srgb r g b / 0.5);\n}\n.text-danger-500\\/55{\ncolor: color(from #f24c3d srgb r g b / 0.55);\n}\n.text-danger-500\\/60{\ncolor: color(from #f24c3d srgb r g b / 0.6);\n}\n.text-danger-500\\/65{\ncolor: color(from #f24c3d srgb r g b / 0.65);\n}\n.text-danger-500\\/70{\ncolor: color(from #f24c3d srgb r g b / 0.7);\n}\n.text-danger-500\\/75{\ncolor: color(from #f24c3d srgb r g b / 0.75);\n}\n.text-danger-500\\/80{\ncolor: color(from #f24c3d srgb r g b / 0.8);\n}\n.text-danger-500\\/85{\ncolor: color(from #f24c3d srgb r g b / 0.85);\n}\n.text-danger-500\\/90{\ncolor: color(from #f24c3d srgb r g b / 0.9);\n}\n.text-danger-500\\/95{\ncolor: color(from #f24c3d srgb r g b / 0.95);\n}\n.text-danger-600{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / var(--tw-text-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-danger-600\\/0{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-danger-600\\/10{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-danger-600\\/100{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-danger-600\\/15{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-danger-600\\/20{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-danger-600\\/25{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-danger-600\\/30{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-danger-600\\/35{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-danger-600\\/40{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-danger-600\\/45{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-danger-600\\/5{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-danger-600\\/50{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-danger-600\\/55{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-danger-600\\/60{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-danger-600\\/65{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-danger-600\\/70{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-danger-600\\/75{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-danger-600\\/80{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-danger-600\\/85{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-danger-600\\/90{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-danger-600\\/95{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-danger-700{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / var(--tw-text-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-danger-700\\/0{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-danger-700\\/10{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-danger-700\\/100{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-danger-700\\/15{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-danger-700\\/20{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-danger-700\\/25{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-danger-700\\/30{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-danger-700\\/35{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-danger-700\\/40{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-danger-700\\/45{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-danger-700\\/5{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-danger-700\\/50{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-danger-700\\/55{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-danger-700\\/60{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-danger-700\\/65{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-danger-700\\/70{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-danger-700\\/75{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-danger-700\\/80{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-danger-700\\/85{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-danger-700\\/90{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-danger-700\\/95{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-danger-800{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / var(--tw-text-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-danger-800\\/0{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-danger-800\\/10{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-danger-800\\/100{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-danger-800\\/15{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-danger-800\\/20{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-danger-800\\/25{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-danger-800\\/30{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-danger-800\\/35{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-danger-800\\/40{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-danger-800\\/45{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-danger-800\\/5{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-danger-800\\/50{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-danger-800\\/55{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-danger-800\\/60{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-danger-800\\/65{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-danger-800\\/70{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-danger-800\\/75{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-danger-800\\/80{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-danger-800\\/85{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-danger-800\\/90{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-danger-800\\/95{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-danger-900{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / var(--tw-text-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-danger-900\\/0{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-danger-900\\/10{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-danger-900\\/100{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-danger-900\\/15{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-danger-900\\/20{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-danger-900\\/25{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-danger-900\\/30{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-danger-900\\/35{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-danger-900\\/40{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-danger-900\\/45{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-danger-900\\/5{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-danger-900\\/50{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-danger-900\\/55{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-danger-900\\/60{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-danger-900\\/65{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-danger-900\\/70{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-danger-900\\/75{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-danger-900\\/80{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-danger-900\\/85{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-danger-900\\/90{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-danger-900\\/95{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-danger-950{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / var(--tw-text-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-danger-950\\/0{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-danger-950\\/10{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-danger-950\\/100{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-danger-950\\/15{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-danger-950\\/20{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-danger-950\\/25{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-danger-950\\/30{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-danger-950\\/35{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-danger-950\\/40{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-danger-950\\/45{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-danger-950\\/5{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-danger-950\\/50{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-danger-950\\/55{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-danger-950\\/60{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-danger-950\\/65{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-danger-950\\/70{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-danger-950\\/75{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-danger-950\\/80{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-danger-950\\/85{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-danger-950\\/90{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-danger-950\\/95{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-danger\\/0{\ncolor: rgb(242 76 61 / 0);\n}\n.text-danger\\/10{\ncolor: rgb(242 76 61 / 0.1);\n}\n.text-danger\\/100{\ncolor: rgb(242 76 61 / 1);\n}\n.text-danger\\/15{\ncolor: rgb(242 76 61 / 0.15);\n}\n.text-danger\\/20{\ncolor: rgb(242 76 61 / 0.2);\n}\n.text-danger\\/25{\ncolor: rgb(242 76 61 / 0.25);\n}\n.text-danger\\/30{\ncolor: rgb(242 76 61 / 0.3);\n}\n.text-danger\\/35{\ncolor: rgb(242 76 61 / 0.35);\n}\n.text-danger\\/40{\ncolor: rgb(242 76 61 / 0.4);\n}\n.text-danger\\/45{\ncolor: rgb(242 76 61 / 0.45);\n}\n.text-danger\\/5{\ncolor: rgb(242 76 61 / 0.05);\n}\n.text-danger\\/50{\ncolor: rgb(242 76 61 / 0.5);\n}\n.text-danger\\/55{\ncolor: rgb(242 76 61 / 0.55);\n}\n.text-danger\\/60{\ncolor: rgb(242 76 61 / 0.6);\n}\n.text-danger\\/65{\ncolor: rgb(242 76 61 / 0.65);\n}\n.text-danger\\/70{\ncolor: rgb(242 76 61 / 0.7);\n}\n.text-danger\\/75{\ncolor: rgb(242 76 61 / 0.75);\n}\n.text-danger\\/80{\ncolor: rgb(242 76 61 / 0.8);\n}\n.text-danger\\/85{\ncolor: rgb(242 76 61 / 0.85);\n}\n.text-danger\\/90{\ncolor: rgb(242 76 61 / 0.9);\n}\n.text-danger\\/95{\ncolor: rgb(242 76 61 / 0.95);\n}\n.text-dark{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from var(--black) srgb r g b / var(--tw-text-opacity)) 75%, color(from var(--tint) srgb r g b / var(--tw-text-opacity)));\n}\n.text-dark\\/0{\ncolor: color-mix(in lab, color(from var(--black) srgb r g b / 0) 75%, color(from var(--tint) srgb r g b / 0));\n}\n.text-dark\\/10{\ncolor: color-mix(in lab, color(from var(--black) srgb r g b / 0.1) 75%, color(from var(--tint) srgb r g b / 0.1));\n}\n.text-dark\\/100{\ncolor: color-mix(in lab, color(from var(--black) srgb r g b / 1) 75%, color(from var(--tint) srgb r g b / 1));\n}\n.text-dark\\/15{\ncolor: color-mix(in lab, color(from var(--black) srgb r g b / 0.15) 75%, color(from var(--tint) srgb r g b / 0.15));\n}\n.text-dark\\/20{\ncolor: color-mix(in lab, color(from var(--black) srgb r g b / 0.2) 75%, color(from var(--tint) srgb r g b / 0.2));\n}\n.text-dark\\/25{\ncolor: color-mix(in lab, color(from var(--black) srgb r g b / 0.25) 75%, color(from var(--tint) srgb r g b / 0.25));\n}\n.text-dark\\/30{\ncolor: color-mix(in lab, color(from var(--black) srgb r g b / 0.3) 75%, color(from var(--tint) srgb r g b / 0.3));\n}\n.text-dark\\/35{\ncolor: color-mix(in lab, color(from var(--black) srgb r g b / 0.35) 75%, color(from var(--tint) srgb r g b / 0.35));\n}\n.text-dark\\/40{\ncolor: color-mix(in lab, color(from var(--black) srgb r g b / 0.4) 75%, color(from var(--tint) srgb r g b / 0.4));\n}\n.text-dark\\/45{\ncolor: color-mix(in lab, color(from var(--black) srgb r g b / 0.45) 75%, color(from var(--tint) srgb r g b / 0.45));\n}\n.text-dark\\/5{\ncolor: color-mix(in lab, color(from var(--black) srgb r g b / 0.05) 75%, color(from var(--tint) srgb r g b / 0.05));\n}\n.text-dark\\/50{\ncolor: color-mix(in lab, color(from var(--black) srgb r g b / 0.5) 75%, color(from var(--tint) srgb r g b / 0.5));\n}\n.text-dark\\/55{\ncolor: color-mix(in lab, color(from var(--black) srgb r g b / 0.55) 75%, color(from var(--tint) srgb r g b / 0.55));\n}\n.text-dark\\/60{\ncolor: color-mix(in lab, color(from var(--black) srgb r g b / 0.6) 75%, color(from var(--tint) srgb r g b / 0.6));\n}\n.text-dark\\/65{\ncolor: color-mix(in lab, color(from var(--black) srgb r g b / 0.65) 75%, color(from var(--tint) srgb r g b / 0.65));\n}\n.text-dark\\/70{\ncolor: color-mix(in lab, color(from var(--black) srgb r g b / 0.7) 75%, color(from var(--tint) srgb r g b / 0.7));\n}\n.text-dark\\/75{\ncolor: color-mix(in lab, color(from var(--black) srgb r g b / 0.75) 75%, color(from var(--tint) srgb r g b / 0.75));\n}\n.text-dark\\/80{\ncolor: color-mix(in lab, color(from var(--black) srgb r g b / 0.8) 75%, color(from var(--tint) srgb r g b / 0.8));\n}\n.text-dark\\/85{\ncolor: color-mix(in lab, color(from var(--black) srgb r g b / 0.85) 75%, color(from var(--tint) srgb r g b / 0.85));\n}\n.text-dark\\/90{\ncolor: color-mix(in lab, color(from var(--black) srgb r g b / 0.9) 75%, color(from var(--tint) srgb r g b / 0.9));\n}\n.text-dark\\/95{\ncolor: color-mix(in lab, color(from var(--black) srgb r g b / 0.95) 75%, color(from var(--tint) srgb r g b / 0.95));\n}\n.text-denim{\n--tw-text-opacity: 1;\ncolor: rgb(1 144 255 / var(--tw-text-opacity));\n}\n.text-denim-100{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / var(--tw-text-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-denim-100\\/0{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-denim-100\\/10{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-denim-100\\/100{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-denim-100\\/15{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-denim-100\\/20{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-denim-100\\/25{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-denim-100\\/30{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-denim-100\\/35{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-denim-100\\/40{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-denim-100\\/45{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-denim-100\\/5{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-denim-100\\/50{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-denim-100\\/55{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-denim-100\\/60{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-denim-100\\/65{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-denim-100\\/70{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-denim-100\\/75{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-denim-100\\/80{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-denim-100\\/85{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-denim-100\\/90{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-denim-100\\/95{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-denim-200{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / var(--tw-text-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-denim-200\\/0{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-denim-200\\/10{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-denim-200\\/100{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-denim-200\\/15{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-denim-200\\/20{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-denim-200\\/25{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-denim-200\\/30{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-denim-200\\/35{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-denim-200\\/40{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-denim-200\\/45{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-denim-200\\/5{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-denim-200\\/50{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-denim-200\\/55{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-denim-200\\/60{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-denim-200\\/65{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-denim-200\\/70{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-denim-200\\/75{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-denim-200\\/80{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-denim-200\\/85{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-denim-200\\/90{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-denim-200\\/95{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-denim-300{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / var(--tw-text-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-denim-300\\/0{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-denim-300\\/10{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-denim-300\\/100{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-denim-300\\/15{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-denim-300\\/20{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-denim-300\\/25{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-denim-300\\/30{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-denim-300\\/35{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-denim-300\\/40{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-denim-300\\/45{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-denim-300\\/5{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-denim-300\\/50{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-denim-300\\/55{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-denim-300\\/60{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-denim-300\\/65{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-denim-300\\/70{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-denim-300\\/75{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-denim-300\\/80{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-denim-300\\/85{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-denim-300\\/90{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-denim-300\\/95{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-denim-400{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / var(--tw-text-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-denim-400\\/0{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-denim-400\\/10{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-denim-400\\/100{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-denim-400\\/15{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-denim-400\\/20{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-denim-400\\/25{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-denim-400\\/30{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-denim-400\\/35{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-denim-400\\/40{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-denim-400\\/45{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-denim-400\\/5{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-denim-400\\/50{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-denim-400\\/55{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-denim-400\\/60{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-denim-400\\/65{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-denim-400\\/70{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-denim-400\\/75{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-denim-400\\/80{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-denim-400\\/85{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-denim-400\\/90{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-denim-400\\/95{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-denim-50{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / var(--tw-text-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-denim-50\\/0{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-denim-50\\/10{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-denim-50\\/100{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-denim-50\\/15{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-denim-50\\/20{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-denim-50\\/25{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-denim-50\\/30{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-denim-50\\/35{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-denim-50\\/40{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-denim-50\\/45{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-denim-50\\/5{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-denim-50\\/50{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-denim-50\\/55{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-denim-50\\/60{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-denim-50\\/65{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-denim-50\\/70{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-denim-50\\/75{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-denim-50\\/80{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-denim-50\\/85{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-denim-50\\/90{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-denim-50\\/95{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-denim-500{\n--tw-text-opacity: 1;\ncolor: color(from #0190ff srgb r g b / var(--tw-text-opacity));\n}\n.text-denim-500\\/0{\ncolor: color(from #0190ff srgb r g b / 0);\n}\n.text-denim-500\\/10{\ncolor: color(from #0190ff srgb r g b / 0.1);\n}\n.text-denim-500\\/100{\ncolor: color(from #0190ff srgb r g b / 1);\n}\n.text-denim-500\\/15{\ncolor: color(from #0190ff srgb r g b / 0.15);\n}\n.text-denim-500\\/20{\ncolor: color(from #0190ff srgb r g b / 0.2);\n}\n.text-denim-500\\/25{\ncolor: color(from #0190ff srgb r g b / 0.25);\n}\n.text-denim-500\\/30{\ncolor: color(from #0190ff srgb r g b / 0.3);\n}\n.text-denim-500\\/35{\ncolor: color(from #0190ff srgb r g b / 0.35);\n}\n.text-denim-500\\/40{\ncolor: color(from #0190ff srgb r g b / 0.4);\n}\n.text-denim-500\\/45{\ncolor: color(from #0190ff srgb r g b / 0.45);\n}\n.text-denim-500\\/5{\ncolor: color(from #0190ff srgb r g b / 0.05);\n}\n.text-denim-500\\/50{\ncolor: color(from #0190ff srgb r g b / 0.5);\n}\n.text-denim-500\\/55{\ncolor: color(from #0190ff srgb r g b / 0.55);\n}\n.text-denim-500\\/60{\ncolor: color(from #0190ff srgb r g b / 0.6);\n}\n.text-denim-500\\/65{\ncolor: color(from #0190ff srgb r g b / 0.65);\n}\n.text-denim-500\\/70{\ncolor: color(from #0190ff srgb r g b / 0.7);\n}\n.text-denim-500\\/75{\ncolor: color(from #0190ff srgb r g b / 0.75);\n}\n.text-denim-500\\/80{\ncolor: color(from #0190ff srgb r g b / 0.8);\n}\n.text-denim-500\\/85{\ncolor: color(from #0190ff srgb r g b / 0.85);\n}\n.text-denim-500\\/90{\ncolor: color(from #0190ff srgb r g b / 0.9);\n}\n.text-denim-500\\/95{\ncolor: color(from #0190ff srgb r g b / 0.95);\n}\n.text-denim-600{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / var(--tw-text-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-denim-600\\/0{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-denim-600\\/10{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-denim-600\\/100{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-denim-600\\/15{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-denim-600\\/20{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-denim-600\\/25{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-denim-600\\/30{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-denim-600\\/35{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-denim-600\\/40{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-denim-600\\/45{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-denim-600\\/5{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-denim-600\\/50{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-denim-600\\/55{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-denim-600\\/60{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-denim-600\\/65{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-denim-600\\/70{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-denim-600\\/75{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-denim-600\\/80{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-denim-600\\/85{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-denim-600\\/90{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-denim-600\\/95{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-denim-700{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / var(--tw-text-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-denim-700\\/0{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-denim-700\\/10{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-denim-700\\/100{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-denim-700\\/15{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-denim-700\\/20{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-denim-700\\/25{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-denim-700\\/30{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-denim-700\\/35{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-denim-700\\/40{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-denim-700\\/45{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-denim-700\\/5{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-denim-700\\/50{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-denim-700\\/55{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-denim-700\\/60{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-denim-700\\/65{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-denim-700\\/70{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-denim-700\\/75{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-denim-700\\/80{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-denim-700\\/85{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-denim-700\\/90{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-denim-700\\/95{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-denim-800{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / var(--tw-text-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-denim-800\\/0{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-denim-800\\/10{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-denim-800\\/100{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-denim-800\\/15{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-denim-800\\/20{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-denim-800\\/25{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-denim-800\\/30{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-denim-800\\/35{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-denim-800\\/40{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-denim-800\\/45{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-denim-800\\/5{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-denim-800\\/50{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-denim-800\\/55{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-denim-800\\/60{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-denim-800\\/65{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-denim-800\\/70{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-denim-800\\/75{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-denim-800\\/80{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-denim-800\\/85{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-denim-800\\/90{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-denim-800\\/95{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-denim-900{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / var(--tw-text-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-denim-900\\/0{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-denim-900\\/10{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-denim-900\\/100{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-denim-900\\/15{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-denim-900\\/20{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-denim-900\\/25{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-denim-900\\/30{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-denim-900\\/35{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-denim-900\\/40{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-denim-900\\/45{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-denim-900\\/5{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-denim-900\\/50{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-denim-900\\/55{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-denim-900\\/60{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-denim-900\\/65{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-denim-900\\/70{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-denim-900\\/75{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-denim-900\\/80{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-denim-900\\/85{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-denim-900\\/90{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-denim-900\\/95{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-denim-950{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / var(--tw-text-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-denim-950\\/0{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-denim-950\\/10{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-denim-950\\/100{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-denim-950\\/15{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-denim-950\\/20{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-denim-950\\/25{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-denim-950\\/30{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-denim-950\\/35{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-denim-950\\/40{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-denim-950\\/45{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-denim-950\\/5{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-denim-950\\/50{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-denim-950\\/55{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-denim-950\\/60{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-denim-950\\/65{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-denim-950\\/70{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-denim-950\\/75{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-denim-950\\/80{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-denim-950\\/85{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-denim-950\\/90{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-denim-950\\/95{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-denim\\/0{\ncolor: rgb(1 144 255 / 0);\n}\n.text-denim\\/10{\ncolor: rgb(1 144 255 / 0.1);\n}\n.text-denim\\/100{\ncolor: rgb(1 144 255 / 1);\n}\n.text-denim\\/15{\ncolor: rgb(1 144 255 / 0.15);\n}\n.text-denim\\/20{\ncolor: rgb(1 144 255 / 0.2);\n}\n.text-denim\\/25{\ncolor: rgb(1 144 255 / 0.25);\n}\n.text-denim\\/30{\ncolor: rgb(1 144 255 / 0.3);\n}\n.text-denim\\/35{\ncolor: rgb(1 144 255 / 0.35);\n}\n.text-denim\\/40{\ncolor: rgb(1 144 255 / 0.4);\n}\n.text-denim\\/45{\ncolor: rgb(1 144 255 / 0.45);\n}\n.text-denim\\/5{\ncolor: rgb(1 144 255 / 0.05);\n}\n.text-denim\\/50{\ncolor: rgb(1 144 255 / 0.5);\n}\n.text-denim\\/55{\ncolor: rgb(1 144 255 / 0.55);\n}\n.text-denim\\/60{\ncolor: rgb(1 144 255 / 0.6);\n}\n.text-denim\\/65{\ncolor: rgb(1 144 255 / 0.65);\n}\n.text-denim\\/70{\ncolor: rgb(1 144 255 / 0.7);\n}\n.text-denim\\/75{\ncolor: rgb(1 144 255 / 0.75);\n}\n.text-denim\\/80{\ncolor: rgb(1 144 255 / 0.8);\n}\n.text-denim\\/85{\ncolor: rgb(1 144 255 / 0.85);\n}\n.text-denim\\/90{\ncolor: rgb(1 144 255 / 0.9);\n}\n.text-denim\\/95{\ncolor: rgb(1 144 255 / 0.95);\n}\n.text-dimmed{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)) 65%, color(from var(--tint) srgb r g b / var(--tw-text-opacity)));\n}\n.text-dimmed\\/0{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0) 65%, color(from var(--tint) srgb r g b / 0));\n}\n.text-dimmed\\/10{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.1) 65%, color(from var(--tint) srgb r g b / 0.1));\n}\n.text-dimmed\\/100{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 1) 65%, color(from var(--tint) srgb r g b / 1));\n}\n.text-dimmed\\/15{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.15) 65%, color(from var(--tint) srgb r g b / 0.15));\n}\n.text-dimmed\\/20{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.2) 65%, color(from var(--tint) srgb r g b / 0.2));\n}\n.text-dimmed\\/25{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.25) 65%, color(from var(--tint) srgb r g b / 0.25));\n}\n.text-dimmed\\/30{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.3) 65%, color(from var(--tint) srgb r g b / 0.3));\n}\n.text-dimmed\\/35{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.35) 65%, color(from var(--tint) srgb r g b / 0.35));\n}\n.text-dimmed\\/40{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.4) 65%, color(from var(--tint) srgb r g b / 0.4));\n}\n.text-dimmed\\/45{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.45) 65%, color(from var(--tint) srgb r g b / 0.45));\n}\n.text-dimmed\\/5{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.05) 65%, color(from var(--tint) srgb r g b / 0.05));\n}\n.text-dimmed\\/50{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.5) 65%, color(from var(--tint) srgb r g b / 0.5));\n}\n.text-dimmed\\/55{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.55) 65%, color(from var(--tint) srgb r g b / 0.55));\n}\n.text-dimmed\\/60{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.6) 65%, color(from var(--tint) srgb r g b / 0.6));\n}\n.text-dimmed\\/65{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.65) 65%, color(from var(--tint) srgb r g b / 0.65));\n}\n.text-dimmed\\/70{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.7) 65%, color(from var(--tint) srgb r g b / 0.7));\n}\n.text-dimmed\\/75{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.75) 65%, color(from var(--tint) srgb r g b / 0.75));\n}\n.text-dimmed\\/80{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.8) 65%, color(from var(--tint) srgb r g b / 0.8));\n}\n.text-dimmed\\/85{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.85) 65%, color(from var(--tint) srgb r g b / 0.85));\n}\n.text-dimmed\\/90{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.9) 65%, color(from var(--tint) srgb r g b / 0.9));\n}\n.text-dimmed\\/95{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.95) 65%, color(from var(--tint) srgb r g b / 0.95));\n}\n.text-gray{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)) 50%, color(from var(--tint) srgb r g b / var(--tw-text-opacity)));\n}\n.text-info{\n--tw-text-opacity: 1;\ncolor: rgb(0 191 255 / var(--tw-text-opacity));\n}\n.text-info-100{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / var(--tw-text-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-info-100\\/0{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-info-100\\/10{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-info-100\\/100{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-info-100\\/15{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-info-100\\/20{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-info-100\\/25{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-info-100\\/30{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-info-100\\/35{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-info-100\\/40{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-info-100\\/45{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-info-100\\/5{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-info-100\\/50{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-info-100\\/55{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-info-100\\/60{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-info-100\\/65{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-info-100\\/70{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-info-100\\/75{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-info-100\\/80{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-info-100\\/85{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-info-100\\/90{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-info-100\\/95{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-info-200{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / var(--tw-text-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-info-200\\/0{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-info-200\\/10{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-info-200\\/100{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-info-200\\/15{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-info-200\\/20{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-info-200\\/25{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-info-200\\/30{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-info-200\\/35{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-info-200\\/40{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-info-200\\/45{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-info-200\\/5{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-info-200\\/50{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-info-200\\/55{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-info-200\\/60{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-info-200\\/65{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-info-200\\/70{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-info-200\\/75{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-info-200\\/80{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-info-200\\/85{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-info-200\\/90{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-info-200\\/95{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-info-300{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / var(--tw-text-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-info-300\\/0{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-info-300\\/10{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-info-300\\/100{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-info-300\\/15{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-info-300\\/20{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-info-300\\/25{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-info-300\\/30{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-info-300\\/35{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-info-300\\/40{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-info-300\\/45{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-info-300\\/5{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-info-300\\/50{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-info-300\\/55{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-info-300\\/60{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-info-300\\/65{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-info-300\\/70{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-info-300\\/75{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-info-300\\/80{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-info-300\\/85{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-info-300\\/90{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-info-300\\/95{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-info-400{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / var(--tw-text-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-info-400\\/0{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-info-400\\/10{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-info-400\\/100{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-info-400\\/15{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-info-400\\/20{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-info-400\\/25{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-info-400\\/30{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-info-400\\/35{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-info-400\\/40{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-info-400\\/45{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-info-400\\/5{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-info-400\\/50{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-info-400\\/55{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-info-400\\/60{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-info-400\\/65{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-info-400\\/70{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-info-400\\/75{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-info-400\\/80{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-info-400\\/85{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-info-400\\/90{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-info-400\\/95{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-info-50{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / var(--tw-text-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-info-50\\/0{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-info-50\\/10{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-info-50\\/100{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-info-50\\/15{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-info-50\\/20{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-info-50\\/25{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-info-50\\/30{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-info-50\\/35{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-info-50\\/40{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-info-50\\/45{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-info-50\\/5{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-info-50\\/50{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-info-50\\/55{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-info-50\\/60{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-info-50\\/65{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-info-50\\/70{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-info-50\\/75{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-info-50\\/80{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-info-50\\/85{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-info-50\\/90{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-info-50\\/95{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-info-500{\n--tw-text-opacity: 1;\ncolor: color(from #00bfff srgb r g b / var(--tw-text-opacity));\n}\n.text-info-500\\/0{\ncolor: color(from #00bfff srgb r g b / 0);\n}\n.text-info-500\\/10{\ncolor: color(from #00bfff srgb r g b / 0.1);\n}\n.text-info-500\\/100{\ncolor: color(from #00bfff srgb r g b / 1);\n}\n.text-info-500\\/15{\ncolor: color(from #00bfff srgb r g b / 0.15);\n}\n.text-info-500\\/20{\ncolor: color(from #00bfff srgb r g b / 0.2);\n}\n.text-info-500\\/25{\ncolor: color(from #00bfff srgb r g b / 0.25);\n}\n.text-info-500\\/30{\ncolor: color(from #00bfff srgb r g b / 0.3);\n}\n.text-info-500\\/35{\ncolor: color(from #00bfff srgb r g b / 0.35);\n}\n.text-info-500\\/40{\ncolor: color(from #00bfff srgb r g b / 0.4);\n}\n.text-info-500\\/45{\ncolor: color(from #00bfff srgb r g b / 0.45);\n}\n.text-info-500\\/5{\ncolor: color(from #00bfff srgb r g b / 0.05);\n}\n.text-info-500\\/50{\ncolor: color(from #00bfff srgb r g b / 0.5);\n}\n.text-info-500\\/55{\ncolor: color(from #00bfff srgb r g b / 0.55);\n}\n.text-info-500\\/60{\ncolor: color(from #00bfff srgb r g b / 0.6);\n}\n.text-info-500\\/65{\ncolor: color(from #00bfff srgb r g b / 0.65);\n}\n.text-info-500\\/70{\ncolor: color(from #00bfff srgb r g b / 0.7);\n}\n.text-info-500\\/75{\ncolor: color(from #00bfff srgb r g b / 0.75);\n}\n.text-info-500\\/80{\ncolor: color(from #00bfff srgb r g b / 0.8);\n}\n.text-info-500\\/85{\ncolor: color(from #00bfff srgb r g b / 0.85);\n}\n.text-info-500\\/90{\ncolor: color(from #00bfff srgb r g b / 0.9);\n}\n.text-info-500\\/95{\ncolor: color(from #00bfff srgb r g b / 0.95);\n}\n.text-info-600{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / var(--tw-text-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-info-600\\/0{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-info-600\\/10{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-info-600\\/100{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-info-600\\/15{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-info-600\\/20{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-info-600\\/25{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-info-600\\/30{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-info-600\\/35{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-info-600\\/40{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-info-600\\/45{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-info-600\\/5{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-info-600\\/50{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-info-600\\/55{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-info-600\\/60{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-info-600\\/65{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-info-600\\/70{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-info-600\\/75{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-info-600\\/80{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-info-600\\/85{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-info-600\\/90{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-info-600\\/95{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-info-700{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / var(--tw-text-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-info-700\\/0{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-info-700\\/10{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-info-700\\/100{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-info-700\\/15{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-info-700\\/20{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-info-700\\/25{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-info-700\\/30{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-info-700\\/35{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-info-700\\/40{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-info-700\\/45{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-info-700\\/5{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-info-700\\/50{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-info-700\\/55{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-info-700\\/60{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-info-700\\/65{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-info-700\\/70{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-info-700\\/75{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-info-700\\/80{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-info-700\\/85{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-info-700\\/90{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-info-700\\/95{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-info-800{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / var(--tw-text-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-info-800\\/0{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-info-800\\/10{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-info-800\\/100{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-info-800\\/15{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-info-800\\/20{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-info-800\\/25{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-info-800\\/30{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-info-800\\/35{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-info-800\\/40{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-info-800\\/45{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-info-800\\/5{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-info-800\\/50{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-info-800\\/55{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-info-800\\/60{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-info-800\\/65{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-info-800\\/70{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-info-800\\/75{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-info-800\\/80{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-info-800\\/85{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-info-800\\/90{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-info-800\\/95{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-info-900{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / var(--tw-text-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-info-900\\/0{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-info-900\\/10{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-info-900\\/100{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-info-900\\/15{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-info-900\\/20{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-info-900\\/25{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-info-900\\/30{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-info-900\\/35{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-info-900\\/40{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-info-900\\/45{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-info-900\\/5{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-info-900\\/50{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-info-900\\/55{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-info-900\\/60{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-info-900\\/65{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-info-900\\/70{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-info-900\\/75{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-info-900\\/80{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-info-900\\/85{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-info-900\\/90{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-info-900\\/95{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-info-950{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / var(--tw-text-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-info-950\\/0{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-info-950\\/10{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-info-950\\/100{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-info-950\\/15{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-info-950\\/20{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-info-950\\/25{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-info-950\\/30{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-info-950\\/35{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-info-950\\/40{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-info-950\\/45{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-info-950\\/5{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-info-950\\/50{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-info-950\\/55{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-info-950\\/60{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-info-950\\/65{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-info-950\\/70{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-info-950\\/75{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-info-950\\/80{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-info-950\\/85{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-info-950\\/90{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-info-950\\/95{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-info\\/0{\ncolor: rgb(0 191 255 / 0);\n}\n.text-info\\/10{\ncolor: rgb(0 191 255 / 0.1);\n}\n.text-info\\/100{\ncolor: rgb(0 191 255 / 1);\n}\n.text-info\\/15{\ncolor: rgb(0 191 255 / 0.15);\n}\n.text-info\\/20{\ncolor: rgb(0 191 255 / 0.2);\n}\n.text-info\\/25{\ncolor: rgb(0 191 255 / 0.25);\n}\n.text-info\\/30{\ncolor: rgb(0 191 255 / 0.3);\n}\n.text-info\\/35{\ncolor: rgb(0 191 255 / 0.35);\n}\n.text-info\\/40{\ncolor: rgb(0 191 255 / 0.4);\n}\n.text-info\\/45{\ncolor: rgb(0 191 255 / 0.45);\n}\n.text-info\\/5{\ncolor: rgb(0 191 255 / 0.05);\n}\n.text-info\\/50{\ncolor: rgb(0 191 255 / 0.5);\n}\n.text-info\\/55{\ncolor: rgb(0 191 255 / 0.55);\n}\n.text-info\\/60{\ncolor: rgb(0 191 255 / 0.6);\n}\n.text-info\\/65{\ncolor: rgb(0 191 255 / 0.65);\n}\n.text-info\\/70{\ncolor: rgb(0 191 255 / 0.7);\n}\n.text-info\\/75{\ncolor: rgb(0 191 255 / 0.75);\n}\n.text-info\\/80{\ncolor: rgb(0 191 255 / 0.8);\n}\n.text-info\\/85{\ncolor: rgb(0 191 255 / 0.85);\n}\n.text-info\\/90{\ncolor: rgb(0 191 255 / 0.9);\n}\n.text-info\\/95{\ncolor: rgb(0 191 255 / 0.95);\n}\n.text-invert{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)) 5%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-invert\\/0{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0) 5%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-invert\\/10{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.1) 5%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-invert\\/100{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 1) 5%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-invert\\/15{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.15) 5%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-invert\\/20{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.2) 5%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-invert\\/25{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.25) 5%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-invert\\/30{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.3) 5%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-invert\\/35{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.35) 5%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-invert\\/40{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.4) 5%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-invert\\/45{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.45) 5%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-invert\\/5{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.05) 5%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-invert\\/50{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.5) 5%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-invert\\/55{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.55) 5%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-invert\\/60{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.6) 5%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-invert\\/65{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.65) 5%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-invert\\/70{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.7) 5%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-invert\\/75{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.75) 5%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-invert\\/80{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.8) 5%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-invert\\/85{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.85) 5%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-invert\\/90{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.9) 5%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-invert\\/95{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.95) 5%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-iris{\n--tw-text-opacity: 1;\ncolor: rgb(91 91 214 / var(--tw-text-opacity));\n}\n.text-iris-100{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / var(--tw-text-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-iris-100\\/0{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-iris-100\\/10{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-iris-100\\/100{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-iris-100\\/15{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-iris-100\\/20{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-iris-100\\/25{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-iris-100\\/30{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-iris-100\\/35{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-iris-100\\/40{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-iris-100\\/45{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-iris-100\\/5{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-iris-100\\/50{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-iris-100\\/55{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-iris-100\\/60{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-iris-100\\/65{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-iris-100\\/70{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-iris-100\\/75{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-iris-100\\/80{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-iris-100\\/85{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-iris-100\\/90{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-iris-100\\/95{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-iris-200{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / var(--tw-text-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-iris-200\\/0{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-iris-200\\/10{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-iris-200\\/100{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-iris-200\\/15{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-iris-200\\/20{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-iris-200\\/25{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-iris-200\\/30{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-iris-200\\/35{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-iris-200\\/40{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-iris-200\\/45{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-iris-200\\/5{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-iris-200\\/50{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-iris-200\\/55{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-iris-200\\/60{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-iris-200\\/65{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-iris-200\\/70{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-iris-200\\/75{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-iris-200\\/80{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-iris-200\\/85{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-iris-200\\/90{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-iris-200\\/95{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-iris-300{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / var(--tw-text-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-iris-300\\/0{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-iris-300\\/10{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-iris-300\\/100{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-iris-300\\/15{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-iris-300\\/20{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-iris-300\\/25{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-iris-300\\/30{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-iris-300\\/35{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-iris-300\\/40{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-iris-300\\/45{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-iris-300\\/5{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-iris-300\\/50{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-iris-300\\/55{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-iris-300\\/60{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-iris-300\\/65{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-iris-300\\/70{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-iris-300\\/75{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-iris-300\\/80{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-iris-300\\/85{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-iris-300\\/90{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-iris-300\\/95{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-iris-400{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / var(--tw-text-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-iris-400\\/0{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-iris-400\\/10{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-iris-400\\/100{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-iris-400\\/15{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-iris-400\\/20{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-iris-400\\/25{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-iris-400\\/30{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-iris-400\\/35{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-iris-400\\/40{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-iris-400\\/45{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-iris-400\\/5{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-iris-400\\/50{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-iris-400\\/55{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-iris-400\\/60{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-iris-400\\/65{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-iris-400\\/70{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-iris-400\\/75{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-iris-400\\/80{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-iris-400\\/85{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-iris-400\\/90{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-iris-400\\/95{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-iris-50{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / var(--tw-text-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-iris-50\\/0{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-iris-50\\/10{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-iris-50\\/100{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-iris-50\\/15{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-iris-50\\/20{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-iris-50\\/25{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-iris-50\\/30{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-iris-50\\/35{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-iris-50\\/40{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-iris-50\\/45{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-iris-50\\/5{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-iris-50\\/50{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-iris-50\\/55{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-iris-50\\/60{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-iris-50\\/65{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-iris-50\\/70{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-iris-50\\/75{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-iris-50\\/80{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-iris-50\\/85{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-iris-50\\/90{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-iris-50\\/95{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-iris-500{\n--tw-text-opacity: 1;\ncolor: color(from #5b5bd6 srgb r g b / var(--tw-text-opacity));\n}\n.text-iris-500\\/0{\ncolor: color(from #5b5bd6 srgb r g b / 0);\n}\n.text-iris-500\\/10{\ncolor: color(from #5b5bd6 srgb r g b / 0.1);\n}\n.text-iris-500\\/100{\ncolor: color(from #5b5bd6 srgb r g b / 1);\n}\n.text-iris-500\\/15{\ncolor: color(from #5b5bd6 srgb r g b / 0.15);\n}\n.text-iris-500\\/20{\ncolor: color(from #5b5bd6 srgb r g b / 0.2);\n}\n.text-iris-500\\/25{\ncolor: color(from #5b5bd6 srgb r g b / 0.25);\n}\n.text-iris-500\\/30{\ncolor: color(from #5b5bd6 srgb r g b / 0.3);\n}\n.text-iris-500\\/35{\ncolor: color(from #5b5bd6 srgb r g b / 0.35);\n}\n.text-iris-500\\/40{\ncolor: color(from #5b5bd6 srgb r g b / 0.4);\n}\n.text-iris-500\\/45{\ncolor: color(from #5b5bd6 srgb r g b / 0.45);\n}\n.text-iris-500\\/5{\ncolor: color(from #5b5bd6 srgb r g b / 0.05);\n}\n.text-iris-500\\/50{\ncolor: color(from #5b5bd6 srgb r g b / 0.5);\n}\n.text-iris-500\\/55{\ncolor: color(from #5b5bd6 srgb r g b / 0.55);\n}\n.text-iris-500\\/60{\ncolor: color(from #5b5bd6 srgb r g b / 0.6);\n}\n.text-iris-500\\/65{\ncolor: color(from #5b5bd6 srgb r g b / 0.65);\n}\n.text-iris-500\\/70{\ncolor: color(from #5b5bd6 srgb r g b / 0.7);\n}\n.text-iris-500\\/75{\ncolor: color(from #5b5bd6 srgb r g b / 0.75);\n}\n.text-iris-500\\/80{\ncolor: color(from #5b5bd6 srgb r g b / 0.8);\n}\n.text-iris-500\\/85{\ncolor: color(from #5b5bd6 srgb r g b / 0.85);\n}\n.text-iris-500\\/90{\ncolor: color(from #5b5bd6 srgb r g b / 0.9);\n}\n.text-iris-500\\/95{\ncolor: color(from #5b5bd6 srgb r g b / 0.95);\n}\n.text-iris-600{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / var(--tw-text-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-iris-600\\/0{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-iris-600\\/10{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-iris-600\\/100{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-iris-600\\/15{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-iris-600\\/20{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-iris-600\\/25{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-iris-600\\/30{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-iris-600\\/35{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-iris-600\\/40{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-iris-600\\/45{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-iris-600\\/5{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-iris-600\\/50{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-iris-600\\/55{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-iris-600\\/60{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-iris-600\\/65{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-iris-600\\/70{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-iris-600\\/75{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-iris-600\\/80{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-iris-600\\/85{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-iris-600\\/90{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-iris-600\\/95{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-iris-700{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / var(--tw-text-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-iris-700\\/0{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-iris-700\\/10{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-iris-700\\/100{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-iris-700\\/15{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-iris-700\\/20{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-iris-700\\/25{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-iris-700\\/30{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-iris-700\\/35{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-iris-700\\/40{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-iris-700\\/45{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-iris-700\\/5{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-iris-700\\/50{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-iris-700\\/55{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-iris-700\\/60{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-iris-700\\/65{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-iris-700\\/70{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-iris-700\\/75{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-iris-700\\/80{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-iris-700\\/85{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-iris-700\\/90{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-iris-700\\/95{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-iris-800{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / var(--tw-text-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-iris-800\\/0{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-iris-800\\/10{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-iris-800\\/100{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-iris-800\\/15{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-iris-800\\/20{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-iris-800\\/25{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-iris-800\\/30{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-iris-800\\/35{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-iris-800\\/40{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-iris-800\\/45{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-iris-800\\/5{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-iris-800\\/50{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-iris-800\\/55{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-iris-800\\/60{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-iris-800\\/65{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-iris-800\\/70{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-iris-800\\/75{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-iris-800\\/80{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-iris-800\\/85{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-iris-800\\/90{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-iris-800\\/95{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-iris-900{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / var(--tw-text-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-iris-900\\/0{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-iris-900\\/10{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-iris-900\\/100{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-iris-900\\/15{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-iris-900\\/20{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-iris-900\\/25{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-iris-900\\/30{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-iris-900\\/35{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-iris-900\\/40{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-iris-900\\/45{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-iris-900\\/5{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-iris-900\\/50{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-iris-900\\/55{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-iris-900\\/60{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-iris-900\\/65{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-iris-900\\/70{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-iris-900\\/75{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-iris-900\\/80{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-iris-900\\/85{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-iris-900\\/90{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-iris-900\\/95{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-iris-950{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / var(--tw-text-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-iris-950\\/0{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-iris-950\\/10{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-iris-950\\/100{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-iris-950\\/15{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-iris-950\\/20{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-iris-950\\/25{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-iris-950\\/30{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-iris-950\\/35{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-iris-950\\/40{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-iris-950\\/45{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-iris-950\\/5{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-iris-950\\/50{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-iris-950\\/55{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-iris-950\\/60{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-iris-950\\/65{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-iris-950\\/70{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-iris-950\\/75{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-iris-950\\/80{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-iris-950\\/85{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-iris-950\\/90{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-iris-950\\/95{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-iris\\/0{\ncolor: rgb(91 91 214 / 0);\n}\n.text-iris\\/10{\ncolor: rgb(91 91 214 / 0.1);\n}\n.text-iris\\/100{\ncolor: rgb(91 91 214 / 1);\n}\n.text-iris\\/15{\ncolor: rgb(91 91 214 / 0.15);\n}\n.text-iris\\/20{\ncolor: rgb(91 91 214 / 0.2);\n}\n.text-iris\\/25{\ncolor: rgb(91 91 214 / 0.25);\n}\n.text-iris\\/30{\ncolor: rgb(91 91 214 / 0.3);\n}\n.text-iris\\/35{\ncolor: rgb(91 91 214 / 0.35);\n}\n.text-iris\\/40{\ncolor: rgb(91 91 214 / 0.4);\n}\n.text-iris\\/45{\ncolor: rgb(91 91 214 / 0.45);\n}\n.text-iris\\/5{\ncolor: rgb(91 91 214 / 0.05);\n}\n.text-iris\\/50{\ncolor: rgb(91 91 214 / 0.5);\n}\n.text-iris\\/55{\ncolor: rgb(91 91 214 / 0.55);\n}\n.text-iris\\/60{\ncolor: rgb(91 91 214 / 0.6);\n}\n.text-iris\\/65{\ncolor: rgb(91 91 214 / 0.65);\n}\n.text-iris\\/70{\ncolor: rgb(91 91 214 / 0.7);\n}\n.text-iris\\/75{\ncolor: rgb(91 91 214 / 0.75);\n}\n.text-iris\\/80{\ncolor: rgb(91 91 214 / 0.8);\n}\n.text-iris\\/85{\ncolor: rgb(91 91 214 / 0.85);\n}\n.text-iris\\/90{\ncolor: rgb(91 91 214 / 0.9);\n}\n.text-iris\\/95{\ncolor: rgb(91 91 214 / 0.95);\n}\n.text-jade{\n--tw-text-opacity: 1;\ncolor: rgb(41 163 131 / var(--tw-text-opacity));\n}\n.text-jade-100{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / var(--tw-text-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-jade-100\\/0{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-jade-100\\/10{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-jade-100\\/100{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-jade-100\\/15{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-jade-100\\/20{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-jade-100\\/25{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-jade-100\\/30{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-jade-100\\/35{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-jade-100\\/40{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-jade-100\\/45{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-jade-100\\/5{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-jade-100\\/50{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-jade-100\\/55{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-jade-100\\/60{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-jade-100\\/65{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-jade-100\\/70{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-jade-100\\/75{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-jade-100\\/80{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-jade-100\\/85{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-jade-100\\/90{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-jade-100\\/95{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-jade-200{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / var(--tw-text-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-jade-200\\/0{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-jade-200\\/10{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-jade-200\\/100{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-jade-200\\/15{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-jade-200\\/20{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-jade-200\\/25{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-jade-200\\/30{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-jade-200\\/35{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-jade-200\\/40{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-jade-200\\/45{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-jade-200\\/5{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-jade-200\\/50{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-jade-200\\/55{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-jade-200\\/60{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-jade-200\\/65{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-jade-200\\/70{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-jade-200\\/75{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-jade-200\\/80{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-jade-200\\/85{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-jade-200\\/90{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-jade-200\\/95{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-jade-300{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / var(--tw-text-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-jade-300\\/0{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-jade-300\\/10{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-jade-300\\/100{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-jade-300\\/15{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-jade-300\\/20{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-jade-300\\/25{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-jade-300\\/30{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-jade-300\\/35{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-jade-300\\/40{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-jade-300\\/45{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-jade-300\\/5{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-jade-300\\/50{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-jade-300\\/55{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-jade-300\\/60{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-jade-300\\/65{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-jade-300\\/70{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-jade-300\\/75{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-jade-300\\/80{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-jade-300\\/85{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-jade-300\\/90{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-jade-300\\/95{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-jade-400{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / var(--tw-text-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-jade-400\\/0{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-jade-400\\/10{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-jade-400\\/100{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-jade-400\\/15{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-jade-400\\/20{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-jade-400\\/25{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-jade-400\\/30{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-jade-400\\/35{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-jade-400\\/40{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-jade-400\\/45{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-jade-400\\/5{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-jade-400\\/50{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-jade-400\\/55{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-jade-400\\/60{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-jade-400\\/65{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-jade-400\\/70{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-jade-400\\/75{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-jade-400\\/80{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-jade-400\\/85{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-jade-400\\/90{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-jade-400\\/95{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-jade-50{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / var(--tw-text-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-jade-50\\/0{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-jade-50\\/10{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-jade-50\\/100{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-jade-50\\/15{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-jade-50\\/20{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-jade-50\\/25{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-jade-50\\/30{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-jade-50\\/35{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-jade-50\\/40{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-jade-50\\/45{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-jade-50\\/5{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-jade-50\\/50{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-jade-50\\/55{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-jade-50\\/60{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-jade-50\\/65{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-jade-50\\/70{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-jade-50\\/75{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-jade-50\\/80{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-jade-50\\/85{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-jade-50\\/90{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-jade-50\\/95{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-jade-500{\n--tw-text-opacity: 1;\ncolor: color(from #29a383 srgb r g b / var(--tw-text-opacity));\n}\n.text-jade-500\\/0{\ncolor: color(from #29a383 srgb r g b / 0);\n}\n.text-jade-500\\/10{\ncolor: color(from #29a383 srgb r g b / 0.1);\n}\n.text-jade-500\\/100{\ncolor: color(from #29a383 srgb r g b / 1);\n}\n.text-jade-500\\/15{\ncolor: color(from #29a383 srgb r g b / 0.15);\n}\n.text-jade-500\\/20{\ncolor: color(from #29a383 srgb r g b / 0.2);\n}\n.text-jade-500\\/25{\ncolor: color(from #29a383 srgb r g b / 0.25);\n}\n.text-jade-500\\/30{\ncolor: color(from #29a383 srgb r g b / 0.3);\n}\n.text-jade-500\\/35{\ncolor: color(from #29a383 srgb r g b / 0.35);\n}\n.text-jade-500\\/40{\ncolor: color(from #29a383 srgb r g b / 0.4);\n}\n.text-jade-500\\/45{\ncolor: color(from #29a383 srgb r g b / 0.45);\n}\n.text-jade-500\\/5{\ncolor: color(from #29a383 srgb r g b / 0.05);\n}\n.text-jade-500\\/50{\ncolor: color(from #29a383 srgb r g b / 0.5);\n}\n.text-jade-500\\/55{\ncolor: color(from #29a383 srgb r g b / 0.55);\n}\n.text-jade-500\\/60{\ncolor: color(from #29a383 srgb r g b / 0.6);\n}\n.text-jade-500\\/65{\ncolor: color(from #29a383 srgb r g b / 0.65);\n}\n.text-jade-500\\/70{\ncolor: color(from #29a383 srgb r g b / 0.7);\n}\n.text-jade-500\\/75{\ncolor: color(from #29a383 srgb r g b / 0.75);\n}\n.text-jade-500\\/80{\ncolor: color(from #29a383 srgb r g b / 0.8);\n}\n.text-jade-500\\/85{\ncolor: color(from #29a383 srgb r g b / 0.85);\n}\n.text-jade-500\\/90{\ncolor: color(from #29a383 srgb r g b / 0.9);\n}\n.text-jade-500\\/95{\ncolor: color(from #29a383 srgb r g b / 0.95);\n}\n.text-jade-600{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / var(--tw-text-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-jade-600\\/0{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-jade-600\\/10{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-jade-600\\/100{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-jade-600\\/15{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-jade-600\\/20{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-jade-600\\/25{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-jade-600\\/30{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-jade-600\\/35{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-jade-600\\/40{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-jade-600\\/45{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-jade-600\\/5{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-jade-600\\/50{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-jade-600\\/55{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-jade-600\\/60{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-jade-600\\/65{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-jade-600\\/70{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-jade-600\\/75{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-jade-600\\/80{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-jade-600\\/85{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-jade-600\\/90{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-jade-600\\/95{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-jade-700{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / var(--tw-text-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-jade-700\\/0{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-jade-700\\/10{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-jade-700\\/100{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-jade-700\\/15{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-jade-700\\/20{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-jade-700\\/25{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-jade-700\\/30{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-jade-700\\/35{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-jade-700\\/40{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-jade-700\\/45{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-jade-700\\/5{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-jade-700\\/50{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-jade-700\\/55{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-jade-700\\/60{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-jade-700\\/65{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-jade-700\\/70{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-jade-700\\/75{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-jade-700\\/80{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-jade-700\\/85{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-jade-700\\/90{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-jade-700\\/95{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-jade-800{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / var(--tw-text-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-jade-800\\/0{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-jade-800\\/10{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-jade-800\\/100{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-jade-800\\/15{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-jade-800\\/20{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-jade-800\\/25{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-jade-800\\/30{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-jade-800\\/35{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-jade-800\\/40{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-jade-800\\/45{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-jade-800\\/5{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-jade-800\\/50{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-jade-800\\/55{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-jade-800\\/60{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-jade-800\\/65{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-jade-800\\/70{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-jade-800\\/75{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-jade-800\\/80{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-jade-800\\/85{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-jade-800\\/90{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-jade-800\\/95{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-jade-900{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / var(--tw-text-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-jade-900\\/0{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-jade-900\\/10{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-jade-900\\/100{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-jade-900\\/15{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-jade-900\\/20{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-jade-900\\/25{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-jade-900\\/30{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-jade-900\\/35{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-jade-900\\/40{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-jade-900\\/45{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-jade-900\\/5{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-jade-900\\/50{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-jade-900\\/55{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-jade-900\\/60{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-jade-900\\/65{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-jade-900\\/70{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-jade-900\\/75{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-jade-900\\/80{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-jade-900\\/85{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-jade-900\\/90{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-jade-900\\/95{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-jade-950{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / var(--tw-text-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-jade-950\\/0{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-jade-950\\/10{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-jade-950\\/100{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-jade-950\\/15{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-jade-950\\/20{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-jade-950\\/25{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-jade-950\\/30{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-jade-950\\/35{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-jade-950\\/40{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-jade-950\\/45{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-jade-950\\/5{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-jade-950\\/50{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-jade-950\\/55{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-jade-950\\/60{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-jade-950\\/65{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-jade-950\\/70{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-jade-950\\/75{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-jade-950\\/80{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-jade-950\\/85{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-jade-950\\/90{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-jade-950\\/95{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-jade\\/0{\ncolor: rgb(41 163 131 / 0);\n}\n.text-jade\\/10{\ncolor: rgb(41 163 131 / 0.1);\n}\n.text-jade\\/100{\ncolor: rgb(41 163 131 / 1);\n}\n.text-jade\\/15{\ncolor: rgb(41 163 131 / 0.15);\n}\n.text-jade\\/20{\ncolor: rgb(41 163 131 / 0.2);\n}\n.text-jade\\/25{\ncolor: rgb(41 163 131 / 0.25);\n}\n.text-jade\\/30{\ncolor: rgb(41 163 131 / 0.3);\n}\n.text-jade\\/35{\ncolor: rgb(41 163 131 / 0.35);\n}\n.text-jade\\/40{\ncolor: rgb(41 163 131 / 0.4);\n}\n.text-jade\\/45{\ncolor: rgb(41 163 131 / 0.45);\n}\n.text-jade\\/5{\ncolor: rgb(41 163 131 / 0.05);\n}\n.text-jade\\/50{\ncolor: rgb(41 163 131 / 0.5);\n}\n.text-jade\\/55{\ncolor: rgb(41 163 131 / 0.55);\n}\n.text-jade\\/60{\ncolor: rgb(41 163 131 / 0.6);\n}\n.text-jade\\/65{\ncolor: rgb(41 163 131 / 0.65);\n}\n.text-jade\\/70{\ncolor: rgb(41 163 131 / 0.7);\n}\n.text-jade\\/75{\ncolor: rgb(41 163 131 / 0.75);\n}\n.text-jade\\/80{\ncolor: rgb(41 163 131 / 0.8);\n}\n.text-jade\\/85{\ncolor: rgb(41 163 131 / 0.85);\n}\n.text-jade\\/90{\ncolor: rgb(41 163 131 / 0.9);\n}\n.text-jade\\/95{\ncolor: rgb(41 163 131 / 0.95);\n}\n.text-light{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from var(--white) srgb r g b / var(--tw-text-opacity)) 75%, color(from var(--tint) srgb r g b / var(--tw-text-opacity)));\n}\n.text-light\\/0{\ncolor: color-mix(in lab, color(from var(--white) srgb r g b / 0) 75%, color(from var(--tint) srgb r g b / 0));\n}\n.text-light\\/10{\ncolor: color-mix(in lab, color(from var(--white) srgb r g b / 0.1) 75%, color(from var(--tint) srgb r g b / 0.1));\n}\n.text-light\\/100{\ncolor: color-mix(in lab, color(from var(--white) srgb r g b / 1) 75%, color(from var(--tint) srgb r g b / 1));\n}\n.text-light\\/15{\ncolor: color-mix(in lab, color(from var(--white) srgb r g b / 0.15) 75%, color(from var(--tint) srgb r g b / 0.15));\n}\n.text-light\\/20{\ncolor: color-mix(in lab, color(from var(--white) srgb r g b / 0.2) 75%, color(from var(--tint) srgb r g b / 0.2));\n}\n.text-light\\/25{\ncolor: color-mix(in lab, color(from var(--white) srgb r g b / 0.25) 75%, color(from var(--tint) srgb r g b / 0.25));\n}\n.text-light\\/30{\ncolor: color-mix(in lab, color(from var(--white) srgb r g b / 0.3) 75%, color(from var(--tint) srgb r g b / 0.3));\n}\n.text-light\\/35{\ncolor: color-mix(in lab, color(from var(--white) srgb r g b / 0.35) 75%, color(from var(--tint) srgb r g b / 0.35));\n}\n.text-light\\/40{\ncolor: color-mix(in lab, color(from var(--white) srgb r g b / 0.4) 75%, color(from var(--tint) srgb r g b / 0.4));\n}\n.text-light\\/45{\ncolor: color-mix(in lab, color(from var(--white) srgb r g b / 0.45) 75%, color(from var(--tint) srgb r g b / 0.45));\n}\n.text-light\\/5{\ncolor: color-mix(in lab, color(from var(--white) srgb r g b / 0.05) 75%, color(from var(--tint) srgb r g b / 0.05));\n}\n.text-light\\/50{\ncolor: color-mix(in lab, color(from var(--white) srgb r g b / 0.5) 75%, color(from var(--tint) srgb r g b / 0.5));\n}\n.text-light\\/55{\ncolor: color-mix(in lab, color(from var(--white) srgb r g b / 0.55) 75%, color(from var(--tint) srgb r g b / 0.55));\n}\n.text-light\\/60{\ncolor: color-mix(in lab, color(from var(--white) srgb r g b / 0.6) 75%, color(from var(--tint) srgb r g b / 0.6));\n}\n.text-light\\/65{\ncolor: color-mix(in lab, color(from var(--white) srgb r g b / 0.65) 75%, color(from var(--tint) srgb r g b / 0.65));\n}\n.text-light\\/70{\ncolor: color-mix(in lab, color(from var(--white) srgb r g b / 0.7) 75%, color(from var(--tint) srgb r g b / 0.7));\n}\n.text-light\\/75{\ncolor: color-mix(in lab, color(from var(--white) srgb r g b / 0.75) 75%, color(from var(--tint) srgb r g b / 0.75));\n}\n.text-light\\/80{\ncolor: color-mix(in lab, color(from var(--white) srgb r g b / 0.8) 75%, color(from var(--tint) srgb r g b / 0.8));\n}\n.text-light\\/85{\ncolor: color-mix(in lab, color(from var(--white) srgb r g b / 0.85) 75%, color(from var(--tint) srgb r g b / 0.85));\n}\n.text-light\\/90{\ncolor: color-mix(in lab, color(from var(--white) srgb r g b / 0.9) 75%, color(from var(--tint) srgb r g b / 0.9));\n}\n.text-light\\/95{\ncolor: color-mix(in lab, color(from var(--white) srgb r g b / 0.95) 75%, color(from var(--tint) srgb r g b / 0.95));\n}\n.text-lilac{\n--tw-text-opacity: 1;\ncolor: rgb(142 78 198 / var(--tw-text-opacity));\n}\n.text-lilac-100{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / var(--tw-text-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-lilac-100\\/0{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-lilac-100\\/10{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-lilac-100\\/100{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-lilac-100\\/15{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-lilac-100\\/20{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-lilac-100\\/25{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-lilac-100\\/30{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-lilac-100\\/35{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-lilac-100\\/40{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-lilac-100\\/45{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-lilac-100\\/5{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-lilac-100\\/50{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-lilac-100\\/55{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-lilac-100\\/60{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-lilac-100\\/65{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-lilac-100\\/70{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-lilac-100\\/75{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-lilac-100\\/80{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-lilac-100\\/85{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-lilac-100\\/90{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-lilac-100\\/95{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-lilac-200{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / var(--tw-text-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-lilac-200\\/0{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-lilac-200\\/10{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-lilac-200\\/100{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-lilac-200\\/15{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-lilac-200\\/20{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-lilac-200\\/25{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-lilac-200\\/30{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-lilac-200\\/35{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-lilac-200\\/40{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-lilac-200\\/45{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-lilac-200\\/5{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-lilac-200\\/50{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-lilac-200\\/55{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-lilac-200\\/60{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-lilac-200\\/65{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-lilac-200\\/70{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-lilac-200\\/75{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-lilac-200\\/80{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-lilac-200\\/85{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-lilac-200\\/90{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-lilac-200\\/95{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-lilac-300{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / var(--tw-text-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-lilac-300\\/0{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-lilac-300\\/10{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-lilac-300\\/100{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-lilac-300\\/15{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-lilac-300\\/20{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-lilac-300\\/25{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-lilac-300\\/30{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-lilac-300\\/35{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-lilac-300\\/40{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-lilac-300\\/45{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-lilac-300\\/5{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-lilac-300\\/50{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-lilac-300\\/55{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-lilac-300\\/60{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-lilac-300\\/65{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-lilac-300\\/70{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-lilac-300\\/75{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-lilac-300\\/80{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-lilac-300\\/85{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-lilac-300\\/90{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-lilac-300\\/95{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-lilac-400{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / var(--tw-text-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-lilac-400\\/0{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-lilac-400\\/10{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-lilac-400\\/100{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-lilac-400\\/15{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-lilac-400\\/20{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-lilac-400\\/25{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-lilac-400\\/30{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-lilac-400\\/35{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-lilac-400\\/40{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-lilac-400\\/45{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-lilac-400\\/5{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-lilac-400\\/50{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-lilac-400\\/55{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-lilac-400\\/60{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-lilac-400\\/65{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-lilac-400\\/70{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-lilac-400\\/75{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-lilac-400\\/80{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-lilac-400\\/85{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-lilac-400\\/90{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-lilac-400\\/95{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-lilac-50{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / var(--tw-text-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-lilac-50\\/0{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-lilac-50\\/10{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-lilac-50\\/100{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-lilac-50\\/15{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-lilac-50\\/20{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-lilac-50\\/25{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-lilac-50\\/30{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-lilac-50\\/35{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-lilac-50\\/40{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-lilac-50\\/45{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-lilac-50\\/5{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-lilac-50\\/50{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-lilac-50\\/55{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-lilac-50\\/60{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-lilac-50\\/65{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-lilac-50\\/70{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-lilac-50\\/75{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-lilac-50\\/80{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-lilac-50\\/85{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-lilac-50\\/90{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-lilac-50\\/95{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-lilac-500{\n--tw-text-opacity: 1;\ncolor: color(from #8e4ec6 srgb r g b / var(--tw-text-opacity));\n}\n.text-lilac-500\\/0{\ncolor: color(from #8e4ec6 srgb r g b / 0);\n}\n.text-lilac-500\\/10{\ncolor: color(from #8e4ec6 srgb r g b / 0.1);\n}\n.text-lilac-500\\/100{\ncolor: color(from #8e4ec6 srgb r g b / 1);\n}\n.text-lilac-500\\/15{\ncolor: color(from #8e4ec6 srgb r g b / 0.15);\n}\n.text-lilac-500\\/20{\ncolor: color(from #8e4ec6 srgb r g b / 0.2);\n}\n.text-lilac-500\\/25{\ncolor: color(from #8e4ec6 srgb r g b / 0.25);\n}\n.text-lilac-500\\/30{\ncolor: color(from #8e4ec6 srgb r g b / 0.3);\n}\n.text-lilac-500\\/35{\ncolor: color(from #8e4ec6 srgb r g b / 0.35);\n}\n.text-lilac-500\\/40{\ncolor: color(from #8e4ec6 srgb r g b / 0.4);\n}\n.text-lilac-500\\/45{\ncolor: color(from #8e4ec6 srgb r g b / 0.45);\n}\n.text-lilac-500\\/5{\ncolor: color(from #8e4ec6 srgb r g b / 0.05);\n}\n.text-lilac-500\\/50{\ncolor: color(from #8e4ec6 srgb r g b / 0.5);\n}\n.text-lilac-500\\/55{\ncolor: color(from #8e4ec6 srgb r g b / 0.55);\n}\n.text-lilac-500\\/60{\ncolor: color(from #8e4ec6 srgb r g b / 0.6);\n}\n.text-lilac-500\\/65{\ncolor: color(from #8e4ec6 srgb r g b / 0.65);\n}\n.text-lilac-500\\/70{\ncolor: color(from #8e4ec6 srgb r g b / 0.7);\n}\n.text-lilac-500\\/75{\ncolor: color(from #8e4ec6 srgb r g b / 0.75);\n}\n.text-lilac-500\\/80{\ncolor: color(from #8e4ec6 srgb r g b / 0.8);\n}\n.text-lilac-500\\/85{\ncolor: color(from #8e4ec6 srgb r g b / 0.85);\n}\n.text-lilac-500\\/90{\ncolor: color(from #8e4ec6 srgb r g b / 0.9);\n}\n.text-lilac-500\\/95{\ncolor: color(from #8e4ec6 srgb r g b / 0.95);\n}\n.text-lilac-600{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / var(--tw-text-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-lilac-600\\/0{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-lilac-600\\/10{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-lilac-600\\/100{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-lilac-600\\/15{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-lilac-600\\/20{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-lilac-600\\/25{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-lilac-600\\/30{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-lilac-600\\/35{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-lilac-600\\/40{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-lilac-600\\/45{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-lilac-600\\/5{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-lilac-600\\/50{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-lilac-600\\/55{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-lilac-600\\/60{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-lilac-600\\/65{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-lilac-600\\/70{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-lilac-600\\/75{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-lilac-600\\/80{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-lilac-600\\/85{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-lilac-600\\/90{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-lilac-600\\/95{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-lilac-700{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / var(--tw-text-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-lilac-700\\/0{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-lilac-700\\/10{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-lilac-700\\/100{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-lilac-700\\/15{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-lilac-700\\/20{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-lilac-700\\/25{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-lilac-700\\/30{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-lilac-700\\/35{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-lilac-700\\/40{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-lilac-700\\/45{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-lilac-700\\/5{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-lilac-700\\/50{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-lilac-700\\/55{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-lilac-700\\/60{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-lilac-700\\/65{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-lilac-700\\/70{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-lilac-700\\/75{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-lilac-700\\/80{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-lilac-700\\/85{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-lilac-700\\/90{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-lilac-700\\/95{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-lilac-800{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / var(--tw-text-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-lilac-800\\/0{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-lilac-800\\/10{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-lilac-800\\/100{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-lilac-800\\/15{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-lilac-800\\/20{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-lilac-800\\/25{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-lilac-800\\/30{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-lilac-800\\/35{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-lilac-800\\/40{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-lilac-800\\/45{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-lilac-800\\/5{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-lilac-800\\/50{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-lilac-800\\/55{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-lilac-800\\/60{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-lilac-800\\/65{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-lilac-800\\/70{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-lilac-800\\/75{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-lilac-800\\/80{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-lilac-800\\/85{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-lilac-800\\/90{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-lilac-800\\/95{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-lilac-900{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / var(--tw-text-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-lilac-900\\/0{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-lilac-900\\/10{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-lilac-900\\/100{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-lilac-900\\/15{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-lilac-900\\/20{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-lilac-900\\/25{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-lilac-900\\/30{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-lilac-900\\/35{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-lilac-900\\/40{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-lilac-900\\/45{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-lilac-900\\/5{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-lilac-900\\/50{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-lilac-900\\/55{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-lilac-900\\/60{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-lilac-900\\/65{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-lilac-900\\/70{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-lilac-900\\/75{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-lilac-900\\/80{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-lilac-900\\/85{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-lilac-900\\/90{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-lilac-900\\/95{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-lilac-950{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / var(--tw-text-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-lilac-950\\/0{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-lilac-950\\/10{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-lilac-950\\/100{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-lilac-950\\/15{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-lilac-950\\/20{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-lilac-950\\/25{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-lilac-950\\/30{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-lilac-950\\/35{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-lilac-950\\/40{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-lilac-950\\/45{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-lilac-950\\/5{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-lilac-950\\/50{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-lilac-950\\/55{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-lilac-950\\/60{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-lilac-950\\/65{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-lilac-950\\/70{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-lilac-950\\/75{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-lilac-950\\/80{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-lilac-950\\/85{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-lilac-950\\/90{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-lilac-950\\/95{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-lilac\\/0{\ncolor: rgb(142 78 198 / 0);\n}\n.text-lilac\\/10{\ncolor: rgb(142 78 198 / 0.1);\n}\n.text-lilac\\/100{\ncolor: rgb(142 78 198 / 1);\n}\n.text-lilac\\/15{\ncolor: rgb(142 78 198 / 0.15);\n}\n.text-lilac\\/20{\ncolor: rgb(142 78 198 / 0.2);\n}\n.text-lilac\\/25{\ncolor: rgb(142 78 198 / 0.25);\n}\n.text-lilac\\/30{\ncolor: rgb(142 78 198 / 0.3);\n}\n.text-lilac\\/35{\ncolor: rgb(142 78 198 / 0.35);\n}\n.text-lilac\\/40{\ncolor: rgb(142 78 198 / 0.4);\n}\n.text-lilac\\/45{\ncolor: rgb(142 78 198 / 0.45);\n}\n.text-lilac\\/5{\ncolor: rgb(142 78 198 / 0.05);\n}\n.text-lilac\\/50{\ncolor: rgb(142 78 198 / 0.5);\n}\n.text-lilac\\/55{\ncolor: rgb(142 78 198 / 0.55);\n}\n.text-lilac\\/60{\ncolor: rgb(142 78 198 / 0.6);\n}\n.text-lilac\\/65{\ncolor: rgb(142 78 198 / 0.65);\n}\n.text-lilac\\/70{\ncolor: rgb(142 78 198 / 0.7);\n}\n.text-lilac\\/75{\ncolor: rgb(142 78 198 / 0.75);\n}\n.text-lilac\\/80{\ncolor: rgb(142 78 198 / 0.8);\n}\n.text-lilac\\/85{\ncolor: rgb(142 78 198 / 0.85);\n}\n.text-lilac\\/90{\ncolor: rgb(142 78 198 / 0.9);\n}\n.text-lilac\\/95{\ncolor: rgb(142 78 198 / 0.95);\n}\n.text-marigold{\n--tw-text-opacity: 1;\ncolor: rgb(255 193 0 / var(--tw-text-opacity));\n}\n.text-marigold-100{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / var(--tw-text-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-marigold-100\\/0{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-marigold-100\\/10{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-marigold-100\\/100{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-marigold-100\\/15{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-marigold-100\\/20{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-marigold-100\\/25{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-marigold-100\\/30{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-marigold-100\\/35{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-marigold-100\\/40{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-marigold-100\\/45{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-marigold-100\\/5{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-marigold-100\\/50{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-marigold-100\\/55{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-marigold-100\\/60{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-marigold-100\\/65{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-marigold-100\\/70{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-marigold-100\\/75{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-marigold-100\\/80{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-marigold-100\\/85{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-marigold-100\\/90{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-marigold-100\\/95{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-marigold-200{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / var(--tw-text-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-marigold-200\\/0{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-marigold-200\\/10{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-marigold-200\\/100{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-marigold-200\\/15{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-marigold-200\\/20{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-marigold-200\\/25{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-marigold-200\\/30{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-marigold-200\\/35{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-marigold-200\\/40{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-marigold-200\\/45{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-marigold-200\\/5{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-marigold-200\\/50{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-marigold-200\\/55{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-marigold-200\\/60{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-marigold-200\\/65{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-marigold-200\\/70{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-marigold-200\\/75{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-marigold-200\\/80{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-marigold-200\\/85{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-marigold-200\\/90{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-marigold-200\\/95{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-marigold-300{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / var(--tw-text-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-marigold-300\\/0{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-marigold-300\\/10{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-marigold-300\\/100{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-marigold-300\\/15{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-marigold-300\\/20{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-marigold-300\\/25{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-marigold-300\\/30{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-marigold-300\\/35{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-marigold-300\\/40{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-marigold-300\\/45{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-marigold-300\\/5{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-marigold-300\\/50{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-marigold-300\\/55{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-marigold-300\\/60{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-marigold-300\\/65{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-marigold-300\\/70{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-marigold-300\\/75{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-marigold-300\\/80{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-marigold-300\\/85{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-marigold-300\\/90{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-marigold-300\\/95{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-marigold-400{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / var(--tw-text-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-marigold-400\\/0{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-marigold-400\\/10{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-marigold-400\\/100{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-marigold-400\\/15{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-marigold-400\\/20{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-marigold-400\\/25{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-marigold-400\\/30{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-marigold-400\\/35{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-marigold-400\\/40{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-marigold-400\\/45{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-marigold-400\\/5{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-marigold-400\\/50{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-marigold-400\\/55{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-marigold-400\\/60{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-marigold-400\\/65{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-marigold-400\\/70{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-marigold-400\\/75{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-marigold-400\\/80{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-marigold-400\\/85{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-marigold-400\\/90{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-marigold-400\\/95{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-marigold-50{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / var(--tw-text-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-marigold-50\\/0{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-marigold-50\\/10{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-marigold-50\\/100{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-marigold-50\\/15{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-marigold-50\\/20{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-marigold-50\\/25{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-marigold-50\\/30{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-marigold-50\\/35{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-marigold-50\\/40{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-marigold-50\\/45{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-marigold-50\\/5{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-marigold-50\\/50{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-marigold-50\\/55{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-marigold-50\\/60{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-marigold-50\\/65{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-marigold-50\\/70{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-marigold-50\\/75{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-marigold-50\\/80{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-marigold-50\\/85{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-marigold-50\\/90{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-marigold-50\\/95{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-marigold-500{\n--tw-text-opacity: 1;\ncolor: color(from #ffc100 srgb r g b / var(--tw-text-opacity));\n}\n.text-marigold-500\\/0{\ncolor: color(from #ffc100 srgb r g b / 0);\n}\n.text-marigold-500\\/10{\ncolor: color(from #ffc100 srgb r g b / 0.1);\n}\n.text-marigold-500\\/100{\ncolor: color(from #ffc100 srgb r g b / 1);\n}\n.text-marigold-500\\/15{\ncolor: color(from #ffc100 srgb r g b / 0.15);\n}\n.text-marigold-500\\/20{\ncolor: color(from #ffc100 srgb r g b / 0.2);\n}\n.text-marigold-500\\/25{\ncolor: color(from #ffc100 srgb r g b / 0.25);\n}\n.text-marigold-500\\/30{\ncolor: color(from #ffc100 srgb r g b / 0.3);\n}\n.text-marigold-500\\/35{\ncolor: color(from #ffc100 srgb r g b / 0.35);\n}\n.text-marigold-500\\/40{\ncolor: color(from #ffc100 srgb r g b / 0.4);\n}\n.text-marigold-500\\/45{\ncolor: color(from #ffc100 srgb r g b / 0.45);\n}\n.text-marigold-500\\/5{\ncolor: color(from #ffc100 srgb r g b / 0.05);\n}\n.text-marigold-500\\/50{\ncolor: color(from #ffc100 srgb r g b / 0.5);\n}\n.text-marigold-500\\/55{\ncolor: color(from #ffc100 srgb r g b / 0.55);\n}\n.text-marigold-500\\/60{\ncolor: color(from #ffc100 srgb r g b / 0.6);\n}\n.text-marigold-500\\/65{\ncolor: color(from #ffc100 srgb r g b / 0.65);\n}\n.text-marigold-500\\/70{\ncolor: color(from #ffc100 srgb r g b / 0.7);\n}\n.text-marigold-500\\/75{\ncolor: color(from #ffc100 srgb r g b / 0.75);\n}\n.text-marigold-500\\/80{\ncolor: color(from #ffc100 srgb r g b / 0.8);\n}\n.text-marigold-500\\/85{\ncolor: color(from #ffc100 srgb r g b / 0.85);\n}\n.text-marigold-500\\/90{\ncolor: color(from #ffc100 srgb r g b / 0.9);\n}\n.text-marigold-500\\/95{\ncolor: color(from #ffc100 srgb r g b / 0.95);\n}\n.text-marigold-600{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / var(--tw-text-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-marigold-600\\/0{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-marigold-600\\/10{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-marigold-600\\/100{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-marigold-600\\/15{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-marigold-600\\/20{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-marigold-600\\/25{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-marigold-600\\/30{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-marigold-600\\/35{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-marigold-600\\/40{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-marigold-600\\/45{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-marigold-600\\/5{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-marigold-600\\/50{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-marigold-600\\/55{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-marigold-600\\/60{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-marigold-600\\/65{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-marigold-600\\/70{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-marigold-600\\/75{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-marigold-600\\/80{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-marigold-600\\/85{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-marigold-600\\/90{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-marigold-600\\/95{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-marigold-700{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / var(--tw-text-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-marigold-700\\/0{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-marigold-700\\/10{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-marigold-700\\/100{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-marigold-700\\/15{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-marigold-700\\/20{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-marigold-700\\/25{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-marigold-700\\/30{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-marigold-700\\/35{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-marigold-700\\/40{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-marigold-700\\/45{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-marigold-700\\/5{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-marigold-700\\/50{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-marigold-700\\/55{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-marigold-700\\/60{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-marigold-700\\/65{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-marigold-700\\/70{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-marigold-700\\/75{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-marigold-700\\/80{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-marigold-700\\/85{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-marigold-700\\/90{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-marigold-700\\/95{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-marigold-800{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / var(--tw-text-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-marigold-800\\/0{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-marigold-800\\/10{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-marigold-800\\/100{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-marigold-800\\/15{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-marigold-800\\/20{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-marigold-800\\/25{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-marigold-800\\/30{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-marigold-800\\/35{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-marigold-800\\/40{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-marigold-800\\/45{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-marigold-800\\/5{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-marigold-800\\/50{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-marigold-800\\/55{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-marigold-800\\/60{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-marigold-800\\/65{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-marigold-800\\/70{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-marigold-800\\/75{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-marigold-800\\/80{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-marigold-800\\/85{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-marigold-800\\/90{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-marigold-800\\/95{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-marigold-900{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / var(--tw-text-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-marigold-900\\/0{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-marigold-900\\/10{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-marigold-900\\/100{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-marigold-900\\/15{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-marigold-900\\/20{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-marigold-900\\/25{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-marigold-900\\/30{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-marigold-900\\/35{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-marigold-900\\/40{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-marigold-900\\/45{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-marigold-900\\/5{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-marigold-900\\/50{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-marigold-900\\/55{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-marigold-900\\/60{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-marigold-900\\/65{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-marigold-900\\/70{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-marigold-900\\/75{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-marigold-900\\/80{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-marigold-900\\/85{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-marigold-900\\/90{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-marigold-900\\/95{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-marigold-950{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / var(--tw-text-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-marigold-950\\/0{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-marigold-950\\/10{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-marigold-950\\/100{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-marigold-950\\/15{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-marigold-950\\/20{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-marigold-950\\/25{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-marigold-950\\/30{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-marigold-950\\/35{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-marigold-950\\/40{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-marigold-950\\/45{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-marigold-950\\/5{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-marigold-950\\/50{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-marigold-950\\/55{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-marigold-950\\/60{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-marigold-950\\/65{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-marigold-950\\/70{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-marigold-950\\/75{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-marigold-950\\/80{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-marigold-950\\/85{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-marigold-950\\/90{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-marigold-950\\/95{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-marigold\\/0{\ncolor: rgb(255 193 0 / 0);\n}\n.text-marigold\\/10{\ncolor: rgb(255 193 0 / 0.1);\n}\n.text-marigold\\/100{\ncolor: rgb(255 193 0 / 1);\n}\n.text-marigold\\/15{\ncolor: rgb(255 193 0 / 0.15);\n}\n.text-marigold\\/20{\ncolor: rgb(255 193 0 / 0.2);\n}\n.text-marigold\\/25{\ncolor: rgb(255 193 0 / 0.25);\n}\n.text-marigold\\/30{\ncolor: rgb(255 193 0 / 0.3);\n}\n.text-marigold\\/35{\ncolor: rgb(255 193 0 / 0.35);\n}\n.text-marigold\\/40{\ncolor: rgb(255 193 0 / 0.4);\n}\n.text-marigold\\/45{\ncolor: rgb(255 193 0 / 0.45);\n}\n.text-marigold\\/5{\ncolor: rgb(255 193 0 / 0.05);\n}\n.text-marigold\\/50{\ncolor: rgb(255 193 0 / 0.5);\n}\n.text-marigold\\/55{\ncolor: rgb(255 193 0 / 0.55);\n}\n.text-marigold\\/60{\ncolor: rgb(255 193 0 / 0.6);\n}\n.text-marigold\\/65{\ncolor: rgb(255 193 0 / 0.65);\n}\n.text-marigold\\/70{\ncolor: rgb(255 193 0 / 0.7);\n}\n.text-marigold\\/75{\ncolor: rgb(255 193 0 / 0.75);\n}\n.text-marigold\\/80{\ncolor: rgb(255 193 0 / 0.8);\n}\n.text-marigold\\/85{\ncolor: rgb(255 193 0 / 0.85);\n}\n.text-marigold\\/90{\ncolor: rgb(255 193 0 / 0.9);\n}\n.text-marigold\\/95{\ncolor: rgb(255 193 0 / 0.95);\n}\n.text-muted{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)) 45%, color(from var(--tint) srgb r g b / var(--tw-text-opacity)));\n}\n.text-muted\\/0{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0) 45%, color(from var(--tint) srgb r g b / 0));\n}\n.text-muted\\/10{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.1) 45%, color(from var(--tint) srgb r g b / 0.1));\n}\n.text-muted\\/100{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 1) 45%, color(from var(--tint) srgb r g b / 1));\n}\n.text-muted\\/15{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.15) 45%, color(from var(--tint) srgb r g b / 0.15));\n}\n.text-muted\\/20{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.2) 45%, color(from var(--tint) srgb r g b / 0.2));\n}\n.text-muted\\/25{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.25) 45%, color(from var(--tint) srgb r g b / 0.25));\n}\n.text-muted\\/30{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.3) 45%, color(from var(--tint) srgb r g b / 0.3));\n}\n.text-muted\\/35{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.35) 45%, color(from var(--tint) srgb r g b / 0.35));\n}\n.text-muted\\/40{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.4) 45%, color(from var(--tint) srgb r g b / 0.4));\n}\n.text-muted\\/45{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.45) 45%, color(from var(--tint) srgb r g b / 0.45));\n}\n.text-muted\\/5{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.05) 45%, color(from var(--tint) srgb r g b / 0.05));\n}\n.text-muted\\/50{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.5) 45%, color(from var(--tint) srgb r g b / 0.5));\n}\n.text-muted\\/55{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.55) 45%, color(from var(--tint) srgb r g b / 0.55));\n}\n.text-muted\\/60{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.6) 45%, color(from var(--tint) srgb r g b / 0.6));\n}\n.text-muted\\/65{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.65) 45%, color(from var(--tint) srgb r g b / 0.65));\n}\n.text-muted\\/70{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.7) 45%, color(from var(--tint) srgb r g b / 0.7));\n}\n.text-muted\\/75{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.75) 45%, color(from var(--tint) srgb r g b / 0.75));\n}\n.text-muted\\/80{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.8) 45%, color(from var(--tint) srgb r g b / 0.8));\n}\n.text-muted\\/85{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.85) 45%, color(from var(--tint) srgb r g b / 0.85));\n}\n.text-muted\\/90{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.9) 45%, color(from var(--tint) srgb r g b / 0.9));\n}\n.text-muted\\/95{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.95) 45%, color(from var(--tint) srgb r g b / 0.95));\n}\n.text-olive{\n--tw-text-opacity: 1;\ncolor: rgb(118 155 141 / var(--tw-text-opacity));\n}\n.text-olive-100{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / var(--tw-text-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-olive-100\\/0{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-olive-100\\/10{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-olive-100\\/100{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-olive-100\\/15{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-olive-100\\/20{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-olive-100\\/25{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-olive-100\\/30{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-olive-100\\/35{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-olive-100\\/40{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-olive-100\\/45{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-olive-100\\/5{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-olive-100\\/50{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-olive-100\\/55{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-olive-100\\/60{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-olive-100\\/65{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-olive-100\\/70{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-olive-100\\/75{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-olive-100\\/80{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-olive-100\\/85{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-olive-100\\/90{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-olive-100\\/95{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-olive-200{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / var(--tw-text-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-olive-200\\/0{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-olive-200\\/10{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-olive-200\\/100{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-olive-200\\/15{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-olive-200\\/20{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-olive-200\\/25{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-olive-200\\/30{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-olive-200\\/35{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-olive-200\\/40{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-olive-200\\/45{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-olive-200\\/5{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-olive-200\\/50{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-olive-200\\/55{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-olive-200\\/60{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-olive-200\\/65{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-olive-200\\/70{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-olive-200\\/75{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-olive-200\\/80{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-olive-200\\/85{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-olive-200\\/90{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-olive-200\\/95{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-olive-300{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / var(--tw-text-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-olive-300\\/0{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-olive-300\\/10{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-olive-300\\/100{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-olive-300\\/15{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-olive-300\\/20{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-olive-300\\/25{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-olive-300\\/30{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-olive-300\\/35{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-olive-300\\/40{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-olive-300\\/45{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-olive-300\\/5{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-olive-300\\/50{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-olive-300\\/55{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-olive-300\\/60{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-olive-300\\/65{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-olive-300\\/70{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-olive-300\\/75{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-olive-300\\/80{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-olive-300\\/85{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-olive-300\\/90{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-olive-300\\/95{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-olive-400{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / var(--tw-text-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-olive-400\\/0{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-olive-400\\/10{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-olive-400\\/100{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-olive-400\\/15{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-olive-400\\/20{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-olive-400\\/25{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-olive-400\\/30{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-olive-400\\/35{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-olive-400\\/40{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-olive-400\\/45{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-olive-400\\/5{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-olive-400\\/50{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-olive-400\\/55{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-olive-400\\/60{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-olive-400\\/65{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-olive-400\\/70{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-olive-400\\/75{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-olive-400\\/80{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-olive-400\\/85{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-olive-400\\/90{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-olive-400\\/95{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-olive-50{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / var(--tw-text-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-olive-50\\/0{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-olive-50\\/10{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-olive-50\\/100{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-olive-50\\/15{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-olive-50\\/20{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-olive-50\\/25{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-olive-50\\/30{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-olive-50\\/35{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-olive-50\\/40{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-olive-50\\/45{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-olive-50\\/5{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-olive-50\\/50{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-olive-50\\/55{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-olive-50\\/60{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-olive-50\\/65{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-olive-50\\/70{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-olive-50\\/75{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-olive-50\\/80{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-olive-50\\/85{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-olive-50\\/90{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-olive-50\\/95{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-olive-500{\n--tw-text-opacity: 1;\ncolor: color(from #769b8d srgb r g b / var(--tw-text-opacity));\n}\n.text-olive-500\\/0{\ncolor: color(from #769b8d srgb r g b / 0);\n}\n.text-olive-500\\/10{\ncolor: color(from #769b8d srgb r g b / 0.1);\n}\n.text-olive-500\\/100{\ncolor: color(from #769b8d srgb r g b / 1);\n}\n.text-olive-500\\/15{\ncolor: color(from #769b8d srgb r g b / 0.15);\n}\n.text-olive-500\\/20{\ncolor: color(from #769b8d srgb r g b / 0.2);\n}\n.text-olive-500\\/25{\ncolor: color(from #769b8d srgb r g b / 0.25);\n}\n.text-olive-500\\/30{\ncolor: color(from #769b8d srgb r g b / 0.3);\n}\n.text-olive-500\\/35{\ncolor: color(from #769b8d srgb r g b / 0.35);\n}\n.text-olive-500\\/40{\ncolor: color(from #769b8d srgb r g b / 0.4);\n}\n.text-olive-500\\/45{\ncolor: color(from #769b8d srgb r g b / 0.45);\n}\n.text-olive-500\\/5{\ncolor: color(from #769b8d srgb r g b / 0.05);\n}\n.text-olive-500\\/50{\ncolor: color(from #769b8d srgb r g b / 0.5);\n}\n.text-olive-500\\/55{\ncolor: color(from #769b8d srgb r g b / 0.55);\n}\n.text-olive-500\\/60{\ncolor: color(from #769b8d srgb r g b / 0.6);\n}\n.text-olive-500\\/65{\ncolor: color(from #769b8d srgb r g b / 0.65);\n}\n.text-olive-500\\/70{\ncolor: color(from #769b8d srgb r g b / 0.7);\n}\n.text-olive-500\\/75{\ncolor: color(from #769b8d srgb r g b / 0.75);\n}\n.text-olive-500\\/80{\ncolor: color(from #769b8d srgb r g b / 0.8);\n}\n.text-olive-500\\/85{\ncolor: color(from #769b8d srgb r g b / 0.85);\n}\n.text-olive-500\\/90{\ncolor: color(from #769b8d srgb r g b / 0.9);\n}\n.text-olive-500\\/95{\ncolor: color(from #769b8d srgb r g b / 0.95);\n}\n.text-olive-600{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / var(--tw-text-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-olive-600\\/0{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-olive-600\\/10{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-olive-600\\/100{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-olive-600\\/15{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-olive-600\\/20{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-olive-600\\/25{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-olive-600\\/30{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-olive-600\\/35{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-olive-600\\/40{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-olive-600\\/45{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-olive-600\\/5{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-olive-600\\/50{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-olive-600\\/55{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-olive-600\\/60{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-olive-600\\/65{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-olive-600\\/70{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-olive-600\\/75{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-olive-600\\/80{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-olive-600\\/85{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-olive-600\\/90{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-olive-600\\/95{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-olive-700{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / var(--tw-text-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-olive-700\\/0{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-olive-700\\/10{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-olive-700\\/100{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-olive-700\\/15{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-olive-700\\/20{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-olive-700\\/25{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-olive-700\\/30{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-olive-700\\/35{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-olive-700\\/40{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-olive-700\\/45{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-olive-700\\/5{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-olive-700\\/50{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-olive-700\\/55{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-olive-700\\/60{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-olive-700\\/65{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-olive-700\\/70{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-olive-700\\/75{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-olive-700\\/80{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-olive-700\\/85{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-olive-700\\/90{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-olive-700\\/95{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-olive-800{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / var(--tw-text-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-olive-800\\/0{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-olive-800\\/10{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-olive-800\\/100{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-olive-800\\/15{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-olive-800\\/20{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-olive-800\\/25{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-olive-800\\/30{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-olive-800\\/35{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-olive-800\\/40{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-olive-800\\/45{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-olive-800\\/5{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-olive-800\\/50{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-olive-800\\/55{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-olive-800\\/60{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-olive-800\\/65{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-olive-800\\/70{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-olive-800\\/75{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-olive-800\\/80{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-olive-800\\/85{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-olive-800\\/90{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-olive-800\\/95{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-olive-900{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / var(--tw-text-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-olive-900\\/0{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-olive-900\\/10{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-olive-900\\/100{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-olive-900\\/15{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-olive-900\\/20{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-olive-900\\/25{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-olive-900\\/30{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-olive-900\\/35{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-olive-900\\/40{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-olive-900\\/45{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-olive-900\\/5{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-olive-900\\/50{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-olive-900\\/55{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-olive-900\\/60{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-olive-900\\/65{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-olive-900\\/70{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-olive-900\\/75{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-olive-900\\/80{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-olive-900\\/85{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-olive-900\\/90{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-olive-900\\/95{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-olive-950{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / var(--tw-text-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-olive-950\\/0{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-olive-950\\/10{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-olive-950\\/100{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-olive-950\\/15{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-olive-950\\/20{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-olive-950\\/25{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-olive-950\\/30{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-olive-950\\/35{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-olive-950\\/40{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-olive-950\\/45{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-olive-950\\/5{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-olive-950\\/50{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-olive-950\\/55{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-olive-950\\/60{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-olive-950\\/65{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-olive-950\\/70{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-olive-950\\/75{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-olive-950\\/80{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-olive-950\\/85{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-olive-950\\/90{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-olive-950\\/95{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-olive\\/0{\ncolor: rgb(118 155 141 / 0);\n}\n.text-olive\\/10{\ncolor: rgb(118 155 141 / 0.1);\n}\n.text-olive\\/100{\ncolor: rgb(118 155 141 / 1);\n}\n.text-olive\\/15{\ncolor: rgb(118 155 141 / 0.15);\n}\n.text-olive\\/20{\ncolor: rgb(118 155 141 / 0.2);\n}\n.text-olive\\/25{\ncolor: rgb(118 155 141 / 0.25);\n}\n.text-olive\\/30{\ncolor: rgb(118 155 141 / 0.3);\n}\n.text-olive\\/35{\ncolor: rgb(118 155 141 / 0.35);\n}\n.text-olive\\/40{\ncolor: rgb(118 155 141 / 0.4);\n}\n.text-olive\\/45{\ncolor: rgb(118 155 141 / 0.45);\n}\n.text-olive\\/5{\ncolor: rgb(118 155 141 / 0.05);\n}\n.text-olive\\/50{\ncolor: rgb(118 155 141 / 0.5);\n}\n.text-olive\\/55{\ncolor: rgb(118 155 141 / 0.55);\n}\n.text-olive\\/60{\ncolor: rgb(118 155 141 / 0.6);\n}\n.text-olive\\/65{\ncolor: rgb(118 155 141 / 0.65);\n}\n.text-olive\\/70{\ncolor: rgb(118 155 141 / 0.7);\n}\n.text-olive\\/75{\ncolor: rgb(118 155 141 / 0.75);\n}\n.text-olive\\/80{\ncolor: rgb(118 155 141 / 0.8);\n}\n.text-olive\\/85{\ncolor: rgb(118 155 141 / 0.85);\n}\n.text-olive\\/90{\ncolor: rgb(118 155 141 / 0.9);\n}\n.text-olive\\/95{\ncolor: rgb(118 155 141 / 0.95);\n}\n.text-primary{\ncolor: var(--primary);\n}\n.text-primary-100{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-text-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-primary-100\\/0{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-primary-100\\/10{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-primary-100\\/100{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-primary-100\\/15{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-primary-100\\/20{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-primary-100\\/25{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-primary-100\\/30{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-primary-100\\/35{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-primary-100\\/40{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-primary-100\\/45{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-primary-100\\/5{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-primary-100\\/50{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-primary-100\\/55{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-primary-100\\/60{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-primary-100\\/65{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-primary-100\\/70{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-primary-100\\/75{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-primary-100\\/80{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-primary-100\\/85{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-primary-100\\/90{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-primary-100\\/95{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-primary-200{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-text-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-primary-200\\/0{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-primary-200\\/10{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-primary-200\\/100{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-primary-200\\/15{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-primary-200\\/20{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-primary-200\\/25{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-primary-200\\/30{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-primary-200\\/35{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-primary-200\\/40{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-primary-200\\/45{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-primary-200\\/5{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-primary-200\\/50{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-primary-200\\/55{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-primary-200\\/60{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-primary-200\\/65{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-primary-200\\/70{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-primary-200\\/75{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-primary-200\\/80{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-primary-200\\/85{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-primary-200\\/90{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-primary-200\\/95{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-primary-300{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-text-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-primary-300\\/0{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-primary-300\\/10{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-primary-300\\/100{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-primary-300\\/15{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-primary-300\\/20{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-primary-300\\/25{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-primary-300\\/30{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-primary-300\\/35{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-primary-300\\/40{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-primary-300\\/45{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-primary-300\\/5{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-primary-300\\/50{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-primary-300\\/55{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-primary-300\\/60{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-primary-300\\/65{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-primary-300\\/70{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-primary-300\\/75{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-primary-300\\/80{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-primary-300\\/85{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-primary-300\\/90{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-primary-300\\/95{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-primary-400{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-text-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-primary-400\\/0{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-primary-400\\/10{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-primary-400\\/100{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-primary-400\\/15{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-primary-400\\/20{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-primary-400\\/25{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-primary-400\\/30{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-primary-400\\/35{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-primary-400\\/40{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-primary-400\\/45{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-primary-400\\/5{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-primary-400\\/50{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-primary-400\\/55{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-primary-400\\/60{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-primary-400\\/65{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-primary-400\\/70{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-primary-400\\/75{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-primary-400\\/80{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-primary-400\\/85{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-primary-400\\/90{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-primary-400\\/95{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-primary-50{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-text-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-primary-50\\/0{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-primary-50\\/10{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-primary-50\\/100{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-primary-50\\/15{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-primary-50\\/20{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-primary-50\\/25{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-primary-50\\/30{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-primary-50\\/35{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-primary-50\\/40{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-primary-50\\/45{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-primary-50\\/5{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-primary-50\\/50{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-primary-50\\/55{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-primary-50\\/60{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-primary-50\\/65{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-primary-50\\/70{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-primary-50\\/75{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-primary-50\\/80{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-primary-50\\/85{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-primary-50\\/90{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-primary-50\\/95{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-primary-500{\n--tw-text-opacity: 1;\ncolor: color(from var(--primary) srgb r g b / var(--tw-text-opacity));\n}\n.text-primary-500\\/0{\ncolor: color(from var(--primary) srgb r g b / 0);\n}\n.text-primary-500\\/10{\ncolor: color(from var(--primary) srgb r g b / 0.1);\n}\n.text-primary-500\\/100{\ncolor: color(from var(--primary) srgb r g b / 1);\n}\n.text-primary-500\\/15{\ncolor: color(from var(--primary) srgb r g b / 0.15);\n}\n.text-primary-500\\/20{\ncolor: color(from var(--primary) srgb r g b / 0.2);\n}\n.text-primary-500\\/25{\ncolor: color(from var(--primary) srgb r g b / 0.25);\n}\n.text-primary-500\\/30{\ncolor: color(from var(--primary) srgb r g b / 0.3);\n}\n.text-primary-500\\/35{\ncolor: color(from var(--primary) srgb r g b / 0.35);\n}\n.text-primary-500\\/40{\ncolor: color(from var(--primary) srgb r g b / 0.4);\n}\n.text-primary-500\\/45{\ncolor: color(from var(--primary) srgb r g b / 0.45);\n}\n.text-primary-500\\/5{\ncolor: color(from var(--primary) srgb r g b / 0.05);\n}\n.text-primary-500\\/50{\ncolor: color(from var(--primary) srgb r g b / 0.5);\n}\n.text-primary-500\\/55{\ncolor: color(from var(--primary) srgb r g b / 0.55);\n}\n.text-primary-500\\/60{\ncolor: color(from var(--primary) srgb r g b / 0.6);\n}\n.text-primary-500\\/65{\ncolor: color(from var(--primary) srgb r g b / 0.65);\n}\n.text-primary-500\\/70{\ncolor: color(from var(--primary) srgb r g b / 0.7);\n}\n.text-primary-500\\/75{\ncolor: color(from var(--primary) srgb r g b / 0.75);\n}\n.text-primary-500\\/80{\ncolor: color(from var(--primary) srgb r g b / 0.8);\n}\n.text-primary-500\\/85{\ncolor: color(from var(--primary) srgb r g b / 0.85);\n}\n.text-primary-500\\/90{\ncolor: color(from var(--primary) srgb r g b / 0.9);\n}\n.text-primary-500\\/95{\ncolor: color(from var(--primary) srgb r g b / 0.95);\n}\n.text-primary-600{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-text-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-primary-600\\/0{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-primary-600\\/10{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-primary-600\\/100{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-primary-600\\/15{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-primary-600\\/20{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-primary-600\\/25{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-primary-600\\/30{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-primary-600\\/35{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-primary-600\\/40{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-primary-600\\/45{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-primary-600\\/5{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-primary-600\\/50{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-primary-600\\/55{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-primary-600\\/60{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-primary-600\\/65{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-primary-600\\/70{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-primary-600\\/75{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-primary-600\\/80{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-primary-600\\/85{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-primary-600\\/90{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-primary-600\\/95{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-primary-700{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-text-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-primary-700\\/0{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-primary-700\\/10{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-primary-700\\/100{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-primary-700\\/15{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-primary-700\\/20{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-primary-700\\/25{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-primary-700\\/30{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-primary-700\\/35{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-primary-700\\/40{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-primary-700\\/45{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-primary-700\\/5{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-primary-700\\/50{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-primary-700\\/55{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-primary-700\\/60{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-primary-700\\/65{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-primary-700\\/70{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-primary-700\\/75{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-primary-700\\/80{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-primary-700\\/85{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-primary-700\\/90{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-primary-700\\/95{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-primary-800{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-text-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-primary-800\\/0{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-primary-800\\/10{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-primary-800\\/100{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-primary-800\\/15{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-primary-800\\/20{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-primary-800\\/25{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-primary-800\\/30{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-primary-800\\/35{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-primary-800\\/40{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-primary-800\\/45{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-primary-800\\/5{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-primary-800\\/50{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-primary-800\\/55{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-primary-800\\/60{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-primary-800\\/65{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-primary-800\\/70{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-primary-800\\/75{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-primary-800\\/80{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-primary-800\\/85{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-primary-800\\/90{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-primary-800\\/95{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-primary-900{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-text-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-primary-900\\/0{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-primary-900\\/10{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-primary-900\\/100{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-primary-900\\/15{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-primary-900\\/20{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-primary-900\\/25{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-primary-900\\/30{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-primary-900\\/35{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-primary-900\\/40{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-primary-900\\/45{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-primary-900\\/5{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-primary-900\\/50{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-primary-900\\/55{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-primary-900\\/60{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-primary-900\\/65{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-primary-900\\/70{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-primary-900\\/75{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-primary-900\\/80{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-primary-900\\/85{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-primary-900\\/90{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-primary-900\\/95{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-primary-950{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-text-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-primary-950\\/0{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-primary-950\\/10{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-primary-950\\/100{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-primary-950\\/15{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-primary-950\\/20{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-primary-950\\/25{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-primary-950\\/30{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-primary-950\\/35{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-primary-950\\/40{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-primary-950\\/45{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-primary-950\\/5{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-primary-950\\/50{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-primary-950\\/55{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-primary-950\\/60{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-primary-950\\/65{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-primary-950\\/70{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-primary-950\\/75{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-primary-950\\/80{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-primary-950\\/85{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-primary-950\\/90{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-primary-950\\/95{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-pumpkin{\n--tw-text-opacity: 1;\ncolor: rgb(247 106 21 / var(--tw-text-opacity));\n}\n.text-pumpkin-100{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / var(--tw-text-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-pumpkin-100\\/0{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-pumpkin-100\\/10{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-pumpkin-100\\/100{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-pumpkin-100\\/15{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-pumpkin-100\\/20{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-pumpkin-100\\/25{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-pumpkin-100\\/30{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-pumpkin-100\\/35{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-pumpkin-100\\/40{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-pumpkin-100\\/45{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-pumpkin-100\\/5{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-pumpkin-100\\/50{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-pumpkin-100\\/55{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-pumpkin-100\\/60{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-pumpkin-100\\/65{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-pumpkin-100\\/70{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-pumpkin-100\\/75{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-pumpkin-100\\/80{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-pumpkin-100\\/85{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-pumpkin-100\\/90{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-pumpkin-100\\/95{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-pumpkin-200{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / var(--tw-text-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-pumpkin-200\\/0{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-pumpkin-200\\/10{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-pumpkin-200\\/100{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-pumpkin-200\\/15{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-pumpkin-200\\/20{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-pumpkin-200\\/25{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-pumpkin-200\\/30{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-pumpkin-200\\/35{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-pumpkin-200\\/40{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-pumpkin-200\\/45{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-pumpkin-200\\/5{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-pumpkin-200\\/50{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-pumpkin-200\\/55{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-pumpkin-200\\/60{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-pumpkin-200\\/65{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-pumpkin-200\\/70{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-pumpkin-200\\/75{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-pumpkin-200\\/80{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-pumpkin-200\\/85{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-pumpkin-200\\/90{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-pumpkin-200\\/95{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-pumpkin-300{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / var(--tw-text-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-pumpkin-300\\/0{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-pumpkin-300\\/10{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-pumpkin-300\\/100{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-pumpkin-300\\/15{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-pumpkin-300\\/20{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-pumpkin-300\\/25{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-pumpkin-300\\/30{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-pumpkin-300\\/35{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-pumpkin-300\\/40{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-pumpkin-300\\/45{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-pumpkin-300\\/5{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-pumpkin-300\\/50{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-pumpkin-300\\/55{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-pumpkin-300\\/60{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-pumpkin-300\\/65{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-pumpkin-300\\/70{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-pumpkin-300\\/75{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-pumpkin-300\\/80{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-pumpkin-300\\/85{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-pumpkin-300\\/90{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-pumpkin-300\\/95{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-pumpkin-400{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / var(--tw-text-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-pumpkin-400\\/0{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-pumpkin-400\\/10{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-pumpkin-400\\/100{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-pumpkin-400\\/15{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-pumpkin-400\\/20{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-pumpkin-400\\/25{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-pumpkin-400\\/30{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-pumpkin-400\\/35{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-pumpkin-400\\/40{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-pumpkin-400\\/45{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-pumpkin-400\\/5{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-pumpkin-400\\/50{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-pumpkin-400\\/55{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-pumpkin-400\\/60{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-pumpkin-400\\/65{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-pumpkin-400\\/70{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-pumpkin-400\\/75{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-pumpkin-400\\/80{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-pumpkin-400\\/85{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-pumpkin-400\\/90{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-pumpkin-400\\/95{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-pumpkin-50{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / var(--tw-text-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-pumpkin-50\\/0{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-pumpkin-50\\/10{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-pumpkin-50\\/100{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-pumpkin-50\\/15{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-pumpkin-50\\/20{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-pumpkin-50\\/25{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-pumpkin-50\\/30{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-pumpkin-50\\/35{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-pumpkin-50\\/40{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-pumpkin-50\\/45{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-pumpkin-50\\/5{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-pumpkin-50\\/50{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-pumpkin-50\\/55{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-pumpkin-50\\/60{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-pumpkin-50\\/65{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-pumpkin-50\\/70{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-pumpkin-50\\/75{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-pumpkin-50\\/80{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-pumpkin-50\\/85{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-pumpkin-50\\/90{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-pumpkin-50\\/95{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-pumpkin-500{\n--tw-text-opacity: 1;\ncolor: color(from #f76a15 srgb r g b / var(--tw-text-opacity));\n}\n.text-pumpkin-500\\/0{\ncolor: color(from #f76a15 srgb r g b / 0);\n}\n.text-pumpkin-500\\/10{\ncolor: color(from #f76a15 srgb r g b / 0.1);\n}\n.text-pumpkin-500\\/100{\ncolor: color(from #f76a15 srgb r g b / 1);\n}\n.text-pumpkin-500\\/15{\ncolor: color(from #f76a15 srgb r g b / 0.15);\n}\n.text-pumpkin-500\\/20{\ncolor: color(from #f76a15 srgb r g b / 0.2);\n}\n.text-pumpkin-500\\/25{\ncolor: color(from #f76a15 srgb r g b / 0.25);\n}\n.text-pumpkin-500\\/30{\ncolor: color(from #f76a15 srgb r g b / 0.3);\n}\n.text-pumpkin-500\\/35{\ncolor: color(from #f76a15 srgb r g b / 0.35);\n}\n.text-pumpkin-500\\/40{\ncolor: color(from #f76a15 srgb r g b / 0.4);\n}\n.text-pumpkin-500\\/45{\ncolor: color(from #f76a15 srgb r g b / 0.45);\n}\n.text-pumpkin-500\\/5{\ncolor: color(from #f76a15 srgb r g b / 0.05);\n}\n.text-pumpkin-500\\/50{\ncolor: color(from #f76a15 srgb r g b / 0.5);\n}\n.text-pumpkin-500\\/55{\ncolor: color(from #f76a15 srgb r g b / 0.55);\n}\n.text-pumpkin-500\\/60{\ncolor: color(from #f76a15 srgb r g b / 0.6);\n}\n.text-pumpkin-500\\/65{\ncolor: color(from #f76a15 srgb r g b / 0.65);\n}\n.text-pumpkin-500\\/70{\ncolor: color(from #f76a15 srgb r g b / 0.7);\n}\n.text-pumpkin-500\\/75{\ncolor: color(from #f76a15 srgb r g b / 0.75);\n}\n.text-pumpkin-500\\/80{\ncolor: color(from #f76a15 srgb r g b / 0.8);\n}\n.text-pumpkin-500\\/85{\ncolor: color(from #f76a15 srgb r g b / 0.85);\n}\n.text-pumpkin-500\\/90{\ncolor: color(from #f76a15 srgb r g b / 0.9);\n}\n.text-pumpkin-500\\/95{\ncolor: color(from #f76a15 srgb r g b / 0.95);\n}\n.text-pumpkin-600{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / var(--tw-text-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-pumpkin-600\\/0{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-pumpkin-600\\/10{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-pumpkin-600\\/100{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-pumpkin-600\\/15{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-pumpkin-600\\/20{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-pumpkin-600\\/25{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-pumpkin-600\\/30{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-pumpkin-600\\/35{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-pumpkin-600\\/40{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-pumpkin-600\\/45{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-pumpkin-600\\/5{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-pumpkin-600\\/50{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-pumpkin-600\\/55{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-pumpkin-600\\/60{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-pumpkin-600\\/65{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-pumpkin-600\\/70{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-pumpkin-600\\/75{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-pumpkin-600\\/80{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-pumpkin-600\\/85{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-pumpkin-600\\/90{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-pumpkin-600\\/95{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-pumpkin-700{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / var(--tw-text-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-pumpkin-700\\/0{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-pumpkin-700\\/10{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-pumpkin-700\\/100{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-pumpkin-700\\/15{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-pumpkin-700\\/20{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-pumpkin-700\\/25{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-pumpkin-700\\/30{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-pumpkin-700\\/35{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-pumpkin-700\\/40{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-pumpkin-700\\/45{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-pumpkin-700\\/5{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-pumpkin-700\\/50{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-pumpkin-700\\/55{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-pumpkin-700\\/60{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-pumpkin-700\\/65{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-pumpkin-700\\/70{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-pumpkin-700\\/75{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-pumpkin-700\\/80{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-pumpkin-700\\/85{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-pumpkin-700\\/90{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-pumpkin-700\\/95{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-pumpkin-800{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / var(--tw-text-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-pumpkin-800\\/0{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-pumpkin-800\\/10{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-pumpkin-800\\/100{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-pumpkin-800\\/15{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-pumpkin-800\\/20{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-pumpkin-800\\/25{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-pumpkin-800\\/30{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-pumpkin-800\\/35{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-pumpkin-800\\/40{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-pumpkin-800\\/45{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-pumpkin-800\\/5{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-pumpkin-800\\/50{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-pumpkin-800\\/55{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-pumpkin-800\\/60{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-pumpkin-800\\/65{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-pumpkin-800\\/70{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-pumpkin-800\\/75{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-pumpkin-800\\/80{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-pumpkin-800\\/85{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-pumpkin-800\\/90{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-pumpkin-800\\/95{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-pumpkin-900{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / var(--tw-text-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-pumpkin-900\\/0{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-pumpkin-900\\/10{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-pumpkin-900\\/100{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-pumpkin-900\\/15{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-pumpkin-900\\/20{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-pumpkin-900\\/25{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-pumpkin-900\\/30{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-pumpkin-900\\/35{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-pumpkin-900\\/40{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-pumpkin-900\\/45{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-pumpkin-900\\/5{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-pumpkin-900\\/50{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-pumpkin-900\\/55{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-pumpkin-900\\/60{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-pumpkin-900\\/65{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-pumpkin-900\\/70{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-pumpkin-900\\/75{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-pumpkin-900\\/80{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-pumpkin-900\\/85{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-pumpkin-900\\/90{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-pumpkin-900\\/95{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-pumpkin-950{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / var(--tw-text-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-pumpkin-950\\/0{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-pumpkin-950\\/10{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-pumpkin-950\\/100{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-pumpkin-950\\/15{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-pumpkin-950\\/20{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-pumpkin-950\\/25{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-pumpkin-950\\/30{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-pumpkin-950\\/35{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-pumpkin-950\\/40{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-pumpkin-950\\/45{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-pumpkin-950\\/5{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-pumpkin-950\\/50{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-pumpkin-950\\/55{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-pumpkin-950\\/60{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-pumpkin-950\\/65{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-pumpkin-950\\/70{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-pumpkin-950\\/75{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-pumpkin-950\\/80{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-pumpkin-950\\/85{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-pumpkin-950\\/90{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-pumpkin-950\\/95{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-pumpkin\\/0{\ncolor: rgb(247 106 21 / 0);\n}\n.text-pumpkin\\/10{\ncolor: rgb(247 106 21 / 0.1);\n}\n.text-pumpkin\\/100{\ncolor: rgb(247 106 21 / 1);\n}\n.text-pumpkin\\/15{\ncolor: rgb(247 106 21 / 0.15);\n}\n.text-pumpkin\\/20{\ncolor: rgb(247 106 21 / 0.2);\n}\n.text-pumpkin\\/25{\ncolor: rgb(247 106 21 / 0.25);\n}\n.text-pumpkin\\/30{\ncolor: rgb(247 106 21 / 0.3);\n}\n.text-pumpkin\\/35{\ncolor: rgb(247 106 21 / 0.35);\n}\n.text-pumpkin\\/40{\ncolor: rgb(247 106 21 / 0.4);\n}\n.text-pumpkin\\/45{\ncolor: rgb(247 106 21 / 0.45);\n}\n.text-pumpkin\\/5{\ncolor: rgb(247 106 21 / 0.05);\n}\n.text-pumpkin\\/50{\ncolor: rgb(247 106 21 / 0.5);\n}\n.text-pumpkin\\/55{\ncolor: rgb(247 106 21 / 0.55);\n}\n.text-pumpkin\\/60{\ncolor: rgb(247 106 21 / 0.6);\n}\n.text-pumpkin\\/65{\ncolor: rgb(247 106 21 / 0.65);\n}\n.text-pumpkin\\/70{\ncolor: rgb(247 106 21 / 0.7);\n}\n.text-pumpkin\\/75{\ncolor: rgb(247 106 21 / 0.75);\n}\n.text-pumpkin\\/80{\ncolor: rgb(247 106 21 / 0.8);\n}\n.text-pumpkin\\/85{\ncolor: rgb(247 106 21 / 0.85);\n}\n.text-pumpkin\\/90{\ncolor: rgb(247 106 21 / 0.9);\n}\n.text-pumpkin\\/95{\ncolor: rgb(247 106 21 / 0.95);\n}\n.text-sand{\n--tw-text-opacity: 1;\ncolor: rgb(155 151 137 / var(--tw-text-opacity));\n}\n.text-sand-100{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / var(--tw-text-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-sand-100\\/0{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-sand-100\\/10{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-sand-100\\/100{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-sand-100\\/15{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-sand-100\\/20{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-sand-100\\/25{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-sand-100\\/30{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-sand-100\\/35{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-sand-100\\/40{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-sand-100\\/45{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-sand-100\\/5{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-sand-100\\/50{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-sand-100\\/55{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-sand-100\\/60{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-sand-100\\/65{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-sand-100\\/70{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-sand-100\\/75{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-sand-100\\/80{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-sand-100\\/85{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-sand-100\\/90{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-sand-100\\/95{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-sand-200{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / var(--tw-text-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-sand-200\\/0{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-sand-200\\/10{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-sand-200\\/100{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-sand-200\\/15{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-sand-200\\/20{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-sand-200\\/25{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-sand-200\\/30{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-sand-200\\/35{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-sand-200\\/40{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-sand-200\\/45{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-sand-200\\/5{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-sand-200\\/50{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-sand-200\\/55{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-sand-200\\/60{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-sand-200\\/65{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-sand-200\\/70{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-sand-200\\/75{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-sand-200\\/80{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-sand-200\\/85{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-sand-200\\/90{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-sand-200\\/95{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-sand-300{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / var(--tw-text-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-sand-300\\/0{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-sand-300\\/10{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-sand-300\\/100{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-sand-300\\/15{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-sand-300\\/20{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-sand-300\\/25{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-sand-300\\/30{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-sand-300\\/35{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-sand-300\\/40{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-sand-300\\/45{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-sand-300\\/5{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-sand-300\\/50{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-sand-300\\/55{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-sand-300\\/60{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-sand-300\\/65{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-sand-300\\/70{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-sand-300\\/75{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-sand-300\\/80{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-sand-300\\/85{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-sand-300\\/90{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-sand-300\\/95{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-sand-400{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / var(--tw-text-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-sand-400\\/0{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-sand-400\\/10{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-sand-400\\/100{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-sand-400\\/15{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-sand-400\\/20{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-sand-400\\/25{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-sand-400\\/30{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-sand-400\\/35{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-sand-400\\/40{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-sand-400\\/45{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-sand-400\\/5{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-sand-400\\/50{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-sand-400\\/55{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-sand-400\\/60{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-sand-400\\/65{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-sand-400\\/70{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-sand-400\\/75{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-sand-400\\/80{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-sand-400\\/85{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-sand-400\\/90{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-sand-400\\/95{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-sand-50{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / var(--tw-text-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-sand-50\\/0{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-sand-50\\/10{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-sand-50\\/100{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-sand-50\\/15{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-sand-50\\/20{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-sand-50\\/25{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-sand-50\\/30{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-sand-50\\/35{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-sand-50\\/40{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-sand-50\\/45{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-sand-50\\/5{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-sand-50\\/50{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-sand-50\\/55{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-sand-50\\/60{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-sand-50\\/65{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-sand-50\\/70{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-sand-50\\/75{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-sand-50\\/80{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-sand-50\\/85{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-sand-50\\/90{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-sand-50\\/95{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-sand-500{\n--tw-text-opacity: 1;\ncolor: color(from #9b9789 srgb r g b / var(--tw-text-opacity));\n}\n.text-sand-500\\/0{\ncolor: color(from #9b9789 srgb r g b / 0);\n}\n.text-sand-500\\/10{\ncolor: color(from #9b9789 srgb r g b / 0.1);\n}\n.text-sand-500\\/100{\ncolor: color(from #9b9789 srgb r g b / 1);\n}\n.text-sand-500\\/15{\ncolor: color(from #9b9789 srgb r g b / 0.15);\n}\n.text-sand-500\\/20{\ncolor: color(from #9b9789 srgb r g b / 0.2);\n}\n.text-sand-500\\/25{\ncolor: color(from #9b9789 srgb r g b / 0.25);\n}\n.text-sand-500\\/30{\ncolor: color(from #9b9789 srgb r g b / 0.3);\n}\n.text-sand-500\\/35{\ncolor: color(from #9b9789 srgb r g b / 0.35);\n}\n.text-sand-500\\/40{\ncolor: color(from #9b9789 srgb r g b / 0.4);\n}\n.text-sand-500\\/45{\ncolor: color(from #9b9789 srgb r g b / 0.45);\n}\n.text-sand-500\\/5{\ncolor: color(from #9b9789 srgb r g b / 0.05);\n}\n.text-sand-500\\/50{\ncolor: color(from #9b9789 srgb r g b / 0.5);\n}\n.text-sand-500\\/55{\ncolor: color(from #9b9789 srgb r g b / 0.55);\n}\n.text-sand-500\\/60{\ncolor: color(from #9b9789 srgb r g b / 0.6);\n}\n.text-sand-500\\/65{\ncolor: color(from #9b9789 srgb r g b / 0.65);\n}\n.text-sand-500\\/70{\ncolor: color(from #9b9789 srgb r g b / 0.7);\n}\n.text-sand-500\\/75{\ncolor: color(from #9b9789 srgb r g b / 0.75);\n}\n.text-sand-500\\/80{\ncolor: color(from #9b9789 srgb r g b / 0.8);\n}\n.text-sand-500\\/85{\ncolor: color(from #9b9789 srgb r g b / 0.85);\n}\n.text-sand-500\\/90{\ncolor: color(from #9b9789 srgb r g b / 0.9);\n}\n.text-sand-500\\/95{\ncolor: color(from #9b9789 srgb r g b / 0.95);\n}\n.text-sand-600{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / var(--tw-text-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-sand-600\\/0{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-sand-600\\/10{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-sand-600\\/100{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-sand-600\\/15{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-sand-600\\/20{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-sand-600\\/25{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-sand-600\\/30{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-sand-600\\/35{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-sand-600\\/40{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-sand-600\\/45{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-sand-600\\/5{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-sand-600\\/50{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-sand-600\\/55{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-sand-600\\/60{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-sand-600\\/65{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-sand-600\\/70{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-sand-600\\/75{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-sand-600\\/80{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-sand-600\\/85{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-sand-600\\/90{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-sand-600\\/95{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-sand-700{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / var(--tw-text-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-sand-700\\/0{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-sand-700\\/10{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-sand-700\\/100{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-sand-700\\/15{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-sand-700\\/20{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-sand-700\\/25{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-sand-700\\/30{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-sand-700\\/35{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-sand-700\\/40{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-sand-700\\/45{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-sand-700\\/5{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-sand-700\\/50{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-sand-700\\/55{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-sand-700\\/60{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-sand-700\\/65{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-sand-700\\/70{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-sand-700\\/75{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-sand-700\\/80{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-sand-700\\/85{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-sand-700\\/90{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-sand-700\\/95{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-sand-800{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / var(--tw-text-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-sand-800\\/0{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-sand-800\\/10{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-sand-800\\/100{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-sand-800\\/15{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-sand-800\\/20{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-sand-800\\/25{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-sand-800\\/30{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-sand-800\\/35{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-sand-800\\/40{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-sand-800\\/45{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-sand-800\\/5{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-sand-800\\/50{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-sand-800\\/55{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-sand-800\\/60{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-sand-800\\/65{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-sand-800\\/70{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-sand-800\\/75{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-sand-800\\/80{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-sand-800\\/85{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-sand-800\\/90{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-sand-800\\/95{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-sand-900{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / var(--tw-text-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-sand-900\\/0{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-sand-900\\/10{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-sand-900\\/100{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-sand-900\\/15{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-sand-900\\/20{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-sand-900\\/25{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-sand-900\\/30{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-sand-900\\/35{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-sand-900\\/40{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-sand-900\\/45{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-sand-900\\/5{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-sand-900\\/50{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-sand-900\\/55{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-sand-900\\/60{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-sand-900\\/65{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-sand-900\\/70{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-sand-900\\/75{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-sand-900\\/80{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-sand-900\\/85{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-sand-900\\/90{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-sand-900\\/95{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-sand-950{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / var(--tw-text-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-sand-950\\/0{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-sand-950\\/10{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-sand-950\\/100{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-sand-950\\/15{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-sand-950\\/20{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-sand-950\\/25{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-sand-950\\/30{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-sand-950\\/35{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-sand-950\\/40{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-sand-950\\/45{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-sand-950\\/5{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-sand-950\\/50{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-sand-950\\/55{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-sand-950\\/60{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-sand-950\\/65{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-sand-950\\/70{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-sand-950\\/75{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-sand-950\\/80{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-sand-950\\/85{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-sand-950\\/90{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-sand-950\\/95{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-sand\\/0{\ncolor: rgb(155 151 137 / 0);\n}\n.text-sand\\/10{\ncolor: rgb(155 151 137 / 0.1);\n}\n.text-sand\\/100{\ncolor: rgb(155 151 137 / 1);\n}\n.text-sand\\/15{\ncolor: rgb(155 151 137 / 0.15);\n}\n.text-sand\\/20{\ncolor: rgb(155 151 137 / 0.2);\n}\n.text-sand\\/25{\ncolor: rgb(155 151 137 / 0.25);\n}\n.text-sand\\/30{\ncolor: rgb(155 151 137 / 0.3);\n}\n.text-sand\\/35{\ncolor: rgb(155 151 137 / 0.35);\n}\n.text-sand\\/40{\ncolor: rgb(155 151 137 / 0.4);\n}\n.text-sand\\/45{\ncolor: rgb(155 151 137 / 0.45);\n}\n.text-sand\\/5{\ncolor: rgb(155 151 137 / 0.05);\n}\n.text-sand\\/50{\ncolor: rgb(155 151 137 / 0.5);\n}\n.text-sand\\/55{\ncolor: rgb(155 151 137 / 0.55);\n}\n.text-sand\\/60{\ncolor: rgb(155 151 137 / 0.6);\n}\n.text-sand\\/65{\ncolor: rgb(155 151 137 / 0.65);\n}\n.text-sand\\/70{\ncolor: rgb(155 151 137 / 0.7);\n}\n.text-sand\\/75{\ncolor: rgb(155 151 137 / 0.75);\n}\n.text-sand\\/80{\ncolor: rgb(155 151 137 / 0.8);\n}\n.text-sand\\/85{\ncolor: rgb(155 151 137 / 0.85);\n}\n.text-sand\\/90{\ncolor: rgb(155 151 137 / 0.9);\n}\n.text-sand\\/95{\ncolor: rgb(155 151 137 / 0.95);\n}\n.text-scarlet{\n--tw-text-opacity: 1;\ncolor: rgb(229 72 77 / var(--tw-text-opacity));\n}\n.text-scarlet-100{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / var(--tw-text-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-scarlet-100\\/0{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-scarlet-100\\/10{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-scarlet-100\\/100{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-scarlet-100\\/15{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-scarlet-100\\/20{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-scarlet-100\\/25{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-scarlet-100\\/30{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-scarlet-100\\/35{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-scarlet-100\\/40{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-scarlet-100\\/45{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-scarlet-100\\/5{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-scarlet-100\\/50{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-scarlet-100\\/55{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-scarlet-100\\/60{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-scarlet-100\\/65{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-scarlet-100\\/70{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-scarlet-100\\/75{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-scarlet-100\\/80{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-scarlet-100\\/85{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-scarlet-100\\/90{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-scarlet-100\\/95{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-scarlet-200{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / var(--tw-text-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-scarlet-200\\/0{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-scarlet-200\\/10{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-scarlet-200\\/100{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-scarlet-200\\/15{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-scarlet-200\\/20{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-scarlet-200\\/25{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-scarlet-200\\/30{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-scarlet-200\\/35{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-scarlet-200\\/40{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-scarlet-200\\/45{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-scarlet-200\\/5{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-scarlet-200\\/50{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-scarlet-200\\/55{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-scarlet-200\\/60{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-scarlet-200\\/65{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-scarlet-200\\/70{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-scarlet-200\\/75{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-scarlet-200\\/80{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-scarlet-200\\/85{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-scarlet-200\\/90{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-scarlet-200\\/95{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-scarlet-300{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / var(--tw-text-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-scarlet-300\\/0{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-scarlet-300\\/10{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-scarlet-300\\/100{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-scarlet-300\\/15{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-scarlet-300\\/20{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-scarlet-300\\/25{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-scarlet-300\\/30{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-scarlet-300\\/35{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-scarlet-300\\/40{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-scarlet-300\\/45{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-scarlet-300\\/5{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-scarlet-300\\/50{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-scarlet-300\\/55{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-scarlet-300\\/60{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-scarlet-300\\/65{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-scarlet-300\\/70{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-scarlet-300\\/75{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-scarlet-300\\/80{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-scarlet-300\\/85{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-scarlet-300\\/90{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-scarlet-300\\/95{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-scarlet-400{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / var(--tw-text-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-scarlet-400\\/0{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-scarlet-400\\/10{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-scarlet-400\\/100{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-scarlet-400\\/15{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-scarlet-400\\/20{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-scarlet-400\\/25{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-scarlet-400\\/30{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-scarlet-400\\/35{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-scarlet-400\\/40{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-scarlet-400\\/45{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-scarlet-400\\/5{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-scarlet-400\\/50{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-scarlet-400\\/55{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-scarlet-400\\/60{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-scarlet-400\\/65{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-scarlet-400\\/70{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-scarlet-400\\/75{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-scarlet-400\\/80{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-scarlet-400\\/85{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-scarlet-400\\/90{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-scarlet-400\\/95{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-scarlet-50{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / var(--tw-text-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-scarlet-50\\/0{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-scarlet-50\\/10{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-scarlet-50\\/100{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-scarlet-50\\/15{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-scarlet-50\\/20{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-scarlet-50\\/25{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-scarlet-50\\/30{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-scarlet-50\\/35{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-scarlet-50\\/40{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-scarlet-50\\/45{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-scarlet-50\\/5{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-scarlet-50\\/50{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-scarlet-50\\/55{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-scarlet-50\\/60{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-scarlet-50\\/65{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-scarlet-50\\/70{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-scarlet-50\\/75{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-scarlet-50\\/80{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-scarlet-50\\/85{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-scarlet-50\\/90{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-scarlet-50\\/95{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-scarlet-500{\n--tw-text-opacity: 1;\ncolor: color(from #e5484d srgb r g b / var(--tw-text-opacity));\n}\n.text-scarlet-500\\/0{\ncolor: color(from #e5484d srgb r g b / 0);\n}\n.text-scarlet-500\\/10{\ncolor: color(from #e5484d srgb r g b / 0.1);\n}\n.text-scarlet-500\\/100{\ncolor: color(from #e5484d srgb r g b / 1);\n}\n.text-scarlet-500\\/15{\ncolor: color(from #e5484d srgb r g b / 0.15);\n}\n.text-scarlet-500\\/20{\ncolor: color(from #e5484d srgb r g b / 0.2);\n}\n.text-scarlet-500\\/25{\ncolor: color(from #e5484d srgb r g b / 0.25);\n}\n.text-scarlet-500\\/30{\ncolor: color(from #e5484d srgb r g b / 0.3);\n}\n.text-scarlet-500\\/35{\ncolor: color(from #e5484d srgb r g b / 0.35);\n}\n.text-scarlet-500\\/40{\ncolor: color(from #e5484d srgb r g b / 0.4);\n}\n.text-scarlet-500\\/45{\ncolor: color(from #e5484d srgb r g b / 0.45);\n}\n.text-scarlet-500\\/5{\ncolor: color(from #e5484d srgb r g b / 0.05);\n}\n.text-scarlet-500\\/50{\ncolor: color(from #e5484d srgb r g b / 0.5);\n}\n.text-scarlet-500\\/55{\ncolor: color(from #e5484d srgb r g b / 0.55);\n}\n.text-scarlet-500\\/60{\ncolor: color(from #e5484d srgb r g b / 0.6);\n}\n.text-scarlet-500\\/65{\ncolor: color(from #e5484d srgb r g b / 0.65);\n}\n.text-scarlet-500\\/70{\ncolor: color(from #e5484d srgb r g b / 0.7);\n}\n.text-scarlet-500\\/75{\ncolor: color(from #e5484d srgb r g b / 0.75);\n}\n.text-scarlet-500\\/80{\ncolor: color(from #e5484d srgb r g b / 0.8);\n}\n.text-scarlet-500\\/85{\ncolor: color(from #e5484d srgb r g b / 0.85);\n}\n.text-scarlet-500\\/90{\ncolor: color(from #e5484d srgb r g b / 0.9);\n}\n.text-scarlet-500\\/95{\ncolor: color(from #e5484d srgb r g b / 0.95);\n}\n.text-scarlet-600{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / var(--tw-text-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-scarlet-600\\/0{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-scarlet-600\\/10{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-scarlet-600\\/100{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-scarlet-600\\/15{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-scarlet-600\\/20{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-scarlet-600\\/25{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-scarlet-600\\/30{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-scarlet-600\\/35{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-scarlet-600\\/40{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-scarlet-600\\/45{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-scarlet-600\\/5{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-scarlet-600\\/50{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-scarlet-600\\/55{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-scarlet-600\\/60{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-scarlet-600\\/65{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-scarlet-600\\/70{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-scarlet-600\\/75{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-scarlet-600\\/80{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-scarlet-600\\/85{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-scarlet-600\\/90{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-scarlet-600\\/95{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-scarlet-700{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / var(--tw-text-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-scarlet-700\\/0{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-scarlet-700\\/10{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-scarlet-700\\/100{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-scarlet-700\\/15{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-scarlet-700\\/20{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-scarlet-700\\/25{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-scarlet-700\\/30{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-scarlet-700\\/35{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-scarlet-700\\/40{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-scarlet-700\\/45{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-scarlet-700\\/5{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-scarlet-700\\/50{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-scarlet-700\\/55{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-scarlet-700\\/60{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-scarlet-700\\/65{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-scarlet-700\\/70{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-scarlet-700\\/75{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-scarlet-700\\/80{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-scarlet-700\\/85{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-scarlet-700\\/90{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-scarlet-700\\/95{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-scarlet-800{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / var(--tw-text-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-scarlet-800\\/0{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-scarlet-800\\/10{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-scarlet-800\\/100{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-scarlet-800\\/15{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-scarlet-800\\/20{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-scarlet-800\\/25{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-scarlet-800\\/30{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-scarlet-800\\/35{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-scarlet-800\\/40{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-scarlet-800\\/45{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-scarlet-800\\/5{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-scarlet-800\\/50{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-scarlet-800\\/55{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-scarlet-800\\/60{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-scarlet-800\\/65{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-scarlet-800\\/70{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-scarlet-800\\/75{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-scarlet-800\\/80{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-scarlet-800\\/85{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-scarlet-800\\/90{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-scarlet-800\\/95{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-scarlet-900{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / var(--tw-text-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-scarlet-900\\/0{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-scarlet-900\\/10{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-scarlet-900\\/100{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-scarlet-900\\/15{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-scarlet-900\\/20{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-scarlet-900\\/25{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-scarlet-900\\/30{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-scarlet-900\\/35{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-scarlet-900\\/40{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-scarlet-900\\/45{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-scarlet-900\\/5{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-scarlet-900\\/50{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-scarlet-900\\/55{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-scarlet-900\\/60{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-scarlet-900\\/65{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-scarlet-900\\/70{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-scarlet-900\\/75{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-scarlet-900\\/80{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-scarlet-900\\/85{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-scarlet-900\\/90{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-scarlet-900\\/95{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-scarlet-950{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / var(--tw-text-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-scarlet-950\\/0{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-scarlet-950\\/10{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-scarlet-950\\/100{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-scarlet-950\\/15{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-scarlet-950\\/20{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-scarlet-950\\/25{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-scarlet-950\\/30{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-scarlet-950\\/35{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-scarlet-950\\/40{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-scarlet-950\\/45{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-scarlet-950\\/5{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-scarlet-950\\/50{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-scarlet-950\\/55{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-scarlet-950\\/60{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-scarlet-950\\/65{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-scarlet-950\\/70{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-scarlet-950\\/75{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-scarlet-950\\/80{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-scarlet-950\\/85{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-scarlet-950\\/90{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-scarlet-950\\/95{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-scarlet\\/0{\ncolor: rgb(229 72 77 / 0);\n}\n.text-scarlet\\/10{\ncolor: rgb(229 72 77 / 0.1);\n}\n.text-scarlet\\/100{\ncolor: rgb(229 72 77 / 1);\n}\n.text-scarlet\\/15{\ncolor: rgb(229 72 77 / 0.15);\n}\n.text-scarlet\\/20{\ncolor: rgb(229 72 77 / 0.2);\n}\n.text-scarlet\\/25{\ncolor: rgb(229 72 77 / 0.25);\n}\n.text-scarlet\\/30{\ncolor: rgb(229 72 77 / 0.3);\n}\n.text-scarlet\\/35{\ncolor: rgb(229 72 77 / 0.35);\n}\n.text-scarlet\\/40{\ncolor: rgb(229 72 77 / 0.4);\n}\n.text-scarlet\\/45{\ncolor: rgb(229 72 77 / 0.45);\n}\n.text-scarlet\\/5{\ncolor: rgb(229 72 77 / 0.05);\n}\n.text-scarlet\\/50{\ncolor: rgb(229 72 77 / 0.5);\n}\n.text-scarlet\\/55{\ncolor: rgb(229 72 77 / 0.55);\n}\n.text-scarlet\\/60{\ncolor: rgb(229 72 77 / 0.6);\n}\n.text-scarlet\\/65{\ncolor: rgb(229 72 77 / 0.65);\n}\n.text-scarlet\\/70{\ncolor: rgb(229 72 77 / 0.7);\n}\n.text-scarlet\\/75{\ncolor: rgb(229 72 77 / 0.75);\n}\n.text-scarlet\\/80{\ncolor: rgb(229 72 77 / 0.8);\n}\n.text-scarlet\\/85{\ncolor: rgb(229 72 77 / 0.85);\n}\n.text-scarlet\\/90{\ncolor: rgb(229 72 77 / 0.9);\n}\n.text-scarlet\\/95{\ncolor: rgb(229 72 77 / 0.95);\n}\n.text-silver{\n--tw-text-opacity: 1;\ncolor: rgb(152 157 165 / var(--tw-text-opacity));\n}\n.text-silver-100{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / var(--tw-text-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-silver-100\\/0{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-silver-100\\/10{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-silver-100\\/100{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-silver-100\\/15{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-silver-100\\/20{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-silver-100\\/25{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-silver-100\\/30{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-silver-100\\/35{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-silver-100\\/40{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-silver-100\\/45{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-silver-100\\/5{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-silver-100\\/50{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-silver-100\\/55{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-silver-100\\/60{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-silver-100\\/65{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-silver-100\\/70{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-silver-100\\/75{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-silver-100\\/80{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-silver-100\\/85{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-silver-100\\/90{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-silver-100\\/95{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-silver-200{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / var(--tw-text-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-silver-200\\/0{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-silver-200\\/10{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-silver-200\\/100{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-silver-200\\/15{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-silver-200\\/20{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-silver-200\\/25{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-silver-200\\/30{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-silver-200\\/35{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-silver-200\\/40{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-silver-200\\/45{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-silver-200\\/5{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-silver-200\\/50{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-silver-200\\/55{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-silver-200\\/60{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-silver-200\\/65{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-silver-200\\/70{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-silver-200\\/75{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-silver-200\\/80{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-silver-200\\/85{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-silver-200\\/90{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-silver-200\\/95{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-silver-300{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / var(--tw-text-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-silver-300\\/0{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-silver-300\\/10{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-silver-300\\/100{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-silver-300\\/15{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-silver-300\\/20{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-silver-300\\/25{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-silver-300\\/30{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-silver-300\\/35{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-silver-300\\/40{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-silver-300\\/45{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-silver-300\\/5{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-silver-300\\/50{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-silver-300\\/55{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-silver-300\\/60{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-silver-300\\/65{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-silver-300\\/70{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-silver-300\\/75{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-silver-300\\/80{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-silver-300\\/85{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-silver-300\\/90{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-silver-300\\/95{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-silver-400{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / var(--tw-text-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-silver-400\\/0{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-silver-400\\/10{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-silver-400\\/100{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-silver-400\\/15{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-silver-400\\/20{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-silver-400\\/25{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-silver-400\\/30{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-silver-400\\/35{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-silver-400\\/40{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-silver-400\\/45{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-silver-400\\/5{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-silver-400\\/50{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-silver-400\\/55{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-silver-400\\/60{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-silver-400\\/65{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-silver-400\\/70{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-silver-400\\/75{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-silver-400\\/80{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-silver-400\\/85{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-silver-400\\/90{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-silver-400\\/95{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-silver-50{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / var(--tw-text-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-silver-50\\/0{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-silver-50\\/10{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-silver-50\\/100{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-silver-50\\/15{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-silver-50\\/20{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-silver-50\\/25{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-silver-50\\/30{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-silver-50\\/35{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-silver-50\\/40{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-silver-50\\/45{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-silver-50\\/5{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-silver-50\\/50{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-silver-50\\/55{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-silver-50\\/60{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-silver-50\\/65{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-silver-50\\/70{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-silver-50\\/75{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-silver-50\\/80{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-silver-50\\/85{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-silver-50\\/90{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-silver-50\\/95{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-silver-500{\n--tw-text-opacity: 1;\ncolor: color(from #989da5 srgb r g b / var(--tw-text-opacity));\n}\n.text-silver-500\\/0{\ncolor: color(from #989da5 srgb r g b / 0);\n}\n.text-silver-500\\/10{\ncolor: color(from #989da5 srgb r g b / 0.1);\n}\n.text-silver-500\\/100{\ncolor: color(from #989da5 srgb r g b / 1);\n}\n.text-silver-500\\/15{\ncolor: color(from #989da5 srgb r g b / 0.15);\n}\n.text-silver-500\\/20{\ncolor: color(from #989da5 srgb r g b / 0.2);\n}\n.text-silver-500\\/25{\ncolor: color(from #989da5 srgb r g b / 0.25);\n}\n.text-silver-500\\/30{\ncolor: color(from #989da5 srgb r g b / 0.3);\n}\n.text-silver-500\\/35{\ncolor: color(from #989da5 srgb r g b / 0.35);\n}\n.text-silver-500\\/40{\ncolor: color(from #989da5 srgb r g b / 0.4);\n}\n.text-silver-500\\/45{\ncolor: color(from #989da5 srgb r g b / 0.45);\n}\n.text-silver-500\\/5{\ncolor: color(from #989da5 srgb r g b / 0.05);\n}\n.text-silver-500\\/50{\ncolor: color(from #989da5 srgb r g b / 0.5);\n}\n.text-silver-500\\/55{\ncolor: color(from #989da5 srgb r g b / 0.55);\n}\n.text-silver-500\\/60{\ncolor: color(from #989da5 srgb r g b / 0.6);\n}\n.text-silver-500\\/65{\ncolor: color(from #989da5 srgb r g b / 0.65);\n}\n.text-silver-500\\/70{\ncolor: color(from #989da5 srgb r g b / 0.7);\n}\n.text-silver-500\\/75{\ncolor: color(from #989da5 srgb r g b / 0.75);\n}\n.text-silver-500\\/80{\ncolor: color(from #989da5 srgb r g b / 0.8);\n}\n.text-silver-500\\/85{\ncolor: color(from #989da5 srgb r g b / 0.85);\n}\n.text-silver-500\\/90{\ncolor: color(from #989da5 srgb r g b / 0.9);\n}\n.text-silver-500\\/95{\ncolor: color(from #989da5 srgb r g b / 0.95);\n}\n.text-silver-600{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / var(--tw-text-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-silver-600\\/0{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-silver-600\\/10{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-silver-600\\/100{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-silver-600\\/15{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-silver-600\\/20{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-silver-600\\/25{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-silver-600\\/30{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-silver-600\\/35{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-silver-600\\/40{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-silver-600\\/45{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-silver-600\\/5{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-silver-600\\/50{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-silver-600\\/55{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-silver-600\\/60{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-silver-600\\/65{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-silver-600\\/70{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-silver-600\\/75{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-silver-600\\/80{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-silver-600\\/85{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-silver-600\\/90{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-silver-600\\/95{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-silver-700{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / var(--tw-text-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-silver-700\\/0{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-silver-700\\/10{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-silver-700\\/100{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-silver-700\\/15{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-silver-700\\/20{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-silver-700\\/25{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-silver-700\\/30{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-silver-700\\/35{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-silver-700\\/40{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-silver-700\\/45{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-silver-700\\/5{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-silver-700\\/50{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-silver-700\\/55{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-silver-700\\/60{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-silver-700\\/65{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-silver-700\\/70{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-silver-700\\/75{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-silver-700\\/80{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-silver-700\\/85{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-silver-700\\/90{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-silver-700\\/95{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-silver-800{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / var(--tw-text-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-silver-800\\/0{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-silver-800\\/10{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-silver-800\\/100{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-silver-800\\/15{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-silver-800\\/20{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-silver-800\\/25{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-silver-800\\/30{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-silver-800\\/35{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-silver-800\\/40{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-silver-800\\/45{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-silver-800\\/5{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-silver-800\\/50{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-silver-800\\/55{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-silver-800\\/60{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-silver-800\\/65{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-silver-800\\/70{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-silver-800\\/75{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-silver-800\\/80{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-silver-800\\/85{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-silver-800\\/90{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-silver-800\\/95{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-silver-900{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / var(--tw-text-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-silver-900\\/0{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-silver-900\\/10{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-silver-900\\/100{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-silver-900\\/15{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-silver-900\\/20{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-silver-900\\/25{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-silver-900\\/30{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-silver-900\\/35{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-silver-900\\/40{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-silver-900\\/45{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-silver-900\\/5{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-silver-900\\/50{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-silver-900\\/55{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-silver-900\\/60{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-silver-900\\/65{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-silver-900\\/70{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-silver-900\\/75{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-silver-900\\/80{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-silver-900\\/85{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-silver-900\\/90{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-silver-900\\/95{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-silver-950{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / var(--tw-text-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-silver-950\\/0{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-silver-950\\/10{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-silver-950\\/100{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-silver-950\\/15{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-silver-950\\/20{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-silver-950\\/25{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-silver-950\\/30{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-silver-950\\/35{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-silver-950\\/40{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-silver-950\\/45{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-silver-950\\/5{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-silver-950\\/50{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-silver-950\\/55{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-silver-950\\/60{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-silver-950\\/65{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-silver-950\\/70{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-silver-950\\/75{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-silver-950\\/80{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-silver-950\\/85{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-silver-950\\/90{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-silver-950\\/95{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-silver\\/0{\ncolor: rgb(152 157 165 / 0);\n}\n.text-silver\\/10{\ncolor: rgb(152 157 165 / 0.1);\n}\n.text-silver\\/100{\ncolor: rgb(152 157 165 / 1);\n}\n.text-silver\\/15{\ncolor: rgb(152 157 165 / 0.15);\n}\n.text-silver\\/20{\ncolor: rgb(152 157 165 / 0.2);\n}\n.text-silver\\/25{\ncolor: rgb(152 157 165 / 0.25);\n}\n.text-silver\\/30{\ncolor: rgb(152 157 165 / 0.3);\n}\n.text-silver\\/35{\ncolor: rgb(152 157 165 / 0.35);\n}\n.text-silver\\/40{\ncolor: rgb(152 157 165 / 0.4);\n}\n.text-silver\\/45{\ncolor: rgb(152 157 165 / 0.45);\n}\n.text-silver\\/5{\ncolor: rgb(152 157 165 / 0.05);\n}\n.text-silver\\/50{\ncolor: rgb(152 157 165 / 0.5);\n}\n.text-silver\\/55{\ncolor: rgb(152 157 165 / 0.55);\n}\n.text-silver\\/60{\ncolor: rgb(152 157 165 / 0.6);\n}\n.text-silver\\/65{\ncolor: rgb(152 157 165 / 0.65);\n}\n.text-silver\\/70{\ncolor: rgb(152 157 165 / 0.7);\n}\n.text-silver\\/75{\ncolor: rgb(152 157 165 / 0.75);\n}\n.text-silver\\/80{\ncolor: rgb(152 157 165 / 0.8);\n}\n.text-silver\\/85{\ncolor: rgb(152 157 165 / 0.85);\n}\n.text-silver\\/90{\ncolor: rgb(152 157 165 / 0.9);\n}\n.text-silver\\/95{\ncolor: rgb(152 157 165 / 0.95);\n}\n.text-steel{\n--tw-text-opacity: 1;\ncolor: rgb(124 153 175 / var(--tw-text-opacity));\n}\n.text-steel-100{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / var(--tw-text-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-steel-100\\/0{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-steel-100\\/10{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-steel-100\\/100{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-steel-100\\/15{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-steel-100\\/20{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-steel-100\\/25{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-steel-100\\/30{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-steel-100\\/35{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-steel-100\\/40{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-steel-100\\/45{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-steel-100\\/5{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-steel-100\\/50{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-steel-100\\/55{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-steel-100\\/60{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-steel-100\\/65{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-steel-100\\/70{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-steel-100\\/75{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-steel-100\\/80{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-steel-100\\/85{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-steel-100\\/90{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-steel-100\\/95{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-steel-200{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / var(--tw-text-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-steel-200\\/0{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-steel-200\\/10{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-steel-200\\/100{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-steel-200\\/15{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-steel-200\\/20{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-steel-200\\/25{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-steel-200\\/30{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-steel-200\\/35{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-steel-200\\/40{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-steel-200\\/45{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-steel-200\\/5{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-steel-200\\/50{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-steel-200\\/55{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-steel-200\\/60{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-steel-200\\/65{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-steel-200\\/70{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-steel-200\\/75{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-steel-200\\/80{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-steel-200\\/85{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-steel-200\\/90{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-steel-200\\/95{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-steel-300{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / var(--tw-text-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-steel-300\\/0{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-steel-300\\/10{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-steel-300\\/100{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-steel-300\\/15{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-steel-300\\/20{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-steel-300\\/25{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-steel-300\\/30{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-steel-300\\/35{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-steel-300\\/40{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-steel-300\\/45{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-steel-300\\/5{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-steel-300\\/50{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-steel-300\\/55{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-steel-300\\/60{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-steel-300\\/65{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-steel-300\\/70{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-steel-300\\/75{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-steel-300\\/80{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-steel-300\\/85{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-steel-300\\/90{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-steel-300\\/95{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-steel-400{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / var(--tw-text-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-steel-400\\/0{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-steel-400\\/10{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-steel-400\\/100{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-steel-400\\/15{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-steel-400\\/20{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-steel-400\\/25{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-steel-400\\/30{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-steel-400\\/35{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-steel-400\\/40{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-steel-400\\/45{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-steel-400\\/5{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-steel-400\\/50{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-steel-400\\/55{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-steel-400\\/60{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-steel-400\\/65{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-steel-400\\/70{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-steel-400\\/75{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-steel-400\\/80{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-steel-400\\/85{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-steel-400\\/90{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-steel-400\\/95{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-steel-50{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / var(--tw-text-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-steel-50\\/0{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-steel-50\\/10{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-steel-50\\/100{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-steel-50\\/15{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-steel-50\\/20{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-steel-50\\/25{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-steel-50\\/30{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-steel-50\\/35{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-steel-50\\/40{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-steel-50\\/45{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-steel-50\\/5{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-steel-50\\/50{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-steel-50\\/55{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-steel-50\\/60{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-steel-50\\/65{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-steel-50\\/70{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-steel-50\\/75{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-steel-50\\/80{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-steel-50\\/85{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-steel-50\\/90{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-steel-50\\/95{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-steel-500{\n--tw-text-opacity: 1;\ncolor: color(from #7c99af srgb r g b / var(--tw-text-opacity));\n}\n.text-steel-500\\/0{\ncolor: color(from #7c99af srgb r g b / 0);\n}\n.text-steel-500\\/10{\ncolor: color(from #7c99af srgb r g b / 0.1);\n}\n.text-steel-500\\/100{\ncolor: color(from #7c99af srgb r g b / 1);\n}\n.text-steel-500\\/15{\ncolor: color(from #7c99af srgb r g b / 0.15);\n}\n.text-steel-500\\/20{\ncolor: color(from #7c99af srgb r g b / 0.2);\n}\n.text-steel-500\\/25{\ncolor: color(from #7c99af srgb r g b / 0.25);\n}\n.text-steel-500\\/30{\ncolor: color(from #7c99af srgb r g b / 0.3);\n}\n.text-steel-500\\/35{\ncolor: color(from #7c99af srgb r g b / 0.35);\n}\n.text-steel-500\\/40{\ncolor: color(from #7c99af srgb r g b / 0.4);\n}\n.text-steel-500\\/45{\ncolor: color(from #7c99af srgb r g b / 0.45);\n}\n.text-steel-500\\/5{\ncolor: color(from #7c99af srgb r g b / 0.05);\n}\n.text-steel-500\\/50{\ncolor: color(from #7c99af srgb r g b / 0.5);\n}\n.text-steel-500\\/55{\ncolor: color(from #7c99af srgb r g b / 0.55);\n}\n.text-steel-500\\/60{\ncolor: color(from #7c99af srgb r g b / 0.6);\n}\n.text-steel-500\\/65{\ncolor: color(from #7c99af srgb r g b / 0.65);\n}\n.text-steel-500\\/70{\ncolor: color(from #7c99af srgb r g b / 0.7);\n}\n.text-steel-500\\/75{\ncolor: color(from #7c99af srgb r g b / 0.75);\n}\n.text-steel-500\\/80{\ncolor: color(from #7c99af srgb r g b / 0.8);\n}\n.text-steel-500\\/85{\ncolor: color(from #7c99af srgb r g b / 0.85);\n}\n.text-steel-500\\/90{\ncolor: color(from #7c99af srgb r g b / 0.9);\n}\n.text-steel-500\\/95{\ncolor: color(from #7c99af srgb r g b / 0.95);\n}\n.text-steel-600{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / var(--tw-text-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-steel-600\\/0{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-steel-600\\/10{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-steel-600\\/100{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-steel-600\\/15{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-steel-600\\/20{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-steel-600\\/25{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-steel-600\\/30{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-steel-600\\/35{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-steel-600\\/40{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-steel-600\\/45{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-steel-600\\/5{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-steel-600\\/50{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-steel-600\\/55{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-steel-600\\/60{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-steel-600\\/65{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-steel-600\\/70{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-steel-600\\/75{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-steel-600\\/80{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-steel-600\\/85{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-steel-600\\/90{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-steel-600\\/95{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-steel-700{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / var(--tw-text-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-steel-700\\/0{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-steel-700\\/10{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-steel-700\\/100{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-steel-700\\/15{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-steel-700\\/20{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-steel-700\\/25{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-steel-700\\/30{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-steel-700\\/35{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-steel-700\\/40{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-steel-700\\/45{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-steel-700\\/5{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-steel-700\\/50{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-steel-700\\/55{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-steel-700\\/60{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-steel-700\\/65{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-steel-700\\/70{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-steel-700\\/75{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-steel-700\\/80{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-steel-700\\/85{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-steel-700\\/90{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-steel-700\\/95{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-steel-800{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / var(--tw-text-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-steel-800\\/0{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-steel-800\\/10{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-steel-800\\/100{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-steel-800\\/15{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-steel-800\\/20{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-steel-800\\/25{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-steel-800\\/30{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-steel-800\\/35{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-steel-800\\/40{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-steel-800\\/45{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-steel-800\\/5{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-steel-800\\/50{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-steel-800\\/55{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-steel-800\\/60{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-steel-800\\/65{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-steel-800\\/70{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-steel-800\\/75{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-steel-800\\/80{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-steel-800\\/85{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-steel-800\\/90{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-steel-800\\/95{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-steel-900{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / var(--tw-text-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-steel-900\\/0{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-steel-900\\/10{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-steel-900\\/100{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-steel-900\\/15{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-steel-900\\/20{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-steel-900\\/25{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-steel-900\\/30{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-steel-900\\/35{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-steel-900\\/40{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-steel-900\\/45{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-steel-900\\/5{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-steel-900\\/50{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-steel-900\\/55{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-steel-900\\/60{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-steel-900\\/65{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-steel-900\\/70{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-steel-900\\/75{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-steel-900\\/80{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-steel-900\\/85{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-steel-900\\/90{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-steel-900\\/95{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-steel-950{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / var(--tw-text-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-steel-950\\/0{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-steel-950\\/10{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-steel-950\\/100{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-steel-950\\/15{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-steel-950\\/20{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-steel-950\\/25{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-steel-950\\/30{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-steel-950\\/35{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-steel-950\\/40{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-steel-950\\/45{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-steel-950\\/5{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-steel-950\\/50{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-steel-950\\/55{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-steel-950\\/60{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-steel-950\\/65{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-steel-950\\/70{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-steel-950\\/75{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-steel-950\\/80{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-steel-950\\/85{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-steel-950\\/90{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-steel-950\\/95{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-steel\\/0{\ncolor: rgb(124 153 175 / 0);\n}\n.text-steel\\/10{\ncolor: rgb(124 153 175 / 0.1);\n}\n.text-steel\\/100{\ncolor: rgb(124 153 175 / 1);\n}\n.text-steel\\/15{\ncolor: rgb(124 153 175 / 0.15);\n}\n.text-steel\\/20{\ncolor: rgb(124 153 175 / 0.2);\n}\n.text-steel\\/25{\ncolor: rgb(124 153 175 / 0.25);\n}\n.text-steel\\/30{\ncolor: rgb(124 153 175 / 0.3);\n}\n.text-steel\\/35{\ncolor: rgb(124 153 175 / 0.35);\n}\n.text-steel\\/40{\ncolor: rgb(124 153 175 / 0.4);\n}\n.text-steel\\/45{\ncolor: rgb(124 153 175 / 0.45);\n}\n.text-steel\\/5{\ncolor: rgb(124 153 175 / 0.05);\n}\n.text-steel\\/50{\ncolor: rgb(124 153 175 / 0.5);\n}\n.text-steel\\/55{\ncolor: rgb(124 153 175 / 0.55);\n}\n.text-steel\\/60{\ncolor: rgb(124 153 175 / 0.6);\n}\n.text-steel\\/65{\ncolor: rgb(124 153 175 / 0.65);\n}\n.text-steel\\/70{\ncolor: rgb(124 153 175 / 0.7);\n}\n.text-steel\\/75{\ncolor: rgb(124 153 175 / 0.75);\n}\n.text-steel\\/80{\ncolor: rgb(124 153 175 / 0.8);\n}\n.text-steel\\/85{\ncolor: rgb(124 153 175 / 0.85);\n}\n.text-steel\\/90{\ncolor: rgb(124 153 175 / 0.9);\n}\n.text-steel\\/95{\ncolor: rgb(124 153 175 / 0.95);\n}\n.text-success{\n--tw-text-opacity: 1;\ncolor: rgb(68 188 105 / var(--tw-text-opacity));\n}\n.text-success-100{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / var(--tw-text-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-success-100\\/0{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-success-100\\/10{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-success-100\\/100{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-success-100\\/15{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-success-100\\/20{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-success-100\\/25{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-success-100\\/30{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-success-100\\/35{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-success-100\\/40{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-success-100\\/45{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-success-100\\/5{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-success-100\\/50{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-success-100\\/55{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-success-100\\/60{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-success-100\\/65{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-success-100\\/70{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-success-100\\/75{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-success-100\\/80{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-success-100\\/85{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-success-100\\/90{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-success-100\\/95{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-success-200{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / var(--tw-text-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-success-200\\/0{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-success-200\\/10{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-success-200\\/100{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-success-200\\/15{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-success-200\\/20{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-success-200\\/25{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-success-200\\/30{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-success-200\\/35{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-success-200\\/40{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-success-200\\/45{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-success-200\\/5{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-success-200\\/50{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-success-200\\/55{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-success-200\\/60{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-success-200\\/65{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-success-200\\/70{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-success-200\\/75{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-success-200\\/80{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-success-200\\/85{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-success-200\\/90{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-success-200\\/95{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-success-300{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / var(--tw-text-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-success-300\\/0{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-success-300\\/10{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-success-300\\/100{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-success-300\\/15{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-success-300\\/20{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-success-300\\/25{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-success-300\\/30{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-success-300\\/35{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-success-300\\/40{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-success-300\\/45{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-success-300\\/5{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-success-300\\/50{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-success-300\\/55{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-success-300\\/60{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-success-300\\/65{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-success-300\\/70{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-success-300\\/75{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-success-300\\/80{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-success-300\\/85{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-success-300\\/90{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-success-300\\/95{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-success-400{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / var(--tw-text-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-success-400\\/0{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-success-400\\/10{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-success-400\\/100{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-success-400\\/15{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-success-400\\/20{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-success-400\\/25{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-success-400\\/30{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-success-400\\/35{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-success-400\\/40{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-success-400\\/45{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-success-400\\/5{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-success-400\\/50{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-success-400\\/55{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-success-400\\/60{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-success-400\\/65{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-success-400\\/70{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-success-400\\/75{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-success-400\\/80{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-success-400\\/85{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-success-400\\/90{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-success-400\\/95{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-success-50{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / var(--tw-text-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-success-50\\/0{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-success-50\\/10{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-success-50\\/100{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-success-50\\/15{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-success-50\\/20{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-success-50\\/25{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-success-50\\/30{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-success-50\\/35{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-success-50\\/40{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-success-50\\/45{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-success-50\\/5{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-success-50\\/50{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-success-50\\/55{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-success-50\\/60{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-success-50\\/65{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-success-50\\/70{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-success-50\\/75{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-success-50\\/80{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-success-50\\/85{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-success-50\\/90{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-success-50\\/95{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-success-500{\n--tw-text-opacity: 1;\ncolor: color(from #44bc69 srgb r g b / var(--tw-text-opacity));\n}\n.text-success-500\\/0{\ncolor: color(from #44bc69 srgb r g b / 0);\n}\n.text-success-500\\/10{\ncolor: color(from #44bc69 srgb r g b / 0.1);\n}\n.text-success-500\\/100{\ncolor: color(from #44bc69 srgb r g b / 1);\n}\n.text-success-500\\/15{\ncolor: color(from #44bc69 srgb r g b / 0.15);\n}\n.text-success-500\\/20{\ncolor: color(from #44bc69 srgb r g b / 0.2);\n}\n.text-success-500\\/25{\ncolor: color(from #44bc69 srgb r g b / 0.25);\n}\n.text-success-500\\/30{\ncolor: color(from #44bc69 srgb r g b / 0.3);\n}\n.text-success-500\\/35{\ncolor: color(from #44bc69 srgb r g b / 0.35);\n}\n.text-success-500\\/40{\ncolor: color(from #44bc69 srgb r g b / 0.4);\n}\n.text-success-500\\/45{\ncolor: color(from #44bc69 srgb r g b / 0.45);\n}\n.text-success-500\\/5{\ncolor: color(from #44bc69 srgb r g b / 0.05);\n}\n.text-success-500\\/50{\ncolor: color(from #44bc69 srgb r g b / 0.5);\n}\n.text-success-500\\/55{\ncolor: color(from #44bc69 srgb r g b / 0.55);\n}\n.text-success-500\\/60{\ncolor: color(from #44bc69 srgb r g b / 0.6);\n}\n.text-success-500\\/65{\ncolor: color(from #44bc69 srgb r g b / 0.65);\n}\n.text-success-500\\/70{\ncolor: color(from #44bc69 srgb r g b / 0.7);\n}\n.text-success-500\\/75{\ncolor: color(from #44bc69 srgb r g b / 0.75);\n}\n.text-success-500\\/80{\ncolor: color(from #44bc69 srgb r g b / 0.8);\n}\n.text-success-500\\/85{\ncolor: color(from #44bc69 srgb r g b / 0.85);\n}\n.text-success-500\\/90{\ncolor: color(from #44bc69 srgb r g b / 0.9);\n}\n.text-success-500\\/95{\ncolor: color(from #44bc69 srgb r g b / 0.95);\n}\n.text-success-600{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / var(--tw-text-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-success-600\\/0{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-success-600\\/10{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-success-600\\/100{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-success-600\\/15{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-success-600\\/20{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-success-600\\/25{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-success-600\\/30{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-success-600\\/35{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-success-600\\/40{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-success-600\\/45{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-success-600\\/5{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-success-600\\/50{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-success-600\\/55{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-success-600\\/60{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-success-600\\/65{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-success-600\\/70{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-success-600\\/75{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-success-600\\/80{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-success-600\\/85{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-success-600\\/90{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-success-600\\/95{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-success-700{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / var(--tw-text-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-success-700\\/0{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-success-700\\/10{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-success-700\\/100{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-success-700\\/15{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-success-700\\/20{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-success-700\\/25{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-success-700\\/30{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-success-700\\/35{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-success-700\\/40{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-success-700\\/45{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-success-700\\/5{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-success-700\\/50{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-success-700\\/55{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-success-700\\/60{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-success-700\\/65{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-success-700\\/70{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-success-700\\/75{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-success-700\\/80{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-success-700\\/85{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-success-700\\/90{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-success-700\\/95{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-success-800{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / var(--tw-text-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-success-800\\/0{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-success-800\\/10{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-success-800\\/100{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-success-800\\/15{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-success-800\\/20{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-success-800\\/25{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-success-800\\/30{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-success-800\\/35{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-success-800\\/40{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-success-800\\/45{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-success-800\\/5{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-success-800\\/50{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-success-800\\/55{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-success-800\\/60{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-success-800\\/65{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-success-800\\/70{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-success-800\\/75{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-success-800\\/80{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-success-800\\/85{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-success-800\\/90{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-success-800\\/95{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-success-900{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / var(--tw-text-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-success-900\\/0{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-success-900\\/10{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-success-900\\/100{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-success-900\\/15{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-success-900\\/20{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-success-900\\/25{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-success-900\\/30{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-success-900\\/35{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-success-900\\/40{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-success-900\\/45{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-success-900\\/5{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-success-900\\/50{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-success-900\\/55{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-success-900\\/60{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-success-900\\/65{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-success-900\\/70{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-success-900\\/75{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-success-900\\/80{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-success-900\\/85{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-success-900\\/90{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-success-900\\/95{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-success-950{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / var(--tw-text-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-success-950\\/0{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-success-950\\/10{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-success-950\\/100{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-success-950\\/15{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-success-950\\/20{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-success-950\\/25{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-success-950\\/30{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-success-950\\/35{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-success-950\\/40{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-success-950\\/45{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-success-950\\/5{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-success-950\\/50{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-success-950\\/55{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-success-950\\/60{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-success-950\\/65{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-success-950\\/70{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-success-950\\/75{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-success-950\\/80{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-success-950\\/85{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-success-950\\/90{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-success-950\\/95{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-success\\/0{\ncolor: rgb(68 188 105 / 0);\n}\n.text-success\\/10{\ncolor: rgb(68 188 105 / 0.1);\n}\n.text-success\\/100{\ncolor: rgb(68 188 105 / 1);\n}\n.text-success\\/15{\ncolor: rgb(68 188 105 / 0.15);\n}\n.text-success\\/20{\ncolor: rgb(68 188 105 / 0.2);\n}\n.text-success\\/25{\ncolor: rgb(68 188 105 / 0.25);\n}\n.text-success\\/30{\ncolor: rgb(68 188 105 / 0.3);\n}\n.text-success\\/35{\ncolor: rgb(68 188 105 / 0.35);\n}\n.text-success\\/40{\ncolor: rgb(68 188 105 / 0.4);\n}\n.text-success\\/45{\ncolor: rgb(68 188 105 / 0.45);\n}\n.text-success\\/5{\ncolor: rgb(68 188 105 / 0.05);\n}\n.text-success\\/50{\ncolor: rgb(68 188 105 / 0.5);\n}\n.text-success\\/55{\ncolor: rgb(68 188 105 / 0.55);\n}\n.text-success\\/60{\ncolor: rgb(68 188 105 / 0.6);\n}\n.text-success\\/65{\ncolor: rgb(68 188 105 / 0.65);\n}\n.text-success\\/70{\ncolor: rgb(68 188 105 / 0.7);\n}\n.text-success\\/75{\ncolor: rgb(68 188 105 / 0.75);\n}\n.text-success\\/80{\ncolor: rgb(68 188 105 / 0.8);\n}\n.text-success\\/85{\ncolor: rgb(68 188 105 / 0.85);\n}\n.text-success\\/90{\ncolor: rgb(68 188 105 / 0.9);\n}\n.text-success\\/95{\ncolor: rgb(68 188 105 / 0.95);\n}\n.text-tint{\ncolor: var(--tint);\n}\n.text-tint-100{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-text-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-tint-100\\/0{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-tint-100\\/10{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-tint-100\\/100{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-tint-100\\/15{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-tint-100\\/20{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-tint-100\\/25{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-tint-100\\/30{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-tint-100\\/35{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-tint-100\\/40{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-tint-100\\/45{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-tint-100\\/5{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-tint-100\\/50{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-tint-100\\/55{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-tint-100\\/60{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-tint-100\\/65{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-tint-100\\/70{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-tint-100\\/75{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-tint-100\\/80{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-tint-100\\/85{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-tint-100\\/90{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-tint-100\\/95{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-tint-200{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-text-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-tint-200\\/0{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-tint-200\\/10{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-tint-200\\/100{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-tint-200\\/15{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-tint-200\\/20{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-tint-200\\/25{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-tint-200\\/30{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-tint-200\\/35{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-tint-200\\/40{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-tint-200\\/45{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-tint-200\\/5{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-tint-200\\/50{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-tint-200\\/55{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-tint-200\\/60{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-tint-200\\/65{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-tint-200\\/70{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-tint-200\\/75{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-tint-200\\/80{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-tint-200\\/85{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-tint-200\\/90{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-tint-200\\/95{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-tint-300{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-text-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-tint-300\\/0{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-tint-300\\/10{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-tint-300\\/100{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-tint-300\\/15{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-tint-300\\/20{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-tint-300\\/25{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-tint-300\\/30{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-tint-300\\/35{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-tint-300\\/40{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-tint-300\\/45{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-tint-300\\/5{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-tint-300\\/50{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-tint-300\\/55{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-tint-300\\/60{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-tint-300\\/65{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-tint-300\\/70{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-tint-300\\/75{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-tint-300\\/80{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-tint-300\\/85{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-tint-300\\/90{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-tint-300\\/95{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-tint-400{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-text-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-tint-400\\/0{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-tint-400\\/10{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-tint-400\\/100{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-tint-400\\/15{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-tint-400\\/20{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-tint-400\\/25{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-tint-400\\/30{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-tint-400\\/35{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-tint-400\\/40{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-tint-400\\/45{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-tint-400\\/5{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-tint-400\\/50{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-tint-400\\/55{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-tint-400\\/60{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-tint-400\\/65{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-tint-400\\/70{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-tint-400\\/75{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-tint-400\\/80{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-tint-400\\/85{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-tint-400\\/90{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-tint-400\\/95{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-tint-50{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-text-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-tint-50\\/0{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-tint-50\\/10{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-tint-50\\/100{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-tint-50\\/15{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-tint-50\\/20{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-tint-50\\/25{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-tint-50\\/30{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-tint-50\\/35{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-tint-50\\/40{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-tint-50\\/45{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-tint-50\\/5{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-tint-50\\/50{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-tint-50\\/55{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-tint-50\\/60{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-tint-50\\/65{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-tint-50\\/70{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-tint-50\\/75{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-tint-50\\/80{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-tint-50\\/85{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-tint-50\\/90{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-tint-50\\/95{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-tint-500{\n--tw-text-opacity: 1;\ncolor: color(from var(--tint) srgb r g b / var(--tw-text-opacity));\n}\n.text-tint-500\\/0{\ncolor: color(from var(--tint) srgb r g b / 0);\n}\n.text-tint-500\\/10{\ncolor: color(from var(--tint) srgb r g b / 0.1);\n}\n.text-tint-500\\/100{\ncolor: color(from var(--tint) srgb r g b / 1);\n}\n.text-tint-500\\/15{\ncolor: color(from var(--tint) srgb r g b / 0.15);\n}\n.text-tint-500\\/20{\ncolor: color(from var(--tint) srgb r g b / 0.2);\n}\n.text-tint-500\\/25{\ncolor: color(from var(--tint) srgb r g b / 0.25);\n}\n.text-tint-500\\/30{\ncolor: color(from var(--tint) srgb r g b / 0.3);\n}\n.text-tint-500\\/35{\ncolor: color(from var(--tint) srgb r g b / 0.35);\n}\n.text-tint-500\\/40{\ncolor: color(from var(--tint) srgb r g b / 0.4);\n}\n.text-tint-500\\/45{\ncolor: color(from var(--tint) srgb r g b / 0.45);\n}\n.text-tint-500\\/5{\ncolor: color(from var(--tint) srgb r g b / 0.05);\n}\n.text-tint-500\\/50{\ncolor: color(from var(--tint) srgb r g b / 0.5);\n}\n.text-tint-500\\/55{\ncolor: color(from var(--tint) srgb r g b / 0.55);\n}\n.text-tint-500\\/60{\ncolor: color(from var(--tint) srgb r g b / 0.6);\n}\n.text-tint-500\\/65{\ncolor: color(from var(--tint) srgb r g b / 0.65);\n}\n.text-tint-500\\/70{\ncolor: color(from var(--tint) srgb r g b / 0.7);\n}\n.text-tint-500\\/75{\ncolor: color(from var(--tint) srgb r g b / 0.75);\n}\n.text-tint-500\\/80{\ncolor: color(from var(--tint) srgb r g b / 0.8);\n}\n.text-tint-500\\/85{\ncolor: color(from var(--tint) srgb r g b / 0.85);\n}\n.text-tint-500\\/90{\ncolor: color(from var(--tint) srgb r g b / 0.9);\n}\n.text-tint-500\\/95{\ncolor: color(from var(--tint) srgb r g b / 0.95);\n}\n.text-tint-600{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-text-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-tint-600\\/0{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-tint-600\\/10{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-tint-600\\/100{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-tint-600\\/15{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-tint-600\\/20{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-tint-600\\/25{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-tint-600\\/30{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-tint-600\\/35{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-tint-600\\/40{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-tint-600\\/45{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-tint-600\\/5{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-tint-600\\/50{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-tint-600\\/55{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-tint-600\\/60{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-tint-600\\/65{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-tint-600\\/70{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-tint-600\\/75{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-tint-600\\/80{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-tint-600\\/85{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-tint-600\\/90{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-tint-600\\/95{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-tint-700{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-text-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-tint-700\\/0{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-tint-700\\/10{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-tint-700\\/100{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-tint-700\\/15{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-tint-700\\/20{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-tint-700\\/25{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-tint-700\\/30{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-tint-700\\/35{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-tint-700\\/40{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-tint-700\\/45{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-tint-700\\/5{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-tint-700\\/50{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-tint-700\\/55{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-tint-700\\/60{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-tint-700\\/65{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-tint-700\\/70{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-tint-700\\/75{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-tint-700\\/80{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-tint-700\\/85{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-tint-700\\/90{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-tint-700\\/95{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-tint-800{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-text-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-tint-800\\/0{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-tint-800\\/10{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-tint-800\\/100{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-tint-800\\/15{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-tint-800\\/20{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-tint-800\\/25{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-tint-800\\/30{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-tint-800\\/35{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-tint-800\\/40{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-tint-800\\/45{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-tint-800\\/5{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-tint-800\\/50{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-tint-800\\/55{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-tint-800\\/60{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-tint-800\\/65{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-tint-800\\/70{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-tint-800\\/75{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-tint-800\\/80{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-tint-800\\/85{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-tint-800\\/90{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-tint-800\\/95{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-tint-900{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-text-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-tint-900\\/0{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-tint-900\\/10{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-tint-900\\/100{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-tint-900\\/15{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-tint-900\\/20{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-tint-900\\/25{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-tint-900\\/30{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-tint-900\\/35{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-tint-900\\/40{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-tint-900\\/45{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-tint-900\\/5{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-tint-900\\/50{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-tint-900\\/55{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-tint-900\\/60{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-tint-900\\/65{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-tint-900\\/70{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-tint-900\\/75{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-tint-900\\/80{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-tint-900\\/85{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-tint-900\\/90{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-tint-900\\/95{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-tint-950{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-text-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-tint-950\\/0{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-tint-950\\/10{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-tint-950\\/100{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-tint-950\\/15{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-tint-950\\/20{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-tint-950\\/25{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-tint-950\\/30{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-tint-950\\/35{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-tint-950\\/40{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-tint-950\\/45{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-tint-950\\/5{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-tint-950\\/50{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-tint-950\\/55{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-tint-950\\/60{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-tint-950\\/65{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-tint-950\\/70{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-tint-950\\/75{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-tint-950\\/80{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-tint-950\\/85{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-tint-950\\/90{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-tint-950\\/95{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-transparent{\ncolor: transparent;\n}\n.text-warning{\n--tw-text-opacity: 1;\ncolor: rgb(237 170 0 / var(--tw-text-opacity));\n}\n.text-warning-100{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / var(--tw-text-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-warning-100\\/0{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-warning-100\\/10{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-warning-100\\/100{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-warning-100\\/15{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-warning-100\\/20{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-warning-100\\/25{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-warning-100\\/30{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-warning-100\\/35{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-warning-100\\/40{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-warning-100\\/45{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-warning-100\\/5{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-warning-100\\/50{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-warning-100\\/55{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-warning-100\\/60{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-warning-100\\/65{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-warning-100\\/70{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-warning-100\\/75{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-warning-100\\/80{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-warning-100\\/85{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-warning-100\\/90{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-warning-100\\/95{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-warning-200{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / var(--tw-text-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-warning-200\\/0{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-warning-200\\/10{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-warning-200\\/100{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-warning-200\\/15{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-warning-200\\/20{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-warning-200\\/25{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-warning-200\\/30{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-warning-200\\/35{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-warning-200\\/40{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-warning-200\\/45{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-warning-200\\/5{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-warning-200\\/50{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-warning-200\\/55{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-warning-200\\/60{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-warning-200\\/65{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-warning-200\\/70{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-warning-200\\/75{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-warning-200\\/80{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-warning-200\\/85{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-warning-200\\/90{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-warning-200\\/95{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-warning-300{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / var(--tw-text-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-warning-300\\/0{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-warning-300\\/10{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-warning-300\\/100{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-warning-300\\/15{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-warning-300\\/20{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-warning-300\\/25{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-warning-300\\/30{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-warning-300\\/35{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-warning-300\\/40{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-warning-300\\/45{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-warning-300\\/5{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-warning-300\\/50{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-warning-300\\/55{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-warning-300\\/60{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-warning-300\\/65{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-warning-300\\/70{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-warning-300\\/75{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-warning-300\\/80{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-warning-300\\/85{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-warning-300\\/90{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-warning-300\\/95{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-warning-400{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / var(--tw-text-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-warning-400\\/0{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-warning-400\\/10{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-warning-400\\/100{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-warning-400\\/15{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-warning-400\\/20{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-warning-400\\/25{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-warning-400\\/30{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-warning-400\\/35{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-warning-400\\/40{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-warning-400\\/45{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-warning-400\\/5{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-warning-400\\/50{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-warning-400\\/55{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-warning-400\\/60{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-warning-400\\/65{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-warning-400\\/70{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-warning-400\\/75{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-warning-400\\/80{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-warning-400\\/85{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-warning-400\\/90{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-warning-400\\/95{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-warning-50{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / var(--tw-text-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-warning-50\\/0{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-warning-50\\/10{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-warning-50\\/100{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-warning-50\\/15{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-warning-50\\/20{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-warning-50\\/25{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-warning-50\\/30{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-warning-50\\/35{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-warning-50\\/40{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-warning-50\\/45{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-warning-50\\/5{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-warning-50\\/50{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-warning-50\\/55{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-warning-50\\/60{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-warning-50\\/65{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-warning-50\\/70{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-warning-50\\/75{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-warning-50\\/80{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-warning-50\\/85{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-warning-50\\/90{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-warning-50\\/95{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-warning-500{\n--tw-text-opacity: 1;\ncolor: color(from #edaa00 srgb r g b / var(--tw-text-opacity));\n}\n.text-warning-500\\/0{\ncolor: color(from #edaa00 srgb r g b / 0);\n}\n.text-warning-500\\/10{\ncolor: color(from #edaa00 srgb r g b / 0.1);\n}\n.text-warning-500\\/100{\ncolor: color(from #edaa00 srgb r g b / 1);\n}\n.text-warning-500\\/15{\ncolor: color(from #edaa00 srgb r g b / 0.15);\n}\n.text-warning-500\\/20{\ncolor: color(from #edaa00 srgb r g b / 0.2);\n}\n.text-warning-500\\/25{\ncolor: color(from #edaa00 srgb r g b / 0.25);\n}\n.text-warning-500\\/30{\ncolor: color(from #edaa00 srgb r g b / 0.3);\n}\n.text-warning-500\\/35{\ncolor: color(from #edaa00 srgb r g b / 0.35);\n}\n.text-warning-500\\/40{\ncolor: color(from #edaa00 srgb r g b / 0.4);\n}\n.text-warning-500\\/45{\ncolor: color(from #edaa00 srgb r g b / 0.45);\n}\n.text-warning-500\\/5{\ncolor: color(from #edaa00 srgb r g b / 0.05);\n}\n.text-warning-500\\/50{\ncolor: color(from #edaa00 srgb r g b / 0.5);\n}\n.text-warning-500\\/55{\ncolor: color(from #edaa00 srgb r g b / 0.55);\n}\n.text-warning-500\\/60{\ncolor: color(from #edaa00 srgb r g b / 0.6);\n}\n.text-warning-500\\/65{\ncolor: color(from #edaa00 srgb r g b / 0.65);\n}\n.text-warning-500\\/70{\ncolor: color(from #edaa00 srgb r g b / 0.7);\n}\n.text-warning-500\\/75{\ncolor: color(from #edaa00 srgb r g b / 0.75);\n}\n.text-warning-500\\/80{\ncolor: color(from #edaa00 srgb r g b / 0.8);\n}\n.text-warning-500\\/85{\ncolor: color(from #edaa00 srgb r g b / 0.85);\n}\n.text-warning-500\\/90{\ncolor: color(from #edaa00 srgb r g b / 0.9);\n}\n.text-warning-500\\/95{\ncolor: color(from #edaa00 srgb r g b / 0.95);\n}\n.text-warning-600{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / var(--tw-text-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-warning-600\\/0{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-warning-600\\/10{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-warning-600\\/100{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-warning-600\\/15{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-warning-600\\/20{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-warning-600\\/25{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-warning-600\\/30{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-warning-600\\/35{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-warning-600\\/40{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-warning-600\\/45{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-warning-600\\/5{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-warning-600\\/50{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-warning-600\\/55{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-warning-600\\/60{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-warning-600\\/65{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-warning-600\\/70{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-warning-600\\/75{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-warning-600\\/80{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-warning-600\\/85{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-warning-600\\/90{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-warning-600\\/95{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-warning-700{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / var(--tw-text-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-warning-700\\/0{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-warning-700\\/10{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-warning-700\\/100{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-warning-700\\/15{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-warning-700\\/20{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-warning-700\\/25{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-warning-700\\/30{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-warning-700\\/35{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-warning-700\\/40{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-warning-700\\/45{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-warning-700\\/5{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-warning-700\\/50{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-warning-700\\/55{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-warning-700\\/60{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-warning-700\\/65{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-warning-700\\/70{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-warning-700\\/75{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-warning-700\\/80{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-warning-700\\/85{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-warning-700\\/90{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-warning-700\\/95{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-warning-800{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / var(--tw-text-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-warning-800\\/0{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-warning-800\\/10{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-warning-800\\/100{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-warning-800\\/15{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-warning-800\\/20{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-warning-800\\/25{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-warning-800\\/30{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-warning-800\\/35{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-warning-800\\/40{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-warning-800\\/45{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-warning-800\\/5{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-warning-800\\/50{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-warning-800\\/55{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-warning-800\\/60{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-warning-800\\/65{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-warning-800\\/70{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-warning-800\\/75{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-warning-800\\/80{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-warning-800\\/85{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-warning-800\\/90{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-warning-800\\/95{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-warning-900{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / var(--tw-text-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-warning-900\\/0{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-warning-900\\/10{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-warning-900\\/100{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-warning-900\\/15{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-warning-900\\/20{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-warning-900\\/25{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-warning-900\\/30{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-warning-900\\/35{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-warning-900\\/40{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-warning-900\\/45{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-warning-900\\/5{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-warning-900\\/50{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-warning-900\\/55{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-warning-900\\/60{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-warning-900\\/65{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-warning-900\\/70{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-warning-900\\/75{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-warning-900\\/80{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-warning-900\\/85{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-warning-900\\/90{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-warning-900\\/95{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-warning-950{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / var(--tw-text-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-warning-950\\/0{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-warning-950\\/10{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-warning-950\\/100{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-warning-950\\/15{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-warning-950\\/20{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-warning-950\\/25{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-warning-950\\/30{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-warning-950\\/35{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-warning-950\\/40{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-warning-950\\/45{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-warning-950\\/5{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-warning-950\\/50{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-warning-950\\/55{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-warning-950\\/60{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-warning-950\\/65{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-warning-950\\/70{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-warning-950\\/75{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-warning-950\\/80{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-warning-950\\/85{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-warning-950\\/90{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-warning-950\\/95{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-warning\\/0{\ncolor: rgb(237 170 0 / 0);\n}\n.text-warning\\/10{\ncolor: rgb(237 170 0 / 0.1);\n}\n.text-warning\\/100{\ncolor: rgb(237 170 0 / 1);\n}\n.text-warning\\/15{\ncolor: rgb(237 170 0 / 0.15);\n}\n.text-warning\\/20{\ncolor: rgb(237 170 0 / 0.2);\n}\n.text-warning\\/25{\ncolor: rgb(237 170 0 / 0.25);\n}\n.text-warning\\/30{\ncolor: rgb(237 170 0 / 0.3);\n}\n.text-warning\\/35{\ncolor: rgb(237 170 0 / 0.35);\n}\n.text-warning\\/40{\ncolor: rgb(237 170 0 / 0.4);\n}\n.text-warning\\/45{\ncolor: rgb(237 170 0 / 0.45);\n}\n.text-warning\\/5{\ncolor: rgb(237 170 0 / 0.05);\n}\n.text-warning\\/50{\ncolor: rgb(237 170 0 / 0.5);\n}\n.text-warning\\/55{\ncolor: rgb(237 170 0 / 0.55);\n}\n.text-warning\\/60{\ncolor: rgb(237 170 0 / 0.6);\n}\n.text-warning\\/65{\ncolor: rgb(237 170 0 / 0.65);\n}\n.text-warning\\/70{\ncolor: rgb(237 170 0 / 0.7);\n}\n.text-warning\\/75{\ncolor: rgb(237 170 0 / 0.75);\n}\n.text-warning\\/80{\ncolor: rgb(237 170 0 / 0.8);\n}\n.text-warning\\/85{\ncolor: rgb(237 170 0 / 0.85);\n}\n.text-warning\\/90{\ncolor: rgb(237 170 0 / 0.9);\n}\n.text-warning\\/95{\ncolor: rgb(237 170 0 / 0.95);\n}\n.text-white{\n--tw-text-opacity: 1;\ncolor: rgb(254 253 252 / var(--tw-text-opacity));\n}\n.text-white\\/0{\ncolor: rgb(254 253 252 / 0);\n}\n.text-white\\/10{\ncolor: rgb(254 253 252 / 0.1);\n}\n.text-white\\/100{\ncolor: rgb(254 253 252 / 1);\n}\n.text-white\\/15{\ncolor: rgb(254 253 252 / 0.15);\n}\n.text-white\\/20{\ncolor: rgb(254 253 252 / 0.2);\n}\n.text-white\\/25{\ncolor: rgb(254 253 252 / 0.25);\n}\n.text-white\\/30{\ncolor: rgb(254 253 252 / 0.3);\n}\n.text-white\\/35{\ncolor: rgb(254 253 252 / 0.35);\n}\n.text-white\\/40{\ncolor: rgb(254 253 252 / 0.4);\n}\n.text-white\\/45{\ncolor: rgb(254 253 252 / 0.45);\n}\n.text-white\\/5{\ncolor: rgb(254 253 252 / 0.05);\n}\n.text-white\\/50{\ncolor: rgb(254 253 252 / 0.5);\n}\n.text-white\\/55{\ncolor: rgb(254 253 252 / 0.55);\n}\n.text-white\\/60{\ncolor: rgb(254 253 252 / 0.6);\n}\n.text-white\\/65{\ncolor: rgb(254 253 252 / 0.65);\n}\n.text-white\\/70{\ncolor: rgb(254 253 252 / 0.7);\n}\n.text-white\\/75{\ncolor: rgb(254 253 252 / 0.75);\n}\n.text-white\\/80{\ncolor: rgb(254 253 252 / 0.8);\n}\n.text-white\\/85{\ncolor: rgb(254 253 252 / 0.85);\n}\n.text-white\\/90{\ncolor: rgb(254 253 252 / 0.9);\n}\n.text-white\\/95{\ncolor: rgb(254 253 252 / 0.95);\n}\n.text-wood{\n--tw-text-opacity: 1;\ncolor: rgb(173 127 88 / var(--tw-text-opacity));\n}\n.text-wood-100{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / var(--tw-text-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-wood-100\\/0{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-wood-100\\/10{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-wood-100\\/100{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-wood-100\\/15{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-wood-100\\/20{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-wood-100\\/25{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-wood-100\\/30{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-wood-100\\/35{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-wood-100\\/40{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-wood-100\\/45{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-wood-100\\/5{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-wood-100\\/50{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-wood-100\\/55{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-wood-100\\/60{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-wood-100\\/65{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-wood-100\\/70{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-wood-100\\/75{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-wood-100\\/80{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-wood-100\\/85{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-wood-100\\/90{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-wood-100\\/95{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-wood-200{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / var(--tw-text-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-wood-200\\/0{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-wood-200\\/10{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-wood-200\\/100{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-wood-200\\/15{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-wood-200\\/20{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-wood-200\\/25{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-wood-200\\/30{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-wood-200\\/35{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-wood-200\\/40{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-wood-200\\/45{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-wood-200\\/5{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-wood-200\\/50{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-wood-200\\/55{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-wood-200\\/60{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-wood-200\\/65{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-wood-200\\/70{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-wood-200\\/75{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-wood-200\\/80{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-wood-200\\/85{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-wood-200\\/90{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-wood-200\\/95{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-wood-300{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / var(--tw-text-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-wood-300\\/0{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-wood-300\\/10{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-wood-300\\/100{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-wood-300\\/15{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-wood-300\\/20{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-wood-300\\/25{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-wood-300\\/30{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-wood-300\\/35{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-wood-300\\/40{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-wood-300\\/45{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-wood-300\\/5{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-wood-300\\/50{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-wood-300\\/55{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-wood-300\\/60{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-wood-300\\/65{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-wood-300\\/70{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-wood-300\\/75{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-wood-300\\/80{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-wood-300\\/85{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-wood-300\\/90{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-wood-300\\/95{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-wood-400{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / var(--tw-text-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-wood-400\\/0{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-wood-400\\/10{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-wood-400\\/100{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-wood-400\\/15{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-wood-400\\/20{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-wood-400\\/25{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-wood-400\\/30{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-wood-400\\/35{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-wood-400\\/40{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-wood-400\\/45{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-wood-400\\/5{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-wood-400\\/50{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-wood-400\\/55{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-wood-400\\/60{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-wood-400\\/65{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-wood-400\\/70{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-wood-400\\/75{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-wood-400\\/80{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-wood-400\\/85{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-wood-400\\/90{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-wood-400\\/95{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-wood-50{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / var(--tw-text-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-wood-50\\/0{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-wood-50\\/10{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-wood-50\\/100{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-wood-50\\/15{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-wood-50\\/20{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-wood-50\\/25{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-wood-50\\/30{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-wood-50\\/35{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-wood-50\\/40{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-wood-50\\/45{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-wood-50\\/5{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-wood-50\\/50{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-wood-50\\/55{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-wood-50\\/60{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-wood-50\\/65{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-wood-50\\/70{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-wood-50\\/75{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-wood-50\\/80{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-wood-50\\/85{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-wood-50\\/90{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-wood-50\\/95{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-wood-500{\n--tw-text-opacity: 1;\ncolor: color(from #ad7f58 srgb r g b / var(--tw-text-opacity));\n}\n.text-wood-500\\/0{\ncolor: color(from #ad7f58 srgb r g b / 0);\n}\n.text-wood-500\\/10{\ncolor: color(from #ad7f58 srgb r g b / 0.1);\n}\n.text-wood-500\\/100{\ncolor: color(from #ad7f58 srgb r g b / 1);\n}\n.text-wood-500\\/15{\ncolor: color(from #ad7f58 srgb r g b / 0.15);\n}\n.text-wood-500\\/20{\ncolor: color(from #ad7f58 srgb r g b / 0.2);\n}\n.text-wood-500\\/25{\ncolor: color(from #ad7f58 srgb r g b / 0.25);\n}\n.text-wood-500\\/30{\ncolor: color(from #ad7f58 srgb r g b / 0.3);\n}\n.text-wood-500\\/35{\ncolor: color(from #ad7f58 srgb r g b / 0.35);\n}\n.text-wood-500\\/40{\ncolor: color(from #ad7f58 srgb r g b / 0.4);\n}\n.text-wood-500\\/45{\ncolor: color(from #ad7f58 srgb r g b / 0.45);\n}\n.text-wood-500\\/5{\ncolor: color(from #ad7f58 srgb r g b / 0.05);\n}\n.text-wood-500\\/50{\ncolor: color(from #ad7f58 srgb r g b / 0.5);\n}\n.text-wood-500\\/55{\ncolor: color(from #ad7f58 srgb r g b / 0.55);\n}\n.text-wood-500\\/60{\ncolor: color(from #ad7f58 srgb r g b / 0.6);\n}\n.text-wood-500\\/65{\ncolor: color(from #ad7f58 srgb r g b / 0.65);\n}\n.text-wood-500\\/70{\ncolor: color(from #ad7f58 srgb r g b / 0.7);\n}\n.text-wood-500\\/75{\ncolor: color(from #ad7f58 srgb r g b / 0.75);\n}\n.text-wood-500\\/80{\ncolor: color(from #ad7f58 srgb r g b / 0.8);\n}\n.text-wood-500\\/85{\ncolor: color(from #ad7f58 srgb r g b / 0.85);\n}\n.text-wood-500\\/90{\ncolor: color(from #ad7f58 srgb r g b / 0.9);\n}\n.text-wood-500\\/95{\ncolor: color(from #ad7f58 srgb r g b / 0.95);\n}\n.text-wood-600{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / var(--tw-text-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-wood-600\\/0{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-wood-600\\/10{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-wood-600\\/100{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-wood-600\\/15{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-wood-600\\/20{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-wood-600\\/25{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-wood-600\\/30{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-wood-600\\/35{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-wood-600\\/40{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-wood-600\\/45{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-wood-600\\/5{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-wood-600\\/50{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-wood-600\\/55{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-wood-600\\/60{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-wood-600\\/65{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-wood-600\\/70{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-wood-600\\/75{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-wood-600\\/80{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-wood-600\\/85{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-wood-600\\/90{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-wood-600\\/95{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-wood-700{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / var(--tw-text-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-wood-700\\/0{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-wood-700\\/10{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-wood-700\\/100{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-wood-700\\/15{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-wood-700\\/20{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-wood-700\\/25{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-wood-700\\/30{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-wood-700\\/35{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-wood-700\\/40{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-wood-700\\/45{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-wood-700\\/5{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-wood-700\\/50{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-wood-700\\/55{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-wood-700\\/60{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-wood-700\\/65{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-wood-700\\/70{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-wood-700\\/75{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-wood-700\\/80{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-wood-700\\/85{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-wood-700\\/90{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-wood-700\\/95{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-wood-800{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / var(--tw-text-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-wood-800\\/0{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-wood-800\\/10{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-wood-800\\/100{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-wood-800\\/15{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-wood-800\\/20{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-wood-800\\/25{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-wood-800\\/30{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-wood-800\\/35{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-wood-800\\/40{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-wood-800\\/45{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-wood-800\\/5{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-wood-800\\/50{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-wood-800\\/55{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-wood-800\\/60{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-wood-800\\/65{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-wood-800\\/70{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-wood-800\\/75{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-wood-800\\/80{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-wood-800\\/85{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-wood-800\\/90{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-wood-800\\/95{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-wood-900{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / var(--tw-text-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-wood-900\\/0{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-wood-900\\/10{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-wood-900\\/100{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-wood-900\\/15{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-wood-900\\/20{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-wood-900\\/25{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-wood-900\\/30{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-wood-900\\/35{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-wood-900\\/40{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-wood-900\\/45{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-wood-900\\/5{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-wood-900\\/50{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-wood-900\\/55{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-wood-900\\/60{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-wood-900\\/65{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-wood-900\\/70{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-wood-900\\/75{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-wood-900\\/80{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-wood-900\\/85{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-wood-900\\/90{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-wood-900\\/95{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-wood-950{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / var(--tw-text-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-wood-950\\/0{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-wood-950\\/10{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-wood-950\\/100{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-wood-950\\/15{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-wood-950\\/20{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-wood-950\\/25{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-wood-950\\/30{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-wood-950\\/35{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-wood-950\\/40{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-wood-950\\/45{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-wood-950\\/5{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-wood-950\\/50{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-wood-950\\/55{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-wood-950\\/60{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-wood-950\\/65{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-wood-950\\/70{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-wood-950\\/75{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-wood-950\\/80{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-wood-950\\/85{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-wood-950\\/90{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-wood-950\\/95{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-wood\\/0{\ncolor: rgb(173 127 88 / 0);\n}\n.text-wood\\/10{\ncolor: rgb(173 127 88 / 0.1);\n}\n.text-wood\\/100{\ncolor: rgb(173 127 88 / 1);\n}\n.text-wood\\/15{\ncolor: rgb(173 127 88 / 0.15);\n}\n.text-wood\\/20{\ncolor: rgb(173 127 88 / 0.2);\n}\n.text-wood\\/25{\ncolor: rgb(173 127 88 / 0.25);\n}\n.text-wood\\/30{\ncolor: rgb(173 127 88 / 0.3);\n}\n.text-wood\\/35{\ncolor: rgb(173 127 88 / 0.35);\n}\n.text-wood\\/40{\ncolor: rgb(173 127 88 / 0.4);\n}\n.text-wood\\/45{\ncolor: rgb(173 127 88 / 0.45);\n}\n.text-wood\\/5{\ncolor: rgb(173 127 88 / 0.05);\n}\n.text-wood\\/50{\ncolor: rgb(173 127 88 / 0.5);\n}\n.text-wood\\/55{\ncolor: rgb(173 127 88 / 0.55);\n}\n.text-wood\\/60{\ncolor: rgb(173 127 88 / 0.6);\n}\n.text-wood\\/65{\ncolor: rgb(173 127 88 / 0.65);\n}\n.text-wood\\/70{\ncolor: rgb(173 127 88 / 0.7);\n}\n.text-wood\\/75{\ncolor: rgb(173 127 88 / 0.75);\n}\n.text-wood\\/80{\ncolor: rgb(173 127 88 / 0.8);\n}\n.text-wood\\/85{\ncolor: rgb(173 127 88 / 0.85);\n}\n.text-wood\\/90{\ncolor: rgb(173 127 88 / 0.9);\n}\n.text-wood\\/95{\ncolor: rgb(173 127 88 / 0.95);\n}\n.underline{\ntext-decoration-line: underline;\n}\n.line-through{\ntext-decoration-line: line-through;\n}\n.underline-offset-4{\ntext-underline-offset: 4px;\n}\n.opacity-0{\nopacity: 0;\n}\n.opacity-30{\nopacity: 0.3;\n}\n.opacity-35{\nopacity: 0.35;\n}\n.opacity-5{\nopacity: 0.05;\n}\n.opacity-50{\nopacity: 0.5;\n}\n.opacity-65{\nopacity: 0.65;\n}\n.opacity-75{\nopacity: 0.75;\n}\n.opacity-85{\nopacity: 0.85;\n}\n.opacity-90{\nopacity: 0.9;\n}\n.mix-blend-color-dodge{\nmix-blend-mode: color-dodge;\n}\n.shadow{\n--tw-shadow: 0 1px 3px 0 var(--fabric-shadow), 0 1px 2px -1px var(--fabric-shadow);\n--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);\nbox-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);\n}\n.shadow-inner{\n--tw-shadow: inset 0 2px 4px 0 var(--fabric-shadow);\n--tw-shadow-colored: inset 0 2px 4px 0 var(--tw-shadow-color);\nbox-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);\n}\n.shadow-inset{\n--tw-shadow: inset 0 0 2px var(--fabric-shadow);\n--tw-shadow-colored: inset 0 0 2px var(--tw-shadow-color);\nbox-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);\n}\n.shadow-lg{\n--tw-shadow: 0 10px 15px -3px var(--fabric-shadow), 0 4px 6px -4px var(--fabric-shadow);\n--tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);\nbox-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);\n}\n.shadow-md{\n--tw-shadow: 0 4px 6px -1px var(--fabric-shadow), 0 2px 4px -2px var(--fabric-shadow);\n--tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);\nbox-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);\n}\n.shadow-paper{\n--tw-shadow: 0 1px 3px 0 var(--fabric-shadow);\n--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color);\nbox-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);\n}\n.shadow-sm{\n--tw-shadow: 0 1px 2px 0 var(--fabric-shadow);\n--tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);\nbox-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);\n}\n.shadow-xl{\n--tw-shadow: 0 20px 25px -5px var(--fabric-shadow), 0 8px 10px -6px var(--fabric-shadow);\n--tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);\nbox-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);\n}\n.shadow{\n--tw-shadow-color: var(--fabric-shadow);\n--tw-shadow: var(--tw-shadow-colored);\n}\n.outline-none{\noutline: 2px solid transparent;\noutline-offset: 2px;\n}\n.outline{\noutline-style: solid;\n}\n.\\!outline-dashed{\noutline-style: dashed !important;\n}\n.outline-0{\noutline-width: 0px;\n}\n.outline-1{\noutline-width: 1px;\n}\n.outline-2{\noutline-width: 2px;\n}\n.-outline-offset-1{\noutline-offset: -1px;\n}\n.-outline-offset-2{\noutline-offset: -2px;\n}\n.outline-offset-2{\noutline-offset: 2px;\n}\n.\\!outline-tint-400{\noutline-color: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1)) !important;\n}\n.outline{\noutline-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 65%, color(from var(--tint) srgb r g b / 1));\n}\n.outline-accent-500{\noutline-color: color(from var(--accent) srgb r g b / 1);\n}\n.outline-accent-700{\noutline-color: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.outline-black{\noutline-color: #191a1b;\n}\n.outline-muted{\noutline-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 80%, color(from var(--tint) srgb r g b / 1));\n}\n.outline-primary-500{\noutline-color: color(from var(--primary) srgb r g b / 1);\n}\n.outline-tint-100{\noutline-color: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.outline-tint-200{\noutline-color: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.outline-tint-500\\/20{\noutline-color: color(from var(--tint) srgb r g b / 0.2);\n}\n.ring{\n--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);\n--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);\nbox-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);\n}\n.ring-0{\n--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);\n--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);\nbox-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);\n}\n.ring-1{\n--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);\n--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);\nbox-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);\n}\n.ring-accent{\n--tw-ring-color: var(--accent);\n}\n.ring-accent-100{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / var(--tw-ring-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-accent-100\\/0{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.ring-accent-100\\/10{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.ring-accent-100\\/100{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.ring-accent-100\\/15{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.ring-accent-100\\/20{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.ring-accent-100\\/25{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.ring-accent-100\\/30{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.ring-accent-100\\/35{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.ring-accent-100\\/40{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.ring-accent-100\\/45{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.ring-accent-100\\/5{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.ring-accent-100\\/50{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.ring-accent-100\\/55{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.ring-accent-100\\/60{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.ring-accent-100\\/65{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.ring-accent-100\\/70{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.ring-accent-100\\/75{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.ring-accent-100\\/80{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.ring-accent-100\\/85{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.ring-accent-100\\/90{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.ring-accent-100\\/95{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.ring-accent-200{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / var(--tw-ring-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-accent-200\\/0{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.ring-accent-200\\/10{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.ring-accent-200\\/100{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.ring-accent-200\\/15{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.ring-accent-200\\/20{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.ring-accent-200\\/25{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.ring-accent-200\\/30{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.ring-accent-200\\/35{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.ring-accent-200\\/40{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.ring-accent-200\\/45{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.ring-accent-200\\/5{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.ring-accent-200\\/50{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.ring-accent-200\\/55{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.ring-accent-200\\/60{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.ring-accent-200\\/65{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.ring-accent-200\\/70{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.ring-accent-200\\/75{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.ring-accent-200\\/80{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.ring-accent-200\\/85{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.ring-accent-200\\/90{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.ring-accent-200\\/95{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.ring-accent-300{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / var(--tw-ring-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-accent-300\\/0{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.ring-accent-300\\/10{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.ring-accent-300\\/100{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.ring-accent-300\\/15{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.ring-accent-300\\/20{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.ring-accent-300\\/25{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.ring-accent-300\\/30{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.ring-accent-300\\/35{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.ring-accent-300\\/40{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.ring-accent-300\\/45{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.ring-accent-300\\/5{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.ring-accent-300\\/50{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.ring-accent-300\\/55{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.ring-accent-300\\/60{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.ring-accent-300\\/65{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.ring-accent-300\\/70{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.ring-accent-300\\/75{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.ring-accent-300\\/80{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.ring-accent-300\\/85{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.ring-accent-300\\/90{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.ring-accent-300\\/95{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.ring-accent-400{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / var(--tw-ring-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-accent-400\\/0{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.ring-accent-400\\/10{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.ring-accent-400\\/100{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.ring-accent-400\\/15{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.ring-accent-400\\/20{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.ring-accent-400\\/25{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.ring-accent-400\\/30{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.ring-accent-400\\/35{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.ring-accent-400\\/40{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.ring-accent-400\\/45{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.ring-accent-400\\/5{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.ring-accent-400\\/50{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.ring-accent-400\\/55{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.ring-accent-400\\/60{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.ring-accent-400\\/65{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.ring-accent-400\\/70{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.ring-accent-400\\/75{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.ring-accent-400\\/80{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.ring-accent-400\\/85{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.ring-accent-400\\/90{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.ring-accent-400\\/95{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.ring-accent-50{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / var(--tw-ring-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-accent-50\\/0{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.ring-accent-50\\/10{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.ring-accent-50\\/100{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.ring-accent-50\\/15{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.ring-accent-50\\/20{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.ring-accent-50\\/25{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.ring-accent-50\\/30{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.ring-accent-50\\/35{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.ring-accent-50\\/40{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.ring-accent-50\\/45{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.ring-accent-50\\/5{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.ring-accent-50\\/50{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.ring-accent-50\\/55{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.ring-accent-50\\/60{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.ring-accent-50\\/65{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.ring-accent-50\\/70{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.ring-accent-50\\/75{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.ring-accent-50\\/80{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.ring-accent-50\\/85{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.ring-accent-50\\/90{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.ring-accent-50\\/95{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.ring-accent-500{\n--tw-ring-opacity: 1;\n--tw-ring-color: color(from var(--accent) srgb r g b / var(--tw-ring-opacity));\n}\n.ring-accent-500\\/0{\n--tw-ring-color: color(from var(--accent) srgb r g b / 0);\n}\n.ring-accent-500\\/10{\n--tw-ring-color: color(from var(--accent) srgb r g b / 0.1);\n}\n.ring-accent-500\\/100{\n--tw-ring-color: color(from var(--accent) srgb r g b / 1);\n}\n.ring-accent-500\\/15{\n--tw-ring-color: color(from var(--accent) srgb r g b / 0.15);\n}\n.ring-accent-500\\/20{\n--tw-ring-color: color(from var(--accent) srgb r g b / 0.2);\n}\n.ring-accent-500\\/25{\n--tw-ring-color: color(from var(--accent) srgb r g b / 0.25);\n}\n.ring-accent-500\\/30{\n--tw-ring-color: color(from var(--accent) srgb r g b / 0.3);\n}\n.ring-accent-500\\/35{\n--tw-ring-color: color(from var(--accent) srgb r g b / 0.35);\n}\n.ring-accent-500\\/40{\n--tw-ring-color: color(from var(--accent) srgb r g b / 0.4);\n}\n.ring-accent-500\\/45{\n--tw-ring-color: color(from var(--accent) srgb r g b / 0.45);\n}\n.ring-accent-500\\/5{\n--tw-ring-color: color(from var(--accent) srgb r g b / 0.05);\n}\n.ring-accent-500\\/50{\n--tw-ring-color: color(from var(--accent) srgb r g b / 0.5);\n}\n.ring-accent-500\\/55{\n--tw-ring-color: color(from var(--accent) srgb r g b / 0.55);\n}\n.ring-accent-500\\/60{\n--tw-ring-color: color(from var(--accent) srgb r g b / 0.6);\n}\n.ring-accent-500\\/65{\n--tw-ring-color: color(from var(--accent) srgb r g b / 0.65);\n}\n.ring-accent-500\\/70{\n--tw-ring-color: color(from var(--accent) srgb r g b / 0.7);\n}\n.ring-accent-500\\/75{\n--tw-ring-color: color(from var(--accent) srgb r g b / 0.75);\n}\n.ring-accent-500\\/80{\n--tw-ring-color: color(from var(--accent) srgb r g b / 0.8);\n}\n.ring-accent-500\\/85{\n--tw-ring-color: color(from var(--accent) srgb r g b / 0.85);\n}\n.ring-accent-500\\/90{\n--tw-ring-color: color(from var(--accent) srgb r g b / 0.9);\n}\n.ring-accent-500\\/95{\n--tw-ring-color: color(from var(--accent) srgb r g b / 0.95);\n}\n.ring-accent-600{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / var(--tw-ring-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-accent-600\\/0{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.ring-accent-600\\/10{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.ring-accent-600\\/100{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.ring-accent-600\\/15{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.ring-accent-600\\/20{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.ring-accent-600\\/25{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.ring-accent-600\\/30{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.ring-accent-600\\/35{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.ring-accent-600\\/40{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.ring-accent-600\\/45{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.ring-accent-600\\/5{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.ring-accent-600\\/50{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.ring-accent-600\\/55{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.ring-accent-600\\/60{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.ring-accent-600\\/65{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.ring-accent-600\\/70{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.ring-accent-600\\/75{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.ring-accent-600\\/80{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.ring-accent-600\\/85{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.ring-accent-600\\/90{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.ring-accent-600\\/95{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.ring-accent-700{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / var(--tw-ring-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-accent-700\\/0{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.ring-accent-700\\/10{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.ring-accent-700\\/100{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.ring-accent-700\\/15{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.ring-accent-700\\/20{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.ring-accent-700\\/25{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.ring-accent-700\\/30{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.ring-accent-700\\/35{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.ring-accent-700\\/40{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.ring-accent-700\\/45{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.ring-accent-700\\/5{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.ring-accent-700\\/50{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.ring-accent-700\\/55{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.ring-accent-700\\/60{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.ring-accent-700\\/65{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.ring-accent-700\\/70{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.ring-accent-700\\/75{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.ring-accent-700\\/80{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.ring-accent-700\\/85{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.ring-accent-700\\/90{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.ring-accent-700\\/95{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.ring-accent-800{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / var(--tw-ring-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-accent-800\\/0{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.ring-accent-800\\/10{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.ring-accent-800\\/100{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.ring-accent-800\\/15{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.ring-accent-800\\/20{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.ring-accent-800\\/25{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.ring-accent-800\\/30{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.ring-accent-800\\/35{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.ring-accent-800\\/40{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.ring-accent-800\\/45{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.ring-accent-800\\/5{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.ring-accent-800\\/50{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.ring-accent-800\\/55{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.ring-accent-800\\/60{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.ring-accent-800\\/65{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.ring-accent-800\\/70{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.ring-accent-800\\/75{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.ring-accent-800\\/80{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.ring-accent-800\\/85{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.ring-accent-800\\/90{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.ring-accent-800\\/95{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.ring-accent-900{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / var(--tw-ring-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-accent-900\\/0{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.ring-accent-900\\/10{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.ring-accent-900\\/100{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.ring-accent-900\\/15{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.ring-accent-900\\/20{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.ring-accent-900\\/25{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.ring-accent-900\\/30{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.ring-accent-900\\/35{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.ring-accent-900\\/40{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.ring-accent-900\\/45{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.ring-accent-900\\/5{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.ring-accent-900\\/50{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.ring-accent-900\\/55{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.ring-accent-900\\/60{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.ring-accent-900\\/65{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.ring-accent-900\\/70{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.ring-accent-900\\/75{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.ring-accent-900\\/80{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.ring-accent-900\\/85{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.ring-accent-900\\/90{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.ring-accent-900\\/95{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.ring-accent-950{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / var(--tw-ring-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-accent-950\\/0{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.ring-accent-950\\/10{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.ring-accent-950\\/100{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.ring-accent-950\\/15{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.ring-accent-950\\/20{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.ring-accent-950\\/25{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.ring-accent-950\\/30{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.ring-accent-950\\/35{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.ring-accent-950\\/40{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.ring-accent-950\\/45{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.ring-accent-950\\/5{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.ring-accent-950\\/50{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.ring-accent-950\\/55{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.ring-accent-950\\/60{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.ring-accent-950\\/65{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.ring-accent-950\\/70{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.ring-accent-950\\/75{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.ring-accent-950\\/80{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.ring-accent-950\\/85{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.ring-accent-950\\/90{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.ring-accent-950\\/95{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.ring-danger{\n--tw-ring-opacity: 1;\n--tw-ring-color: rgb(242 76 61 / var(--tw-ring-opacity));\n}\n.ring-danger-100{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / var(--tw-ring-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-danger-100\\/0{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.ring-danger-100\\/10{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.ring-danger-100\\/100{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.ring-danger-100\\/15{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.ring-danger-100\\/20{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.ring-danger-100\\/25{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.ring-danger-100\\/30{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.ring-danger-100\\/35{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.ring-danger-100\\/40{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.ring-danger-100\\/45{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.ring-danger-100\\/5{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.ring-danger-100\\/50{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.ring-danger-100\\/55{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.ring-danger-100\\/60{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.ring-danger-100\\/65{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.ring-danger-100\\/70{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.ring-danger-100\\/75{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.ring-danger-100\\/80{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.ring-danger-100\\/85{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.ring-danger-100\\/90{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.ring-danger-100\\/95{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.ring-danger-200{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / var(--tw-ring-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-danger-200\\/0{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.ring-danger-200\\/10{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.ring-danger-200\\/100{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.ring-danger-200\\/15{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.ring-danger-200\\/20{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.ring-danger-200\\/25{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.ring-danger-200\\/30{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.ring-danger-200\\/35{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.ring-danger-200\\/40{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.ring-danger-200\\/45{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.ring-danger-200\\/5{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.ring-danger-200\\/50{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.ring-danger-200\\/55{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.ring-danger-200\\/60{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.ring-danger-200\\/65{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.ring-danger-200\\/70{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.ring-danger-200\\/75{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.ring-danger-200\\/80{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.ring-danger-200\\/85{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.ring-danger-200\\/90{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.ring-danger-200\\/95{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.ring-danger-300{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / var(--tw-ring-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-danger-300\\/0{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.ring-danger-300\\/10{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.ring-danger-300\\/100{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.ring-danger-300\\/15{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.ring-danger-300\\/20{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.ring-danger-300\\/25{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.ring-danger-300\\/30{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.ring-danger-300\\/35{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.ring-danger-300\\/40{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.ring-danger-300\\/45{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.ring-danger-300\\/5{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.ring-danger-300\\/50{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.ring-danger-300\\/55{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.ring-danger-300\\/60{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.ring-danger-300\\/65{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.ring-danger-300\\/70{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.ring-danger-300\\/75{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.ring-danger-300\\/80{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.ring-danger-300\\/85{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.ring-danger-300\\/90{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.ring-danger-300\\/95{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.ring-danger-400{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / var(--tw-ring-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-danger-400\\/0{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.ring-danger-400\\/10{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.ring-danger-400\\/100{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.ring-danger-400\\/15{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.ring-danger-400\\/20{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.ring-danger-400\\/25{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.ring-danger-400\\/30{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.ring-danger-400\\/35{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.ring-danger-400\\/40{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.ring-danger-400\\/45{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.ring-danger-400\\/5{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.ring-danger-400\\/50{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.ring-danger-400\\/55{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.ring-danger-400\\/60{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.ring-danger-400\\/65{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.ring-danger-400\\/70{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.ring-danger-400\\/75{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.ring-danger-400\\/80{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.ring-danger-400\\/85{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.ring-danger-400\\/90{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.ring-danger-400\\/95{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.ring-danger-50{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / var(--tw-ring-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-danger-50\\/0{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.ring-danger-50\\/10{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.ring-danger-50\\/100{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.ring-danger-50\\/15{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.ring-danger-50\\/20{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.ring-danger-50\\/25{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.ring-danger-50\\/30{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.ring-danger-50\\/35{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.ring-danger-50\\/40{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.ring-danger-50\\/45{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.ring-danger-50\\/5{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.ring-danger-50\\/50{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.ring-danger-50\\/55{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.ring-danger-50\\/60{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.ring-danger-50\\/65{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.ring-danger-50\\/70{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.ring-danger-50\\/75{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.ring-danger-50\\/80{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.ring-danger-50\\/85{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.ring-danger-50\\/90{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.ring-danger-50\\/95{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.ring-danger-500{\n--tw-ring-opacity: 1;\n--tw-ring-color: color(from #f24c3d srgb r g b / var(--tw-ring-opacity));\n}\n.ring-danger-500\\/0{\n--tw-ring-color: color(from #f24c3d srgb r g b / 0);\n}\n.ring-danger-500\\/10{\n--tw-ring-color: color(from #f24c3d srgb r g b / 0.1);\n}\n.ring-danger-500\\/100{\n--tw-ring-color: color(from #f24c3d srgb r g b / 1);\n}\n.ring-danger-500\\/15{\n--tw-ring-color: color(from #f24c3d srgb r g b / 0.15);\n}\n.ring-danger-500\\/20{\n--tw-ring-color: color(from #f24c3d srgb r g b / 0.2);\n}\n.ring-danger-500\\/25{\n--tw-ring-color: color(from #f24c3d srgb r g b / 0.25);\n}\n.ring-danger-500\\/30{\n--tw-ring-color: color(from #f24c3d srgb r g b / 0.3);\n}\n.ring-danger-500\\/35{\n--tw-ring-color: color(from #f24c3d srgb r g b / 0.35);\n}\n.ring-danger-500\\/40{\n--tw-ring-color: color(from #f24c3d srgb r g b / 0.4);\n}\n.ring-danger-500\\/45{\n--tw-ring-color: color(from #f24c3d srgb r g b / 0.45);\n}\n.ring-danger-500\\/5{\n--tw-ring-color: color(from #f24c3d srgb r g b / 0.05);\n}\n.ring-danger-500\\/50{\n--tw-ring-color: color(from #f24c3d srgb r g b / 0.5);\n}\n.ring-danger-500\\/55{\n--tw-ring-color: color(from #f24c3d srgb r g b / 0.55);\n}\n.ring-danger-500\\/60{\n--tw-ring-color: color(from #f24c3d srgb r g b / 0.6);\n}\n.ring-danger-500\\/65{\n--tw-ring-color: color(from #f24c3d srgb r g b / 0.65);\n}\n.ring-danger-500\\/70{\n--tw-ring-color: color(from #f24c3d srgb r g b / 0.7);\n}\n.ring-danger-500\\/75{\n--tw-ring-color: color(from #f24c3d srgb r g b / 0.75);\n}\n.ring-danger-500\\/80{\n--tw-ring-color: color(from #f24c3d srgb r g b / 0.8);\n}\n.ring-danger-500\\/85{\n--tw-ring-color: color(from #f24c3d srgb r g b / 0.85);\n}\n.ring-danger-500\\/90{\n--tw-ring-color: color(from #f24c3d srgb r g b / 0.9);\n}\n.ring-danger-500\\/95{\n--tw-ring-color: color(from #f24c3d srgb r g b / 0.95);\n}\n.ring-danger-600{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / var(--tw-ring-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-danger-600\\/0{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.ring-danger-600\\/10{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.ring-danger-600\\/100{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.ring-danger-600\\/15{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.ring-danger-600\\/20{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.ring-danger-600\\/25{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.ring-danger-600\\/30{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.ring-danger-600\\/35{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.ring-danger-600\\/40{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.ring-danger-600\\/45{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.ring-danger-600\\/5{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.ring-danger-600\\/50{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.ring-danger-600\\/55{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.ring-danger-600\\/60{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.ring-danger-600\\/65{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.ring-danger-600\\/70{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.ring-danger-600\\/75{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.ring-danger-600\\/80{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.ring-danger-600\\/85{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.ring-danger-600\\/90{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.ring-danger-600\\/95{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.ring-danger-700{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / var(--tw-ring-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-danger-700\\/0{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.ring-danger-700\\/10{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.ring-danger-700\\/100{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.ring-danger-700\\/15{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.ring-danger-700\\/20{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.ring-danger-700\\/25{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.ring-danger-700\\/30{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.ring-danger-700\\/35{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.ring-danger-700\\/40{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.ring-danger-700\\/45{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.ring-danger-700\\/5{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.ring-danger-700\\/50{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.ring-danger-700\\/55{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.ring-danger-700\\/60{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.ring-danger-700\\/65{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.ring-danger-700\\/70{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.ring-danger-700\\/75{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.ring-danger-700\\/80{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.ring-danger-700\\/85{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.ring-danger-700\\/90{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.ring-danger-700\\/95{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.ring-danger-800{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / var(--tw-ring-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-danger-800\\/0{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.ring-danger-800\\/10{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.ring-danger-800\\/100{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.ring-danger-800\\/15{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.ring-danger-800\\/20{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.ring-danger-800\\/25{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.ring-danger-800\\/30{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.ring-danger-800\\/35{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.ring-danger-800\\/40{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.ring-danger-800\\/45{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.ring-danger-800\\/5{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.ring-danger-800\\/50{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.ring-danger-800\\/55{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.ring-danger-800\\/60{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.ring-danger-800\\/65{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.ring-danger-800\\/70{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.ring-danger-800\\/75{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.ring-danger-800\\/80{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.ring-danger-800\\/85{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.ring-danger-800\\/90{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.ring-danger-800\\/95{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.ring-danger-900{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / var(--tw-ring-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-danger-900\\/0{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.ring-danger-900\\/10{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.ring-danger-900\\/100{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.ring-danger-900\\/15{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.ring-danger-900\\/20{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.ring-danger-900\\/25{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.ring-danger-900\\/30{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.ring-danger-900\\/35{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.ring-danger-900\\/40{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.ring-danger-900\\/45{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.ring-danger-900\\/5{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.ring-danger-900\\/50{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.ring-danger-900\\/55{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.ring-danger-900\\/60{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.ring-danger-900\\/65{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.ring-danger-900\\/70{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.ring-danger-900\\/75{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.ring-danger-900\\/80{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.ring-danger-900\\/85{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.ring-danger-900\\/90{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.ring-danger-900\\/95{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.ring-danger-950{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / var(--tw-ring-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-danger-950\\/0{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.ring-danger-950\\/10{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.ring-danger-950\\/100{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.ring-danger-950\\/15{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.ring-danger-950\\/20{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.ring-danger-950\\/25{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.ring-danger-950\\/30{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.ring-danger-950\\/35{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.ring-danger-950\\/40{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.ring-danger-950\\/45{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.ring-danger-950\\/5{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.ring-danger-950\\/50{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.ring-danger-950\\/55{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.ring-danger-950\\/60{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.ring-danger-950\\/65{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.ring-danger-950\\/70{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.ring-danger-950\\/75{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.ring-danger-950\\/80{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.ring-danger-950\\/85{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.ring-danger-950\\/90{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.ring-danger-950\\/95{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.ring-danger\\/0{\n--tw-ring-color: rgb(242 76 61 / 0);\n}\n.ring-danger\\/10{\n--tw-ring-color: rgb(242 76 61 / 0.1);\n}\n.ring-danger\\/100{\n--tw-ring-color: rgb(242 76 61 / 1);\n}\n.ring-danger\\/15{\n--tw-ring-color: rgb(242 76 61 / 0.15);\n}\n.ring-danger\\/20{\n--tw-ring-color: rgb(242 76 61 / 0.2);\n}\n.ring-danger\\/25{\n--tw-ring-color: rgb(242 76 61 / 0.25);\n}\n.ring-danger\\/30{\n--tw-ring-color: rgb(242 76 61 / 0.3);\n}\n.ring-danger\\/35{\n--tw-ring-color: rgb(242 76 61 / 0.35);\n}\n.ring-danger\\/40{\n--tw-ring-color: rgb(242 76 61 / 0.4);\n}\n.ring-danger\\/45{\n--tw-ring-color: rgb(242 76 61 / 0.45);\n}\n.ring-danger\\/5{\n--tw-ring-color: rgb(242 76 61 / 0.05);\n}\n.ring-danger\\/50{\n--tw-ring-color: rgb(242 76 61 / 0.5);\n}\n.ring-danger\\/55{\n--tw-ring-color: rgb(242 76 61 / 0.55);\n}\n.ring-danger\\/60{\n--tw-ring-color: rgb(242 76 61 / 0.6);\n}\n.ring-danger\\/65{\n--tw-ring-color: rgb(242 76 61 / 0.65);\n}\n.ring-danger\\/70{\n--tw-ring-color: rgb(242 76 61 / 0.7);\n}\n.ring-danger\\/75{\n--tw-ring-color: rgb(242 76 61 / 0.75);\n}\n.ring-danger\\/80{\n--tw-ring-color: rgb(242 76 61 / 0.8);\n}\n.ring-danger\\/85{\n--tw-ring-color: rgb(242 76 61 / 0.85);\n}\n.ring-danger\\/90{\n--tw-ring-color: rgb(242 76 61 / 0.9);\n}\n.ring-danger\\/95{\n--tw-ring-color: rgb(242 76 61 / 0.95);\n}\n.ring-info{\n--tw-ring-opacity: 1;\n--tw-ring-color: rgb(0 191 255 / var(--tw-ring-opacity));\n}\n.ring-info-100{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / var(--tw-ring-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-info-100\\/0{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.ring-info-100\\/10{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.ring-info-100\\/100{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.ring-info-100\\/15{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.ring-info-100\\/20{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.ring-info-100\\/25{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.ring-info-100\\/30{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.ring-info-100\\/35{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.ring-info-100\\/40{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.ring-info-100\\/45{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.ring-info-100\\/5{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.ring-info-100\\/50{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.ring-info-100\\/55{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.ring-info-100\\/60{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.ring-info-100\\/65{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.ring-info-100\\/70{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.ring-info-100\\/75{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.ring-info-100\\/80{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.ring-info-100\\/85{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.ring-info-100\\/90{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.ring-info-100\\/95{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.ring-info-200{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / var(--tw-ring-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-info-200\\/0{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.ring-info-200\\/10{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.ring-info-200\\/100{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.ring-info-200\\/15{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.ring-info-200\\/20{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.ring-info-200\\/25{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.ring-info-200\\/30{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.ring-info-200\\/35{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.ring-info-200\\/40{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.ring-info-200\\/45{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.ring-info-200\\/5{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.ring-info-200\\/50{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.ring-info-200\\/55{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.ring-info-200\\/60{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.ring-info-200\\/65{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.ring-info-200\\/70{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.ring-info-200\\/75{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.ring-info-200\\/80{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.ring-info-200\\/85{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.ring-info-200\\/90{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.ring-info-200\\/95{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.ring-info-300{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / var(--tw-ring-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-info-300\\/0{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.ring-info-300\\/10{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.ring-info-300\\/100{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.ring-info-300\\/15{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.ring-info-300\\/20{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.ring-info-300\\/25{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.ring-info-300\\/30{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.ring-info-300\\/35{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.ring-info-300\\/40{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.ring-info-300\\/45{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.ring-info-300\\/5{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.ring-info-300\\/50{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.ring-info-300\\/55{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.ring-info-300\\/60{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.ring-info-300\\/65{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.ring-info-300\\/70{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.ring-info-300\\/75{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.ring-info-300\\/80{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.ring-info-300\\/85{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.ring-info-300\\/90{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.ring-info-300\\/95{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.ring-info-400{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / var(--tw-ring-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-info-400\\/0{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.ring-info-400\\/10{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.ring-info-400\\/100{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.ring-info-400\\/15{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.ring-info-400\\/20{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.ring-info-400\\/25{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.ring-info-400\\/30{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.ring-info-400\\/35{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.ring-info-400\\/40{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.ring-info-400\\/45{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.ring-info-400\\/5{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.ring-info-400\\/50{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.ring-info-400\\/55{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.ring-info-400\\/60{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.ring-info-400\\/65{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.ring-info-400\\/70{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.ring-info-400\\/75{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.ring-info-400\\/80{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.ring-info-400\\/85{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.ring-info-400\\/90{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.ring-info-400\\/95{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.ring-info-50{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / var(--tw-ring-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-info-50\\/0{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.ring-info-50\\/10{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.ring-info-50\\/100{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.ring-info-50\\/15{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.ring-info-50\\/20{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.ring-info-50\\/25{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.ring-info-50\\/30{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.ring-info-50\\/35{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.ring-info-50\\/40{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.ring-info-50\\/45{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.ring-info-50\\/5{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.ring-info-50\\/50{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.ring-info-50\\/55{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.ring-info-50\\/60{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.ring-info-50\\/65{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.ring-info-50\\/70{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.ring-info-50\\/75{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.ring-info-50\\/80{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.ring-info-50\\/85{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.ring-info-50\\/90{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.ring-info-50\\/95{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.ring-info-500{\n--tw-ring-opacity: 1;\n--tw-ring-color: color(from #00bfff srgb r g b / var(--tw-ring-opacity));\n}\n.ring-info-500\\/0{\n--tw-ring-color: color(from #00bfff srgb r g b / 0);\n}\n.ring-info-500\\/10{\n--tw-ring-color: color(from #00bfff srgb r g b / 0.1);\n}\n.ring-info-500\\/100{\n--tw-ring-color: color(from #00bfff srgb r g b / 1);\n}\n.ring-info-500\\/15{\n--tw-ring-color: color(from #00bfff srgb r g b / 0.15);\n}\n.ring-info-500\\/20{\n--tw-ring-color: color(from #00bfff srgb r g b / 0.2);\n}\n.ring-info-500\\/25{\n--tw-ring-color: color(from #00bfff srgb r g b / 0.25);\n}\n.ring-info-500\\/30{\n--tw-ring-color: color(from #00bfff srgb r g b / 0.3);\n}\n.ring-info-500\\/35{\n--tw-ring-color: color(from #00bfff srgb r g b / 0.35);\n}\n.ring-info-500\\/40{\n--tw-ring-color: color(from #00bfff srgb r g b / 0.4);\n}\n.ring-info-500\\/45{\n--tw-ring-color: color(from #00bfff srgb r g b / 0.45);\n}\n.ring-info-500\\/5{\n--tw-ring-color: color(from #00bfff srgb r g b / 0.05);\n}\n.ring-info-500\\/50{\n--tw-ring-color: color(from #00bfff srgb r g b / 0.5);\n}\n.ring-info-500\\/55{\n--tw-ring-color: color(from #00bfff srgb r g b / 0.55);\n}\n.ring-info-500\\/60{\n--tw-ring-color: color(from #00bfff srgb r g b / 0.6);\n}\n.ring-info-500\\/65{\n--tw-ring-color: color(from #00bfff srgb r g b / 0.65);\n}\n.ring-info-500\\/70{\n--tw-ring-color: color(from #00bfff srgb r g b / 0.7);\n}\n.ring-info-500\\/75{\n--tw-ring-color: color(from #00bfff srgb r g b / 0.75);\n}\n.ring-info-500\\/80{\n--tw-ring-color: color(from #00bfff srgb r g b / 0.8);\n}\n.ring-info-500\\/85{\n--tw-ring-color: color(from #00bfff srgb r g b / 0.85);\n}\n.ring-info-500\\/90{\n--tw-ring-color: color(from #00bfff srgb r g b / 0.9);\n}\n.ring-info-500\\/95{\n--tw-ring-color: color(from #00bfff srgb r g b / 0.95);\n}\n.ring-info-600{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / var(--tw-ring-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-info-600\\/0{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.ring-info-600\\/10{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.ring-info-600\\/100{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.ring-info-600\\/15{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.ring-info-600\\/20{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.ring-info-600\\/25{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.ring-info-600\\/30{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.ring-info-600\\/35{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.ring-info-600\\/40{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.ring-info-600\\/45{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.ring-info-600\\/5{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.ring-info-600\\/50{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.ring-info-600\\/55{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.ring-info-600\\/60{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.ring-info-600\\/65{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.ring-info-600\\/70{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.ring-info-600\\/75{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.ring-info-600\\/80{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.ring-info-600\\/85{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.ring-info-600\\/90{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.ring-info-600\\/95{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.ring-info-700{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / var(--tw-ring-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-info-700\\/0{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.ring-info-700\\/10{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.ring-info-700\\/100{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.ring-info-700\\/15{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.ring-info-700\\/20{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.ring-info-700\\/25{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.ring-info-700\\/30{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.ring-info-700\\/35{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.ring-info-700\\/40{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.ring-info-700\\/45{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.ring-info-700\\/5{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.ring-info-700\\/50{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.ring-info-700\\/55{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.ring-info-700\\/60{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.ring-info-700\\/65{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.ring-info-700\\/70{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.ring-info-700\\/75{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.ring-info-700\\/80{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.ring-info-700\\/85{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.ring-info-700\\/90{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.ring-info-700\\/95{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.ring-info-800{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / var(--tw-ring-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-info-800\\/0{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.ring-info-800\\/10{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.ring-info-800\\/100{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.ring-info-800\\/15{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.ring-info-800\\/20{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.ring-info-800\\/25{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.ring-info-800\\/30{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.ring-info-800\\/35{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.ring-info-800\\/40{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.ring-info-800\\/45{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.ring-info-800\\/5{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.ring-info-800\\/50{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.ring-info-800\\/55{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.ring-info-800\\/60{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.ring-info-800\\/65{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.ring-info-800\\/70{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.ring-info-800\\/75{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.ring-info-800\\/80{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.ring-info-800\\/85{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.ring-info-800\\/90{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.ring-info-800\\/95{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.ring-info-900{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / var(--tw-ring-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-info-900\\/0{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.ring-info-900\\/10{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.ring-info-900\\/100{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.ring-info-900\\/15{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.ring-info-900\\/20{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.ring-info-900\\/25{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.ring-info-900\\/30{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.ring-info-900\\/35{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.ring-info-900\\/40{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.ring-info-900\\/45{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.ring-info-900\\/5{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.ring-info-900\\/50{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.ring-info-900\\/55{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.ring-info-900\\/60{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.ring-info-900\\/65{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.ring-info-900\\/70{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.ring-info-900\\/75{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.ring-info-900\\/80{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.ring-info-900\\/85{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.ring-info-900\\/90{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.ring-info-900\\/95{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.ring-info-950{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / var(--tw-ring-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-info-950\\/0{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.ring-info-950\\/10{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.ring-info-950\\/100{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.ring-info-950\\/15{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.ring-info-950\\/20{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.ring-info-950\\/25{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.ring-info-950\\/30{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.ring-info-950\\/35{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.ring-info-950\\/40{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.ring-info-950\\/45{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.ring-info-950\\/5{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.ring-info-950\\/50{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.ring-info-950\\/55{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.ring-info-950\\/60{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.ring-info-950\\/65{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.ring-info-950\\/70{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.ring-info-950\\/75{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.ring-info-950\\/80{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.ring-info-950\\/85{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.ring-info-950\\/90{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.ring-info-950\\/95{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.ring-info\\/0{\n--tw-ring-color: rgb(0 191 255 / 0);\n}\n.ring-info\\/10{\n--tw-ring-color: rgb(0 191 255 / 0.1);\n}\n.ring-info\\/100{\n--tw-ring-color: rgb(0 191 255 / 1);\n}\n.ring-info\\/15{\n--tw-ring-color: rgb(0 191 255 / 0.15);\n}\n.ring-info\\/20{\n--tw-ring-color: rgb(0 191 255 / 0.2);\n}\n.ring-info\\/25{\n--tw-ring-color: rgb(0 191 255 / 0.25);\n}\n.ring-info\\/30{\n--tw-ring-color: rgb(0 191 255 / 0.3);\n}\n.ring-info\\/35{\n--tw-ring-color: rgb(0 191 255 / 0.35);\n}\n.ring-info\\/40{\n--tw-ring-color: rgb(0 191 255 / 0.4);\n}\n.ring-info\\/45{\n--tw-ring-color: rgb(0 191 255 / 0.45);\n}\n.ring-info\\/5{\n--tw-ring-color: rgb(0 191 255 / 0.05);\n}\n.ring-info\\/50{\n--tw-ring-color: rgb(0 191 255 / 0.5);\n}\n.ring-info\\/55{\n--tw-ring-color: rgb(0 191 255 / 0.55);\n}\n.ring-info\\/60{\n--tw-ring-color: rgb(0 191 255 / 0.6);\n}\n.ring-info\\/65{\n--tw-ring-color: rgb(0 191 255 / 0.65);\n}\n.ring-info\\/70{\n--tw-ring-color: rgb(0 191 255 / 0.7);\n}\n.ring-info\\/75{\n--tw-ring-color: rgb(0 191 255 / 0.75);\n}\n.ring-info\\/80{\n--tw-ring-color: rgb(0 191 255 / 0.8);\n}\n.ring-info\\/85{\n--tw-ring-color: rgb(0 191 255 / 0.85);\n}\n.ring-info\\/90{\n--tw-ring-color: rgb(0 191 255 / 0.9);\n}\n.ring-info\\/95{\n--tw-ring-color: rgb(0 191 255 / 0.95);\n}\n.ring-primary{\n--tw-ring-color: var(--primary);\n}\n.ring-primary-100{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-ring-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-primary-100\\/0{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.ring-primary-100\\/10{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.ring-primary-100\\/100{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.ring-primary-100\\/15{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.ring-primary-100\\/20{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.ring-primary-100\\/25{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.ring-primary-100\\/30{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.ring-primary-100\\/35{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.ring-primary-100\\/40{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.ring-primary-100\\/45{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.ring-primary-100\\/5{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.ring-primary-100\\/50{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.ring-primary-100\\/55{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.ring-primary-100\\/60{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.ring-primary-100\\/65{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.ring-primary-100\\/70{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.ring-primary-100\\/75{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.ring-primary-100\\/80{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.ring-primary-100\\/85{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.ring-primary-100\\/90{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.ring-primary-100\\/95{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.ring-primary-200{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-ring-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-primary-200\\/0{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.ring-primary-200\\/10{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.ring-primary-200\\/100{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.ring-primary-200\\/15{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.ring-primary-200\\/20{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.ring-primary-200\\/25{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.ring-primary-200\\/30{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.ring-primary-200\\/35{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.ring-primary-200\\/40{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.ring-primary-200\\/45{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.ring-primary-200\\/5{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.ring-primary-200\\/50{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.ring-primary-200\\/55{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.ring-primary-200\\/60{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.ring-primary-200\\/65{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.ring-primary-200\\/70{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.ring-primary-200\\/75{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.ring-primary-200\\/80{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.ring-primary-200\\/85{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.ring-primary-200\\/90{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.ring-primary-200\\/95{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.ring-primary-300{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-ring-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-primary-300\\/0{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.ring-primary-300\\/10{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.ring-primary-300\\/100{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.ring-primary-300\\/15{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.ring-primary-300\\/20{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.ring-primary-300\\/25{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.ring-primary-300\\/30{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.ring-primary-300\\/35{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.ring-primary-300\\/40{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.ring-primary-300\\/45{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.ring-primary-300\\/5{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.ring-primary-300\\/50{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.ring-primary-300\\/55{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.ring-primary-300\\/60{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.ring-primary-300\\/65{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.ring-primary-300\\/70{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.ring-primary-300\\/75{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.ring-primary-300\\/80{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.ring-primary-300\\/85{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.ring-primary-300\\/90{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.ring-primary-300\\/95{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.ring-primary-400{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-ring-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-primary-400\\/0{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.ring-primary-400\\/10{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.ring-primary-400\\/100{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.ring-primary-400\\/15{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.ring-primary-400\\/20{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.ring-primary-400\\/25{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.ring-primary-400\\/30{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.ring-primary-400\\/35{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.ring-primary-400\\/40{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.ring-primary-400\\/45{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.ring-primary-400\\/5{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.ring-primary-400\\/50{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.ring-primary-400\\/55{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.ring-primary-400\\/60{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.ring-primary-400\\/65{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.ring-primary-400\\/70{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.ring-primary-400\\/75{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.ring-primary-400\\/80{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.ring-primary-400\\/85{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.ring-primary-400\\/90{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.ring-primary-400\\/95{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.ring-primary-50{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-ring-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-primary-50\\/0{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.ring-primary-50\\/10{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.ring-primary-50\\/100{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.ring-primary-50\\/15{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.ring-primary-50\\/20{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.ring-primary-50\\/25{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.ring-primary-50\\/30{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.ring-primary-50\\/35{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.ring-primary-50\\/40{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.ring-primary-50\\/45{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.ring-primary-50\\/5{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.ring-primary-50\\/50{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.ring-primary-50\\/55{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.ring-primary-50\\/60{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.ring-primary-50\\/65{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.ring-primary-50\\/70{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.ring-primary-50\\/75{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.ring-primary-50\\/80{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.ring-primary-50\\/85{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.ring-primary-50\\/90{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.ring-primary-50\\/95{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.ring-primary-500{\n--tw-ring-opacity: 1;\n--tw-ring-color: color(from var(--primary) srgb r g b / var(--tw-ring-opacity));\n}\n.ring-primary-500\\/0{\n--tw-ring-color: color(from var(--primary) srgb r g b / 0);\n}\n.ring-primary-500\\/10{\n--tw-ring-color: color(from var(--primary) srgb r g b / 0.1);\n}\n.ring-primary-500\\/100{\n--tw-ring-color: color(from var(--primary) srgb r g b / 1);\n}\n.ring-primary-500\\/15{\n--tw-ring-color: color(from var(--primary) srgb r g b / 0.15);\n}\n.ring-primary-500\\/20{\n--tw-ring-color: color(from var(--primary) srgb r g b / 0.2);\n}\n.ring-primary-500\\/25{\n--tw-ring-color: color(from var(--primary) srgb r g b / 0.25);\n}\n.ring-primary-500\\/30{\n--tw-ring-color: color(from var(--primary) srgb r g b / 0.3);\n}\n.ring-primary-500\\/35{\n--tw-ring-color: color(from var(--primary) srgb r g b / 0.35);\n}\n.ring-primary-500\\/40{\n--tw-ring-color: color(from var(--primary) srgb r g b / 0.4);\n}\n.ring-primary-500\\/45{\n--tw-ring-color: color(from var(--primary) srgb r g b / 0.45);\n}\n.ring-primary-500\\/5{\n--tw-ring-color: color(from var(--primary) srgb r g b / 0.05);\n}\n.ring-primary-500\\/50{\n--tw-ring-color: color(from var(--primary) srgb r g b / 0.5);\n}\n.ring-primary-500\\/55{\n--tw-ring-color: color(from var(--primary) srgb r g b / 0.55);\n}\n.ring-primary-500\\/60{\n--tw-ring-color: color(from var(--primary) srgb r g b / 0.6);\n}\n.ring-primary-500\\/65{\n--tw-ring-color: color(from var(--primary) srgb r g b / 0.65);\n}\n.ring-primary-500\\/70{\n--tw-ring-color: color(from var(--primary) srgb r g b / 0.7);\n}\n.ring-primary-500\\/75{\n--tw-ring-color: color(from var(--primary) srgb r g b / 0.75);\n}\n.ring-primary-500\\/80{\n--tw-ring-color: color(from var(--primary) srgb r g b / 0.8);\n}\n.ring-primary-500\\/85{\n--tw-ring-color: color(from var(--primary) srgb r g b / 0.85);\n}\n.ring-primary-500\\/90{\n--tw-ring-color: color(from var(--primary) srgb r g b / 0.9);\n}\n.ring-primary-500\\/95{\n--tw-ring-color: color(from var(--primary) srgb r g b / 0.95);\n}\n.ring-primary-600{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-ring-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-primary-600\\/0{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.ring-primary-600\\/10{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.ring-primary-600\\/100{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.ring-primary-600\\/15{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.ring-primary-600\\/20{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.ring-primary-600\\/25{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.ring-primary-600\\/30{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.ring-primary-600\\/35{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.ring-primary-600\\/40{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.ring-primary-600\\/45{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.ring-primary-600\\/5{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.ring-primary-600\\/50{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.ring-primary-600\\/55{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.ring-primary-600\\/60{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.ring-primary-600\\/65{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.ring-primary-600\\/70{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.ring-primary-600\\/75{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.ring-primary-600\\/80{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.ring-primary-600\\/85{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.ring-primary-600\\/90{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.ring-primary-600\\/95{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.ring-primary-700{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-ring-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-primary-700\\/0{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.ring-primary-700\\/10{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.ring-primary-700\\/100{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.ring-primary-700\\/15{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.ring-primary-700\\/20{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.ring-primary-700\\/25{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.ring-primary-700\\/30{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.ring-primary-700\\/35{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.ring-primary-700\\/40{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.ring-primary-700\\/45{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.ring-primary-700\\/5{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.ring-primary-700\\/50{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.ring-primary-700\\/55{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.ring-primary-700\\/60{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.ring-primary-700\\/65{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.ring-primary-700\\/70{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.ring-primary-700\\/75{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.ring-primary-700\\/80{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.ring-primary-700\\/85{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.ring-primary-700\\/90{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.ring-primary-700\\/95{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.ring-primary-800{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-ring-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-primary-800\\/0{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.ring-primary-800\\/10{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.ring-primary-800\\/100{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.ring-primary-800\\/15{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.ring-primary-800\\/20{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.ring-primary-800\\/25{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.ring-primary-800\\/30{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.ring-primary-800\\/35{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.ring-primary-800\\/40{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.ring-primary-800\\/45{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.ring-primary-800\\/5{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.ring-primary-800\\/50{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.ring-primary-800\\/55{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.ring-primary-800\\/60{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.ring-primary-800\\/65{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.ring-primary-800\\/70{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.ring-primary-800\\/75{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.ring-primary-800\\/80{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.ring-primary-800\\/85{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.ring-primary-800\\/90{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.ring-primary-800\\/95{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.ring-primary-900{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-ring-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-primary-900\\/0{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.ring-primary-900\\/10{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.ring-primary-900\\/100{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.ring-primary-900\\/15{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.ring-primary-900\\/20{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.ring-primary-900\\/25{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.ring-primary-900\\/30{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.ring-primary-900\\/35{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.ring-primary-900\\/40{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.ring-primary-900\\/45{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.ring-primary-900\\/5{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.ring-primary-900\\/50{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.ring-primary-900\\/55{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.ring-primary-900\\/60{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.ring-primary-900\\/65{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.ring-primary-900\\/70{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.ring-primary-900\\/75{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.ring-primary-900\\/80{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.ring-primary-900\\/85{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.ring-primary-900\\/90{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.ring-primary-900\\/95{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.ring-primary-950{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-ring-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-primary-950\\/0{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.ring-primary-950\\/10{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.ring-primary-950\\/100{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.ring-primary-950\\/15{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.ring-primary-950\\/20{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.ring-primary-950\\/25{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.ring-primary-950\\/30{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.ring-primary-950\\/35{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.ring-primary-950\\/40{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.ring-primary-950\\/45{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.ring-primary-950\\/5{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.ring-primary-950\\/50{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.ring-primary-950\\/55{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.ring-primary-950\\/60{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.ring-primary-950\\/65{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.ring-primary-950\\/70{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.ring-primary-950\\/75{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.ring-primary-950\\/80{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.ring-primary-950\\/85{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.ring-primary-950\\/90{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.ring-primary-950\\/95{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.ring-success{\n--tw-ring-opacity: 1;\n--tw-ring-color: rgb(68 188 105 / var(--tw-ring-opacity));\n}\n.ring-success-100{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / var(--tw-ring-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-success-100\\/0{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.ring-success-100\\/10{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.ring-success-100\\/100{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.ring-success-100\\/15{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.ring-success-100\\/20{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.ring-success-100\\/25{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.ring-success-100\\/30{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.ring-success-100\\/35{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.ring-success-100\\/40{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.ring-success-100\\/45{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.ring-success-100\\/5{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.ring-success-100\\/50{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.ring-success-100\\/55{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.ring-success-100\\/60{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.ring-success-100\\/65{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.ring-success-100\\/70{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.ring-success-100\\/75{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.ring-success-100\\/80{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.ring-success-100\\/85{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.ring-success-100\\/90{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.ring-success-100\\/95{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.ring-success-200{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / var(--tw-ring-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-success-200\\/0{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.ring-success-200\\/10{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.ring-success-200\\/100{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.ring-success-200\\/15{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.ring-success-200\\/20{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.ring-success-200\\/25{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.ring-success-200\\/30{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.ring-success-200\\/35{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.ring-success-200\\/40{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.ring-success-200\\/45{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.ring-success-200\\/5{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.ring-success-200\\/50{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.ring-success-200\\/55{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.ring-success-200\\/60{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.ring-success-200\\/65{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.ring-success-200\\/70{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.ring-success-200\\/75{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.ring-success-200\\/80{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.ring-success-200\\/85{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.ring-success-200\\/90{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.ring-success-200\\/95{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.ring-success-300{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / var(--tw-ring-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-success-300\\/0{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.ring-success-300\\/10{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.ring-success-300\\/100{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.ring-success-300\\/15{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.ring-success-300\\/20{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.ring-success-300\\/25{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.ring-success-300\\/30{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.ring-success-300\\/35{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.ring-success-300\\/40{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.ring-success-300\\/45{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.ring-success-300\\/5{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.ring-success-300\\/50{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.ring-success-300\\/55{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.ring-success-300\\/60{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.ring-success-300\\/65{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.ring-success-300\\/70{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.ring-success-300\\/75{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.ring-success-300\\/80{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.ring-success-300\\/85{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.ring-success-300\\/90{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.ring-success-300\\/95{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.ring-success-400{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / var(--tw-ring-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-success-400\\/0{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.ring-success-400\\/10{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.ring-success-400\\/100{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.ring-success-400\\/15{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.ring-success-400\\/20{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.ring-success-400\\/25{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.ring-success-400\\/30{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.ring-success-400\\/35{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.ring-success-400\\/40{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.ring-success-400\\/45{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.ring-success-400\\/5{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.ring-success-400\\/50{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.ring-success-400\\/55{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.ring-success-400\\/60{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.ring-success-400\\/65{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.ring-success-400\\/70{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.ring-success-400\\/75{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.ring-success-400\\/80{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.ring-success-400\\/85{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.ring-success-400\\/90{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.ring-success-400\\/95{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.ring-success-50{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / var(--tw-ring-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-success-50\\/0{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.ring-success-50\\/10{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.ring-success-50\\/100{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.ring-success-50\\/15{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.ring-success-50\\/20{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.ring-success-50\\/25{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.ring-success-50\\/30{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.ring-success-50\\/35{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.ring-success-50\\/40{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.ring-success-50\\/45{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.ring-success-50\\/5{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.ring-success-50\\/50{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.ring-success-50\\/55{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.ring-success-50\\/60{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.ring-success-50\\/65{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.ring-success-50\\/70{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.ring-success-50\\/75{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.ring-success-50\\/80{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.ring-success-50\\/85{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.ring-success-50\\/90{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.ring-success-50\\/95{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.ring-success-500{\n--tw-ring-opacity: 1;\n--tw-ring-color: color(from #44bc69 srgb r g b / var(--tw-ring-opacity));\n}\n.ring-success-500\\/0{\n--tw-ring-color: color(from #44bc69 srgb r g b / 0);\n}\n.ring-success-500\\/10{\n--tw-ring-color: color(from #44bc69 srgb r g b / 0.1);\n}\n.ring-success-500\\/100{\n--tw-ring-color: color(from #44bc69 srgb r g b / 1);\n}\n.ring-success-500\\/15{\n--tw-ring-color: color(from #44bc69 srgb r g b / 0.15);\n}\n.ring-success-500\\/20{\n--tw-ring-color: color(from #44bc69 srgb r g b / 0.2);\n}\n.ring-success-500\\/25{\n--tw-ring-color: color(from #44bc69 srgb r g b / 0.25);\n}\n.ring-success-500\\/30{\n--tw-ring-color: color(from #44bc69 srgb r g b / 0.3);\n}\n.ring-success-500\\/35{\n--tw-ring-color: color(from #44bc69 srgb r g b / 0.35);\n}\n.ring-success-500\\/40{\n--tw-ring-color: color(from #44bc69 srgb r g b / 0.4);\n}\n.ring-success-500\\/45{\n--tw-ring-color: color(from #44bc69 srgb r g b / 0.45);\n}\n.ring-success-500\\/5{\n--tw-ring-color: color(from #44bc69 srgb r g b / 0.05);\n}\n.ring-success-500\\/50{\n--tw-ring-color: color(from #44bc69 srgb r g b / 0.5);\n}\n.ring-success-500\\/55{\n--tw-ring-color: color(from #44bc69 srgb r g b / 0.55);\n}\n.ring-success-500\\/60{\n--tw-ring-color: color(from #44bc69 srgb r g b / 0.6);\n}\n.ring-success-500\\/65{\n--tw-ring-color: color(from #44bc69 srgb r g b / 0.65);\n}\n.ring-success-500\\/70{\n--tw-ring-color: color(from #44bc69 srgb r g b / 0.7);\n}\n.ring-success-500\\/75{\n--tw-ring-color: color(from #44bc69 srgb r g b / 0.75);\n}\n.ring-success-500\\/80{\n--tw-ring-color: color(from #44bc69 srgb r g b / 0.8);\n}\n.ring-success-500\\/85{\n--tw-ring-color: color(from #44bc69 srgb r g b / 0.85);\n}\n.ring-success-500\\/90{\n--tw-ring-color: color(from #44bc69 srgb r g b / 0.9);\n}\n.ring-success-500\\/95{\n--tw-ring-color: color(from #44bc69 srgb r g b / 0.95);\n}\n.ring-success-600{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / var(--tw-ring-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-success-600\\/0{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.ring-success-600\\/10{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.ring-success-600\\/100{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.ring-success-600\\/15{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.ring-success-600\\/20{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.ring-success-600\\/25{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.ring-success-600\\/30{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.ring-success-600\\/35{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.ring-success-600\\/40{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.ring-success-600\\/45{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.ring-success-600\\/5{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.ring-success-600\\/50{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.ring-success-600\\/55{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.ring-success-600\\/60{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.ring-success-600\\/65{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.ring-success-600\\/70{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.ring-success-600\\/75{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.ring-success-600\\/80{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.ring-success-600\\/85{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.ring-success-600\\/90{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.ring-success-600\\/95{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.ring-success-700{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / var(--tw-ring-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-success-700\\/0{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.ring-success-700\\/10{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.ring-success-700\\/100{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.ring-success-700\\/15{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.ring-success-700\\/20{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.ring-success-700\\/25{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.ring-success-700\\/30{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.ring-success-700\\/35{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.ring-success-700\\/40{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.ring-success-700\\/45{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.ring-success-700\\/5{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.ring-success-700\\/50{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.ring-success-700\\/55{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.ring-success-700\\/60{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.ring-success-700\\/65{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.ring-success-700\\/70{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.ring-success-700\\/75{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.ring-success-700\\/80{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.ring-success-700\\/85{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.ring-success-700\\/90{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.ring-success-700\\/95{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.ring-success-800{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / var(--tw-ring-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-success-800\\/0{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.ring-success-800\\/10{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.ring-success-800\\/100{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.ring-success-800\\/15{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.ring-success-800\\/20{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.ring-success-800\\/25{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.ring-success-800\\/30{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.ring-success-800\\/35{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.ring-success-800\\/40{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.ring-success-800\\/45{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.ring-success-800\\/5{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.ring-success-800\\/50{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.ring-success-800\\/55{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.ring-success-800\\/60{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.ring-success-800\\/65{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.ring-success-800\\/70{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.ring-success-800\\/75{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.ring-success-800\\/80{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.ring-success-800\\/85{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.ring-success-800\\/90{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.ring-success-800\\/95{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.ring-success-900{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / var(--tw-ring-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-success-900\\/0{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.ring-success-900\\/10{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.ring-success-900\\/100{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.ring-success-900\\/15{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.ring-success-900\\/20{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.ring-success-900\\/25{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.ring-success-900\\/30{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.ring-success-900\\/35{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.ring-success-900\\/40{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.ring-success-900\\/45{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.ring-success-900\\/5{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.ring-success-900\\/50{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.ring-success-900\\/55{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.ring-success-900\\/60{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.ring-success-900\\/65{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.ring-success-900\\/70{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.ring-success-900\\/75{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.ring-success-900\\/80{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.ring-success-900\\/85{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.ring-success-900\\/90{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.ring-success-900\\/95{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.ring-success-950{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / var(--tw-ring-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-success-950\\/0{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.ring-success-950\\/10{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.ring-success-950\\/100{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.ring-success-950\\/15{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.ring-success-950\\/20{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.ring-success-950\\/25{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.ring-success-950\\/30{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.ring-success-950\\/35{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.ring-success-950\\/40{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.ring-success-950\\/45{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.ring-success-950\\/5{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.ring-success-950\\/50{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.ring-success-950\\/55{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.ring-success-950\\/60{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.ring-success-950\\/65{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.ring-success-950\\/70{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.ring-success-950\\/75{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.ring-success-950\\/80{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.ring-success-950\\/85{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.ring-success-950\\/90{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.ring-success-950\\/95{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.ring-success\\/0{\n--tw-ring-color: rgb(68 188 105 / 0);\n}\n.ring-success\\/10{\n--tw-ring-color: rgb(68 188 105 / 0.1);\n}\n.ring-success\\/100{\n--tw-ring-color: rgb(68 188 105 / 1);\n}\n.ring-success\\/15{\n--tw-ring-color: rgb(68 188 105 / 0.15);\n}\n.ring-success\\/20{\n--tw-ring-color: rgb(68 188 105 / 0.2);\n}\n.ring-success\\/25{\n--tw-ring-color: rgb(68 188 105 / 0.25);\n}\n.ring-success\\/30{\n--tw-ring-color: rgb(68 188 105 / 0.3);\n}\n.ring-success\\/35{\n--tw-ring-color: rgb(68 188 105 / 0.35);\n}\n.ring-success\\/40{\n--tw-ring-color: rgb(68 188 105 / 0.4);\n}\n.ring-success\\/45{\n--tw-ring-color: rgb(68 188 105 / 0.45);\n}\n.ring-success\\/5{\n--tw-ring-color: rgb(68 188 105 / 0.05);\n}\n.ring-success\\/50{\n--tw-ring-color: rgb(68 188 105 / 0.5);\n}\n.ring-success\\/55{\n--tw-ring-color: rgb(68 188 105 / 0.55);\n}\n.ring-success\\/60{\n--tw-ring-color: rgb(68 188 105 / 0.6);\n}\n.ring-success\\/65{\n--tw-ring-color: rgb(68 188 105 / 0.65);\n}\n.ring-success\\/70{\n--tw-ring-color: rgb(68 188 105 / 0.7);\n}\n.ring-success\\/75{\n--tw-ring-color: rgb(68 188 105 / 0.75);\n}\n.ring-success\\/80{\n--tw-ring-color: rgb(68 188 105 / 0.8);\n}\n.ring-success\\/85{\n--tw-ring-color: rgb(68 188 105 / 0.85);\n}\n.ring-success\\/90{\n--tw-ring-color: rgb(68 188 105 / 0.9);\n}\n.ring-success\\/95{\n--tw-ring-color: rgb(68 188 105 / 0.95);\n}\n.ring-tint{\n--tw-ring-color: var(--tint);\n}\n.ring-tint-100{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-ring-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-tint-100\\/0{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.ring-tint-100\\/10{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.ring-tint-100\\/100{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.ring-tint-100\\/15{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.ring-tint-100\\/20{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.ring-tint-100\\/25{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.ring-tint-100\\/30{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.ring-tint-100\\/35{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.ring-tint-100\\/40{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.ring-tint-100\\/45{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.ring-tint-100\\/5{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.ring-tint-100\\/50{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.ring-tint-100\\/55{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.ring-tint-100\\/60{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.ring-tint-100\\/65{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.ring-tint-100\\/70{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.ring-tint-100\\/75{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.ring-tint-100\\/80{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.ring-tint-100\\/85{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.ring-tint-100\\/90{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.ring-tint-100\\/95{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.ring-tint-200{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-ring-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-tint-200\\/0{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.ring-tint-200\\/10{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.ring-tint-200\\/100{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.ring-tint-200\\/15{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.ring-tint-200\\/20{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.ring-tint-200\\/25{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.ring-tint-200\\/30{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.ring-tint-200\\/35{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.ring-tint-200\\/40{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.ring-tint-200\\/45{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.ring-tint-200\\/5{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.ring-tint-200\\/50{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.ring-tint-200\\/55{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.ring-tint-200\\/60{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.ring-tint-200\\/65{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.ring-tint-200\\/70{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.ring-tint-200\\/75{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.ring-tint-200\\/80{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.ring-tint-200\\/85{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.ring-tint-200\\/90{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.ring-tint-200\\/95{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.ring-tint-300{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-ring-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-tint-300\\/0{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.ring-tint-300\\/10{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.ring-tint-300\\/100{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.ring-tint-300\\/15{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.ring-tint-300\\/20{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.ring-tint-300\\/25{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.ring-tint-300\\/30{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.ring-tint-300\\/35{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.ring-tint-300\\/40{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.ring-tint-300\\/45{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.ring-tint-300\\/5{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.ring-tint-300\\/50{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.ring-tint-300\\/55{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.ring-tint-300\\/60{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.ring-tint-300\\/65{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.ring-tint-300\\/70{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.ring-tint-300\\/75{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.ring-tint-300\\/80{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.ring-tint-300\\/85{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.ring-tint-300\\/90{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.ring-tint-300\\/95{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.ring-tint-400{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-ring-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-tint-400\\/0{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.ring-tint-400\\/10{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.ring-tint-400\\/100{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.ring-tint-400\\/15{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.ring-tint-400\\/20{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.ring-tint-400\\/25{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.ring-tint-400\\/30{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.ring-tint-400\\/35{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.ring-tint-400\\/40{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.ring-tint-400\\/45{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.ring-tint-400\\/5{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.ring-tint-400\\/50{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.ring-tint-400\\/55{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.ring-tint-400\\/60{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.ring-tint-400\\/65{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.ring-tint-400\\/70{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.ring-tint-400\\/75{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.ring-tint-400\\/80{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.ring-tint-400\\/85{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.ring-tint-400\\/90{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.ring-tint-400\\/95{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.ring-tint-50{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-ring-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-tint-50\\/0{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.ring-tint-50\\/10{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.ring-tint-50\\/100{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.ring-tint-50\\/15{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.ring-tint-50\\/20{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.ring-tint-50\\/25{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.ring-tint-50\\/30{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.ring-tint-50\\/35{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.ring-tint-50\\/40{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.ring-tint-50\\/45{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.ring-tint-50\\/5{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.ring-tint-50\\/50{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.ring-tint-50\\/55{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.ring-tint-50\\/60{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.ring-tint-50\\/65{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.ring-tint-50\\/70{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.ring-tint-50\\/75{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.ring-tint-50\\/80{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.ring-tint-50\\/85{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.ring-tint-50\\/90{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.ring-tint-50\\/95{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.ring-tint-500{\n--tw-ring-opacity: 1;\n--tw-ring-color: color(from var(--tint) srgb r g b / var(--tw-ring-opacity));\n}\n.ring-tint-500\\/0{\n--tw-ring-color: color(from var(--tint) srgb r g b / 0);\n}\n.ring-tint-500\\/10{\n--tw-ring-color: color(from var(--tint) srgb r g b / 0.1);\n}\n.ring-tint-500\\/100{\n--tw-ring-color: color(from var(--tint) srgb r g b / 1);\n}\n.ring-tint-500\\/15{\n--tw-ring-color: color(from var(--tint) srgb r g b / 0.15);\n}\n.ring-tint-500\\/20{\n--tw-ring-color: color(from var(--tint) srgb r g b / 0.2);\n}\n.ring-tint-500\\/25{\n--tw-ring-color: color(from var(--tint) srgb r g b / 0.25);\n}\n.ring-tint-500\\/30{\n--tw-ring-color: color(from var(--tint) srgb r g b / 0.3);\n}\n.ring-tint-500\\/35{\n--tw-ring-color: color(from var(--tint) srgb r g b / 0.35);\n}\n.ring-tint-500\\/40{\n--tw-ring-color: color(from var(--tint) srgb r g b / 0.4);\n}\n.ring-tint-500\\/45{\n--tw-ring-color: color(from var(--tint) srgb r g b / 0.45);\n}\n.ring-tint-500\\/5{\n--tw-ring-color: color(from var(--tint) srgb r g b / 0.05);\n}\n.ring-tint-500\\/50{\n--tw-ring-color: color(from var(--tint) srgb r g b / 0.5);\n}\n.ring-tint-500\\/55{\n--tw-ring-color: color(from var(--tint) srgb r g b / 0.55);\n}\n.ring-tint-500\\/60{\n--tw-ring-color: color(from var(--tint) srgb r g b / 0.6);\n}\n.ring-tint-500\\/65{\n--tw-ring-color: color(from var(--tint) srgb r g b / 0.65);\n}\n.ring-tint-500\\/70{\n--tw-ring-color: color(from var(--tint) srgb r g b / 0.7);\n}\n.ring-tint-500\\/75{\n--tw-ring-color: color(from var(--tint) srgb r g b / 0.75);\n}\n.ring-tint-500\\/80{\n--tw-ring-color: color(from var(--tint) srgb r g b / 0.8);\n}\n.ring-tint-500\\/85{\n--tw-ring-color: color(from var(--tint) srgb r g b / 0.85);\n}\n.ring-tint-500\\/90{\n--tw-ring-color: color(from var(--tint) srgb r g b / 0.9);\n}\n.ring-tint-500\\/95{\n--tw-ring-color: color(from var(--tint) srgb r g b / 0.95);\n}\n.ring-tint-600{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-ring-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-tint-600\\/0{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.ring-tint-600\\/10{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.ring-tint-600\\/100{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.ring-tint-600\\/15{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.ring-tint-600\\/20{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.ring-tint-600\\/25{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.ring-tint-600\\/30{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.ring-tint-600\\/35{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.ring-tint-600\\/40{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.ring-tint-600\\/45{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.ring-tint-600\\/5{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.ring-tint-600\\/50{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.ring-tint-600\\/55{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.ring-tint-600\\/60{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.ring-tint-600\\/65{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.ring-tint-600\\/70{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.ring-tint-600\\/75{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.ring-tint-600\\/80{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.ring-tint-600\\/85{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.ring-tint-600\\/90{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.ring-tint-600\\/95{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.ring-tint-700{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-ring-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-tint-700\\/0{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.ring-tint-700\\/10{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.ring-tint-700\\/100{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.ring-tint-700\\/15{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.ring-tint-700\\/20{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.ring-tint-700\\/25{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.ring-tint-700\\/30{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.ring-tint-700\\/35{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.ring-tint-700\\/40{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.ring-tint-700\\/45{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.ring-tint-700\\/5{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.ring-tint-700\\/50{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.ring-tint-700\\/55{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.ring-tint-700\\/60{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.ring-tint-700\\/65{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.ring-tint-700\\/70{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.ring-tint-700\\/75{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.ring-tint-700\\/80{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.ring-tint-700\\/85{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.ring-tint-700\\/90{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.ring-tint-700\\/95{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.ring-tint-800{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-ring-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-tint-800\\/0{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.ring-tint-800\\/10{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.ring-tint-800\\/100{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.ring-tint-800\\/15{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.ring-tint-800\\/20{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.ring-tint-800\\/25{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.ring-tint-800\\/30{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.ring-tint-800\\/35{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.ring-tint-800\\/40{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.ring-tint-800\\/45{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.ring-tint-800\\/5{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.ring-tint-800\\/50{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.ring-tint-800\\/55{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.ring-tint-800\\/60{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.ring-tint-800\\/65{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.ring-tint-800\\/70{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.ring-tint-800\\/75{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.ring-tint-800\\/80{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.ring-tint-800\\/85{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.ring-tint-800\\/90{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.ring-tint-800\\/95{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.ring-tint-900{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-ring-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-tint-900\\/0{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.ring-tint-900\\/10{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.ring-tint-900\\/100{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.ring-tint-900\\/15{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.ring-tint-900\\/20{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.ring-tint-900\\/25{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.ring-tint-900\\/30{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.ring-tint-900\\/35{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.ring-tint-900\\/40{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.ring-tint-900\\/45{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.ring-tint-900\\/5{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.ring-tint-900\\/50{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.ring-tint-900\\/55{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.ring-tint-900\\/60{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.ring-tint-900\\/65{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.ring-tint-900\\/70{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.ring-tint-900\\/75{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.ring-tint-900\\/80{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.ring-tint-900\\/85{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.ring-tint-900\\/90{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.ring-tint-900\\/95{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.ring-tint-950{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-ring-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-tint-950\\/0{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.ring-tint-950\\/10{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.ring-tint-950\\/100{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.ring-tint-950\\/15{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.ring-tint-950\\/20{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.ring-tint-950\\/25{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.ring-tint-950\\/30{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.ring-tint-950\\/35{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.ring-tint-950\\/40{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.ring-tint-950\\/45{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.ring-tint-950\\/5{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.ring-tint-950\\/50{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.ring-tint-950\\/55{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.ring-tint-950\\/60{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.ring-tint-950\\/65{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.ring-tint-950\\/70{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.ring-tint-950\\/75{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.ring-tint-950\\/80{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.ring-tint-950\\/85{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.ring-tint-950\\/90{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.ring-tint-950\\/95{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.ring-warning{\n--tw-ring-opacity: 1;\n--tw-ring-color: rgb(237 170 0 / var(--tw-ring-opacity));\n}\n.ring-warning-100{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / var(--tw-ring-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-warning-100\\/0{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.ring-warning-100\\/10{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.ring-warning-100\\/100{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.ring-warning-100\\/15{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.ring-warning-100\\/20{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.ring-warning-100\\/25{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.ring-warning-100\\/30{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.ring-warning-100\\/35{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.ring-warning-100\\/40{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.ring-warning-100\\/45{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.ring-warning-100\\/5{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.ring-warning-100\\/50{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.ring-warning-100\\/55{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.ring-warning-100\\/60{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.ring-warning-100\\/65{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.ring-warning-100\\/70{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.ring-warning-100\\/75{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.ring-warning-100\\/80{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.ring-warning-100\\/85{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.ring-warning-100\\/90{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.ring-warning-100\\/95{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.ring-warning-200{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / var(--tw-ring-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-warning-200\\/0{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.ring-warning-200\\/10{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.ring-warning-200\\/100{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.ring-warning-200\\/15{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.ring-warning-200\\/20{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.ring-warning-200\\/25{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.ring-warning-200\\/30{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.ring-warning-200\\/35{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.ring-warning-200\\/40{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.ring-warning-200\\/45{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.ring-warning-200\\/5{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.ring-warning-200\\/50{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.ring-warning-200\\/55{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.ring-warning-200\\/60{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.ring-warning-200\\/65{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.ring-warning-200\\/70{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.ring-warning-200\\/75{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.ring-warning-200\\/80{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.ring-warning-200\\/85{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.ring-warning-200\\/90{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.ring-warning-200\\/95{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.ring-warning-300{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / var(--tw-ring-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-warning-300\\/0{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.ring-warning-300\\/10{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.ring-warning-300\\/100{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.ring-warning-300\\/15{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.ring-warning-300\\/20{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.ring-warning-300\\/25{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.ring-warning-300\\/30{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.ring-warning-300\\/35{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.ring-warning-300\\/40{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.ring-warning-300\\/45{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.ring-warning-300\\/5{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.ring-warning-300\\/50{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.ring-warning-300\\/55{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.ring-warning-300\\/60{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.ring-warning-300\\/65{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.ring-warning-300\\/70{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.ring-warning-300\\/75{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.ring-warning-300\\/80{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.ring-warning-300\\/85{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.ring-warning-300\\/90{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.ring-warning-300\\/95{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.ring-warning-400{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / var(--tw-ring-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-warning-400\\/0{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.ring-warning-400\\/10{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.ring-warning-400\\/100{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.ring-warning-400\\/15{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.ring-warning-400\\/20{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.ring-warning-400\\/25{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.ring-warning-400\\/30{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.ring-warning-400\\/35{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.ring-warning-400\\/40{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.ring-warning-400\\/45{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.ring-warning-400\\/5{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.ring-warning-400\\/50{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.ring-warning-400\\/55{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.ring-warning-400\\/60{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.ring-warning-400\\/65{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.ring-warning-400\\/70{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.ring-warning-400\\/75{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.ring-warning-400\\/80{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.ring-warning-400\\/85{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.ring-warning-400\\/90{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.ring-warning-400\\/95{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.ring-warning-50{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / var(--tw-ring-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-warning-50\\/0{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.ring-warning-50\\/10{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.ring-warning-50\\/100{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.ring-warning-50\\/15{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.ring-warning-50\\/20{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.ring-warning-50\\/25{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.ring-warning-50\\/30{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.ring-warning-50\\/35{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.ring-warning-50\\/40{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.ring-warning-50\\/45{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.ring-warning-50\\/5{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.ring-warning-50\\/50{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.ring-warning-50\\/55{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.ring-warning-50\\/60{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.ring-warning-50\\/65{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.ring-warning-50\\/70{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.ring-warning-50\\/75{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.ring-warning-50\\/80{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.ring-warning-50\\/85{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.ring-warning-50\\/90{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.ring-warning-50\\/95{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.ring-warning-500{\n--tw-ring-opacity: 1;\n--tw-ring-color: color(from #edaa00 srgb r g b / var(--tw-ring-opacity));\n}\n.ring-warning-500\\/0{\n--tw-ring-color: color(from #edaa00 srgb r g b / 0);\n}\n.ring-warning-500\\/10{\n--tw-ring-color: color(from #edaa00 srgb r g b / 0.1);\n}\n.ring-warning-500\\/100{\n--tw-ring-color: color(from #edaa00 srgb r g b / 1);\n}\n.ring-warning-500\\/15{\n--tw-ring-color: color(from #edaa00 srgb r g b / 0.15);\n}\n.ring-warning-500\\/20{\n--tw-ring-color: color(from #edaa00 srgb r g b / 0.2);\n}\n.ring-warning-500\\/25{\n--tw-ring-color: color(from #edaa00 srgb r g b / 0.25);\n}\n.ring-warning-500\\/30{\n--tw-ring-color: color(from #edaa00 srgb r g b / 0.3);\n}\n.ring-warning-500\\/35{\n--tw-ring-color: color(from #edaa00 srgb r g b / 0.35);\n}\n.ring-warning-500\\/40{\n--tw-ring-color: color(from #edaa00 srgb r g b / 0.4);\n}\n.ring-warning-500\\/45{\n--tw-ring-color: color(from #edaa00 srgb r g b / 0.45);\n}\n.ring-warning-500\\/5{\n--tw-ring-color: color(from #edaa00 srgb r g b / 0.05);\n}\n.ring-warning-500\\/50{\n--tw-ring-color: color(from #edaa00 srgb r g b / 0.5);\n}\n.ring-warning-500\\/55{\n--tw-ring-color: color(from #edaa00 srgb r g b / 0.55);\n}\n.ring-warning-500\\/60{\n--tw-ring-color: color(from #edaa00 srgb r g b / 0.6);\n}\n.ring-warning-500\\/65{\n--tw-ring-color: color(from #edaa00 srgb r g b / 0.65);\n}\n.ring-warning-500\\/70{\n--tw-ring-color: color(from #edaa00 srgb r g b / 0.7);\n}\n.ring-warning-500\\/75{\n--tw-ring-color: color(from #edaa00 srgb r g b / 0.75);\n}\n.ring-warning-500\\/80{\n--tw-ring-color: color(from #edaa00 srgb r g b / 0.8);\n}\n.ring-warning-500\\/85{\n--tw-ring-color: color(from #edaa00 srgb r g b / 0.85);\n}\n.ring-warning-500\\/90{\n--tw-ring-color: color(from #edaa00 srgb r g b / 0.9);\n}\n.ring-warning-500\\/95{\n--tw-ring-color: color(from #edaa00 srgb r g b / 0.95);\n}\n.ring-warning-600{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / var(--tw-ring-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-warning-600\\/0{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.ring-warning-600\\/10{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.ring-warning-600\\/100{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.ring-warning-600\\/15{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.ring-warning-600\\/20{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.ring-warning-600\\/25{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.ring-warning-600\\/30{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.ring-warning-600\\/35{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.ring-warning-600\\/40{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.ring-warning-600\\/45{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.ring-warning-600\\/5{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.ring-warning-600\\/50{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.ring-warning-600\\/55{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.ring-warning-600\\/60{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.ring-warning-600\\/65{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.ring-warning-600\\/70{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.ring-warning-600\\/75{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.ring-warning-600\\/80{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.ring-warning-600\\/85{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.ring-warning-600\\/90{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.ring-warning-600\\/95{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.ring-warning-700{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / var(--tw-ring-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-warning-700\\/0{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.ring-warning-700\\/10{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.ring-warning-700\\/100{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.ring-warning-700\\/15{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.ring-warning-700\\/20{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.ring-warning-700\\/25{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.ring-warning-700\\/30{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.ring-warning-700\\/35{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.ring-warning-700\\/40{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.ring-warning-700\\/45{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.ring-warning-700\\/5{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.ring-warning-700\\/50{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.ring-warning-700\\/55{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.ring-warning-700\\/60{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.ring-warning-700\\/65{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.ring-warning-700\\/70{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.ring-warning-700\\/75{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.ring-warning-700\\/80{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.ring-warning-700\\/85{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.ring-warning-700\\/90{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.ring-warning-700\\/95{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.ring-warning-800{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / var(--tw-ring-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-warning-800\\/0{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.ring-warning-800\\/10{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.ring-warning-800\\/100{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.ring-warning-800\\/15{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.ring-warning-800\\/20{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.ring-warning-800\\/25{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.ring-warning-800\\/30{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.ring-warning-800\\/35{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.ring-warning-800\\/40{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.ring-warning-800\\/45{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.ring-warning-800\\/5{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.ring-warning-800\\/50{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.ring-warning-800\\/55{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.ring-warning-800\\/60{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.ring-warning-800\\/65{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.ring-warning-800\\/70{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.ring-warning-800\\/75{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.ring-warning-800\\/80{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.ring-warning-800\\/85{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.ring-warning-800\\/90{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.ring-warning-800\\/95{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.ring-warning-900{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / var(--tw-ring-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-warning-900\\/0{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.ring-warning-900\\/10{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.ring-warning-900\\/100{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.ring-warning-900\\/15{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.ring-warning-900\\/20{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.ring-warning-900\\/25{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.ring-warning-900\\/30{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.ring-warning-900\\/35{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.ring-warning-900\\/40{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.ring-warning-900\\/45{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.ring-warning-900\\/5{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.ring-warning-900\\/50{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.ring-warning-900\\/55{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.ring-warning-900\\/60{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.ring-warning-900\\/65{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.ring-warning-900\\/70{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.ring-warning-900\\/75{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.ring-warning-900\\/80{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.ring-warning-900\\/85{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.ring-warning-900\\/90{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.ring-warning-900\\/95{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.ring-warning-950{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / var(--tw-ring-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-warning-950\\/0{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.ring-warning-950\\/10{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.ring-warning-950\\/100{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.ring-warning-950\\/15{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.ring-warning-950\\/20{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.ring-warning-950\\/25{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.ring-warning-950\\/30{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.ring-warning-950\\/35{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.ring-warning-950\\/40{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.ring-warning-950\\/45{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.ring-warning-950\\/5{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.ring-warning-950\\/50{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.ring-warning-950\\/55{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.ring-warning-950\\/60{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.ring-warning-950\\/65{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.ring-warning-950\\/70{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.ring-warning-950\\/75{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.ring-warning-950\\/80{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.ring-warning-950\\/85{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.ring-warning-950\\/90{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.ring-warning-950\\/95{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.ring-warning\\/0{\n--tw-ring-color: rgb(237 170 0 / 0);\n}\n.ring-warning\\/10{\n--tw-ring-color: rgb(237 170 0 / 0.1);\n}\n.ring-warning\\/100{\n--tw-ring-color: rgb(237 170 0 / 1);\n}\n.ring-warning\\/15{\n--tw-ring-color: rgb(237 170 0 / 0.15);\n}\n.ring-warning\\/20{\n--tw-ring-color: rgb(237 170 0 / 0.2);\n}\n.ring-warning\\/25{\n--tw-ring-color: rgb(237 170 0 / 0.25);\n}\n.ring-warning\\/30{\n--tw-ring-color: rgb(237 170 0 / 0.3);\n}\n.ring-warning\\/35{\n--tw-ring-color: rgb(237 170 0 / 0.35);\n}\n.ring-warning\\/40{\n--tw-ring-color: rgb(237 170 0 / 0.4);\n}\n.ring-warning\\/45{\n--tw-ring-color: rgb(237 170 0 / 0.45);\n}\n.ring-warning\\/5{\n--tw-ring-color: rgb(237 170 0 / 0.05);\n}\n.ring-warning\\/50{\n--tw-ring-color: rgb(237 170 0 / 0.5);\n}\n.ring-warning\\/55{\n--tw-ring-color: rgb(237 170 0 / 0.55);\n}\n.ring-warning\\/60{\n--tw-ring-color: rgb(237 170 0 / 0.6);\n}\n.ring-warning\\/65{\n--tw-ring-color: rgb(237 170 0 / 0.65);\n}\n.ring-warning\\/70{\n--tw-ring-color: rgb(237 170 0 / 0.7);\n}\n.ring-warning\\/75{\n--tw-ring-color: rgb(237 170 0 / 0.75);\n}\n.ring-warning\\/80{\n--tw-ring-color: rgb(237 170 0 / 0.8);\n}\n.ring-warning\\/85{\n--tw-ring-color: rgb(237 170 0 / 0.85);\n}\n.ring-warning\\/90{\n--tw-ring-color: rgb(237 170 0 / 0.9);\n}\n.ring-warning\\/95{\n--tw-ring-color: rgb(237 170 0 / 0.95);\n}\n.ring-white{\n--tw-ring-opacity: 1;\n--tw-ring-color: rgb(254 253 252 / var(--tw-ring-opacity));\n}\n.ring-offset-1{\n--tw-ring-offset-width: 1px;\n}\n.ring-offset-2{\n--tw-ring-offset-width: 2px;\n}\n.blur{\n--tw-blur: blur(8px);\nfilter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);\n}\n.invert{\n--tw-invert: invert(100%);\nfilter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);\n}\n.\\!filter{\nfilter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow) !important;\n}\n.filter{\nfilter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);\n}\n.backdrop-blur{\n--tw-backdrop-blur: blur(8px);\n-webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);\n backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);\n}\n.backdrop-blur-md{\n--tw-backdrop-blur: blur(12px);\n-webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);\n backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);\n}\n.backdrop-blur-sm{\n--tw-backdrop-blur: blur(4px);\n-webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);\n backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);\n}\n.backdrop-blur-xl{\n--tw-backdrop-blur: blur(24px);\n-webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);\n backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);\n}\n.transition{\ntransition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;\ntransition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;\ntransition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;\ntransition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);\ntransition-duration: 150ms;\n}\n.transition-all{\ntransition-property: all;\ntransition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);\ntransition-duration: 150ms;\n}\n.transition-colors{\ntransition-property: color, background-color, border-color, text-decoration-color, fill, stroke;\ntransition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);\ntransition-duration: 150ms;\n}\n.duration-200{\ntransition-duration: 200ms;\n}\n.ease-in-out{\ntransition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);\n}\n.will-change-transform{\nwill-change: transform;\n}\n.contain-strict{\ncontain: strict;\n}\n.area-\\[actions\\]{\ngrid-area: actions;\n}\n.area-\\[icon\\]{\ngrid-area: icon;\n}\n.area-\\[loader\\]{\ngrid-area: loader;\n}\n.area-\\[message\\]{\ngrid-area: message;\n}\n.area-\\[time\\]{\ngrid-area: time;\n}\n.area-\\[title\\]{\ngrid-area: title;\n}\n.z-1{\nz-index: 1;\n}\n.z-2{\nz-index: 2;\n}\n.z-3{\nz-index: 3;\n}\n.z-4{\nz-index: 4;\n}\n.z-5{\nz-index: 5;\n}\n.area-content{\ngrid-area: content;\n}\n.area-head{\ngrid-area: head;\n}\n.area-foot{\ngrid-area: foot;\n}\n.area-side-s{\ngrid-area: side-s;\n}\n.area-side-e{\ngrid-area: side-e;\n}\n.area-body{\ngrid-area: body;\n}\n.overflow-wrap{\noverflow-wrap: anywhere;\nword-break: normal;\ntext-wrap: wrap;\n}\n.fixed-numbers{\nfont-variant-numeric: tabular-nums;\n}\n.mixed-lang{}\n.bg-alternate{}\n.scroll-thin{}\n.scroll-hide{}\n.gap-0{\ngap: 0px;\n--gutter: 0px;\n}\n.gap-1{\ngap: 0.25rem;\n--gutter: 0.25rem;\n}\n.gap-2{\ngap: 0.5rem;\n--gutter: 0.5rem;\n}\n.gap-4{\ngap: 1rem;\n--gutter: 1rem;\n}\n.gap-px{\ngap: 1px;\n--gutter: 1px;\n}\n.span-1{\nflex: 0 1 calc((1 / 12) * 100% - var(--gutter, 0px));\n}\n.span-2{\nflex: 0 1 calc((2 / 12) * 100% - var(--gutter, 0px));\n}\n.span-3{\nflex: 0 1 calc((3 / 12) * 100% - var(--gutter, 0px));\n}\n.span-4{\nflex: 0 1 calc((4 / 12) * 100% - var(--gutter, 0px));\n}\n.span-5{\nflex: 0 1 calc((5 / 12) * 100% - var(--gutter, 0px));\n}\n.span-6{\nflex: 0 1 calc((6 / 12) * 100% - var(--gutter, 0px));\n}\n.span-7{\nflex: 0 1 calc((7 / 12) * 100% - var(--gutter, 0px));\n}\n.span-8{\nflex: 0 1 calc((8 / 12) * 100% - var(--gutter, 0px));\n}\n.span-9{\nflex: 0 1 calc((9 / 12) * 100% - var(--gutter, 0px));\n}\n.span-10{\nflex: 0 1 calc((10 / 12) * 100% - var(--gutter, 0px));\n}\n.span-11{\nflex: 0 1 calc((11 / 12) * 100% - var(--gutter, 0px));\n}\n.span-12{\nflex: 0 1 calc((12 / 12) * 100% - var(--gutter, 0px));\n}\n}\n\n@layer var{\n.before\\:absolute::before{\ncontent: var(--tw-content);\nposition: absolute;\n}\n.before\\:inset-0::before{\ncontent: var(--tw-content);\ninset: 0px;\n}\n.before\\:-bottom-4::before{\ncontent: var(--tw-content);\nbottom: -1rem;\n}\n.before\\:end-0::before{\ncontent: var(--tw-content);\ninset-inline-end: 0px;\n}\n.before\\:left-1\\/2::before{\ncontent: var(--tw-content);\nleft: 50%;\n}\n.before\\:start-0::before{\ncontent: var(--tw-content);\ninset-inline-start: 0px;\n}\n.before\\:start-\\[7px\\]::before{\ncontent: var(--tw-content);\ninset-inline-start: 7px;\n}\n.before\\:top-0::before{\ncontent: var(--tw-content);\ntop: 0px;\n}\n.before\\:top-1\\/2::before{\ncontent: var(--tw-content);\ntop: 50%;\n}\n.before\\:top-4::before{\ncontent: var(--tw-content);\ntop: 1rem;\n}\n.before\\:z-\\[-1\\]::before{\ncontent: var(--tw-content);\nz-index: -1;\n}\n.before\\:h-1::before{\ncontent: var(--tw-content);\nheight: 0.25rem;\n}\n.before\\:h-1\\.5::before{\ncontent: var(--tw-content);\nheight: 0.375rem;\n}\n.before\\:h-full::before{\ncontent: var(--tw-content);\nheight: 100%;\n}\n.before\\:min-h-\\[50\\%\\]::before{\ncontent: var(--tw-content);\nmin-height: 50%;\n}\n.before\\:w-1::before{\ncontent: var(--tw-content);\nwidth: 0.25rem;\n}\n.before\\:w-1\\.5::before{\ncontent: var(--tw-content);\nwidth: 0.375rem;\n}\n.before\\:w-\\[2px\\]::before{\ncontent: var(--tw-content);\nwidth: 2px;\n}\n.before\\:w-px::before{\ncontent: var(--tw-content);\nwidth: 1px;\n}\n.before\\:-translate-y-1\\/2::before{\ncontent: var(--tw-content);\n--tw-translate-y: -50%;\ntransform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));\n}\n.before\\:rotate-45::before{\ncontent: var(--tw-content);\n--tw-rotate: 45deg;\ntransform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));\n}\n.before\\:scale-x-\\[\\.625\\]::before{\ncontent: var(--tw-content);\n--tw-scale-x: .625;\ntransform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));\n}\n.before\\:bg-invert::before{\ncontent: var(--tw-content);\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)) 5%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.before\\:bg-tint-100::before{\ncontent: var(--tw-content);\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.before\\:bg-tint-200::before{\ncontent: var(--tw-content);\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.before\\:bg-warning-500::before{\ncontent: var(--tw-content);\n--tw-bg-opacity: 1;\nbackground-color: color(from #edaa00 srgb r g b / var(--tw-bg-opacity));\n}\n.before\\:transition-all::before{\ncontent: var(--tw-content);\ntransition-property: all;\ntransition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);\ntransition-duration: 150ms;\n}\n.after\\:absolute::after{\ncontent: var(--tw-content);\nposition: absolute;\n}\n.after\\:inset-0::after{\ncontent: var(--tw-content);\ninset: 0px;\n}\n.after\\:bottom-0::after{\ncontent: var(--tw-content);\nbottom: 0px;\n}\n.after\\:mx-auto::after{\ncontent: var(--tw-content);\nmargin-left: auto;\nmargin-right: auto;\n}\n.after\\:block::after{\ncontent: var(--tw-content);\ndisplay: block;\n}\n.after\\:h-0::after{\ncontent: var(--tw-content);\nheight: 0px;\n}\n.after\\:h-0\\.5::after{\ncontent: var(--tw-content);\nheight: 0.125rem;\n}\n.after\\:h-full::after{\ncontent: var(--tw-content);\nheight: 100%;\n}\n.after\\:h-px::after{\ncontent: var(--tw-content);\nheight: 1px;\n}\n.after\\:bg-dimmed::after{\ncontent: var(--tw-content);\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)) 90%, color(from var(--tint) srgb r g b / var(--tw-bg-opacity)));\n}\n.after\\:bg-primary-500::after{\ncontent: var(--tw-content);\n--tw-bg-opacity: 1;\nbackground-color: color(from var(--primary) srgb r g b / var(--tw-bg-opacity));\n}\n.first\\:ms-2:first-child{\nmargin-inline-start: 0.5rem;\n}\n.first\\:px-2:first-child{\npadding-left: 0.5rem;\npadding-right: 0.5rem;\n}\n.first-of-type\\:rounded-s:first-of-type{\nborder-start-start-radius: var(--rounding);\nborder-end-start-radius: var(--rounding);\n}\n.last-of-type\\:rounded-e:last-of-type{\nborder-start-end-radius: var(--rounding);\nborder-end-end-radius: var(--rounding);\n}\n.empty\\:mb-0:empty{\nmargin-bottom: 0px;\n}\n.focus-within\\:ring-primary-300:focus-within{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-ring-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-ring-opacity)));\n}\n.focus-within\\:z-1:focus-within{\nz-index: 1;\n}\n.hover\\:bg-base:hover{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)) 99%, color(from var(--tint) srgb r g b / var(--tw-bg-opacity)));\n}\n.hover\\:bg-primary-100:hover{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.hover\\:bg-primary-200:hover{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.hover\\:bg-primary-50:hover{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-bg-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.hover\\:bg-tint-200:hover{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.hover\\:bg-opacity-50:hover{\n--tw-bg-opacity: 0.5;\n}\n.hover\\:text-primary:hover{\ncolor: var(--primary);\n}\n.hover\\:text-primary-600:hover{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-text-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.hover\\:text-primary-700:hover{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-text-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.hover\\:text-tint-700:hover{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-text-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.hover\\:opacity-100:hover{\nopacity: 1;\n}\n.hover\\:opacity-70:hover{\nopacity: 0.7;\n}\n.hover\\:opacity-80:hover{\nopacity: 0.8;\n}\n.hover\\:opacity-90:hover{\nopacity: 0.9;\n}\n.hover\\:outline:hover{\noutline-style: solid;\noutline-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 65%, color(from var(--tint) srgb r g b / 1));\n}\n.focus\\:border-primary-500:focus{\n--tw-border-opacity: 1;\nborder-color: color(from var(--primary) srgb r g b / var(--tw-border-opacity));\n}\n.focus\\:ring-2:focus{\n--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);\n--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);\nbox-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);\n}\n.focus\\:ring-offset-2:focus{\n--tw-ring-offset-width: 2px;\n}\n.focus-visible\\:ring-2:focus-visible{\n--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);\n--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);\nbox-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);\n}\n.focus-visible\\:ring-offset-2:focus-visible{\n--tw-ring-offset-width: 2px;\n}\n.active\\:cursor-grabbing:active{\ncursor: grabbing;\n}\n.active\\:bg-primary-100:active{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.active\\:opacity-60:active{\nopacity: 0.6;\n}\n.group:hover .group-hover\\:block{\ndisplay: block;\n}\n.group:hover .group-hover\\:inline-block{\ndisplay: inline-block;\n}\n.peer:checked ~ .peer-checked\\:inline-block{\ndisplay: inline-block;\n}\n.peer:checked ~ .peer-checked\\:hidden{\ndisplay: none;\n}\n.has-\\[\\:focus-visible\\]\\:ring-1:has(:focus-visible){\n--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);\n--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);\nbox-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);\n}\n.data-\\[dropdown-open\\]\\:inline-block[data-dropdown-open]{\ndisplay: inline-block;\n}\n.data-\\[active\\]\\:bg-primary-200[data-active]{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.data-\\[selected\\]\\:bg-primary-100[data-selected]{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.data-\\[selected\\]\\:bg-primary-600[data-selected]{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.data-\\[selected\\]\\:text-white[data-selected]{\n--tw-text-opacity: 1;\ncolor: rgb(254 253 252 / var(--tw-text-opacity));\n}\n.data-\\[active\\]\\:data-\\[selected\\]\\:underline[data-selected][data-active]{\ntext-decoration-line: underline;\n}\n.data-\\[hilight\\]\\:outline-1[data-hilight]{\noutline-width: 1px;\n}\n.group[data-List-display] .group-data-\\[List-display\\]\\:hidden{\ndisplay: none;\n}\n.group[data-select-display] .group-data-\\[select-display\\]\\:hidden{\ndisplay: none;\n}\n@media (min-width: 640px){\n\n.sm\\:span-6{\nflex: 0 1 calc((6 / 12) * 100% - var(--gutter, 0px));\n}\n}\n@media (min-width: 768px){\n\n.md\\:span-4{\nflex: 0 1 calc((4 / 12) * 100% - var(--gutter, 0px));\n}\n}\n@media (min-width: 1024px){\n\n.lg\\:span-3{\nflex: 0 1 calc((3 / 12) * 100% - var(--gutter, 0px));\n}\n\n.lg\\:span-6{\nflex: 0 1 calc((6 / 12) * 100% - var(--gutter, 0px));\n}\n}\n@media (min-width: 1280px){\n\n.xl\\:span-2{\nflex: 0 1 calc((2 / 12) * 100% - var(--gutter, 0px));\n}\n}\n@media (min-width: 1536px){\n\n.\\32xl\\:span-1{\nflex: 0 1 calc((1 / 12) * 100% - var(--gutter, 0px));\n}\n}\n.ltr\\:-translate-x-full:where([dir="ltr"], [dir="ltr"] *){\n--tw-translate-x: -100%;\ntransform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));\n}\n.ltr\\:translate-x-full:where([dir="ltr"], [dir="ltr"] *){\n--tw-translate-x: 100%;\ntransform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));\n}\n.ltr\\:bg-gradient-to-r:where([dir="ltr"], [dir="ltr"] *){\nbackground-image: linear-gradient(to right, var(--tw-gradient-stops));\n}\n.ltr\\:before\\:-translate-x-\\[0\\.125rem\\]:where([dir="ltr"], [dir="ltr"] *)::before{\ncontent: var(--tw-content);\n--tw-translate-x: -0.125rem;\ntransform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));\n}\n.ltr\\:before\\:translate-x-\\[0\\.125rem\\]:where([dir="ltr"], [dir="ltr"] *)::before{\ncontent: var(--tw-content);\n--tw-translate-x: 0.125rem;\ntransform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));\n}\n.rtl\\:origin-right:where([dir="rtl"], [dir="rtl"] *){\ntransform-origin: right;\n}\n.rtl\\:-translate-x-full:where([dir="rtl"], [dir="rtl"] *){\n--tw-translate-x: -100%;\ntransform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));\n}\n.rtl\\:translate-x-full:where([dir="rtl"], [dir="rtl"] *){\n--tw-translate-x: 100%;\ntransform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));\n}\n.rtl\\:bg-gradient-to-l:where([dir="rtl"], [dir="rtl"] *){\nbackground-image: linear-gradient(to left, var(--tw-gradient-stops));\n}\n.rtl\\:before\\:-translate-x-\\[0\\.125rem\\]:where([dir="rtl"], [dir="rtl"] *)::before{\ncontent: var(--tw-content);\n--tw-translate-x: -0.125rem;\ntransform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));\n}\n.rtl\\:before\\:translate-x-\\[0\\.125rem\\]:where([dir="rtl"], [dir="rtl"] *)::before{\ncontent: var(--tw-content);\n--tw-translate-x: 0.125rem;\ntransform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));\n}\n@media print{\n\n.print\\:shadow-none{\n--tw-shadow: 0 0 #0000;\n--tw-shadow-colored: 0 0 #0000;\nbox-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);\n}\n}\n}\n\n/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer colors {\n [data-color-scheme="light"] {\n --fabric-bg: #fefdfc;\n --fabric-text: #191a1b;\n --fabric-input: color-mix(in lab, var(--fabric-bg) 90%, #fff);\n --fabric-input-focus: #fff;\n --fabric-shadow: #8ba0b0;\n\n color-scheme: light;\n }\n\n [data-color-scheme="dark"] {\n --fabric-bg: #191a1b;\n --fabric-text: #fefdfc;\n --fabric-input: color-mix(in lab, var(--fabric-bg) 80%, #0a1218);\n --fabric-input-focus: color-mix(in lab, var(--fabric-bg) 60%, #0a1218);\n --fabric-shadow: #010101;\n\n color-scheme: dark;\n }\n}\n\n@layer reset {\n :root {\n --black: #191a1b;\n --white: #fefdfc;\n --scarlet: #e5484d;\n --pumpkin: #f76a15;\n --marigold: #ffc100;\n --avacado: #46a758;\n --jade: #29a383;\n --denim: #0190ff;\n --iris: #5b5bd6;\n --lilac: #8e4ec6;\n --coral: #e93d82;\n --wood: #ad7f58;\n --silver: #989da5;\n --steel: #7c99af;\n --olive: #769b8d;\n --sand: #9b9789;\n --info: #00bfff;\n --danger: #f24c3d;\n --success: #44bc69;\n --warning: #edaa00;\n\n /* app default primary */\n --primary: #0190ff;\n --accent: #29a383;\n --tint: #989da5;\n\n /* default rounding */\n --rounding: 0.25rem;\n --rounding-cap: 0.25rem;\n --gutter: 0.5rem;\n\n /* z levels */\n --z-overlay-mask: 25;\n --z-overlay: 30;\n --z-popover-mask: 45;\n --z-popover: 50;\n --z-tooltip: 60;\n --z-notifications: 60;\n }\n\n [data-color-scheme] {\n color: color-mix(in lab, var(--fabric-text) 95%, var(--tint));\n background-color: color-mix(in lab, var(--fabric-bg) 92%, var(--tint));\n }\n\n [data-rounding="sm"] {\n /* default rounding */\n --rounding: 2px;\n --rounding-cap: 2px;\n }\n\n [data-rounding="md"] {\n /* default rounding */\n --rounding: 0.5rem;\n --rounding-cap: 0.5rem;\n }\n\n [data-rounding="full"] {\n /* default rounding */\n --rounding: 9999px;\n --rounding-cap: 0.5rem;\n }\n}\n\n/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer reset {\n html,\n body {\n width: 100vw;\n height: 100vh;\n margin: 0;\n padding: 0;\n\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n vertical-align: baseline;\n }\n\n :root {\n font-family: Avenir Next, Avenir, Noto Sans, Roboto, Helvetica Neue, Segoe UI, Arial, sans-serif, BlinkMacSystemFont, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;\n font-size: 16px;\n line-height: 1.5;\n }\n\n p,\n div,\n h1,\n h2,\n h3,\n h4,\n h5,\n h6,\n input,\n textarea,\n fieldset,\n section,\n aside,\n header,\n footer,\n nav,\n menu,\n dialog {\n margin: 0;\n padding: 0;\n }\n\n fieldset {\n min-inline-size: unset;\n }\n body a,\n body label,\n body button {\n -webkit-user-select: none;\n -moz-user-select: none;\n user-select: none;\n }\n\n body ::-webkit-scrollbar {\n width: 6px;\n height: 6px;\n }\n\n body ::-webkit-scrollbar-track {\n background-color: color-mix(in lab, var(--fabric-bg) 72%, var(--tint));\n }\n\n body ::-webkit-scrollbar-thumb {\n background-color: color-mix(in lab, var(--fabric-bg) 35%, var(--tint));\n }\n\n body ::-webkit-scrollbar-thumb:hover {\n background-color: color-mix(\n in lab,\n var(--fabric-text) 50%,\n var(--tint)\n );\n }\n\n body ::-webkit-scrollbar-thumb:active {\n background-color: color-mix(\n in lab,\n var(--fabric-bg) 50%,\n var(--fabric-text)\n );\n }\n\n body ::-webkit-scrollbar-corner {\n background-color: var(--fabric-bg);\n }\n\n body input:not(:disabled)::-webkit-file-upload-button {\n cursor: pointer;\n }\n body .scroll-thin::-webkit-scrollbar,\n body .scroll-thin ::-webkit-scrollbar {\n width: 3px;\n height: 3px;\n }\n body .scroll-hide::-webkit-scrollbar,\n body .scroll-hide ::-webkit-scrollbar {\n width: 0;\n height: 0;\n }\n\n body :focus-visible {\n outline: 0;\n }\n\n body ::-moz-placeholder {\n color: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n }\n\n body ::placeholder {\n color: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n }\n\n body ::-moz-selection {\n background-color: color-mix(in lab, var(--accent) 35%, var(--fabric-bg));\n }\n\n body ::selection {\n background-color: color-mix(in lab, var(--accent) 35%, var(--fabric-bg));\n }\n\n body *,\n body ::before,\n body ::after {\n --tw-ring-offset-color: var(--fabric-bg);\n --tw-ring-color: var(--primary);\n\n box-sizing: border-box;\n text-underline-offset: 0.25em;\n }\n\n body img,\n body svg {\n display: inline-block;\n fill: currentcolor;\n }\n\n body hr {\n transform: scaleY(0.5);\n\n height: auto;\n margin: 1rem 0;\n\n background: none;\n border: 0;\n border-top: 3px solid color-mix(in lab, var(--fabric-bg) 95%, var(--tint)) !important;\n border-bottom: 2px solid\n color-mix(in lab, var(--fabric-bg) 50%, var(--tint));\n }\n\n body hr.vertical {\n transform: scaleX(0.5);\n\n display: inline-block;\n\n margin: 0 0.25rem;\n\n border: 0;\n border-inline-start: 3px solid\n color-mix(in lab, var(--fabric-bg) 95%, var(--tint)) !important;\n border-inline-end: 2px solid\n color-mix(in lab, var(--fabric-bg) 50%, var(--tint));\n }\n\n body label {\n cursor: inherit;\n }\n\n body [data-clickable="true"] {\n cursor: pointer;\n }\n\n body .sectioned {\n display: grid;\n grid-template: "head head head" auto "side-s content side-e" 1fr "foot foot foot" auto / auto 1fr auto;\n }\n\n @media (min-width: 320px) {\n body .hide-xs{\ndisplay: none;\n}\n }\n\n @media (min-width: 320px) and (max-width: 640px) {\n body .hide-xs-only{\ndisplay: none;\n}\n\n body .show-sm-only,\n body .show-md-only,\n body .show-lg-only,\n body .show-xl-only,\n body .show-2xl-only{\ndisplay: none;\n}\n }\n\n @media (min-width: 640px) {\n body .hide-sm{\ndisplay: none;\n}\n }\n\n @media (min-width: 640px) and (max-width: 768px) {\n body .hide-sm-only{\ndisplay: none;\n}\n\n body .show-xs-only,\n body .show-md-only,\n body .show-lg-only,\n body .show-xl-only,\n body .show-2xl-only{\ndisplay: none;\n}\n }\n\n @media (min-width: 768px) {\n body .hide-md{\ndisplay: none;\n}\n }\n\n @media (min-width: 768px) and (max-width: 1024px) {\n body .hide-md-only{\ndisplay: none;\n}\n\n body .show-xs-only,\n body .show-sm-only,\n body .show-lg-only,\n body .show-xl-only,\n body .show-2xl-only{\ndisplay: none;\n}\n }\n\n @media (min-width: 1024px) {\n body .hide-lg{\ndisplay: none;\n}\n }\n\n @media (min-width: 1024px) and (max-width: 1280px) {\n body .hide-lg-only{\ndisplay: none;\n}\n\n body .show-xs-only,\n body .show-sm-only,\n body .show-md-only,\n body .show-xl-only,\n body .show-2xl-only{\ndisplay: none;\n}\n }\n\n @media (min-width: 1280px) {\n body .hide-xl{\ndisplay: none;\n}\n }\n\n @media (min-width: 1280px) and (max-width: 1536px) {\n body .hide-xl-only{\ndisplay: none;\n}\n\n body .show-xs-only,\n body .show-sm-only,\n body .show-md-only,\n body .show-lg-only,\n body .show-2xl-only{\ndisplay: none;\n}\n }\n\n @media (min-width: 1536px) {\n body .hide-2xl,\n body .hide-2xl-only{\ndisplay: none;\n}\n\n body .show-xs-only,\n body .show-sm-only,\n body .show-md-only,\n body .show-lg-only,\n body .show-xl-only{\ndisplay: none;\n}\n }\n\n @media (max-width: 320px) {\n body .show-xs,\n body .show-sm,\n body .show-md,\n body .show-lg,\n body .show-xl,\n body .show-2xl{\ndisplay: none;\n}\n }\n\n @media (max-width: 640px) {\n body .show-sm,\n body .show-md,\n body .show-lg,\n body .show-xl,\n body .show-2xl{\ndisplay: none;\n}\n }\n\n @media (max-width: 768px) {\n body .show-md,\n body .show-lg,\n body .show-xl,\n body .show-2xl{\ndisplay: none;\n}\n }\n\n @media (max-width: 1024px) {\n body .show-lg,\n body .show-xl,\n body .show-2xl{\ndisplay: none;\n}\n }\n\n @media (max-width: 1280px) {\n body .show-xl,\n body .show-2xl{\ndisplay: none;\n}\n }\n\n @media (max-width: 1536px) {\n body .show-2xl{\ndisplay: none;\n}\n }\n\n .scroll-snap-start {\n scroll-snap-type: both proximity;\n }\n\n .scroll-snap-start > * {\n scroll-snap-align: start;\n }\n\n .scroll-snap-center {\n scroll-snap-type: both proximity;\n }\n\n .scroll-snap-center > * {\n scroll-snap-align: center;\n }\n\n .break-words {\n word-break: break-word;\n }\n\n .outline-thin {\n outline-width: 0.5px;\n }\n\n .outline {\n outline-width: 1px;\n }\n\n .container {\n margin-inline: auto;\n }\n\n p,\n pre,\n h1,\n h2,\n h3,\n h4,\n h5,\n h6,\n .mixed-lang {\n unicode-bidi: plaintext;\n }\n}\n\n/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n h1 {\n font-size: 2.5rem;\n font-weight: 500;\n }\n\n h2 {\n font-size: 2rem;\n font-weight: 500;\n }\n\n h3 {\n font-size: 1.75rem;\n font-weight: 500;\n }\n\n h4 {\n font-size: 1.5rem;\n font-weight: 500;\n }\n\n h5 {\n font-size: 1.25rem;\n font-weight: 500;\n }\n\n h6 {\n font-size: 1rem;\n font-weight: 600;\n }\n\n p {\n line-height: 1.5;\n }\n\n p + p,\n p + article {\n margin-top: 1rem;\n }\n article + p,\n article + article {\n margin-top: 1rem;\n }\n\n ul,\n ol {\n margin: 0;\n padding-inline-start: 2em;\n list-style-position: outside;\n }\n\n ul > li, ol > li {\n padding: 0 2px;\n line-height: 2;\n }\n\n ul {\n list-style: disc;\n }\n\n ol {\n list-style: decimal;\n }\n\n dl {\n display: flex;\n flex-flow: row wrap;\n margin: 0 0 1rem;\n line-height: 1.5em;\n }\n\n dl dt {\n overflow: hidden;\n flex: 0 0 33.3%;\n\n min-width: 6em;\n max-width: 12em;\n padding-inline: 1em;\n\n font-size: 0.875em;\n color: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 1) 65%, color(from var(--tint) srgb r g b / 1));\n text-overflow: ellipsis;\n white-space: nowrap;\n }\n\n dl dd {\n flex: 1 1 66.6%;\n margin: 0;\n padding: 0;\n }\n\n dl.align-end > dt {\n text-align: end;\n }\n\n dl.align-end > dt::after {\n content: ": ";\n }\n dl.bg-alternate > dt:nth-of-type(odd),\n dl.bg-alternate > dd:nth-of-type(odd) {\n background-color: color-mix(in lab, var(--fabric-bg) 99%, var(--tint));\n }\n\n dl.bg-alternate > dt:nth-of-type(even),\n dl.bg-alternate > dd:nth-of-type(even) {\n background-color: color-mix(in lab, var(--fabric-bg) 92%, var(--tint));\n }\n\n abbr {\n cursor: help;\n\n display: inline-block;\n\n padding: 0 2px;\n\n color: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n -webkit-text-decoration: underline dashed 1px;\n text-decoration: underline dashed 1px;\n\n background-color: color-mix(in lab, currentcolor 10%, var(--fabric-bg));\n }\n\n mark {\n display: inline-block;\n color: var(--fabric-text);\n background-color: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n }\n\n .link {\n cursor: pointer;\n -webkit-user-select: none;\n -moz-user-select: none;\n user-select: none;\n\n font-weight: 500;\n color: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n -webkit-text-decoration: underline dotted;\n text-decoration: underline dotted;\n }\n\n .link:hover {\n -webkit-text-decoration: underline solid;\n text-decoration: underline solid;\n }\n\n .bg-odd,\n .bg-alternate > :nth-child(odd) {\n background-color: color-mix(in lab, var(--fabric-bg) 99%, var(--tint));\n }\n\n .bg-even,\n .bg-alternate > :nth-child(even) {\n background-color: color-mix(in lab, var(--fabric-bg) 92%, var(--tint));\n }\n}\n\n/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer reset {\n :root {\n --click-gradient: linear-gradient(\n var(--fabric-gradient-deg, 180deg),\n rgb(255 255 255 / 8%) 0%,\n transparent 25%,\n transparent 50%,\n rgb(0 0 0 / 8%) 100%\n );\n --active-gradient: linear-gradient(\n 0deg,\n rgb(255 255 255 / 5%) 0%,\n transparent 15%,\n transparent 85%,\n rgb(0 0 0 / 5%) 100%\n );\n --progress-gradient: linear-gradient(\n -45deg,\n color(from var(--white) srgb r g b / 10%) 25%,\n color(from var(--tint) srgb r g b / 10%) 25%,\n color(from var(--tint) srgb r g b / 10%) 50%,\n color(from var(--white) srgb r g b / 10%) 50%,\n color(from var(--white) srgb r g b / 10%) 75%,\n color(from var(--tint) srgb r g b / 10%) 75%,\n color(from var(--tint) srgb r g b / 10%)\n );\n }\n}\n\n/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n/* stylelint-disable selector-class-pattern */\n\n[data-color-scheme="light"] pre code.hljs {\n overflow-x: auto;\n display: block;\n padding: 1em;\n }\n\n[data-color-scheme="light"] code.hljs {\n padding: 3px 5px;\n }\n\n/*!\n Theme: GitHub\n Description: Light theme as seen on github.com\n Author: github.com\n Maintainer: @Hirse\n Updated: 2021-05-15\n\n Outdated base version: https://github.com/primer/github-syntax-light\n Current colors taken from GitHub's CSS\n*/\n\n[data-color-scheme="light"] .hljs-doctag,\n [data-color-scheme="light"] .hljs-keyword,\n [data-color-scheme="light"] .hljs-meta .hljs-keyword,\n [data-color-scheme="light"] .hljs-template-tag,\n [data-color-scheme="light"] .hljs-template-variable,\n [data-color-scheme="light"] .hljs-type,\n [data-color-scheme="light"] .hljs-variable.language_ {\n /* prettylights-syntax-keyword */\n color: #d73a49;\n }\n\n[data-color-scheme="light"] .hljs-title,\n [data-color-scheme="light"] .hljs-title.class_,\n [data-color-scheme="light"] .hljs-title.class_.inherited__,\n [data-color-scheme="light"] .hljs-title.function_ {\n /* prettylights-syntax-entity */\n color: #6f42c1;\n }\n\n[data-color-scheme="light"] .hljs-attr,\n [data-color-scheme="light"] .hljs-attribute,\n [data-color-scheme="light"] .hljs-literal,\n [data-color-scheme="light"] .hljs-meta,\n [data-color-scheme="light"] .hljs-number,\n [data-color-scheme="light"] .hljs-operator,\n [data-color-scheme="light"] .hljs-variable,\n [data-color-scheme="light"] .hljs-selector-attr,\n [data-color-scheme="light"] .hljs-selector-class,\n [data-color-scheme="light"] .hljs-selector-id {\n /* prettylights-syntax-constant */\n color: #005cc5;\n }\n\n[data-color-scheme="light"] .hljs-regexp,\n [data-color-scheme="light"] .hljs-string,\n [data-color-scheme="light"] .hljs-meta .hljs-string {\n /* prettylights-syntax-string */\n color: #032f62;\n }\n\n[data-color-scheme="light"] .hljs-built_in,\n [data-color-scheme="light"] .hljs-symbol {\n /* prettylights-syntax-variable */\n color: #e36209;\n }\n\n[data-color-scheme="light"] .hljs-comment,\n [data-color-scheme="light"] .hljs-code,\n [data-color-scheme="light"] .hljs-formula {\n /* prettylights-syntax-comment */\n color: #6a737d;\n }\n\n[data-color-scheme="light"] .hljs-name,\n [data-color-scheme="light"] .hljs-quote,\n [data-color-scheme="light"] .hljs-selector-tag,\n [data-color-scheme="light"] .hljs-selector-pseudo {\n /* prettylights-syntax-entity-tag */\n color: #22863a;\n }\n\n[data-color-scheme="light"] .hljs-subst {\n /* prettylights-syntax-storage-modifier-import */\n color: #24292e;\n }\n\n[data-color-scheme="light"] .hljs-section {\n font-weight: bold;\n\n /* prettylights-syntax-markup-heading */\n color: #005cc5;\n }\n\n[data-color-scheme="light"] .hljs-bullet {\n /* prettylights-syntax-markup-list */\n color: #735c0f;\n }\n\n[data-color-scheme="light"] .hljs-emphasis {\n font-style: italic;\n\n /* prettylights-syntax-markup-italic */\n color: #24292e;\n }\n\n[data-color-scheme="light"] .hljs-strong {\n font-weight: bold;\n\n /* prettylights-syntax-markup-bold */\n color: #24292e;\n }\n\n[data-color-scheme="light"] .hljs-addition {\n /* prettylights-syntax-markup-inserted */\n color: #22863a;\n background-color: #f0fff4;\n }\n\n[data-color-scheme="light"] .hljs-deletion {\n /* prettylights-syntax-markup-deleted */\n color: #b31d28;\n background-color: #ffeef0;\n }\n\n[data-color-scheme="light"] .hljs-char.escape_,\n [data-color-scheme="light"] .hljs-link,\n [data-color-scheme="light"] .hljs-params,\n [data-color-scheme="light"] .hljs-property,\n [data-color-scheme="light"] .hljs-punctuation,\n [data-color-scheme="light"] .hljs-tag {\n /* purposely ignored */\n }\n\n/* stylelint-disable selector-class-pattern */\n\n[data-color-scheme="dark"] pre code.hljs {\n overflow-x: auto;\n display: block;\n padding: 1em;\n }\n\n[data-color-scheme="dark"] code.hljs {\n padding: 3px 5px;\n }\n\n/*!\n Theme: GitHub Dark\n Description: Dark theme as seen on github.com\n Author: github.com\n Maintainer: @Hirse\n Updated: 2021-05-15\n\n Outdated base version: https://github.com/primer/github-syntax-dark\n Current colors taken from GitHub's CSS\n*/\n\n[data-color-scheme="dark"] .hljs-doctag,\n [data-color-scheme="dark"] .hljs-keyword,\n [data-color-scheme="dark"] .hljs-meta .hljs-keyword,\n [data-color-scheme="dark"] .hljs-template-tag,\n [data-color-scheme="dark"] .hljs-template-variable,\n [data-color-scheme="dark"] .hljs-type,\n [data-color-scheme="dark"] .hljs-variable.language_ {\n /* prettylights-syntax-keyword */\n color: #ff7b72;\n }\n\n[data-color-scheme="dark"] .hljs-title,\n [data-color-scheme="dark"] .hljs-title.class_,\n [data-color-scheme="dark"] .hljs-title.class_.inherited__,\n [data-color-scheme="dark"] .hljs-title.function_ {\n /* prettylights-syntax-entity */\n color: #d2a8ff;\n }\n\n[data-color-scheme="dark"] .hljs-attr,\n [data-color-scheme="dark"] .hljs-attribute,\n [data-color-scheme="dark"] .hljs-literal,\n [data-color-scheme="dark"] .hljs-meta,\n [data-color-scheme="dark"] .hljs-number,\n [data-color-scheme="dark"] .hljs-operator,\n [data-color-scheme="dark"] .hljs-variable,\n [data-color-scheme="dark"] .hljs-selector-attr,\n [data-color-scheme="dark"] .hljs-selector-class,\n [data-color-scheme="dark"] .hljs-selector-id {\n /* prettylights-syntax-constant */\n color: #79c0ff;\n }\n\n[data-color-scheme="dark"] .hljs-regexp,\n [data-color-scheme="dark"] .hljs-string,\n [data-color-scheme="dark"] .hljs-meta .hljs-string {\n /* prettylights-syntax-string */\n color: #a5d6ff;\n }\n\n[data-color-scheme="dark"] .hljs-built_in,\n [data-color-scheme="dark"] .hljs-symbol {\n /* prettylights-syntax-variable */\n color: #ffa657;\n }\n\n[data-color-scheme="dark"] .hljs-comment,\n [data-color-scheme="dark"] .hljs-code,\n [data-color-scheme="dark"] .hljs-formula {\n /* prettylights-syntax-comment */\n color: #8b949e;\n }\n\n[data-color-scheme="dark"] .hljs-name,\n [data-color-scheme="dark"] .hljs-quote,\n [data-color-scheme="dark"] .hljs-selector-tag,\n [data-color-scheme="dark"] .hljs-selector-pseudo {\n /* prettylights-syntax-entity-tag */\n color: #7ee787;\n }\n\n[data-color-scheme="dark"] .hljs-subst {\n /* prettylights-syntax-storage-modifier-import */\n color: #c9d1d9;\n }\n\n[data-color-scheme="dark"] .hljs-section {\n font-weight: bold;\n\n /* prettylights-syntax-markup-heading */\n color: #1f6feb;\n }\n\n[data-color-scheme="dark"] .hljs-bullet {\n /* prettylights-syntax-markup-list */\n color: #f2cc60;\n }\n\n[data-color-scheme="dark"] .hljs-emphasis {\n font-style: italic;\n\n /* prettylights-syntax-markup-italic */\n color: #c9d1d9;\n }\n\n[data-color-scheme="dark"] .hljs-strong {\n font-weight: bold;\n\n /* prettylights-syntax-markup-bold */\n color: #c9d1d9;\n }\n\n[data-color-scheme="dark"] .hljs-addition {\n /* prettylights-syntax-markup-inserted */\n color: #aff5b4;\n background-color: #033a16;\n }\n\n[data-color-scheme="dark"] .hljs-deletion {\n /* prettylights-syntax-markup-deleted */\n color: #ffdcd7;\n background-color: #67060c;\n }\n\n[data-color-scheme="dark"] .hljs-char.escape_,\n [data-color-scheme="dark"] .hljs-link,\n [data-color-scheme="dark"] .hljs-params,\n [data-color-scheme="dark"] .hljs-property,\n [data-color-scheme="dark"] .hljs-punctuation,\n [data-color-scheme="dark"] .hljs-tag {\n /* purposely ignored */\n }\n\n/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n.markdown-body.markdown-body {\n margin: 0;\n\n font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial,\n sans-serif, "Apple Color Emoji", "Segoe UI Emoji";\n font-size: 16px;\n line-height: 1.5;\n -webkit-text-size-adjust: 100%;\n -moz-text-size-adjust: 100%;\n text-size-adjust: 100%;\n word-wrap: break-word;\n }\n\n.markdown-body.markdown-body .octicon {\n display: inline-block;\n vertical-align: text-bottom;\n fill: currentcolor;\n }\n\n.markdown-body.markdown-body h1:hover .anchor .octicon-link::before,\n .markdown-body.markdown-body h2:hover .anchor .octicon-link::before,\n .markdown-body.markdown-body h3:hover .anchor .octicon-link::before,\n .markdown-body.markdown-body h4:hover .anchor .octicon-link::before,\n .markdown-body.markdown-body h5:hover .anchor .octicon-link::before,\n .markdown-body.markdown-body h6:hover .anchor .octicon-link::before {\n content: " ";\n\n display: inline-block;\n\n width: 16px;\n height: 16px;\n\n background-color: currentcolor;\n\n -webkit-mask-image: url(${___CSS_LOADER_URL_REPLACEMENT_4___});\n\n mask-image: url(${___CSS_LOADER_URL_REPLACEMENT_4___});\n }\n\n.markdown-body.markdown-body details,\n .markdown-body.markdown-body figcaption,\n .markdown-body.markdown-body figure {\n display: block;\n }\n\n.markdown-body.markdown-body summary {\n display: list-item;\n }\n\n.markdown-body.markdown-body [hidden] {\n display: none !important;\n }\n\n.markdown-body.markdown-body a {\n color: #0969da;\n text-decoration: none;\n background-color: transparent;\n }\n\n.markdown-body.markdown-body a:active,\n .markdown-body.markdown-body a:hover {\n outline-width: 0;\n }\n\n.markdown-body.markdown-body abbr[title] {\n -webkit-text-decoration: underline dotted;\n text-decoration: underline dotted;\n border-bottom: none;\n }\n\n.markdown-body.markdown-body b,\n .markdown-body.markdown-body strong {\n font-weight: 600;\n }\n\n.markdown-body.markdown-body dfn {\n font-style: italic;\n }\n\n.markdown-body.markdown-body mark{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / var(--tw-bg-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n\n.markdown-body.markdown-body small {\n font-size: 90%;\n }\n\n.markdown-body.markdown-body sub,\n .markdown-body.markdown-body sup {\n position: relative;\n font-size: 75%;\n line-height: 0;\n vertical-align: baseline;\n }\n\n.markdown-body.markdown-body sub {\n bottom: -0.25em;\n }\n\n.markdown-body.markdown-body sup {\n top: -0.5em;\n }\n\n.markdown-body.markdown-body img {\n box-sizing: content-box;\n max-width: 100%;\n border-style: none;\n --tw-bg-opacity: 1;\n background-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--tint) srgb r g b / var(--tw-bg-opacity)));\n }\n\n.markdown-body.markdown-body code,\n .markdown-body.markdown-body kbd,\n .markdown-body.markdown-body pre,\n .markdown-body.markdown-body samp {\n font-family: monospace;\n font-size: 1em;\n }\n\n.markdown-body.markdown-body figure {\n margin: 1em 40px;\n }\n\n.markdown-body.markdown-body hr {\n overflow: hidden;\n\n box-sizing: content-box;\n height: 0.25em;\n margin: 24px 0;\n padding: 0;\n\n background: transparent;\n border: 0;\n border-bottom: 1px solid hsl(210deg 18% 87% / 100%);\n --tw-bg-opacity: 1;\n background-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--tint) srgb r g b / var(--tw-bg-opacity)));\n }\n\n.markdown-body.markdown-body a:hover {\n text-decoration: underline;\n }\n\n.markdown-body.markdown-body hr::before {\n content: "";\n display: table;\n }\n\n.markdown-body.markdown-body hr::after {\n content: "";\n clear: both;\n display: table;\n }\n\n.markdown-body.markdown-body table {\n overflow: auto;\n display: block;\n border-spacing: 2px;\n border-collapse: separate;\n\n width: -moz-max-content;\n\n width: max-content;\n max-width: 100%;\n margin: 1.5rem 0;\n\n border: 0;\n }\n\n.markdown-body.markdown-body h1,\n .markdown-body.markdown-body h2,\n .markdown-body.markdown-body h3,\n .markdown-body.markdown-body h4,\n .markdown-body.markdown-body h5,\n .markdown-body.markdown-body h6 {\n margin: 1.5rem 0;\n font-weight: 600;\n line-height: 1.25;\n }\n\n.markdown-body.markdown-body h1:first-child, .markdown-body.markdown-body h2:first-child, .markdown-body.markdown-body h3:first-child, .markdown-body.markdown-body h4:first-child, .markdown-body.markdown-body h5:first-child, .markdown-body.markdown-body h6:first-child {\n margin-top: 0;\n }\n\n:is(.markdown-body.markdown-body h1) + br, :is(.markdown-body.markdown-body h2) + br, :is(.markdown-body.markdown-body h3) + br, :is(.markdown-body.markdown-body h4) + br, :is(.markdown-body.markdown-body h5) + br, :is(.markdown-body.markdown-body h6) + br, :is(.markdown-body.markdown-body li) + br {\n display: none;\n }\n\n.markdown-body.markdown-body h1 {\n padding-bottom: 0.3em;\n font-size: 2em;\n font-weight: 600;\n border-bottom: 1px solid hsl(210deg 18% 87% / 100%);\n }\n\n.markdown-body.markdown-body h2 {\n padding-bottom: 0.3em;\n font-size: 1.5em;\n font-weight: 600;\n border-bottom: 1px solid hsl(210deg 18% 87% / 100%);\n }\n\n.markdown-body.markdown-body h3 {\n font-size: 1.25em;\n font-weight: 600;\n }\n\n.markdown-body.markdown-body h4 {\n font-size: 1em;\n font-weight: 600;\n }\n\n.markdown-body.markdown-body h5 {\n font-size: 0.875em;\n font-weight: 600;\n }\n\n.markdown-body.markdown-body h6 {\n font-size: 0.85em;\n font-weight: 600;\n --tw-text-opacity: 1;\n color: color-mix(in lab, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)) 45%, color(from var(--tint) srgb r g b / var(--tw-text-opacity)));\n }\n\n.markdown-body.markdown-body p {\n margin: 1.5rem 0;\n }\n\n.markdown-body.markdown-body p:first-child {\n margin-top: 0;\n }\n\n.markdown-body.markdown-body blockquote {\n margin: 0;\n padding: 0 1em;\n color: #57606a;\n border-left: 0.25em solid;\n --tw-border-opacity: 1;\n border-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)) 65%, color(from var(--tint) srgb r g b / var(--tw-border-opacity)));\n }\n\n.markdown-body.markdown-body ul,\n .markdown-body.markdown-body ol {\n margin-top: 0;\n margin-bottom: 0;\n padding-left: 2em;\n }\n\n.markdown-body.markdown-body ul {\n list-style-type: initial;\n }\n\n.markdown-body.markdown-body ol {\n list-style-type: initial;\n }\n\n.markdown-body.markdown-body ol ol,\n .markdown-body.markdown-body ul ol {\n list-style-type: lower-roman;\n }\n\n.markdown-body.markdown-body ul ul ol,\n .markdown-body.markdown-body ul ol ol,\n .markdown-body.markdown-body ol ul ol,\n .markdown-body.markdown-body ol ol ol {\n list-style-type: lower-alpha;\n }\n\n.markdown-body.markdown-body dd {\n margin-left: 0;\n }\n\n.markdown-body.markdown-body tt,\n .markdown-body.markdown-body :not(pre) code {\n font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas,\n "Liberation Mono", monospace;\n background-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n padding-left: 0.25rem;\n padding-right: 0.25rem;\n padding-top: 0.125rem;\n padding-bottom: 0.125rem;\n font-size: 0.875rem;\n line-height: 1.25rem;\n }\n\n.markdown-body.markdown-body pre.hljs {\n margin: 1.5rem 0;\n font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas,\n "Liberation Mono", monospace;\n font-size: 12px;\n word-wrap: normal;\n position: relative;\n overflow: auto;\n white-space: normal;\n border-radius: var(--rounding);\n border-width: 1px;\n --tw-bg-opacity: 1;\n background-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)) 99%, color(from var(--tint) srgb r g b / var(--tw-bg-opacity)));\n }\n\n.markdown-body.markdown-body pre.hljs::after{\nposition: absolute;\ntop: 0px;\ninset-inline-end: 0px;\npadding-top: 0.25rem;\npadding-bottom: 0.25rem;\npadding-left: 0.5rem;\npadding-right: 0.5rem;\n}\n\n.markdown-body.markdown-body pre.hljs > code{\ndisplay: block;\nbackground-color: transparent;\npadding: 1.5rem;\n\n white-space: pre;\n}\n\n.markdown-body.markdown-body pre.hljs.language-jsx::after,\n .markdown-body.markdown-body pre.hljs.language-tsx::after {\n content: "React";\n color: #000;\n background-color: #61dafb;\n }\n\n.markdown-body.markdown-body pre.hljs.language-js::after {\n content: "JS";\n color: #000;\n background-color: #f7df1e;\n }\n\n.markdown-body.markdown-body pre.hljs.language-ts::after {\n content: "TS";\n color: #fff;\n background-color: #3178c6;\n }\n\n.markdown-body.markdown-body pre.hljs.language-css::after {\n content: "CSS";\n color: #fff;\n background-color: #1572b6;\n }\n\n.markdown-body.markdown-body pre.hljs.language-html::after {\n content: "HTML";\n color: #fff;\n background-color: #e34f26;\n }\n\n.markdown-body.markdown-body pre.hljs.language-bash::after {\n content: "Bash";\n color: #fff;\n background-color: #64748b;\n }\n\n.markdown-body.markdown-body pre.hljs.language-json::after {\n content: "JSON";\n color: #fff;\n background-color: #000;\n }\n\n.markdown-body.markdown-body pre.hljs.language-yaml::after {\n content: "YAML";\n color: #fff;\n background-color: #cb171e;\n }\n\n.markdown-body.markdown-body pre.hljs .hljs-copy{\nposition: absolute;\ninset-inline-end: 0px;\nbottom: 0px;\ncursor: pointer;\nborder-width: 1px;\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)) 99%, color(from var(--tint) srgb r g b / var(--tw-bg-opacity)));\npadding: 0.5rem;\nline-height: 1;\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-text-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n\n.markdown-body.markdown-body pre.hljs .hljs-copy:hover{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n\n.markdown-body.markdown-body pre.hljs .hljs-copy > svg {\n width: 1em;\n height: 1em;\n }\n\n.markdown-body.markdown-body pre.hljs .hljs-copy-success{\nposition: absolute;\ninset-inline-end: 0px;\nbottom: 0px;\ndisplay: none;\n-webkit-user-select: none;\n -moz-user-select: none;\n user-select: none;\nborder-width: 1px;\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)) 5%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\npadding: 0.5rem;\nline-height: 1;\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)) 5%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n\n.markdown-body.markdown-body pre.hljs .hljs-copy-success[data-show="true"]{\ndisplay: block;\n}\n\n.markdown-body.markdown-body::before {\n content: "";\n display: table;\n }\n\n.markdown-body.markdown-body::after {\n content: "";\n clear: both;\n display: table;\n }\n\n.markdown-body.markdown-body > *:first-child {\n margin-top: 0 !important;\n }\n\n.markdown-body.markdown-body > *:last-child {\n margin-bottom: 0 !important;\n }\n\n.markdown-body.markdown-body blockquote > :first-child {\n margin-top: 0;\n }\n\n.markdown-body.markdown-body blockquote > :last-child {\n margin-bottom: 0;\n }\n\n.markdown-body.markdown-body ol[type="1"] {\n list-style-type: decimal;\n }\n\n.markdown-body.markdown-body ol[type="a"] {\n list-style-type: lower-alpha;\n }\n\n.markdown-body.markdown-body ol[type="i"] {\n list-style-type: lower-roman;\n }\n\n.markdown-body.markdown-body div > ol:not([type]) {\n list-style-type: decimal;\n }\n\n.markdown-body.markdown-body ul ul,\n .markdown-body.markdown-body ul ol,\n .markdown-body.markdown-body ol ol,\n .markdown-body.markdown-body ol ul {\n margin-top: 0;\n margin-bottom: 0;\n }\n\n.markdown-body.markdown-body li > p {\n margin-top: 16px;\n }\n\n.markdown-body.markdown-body li + li {\n margin-top: 0.25em;\n }\n\n.markdown-body.markdown-body dl {\n padding: 0;\n }\n\n.markdown-body.markdown-body dl dt {\n margin-top: 16px;\n padding: 0;\n\n font-size: 1em;\n font-weight: 600;\n font-style: italic;\n }\n\n.markdown-body.markdown-body dl dd {\n margin-bottom: 16px;\n padding: 0 16px;\n }\n\n.markdown-body.markdown-body table th {\n font-weight: 600;\n }\n\n.markdown-body.markdown-body table th,\n .markdown-body.markdown-body table td {\n padding: 6px 13px;\n --tw-border-opacity: 1;\n border-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)) 72%, color(from var(--tint) srgb r g b / var(--tw-border-opacity)));\n }\n\n.markdown-body.markdown-body table tr {\n border-top: 1px solid;\n --tw-border-opacity: 1;\n border-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)) 72%, color(from var(--tint) srgb r g b / var(--tw-border-opacity)));\n }\n\n.markdown-body.markdown-body table tr:nth-child(2n){\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)) 99%, color(from var(--tint) srgb r g b / var(--tw-bg-opacity)));\n}\n\n.markdown-body div[class*="_admonition"] {\n /* stylelint-disable-next-line custom-property-pattern */\n border-color: var(--admonitionBorder) !important;\n }\n\n.markdown-body .admonition,\n .markdown-body div[class*="_admonition"] {\n margin: 1.5rem 0;\n padding: 0.5rem;\n border-inline-start: 4px solid;\n }\n\n:is(.markdown-body .admonition,.markdown-body div[class*="_admonition"]) :first-child {\n margin-top: 0;\n }\n\n:is(.markdown-body .admonition,.markdown-body div[class*="_admonition"]) :last-child {\n margin-bottom: 0;\n }\n\n:is(.markdown-body .admonition,.markdown-body div[class*="_admonition"]) .admonition-title {\n display: none;\n }\n\n:is(:is(.markdown-body .admonition,.markdown-body div[class*="_admonition"]) .admonition-title) + * {\n margin-top: 0;\n }\n\n.admonition-note:is(.markdown-body .admonition,.markdown-body div[class*="_admonition"]){\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)) 65%, color(from var(--tint) srgb r g b / var(--tw-border-opacity)));\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--tint) srgb r g b / var(--tw-bg-opacity)));\n}\n\n.admonition-tip:is(.markdown-body .admonition,.markdown-body div[class*="_admonition"]){\n--tw-border-opacity: 1;\nborder-color: rgb(68 188 105 / var(--tw-border-opacity));\n--tw-bg-opacity: 1;\nbackground-color: rgb(68 188 105 / var(--tw-bg-opacity));\n}\n\n.admonition-info:is(.markdown-body .admonition,.markdown-body div[class*="_admonition"]){\n--tw-border-opacity: 1;\nborder-color: rgb(0 191 255 / var(--tw-border-opacity));\n--tw-bg-opacity: 1;\nbackground-color: rgb(0 191 255 / var(--tw-bg-opacity));\n}\n\n.admonition-caution:is(.markdown-body .admonition,.markdown-body div[class*="_admonition"]){\n--tw-border-opacity: 1;\nborder-color: rgb(237 170 0 / var(--tw-border-opacity));\n--tw-bg-opacity: 1;\nbackground-color: rgb(237 170 0 / var(--tw-bg-opacity));\n}\n\n.admonition-danger:is(.markdown-body .admonition,.markdown-body div[class*="_admonition"]){\n--tw-border-opacity: 1;\nborder-color: rgb(242 76 61 / var(--tw-border-opacity));\n--tw-bg-opacity: 1;\nbackground-color: rgb(242 76 61 / var(--tw-bg-opacity));\n}\n\n.flag {\n display: inline-block;\n\n width: 1em;\n height: 0.75em;\n max-height: 0.75em;\n margin-top: 0.125em;\n\n font-size: 1em;\n vertical-align: baseline;\n\n background-repeat: no-repeat;\n background-position: center center;\n background-size: 100% 100%;\n box-shadow: 0 0 0 1px rgb(128 128 128 / 50%) inset;\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_5___});\n}\n\n.flag.AF,\n.flag.AFG,\n.flag.af,\n.flag.afg {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_6___});\n}\n\n.flag.AL,\n.flag.ALB,\n.flag.al,\n.flag.alb {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_7___});\n}\n\n.flag.DZ,\n.flag.DZA,\n.flag.dz,\n.flag.dza {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_8___});\n}\n\n.flag.AS,\n.flag.ASM,\n.flag.as,\n.flag.asm {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_9___});\n}\n\n.flag.AD,\n.flag.AND,\n.flag.ad,\n.flag.and {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_10___});\n}\n\n.flag.AO,\n.flag.AGO,\n.flag.ao,\n.flag.ago {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_11___});\n}\n\n.flag.AI,\n.flag.AIA,\n.flag.ai,\n.flag.aia {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_12___});\n}\n\n.flag.AG,\n.flag.ATG,\n.flag.ag,\n.flag.atg {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_13___});\n}\n\n.flag.AR,\n.flag.ARG,\n.flag.ar,\n.flag.arg {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_14___});\n}\n\n.flag.AM,\n.flag.ARM,\n.flag.am,\n.flag.arm {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_15___});\n}\n\n.flag.AW,\n.flag.ABW,\n.flag.aw,\n.flag.abw {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_16___});\n}\n\n.flag.AU,\n.flag.AUS,\n.flag.au,\n.flag.aus {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_17___});\n}\n\n.flag.AT,\n.flag.AUT,\n.flag.at,\n.flag.aut {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_18___});\n}\n\n.flag.AZ,\n.flag.AZE,\n.flag.az,\n.flag.aze {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_19___});\n}\n\n.flag.BS,\n.flag.BHS,\n.flag.bs,\n.flag.bhs {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_20___});\n}\n\n.flag.BH,\n.flag.BHR,\n.flag.bh,\n.flag.bhr {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_21___});\n}\n\n.flag.BD,\n.flag.BGD,\n.flag.bd,\n.flag.bgd {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_22___});\n}\n\n.flag.BB,\n.flag.BRB,\n.flag.bb,\n.flag.brb {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_23___});\n}\n\n.flag.BY,\n.flag.BLR,\n.flag.by,\n.flag.blr {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_24___});\n}\n\n.flag.BE,\n.flag.BEL,\n.flag.be,\n.flag.bel {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_25___});\n}\n\n.flag.BZ,\n.flag.BLZ,\n.flag.bz,\n.flag.blz {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_26___});\n}\n\n.flag.BJ,\n.flag.BEN,\n.flag.bj,\n.flag.ben {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_27___});\n}\n\n.flag.BM,\n.flag.BMU,\n.flag.bm,\n.flag.bmu {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_28___});\n}\n\n.flag.BT,\n.flag.BTN,\n.flag.bt,\n.flag.btn {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_29___});\n}\n\n.flag.BO,\n.flag.BOL,\n.flag.bo,\n.flag.bol {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_30___});\n}\n\n.flag.BA,\n.flag.BIH,\n.flag.ba,\n.flag.bih {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_31___});\n}\n\n.flag.BW,\n.flag.BWA,\n.flag.bw,\n.flag.bwa {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_32___});\n}\n\n.flag.BR,\n.flag.BRA,\n.flag.br,\n.flag.bra {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_33___});\n}\n\n.flag.BN,\n.flag.BRN,\n.flag.bn,\n.flag.brn {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_34___});\n}\n\n.flag.BG,\n.flag.BGR,\n.flag.bg,\n.flag.bgr {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_35___});\n}\n\n.flag.BF,\n.flag.BFA,\n.flag.bf,\n.flag.bfa {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_36___});\n}\n\n.flag.BI,\n.flag.BDI,\n.flag.bi,\n.flag.bdi {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_37___});\n}\n\n.flag.KH,\n.flag.KHM,\n.flag.kh,\n.flag.khm {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_38___});\n}\n\n.flag.CM,\n.flag.CMR,\n.flag.cm,\n.flag.cmr {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_39___});\n}\n\n.flag.CA,\n.flag.CAN,\n.flag.ca,\n.flag.can {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_40___});\n}\n\n.flag.CV,\n.flag.CPV,\n.flag.cv,\n.flag.cpv {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_41___});\n}\n\n.flag.KY,\n.flag.CYM,\n.flag.ky,\n.flag.cym {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_42___});\n}\n\n.flag.CF,\n.flag.CAF,\n.flag.cf,\n.flag.caf {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_43___});\n}\n\n.flag.TD,\n.flag.TCD,\n.flag.td,\n.flag.tcd {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_44___});\n}\n\n.flag.CL,\n.flag.CHL,\n.flag.cl,\n.flag.chl {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_45___});\n}\n\n.flag.CN,\n.flag.CHN,\n.flag.cn,\n.flag.chn {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_46___});\n}\n\n.flag.CO,\n.flag.COL,\n.flag.co,\n.flag.col {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_47___});\n}\n\n.flag.KM,\n.flag.COM,\n.flag.km,\n.flag.com {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_48___});\n}\n\n.flag.CG,\n.flag.COG,\n.flag.cg,\n.flag.cog {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_49___});\n}\n\n.flag.CK,\n.flag.COK,\n.flag.ck,\n.flag.cok {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_50___});\n}\n\n.flag.CR,\n.flag.CRI,\n.flag.cr,\n.flag.cri {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_51___});\n}\n\n.flag.CI,\n.flag.CIV,\n.flag.ci,\n.flag.civ {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_52___});\n}\n\n.flag.HR,\n.flag.HRV,\n.flag.hr,\n.flag.hrv {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_53___});\n}\n\n.flag.CU,\n.flag.CUB,\n.flag.cu,\n.flag.cub {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_54___});\n}\n\n.flag.CY,\n.flag.CYP,\n.flag.cy,\n.flag.cyp {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_55___});\n}\n\n.flag.CZ,\n.flag.CZE,\n.flag.cz,\n.flag.cze {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_56___});\n}\n\n.flag.DK,\n.flag.DNK,\n.flag.dk,\n.flag.dnk {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_57___});\n}\n\n.flag.DJ,\n.flag.DJI,\n.flag.dj,\n.flag.dji {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_58___});\n}\n\n.flag.DM,\n.flag.DMA,\n.flag.dm,\n.flag.dma {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_59___});\n}\n\n.flag.DO,\n.flag.DOM,\n.flag.do,\n.flag.dom {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_60___});\n}\n\n.flag.CD,\n.flag.COD,\n.flag.cd,\n.flag.cod {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_61___});\n}\n\n.flag.TL,\n.flag.TLS,\n.flag.tl,\n.flag.tls {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_62___});\n}\n\n.flag.EC,\n.flag.ECU,\n.flag.ec,\n.flag.ecu {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_63___});\n}\n\n.flag.EG,\n.flag.EGY,\n.flag.eg,\n.flag.egy {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_64___});\n}\n\n.flag.SV,\n.flag.SLV,\n.flag.sv,\n.flag.slv {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_65___});\n}\n\n.flag.GQ,\n.flag.GNQ,\n.flag.gq,\n.flag.gnq {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_66___});\n}\n\n.flag.ER,\n.flag.ERI,\n.flag.er,\n.flag.eri {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_67___});\n}\n\n.flag.EE,\n.flag.EST,\n.flag.ee,\n.flag.est {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_68___});\n}\n\n.flag.ET,\n.flag.ETH,\n.flag.et,\n.flag.eth {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_69___});\n}\n\n.flag.FO,\n.flag.FRO,\n.flag.fo,\n.flag.fro {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_70___});\n}\n\n.flag.FJ,\n.flag.FJI,\n.flag.fj,\n.flag.fji {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_71___});\n}\n\n.flag.FI,\n.flag.FIN,\n.flag.fi,\n.flag.fin {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_72___});\n}\n\n.flag.FR,\n.flag.FRA,\n.flag.fr,\n.flag.fra {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_73___});\n}\n\n.flag.GF,\n.flag.GUF,\n.flag.gf,\n.flag.guf {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_74___});\n}\n\n.flag.PF,\n.flag.PYF,\n.flag.pf,\n.flag.pyf {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_75___});\n}\n\n.flag.GA,\n.flag.GAB,\n.flag.ga,\n.flag.gab {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_76___});\n}\n\n.flag.GM,\n.flag.GMB,\n.flag.gm,\n.flag.gmb {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_77___});\n}\n\n.flag.GE,\n.flag.GEO,\n.flag.ge,\n.flag.geo {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_78___});\n}\n\n.flag.DE,\n.flag.DEU,\n.flag.de,\n.flag.deu {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_79___});\n}\n\n.flag.GH,\n.flag.GHA,\n.flag.gh,\n.flag.gha {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_80___});\n}\n\n.flag.GI,\n.flag.GIB,\n.flag.gi,\n.flag.gib {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_81___});\n}\n\n.flag.GR,\n.flag.GRC,\n.flag.gr,\n.flag.grc {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_82___});\n}\n\n.flag.GL,\n.flag.GRL,\n.flag.gl,\n.flag.grl {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_83___});\n}\n\n.flag.GD,\n.flag.GRD,\n.flag.gd,\n.flag.grd {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_84___});\n}\n\n.flag.GP,\n.flag.GLP,\n.flag.gp,\n.flag.glp {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_85___});\n}\n\n.flag.GU,\n.flag.GUM,\n.flag.gu,\n.flag.gum {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_86___});\n}\n\n.flag.GT,\n.flag.GTM,\n.flag.gt,\n.flag.gtm {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_87___});\n}\n\n.flag.GG,\n.flag.GGY,\n.flag.gg,\n.flag.ggy {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_88___});\n}\n\n.flag.GN,\n.flag.GIN,\n.flag.gn,\n.flag.gin {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_89___});\n}\n\n.flag.GW,\n.flag.GNB,\n.flag.gw,\n.flag.gnb {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_90___});\n}\n\n.flag.GY,\n.flag.GUY,\n.flag.gy,\n.flag.guy {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_91___});\n}\n\n.flag.HT,\n.flag.HTI,\n.flag.ht,\n.flag.hti {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_92___});\n}\n\n.flag.HN,\n.flag.HND,\n.flag.hn,\n.flag.hnd {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_93___});\n}\n\n.flag.HK,\n.flag.HKG,\n.flag.hk,\n.flag.hkg {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_94___});\n}\n\n.flag.HU,\n.flag.HUN,\n.flag.hu,\n.flag.hun {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_95___});\n}\n\n.flag.IS,\n.flag.ISL,\n.flag.is,\n.flag.isl {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_96___});\n}\n\n.flag.IN,\n.flag.IND,\n.flag.in,\n.flag.ind {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_97___});\n}\n\n.flag.ID,\n.flag.IDN,\n.flag.id,\n.flag.idn {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_98___});\n}\n\n.flag.IR,\n.flag.IRN,\n.flag.ir,\n.flag.irn {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_99___});\n}\n\n.flag.IQ,\n.flag.IRQ,\n.flag.iq,\n.flag.irq {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_100___});\n}\n\n.flag.IE,\n.flag.IRL,\n.flag.ie,\n.flag.irl {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_101___});\n}\n\n.flag.IM,\n.flag.IMN,\n.flag.im,\n.flag.imn {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_102___});\n}\n\n.flag.IL,\n.flag.ISR,\n.flag.il,\n.flag.isr {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_103___});\n}\n\n.flag.IT,\n.flag.ITA,\n.flag.it,\n.flag.ita {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_104___});\n}\n\n.flag.JM,\n.flag.JAM,\n.flag.jm,\n.flag.jam {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_105___});\n}\n\n.flag.JP,\n.flag.JPN,\n.flag.jp,\n.flag.jpn {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_106___});\n}\n\n.flag.JE,\n.flag.JEY,\n.flag.je,\n.flag.jey {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_107___});\n}\n\n.flag.JO,\n.flag.JOR,\n.flag.jo,\n.flag.jor {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_108___});\n}\n\n.flag.KZ,\n.flag.KAZ,\n.flag.kz,\n.flag.kaz {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_109___});\n}\n\n.flag.KE,\n.flag.KEN,\n.flag.ke,\n.flag.ken {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_110___});\n}\n\n.flag.KI,\n.flag.KIR,\n.flag.ki,\n.flag.kir {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_111___});\n}\n\n.flag.KW,\n.flag.KWT,\n.flag.kw,\n.flag.kwt {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_112___});\n}\n\n.flag.KG,\n.flag.KGZ,\n.flag.kg,\n.flag.kgz {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_113___});\n}\n\n.flag.LA,\n.flag.LAO,\n.flag.la,\n.flag.lao {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_114___});\n}\n\n.flag.LV,\n.flag.LVA,\n.flag.lv,\n.flag.lva {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_115___});\n}\n\n.flag.LB,\n.flag.LBN,\n.flag.lb,\n.flag.lbn {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_116___});\n}\n\n.flag.LS,\n.flag.LSO,\n.flag.ls,\n.flag.lso {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_117___});\n}\n\n.flag.LR,\n.flag.LBR,\n.flag.lr,\n.flag.lbr {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_118___});\n}\n\n.flag.LY,\n.flag.LBY,\n.flag.ly,\n.flag.lby {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_119___});\n}\n\n.flag.LI,\n.flag.LIE,\n.flag.li,\n.flag.lie {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_120___});\n}\n\n.flag.LT,\n.flag.LTU,\n.flag.lt,\n.flag.ltu {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_121___});\n}\n\n.flag.LU,\n.flag.LUX,\n.flag.lu,\n.flag.lux {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_122___});\n}\n\n.flag.MO,\n.flag.MAC,\n.flag.mo,\n.flag.mac {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_123___});\n}\n\n.flag.MK,\n.flag.MKD,\n.flag.mk,\n.flag.mkd {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_124___});\n}\n\n.flag.MG,\n.flag.MDG,\n.flag.mg,\n.flag.mdg {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_125___});\n}\n\n.flag.MW,\n.flag.MWI,\n.flag.mw,\n.flag.mwi {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_126___});\n}\n\n.flag.MY,\n.flag.MYS,\n.flag.my,\n.flag.mys {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_127___});\n}\n\n.flag.MV,\n.flag.MDV,\n.flag.mv,\n.flag.mdv {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_128___});\n}\n\n.flag.ML,\n.flag.MLI,\n.flag.ml,\n.flag.mli {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_129___});\n}\n\n.flag.MT,\n.flag.MLT,\n.flag.mt,\n.flag.mlt {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_130___});\n}\n\n.flag.MH,\n.flag.MHL,\n.flag.mh,\n.flag.mhl {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_131___});\n}\n\n.flag.MQ,\n.flag.MTQ,\n.flag.mq,\n.flag.mtq {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_132___});\n}\n\n.flag.MR,\n.flag.MRT,\n.flag.mr,\n.flag.mrt {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_133___});\n}\n\n.flag.MU,\n.flag.MUS,\n.flag.mu,\n.flag.mus {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_134___});\n}\n\n.flag.YT,\n.flag.MYT,\n.flag.yt,\n.flag.myt {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_135___});\n}\n\n.flag.MX,\n.flag.MEX,\n.flag.mx,\n.flag.mex {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_136___});\n}\n\n.flag.FM,\n.flag.FSM,\n.flag.fm,\n.flag.fsm {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_137___});\n}\n\n.flag.MD,\n.flag.MDA,\n.flag.md,\n.flag.mda {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_138___});\n}\n\n.flag.MC,\n.flag.MCO,\n.flag.mc,\n.flag.mco {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_139___});\n}\n\n.flag.MN,\n.flag.MNG,\n.flag.mn,\n.flag.mng {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_140___});\n}\n\n.flag.ME,\n.flag.MNE,\n.flag.me,\n.flag.mne {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_141___});\n}\n\n.flag.MS,\n.flag.MSR,\n.flag.ms,\n.flag.msr {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_142___});\n}\n\n.flag.MA,\n.flag.MAR,\n.flag.ma,\n.flag.mar {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_143___});\n}\n\n.flag.MZ,\n.flag.MOZ,\n.flag.mz,\n.flag.moz {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_144___});\n}\n\n.flag.MM,\n.flag.MMR,\n.flag.mm,\n.flag.mmr {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_145___});\n}\n\n.flag.NA,\n.flag.NAM,\n.flag.na,\n.flag.nam {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_146___});\n}\n\n.flag.NR,\n.flag.NRU,\n.flag.nr,\n.flag.nru {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_147___});\n}\n\n.flag.NP,\n.flag.NPL,\n.flag.np,\n.flag.npl {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_148___});\n background-size: contain;\n}\n\n.flag.NL,\n.flag.NLD,\n.flag.nl,\n.flag.nld {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_149___});\n}\n\n.flag.NZ,\n.flag.NZL,\n.flag.nz,\n.flag.nzl {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_150___});\n}\n\n.flag.NI,\n.flag.NIC,\n.flag.ni,\n.flag.nic {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_151___});\n}\n\n.flag.NE,\n.flag.NER,\n.flag.ne,\n.flag.ner {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_152___});\n}\n\n.flag.NG,\n.flag.NGA,\n.flag.ng,\n.flag.nga {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_153___});\n}\n\n.flag.KP,\n.flag.PRK,\n.flag.kp,\n.flag.prk {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_154___});\n}\n\n.flag.NO,\n.flag.NOR,\n.flag.no,\n.flag.nor {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_155___});\n}\n\n.flag.OM,\n.flag.OMN,\n.flag.om,\n.flag.omn {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_156___});\n}\n\n.flag.PK,\n.flag.PAK,\n.flag.pk,\n.flag.pak {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_157___});\n}\n\n.flag.PW,\n.flag.PLW,\n.flag.pw,\n.flag.plw {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_158___});\n}\n\n.flag.PS,\n.flag.PSE,\n.flag.ps,\n.flag.pse {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_159___});\n}\n\n.flag.PA,\n.flag.PAN,\n.flag.pa,\n.flag.pan {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_160___});\n}\n\n.flag.PG,\n.flag.PNG,\n.flag.pg,\n.flag.png {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_161___});\n}\n\n.flag.PY,\n.flag.PRY,\n.flag.py,\n.flag.pry {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_162___});\n}\n\n.flag.PE,\n.flag.PER,\n.flag.pe,\n.flag.per {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_163___});\n}\n\n.flag.PH,\n.flag.PHL,\n.flag.ph,\n.flag.phl {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_164___});\n}\n\n.flag.PN,\n.flag.PCN,\n.flag.pn,\n.flag.pcn {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_165___});\n}\n\n.flag.PL,\n.flag.POL,\n.flag.pl,\n.flag.pol {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_166___});\n}\n\n.flag.PT,\n.flag.PRT,\n.flag.pt,\n.flag.prt {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_167___});\n}\n\n.flag.PR,\n.flag.PRI,\n.flag.pr,\n.flag.pri {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_168___});\n}\n\n.flag.QA,\n.flag.QAT,\n.flag.qa,\n.flag.qat {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_169___});\n}\n\n.flag.RE,\n.flag.REU,\n.flag.re,\n.flag.reu {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_170___});\n}\n\n.flag.RO,\n.flag.ROU,\n.flag.ro,\n.flag.rou {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_171___});\n}\n\n.flag.RU,\n.flag.RUS,\n.flag.ru,\n.flag.rus {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_172___});\n}\n\n.flag.RW,\n.flag.RWA,\n.flag.rw,\n.flag.rwa {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_173___});\n}\n\n.flag.SH,\n.flag.SHN,\n.flag.sh,\n.flag.shn {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_174___});\n}\n\n.flag.KN,\n.flag.KNA,\n.flag.kn,\n.flag.kna {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_175___});\n}\n\n.flag.LC,\n.flag.LCA,\n.flag.lc,\n.flag.lca {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_176___});\n}\n\n.flag.PM,\n.flag.SPM,\n.flag.pm,\n.flag.spm {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_177___});\n}\n\n.flag.VC,\n.flag.VCT,\n.flag.vc,\n.flag.vct {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_178___});\n}\n\n.flag.WS,\n.flag.WSM,\n.flag.ws,\n.flag.wsm {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_179___});\n}\n\n.flag.SM,\n.flag.SMR,\n.flag.sm,\n.flag.smr {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_180___});\n}\n\n.flag.ST,\n.flag.STP,\n.flag.st,\n.flag.stp {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_181___});\n}\n\n.flag.SA,\n.flag.SAU,\n.flag.sa,\n.flag.sau {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_182___});\n}\n\n.flag.SN,\n.flag.SEN,\n.flag.sn,\n.flag.sen {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_183___});\n}\n\n.flag.RS,\n.flag.SRB,\n.flag.rs,\n.flag.srb {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_184___});\n}\n\n.flag.SC,\n.flag.SYC,\n.flag.sc,\n.flag.syc {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_185___});\n}\n\n.flag.SL,\n.flag.SLE,\n.flag.sl,\n.flag.sle {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_186___});\n}\n\n.flag.SG,\n.flag.SGP,\n.flag.sg,\n.flag.sgp {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_187___});\n}\n\n.flag.SK,\n.flag.SVK,\n.flag.sk,\n.flag.svk {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_188___});\n}\n\n.flag.SI,\n.flag.SVN,\n.flag.si,\n.flag.svn {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_189___});\n}\n\n.flag.SB,\n.flag.SLB,\n.flag.sb,\n.flag.slb {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_190___});\n}\n\n.flag.SO,\n.flag.SOM,\n.flag.so,\n.flag.som {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_191___});\n}\n\n.flag.ZA,\n.flag.ZAF,\n.flag.za,\n.flag.zaf {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_192___});\n}\n\n.flag.KR,\n.flag.KOR,\n.flag.kr,\n.flag.kor {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_193___});\n}\n\n.flag.SS,\n.flag.SSD,\n.flag.ss,\n.flag.ssd {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_194___});\n}\n\n.flag.ES,\n.flag.ESP,\n.flag.es,\n.flag.esp {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_195___});\n}\n\n.flag.LK,\n.flag.LKA,\n.flag.lk,\n.flag.lka {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_196___});\n}\n\n.flag.SD,\n.flag.SDN,\n.flag.sd,\n.flag.sdn {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_197___});\n}\n\n.flag.SR,\n.flag.SUR,\n.flag.sr,\n.flag.sur {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_198___});\n}\n\n.flag.SZ,\n.flag.SWZ,\n.flag.sz,\n.flag.swz {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_199___});\n}\n\n.flag.SE,\n.flag.SWE,\n.flag.se,\n.flag.swe {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_200___});\n}\n\n.flag.CH,\n.flag.CHE,\n.flag.ch,\n.flag.che {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_201___});\n}\n\n.flag.SY,\n.flag.SYR,\n.flag.sy,\n.flag.syr {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_202___});\n}\n\n.flag.TW,\n.flag.TWN,\n.flag.tw,\n.flag.twn {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_203___});\n}\n\n.flag.TJ,\n.flag.TJK,\n.flag.tj,\n.flag.tjk {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_204___});\n}\n\n.flag.TZ,\n.flag.TZA,\n.flag.tz,\n.flag.tza {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_205___});\n}\n\n.flag.TH,\n.flag.THA,\n.flag.th,\n.flag.tha {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_206___});\n}\n\n.flag.TG,\n.flag.TGO,\n.flag.tg,\n.flag.tgo {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_207___});\n}\n\n.flag.TO,\n.flag.TON,\n.flag.to,\n.flag.ton {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_208___});\n}\n\n.flag.TT,\n.flag.TTO,\n.flag.tt,\n.flag.tto {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_209___});\n}\n\n.flag.TN,\n.flag.TUN,\n.flag.tn,\n.flag.tun {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_210___});\n}\n\n.flag.TR,\n.flag.TUR,\n.flag.tr,\n.flag.tur {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_211___});\n}\n\n.flag.TM,\n.flag.TKM,\n.flag.tm,\n.flag.tkm {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_212___});\n}\n\n.flag.TC,\n.flag.TCA,\n.flag.tc,\n.flag.tca {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_213___});\n}\n\n.flag.TV,\n.flag.TUV,\n.flag.tv,\n.flag.tuv {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_214___});\n}\n\n.flag.UG,\n.flag.UGA,\n.flag.ug,\n.flag.uga {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_215___});\n}\n\n.flag.UA,\n.flag.UKR,\n.flag.ua,\n.flag.ukr {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_216___});\n}\n\n.flag.AE,\n.flag.ARE,\n.flag.ae,\n.flag.are,\n.flag.UAE,\n.flag.uae {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_217___});\n}\n\n.flag.GB,\n.flag.GBR,\n.flag.gb,\n.flag.gbr,\n.flag.UK,\n.flag.uk {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_218___});\n}\n\n.flag.US,\n.flag.USA,\n.flag.us,\n.flag.usa {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_219___});\n}\n\n.flag.UY,\n.flag.URY,\n.flag.uy,\n.flag.ury {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_220___});\n}\n\n.flag.UZ,\n.flag.UZB,\n.flag.uz,\n.flag.uzb {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_221___});\n}\n\n.flag.VU,\n.flag.VUT,\n.flag.vu,\n.flag.vut {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_222___});\n}\n\n.flag.VE,\n.flag.VEN,\n.flag.ve,\n.flag.ven {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_223___});\n}\n\n.flag.VN,\n.flag.VNM,\n.flag.vn,\n.flag.vnm {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_224___});\n}\n\n.flag.VG,\n.flag.VGB,\n.flag.vg,\n.flag.vgb {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_225___});\n}\n\n.flag.VI,\n.flag.VIR,\n.flag.vi,\n.flag.vir {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_226___});\n}\n\n.flag.WF,\n.flag.WLF,\n.flag.wf,\n.flag.wlf {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_227___});\n}\n\n.flag.EH,\n.flag.ESH,\n.flag.eh,\n.flag.esh {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_228___});\n}\n\n.flag.YE,\n.flag.YEM,\n.flag.ye,\n.flag.yem {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_229___});\n}\n\n.flag.ZM,\n.flag.ZMB,\n.flag.zm,\n.flag.zmb {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_230___});\n}\n\n.flag.ZW,\n.flag.ZWE,\n.flag.zw,\n.flag.zwe {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_231___});\n}\n\n/*\n * React Fabric\n * @version : 1.0.0\n * @copyright : 2024\n * @author : Adarsh Pastakia\n */\n\n.sb-show-main.sb-show-main.sb-show-main .control-panel {\n margin: -2rem 0 2.5rem;\n}\n\n.sb-show-main.sb-show-main.sb-show-main .control-panel .sb-bar {\n display: none;\n }\n\n.sb-show-main.sb-show-main.sb-show-main .docblock-argstable.docblock-argstable {\n border-spacing: 0.25rem;\n border-collapse: separate;\n border-width: 0;\n}\n\n.sb-show-main.sb-show-main.sb-show-main .docblock-argstable.docblock-argstable thead th {\n color: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n background-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 90%, color(from var(--tint) srgb r g b / 1));\n }\n\n.sb-show-main.sb-show-main.sb-show-main .docblock-argstable.docblock-argstable tbody tr:nth-child(odd) td {\n background-color: color-mix(in lab, var(--fabric-bg) 99%, var(--tint));\n }\n\n.sb-show-main.sb-show-main.sb-show-main .docblock-argstable.docblock-argstable tbody tr:nth-child(even) td {\n background-color: color-mix(in lab, var(--fabric-bg) 96%, var(--tint));\n }\n\n.sb-show-main.sb-show-main.sb-show-main .docblock-argstable.docblock-argstable tbody td p {\n white-space: pre-wrap;\n }\n\n.hidden-anchor {\n height: 0;\n visibility: hidden;\n}\n\nh1.sbdocs-title {\n font-size: 1.5rem;\n font-weight: 500;\n color: var(--primary);\n -webkit-text-decoration: underline 2px;\n text-decoration: underline 2px;\n text-underline-offset: 0.25em;\n}\n\n.sbdocs.sbdocs-content > h3,\n.sb-anchor > h3 {\n font-size: 1.125rem;\n font-weight: 400;\n color: var(--accent);\n -webkit-text-decoration: underline 1px;\n text-decoration: underline 1px;\n text-underline-offset: 0.25em;\n}\n\n.sbdocs.sbdocs.sbdocs-preview,\n .sbdocs.sbdocs.sbdocs-preview .docs-story {\n background-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 99%, color(from var(--tint) srgb r g b / 1));\n }\n\n.sbdocs.sbdocs.sbdocs-preview .sb-bar {\n background-color: var(--fabric-bg);\n }\n\n.sb-bar.sb-bar .tabbutton {\n color: var(--primary);\n}\n\n.sb-bar.sb-bar .tabbutton.tabbutton-active {\n border-bottom-color: var(--primary);\n }\n\n.toc-wrapper.toc-wrapper.toc-wrapper > .toc-list.toc-list.toc-list {\n padding: 0;\n border-left: 0;\n border-inline-start: 1px solid color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 65%, color(from var(--tint) srgb r g b / 1));\n}\n\n.toc-wrapper.toc-wrapper.toc-wrapper > .toc-list.toc-list.toc-list .toc-list-item.toc-list-item.toc-list-item {\n margin: 0;\n margin-inline-start: -1px;\n padding: 0.25rem 1rem;\n border-inline-start: 2px solid transparent;\n }\n\n.toc-wrapper.toc-wrapper.toc-wrapper > .toc-list.toc-list.toc-list .toc-list-item.toc-list-item.toc-list-item::before {\n border-left: 0;\n }\n\n.toc-wrapper.toc-wrapper.toc-wrapper > .toc-list.toc-list.toc-list .toc-list-item.toc-list-item.is-active-li.is-active-li {\n border-color: var(--accent);\n }\n\n.toc-wrapper.toc-wrapper.toc-wrapper > .toc-list.toc-list.toc-list .toc-list-item.toc-list-item.is-active-li.is-active-li > a.is-active-link {\n color: var(--accent);\n }\n\n/*\n * React Fabric\n * @version : 1.0.0\n * @copyright : 2024\n * @author : Adarsh Pastakia\n */\n\n.prismjs.prismjs.prismjs {\n color: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 1) 65%, color(from var(--tint) srgb r g b / 1));\n background: var(--fabric-bg);\n}\n\n.prismjs > code {\n -webkit-user-select: text;\n -moz-user-select: text;\n user-select: text;\n\n font-family: Consolas, Monaco, "Andale Mono", "Ubuntu Mono", monospace;\n font-size: 1em;\n line-height: 1.5;\n text-align: left;\n word-break: normal;\n word-spacing: normal;\n word-wrap: normal;\n white-space: pre;\n}\n\n/* Code blocks */\n\npre[class*="language-"] {\n overflow: auto;\n margin: 0.5em 0;\n padding: 1em;\n}\n\n/* Inline code */\n\n*:not(pre) > code[class*="language-"] {\n padding: 0.1em;\n white-space: normal;\n border-radius: 0.3em;\n}\n\ncode[class*="language-"] .token.important,\n pre[class*="language-"] .token.important,\n code[class*="language-"] .token.bold,\n pre[class*="language-"] .token.bold {\n font-weight: 600;\n }\n\ncode[class*="language-"] .token.italic, pre[class*="language-"] .token.italic {\n font-style: italic;\n }\n\ncode[class*="language-"] .token.entity, pre[class*="language-"] .token.entity {\n cursor: help;\n }\n\n.prismjs {\n position: relative;\n}\n\n.prismjs > div {\n white-space: pre-wrap !important;\n}\n\n.prismjs > div::after {\n position: absolute;\n top: 0;\n inset-inline-end: 0;\n\n padding: 0.25em 0.5em;\n\n font-size: 0.75rem;\n\n opacity: 0.7;\n border-end-start-radius: 8px;\n }\n\n.prismjs > div.language-jsx::after,\n .prismjs > div.language-tsx::after {\n content: "React";\n color: #000;\n background-color: #61dafb;\n }\n\n.prismjs > div.language-js::after {\n content: "JS";\n color: #000;\n background-color: #f7df1e;\n }\n\n.prismjs > div.language-ts::after {\n content: "TS";\n color: #fff;\n background-color: #3178c6;\n }\n\n.prismjs > div.language-css::after {\n content: "CSS";\n color: #fff;\n background-color: #1572b6;\n }\n\n.prismjs > div.language-html::after {\n content: "HTML";\n color: #fff;\n background-color: #e34f26;\n }\n\n.prismjs > div.language-bash::after {\n content: "Bash";\n color: #fff;\n background-color: #64748b;\n }\n\n.prismjs > div.language-json::after {\n content: "JSON";\n color: #fff;\n background-color: #000;\n }\n\n.prismjs > div.language-yaml::after {\n content: "YAML";\n color: #fff;\n background-color: #cb171e;\n }\n\n/*\n * React Fabric\n * @version : 1.0.0\n * @copyright : 2024\n * @author : Adarsh Pastakia\n */\n\nhtml[data-color-scheme="dark"] .prismjs > div[class*="language-"] .token.comment,\n html[data-color-scheme="dark"] .prismjs > div[class*="language-"] .token.block-comment,\n html[data-color-scheme="dark"] .prismjs > div[class*="language-"] .token.prolog,\n html[data-color-scheme="dark"] .prismjs > div[class*="language-"] .token.doctype,\n html[data-color-scheme="dark"] .prismjs > div[class*="language-"] .token.cdata {\n color: #999;\n }\n\nhtml[data-color-scheme="dark"] .prismjs > div[class*="language-"] .token.punctuation {\n color: #ccc;\n }\n\nhtml[data-color-scheme="dark"] .prismjs > div[class*="language-"] .token.tag,\n html[data-color-scheme="dark"] .prismjs > div[class*="language-"] .token.attr-name,\n html[data-color-scheme="dark"] .prismjs > div[class*="language-"] .token.namespace,\n html[data-color-scheme="dark"] .prismjs > div[class*="language-"] .token.deleted {\n color: #e2777a;\n }\n\nhtml[data-color-scheme="dark"] .prismjs > div[class*="language-"] .token.function-name {\n color: #6196cc;\n }\n\nhtml[data-color-scheme="dark"] .prismjs > div[class*="language-"] .token.boolean,\n html[data-color-scheme="dark"] .prismjs > div[class*="language-"] .token.number,\n html[data-color-scheme="dark"] .prismjs > div[class*="language-"] .token.function {\n color: #f08d49;\n }\n\nhtml[data-color-scheme="dark"] .prismjs > div[class*="language-"] .token.property,\n html[data-color-scheme="dark"] .prismjs > div[class*="language-"] .token.class-name,\n html[data-color-scheme="dark"] .prismjs > div[class*="language-"] .token.constant,\n html[data-color-scheme="dark"] .prismjs > div[class*="language-"] .token.symbol {\n color: #f8c555;\n }\n\nhtml[data-color-scheme="dark"] .prismjs > div[class*="language-"] .token.selector,\n html[data-color-scheme="dark"] .prismjs > div[class*="language-"] .token.important,\n html[data-color-scheme="dark"] .prismjs > div[class*="language-"] .token.atrule,\n html[data-color-scheme="dark"] .prismjs > div[class*="language-"] .token.keyword,\n html[data-color-scheme="dark"] .prismjs > div[class*="language-"] .token.builtin {\n color: #cc99cd;\n }\n\nhtml[data-color-scheme="dark"] .prismjs > div[class*="language-"] .token.string,\n html[data-color-scheme="dark"] .prismjs > div[class*="language-"] .token.char,\n html[data-color-scheme="dark"] .prismjs > div[class*="language-"] .token.attr-value,\n html[data-color-scheme="dark"] .prismjs > div[class*="language-"] .token.regex,\n html[data-color-scheme="dark"] .prismjs > div[class*="language-"] .token.variable {\n color: #7ec699;\n }\n\nhtml[data-color-scheme="dark"] .prismjs > div[class*="language-"] .token.operator,\n html[data-color-scheme="dark"] .prismjs > div[class*="language-"] .token.entity,\n html[data-color-scheme="dark"] .prismjs > div[class*="language-"] .token.url {\n color: #67cdcc;\n }\n\nhtml[data-color-scheme="dark"] .prismjs > div[class*="language-"] .token.important,\n html[data-color-scheme="dark"] .prismjs > div[class*="language-"] .token.bold {\n font-weight: 600;\n }\n\nhtml[data-color-scheme="dark"] .prismjs > div[class*="language-"] .token.italic {\n font-style: italic;\n }\n\nhtml[data-color-scheme="dark"] .prismjs > div[class*="language-"] .token.entity {\n cursor: help;\n }\n\nhtml[data-color-scheme="dark"] .prismjs > div[class*="language-"] .token.inserted {\n color: #008000;\n }\n\n/*\n * React Fabric\n * @version : 1.0.0\n * @copyright : 2024\n * @author : Adarsh Pastakia\n */\n\nhtml[data-color-scheme="light"] .prismjs > div[class*="language-"] .token.comment,\n html[data-color-scheme="light"] .prismjs > div[class*="language-"] .token.prolog,\n html[data-color-scheme="light"] .prismjs > div[class*="language-"] .token.doctype,\n html[data-color-scheme="light"] .prismjs > div[class*="language-"] .token.cdata {\n color: #708090;\n }\n\nhtml[data-color-scheme="light"] .prismjs > div[class*="language-"] .token.punctuation {\n color: #999;\n }\n\nhtml[data-color-scheme="light"] .prismjs > div[class*="language-"] .token.namespace {\n opacity: 0.7;\n }\n\nhtml[data-color-scheme="light"] .prismjs > div[class*="language-"] .token.property,\n html[data-color-scheme="light"] .prismjs > div[class*="language-"] .token.tag,\n html[data-color-scheme="light"] .prismjs > div[class*="language-"] .token.boolean,\n html[data-color-scheme="light"] .prismjs > div[class*="language-"] .token.number,\n html[data-color-scheme="light"] .prismjs > div[class*="language-"] .token.constant,\n html[data-color-scheme="light"] .prismjs > div[class*="language-"] .token.symbol,\n html[data-color-scheme="light"] .prismjs > div[class*="language-"] .token.deleted {\n color: #905;\n }\n\nhtml[data-color-scheme="light"] .prismjs > div[class*="language-"] .token.selector,\n html[data-color-scheme="light"] .prismjs > div[class*="language-"] .token.attr-name,\n html[data-color-scheme="light"] .prismjs > div[class*="language-"] .token.string,\n html[data-color-scheme="light"] .prismjs > div[class*="language-"] .token.char,\n html[data-color-scheme="light"] .prismjs > div[class*="language-"] .token.builtin,\n html[data-color-scheme="light"] .prismjs > div[class*="language-"] .token.inserted {\n color: #690;\n }\n\nhtml[data-color-scheme="light"] .prismjs > div[class*="language-"] .token.operator,\n html[data-color-scheme="light"] .prismjs > div[class*="language-"] .token.entity,\n html[data-color-scheme="light"] .prismjs > div[class*="language-"] .token.url,\n html[data-color-scheme="light"] .prismjs > div[class*="language-"] .language-css .token.string,\n html[data-color-scheme="light"] .prismjs > div[class*="language-"] .style .token.string {\n /* This background color was intended by the author of this theme. */\n color: #9a6e3a;\n background: hsl(0deg 0% 100% / 50%);\n }\n\nhtml[data-color-scheme="light"] .prismjs > div[class*="language-"] .token.atrule,\n html[data-color-scheme="light"] .prismjs > div[class*="language-"] .token.attr-value,\n html[data-color-scheme="light"] .prismjs > div[class*="language-"] .token.keyword {\n color: #07a;\n }\n\nhtml[data-color-scheme="light"] .prismjs > div[class*="language-"] .token.function,\n html[data-color-scheme="light"] .prismjs > div[class*="language-"] .token.class-name {\n color: #dd4a68;\n }\n\nhtml[data-color-scheme="light"] .prismjs > div[class*="language-"] .token.regex,\n html[data-color-scheme="light"] .prismjs > div[class*="language-"] .token.important,\n html[data-color-scheme="light"] .prismjs > div[class*="language-"] .token.variable {\n color: #e90;\n }\n`,"",{version:3,sources:["webpack://./.storybook/styles/styles.css","webpack://./packages/core/css/styles.css","webpack://./node_modules/tailwindcss/base.css","webpack://./node_modules/tailwindcss/components.css","webpack://./node_modules/tailwindcss/utilities.css","webpack://./node_modules/tailwindcss/variants.css","webpack://./packages/core/css/reset/index.css","webpack://./packages/core/css/reset/_theme.css","webpack://./packages/core/css/reset/_reset.css","webpack://./packages/core/css/reset/_text.css","webpack://./packages/core/css/reset/_gradients.css","webpack://./packages/mdx/css/styles.css","webpack://./packages/mdx/css/_hljs.light.css","webpack://./packages/mdx/css/_hljs.dark.css","webpack://./packages/mdx/css/_markdown.css","webpack://./packages/core/css/flags.rect.css","webpack://./.storybook/styles/_overrides.css","webpack://./.storybook/styles/_prism.css","webpack://./.storybook/styles/_prism-dark.css","webpack://./.storybook/styles/_prism-light.css"],names:[],mappings:"AAAA;;;;;EAKE;;ACLF;;;;;;;;;;;;;;;;;;;;;EAqBE;;AAEF,qCAAqC;;ACvBrC;AAAA;;EAAc,CAAd;;;CAAc;;AAAd;;;EAAA,sBAAc,EAAd,MAAc;EAAd,eAAc,EAAd,MAAc;EAAd,mBAAc,EAAd,MAAc;EAAd,yHAAc,EAAd,MAAc;AAAA;;AAAd;;EAAA,gBAAc;AAAA;;AAAd;;;;;;;;CAAc;;AAAd;;EAAA,gBAAc,EAAd,MAAc;EAAd,8BAAc,EAAd,MAAc;EAAd,gBAAc,EAAd,MAAc;EAAd,cAAc;KAAd,WAAc,EAAd,MAAc;EAAd,0LAAc,EAAd,MAAc;EAAd,6BAAc,EAAd,MAAc;EAAd,+BAAc,EAAd,MAAc;EAAd,wCAAc,EAAd,MAAc;AAAA;;AAAd;;;CAAc;;AAAd;EAAA,SAAc,EAAd,MAAc;EAAd,oBAAc,EAAd,MAAc;AAAA;;AAAd;;;;CAAc;;AAAd;EAAA,SAAc,EAAd,MAAc;EAAd,cAAc,EAAd,MAAc;EAAd,qBAAc,EAAd,MAAc;AAAA;;AAAd;;CAAc;;AAAd;EAAA,yCAAc;UAAd,iCAAc;AAAA;;AAAd;;CAAc;;AAAd;;;;;;EAAA,kBAAc;EAAd,oBAAc;AAAA;;AAAd;;CAAc;;AAAd;EAAA,cAAc;EAAd,wBAAc;AAAA;;AAAd;;CAAc;;AAAd;;EAAA,mBAAc;AAAA;;AAAd;;;;;CAAc;;AAAd;;;;EAAA,6FAAc,EAAd,MAAc;EAAd,6BAAc,EAAd,MAAc;EAAd,+BAAc,EAAd,MAAc;EAAd,cAAc,EAAd,MAAc;AAAA;;AAAd;;CAAc;;AAAd;EAAA,cAAc;AAAA;;AAAd;;CAAc;;AAAd;;EAAA,cAAc;EAAd,cAAc;EAAd,kBAAc;EAAd,wBAAc;AAAA;;AAAd;EAAA,eAAc;AAAA;;AAAd;EAAA,WAAc;AAAA;;AAAd;;;;CAAc;;AAAd;EAAA,cAAc,EAAd,MAAc;EAAd,qBAAc,EAAd,MAAc;EAAd,yBAAc,EAAd,MAAc;AAAA;;AAAd;;;;CAAc;;AAAd;;;;;EAAA,oBAAc,EAAd,MAAc;EAAd,8BAAc,EAAd,MAAc;EAAd,gCAAc,EAAd,MAAc;EAAd,eAAc,EAAd,MAAc;EAAd,oBAAc,EAAd,MAAc;EAAd,oBAAc,EAAd,MAAc;EAAd,uBAAc,EAAd,MAAc;EAAd,cAAc,EAAd,MAAc;EAAd,SAAc,EAAd,MAAc;EAAd,UAAc,EAAd,MAAc;AAAA;;AAAd;;CAAc;;AAAd;;EAAA,oBAAc;AAAA;;AAAd;;;CAAc;;AAAd;;;;EAAA,0BAAc,EAAd,MAAc;EAAd,6BAAc,EAAd,MAAc;EAAd,sBAAc,EAAd,MAAc;AAAA;;AAAd;;CAAc;;AAAd;EAAA,aAAc;AAAA;;AAAd;;CAAc;;AAAd;EAAA,gBAAc;AAAA;;AAAd;;CAAc;;AAAd;EAAA,wBAAc;AAAA;;AAAd;;CAAc;;AAAd;;EAAA,YAAc;AAAA;;AAAd;;;CAAc;;AAAd;EAAA,6BAAc,EAAd,MAAc;EAAd,oBAAc,EAAd,MAAc;AAAA;;AAAd;;CAAc;;AAAd;EAAA,wBAAc;AAAA;;AAAd;;;CAAc;;AAAd;EAAA,0BAAc,EAAd,MAAc;EAAd,aAAc,EAAd,MAAc;AAAA;;AAAd;;CAAc;;AAAd;EAAA,kBAAc;AAAA;;AAAd;;CAAc;;AAAd;;;;;;;;;;;;;EAAA,SAAc;AAAA;;AAAd;EAAA,SAAc;EAAd,UAAc;AAAA;;AAAd;EAAA,UAAc;AAAA;;AAAd;;;EAAA,gBAAc;EAAd,SAAc;EAAd,UAAc;AAAA;;AAAd;;CAAc;AAAd;EAAA,UAAc;AAAA;;AAAd;;CAAc;;AAAd;EAAA,gBAAc;AAAA;;AAAd;;;CAAc;;AAAd;EAAA,UAAc,EAAd,MAAc;EAAd,cAAc,EAAd,MAAc;AAAA;;AAAd;;EAAA,UAAc,EAAd,MAAc;EAAd,cAAc,EAAd,MAAc;AAAA;;AAAd;;CAAc;;AAAd;;EAAA,eAAc;AAAA;;AAAd;;CAAc;AAAd;EAAA,eAAc;AAAA;;AAAd;;;;CAAc;;AAAd;;;;;;;;EAAA,cAAc,EAAd,MAAc;EAAd,sBAAc,EAAd,MAAc;AAAA;;AAAd;;CAAc;;AAAd;;EAAA,eAAc;EAAd,YAAc;AAAA;;AAAd,wEAAc;AAAd;EAAA,aAAc;AAAA;AAAd;AAAA,wBAAc;GAAd,qBAAc;QAAd,gBAAc;AAAd,sBAAc;AAAd,qBAAc;AAAd,iBAAc;AAAd,kBAAc;AAAd,mBAAc;AAAd,sBAAc;AAAd,sBAAc;AAAd,qBAAc;AAAd,eAAc;AAAd,mBAAc;AAAd,sBAAc;AAAA;AAAd;AAAA,8BAAc;AAAd,mBAAc;AAAd,4CAAc;AAAd,2BAAc;AAAd,4BAAc;AAAd,wBAAc;AAAd,2GAAc;AAAd,yGAAc;AAAd,iFAAc;AAAd;AAAc;AAAd;AAAA,cAAc;AAAd;AAAc;AAAd;AAAA,cAAc;AAAd;AAAc;AAAd;AAAA;AAAc;AAAd;AAAA,iBAAc;AAAd;AAAc;AAAd;AAAA;AAAc;AAAd;AAAA,cAAc;AAAd;AAAc;AAAd;AAAA,yDAAc;AAAd,wCAAc;AAAd,4BAAc;AAAd,4BAAc;AAAd,qBAAc;AAAd,iCAAc;QAAd;AAAc;AAAd;AAAA,yBAAc;AAAd,4BAAc;AAAd,wBAAc;AAAd,wBAAc;AAAd,sBAAc;AAAd,iCAAc;QAAd;AAAc;AAAd;AAAA,wBAAc;GAAd,qBAAc;QAAd,gBAAc;AAAd,UAAc;AAAd,iCAAc;QAAd,yBAAc;AAAd,qBAAc;AAAd,sBAAc;AAAd,6BAAc;AAAd,yBAAc;GAAd,sBAAc;QAAd,iBAAc;AAAd,cAAc;AAAd,YAAc;AAAd,WAAc;AAAd,cAAc;AAAd,sBAAc;AAAd,qBAAc;AAAd,iBAAc;AAAd;AAAc;AAAd;AAAA;AAAc;AAAd;AAAA;AAAc;AAAd;AAAA,8BAAc;AAAd,mBAAc;AAAd,4CAAc;AAAd,2BAAc;AAAd,4BAAc;AAAd,wBAAc;AAAd,2GAAc;AAAd,yGAAc;AAAd;AAAc;AAAd;AAAA,yBAAc;AAAd,8BAAc;AAAd,0BAAc;AAAd,2BAAc;AAAd;AAAc;AAAd;AAAA,yDAAc;AAAA;AAAd;;AAAA;AAAA,wBAAc;GAAd,qBAAc;QAAd;AAAc;AAAA;AAAd;AAAA,yDAAc;AAAA;AAAd;;AAAA;AAAA,wBAAc;GAAd,qBAAc;QAAd;AAAc;AAAA;AAAd;AAAA,yBAAc;AAAd;AAAc;AAAd;AAAA,yDAAc;AAAd,yBAAc;AAAd,8BAAc;AAAd,0BAAc;AAAd,2BAAc;AAAd,4BAAc;AAAA;AAAd;;AAAA;AAAA,wBAAc;GAAd,qBAAc;QAAd;AAAc;AAAA;AAAd;AAAA,yBAAc;AAAd;AAAc;AAAd;AAAA,iBAAc;AAAd,qBAAc;AAAd,eAAc;AAAd,gBAAc;AAAd,UAAc;AAAd,gBAAc;AAAd;AAAc;AAAd;AAAA,6BAAc;AAAd;AAAc;AAAd;AAAA,wBAAc;AAAd,wBAAc;AAAd,mBAAc;AAAd,mBAAc;AAAd,cAAc;AAAd,cAAc;AAAd,cAAc;AAAd,eAAc;AAAd,eAAc;AAAd,aAAc;AAAd,aAAc;AAAd,kBAAc;AAAd,sCAAc;AAAd,8BAAc;AAAd,6BAAc;AAAd,4BAAc;AAAd,eAAc;AAAd,oBAAc;AAAd,sBAAc;AAAd,uBAAc;AAAd,wBAAc;AAAd,kBAAc;AAAd,2BAAc;AAAd,4BAAc;AAAd,sCAAc;AAAd,kCAAc;AAAd,2BAAc;AAAd,sBAAc;AAAd,8BAAc;AAAd,YAAc;AAAd,kBAAc;AAAd,gBAAc;AAAd,iBAAc;AAAd,kBAAc;AAAd,cAAc;AAAd,gBAAc;AAAd,aAAc;AAAd,mBAAc;AAAd,qBAAc;AAAd,2BAAc;AAAd,yBAAc;AAAd,0BAAc;AAAd,2BAAc;AAAd,uBAAc;AAAd,wBAAc;AAAd,yBAAc;AAAd,sBAAc;AAAd,oBAAc;AAAd,sBAAc;AAAd,qBAAc;AAAd;AAAc;AAAd;AAAA,wBAAc;AAAd,wBAAc;AAAd,mBAAc;AAAd,mBAAc;AAAd,cAAc;AAAd,cAAc;AAAd,cAAc;AAAd,eAAc;AAAd,eAAc;AAAd,aAAc;AAAd,aAAc;AAAd,kBAAc;AAAd,sCAAc;AAAd,8BAAc;AAAd,6BAAc;AAAd,4BAAc;AAAd,eAAc;AAAd,oBAAc;AAAd,sBAAc;AAAd,uBAAc;AAAd,wBAAc;AAAd,kBAAc;AAAd,2BAAc;AAAd,4BAAc;AAAd,sCAAc;AAAd,kCAAc;AAAd,2BAAc;AAAd,sBAAc;AAAd,8BAAc;AAAd,YAAc;AAAd,kBAAc;AAAd,gBAAc;AAAd,iBAAc;AAAd,kBAAc;AAAd,cAAc;AAAd,gBAAc;AAAd,aAAc;AAAd,mBAAc;AAAd,qBAAc;AAAd,2BAAc;AAAd,yBAAc;AAAd,0BAAc;AAAd,2BAAc;AAAd,uBAAc;AAAd,wBAAc;AAAd,yBAAc;AAAd,sBAAc;AAAd,oBAAc;AAAd,sBAAc;AAAd,qBAAc;AAAd;AAAc;AACd;;ACDA;AAAA;AAAA;AAAoB;AAApB;;AAAA;AAAA;AAAoB;AAAA;AAApB;;AAAA;AAAA;AAAoB;AAAA;AAApB;;AAAA;AAAA;AAAoB;AAAA;AAApB;;AAAA;AAAA;AAAoB;AAAA;AAApB;;AAAA;AAAA;AAAoB;AAAA;AAApB;;AAAA;AAAA;AAAoB;AAAA;AACpB;;ACDA;AAAA;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,SAAmB;AAAnB;AAAmB;AAAnB;AAAA,SAAmB;AAAnB;AAAmB;AAAnB;AAAA,QAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA,mBAAmB;AAAnB;AAAmB;AAAnB;AAAA,iBAAmB;AAAnB;AAAmB;AAAnB;AAAA,iBAAmB;AAAnB;AAAmB;AAAnB;AAAA,gBAAmB;AAAnB;AAAmB;AAAnB;AAAA,eAAmB;AAAnB;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA,mBAAmB;AAAnB;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA,gBAAmB;AAAnB;AAAmB;AAAnB;AAAA,eAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,gBAAmB;AAAnB,oBAAmB;AAAnB,4BAAmB;AAAnB;AAAmB;AAAnB;AAAA,gBAAmB;AAAnB,oBAAmB;AAAnB,4BAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,aAAmB;AAAnB;AAAmB;AAAnB;AAAA,WAAmB;AAAnB;AAAmB;AAAnB;AAAA,WAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,8BAAmB;AAAnB,8BAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA,qBAAmB;AAAnB;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA,wBAAmB;AAAnB;AAAmB;AAAnB;AAAA,mBAAmB;AAAnB;AAAmB;AAAnB;AAAA,gBAAmB;AAAnB,gBAAmB;AAAnB;AAAmB;AAAnB;AAAA,gBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;;AAAA;AAAA,2BAAmB;AAAnB;AAAmB;;AAAnB;AAAA,eAAmB;AAAnB;AAAmB;AAAA;AAAnB;AAAA;AAAmB;AAAnB;;AAAA;AAAA;AAAmB;;AAAnB;AAAA;AAAmB;AAAA;AAAnB;AAAA;AAAmB;AAAnB;;AAAA;AAAA;AAAmB;AAAA;AAAnB;AAAA;AAAmB;AAAnB;;AAAA;AAAA;AAAmB;AAAA;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,yBAAmB;GAAnB,sBAAmB;QAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,wBAAmB;GAAnB,qBAAmB;QAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,wBAAmB;AAAnB,kEAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,gBAAmB;AAAnB,uBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,+BAAmB;AAAnB;AAAmB;AAAnB;AAAA,4BAAmB;AAAnB;AAAmB;AAAnB;AAAA,8BAAmB;AAAnB;AAAmB;AAAnB;AAAA,uCAAmB;AAAnB;AAAmB;AAAnB;AAAA,8BAAmB;AAAnB;AAAmB;AAAnB;AAAA,2BAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,uFAAmB;AAAnB,mFAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oFAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;GAAnB;AAAmB;AAAnB;AAAA,oBAAmB;GAAnB;AAAmB;AAAnB;AAAA,mBAAmB;GAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,iBAAmB;AAAnB;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA,qBAAmB;AAAnB;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA,iBAAmB;AAAnB;AAAmB;AAAnB;AAAA,iBAAmB;AAAnB;AAAmB;AAAnB;AAAA,gBAAmB;AAAnB;AAAmB;AAAnB;AAAA,qBAAmB;AAAnB;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA,qBAAmB;AAAnB;AAAmB;AAAnB;AAAA,mBAAmB;AAAnB;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA,iBAAmB;AAAnB;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA,gBAAmB;AAAnB;AAAmB;AAAnB;AAAA,gBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA,eAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA,mBAAmB;AAAnB;AAAmB;AAAnB;AAAA,eAAmB;AAAnB;AAAmB;AAAnB;AAAA,mBAAmB;AAAnB;AAAmB;AAAnB;AAAA,iBAAmB;AAAnB;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kCAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,+BAAmB;AAAnB;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kFAAmB;AAAnB,8FAAmB;AAAnB;AAAmB;AAAnB;AAAA,mDAAmB;AAAnB,6DAAmB;AAAnB;AAAmB;AAAnB;AAAA,+CAAmB;AAAnB,yDAAmB;AAAnB;AAAmB;AAAnB;AAAA,uFAAmB;AAAnB,mGAAmB;AAAnB;AAAmB;AAAnB;AAAA,qFAAmB;AAAnB,iGAAmB;AAAnB;AAAmB;AAAnB;AAAA,6CAAmB;AAAnB,uDAAmB;AAAnB;AAAmB;AAAnB;AAAA,6CAAmB;AAAnB,uDAAmB;AAAnB;AAAmB;AAAnB;AAAA,wFAAmB;AAAnB,oGAAmB;AAAnB;AAAmB;AAAnB;AAAA,uCAAmB;AAAnB;AAAmB;AAAnB;AAAA,8BAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,2GAAmB;AAAnB,yGAAmB;AAAnB;AAAmB;AAAnB;AAAA,2GAAmB;AAAnB,yGAAmB;AAAnB;AAAmB;AAAnB;AAAA,2GAAmB;AAAnB,yGAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA,yBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,6BAAmB;AAAnB,+QAAmB;QAAnB;AAAmB;AAAnB;AAAA,8BAAmB;AAAnB,+QAAmB;QAAnB;AAAmB;AAAnB;AAAA,6BAAmB;AAAnB,+QAAmB;QAAnB;AAAmB;AAAnB;AAAA,8BAAmB;AAAnB,+QAAmB;QAAnB;AAAmB;AAAnB;AAAA,gKAAmB;AAAnB,wJAAmB;AAAnB,iLAAmB;AAAnB,wDAAmB;AAAnB;AAAmB;AAAnB;AAAA,wBAAmB;AAAnB,wDAAmB;AAAnB;AAAmB;AAAnB;AAAA,+FAAmB;AAAnB,wDAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,uBAAmB;AAAnB,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB,YAAmB;AAAnB,cAAmB;AAAnB,aAAmB;AAAnB,aAAmB;AAAnB;AAAA,QAAmB;AAAnB;AAAmB;AAAnB;AAAA,YAAmB;AAAnB;AAAmB;AAAnB;AAAA,WAAmB;AAAnB;AAAmB;AAAnB;AAAA,SAAmB;AAAnB;AAAmB;AAAnB;AAAA,QAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AACnB;;ACDA;AAAA;AAAA,0BAAkB;AAAlB;AAAkB;AAAlB;AAAA,0BAAkB;AAAlB;AAAkB;AAAlB;AAAA,0BAAkB;AAAlB;AAAkB;AAAlB;AAAA,0BAAkB;AAAlB;AAAkB;AAAlB;AAAA,0BAAkB;AAAlB;AAAkB;AAAlB;AAAA,0BAAkB;AAAlB;AAAkB;AAAlB;AAAA,0BAAkB;AAAlB;AAAkB;AAAlB;AAAA,0BAAkB;AAAlB;AAAkB;AAAlB;AAAA,0BAAkB;AAAlB;AAAkB;AAAlB;AAAA,0BAAkB;AAAlB;AAAkB;AAAlB;AAAA,0BAAkB;AAAlB;AAAkB;AAAlB;AAAA,0BAAkB;AAAlB;AAAkB;AAAlB;AAAA,0BAAkB;AAAlB;AAAkB;AAAlB;AAAA,0BAAkB;AAAlB;AAAkB;AAAlB;AAAA,0BAAkB;AAAlB;AAAkB;AAAlB;AAAA,0BAAkB;AAAlB;AAAkB;AAAlB;AAAA,0BAAkB;AAAlB;AAAkB;AAAlB;AAAA,0BAAkB;AAAlB;AAAkB;AAAlB;AAAA,0BAAkB;AAAlB;AAAkB;AAAlB;AAAA,0BAAkB;AAAlB,sBAAkB;AAAlB;AAAkB;AAAlB;AAAA,0BAAkB;AAAlB,kBAAkB;AAAlB;AAAkB;AAAlB;AAAA,0BAAkB;AAAlB,kBAAkB;AAAlB;AAAkB;AAAlB;AAAA,0BAAkB;AAAlB,kBAAkB;AAAlB;AAAkB;AAAlB;AAAA,0BAAkB;AAAlB,kBAAkB;AAAlB;AAAkB;AAAlB;AAAA,0BAAkB;AAAlB,kBAAkB;AAAlB;AAAkB;AAAlB;AAAA,0BAAkB;AAAlB,kBAAkB;AAAlB;AAAkB;AAAlB;AAAA,0BAAkB;AAAlB,wBAAkB;AAAlB,wDAAkB;AAAlB;AAAkB;AAAlB;AAAA,0BAAkB;AAAlB;AAAkB;AAAlB;AAAA,0BAAkB;AAAlB;AAAkB;AAAlB;AAAA,0BAAkB;AAAlB;AAAkB;AAAlB;AAAA,0BAAkB;AAAlB,iBAAkB;AAAlB;AAAkB;AAAlB;AAAA,0BAAkB;AAAlB;AAAkB;AAAlB;AAAA,0BAAkB;AAAlB;AAAkB;AAAlB;AAAA,0BAAkB;AAAlB;AAAkB;AAAlB;AAAA,0BAAkB;AAAlB;AAAkB;AAAlB;AAAA,0BAAkB;AAAlB;AAAkB;AAAlB;AAAA,0BAAkB;AAAlB,kBAAkB;AAAlB;AAAkB;AAAlB;AAAA,0BAAkB;AAAlB,kBAAkB;AAAlB;AAAkB;AAAlB;AAAA;AAAkB;AAAlB;AAAA,oBAAkB;AAAlB;AAAkB;AAAlB;AAAA,0CAAkB;AAAlB;AAAkB;AAAlB;AAAA,wCAAkB;AAAlB;AAAkB;AAAlB;AAAA;AAAkB;AAAlB;AAAA,oBAAkB;AAAlB;AAAkB;AAAlB;AAAA;AAAkB;AAAlB;AAAA,kBAAkB;AAAlB;AAAkB;AAAlB;AAAA,kBAAkB;AAAlB;AAAkB;AAAlB;AAAA,kBAAkB;AAAlB;AAAkB;AAAlB;AAAA,kBAAkB;AAAlB;AAAkB;AAAlB;AAAA,kBAAkB;AAAlB;AAAkB;AAAlB;AAAA;AAAkB;AAAlB;AAAA;AAAkB;AAAlB;AAAA,oBAAkB;AAAlB;AAAkB;AAAlB;AAAA,oBAAkB;AAAlB;AAAkB;AAAlB;AAAA,oBAAkB;AAAlB;AAAkB;AAAlB;AAAA;AAAkB;AAAlB;AAAA;AAAkB;AAAlB;AAAA;AAAkB;AAAlB;AAAA;AAAkB;AAAlB;AAAA,oBAAkB;AAAlB;AAAkB;AAAlB;AAAA,sBAAkB;AAAlB;AAAkB;AAAlB;AAAA,2GAAkB;AAAlB,yGAAkB;AAAlB;AAAkB;AAAlB;AAAA;AAAkB;AAAlB;AAAA,2GAAkB;AAAlB,yGAAkB;AAAlB;AAAkB;AAAlB;AAAA;AAAkB;AAAlB;AAAA;AAAkB;AAAlB;AAAA,kBAAkB;AAAlB;AAAkB;AAAlB;AAAA;AAAkB;AAAlB;AAAA;AAAkB;AAAlB;AAAA;AAAkB;AAAlB;AAAA;AAAkB;AAAlB;AAAA;AAAkB;AAAlB;AAAA,2GAAkB;AAAlB,yGAAkB;AAAlB;AAAkB;AAAlB;AAAA;AAAkB;AAAlB;AAAA,kBAAkB;AAAlB;AAAkB;AAAlB;AAAA,kBAAkB;AAAlB;AAAkB;AAAlB;AAAA,kBAAkB;AAAlB;AAAkB;AAAlB;AAAA,oBAAkB;AAAlB;AAAkB;AAAlB;AAAA;AAAkB;AAAlB;AAAA;AAAkB;AAAlB;AAAA;AAAkB;AAAlB;AAAA;AAAkB;AAAlB;;AAAA;AAAA;AAAkB;AAAA;AAAlB;;AAAA;AAAA;AAAkB;AAAA;AAAlB;;AAAA;AAAA;AAAkB;;AAAlB;AAAA;AAAkB;AAAA;AAAlB;;AAAA;AAAA;AAAkB;AAAA;AAAlB;;AAAA;AAAA;AAAkB;AAAA;AAAlB;AAAA,uBAAkB;AAAlB;AAAkB;AAAlB;AAAA,sBAAkB;AAAlB;AAAkB;AAAlB;AAAA;AAAkB;AAAlB;AAAA,0BAAkB;AAAlB,2BAAkB;AAAlB;AAAkB;AAAlB;AAAA,0BAAkB;AAAlB,0BAAkB;AAAlB;AAAkB;AAAlB;AAAA;AAAkB;AAAlB;AAAA,uBAAkB;AAAlB;AAAkB;AAAlB;AAAA,sBAAkB;AAAlB;AAAkB;AAAlB;AAAA;AAAkB;AAAlB;AAAA,0BAAkB;AAAlB,2BAAkB;AAAlB;AAAkB;AAAlB;AAAA,0BAAkB;AAAlB,0BAAkB;AAAlB;AAAkB;AAAlB;;AAAA;AAAA,sBAAkB;AAAlB,8BAAkB;AAAlB;AAAkB;AAAA;AAClB;;ACDA;;;;;;;;;;;;;;;;;;;;;EAqBE;;ACrBF;;;;;;;;;;;;;;;;;;;;;EAqBE;;AAEF;EACE;IACE,oBAAgC;IAChC,sBAAkC;IAClC,6DAA6D;IAC7D,0BAA0B;IAC1B,wBAAwB;;IAExB,mBAAmB;EACrB;;EAEA;IACE,oBAAgC;IAChC,sBAAkC;IAClC,gEAAgE;IAChE,sEAAsE;IACtE,wBAAwB;;IAExB,kBAAkB;EACpB;AACF;;AAEA;EACE;IACE,gBAA4B;IAC5B,gBAA4B;IAC5B,kBAAwC;IACxC,kBAAwC;IACxC,mBAA0C;IAC1C,kBAAwC;IACxC,eAAkC;IAClC,gBAAoC;IACpC,eAAkC;IAClC,gBAAoC;IACpC,gBAAoC;IACpC,eAAkC;IAClC,iBAAsC;IACtC,gBAAoC;IACpC,gBAAoC;IACpC,eAAkC;IAClC,eAAkC;IAClC,iBAAsC;IACtC,kBAAwC;IACxC,kBAAwC;;IAExC,wBAAwB;IACxB,kBAAsC;IACtC,iBAAoC;IACpC,eAAoC;;IAEpC,qBAAqB;IACrB,mBAAmB;IACnB,uBAAuB;IACvB,gBAAgB;;IAEhB,aAAa;IACb,oBAAoB;IACpB,eAAe;IACf,oBAAoB;IACpB,eAAe;IACf,eAAe;IACf,qBAAqB;EACvB;;EAEA;IACE,6DAA6D;IAC7D,sEAAsE;EACxE;;EAEA;IACE,qBAAqB;IACrB,eAAe;IACf,mBAAmB;EACrB;;EAEA;IACE,qBAAqB;IACrB,kBAAkB;IAClB,sBAAsB;EACxB;;EAEA;IACE,qBAAqB;IACrB,kBAAkB;IAClB,sBAAsB;EACxB;AACF;;AC7GA;;;;;;;;;;;;;;;;;;;;;EAqBE;;AAEF;EACE;;IAEE,YAAY;IACZ,aAAa;IACb,SAAS;IACT,UAAU;;IAEV,mCAAmC;IACnC,kCAAkC;IAClC,wBAAwB;EAC1B;;EAEA;IACE,0LAAmC;IACnC,eAAe;IACf,gBAAgB;EAClB;;EAEA;;;;;;;;;;;;;;;;;;IAkBE,SAAS;IACT,UAAU;EACZ;;EAEA;IACE,sBAAsB;EACxB;IAGE;;;MAGE,yBAAiB;SAAjB,sBAAiB;cAAjB,iBAAiB;IACnB;;IAEA;MACE,UAAU;MACV,WAAW;IACb;;IAEA;MACE,sEAAsE;IACxE;;IAEA;MACE,sEAAsE;IAiBxE;;MAfE;QACE;;;;SAIC;MACH;;MAEA;QACE;;;;SAIC;MACH;;IAGF;MACE,kCAAkC;IACpC;;IAEA;MACE,eAAe;IACjB;MAGE;;QAEE,UAAU;QACV,WAAW;MACb;MAIA;;QAEE,QAAQ;QACR,SAAS;MACX;;IAGF;MACE,UAAU;IACZ;;IAEA;MACE,kHAA6B;IAC/B;;IAFA;MACE,kHAA6B;IAC/B;;IAEA;MACE,wEAAwE;IAC1E;;IAFA;MACE,wEAAwE;IAC1E;;IAEA;;;MAGE,wCAAwC;MACxC,+BAA+B;;MAE/B,sBAAsB;MACtB,6BAA6B;IAC/B;;IAEA;;MAEE,qBAAqB;MACrB,kBAAkB;IACpB;;IAEA;MACE,sBAAsB;;MAEtB,YAAY;MACZ,cAAc;;MAEd,gBAAgB;MAChB,SAAS;MACT,qFAAqF;MACrF;4DACsD;IAexD;;MAbE;QACE,sBAAsB;;QAEtB,qBAAqB;;QAErB,iBAAiB;;QAEjB,SAAS;QACT;yEACiE;QACjE;8DACsD;MACxD;;IAGF;MACE,eAAe;IACjB;;IAEA;MACE,eAAe;IACjB;;IAEA;MACE,aAAa;MACb,sGAAsG;IACxG;;IAEA;MAEI;AAAA;AAAa;IAgBjB;;MAbE;QAEI;AAAA;AAAa;;QAQb;;;;;AAAA;AAAa;MAEjB;;IAGF;MAEI;AAAA;AAAa;IAgBjB;;MAbE;QAEI;AAAA;AAAa;;QAQb;;;;;AAAA;AAAa;MAEjB;;IAGF;MAEI;AAAA;AAAa;IAgBjB;;MAbE;QAEI;AAAA;AAAa;;QAQb;;;;;AAAA;AAAa;MAEjB;;IAGF;MAEI;AAAA;AAAa;IAgBjB;;MAbE;QAEI;AAAA;AAAa;;QAQb;;;;;AAAA;AAAa;MAEjB;;IAGF;MAEI;AAAA;AAAa;IAgBjB;;MAbE;QAEI;AAAA;AAAa;;QAQb;;;;;AAAA;AAAa;MAEjB;;IAGF;MAGI;;AAAA;AAAa;;MAQb;;;;;AAAA;AAAa;IAEjB;;IAEA;MAOI;;;;;;AAAA;AAAa;IAEjB;;IAEA;MAMI;;;;;AAAA;AAAa;IAEjB;;IAEA;MAKI;;;;AAAA;AAAa;IAEjB;;IAEA;MAII;;;AAAA;AAAa;IAEjB;;IAEA;MAGI;;AAAA;AAAa;IAEjB;;IAEA;MAEI;AAAA;AAAa;IAEjB;;EAGF;IACE,gCAAgC;EAKlC;;IAHE;MACE,wBAAwB;IAC1B;;EAGF;IACE,gCAAgC;EAKlC;;IAHE;MACE,yBAAyB;IAC3B;;EAGF;IACE,sBAAsB;EACxB;;EAEA;IACE,oBAAoB;EACtB;;EAEA;IACE,kBAAkB;EACpB;;EAEA;IACE,mBAAmB;EACrB;;EAEA;;;;;;;;;IASE,uBAAuB;EACzB;AACF;;ACtZA;;;;;;;;;;;;;;;;;;;;;EAqBE;;AAEF;EACE;IACE,iBAAiB;IACjB,gBAAgB;EAClB;;EAEA;IACE,eAAe;IACf,gBAAgB;EAClB;;EAEA;IACE,kBAAkB;IAClB,gBAAgB;EAClB;;EAEA;IACE,iBAAiB;IACjB,gBAAgB;EAClB;;EAEA;IACE,kBAAkB;IAClB,gBAAgB;EAClB;;EAEA;IACE,eAAe;IACf,gBAAgB;EAClB;;EAEA;IACE,gBAAgB;EAMlB;;IAJE;;MAEE,gBAAgB;IAClB;IAIA;;MAEE,gBAAgB;IAClB;;EAGF;;IAEE,SAAS;IACT,yBAAyB;IACzB,4BAA4B;EAM9B;;IAJE;MACE,cAAc;MACd,cAAc;IAChB;;EAGF;IACE,gBAAgB;EAClB;;EAEA;IACE,mBAAmB;EACrB;;EAEA;IACE,aAAa;IACb,mBAAmB;IACnB,gBAAgB;IAChB,kBAAkB;EAyCpB;;IAvCE;MACE,gBAAgB;MAChB,eAAe;;MAEf,cAAc;MACd,eAAe;MACf,mBAAmB;;MAEnB,kBAAkB;MAClB,oHAA8B;MAC9B,uBAAuB;MACvB,mBAAmB;IACrB;;IAEA;MACE,eAAe;MACf,SAAS;MACT,UAAU;IACZ;;IAEA;MACE,eAAe;IAKjB;;MAHE;QACE,aAAa;MACf;MAIA;;QAEE,sEAAsE;MACxE;;MAEA;;QAEE,sEAAsE;MACxE;;EAIJ;IACE,YAAY;;IAEZ,qBAAqB;;IAErB,cAAc;;IAEd,sHAA+B;IAC/B,6CAAqC;YAArC,qCAAqC;;IAErC,uEAAuE;EACzE;;EAEA;IACE,qBAAqB;IACrB,yBAAyB;IACzB,+HAA0C;EAC5C;;EAEA;IACE,eAAe;IACf,yBAAiB;OAAjB,sBAAiB;YAAjB,iBAAiB;;IAEjB,gBAAgB;IAChB,sHAA+B;IAC/B,yCAAiC;YAAjC,iCAAiC;EAKnC;;IAHE;MACE,wCAAgC;cAAhC,gCAAgC;IAClC;;EAGF;;IAEE,sEAAsE;EACxE;;EAEA;;IAEE,sEAAsE;EACxE;AACF;;AClLA;;;;;;;;;;;;;;;;;;;;;EAqBE;;AAEF;EACE;IACE;;;;;;KAMC;IACD;;;;;;KAMC;IACD;;;;;;;;;KASC;EACH;AACF;;AClDA;;;;;;;;;;;;;;;;;;;;;EAqBE;;ACrBF,6CAA6C;;AAE3C;IACE,gBAAgB;IAChB,cAAc;IACd,YAAY;EACd;;AAEA;IACE,gBAAgB;EAClB;;AAEA;;;;;;;;;CASD;;AACC;;;;;;;IAOE,gCAAgC;IAChC,cAAc;EAChB;;AAEA;;;;IAIE,+BAA+B;IAC/B,cAAc;EAChB;;AAEA;;;;;;;;;;IAUE,iCAAiC;IACjC,cAAc;EAChB;;AAEA;;;IAGE,+BAA+B;IAC/B,cAAc;EAChB;;AAEA;;IAEE,iCAAiC;IACjC,cAAc;EAChB;;AAEA;;;IAGE,gCAAgC;IAChC,cAAc;EAChB;;AAEA;;;;IAIE,mCAAmC;IACnC,cAAc;EAChB;;AAEA;IACE,gDAAgD;IAChD,cAAc;EAChB;;AAEA;IACE,iBAAiB;;IAEjB,uCAAuC;IACvC,cAAc;EAChB;;AAEA;IACE,oCAAoC;IACpC,cAAc;EAChB;;AAEA;IACE,kBAAkB;;IAElB,sCAAsC;IACtC,cAAc;EAChB;;AAEA;IACE,iBAAiB;;IAEjB,oCAAoC;IACpC,cAAc;EAChB;;AAEA;IACE,wCAAwC;IACxC,cAAc;IACd,yBAAyB;EAC3B;;AAEA;IACE,uCAAuC;IACvC,cAAc;IACd,yBAAyB;EAC3B;;AAEA;;;;;;IAME,sBAAsB;EACxB;;ACrIF,6CAA6C;;AAE3C;IACE,gBAAgB;IAChB,cAAc;IACd,YAAY;EACd;;AAEA;IACE,gBAAgB;EAClB;;AAEA;;;;;;;;;CASD;;AACC;;;;;;;IAOE,gCAAgC;IAChC,cAAc;EAChB;;AAEA;;;;IAIE,+BAA+B;IAC/B,cAAc;EAChB;;AAEA;;;;;;;;;;IAUE,iCAAiC;IACjC,cAAc;EAChB;;AAEA;;;IAGE,+BAA+B;IAC/B,cAAc;EAChB;;AAEA;;IAEE,iCAAiC;IACjC,cAAc;EAChB;;AAEA;;;IAGE,gCAAgC;IAChC,cAAc;EAChB;;AAEA;;;;IAIE,mCAAmC;IACnC,cAAc;EAChB;;AAEA;IACE,gDAAgD;IAChD,cAAc;EAChB;;AAEA;IACE,iBAAiB;;IAEjB,uCAAuC;IACvC,cAAc;EAChB;;AAEA;IACE,oCAAoC;IACpC,cAAc;EAChB;;AAEA;IACE,kBAAkB;;IAElB,sCAAsC;IACtC,cAAc;EAChB;;AAEA;IACE,iBAAiB;;IAEjB,oCAAoC;IACpC,cAAc;EAChB;;AAEA;IACE,wCAAwC;IACxC,cAAc;IACd,yBAAyB;EAC3B;;AAEA;IACE,uCAAuC;IACvC,cAAc;IACd,yBAAyB;EAC3B;;AAEA;;;;;;IAME,sBAAsB;EACxB;;ACrIF;;;;;;;;;;;;;;;;;;;;;EAqBE;;AAGA;IACE,SAAS;;IAET;uDACmD;IACnD,eAAe;IACf,gBAAgB;IAChB,8BAAsB;OAAtB,2BAAsB;YAAtB,sBAAsB;IACtB,qBAAqB;EACvB;;AAEA;IACE,qBAAqB;IACrB,2BAA2B;IAC3B,kBAAkB;EACpB;;AAEA;;;;;;IAME,YAAY;;IAEZ,qBAAqB;;IAErB,WAAW;IACX,YAAY;;IAEZ,8BAA8B;;IAE9B,2DAA8gB;;YAA9gB,mDAA8gB;EAChhB;;AAEA;;;IAGE,cAAc;EAChB;;AAEA;IACE,kBAAkB;EACpB;;AAEA;IACE,wBAAwB;EAC1B;;AAEA;IACE,cAAc;IACd,qBAAqB;IACrB,6BAA6B;EAC/B;;AAEA;;IAEE,gBAAgB;EAClB;;AAEA;IACE,yCAAiC;YAAjC,iCAAiC;IACjC,mBAAmB;EACrB;;AAEA;;IAEE,gBAAgB;EAClB;;AAEA;IACE,kBAAkB;EACpB;;AAGE;AAAA,kBAAqB;AAArB;AAAqB;;AAGvB;IACE,cAAc;EAChB;;AAEA;;IAEE,kBAAkB;IAClB,cAAc;IACd,cAAc;IACd,wBAAwB;EAC1B;;AAEA;IACE,eAAe;EACjB;;AAEA;IACE,WAAW;EACb;;AAEA;IACE,uBAAuB;IACvB,eAAe;IACf,kBAAkB;IAElB,kBAAe;IAAf,mKAAe;EACjB;;AAEA;;;;IAIE,sBAAsB;IACtB,cAAc;EAChB;;AAEA;IACE,gBAAgB;EAClB;;AAEA;IACE,gBAAgB;;IAEhB,uBAAuB;IACvB,cAAc;IACd,cAAc;IACd,UAAU;;IAEV,uBAAuB;IACvB,SAAS;IACT,mDAAmD;IAEnD,kBAAe;IAAf,mKAAe;EACjB;;AAEA;IACE,0BAA0B;EAC5B;;AAEA;IACE,WAAW;IACX,cAAc;EAChB;;AAEA;IACE,WAAW;IACX,WAAW;IACX,cAAc;EAChB;;AAEA;IACE,cAAc;IACd,cAAc;IACd,mBAAmB;IACnB,yBAAyB;;IAEzB,uBAAkB;;IAAlB,kBAAkB;IAClB,eAAe;IACf,gBAAgB;;IAEhB,SAAS;EACX;;AAEA;;;;;;IAME,gBAAgB;IAChB,gBAAgB;IAChB,iBAAiB;EAKnB;;AAHE;MACE,aAAa;IACf;;AAUA;MACE,aAAa;IACf;;AAGF;IACE,qBAAqB;IACrB,cAAc;IACd,gBAAgB;IAChB,mDAAmD;EACrD;;AAEA;IACE,qBAAqB;IACrB,gBAAgB;IAChB,gBAAgB;IAChB,mDAAmD;EACrD;;AAEA;IACE,iBAAiB;IACjB,gBAAgB;EAClB;;AAEA;IACE,cAAc;IACd,gBAAgB;EAClB;;AAEA;IACE,kBAAkB;IAClB,gBAAgB;EAClB;;AAEA;IACE,iBAAiB;IACjB,gBAAgB;IAEhB,oBAAiB;IAAjB,8JAAiB;EACnB;;AAEA;IACE,gBAAgB;EAKlB;;AAHE;MACE,aAAa;IACf;;AAGF;IACE,SAAS;IACT,cAAc;IACd,cAAc;IACd,yBAAyB;IAEzB,sBAAkB;IAAlB,uKAAkB;EACpB;;AAEA;;IAEE,aAAa;IACb,gBAAgB;IAChB,iBAAiB;EACnB;;AAEA;IACE,wBAAwB;EAC1B;;AAEA;IACE,wBAAwB;EAC1B;;AAEA;;IAEE,4BAA4B;EAC9B;;AAEA;;;;IAIE,4BAA4B;EAC9B;;AAEA;IACE,cAAc;EAChB;;AAEA;;IAEE;kCAC8B;IAE9B,6HAA0C;IAA1C,qBAA0C;IAA1C,sBAA0C;IAA1C,qBAA0C;IAA1C,wBAA0C;IAA1C,mBAA0C;IAA1C,oBAA0C;EAC5C;;AAEA;IACE,gBAAgB;IAChB;kCAC8B;IAC9B,eAAe;IACf,iBAAiB;IA8EjB,kBAAsE;IAAtE,cAAsE;IAAtE,mBAAsE;IAAtE,8BAAsE;IAAtE,iBAAsE;IAAtE,kBAAsE;IAAtE,mKAAsE;EACxE;;AA5EI;AAAA,kBAAqC;AAArC,QAAqC;AAArC,qBAAqC;AAArC,oBAAqC;AAArC,uBAAqC;AAArC,oBAAqC;AAArC;AAAqC;;AAIrC;AAAA,cAA8C;AAA9C,6BAA8C;AAA9C,eAA8C;;MAE9C;AAF8C;;AAKhD;;MAEE,gBAAgB;MAChB,WAAW;MACX,yBAAyB;IAC3B;;AAEA;MACE,aAAa;MACb,WAAW;MACX,yBAAyB;IAC3B;;AAEA;MACE,aAAa;MACb,WAAW;MACX,yBAAyB;IAC3B;;AAEA;MACE,cAAc;MACd,WAAW;MACX,yBAAyB;IAC3B;;AAEA;MACE,eAAe;MACf,WAAW;MACX,yBAAyB;IAC3B;;AAEA;MACE,eAAe;MACf,WAAW;MACX,yBAAyB;IAC3B;;AAEA;MACE,eAAe;MACf,WAAW;MACX,sBAAsB;IACxB;;AAEA;MACE,eAAe;MACf,WAAW;MACX,yBAAyB;IAC3B;;AAGE;AAAA,kBAAmH;AAAnH,qBAAmH;AAAnH,WAAmH;AAAnH,eAAmH;AAAnH,iBAAmH;AAAnH,kBAAmH;AAAnH,mKAAmH;AAAnH,eAAmH;AAAnH,cAAmH;AAAnH,oBAAmH;AAAnH;AAAmH;;AAAnH;AAAA,kBAAmH;AAAnH;AAAmH;;AAEnH;QACE,UAAU;QACV,WAAW;MACb;;AAIA;AAAA,kBAA+F;AAA/F,qBAA+F;AAA/F,WAA+F;AAA/F,aAA+F;AAA/F,yBAA+F;GAA/F,sBAA+F;QAA/F,iBAA+F;AAA/F,iBAA+F;AAA/F,kBAA+F;AAA/F,yKAA+F;AAA/F,eAA+F;AAA/F,cAA+F;AAA/F,oBAA+F;AAA/F;AAA+F;;AAG7F;AAAA;AAAY;;AAOlB;IACE,WAAW;IACX,cAAc;EAChB;;AAEA;IACE,WAAW;IACX,WAAW;IACX,cAAc;EAChB;;AAEA;IACE,wBAAwB;EAC1B;;AAEA;IACE,2BAA2B;EAC7B;;AAEA;IACE,aAAa;EACf;;AAEA;IACE,gBAAgB;EAClB;;AAEA;IACE,wBAAwB;EAC1B;;AAEA;IACE,4BAA4B;EAC9B;;AAEA;IACE,4BAA4B;EAC9B;;AAEA;IACE,wBAAwB;EAC1B;;AAEA;;;;IAIE,aAAa;IACb,gBAAgB;EAClB;;AAEA;IACE,gBAAgB;EAClB;;AAEA;IACE,kBAAkB;EACpB;;AAEA;IACE,UAAU;EACZ;;AAEA;IACE,gBAAgB;IAChB,UAAU;;IAEV,cAAc;IACd,gBAAgB;IAChB,kBAAkB;EACpB;;AAEA;IACE,mBAAmB;IACnB,eAAe;EACjB;;AAEA;IACE,gBAAgB;EAClB;;AAEA;;IAEE,iBAAiB;IAEjB,sBAAoB;IAApB,uKAAoB;EACtB;;AAEA;IACE,qBAAqB;IAErB,sBAAoB;IAApB,uKAAoB;EACtB;;AAGE;AAAA,kBAAc;AAAd;AAAc;;AAGhB;IACE,wDAAwD;IACxD,gDAAgD;EAClD;;AAEA;;IAEE,gBAAgB;IAChB,eAAe;IACf,8BAA8B;EAqChC;;AAnCE;MACE,aAAa;IACf;;AAEA;MACE,gBAAgB;IAClB;;AAEA;MACE,aAAa;IAKf;;AAHE;QACE,aAAa;MACf;;AAIA;AAAA,sBAA2B;AAA3B,uKAA2B;AAA3B,kBAA2B;AAA3B;AAA2B;;AAI3B;AAAA,sBAAgC;AAAhC,wDAAgC;AAAhC,kBAAgC;AAAhC;AAAgC;;AAIhC;AAAA,sBAA0B;AAA1B,uDAA0B;AAA1B,kBAA0B;AAA1B;AAA0B;;AAI1B;AAAA,sBAAgC;AAAhC,uDAAgC;AAAhC,kBAAgC;AAAhC;AAAgC;;AAIhC;AAAA,sBAA8B;AAA9B,uDAA8B;AAA9B,kBAA8B;AAA9B;AAA8B;;ACphBpC;EACE,qBAAqB;;EAErB,UAAU;EACV,cAAc;EACd,kBAAkB;EAClB,mBAAmB;;EAEnB,cAAc;EACd,wBAAwB;;EAExB,4BAA4B;EAC5B,kCAAkC;EAClC,0BAA0B;EAC1B,kDAAkD;EAIlD,yDAA2iB;AAH7iB;;AAMA;;;;EAIE,yDAA+tB;AACjuB;;AAEA;;;;EAIE,yDAAub;AACzb;;AAEA;;;;EAIE,yDAA+Z;AACja;;AAEA;;;;EAIE,yDAAuoB;AACzoB;;AAEA;;;;EAIE,0DAA+iB;AACjjB;;AAEA;;;;EAIE,0DAAmf;AACrf;;AAEA;;;;EAIE,0DAA2hB;AAC7hB;;AAEA;;;;EAIE,0DAAusB;AACzsB;;AAEA;;;;EAIE,0DAAuV;AACzV;;AAEA;;;;EAIE,0DAAuM;AACzM;;AAEA;;;;EAIE,0DAAuS;AACzS;;AAEA;;;;EAIE,0DAA+c;AACjd;;AAEA;;;;EAIE,0DAA2K;AAC7K;;AAEA;;;;EAIE,0DAA+Q;AACjR;;AAEA;;;;EAIE,0DAA2U;AAC7U;;AAEA;;;;EAIE,0DAAuU;AACzU;;AAEA;;;;EAIE,0DAA2R;AAC7R;;AAEA;;;;EAIE,0DAA2U;AAC7U;;AAEA;;;;EAIE,0DAA+V;AACjW;;AAEA;;;;EAIE,0DAAmM;AACrM;;AAEA;;;;EAIE,0DAA+tB;AACjuB;;AAEA;;;;EAIE,0DAA+L;AACjM;;AAEA;;;;EAIE,0DAA2vB;AAC7vB;;AAEA;;;;EAIE,0DAAu3B;AACz3B;;AAEA;;;;EAIE,0DAAmL;AACrL;;AAEA;;;;EAIE,0DAA2W;AAC7W;;AAEA;;;;EAIE,0DAAmN;AACrN;;AAEA;;;;EAIE,0DAAuoB;AACzoB;;AAEA;;;;EAIE,0DAAm8B;AACr8B;;AAEA;;;;EAIE,0DAAmL;AACrL;;AAEA;;;;EAIE,0DAAuT;AACzT;;AAEA;;;;EAIE,0DAAuhB;AACzhB;;AAEA;;;;EAIE,0DAAmiB;AACriB;;AAEA;;;;EAIE,0DAAuQ;AACzQ;;AAEA;;;;EAIE,0DAA2X;AAC7X;;AAEA;;;;EAIE,0DAAmZ;AACrZ;;AAEA;;;;EAIE,0DAAmwB;AACrwB;;AAEA;;;;EAIE,0DAAuX;AACzX;;AAEA;;;;EAIE,0DAAuN;AACzN;;AAEA;;;;EAIE,0DAAmT;AACrT;;AAEA;;;;EAIE,0DAAuT;AACzT;;AAEA;;;;EAIE,0DAAuN;AACzN;;AAEA;;;;EAIE,0DAAuf;AACzf;;AAEA;;;;EAIE,0DAA+Y;AACjZ;;AAEA;;;;EAIE,0DAA2hB;AAC7hB;;AAEA;;;;EAIE,0DAA2U;AAC7U;;AAEA;;;;EAIE,0DAA+L;AACjM;;AAEA;;;;EAIE,0DAA2f;AAC7f;;AAEA;;;;EAIE,0DAAuY;AACzY;;AAEA;;;;EAIE,0DAA2a;AAC7a;;AAEA;;;;EAIE,0DAA2a;AAC7a;;AAEA;;;;EAIE,0DAAuO;AACzO;;AAEA;;;;EAIE,0DAAugB;AACzgB;;AAEA;;;;EAIE,0DAAmb;AACrb;;AAEA;;;;EAIE,0DAA2Z;AAC7Z;;AAEA;;;;EAIE,0DAAud;AACzd;;AAEA;;;;EAIE,0DAA+Z;AACja;;AAEA;;;;EAIE,0DAA+uB;AACjvB;;AAEA;;;;EAIE,0DAAmV;AACrV;;AAEA;;;;EAIE,0DAA+Z;AACja;;AAEA;;;;EAIE,0DAA+iB;AACjjB;;AAEA;;;;EAIE,0DAAuc;AACzc;;AAEA;;;;EAIE,0DAAuM;AACzM;;AAEA;;;;EAIE,0DAAmd;AACrd;;AAEA;;;;EAIE,0DAAmR;AACrR;;AAEA;;;;EAIE,0DAA2qB;AAC7qB;;AAEA;;;;EAIE,0DAAuO;AACzO;;AAEA;;;;EAIE,0DAA+L;AACjM;;AAEA;;;;EAIE,0DAA+gB;AACjhB;;AAEA;;;;EAIE,0DAAmoB;AACroB;;AAEA;;;;EAIE,0DAAmL;AACrL;;AAEA;;;;EAIE,0DAA2O;AAC7O;;AAEA;;;;EAIE,0DAA2Y;AAC7Y;;AAEA;;;;EAIE,0DAAmL;AACrL;;AAEA;;;;EAIE,0DAAuT;AACzT;;AAEA;;;;EAIE,0DAAmoB;AACroB;;AAEA;;;;EAIE,0DAAmN;AACrN;;AAEA;;;;EAIE,0DAA+X;AACjY;;AAEA;;;;EAIE,0DAAuiB;AACziB;;AAEA;;;;EAIE,0DAA+yB;AACjzB;;AAEA;;;;EAIE,0DAA+d;AACje;;AAEA;;;;EAIE,0DAAmZ;AACrZ;;AAEA;;;;EAIE,0DAAmU;AACrU;;AAEA;;;;EAIE,0DAAmO;AACrO;;AAEA;;;;EAIE,0DAAmQ;AACrQ;;AAEA;;;;EAIE,0DAAmiB;AACriB;;AAEA;;;;EAIE,0DAAuW;AACzW;;AAEA;;;;EAIE,0DAAuQ;AACzQ;;AAEA;;;;EAIE,0DAA2a;AAC7a;;AAEA;;;;EAIE,0DAAuM;AACzM;;AAEA;;;;EAIE,0DAA2Q;AAC7Q;;AAEA;;;;EAIE,0DAA2Q;AAC7Q;;AAEA;;;;EAIE,0DAA2L;AAC7L;;AAEA;;;;EAIE,0DAA2c;AAC7c;;AAEA;;;;EAIE,2DAAuW;AACzW;;AAEA;;;;EAIE,2DAA+L;AACjM;;AAEA;;;;EAIE,2DAAue;AACze;;AAEA;;;;EAIE,2DAAmW;AACrW;;AAEA;;;;EAIE,2DAAmM;AACrM;;AAEA;;;;EAIE,2DAAmX;AACrX;;AAEA;;;;EAIE,2DAA+T;AACjU;;AAEA;;;;EAIE,2DAAupB;AACzpB;;AAEA;;;;EAIE,2DAA2V;AAC7V;;AAEA;;;;EAIE,2DAA2Z;AAC7Z;;AAEA;;;;EAIE,2DAAmc;AACrc;;AAEA;;;;EAIE,2DAAmsB;AACrsB;;AAEA;;;;EAIE,2DAAmS;AACrS;;AAEA;;;;EAIE,2DAA2X;AAC7X;;AAEA;;;;EAIE,2DAAmU;AACrU;;AAEA;;;;EAIE,2DAA2K;AAC7K;;AAEA;;;;EAIE,2DAA+b;AACjc;;AAEA;;;;EAIE,2DAAuW;AACzW;;AAEA;;;;EAIE,2DAA2U;AAC7U;;AAEA;;;;EAIE,2DAA+O;AACjP;;AAEA;;;;EAIE,2DAA2X;AAC7X;;AAEA;;;;EAIE,2DAAmL;AACrL;;AAEA;;;;EAIE,2DAAmL;AACrL;;AAEA;;;;EAIE,2DAAme;AACre;;AAEA;;;;EAIE,2DAA+c;AACjd;;AAEA;;;;EAIE,2DAAuO;AACzO;;AAEA;;;;EAIE,2DAA2T;AAC7T;;AAEA;;;;EAIE,2DAA2Y;AAC7Y;;AAEA;;;;EAIE,2DAAmU;AACrU;;AAEA;;;;EAIE,2DAA2M;AAC7M;;AAEA;;;;EAIE,2DAA+U;AACjV;;AAEA;;;;EAIE,2DAA2wB;AAC7wB;;AAEA;;;;EAIE,2DAAukB;AACzkB;;AAEA;;;;EAIE,2DAA+a;AACjb;;AAEA;;;;EAIE,2DAA+O;AACjP;;AAEA;;;;EAIE,2DAAuhC;AACzhC;;AAEA;;;;EAIE,2DAAmf;AACrf;;AAEA;;;;EAIE,2DAAmQ;AACrQ;;AAEA;;;;EAIE,2DAA2f;AAC7f;;AAEA;;;;EAIE,2DAA2K;AAC7K;;AAEA;;;;EAIE,2DAA+T;AACjU;;AAEA;;;;EAIE,2DAAub;AACzb;;AAEA;;;;EAIE,2DAAmpB;AACrpB;;AAEA;;;;EAIE,2DAAmP;AACrP;;AAEA;;;;EAIE,2DAAmsB;AACrsB;;AAEA;;;;EAIE,2DAAmd;AACrd;;AAEA;;;;EAIE,2DAAmzB;AACrzB;;AAEA;;;;EAIE,2DAA+P;AACjQ;;AAEA;;;;EAIE,2DAA21B;EAC31B,wBAAwB;AAC1B;;AAEA;;;;EAIE,2DAAmL;AACrL;;AAEA;;;;EAIE,2DAA+b;AACjc;;AAEA;;;;EAIE,2DAAuT;AACzT;;AAEA;;;;EAIE,2DAAmS;AACrS;;AAEA;;;;EAIE,2DAAmL;AACrL;;AAEA;;;;EAIE,2DAAuV;AACzV;;AAEA;;;;EAIE,2DAA2T;AAC7T;;AAEA;;;;EAIE,2DAAuR;AACzR;;AAEA;;;;EAIE,2DAA+Y;AACjZ;;AAEA;;;;EAIE,2DAAmS;AACrS;;AAEA;;;;EAIE,2DAAuW;AACzW;;AAEA;;;;EAIE,2DAAuX;AACzX;;AAEA;;;;EAIE,2DAAmmB;AACrmB;;AAEA;;;;EAIE,2DAA2T;AAC7T;;AAEA;;;;EAIE,2DAAuL;AACzL;;AAEA;;;;EAIE,2DAAmf;AACrf;;AAEA;;;;EAIE,2DAA+3B;AACj4B;;AAEA;;;;EAIE,2DAAmL;AACrL;;AAEA;;;;EAIE,2DAA2uB;AAC7uB;;AAEA;;;;EAIE,2DAA+hB;AACjiB;;AAEA;;;;EAIE,2DAAmT;AACrT;;AAEA;;;;EAIE,2DAAuuB;AACzuB;;AAEA;;;;EAIE,2DAAuM;AACzM;;AAEA;;;;EAIE,2DAA+M;AACjN;;AAEA;;;;EAIE,2DAA2V;AAC7V;;AAEA;;;;EAIE,2DAAmlB;AACrlB;;AAEA;;;;EAIE,2DAAm3B;AACr3B;;AAEA;;;;EAIE,2DAAma;AACra;;AAEA;;;;EAIE,2DAA+9D;AACj+D;;AAEA;;;;EAIE,2DAAmV;AACrV;;AAEA;;;;EAIE,2DAAuQ;AACzQ;;AAEA;;;;EAIE,2DAAu6B;AACz6B;;AAEA;;;;EAIE,2DAAmV;AACrV;;AAEA;;;;EAIE,2DAAuW;AACzW;;AAEA;;;;EAIE,2DAAuR;AACzR;;AAEA;;;;EAIE,2DAAu3B;AACz3B;;AAEA;;;;EAIE,2DAA2gB;AAC7gB;;AAEA;;;;EAIE,2DAA2L;AAC7L;;AAEA;;;;EAIE,2DAA2T;AAC7T;;AAEA;;;;EAIE,2DAAud;AACzd;;AAEA;;;;EAIE,2DAA2S;AAC7S;;AAEA;;;;EAIE,2DAAma;AACra;;AAEA;;;;EAIE,2DAAuS;AACzS;;AAEA;;;;EAIE,2DAA+iB;AACjjB;;AAEA;;;;EAIE,2DAA2nB;AAC7nB;;AAEA;;;;EAIE,2DAAua;AACza;;AAEA;;;;EAIE,2DAA2jB;AAC7jB;;AAEA;;;;EAIE,2DAAmnB;AACrnB;;AAEA;;;;EAIE,2DAAuW;AACzW;;AAEA;;;;EAIE,2DAAuV;AACzV;;AAEA;;;;EAIE,2DAAuyB;AACzyB;;AAEA;;;;EAIE,2DAA2L;AAC7L;;AAEA;;;;EAIE,2DAAuP;AACzP;;AAEA;;;;EAIE,2DAAmT;AACrT;;AAEA;;;;EAIE,2DAAuT;AACzT;;AAEA;;;;EAIE,2DAA2S;AAC7S;;AAEA;;;;EAIE,2DAA+iB;AACjjB;;AAEA;;;;EAIE,2DAAuM;AACzM;;AAEA;;;;EAIE,2DAA+S;AACjT;;AAEA;;;;EAIE,2DAA+P;AACjQ;;AAEA;;;;EAIE,2DAAukB;AACzkB;;AAEA;;;;EAIE,2DAA+W;AACjX;;AAEA;;;;EAIE,2DAA+V;AACjW;;AAEA;;;;EAIE,2DAA28B;AAC78B;;AAEA;;;;EAIE,2DAAmjB;AACrjB;;AAEA;;;;EAIE,2DAA+gB;AACjhB;;AAEA;;;;EAIE,2DAA2e;AAC7e;;AAEA;;;;EAIE,2DAA+M;AACjN;;AAEA;;;;;;EAME,2DAAmN;AACrN;;AAEA;;;;;;EAME,2DAA+b;AACjc;;AAEA;;;;EAIE,2DAA+X;AACjY;;AAEA;;;;EAIE,2DAA+gB;AACjhB;;AAEA;;;;EAIE,2DAAuR;AACzR;;AAEA;;;;EAIE,2DAA2f;AAC7f;;AAEA;;;;EAIE,2DAA+U;AACjV;;AAEA;;;;EAIE,2DAA2T;AAC7T;;AAEA;;;;EAIE,2DAAmuB;AACruB;;AAEA;;;;EAIE,2DAAm5C;AACr5C;;AAEA;;;;EAIE,2DAA+V;AACjW;;AAEA;;;;EAIE,2DAA2a;AAC7a;;AAEA;;;;EAIE,2DAAmL;AACrL;;AAEA;;;;EAIE,2DAA+V;AACjW;;AAEA;;;;EAIE,2DAA2d;AAC7d;;ACtkDA;;;;;EAKE;;AAEF;EACE,sBAAsB;AAKxB;;AAHE;IACE,aAAa;EACf;;AAGF;EACE,uBAAuB;EACvB,yBAAyB;EACzB,eAAe;AAkBjB;;AAhBE;IACE,sHAAkC;IAClC,6HAA+C;EACjD;;AAEA;IACE,sEAAsE;EACxE;;AAEA;IACE,sEAAsE;EACxE;;AAEA;IACE,qBAAqB;EACvB;;AAGF;EACE,SAAS;EACT,kBAAkB;AACpB;;AAEA;EACE,iBAAiB;EACjB,gBAAgB;EAChB,qBAAqB;EACrB,sCAA8B;UAA9B,8BAA8B;EAC9B,6BAA6B;AAC/B;;AAEA;;EAEE,mBAAmB;EACnB,gBAAgB;EAChB,oBAAoB;EACpB,sCAA8B;UAA9B,8BAA8B;EAC9B,6BAA6B;AAC/B;;AAGE;;IAEE,6HAA6C;EAC/C;;AAEA;IACE,kCAAkC;EACpC;;AAGF;EACE,qBAAqB;AAKvB;;AAHE;IACE,mCAAmC;EACrC;;AAGF;EACE,UAAU;EACV,cAAc;EACd,0IAAsD;AAoBxD;;AAlBE;IACE,SAAS;IACT,yBAAyB;IACzB,qBAAqB;IACrB,0CAA0C;EAK5C;;AAHE;MACE,cAAc;IAChB;;AAGF;IACE,2BAA2B;EAK7B;;AAHE;MACE,oBAAoB;IACtB;;ACpGJ;;;;;EAKE;;AAEF;EACE,oHAA8B;EAC9B,4BAA4B;AAC9B;;AAEA;EACE,yBAAiB;KAAjB,sBAAiB;UAAjB,iBAAiB;;EAEjB,sEAAsE;EACtE,cAAc;EACd,gBAAgB;EAChB,gBAAgB;EAChB,kBAAkB;EAClB,oBAAoB;EACpB,iBAAiB;EACjB,gBAAgB;AAClB;;AAEA,gBAAgB;;AAChB;EACE,cAAc;EACd,eAAe;EACf,YAAY;AACd;;AAEA,gBAAgB;;AAChB;EACE,cAAc;EACd,mBAAmB;EACnB,oBAAoB;AACtB;;AAIE;;;;IAEE,gBAAgB;EAClB;;AAEA;IACE,kBAAkB;EACpB;;AAEA;IACE,YAAY;EACd;;AAGF;EACE,kBAAkB;AACpB;;AAEA;EACE,gCAAgC;AA+DlC;;AA7DE;IACE,kBAAkB;IAClB,MAAM;IACN,mBAAmB;;IAEnB,qBAAqB;;IAErB,kBAAkB;;IAElB,YAAY;IACZ,4BAA4B;EAC9B;;AAEA;;IAEE,gBAAgB;IAChB,WAAW;IACX,yBAAyB;EAC3B;;AAEA;IACE,aAAa;IACb,WAAW;IACX,yBAAyB;EAC3B;;AAEA;IACE,aAAa;IACb,WAAW;IACX,yBAAyB;EAC3B;;AAEA;IACE,cAAc;IACd,WAAW;IACX,yBAAyB;EAC3B;;AAEA;IACE,eAAe;IACf,WAAW;IACX,yBAAyB;EAC3B;;AAEA;IACE,eAAe;IACf,WAAW;IACX,yBAAyB;EAC3B;;AAEA;IACE,eAAe;IACf,WAAW;IACX,sBAAsB;EACxB;;AAEA;IACE,eAAe;IACf,WAAW;IACX,yBAAyB;EAC3B;;AC1HF;;;;;EAKE;;AAIE;;;;;MAKE,WAAW;IACb;;AAEA;MACE,WAAW;IACb;;AAEA;;;;MAIE,cAAc;IAChB;;AAEA;MACE,cAAc;IAChB;;AAEA;;;MAGE,cAAc;IAChB;;AAEA;;;;MAIE,cAAc;IAChB;;AAEA;;;;;MAKE,cAAc;IAChB;;AAEA;;;;;MAKE,cAAc;IAChB;;AAEA;;;MAGE,cAAc;IAChB;;AAEA;;MAEE,gBAAgB;IAClB;;AAEA;MACE,kBAAkB;IACpB;;AAEA;MACE,YAAY;IACd;;AAEA;MACE,cAAc;IAChB;;AClFJ;;;;;EAKE;;AAIE;;;;MAIE,cAAc;IAChB;;AAEA;MACE,WAAW;IACb;;AAEA;MACE,YAAY;IACd;;AAEA;;;;;;;MAOE,WAAW;IACb;;AAEA;;;;;;MAME,WAAW;IACb;;AAEA;;;;;MAKE,oEAAoE;MACpE,cAAc;MACd,mCAAmC;IACrC;;AAEA;;;MAGE,WAAW;IACb;;AAEA;;MAEE,cAAc;IAChB;;AAEA;;;MAGE,WAAW;IACb",sourcesContent:['/*\n * React Fabric\n * @version : 1.0.0\n * @copyright : 2024\n * @author : Adarsh Pastakia\n */\n\n@import url("@react-fabric/core/css/styles.css");\n@import url("@react-fabric/mdx/css/styles.css");\n@import url("@react-fabric/core/css/flags.rect.css");\n@import url("./_overrides.css");\n@import url("./_prism.css");\n@import url("./_prism-dark.css");\n@import url("./_prism-light.css");\n','/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer colors, reset, comp, util, var;\n\n@import url("tailwindcss/base") layer(reset);\n@import url("tailwindcss/components") layer(comp);\n@import url("tailwindcss/utilities") layer(util);\n@import url("tailwindcss/variants") layer(var);\n\n@import url("./reset/index.css");\n',"@tailwind base;\n","@tailwind components;\n","@tailwind utilities;\n","@tailwind variants;\n",'/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@import url("./_theme.css");\n@import url("./_reset.css");\n@import url("./_text.css");\n@import url("./_gradients.css");\n','/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer colors {\n [data-color-scheme="light"] {\n --fabric-bg: theme(colors.white);\n --fabric-text: theme(colors.black);\n --fabric-input: color-mix(in lab, var(--fabric-bg) 90%, #fff);\n --fabric-input-focus: #fff;\n --fabric-shadow: #8ba0b0;\n\n color-scheme: light;\n }\n\n [data-color-scheme="dark"] {\n --fabric-bg: theme(colors.black);\n --fabric-text: theme(colors.white);\n --fabric-input: color-mix(in lab, var(--fabric-bg) 80%, #0a1218);\n --fabric-input-focus: color-mix(in lab, var(--fabric-bg) 60%, #0a1218);\n --fabric-shadow: #010101;\n\n color-scheme: dark;\n }\n}\n\n@layer reset {\n :root {\n --black: theme(colors.black);\n --white: theme(colors.white);\n --scarlet: theme(colors.scarlet.DEFAULT);\n --pumpkin: theme(colors.pumpkin.DEFAULT);\n --marigold: theme(colors.marigold.DEFAULT);\n --avacado: theme(colors.avacado.DEFAULT);\n --jade: theme(colors.jade.DEFAULT);\n --denim: theme(colors.denim.DEFAULT);\n --iris: theme(colors.iris.DEFAULT);\n --lilac: theme(colors.lilac.DEFAULT);\n --coral: theme(colors.coral.DEFAULT);\n --wood: theme(colors.wood.DEFAULT);\n --silver: theme(colors.silver.DEFAULT);\n --steel: theme(colors.steel.DEFAULT);\n --olive: theme(colors.olive.DEFAULT);\n --sand: theme(colors.sand.DEFAULT);\n --info: theme(colors.info.DEFAULT);\n --danger: theme(colors.danger.DEFAULT);\n --success: theme(colors.success.DEFAULT);\n --warning: theme(colors.warning.DEFAULT);\n\n /* app default primary */\n --primary: theme(colors.denim.DEFAULT);\n --accent: theme(colors.jade.DEFAULT);\n --tint: theme(colors.silver.DEFAULT);\n\n /* default rounding */\n --rounding: 0.25rem;\n --rounding-cap: 0.25rem;\n --gutter: 0.5rem;\n\n /* z levels */\n --z-overlay-mask: 25;\n --z-overlay: 30;\n --z-popover-mask: 45;\n --z-popover: 50;\n --z-tooltip: 60;\n --z-notifications: 60;\n }\n\n [data-color-scheme] {\n color: color-mix(in lab, var(--fabric-text) 95%, var(--tint));\n background-color: color-mix(in lab, var(--fabric-bg) 92%, var(--tint));\n }\n\n [data-rounding="sm"] {\n /* default rounding */\n --rounding: 2px;\n --rounding-cap: 2px;\n }\n\n [data-rounding="md"] {\n /* default rounding */\n --rounding: 0.5rem;\n --rounding-cap: 0.5rem;\n }\n\n [data-rounding="full"] {\n /* default rounding */\n --rounding: 9999px;\n --rounding-cap: 0.5rem;\n }\n}\n','/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer reset {\n html,\n body {\n width: 100vw;\n height: 100vh;\n margin: 0;\n padding: 0;\n\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n vertical-align: baseline;\n }\n\n :root {\n font-family: theme(fontFamily.sans);\n font-size: 16px;\n line-height: 1.5;\n }\n\n p,\n div,\n h1,\n h2,\n h3,\n h4,\n h5,\n h6,\n input,\n textarea,\n fieldset,\n section,\n aside,\n header,\n footer,\n nav,\n menu,\n dialog {\n margin: 0;\n padding: 0;\n }\n\n fieldset {\n min-inline-size: unset;\n }\n\n body {\n a,\n label,\n button {\n user-select: none;\n }\n\n ::-webkit-scrollbar {\n width: 6px;\n height: 6px;\n }\n\n ::-webkit-scrollbar-track {\n background-color: color-mix(in lab, var(--fabric-bg) 72%, var(--tint));\n }\n\n ::-webkit-scrollbar-thumb {\n background-color: color-mix(in lab, var(--fabric-bg) 35%, var(--tint));\n\n &:hover {\n background-color: color-mix(\n in lab,\n var(--fabric-text) 50%,\n var(--tint)\n );\n }\n\n &:active {\n background-color: color-mix(\n in lab,\n var(--fabric-bg) 50%,\n var(--fabric-text)\n );\n }\n }\n\n ::-webkit-scrollbar-corner {\n background-color: var(--fabric-bg);\n }\n\n input:not(:disabled)::-webkit-file-upload-button {\n cursor: pointer;\n }\n\n .scroll-thin {\n &::-webkit-scrollbar,\n & ::-webkit-scrollbar {\n width: 3px;\n height: 3px;\n }\n }\n\n .scroll-hide {\n &::-webkit-scrollbar,\n & ::-webkit-scrollbar {\n width: 0;\n height: 0;\n }\n }\n\n :focus-visible {\n outline: 0;\n }\n\n ::placeholder {\n color: theme(colors.tint.400);\n }\n\n ::selection {\n background-color: color-mix(in lab, var(--accent) 35%, var(--fabric-bg));\n }\n\n *,\n ::before,\n ::after {\n --tw-ring-offset-color: var(--fabric-bg);\n --tw-ring-color: var(--primary);\n\n box-sizing: border-box;\n text-underline-offset: 0.25em;\n }\n\n img,\n svg {\n display: inline-block;\n fill: currentcolor;\n }\n\n hr {\n transform: scaleY(0.5);\n\n height: auto;\n margin: 1rem 0;\n\n background: none;\n border: 0;\n border-top: 3px solid color-mix(in lab, var(--fabric-bg) 95%, var(--tint)) !important;\n border-bottom: 2px solid\n color-mix(in lab, var(--fabric-bg) 50%, var(--tint));\n\n &.vertical {\n transform: scaleX(0.5);\n\n display: inline-block;\n\n margin: 0 0.25rem;\n\n border: 0;\n border-inline-start: 3px solid\n color-mix(in lab, var(--fabric-bg) 95%, var(--tint)) !important;\n border-inline-end: 2px solid\n color-mix(in lab, var(--fabric-bg) 50%, var(--tint));\n }\n }\n\n label {\n cursor: inherit;\n }\n\n [data-clickable="true"] {\n cursor: pointer;\n }\n\n .sectioned {\n display: grid;\n grid-template: "head head head" auto "side-s content side-e" 1fr "foot foot foot" auto / auto 1fr auto;\n }\n\n @media (min-width: theme(screens.xs)) {\n .hide-xs {\n @apply hidden;\n }\n\n @media (max-width: theme(screens.sm)) {\n .hide-xs-only {\n @apply hidden;\n }\n\n .show-sm-only,\n .show-md-only,\n .show-lg-only,\n .show-xl-only,\n .show-2xl-only {\n @apply hidden;\n }\n }\n }\n\n @media (min-width: theme(screens.sm)) {\n .hide-sm {\n @apply hidden;\n }\n\n @media (max-width: theme(screens.md)) {\n .hide-sm-only {\n @apply hidden;\n }\n\n .show-xs-only,\n .show-md-only,\n .show-lg-only,\n .show-xl-only,\n .show-2xl-only {\n @apply hidden;\n }\n }\n }\n\n @media (min-width: theme(screens.md)) {\n .hide-md {\n @apply hidden;\n }\n\n @media (max-width: theme(screens.lg)) {\n .hide-md-only {\n @apply hidden;\n }\n\n .show-xs-only,\n .show-sm-only,\n .show-lg-only,\n .show-xl-only,\n .show-2xl-only {\n @apply hidden;\n }\n }\n }\n\n @media (min-width: theme(screens.lg)) {\n .hide-lg {\n @apply hidden;\n }\n\n @media (max-width: theme(screens.xl)) {\n .hide-lg-only {\n @apply hidden;\n }\n\n .show-xs-only,\n .show-sm-only,\n .show-md-only,\n .show-xl-only,\n .show-2xl-only {\n @apply hidden;\n }\n }\n }\n\n @media (min-width: theme(screens.xl)) {\n .hide-xl {\n @apply hidden;\n }\n\n @media (max-width: theme(screens.2xl)) {\n .hide-xl-only {\n @apply hidden;\n }\n\n .show-xs-only,\n .show-sm-only,\n .show-md-only,\n .show-lg-only,\n .show-2xl-only {\n @apply hidden;\n }\n }\n }\n\n @media (min-width: theme(screens.2xl)) {\n .hide-2xl,\n .hide-2xl-only {\n @apply hidden;\n }\n\n .show-xs-only,\n .show-sm-only,\n .show-md-only,\n .show-lg-only,\n .show-xl-only {\n @apply hidden;\n }\n }\n\n @media (max-width: theme(screens.xs)) {\n .show-xs,\n .show-sm,\n .show-md,\n .show-lg,\n .show-xl,\n .show-2xl {\n @apply hidden;\n }\n }\n\n @media (max-width: theme(screens.sm)) {\n .show-sm,\n .show-md,\n .show-lg,\n .show-xl,\n .show-2xl {\n @apply hidden;\n }\n }\n\n @media (max-width: theme(screens.md)) {\n .show-md,\n .show-lg,\n .show-xl,\n .show-2xl {\n @apply hidden;\n }\n }\n\n @media (max-width: theme(screens.lg)) {\n .show-lg,\n .show-xl,\n .show-2xl {\n @apply hidden;\n }\n }\n\n @media (max-width: theme(screens.xl)) {\n .show-xl,\n .show-2xl {\n @apply hidden;\n }\n }\n\n @media (max-width: theme(screens.2xl)) {\n .show-2xl {\n @apply hidden;\n }\n }\n }\n\n .scroll-snap-start {\n scroll-snap-type: both proximity;\n\n & > * {\n scroll-snap-align: start;\n }\n }\n\n .scroll-snap-center {\n scroll-snap-type: both proximity;\n\n & > * {\n scroll-snap-align: center;\n }\n }\n\n .break-words {\n word-break: break-word;\n }\n\n .outline-thin {\n outline-width: 0.5px;\n }\n\n .outline {\n outline-width: 1px;\n }\n\n .container {\n margin-inline: auto;\n }\n\n p,\n pre,\n h1,\n h2,\n h3,\n h4,\n h5,\n h6,\n .mixed-lang {\n unicode-bidi: plaintext;\n }\n}\n','/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n h1 {\n font-size: 2.5rem;\n font-weight: 500;\n }\n\n h2 {\n font-size: 2rem;\n font-weight: 500;\n }\n\n h3 {\n font-size: 1.75rem;\n font-weight: 500;\n }\n\n h4 {\n font-size: 1.5rem;\n font-weight: 500;\n }\n\n h5 {\n font-size: 1.25rem;\n font-weight: 500;\n }\n\n h6 {\n font-size: 1rem;\n font-weight: 600;\n }\n\n p {\n line-height: 1.5;\n\n & + p,\n & + article {\n margin-top: 1rem;\n }\n }\n\n article {\n & + p,\n & + article {\n margin-top: 1rem;\n }\n }\n\n ul,\n ol {\n margin: 0;\n padding-inline-start: 2em;\n list-style-position: outside;\n\n & > li {\n padding: 0 2px;\n line-height: 2;\n }\n }\n\n ul {\n list-style: disc;\n }\n\n ol {\n list-style: decimal;\n }\n\n dl {\n display: flex;\n flex-flow: row wrap;\n margin: 0 0 1rem;\n line-height: 1.5em;\n\n dt {\n overflow: hidden;\n flex: 0 0 33.3%;\n\n min-width: 6em;\n max-width: 12em;\n padding-inline: 1em;\n\n font-size: 0.875em;\n color: theme(textColor.dimmed);\n text-overflow: ellipsis;\n white-space: nowrap;\n }\n\n dd {\n flex: 1 1 66.6%;\n margin: 0;\n padding: 0;\n }\n\n &.align-end > dt {\n text-align: end;\n\n &::after {\n content: ": ";\n }\n }\n\n &.bg-alternate {\n & > dt:nth-of-type(odd),\n & > dd:nth-of-type(odd) {\n background-color: color-mix(in lab, var(--fabric-bg) 99%, var(--tint));\n }\n\n & > dt:nth-of-type(even),\n & > dd:nth-of-type(even) {\n background-color: color-mix(in lab, var(--fabric-bg) 92%, var(--tint));\n }\n }\n }\n\n abbr {\n cursor: help;\n\n display: inline-block;\n\n padding: 0 2px;\n\n color: theme(colors.accent.700);\n text-decoration: underline dashed 1px;\n\n background-color: color-mix(in lab, currentcolor 10%, var(--fabric-bg));\n }\n\n mark {\n display: inline-block;\n color: var(--fabric-text);\n background-color: theme(colors.accent.100);\n }\n\n .link {\n cursor: pointer;\n user-select: none;\n\n font-weight: 500;\n color: theme(colors.accent.600);\n text-decoration: underline dotted;\n\n &:hover {\n text-decoration: underline solid;\n }\n }\n\n .bg-odd,\n .bg-alternate > :nth-child(odd) {\n background-color: color-mix(in lab, var(--fabric-bg) 99%, var(--tint));\n }\n\n .bg-even,\n .bg-alternate > :nth-child(even) {\n background-color: color-mix(in lab, var(--fabric-bg) 92%, var(--tint));\n }\n}\n','/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer reset {\n :root {\n --click-gradient: linear-gradient(\n var(--fabric-gradient-deg, 180deg),\n rgb(255 255 255 / 8%) 0%,\n transparent 25%,\n transparent 50%,\n rgb(0 0 0 / 8%) 100%\n );\n --active-gradient: linear-gradient(\n 0deg,\n rgb(255 255 255 / 5%) 0%,\n transparent 15%,\n transparent 85%,\n rgb(0 0 0 / 5%) 100%\n );\n --progress-gradient: linear-gradient(\n -45deg,\n color(from var(--white) srgb r g b / 10%) 25%,\n color(from var(--tint) srgb r g b / 10%) 25%,\n color(from var(--tint) srgb r g b / 10%) 50%,\n color(from var(--white) srgb r g b / 10%) 50%,\n color(from var(--white) srgb r g b / 10%) 75%,\n color(from var(--tint) srgb r g b / 10%) 75%,\n color(from var(--tint) srgb r g b / 10%)\n );\n }\n}\n','/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@import url("./_hljs.light.css");\n@import url("./_hljs.dark.css");\n@import url("./_markdown.css");\n','/* stylelint-disable selector-class-pattern */\n[data-color-scheme="light"] {\n pre code.hljs {\n overflow-x: auto;\n display: block;\n padding: 1em;\n }\n\n code.hljs {\n padding: 3px 5px;\n }\n\n /*!\n Theme: GitHub\n Description: Light theme as seen on github.com\n Author: github.com\n Maintainer: @Hirse\n Updated: 2021-05-15\n\n Outdated base version: https://github.com/primer/github-syntax-light\n Current colors taken from GitHub\'s CSS\n*/\n .hljs-doctag,\n .hljs-keyword,\n .hljs-meta .hljs-keyword,\n .hljs-template-tag,\n .hljs-template-variable,\n .hljs-type,\n .hljs-variable.language_ {\n /* prettylights-syntax-keyword */\n color: #d73a49;\n }\n\n .hljs-title,\n .hljs-title.class_,\n .hljs-title.class_.inherited__,\n .hljs-title.function_ {\n /* prettylights-syntax-entity */\n color: #6f42c1;\n }\n\n .hljs-attr,\n .hljs-attribute,\n .hljs-literal,\n .hljs-meta,\n .hljs-number,\n .hljs-operator,\n .hljs-variable,\n .hljs-selector-attr,\n .hljs-selector-class,\n .hljs-selector-id {\n /* prettylights-syntax-constant */\n color: #005cc5;\n }\n\n .hljs-regexp,\n .hljs-string,\n .hljs-meta .hljs-string {\n /* prettylights-syntax-string */\n color: #032f62;\n }\n\n .hljs-built_in,\n .hljs-symbol {\n /* prettylights-syntax-variable */\n color: #e36209;\n }\n\n .hljs-comment,\n .hljs-code,\n .hljs-formula {\n /* prettylights-syntax-comment */\n color: #6a737d;\n }\n\n .hljs-name,\n .hljs-quote,\n .hljs-selector-tag,\n .hljs-selector-pseudo {\n /* prettylights-syntax-entity-tag */\n color: #22863a;\n }\n\n .hljs-subst {\n /* prettylights-syntax-storage-modifier-import */\n color: #24292e;\n }\n\n .hljs-section {\n font-weight: bold;\n\n /* prettylights-syntax-markup-heading */\n color: #005cc5;\n }\n\n .hljs-bullet {\n /* prettylights-syntax-markup-list */\n color: #735c0f;\n }\n\n .hljs-emphasis {\n font-style: italic;\n\n /* prettylights-syntax-markup-italic */\n color: #24292e;\n }\n\n .hljs-strong {\n font-weight: bold;\n\n /* prettylights-syntax-markup-bold */\n color: #24292e;\n }\n\n .hljs-addition {\n /* prettylights-syntax-markup-inserted */\n color: #22863a;\n background-color: #f0fff4;\n }\n\n .hljs-deletion {\n /* prettylights-syntax-markup-deleted */\n color: #b31d28;\n background-color: #ffeef0;\n }\n\n .hljs-char.escape_,\n .hljs-link,\n .hljs-params,\n .hljs-property,\n .hljs-punctuation,\n .hljs-tag {\n /* purposely ignored */\n }\n}\n','/* stylelint-disable selector-class-pattern */\n[data-color-scheme="dark"] {\n pre code.hljs {\n overflow-x: auto;\n display: block;\n padding: 1em;\n }\n\n code.hljs {\n padding: 3px 5px;\n }\n\n /*!\n Theme: GitHub Dark\n Description: Dark theme as seen on github.com\n Author: github.com\n Maintainer: @Hirse\n Updated: 2021-05-15\n\n Outdated base version: https://github.com/primer/github-syntax-dark\n Current colors taken from GitHub\'s CSS\n*/\n .hljs-doctag,\n .hljs-keyword,\n .hljs-meta .hljs-keyword,\n .hljs-template-tag,\n .hljs-template-variable,\n .hljs-type,\n .hljs-variable.language_ {\n /* prettylights-syntax-keyword */\n color: #ff7b72;\n }\n\n .hljs-title,\n .hljs-title.class_,\n .hljs-title.class_.inherited__,\n .hljs-title.function_ {\n /* prettylights-syntax-entity */\n color: #d2a8ff;\n }\n\n .hljs-attr,\n .hljs-attribute,\n .hljs-literal,\n .hljs-meta,\n .hljs-number,\n .hljs-operator,\n .hljs-variable,\n .hljs-selector-attr,\n .hljs-selector-class,\n .hljs-selector-id {\n /* prettylights-syntax-constant */\n color: #79c0ff;\n }\n\n .hljs-regexp,\n .hljs-string,\n .hljs-meta .hljs-string {\n /* prettylights-syntax-string */\n color: #a5d6ff;\n }\n\n .hljs-built_in,\n .hljs-symbol {\n /* prettylights-syntax-variable */\n color: #ffa657;\n }\n\n .hljs-comment,\n .hljs-code,\n .hljs-formula {\n /* prettylights-syntax-comment */\n color: #8b949e;\n }\n\n .hljs-name,\n .hljs-quote,\n .hljs-selector-tag,\n .hljs-selector-pseudo {\n /* prettylights-syntax-entity-tag */\n color: #7ee787;\n }\n\n .hljs-subst {\n /* prettylights-syntax-storage-modifier-import */\n color: #c9d1d9;\n }\n\n .hljs-section {\n font-weight: bold;\n\n /* prettylights-syntax-markup-heading */\n color: #1f6feb;\n }\n\n .hljs-bullet {\n /* prettylights-syntax-markup-list */\n color: #f2cc60;\n }\n\n .hljs-emphasis {\n font-style: italic;\n\n /* prettylights-syntax-markup-italic */\n color: #c9d1d9;\n }\n\n .hljs-strong {\n font-weight: bold;\n\n /* prettylights-syntax-markup-bold */\n color: #c9d1d9;\n }\n\n .hljs-addition {\n /* prettylights-syntax-markup-inserted */\n color: #aff5b4;\n background-color: #033a16;\n }\n\n .hljs-deletion {\n /* prettylights-syntax-markup-deleted */\n color: #ffdcd7;\n background-color: #67060c;\n }\n\n .hljs-char.escape_,\n .hljs-link,\n .hljs-params,\n .hljs-property,\n .hljs-punctuation,\n .hljs-tag {\n /* purposely ignored */\n }\n}\n','/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n.markdown-body {\n &.markdown-body {\n margin: 0;\n\n font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial,\n sans-serif, "Apple Color Emoji", "Segoe UI Emoji";\n font-size: 16px;\n line-height: 1.5;\n text-size-adjust: 100%;\n word-wrap: break-word;\n }\n\n &.markdown-body .octicon {\n display: inline-block;\n vertical-align: text-bottom;\n fill: currentcolor;\n }\n\n &.markdown-body h1:hover .anchor .octicon-link::before,\n &.markdown-body h2:hover .anchor .octicon-link::before,\n &.markdown-body h3:hover .anchor .octicon-link::before,\n &.markdown-body h4:hover .anchor .octicon-link::before,\n &.markdown-body h5:hover .anchor .octicon-link::before,\n &.markdown-body h6:hover .anchor .octicon-link::before {\n content: " ";\n\n display: inline-block;\n\n width: 16px;\n height: 16px;\n\n background-color: currentcolor;\n\n mask-image: url("data:image/svg+xml,");\n }\n\n &.markdown-body details,\n &.markdown-body figcaption,\n &.markdown-body figure {\n display: block;\n }\n\n &.markdown-body summary {\n display: list-item;\n }\n\n &.markdown-body [hidden] {\n display: none !important;\n }\n\n &.markdown-body a {\n color: #0969da;\n text-decoration: none;\n background-color: transparent;\n }\n\n &.markdown-body a:active,\n &.markdown-body a:hover {\n outline-width: 0;\n }\n\n &.markdown-body abbr[title] {\n text-decoration: underline dotted;\n border-bottom: none;\n }\n\n &.markdown-body b,\n &.markdown-body strong {\n font-weight: 600;\n }\n\n &.markdown-body dfn {\n font-style: italic;\n }\n\n &.markdown-body mark {\n @apply bg-warning-300;\n }\n\n &.markdown-body small {\n font-size: 90%;\n }\n\n &.markdown-body sub,\n &.markdown-body sup {\n position: relative;\n font-size: 75%;\n line-height: 0;\n vertical-align: baseline;\n }\n\n &.markdown-body sub {\n bottom: -0.25em;\n }\n\n &.markdown-body sup {\n top: -0.5em;\n }\n\n &.markdown-body img {\n box-sizing: content-box;\n max-width: 100%;\n border-style: none;\n\n @apply bg-muted;\n }\n\n &.markdown-body code,\n &.markdown-body kbd,\n &.markdown-body pre,\n &.markdown-body samp {\n font-family: monospace;\n font-size: 1em;\n }\n\n &.markdown-body figure {\n margin: 1em 40px;\n }\n\n &.markdown-body hr {\n overflow: hidden;\n\n box-sizing: content-box;\n height: 0.25em;\n margin: 24px 0;\n padding: 0;\n\n background: transparent;\n border: 0;\n border-bottom: 1px solid hsl(210deg 18% 87% / 100%);\n\n @apply bg-muted;\n }\n\n &.markdown-body a:hover {\n text-decoration: underline;\n }\n\n &.markdown-body hr::before {\n content: "";\n display: table;\n }\n\n &.markdown-body hr::after {\n content: "";\n clear: both;\n display: table;\n }\n\n &.markdown-body table {\n overflow: auto;\n display: block;\n border-spacing: 2px;\n border-collapse: separate;\n\n width: max-content;\n max-width: 100%;\n margin: 1.5rem 0;\n\n border: 0;\n }\n\n &.markdown-body h1,\n &.markdown-body h2,\n &.markdown-body h3,\n &.markdown-body h4,\n &.markdown-body h5,\n &.markdown-body h6 {\n margin: 1.5rem 0;\n font-weight: 600;\n line-height: 1.25;\n\n &:first-child {\n margin-top: 0;\n }\n }\n\n &.markdown-body h1,\n &.markdown-body h2,\n &.markdown-body h3,\n &.markdown-body h4,\n &.markdown-body h5,\n &.markdown-body h6,\n &.markdown-body li {\n & + br {\n display: none;\n }\n }\n\n &.markdown-body h1 {\n padding-bottom: 0.3em;\n font-size: 2em;\n font-weight: 600;\n border-bottom: 1px solid hsl(210deg 18% 87% / 100%);\n }\n\n &.markdown-body h2 {\n padding-bottom: 0.3em;\n font-size: 1.5em;\n font-weight: 600;\n border-bottom: 1px solid hsl(210deg 18% 87% / 100%);\n }\n\n &.markdown-body h3 {\n font-size: 1.25em;\n font-weight: 600;\n }\n\n &.markdown-body h4 {\n font-size: 1em;\n font-weight: 600;\n }\n\n &.markdown-body h5 {\n font-size: 0.875em;\n font-weight: 600;\n }\n\n &.markdown-body h6 {\n font-size: 0.85em;\n font-weight: 600;\n\n @apply text-muted;\n }\n\n &.markdown-body p {\n margin: 1.5rem 0;\n\n &:first-child {\n margin-top: 0;\n }\n }\n\n &.markdown-body blockquote {\n margin: 0;\n padding: 0 1em;\n color: #57606a;\n border-left: 0.25em solid;\n\n @apply border-base;\n }\n\n &.markdown-body ul,\n &.markdown-body ol {\n margin-top: 0;\n margin-bottom: 0;\n padding-left: 2em;\n }\n\n &.markdown-body ul {\n list-style-type: initial;\n }\n\n &.markdown-body ol {\n list-style-type: initial;\n }\n\n &.markdown-body ol ol,\n &.markdown-body ul ol {\n list-style-type: lower-roman;\n }\n\n &.markdown-body ul ul ol,\n &.markdown-body ul ol ol,\n &.markdown-body ol ul ol,\n &.markdown-body ol ol ol {\n list-style-type: lower-alpha;\n }\n\n &.markdown-body dd {\n margin-left: 0;\n }\n\n &.markdown-body tt,\n &.markdown-body :not(pre) code {\n font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas,\n "Liberation Mono", monospace;\n\n @apply text-sm bg-coral-100/50 px-1 py-0.5;\n }\n\n &.markdown-body pre.hljs {\n margin: 1.5rem 0;\n font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas,\n "Liberation Mono", monospace;\n font-size: 12px;\n word-wrap: normal;\n\n &::after {\n @apply absolute top-0 end-0 py-1 px-2;\n }\n\n & > code {\n @apply bg-transparent p-6 block whitespace-pre;\n\n white-space: pre;\n }\n\n &.language-jsx::after,\n &.language-tsx::after {\n content: "React";\n color: #000;\n background-color: #61dafb;\n }\n\n &.language-js::after {\n content: "JS";\n color: #000;\n background-color: #f7df1e;\n }\n\n &.language-ts::after {\n content: "TS";\n color: #fff;\n background-color: #3178c6;\n }\n\n &.language-css::after {\n content: "CSS";\n color: #fff;\n background-color: #1572b6;\n }\n\n &.language-html::after {\n content: "HTML";\n color: #fff;\n background-color: #e34f26;\n }\n\n &.language-bash::after {\n content: "Bash";\n color: #fff;\n background-color: #64748b;\n }\n\n &.language-json::after {\n content: "JSON";\n color: #fff;\n background-color: #000;\n }\n\n &.language-yaml::after {\n content: "YAML";\n color: #fff;\n background-color: #cb171e;\n }\n\n & .hljs-copy {\n @apply absolute end-0 bottom-0 p-2 border bg-base text-primary-600 hover:bg-primary-100 cursor-pointer leading-none;\n\n & > svg {\n width: 1em;\n height: 1em;\n }\n }\n\n & .hljs-copy-success {\n @apply absolute end-0 bottom-0 p-2 border text-invert bg-invert select-none leading-none hidden;\n\n &[data-show="true"] {\n @apply block;\n }\n }\n\n @apply bg-base border rounded relative overflow-auto whitespace-normal;\n }\n\n &.markdown-body::before {\n content: "";\n display: table;\n }\n\n &.markdown-body::after {\n content: "";\n clear: both;\n display: table;\n }\n\n &.markdown-body > *:first-child {\n margin-top: 0 !important;\n }\n\n &.markdown-body > *:last-child {\n margin-bottom: 0 !important;\n }\n\n &.markdown-body blockquote > :first-child {\n margin-top: 0;\n }\n\n &.markdown-body blockquote > :last-child {\n margin-bottom: 0;\n }\n\n &.markdown-body ol[type="1"] {\n list-style-type: decimal;\n }\n\n &.markdown-body ol[type="a"] {\n list-style-type: lower-alpha;\n }\n\n &.markdown-body ol[type="i"] {\n list-style-type: lower-roman;\n }\n\n &.markdown-body div > ol:not([type]) {\n list-style-type: decimal;\n }\n\n &.markdown-body ul ul,\n &.markdown-body ul ol,\n &.markdown-body ol ol,\n &.markdown-body ol ul {\n margin-top: 0;\n margin-bottom: 0;\n }\n\n &.markdown-body li > p {\n margin-top: 16px;\n }\n\n &.markdown-body li + li {\n margin-top: 0.25em;\n }\n\n &.markdown-body dl {\n padding: 0;\n }\n\n &.markdown-body dl dt {\n margin-top: 16px;\n padding: 0;\n\n font-size: 1em;\n font-weight: 600;\n font-style: italic;\n }\n\n &.markdown-body dl dd {\n margin-bottom: 16px;\n padding: 0 16px;\n }\n\n &.markdown-body table th {\n font-weight: 600;\n }\n\n &.markdown-body table th,\n &.markdown-body table td {\n padding: 6px 13px;\n\n @apply border-dimmed;\n }\n\n &.markdown-body table tr {\n border-top: 1px solid;\n\n @apply border-dimmed;\n }\n\n &.markdown-body table tr:nth-child(2n) {\n @apply bg-base;\n }\n\n & div[class*="_admonition"] {\n /* stylelint-disable-next-line custom-property-pattern */\n border-color: var(--admonitionBorder) !important;\n }\n\n & .admonition,\n & div[class*="_admonition"] {\n margin: 1.5rem 0;\n padding: 0.5rem;\n border-inline-start: 4px solid;\n\n & :first-child {\n margin-top: 0;\n }\n\n & :last-child {\n margin-bottom: 0;\n }\n\n & .admonition-title {\n display: none;\n\n & + * {\n margin-top: 0;\n }\n }\n\n &.admonition-note {\n @apply bg-muted border-base;\n }\n\n &.admonition-tip {\n @apply bg-success border-success;\n }\n\n &.admonition-info {\n @apply bg-info border-info;\n }\n\n &.admonition-caution {\n @apply bg-warning border-warning;\n }\n\n &.admonition-danger {\n @apply bg-danger border-danger;\n }\n }\n}\n','.flag {\n display: inline-block;\n\n width: 1em;\n height: 0.75em;\n max-height: 0.75em;\n margin-top: 0.125em;\n\n font-size: 1em;\n vertical-align: baseline;\n\n background-repeat: no-repeat;\n background-position: center center;\n background-size: 100% 100%;\n box-shadow: 0 0 0 1px rgb(128 128 128 / 50%) inset;\n}\n\n.flag {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAABRElEQVR42u3aoROCMBTHcf5lo2fxNHgaPItapGjRRKJooWjBIEGD/8y81xCmrjhg7xte4VZ+n21vgyMyxkSaS3V4AAAAAAAAAAAAAACKx1NlVQGMsgIAAAAAAAAA3wDpKTOb3cH0BuO3kmdJegwX4FrczXwV14JXazhdmOyShwUg4SXYr/Dl8oDgD8C25F1WQhAAMpO2gOX9Ln3h15jOAmwPiVOwfZLWxi3jXfcBJov1W6j+aGYdd8zONQBpmp0HkMAuoWzbIIgV4FoStgog20IFwKdT4pLfwgb4djn68+w3DyDhqw3SY/jmAWzLXhqmnAbBvw3K7Ntufn/e8+0BsB15Hme+eQC5CbpcjtQAeHjx4YsQAG0CsH0cUdUEAQAAAN0AHIMAAAAAAAAAAEDbANT/KKkXgJ+lAQAAAAAAAAAAABTWC/MCectA2CykAAAAAElFTkSuQmCC");\n}\n\n.flag.AF,\n.flag.AFG,\n.flag.af,\n.flag.afg {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAh1BMVEUAejbjdGrhZlvpkIjeWEzVLh/bSj0AAADTIBHYPC6MFQuMPR3mgnkwMDBAm2jsnpcwk1uAvZuXKiFAQEAVFRVdXV1grIHBk4SAgIAQgkKiUkC7gXTwsKr0yMT53duTSSu1aGFwcHCQkJCNPR2weWNQo3WhYUcgik9wtI6hQTjeV0uQxaegzbTU8WaPAAABOElEQVQ4y73USXPCMAwF4MqWxBM4ZCcLJCyllKX///f10AvMxOml03f+Zjy2nvy2eM4ST3l/e0kcrv4ICkxE5XdoYipmIrOwMAFgKoDxDEy2BgBmAKBNFoNlfQMggEAAXDYfEXisD4CpiBgbsL1upmFbtgUAGN/VM7DP1/kkLKtTAWUoIKSGfd6tp2FdLeFSYvLsKGDVbSKwTZbp6B2LBPOjX2X5NDwl7XIYvHMO6sMwrL6yxySskqQYeQeAwcxjv84+J2FdH3tnHnwncjC3zV8e8mkudbkVeJhy6hXSrCOXqY5t4yRAfgrEzTWfPnqRnA7KCmUzKFvzyCIjrKoiEDtmZkcU9l0XbU8fiHYps985onMW7+MNaapqorZLcZkp7sGUXSDyjtXOcw1nI1VAlYz7/17X2E/xDU3CHUk5qQKIAAAAAElFTkSuQmCC");\n}\n\n.flag.AL,\n.flag.ALB,\n.flag.al,\n.flag.alb {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAdBAMAAAAqZzNAAAAALVBMVEX/AAAAAACvAAB/AABvAABfAAAtAADKAACPAADfAABPAAA/AADvAACgAAAPAABIzFtLAAAAs0lEQVQoz2NgoC+YwHOjgL33ACeK4PJD23KOZetooQjO2nVZSNF29RoUwaWB4nFPC0VDUQSVHEUSxRxFlFAESwwFgUDYHUUwJBAkKOqKIqgMETRCEVR3BAmKFKEItppuExTMCo5AESx28RAUNHExRxHUYL/XlvG2oAlF8PLc7Iky227aogg2WxxKFNNptkARrGSYsVCqk2E6WuAxe6cYYIQop/amCZjhzJaAJfA5JzDQHQAA2O0qTBBsTKkAAAAASUVORK5CYII=");\n}\n\n.flag.DZ,\n.flag.DZA,\n.flag.dz,\n.flag.dza {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAARVBMVEX////30tg1TTNpOTP0w8zWJUUjVDIAYjP////SEDTxtL+/FzP64eVIRTKELjPbQV6RKTLjaYCeJDP88PLmeI30xM3gWnIwpA//AAAAAXRSTlP9g+pWxwAAAHtJREFUOMvlkzsSgCAMRPkEZBVFRbz/UUUsdSCFlaZJ8ybJ7k5E91DuXkJ8HVQpMkC7AjCLbIFjxibytPV10AKDLTf6OjgAYxHTWK2AOTdycq+DGtC59caEOjgB6vQxZOH0ykT2jWzVxUfF8fFKJrWT4WddWIo//JlH8AAwAB+HdjSvjAAAAABJRU5ErkJggg==");\n}\n\n.flag.AS,\n.flag.ASM,\n.flag.as,\n.flag.asm {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAArlBMVEX////EKTjjmJ87IQ52CjqlDinCITEAAGYYAl1GBkzWZnHmo6n33+LUYWzknqTv7+/z1tn12tzSXWg0HQ2TeThBIw+akYj+/f3y0tV7XBbRWWVTNidCKhhrMxTW1NLe2dOTg3XGvrfLyMWunnZtWC+xsbHu7OdcMx5LJxFDMCbU0cl6WkhwY1rPwJimfhnj3Mepqam4trRkUkN5akOpijeOaxGObBR+dGbKwKKwmVwJBAHeAAAAzUlEQVQoz5XS5w6CMBQF4Kt1r6oUENnDwXaP938xgcgIKVjPr5J8acq5F4YMGY17fWBBncl0BkwoDQMyfaMBZmi+WGU36b56MCkwRYMcARiyqh5lvQYztO4uIQ8+HBGPOHm306ARpdE4PnGcIpz2UKBtdyNCLVbgIgW5OD03oiSihYWLgtD5F4Rb8rsCHxQ9Ut+XkIiQN5Gc0KsWTsMaWB5xbHsPtHrKDiGWCH7p34+2qcTSQ7pHV2icdTnn0Hg6NmZdCmiFzGv21+JW8QewIBq5Sg9RSgAAAABJRU5ErkJggg==");\n}\n\n.flag.AD,\n.flag.AND,\n.flag.ad,\n.flag.and {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAcCAMAAAAkyw3kAAAAh1BMVEX+3wD73AC+p3Ppgw40QYW0mmmvlGMAGKjQEDrZOC7ffBjKr0zTtjXUuEDevyjpyBzmySXqfgn52gi6n23Or0DbvjfHrFnBp2K6oF/kmw40QIXZOS/ixCLOsiuzml7VYh3CpU/DqVndjS3UeVztpoLIakj31wTVhjLsoWT+7W/dWULNRC/51mPLu1LCAAAAtElEQVQ4y+XUSRKDIBAFUIHQSUABBadE42zG+58vutNN696/fvWLLmi88yI3b5X7ZRFvCU9reD0SNFqbbWikktw67TQOCaVNCjZtbErwRjV8+kowFhQ4lDD83t8ZgsMgyaB79d0MeTZijQpk2z6dP02k8DPWcRgKXYVxjU/tP2aoRB4/ShQGIBkTJs8l9/FGCkCBT7E4jIIk4ZTSLAmijbsmxOe8JGTHoxgLEx1vFXZA7Ev5Aw7LHoRODS8/AAAAAElFTkSuQmCC");\n}\n\n.flag.AO,\n.flag.AGO,\n.flag.ao,\n.flag.ago {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAWlBMVEUAAAAQDQDVLSbRHSpmBBfKCC7/ywBmBBfMCS8AAABPPwDhWRvAmQAjHADzvwDuiA/yrAVfSwCQcgB1XQDcRiCgfwDQpQCwjADymgufTg7pdRSzaAvFfwhAMwAtf7ufAAAACHRSTlP9/////////sajZT8AAACgSURBVDjL1Y/JDsMgDEQxNE7MDk3S/f9/s0bJhVYKXDMHLJmnGY8Ypi4N4qSgkkZ1gTLi3BltfFQd4JNNsQ3KgEFO4S6bjgYNFypPA5xVqYKtaLkfF8MPOF5qvd7bxEe1HoWgWgkX4KFtvRZ/IF3ROqLo4RAsv271n7y4Y8e8aiDIPic6BsFbZGnbcuTspEHzpTfdKrPL2dQHsmkvSKcDvxd5Iyc+x/1IAAAAAElFTkSuQmCC");\n}\n\n.flag.AI,\n.flag.AIA,\n.flag.ai,\n.flag.aia {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAdVBMVEUAIWlgdKHUeY7g5O3yxs3///9nbprIEC7AyNrYVmuZzP//5sD79fe/x9n22N0NK2WLl3nz88z/7M//+e//zoOgtpnZ3Of/oxv/4bORq4mewLbT1J/u787Y27H/uE//2J/Hyoawt35Ya21jdGm4vpf/xnD/8t91fNiSAAAAt0lEQVQoz9WQSRKDIBBFcUBUBhEQZ818/yMGimBlYYlZ5m2g+a+6iwZFmkTAkCOU2zOLixTsYQOrOtFXB6oVD7WcUqoZIxAhwgjRpqS7ItrhR/HK+ThzfvGjDZqYqQhBwpi2tUtqiJ+dgPXWM0rSIs7sZ9zNv9dQLRhvog/der7VaVVYtGL6iD7wC7eqS+a1w51aRhDi8WpbrGQTFO9SQingLSiCpjSEGwJQDWU5VOCM2fenvL/jDaJ7Cj8g7Qw3AAAAAElFTkSuQmCC");\n}\n\n.flag.AG,\n.flag.ATG,\n.flag.ag,\n.flag.atg {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAn1BMVEUAAAB9oW4fGQGtjw7NECX80RV/uOLOESb///8Acsb88/TULUAZAQSnESUAOGNSRAZ+aQs/NAXdWGf209fPFio+BAtnQHXCDyMQDQG9nRDmvxPdtxPNqRHrnqZzCRXplZ69GDIAccU1WJzFECR7ChZNBw8IP2M3Z2dtlGxvWwmWfQwwKATtxBTgZ3SYKk8QarmPlLoTaLeRkLWdJ0vmvhOhEoG+AAABDUlEQVQ4y43OaXOCMBSF4duE9LQgq4ps7utY7f7/f1tZjCSQqmecQS7Ph5e29NC2tB484gZrslz9lBAxVj/UuRZZ2Ggn5pNf/ph23KCCGLeXN6I8CYKkqP/KjdHASZvpB5TyNOWcAr8NnFwglExeHEWWiWPBlUBIiFlzCYOQnUS9EytfmusMLZSZYS6yBv6KPLwGKlBmMi4u46wNVCBcz/N2+8OTssN+Vx5d6BDxq3ExutBamdzK6kEsPvrua4E+xPuy65Y/MMF+ZgwzxOeztm+oUHmBY78osx31mwYRqTDC/xDz1s1xC46G0g1HN+E1Uw80QJkZ4R7EtHJT3IdVZjfQDB27F2iEwPlsOP4B7QcfgqeTwMkAAAAASUVORK5CYII=");\n}\n\n.flag.AR,\n.flag.ARG,\n.flag.ar,\n.flag.arg {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAZCAMAAAB0BpxXAAAAP1BMVEX////u1q/oy5jSn1L37dz59O7u3L10rN/R4/T9/Pzozqjfun7koBPhvor05s/Yq3HcozzalA7lxpzXpl/VkhUfGetuAAAAWElEQVQ4y+3SOxKAMAhFUQgkSshX3f9aXYCOUFjm1qd5DLA5gwU/4e4MHknD1ATMJNWuijaMgUqhzDbMY5aRown5OOdFwYaAQXtN4FjDiPyy2n3H9Y+/wBtvcRWqoJAFOQAAAABJRU5ErkJggg==");\n}\n\n.flag.AM,\n.flag.ARM,\n.flag.am,\n.flag.arm {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAD1BMVEXZABIAM6DyqACiDTW2iiiq+uFNAAAAHklEQVQY02NgGFBgjAUwCGIB9BN0wQIYlLAAugkCALbdITUesQdRAAAAAElFTkSuQmCC");\n}\n\n.flag.AW,\n.flag.ABW,\n.flag.aw,\n.flag.abw {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAKlBMVEVBjt6gsG//0QBBj96gsG58o9qqkbfvNkPKepTZan9Wm+GRpdO/jathouOFF8O8AAAAAnRSTlP9/o2EjdMAAAA9SURBVCjPY2A2xgAGDDgErYOxCNokYxG82YUpGDa9IpU4QazasVuE1UnE+2ggBZWwAAYRFwzgSBPtlAkCAFHVa1J3h5tcAAAAAElFTkSuQmCC");\n}\n\n.flag.AU,\n.flag.AUS,\n.flag.au,\n.flag.aus {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAARVBMVEUAIWn5w81QZphpbZkQLnIgPHvsS2nkACvAyNpgdKHicYz////Q1uP99Pd9jbLf4+zg5O0wSoX70trZ3OcQLnGPnbz43OPaT7sJAAAArklEQVQoz7WQ2xaEIAhFyTA0vHSZ+v9PnahlOdlq+TLnRYGNB4GuiRY2GSIjZ9t3DTxJCoIeoESDBXhBBSwwmwVm07xOnon85P0scaqhc3iC9KCziBf3Dubarf3mSsR+Wn+sd+mg08Sx6fpWPmMHud1cFasMS+u5UOfSiwcHqZAWLuh9MzWq5sexSGld1YlhWcKnhgzMoYZThtmoYsKHcbRzRRZjxBJELNuVgv/pC+H0B3jjpdgoAAAAAElFTkSuQmCC");\n}\n\n.flag.AT,\n.flag.AUT,\n.flag.at,\n.flag.aut {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAQMAAAA03l8tAAAABlBMVEXtKTn///9O8W3fAAAAEklEQVQI12NgIAv8BwGSSbIAADA3LNT5TsD+AAAAAElFTkSuQmCC");\n}\n\n.flag.AZ,\n.flag.AZE,\n.flag.az,\n.flag.aze {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAKlBMVEU/nDXtKTkAueR5dTZOiaz1fYf3oajwUl7+6ev2lJz4r7XuNUT7zdH7zNA216A/AAAAOElEQVQY02NQwgIY6CboggUwCEKB5LVwGFMQLhghKF2IIZgmKNqFIZiJTRCrdsljSBYZYwEMAwoA/3cmVGf7nvwAAAAASUVORK5CYII=");\n}\n\n.flag.BS,\n.flag.BHS,\n.flag.bs,\n.flag.bhs {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAM1BMVEVAi3MAN0EAWWgASlYAa34GCwgAHSIAAAAAd4v/xywoVkfvuilfShCAYxa/lSFAMgs/MQvJSo6TAAAAW0lEQVQoz63TuxKAIAxE0agJK77//2ulcqBAb+HWZ4YQFks+o5g0OISKCUIpjRAW6hAqPkZ9YKGLvUVVziN300BpWyFU7D9DePTFLgPXQxcOnxCWgtYMFpd+hRvLVBb8dDVZSQAAAABJRU5ErkJggg==");\n}\n\n.flag.BH,\n.flag.BHR,\n.flag.bh,\n.flag.bhr {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYBAMAAAB6qqLzAAAAJ1BMVEXOESb////20tb88PHtpq7hb3zfZHLXPU7QHzLRHzPXPE7wtLvplp+6qWJJAAAAZElEQVQY02MQBAG1BgYUABYUNFmARVDQFIug6gRMwe0MWMxEMxKqXSgDm0VqmILC7li0n8RmEZqRUDOFvbAJumPRHolF+wlsFqEZicfx6IZCAqQAi/Zd2CxCjyQ80YFmKLYoAgD8YhWfwKLYOwAAAABJRU5ErkJggg==");\n}\n\n.flag.BD,\n.flag.BGD,\n.flag.bd,\n.flag.bgd {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYBAMAAAB6qqLzAAAAGFBMVEUAak70KkHlLUGyOkRrTUd6SkcuXksfYUzbDaCgAAAAUklEQVQY02NgoB1INVIOQxdjERQUFHJAEzQECgoKYyoEAlSliRBBNRTBQIigKKaR6IYqQgSFCAti1Y7VoiSIoDphx2P1JgOLIpYAAQVdOAMtAQB5kwuiqFX2NgAAAABJRU5ErkJggg==");\n}\n\n.flag.BB,\n.flag.BRB,\n.flag.bb,\n.flag.brb {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAALVBMVEUAJn//xyaqkEM/MQjTpB4gGAQwJQZaRg2ffBfvuiO/lRxzWhAAAACviBoPDAKyFauCAAAAYklEQVQoz2NgAAMmQTBQYEAGAy4o4oghOFFQvFBQEk2wbaHPEakMNEHhRNcQUUM0QYmTYolzLqJbFCFm2Iphe7Ww4XYMwcvChrYYgkvrnr/CEHTeGm2C6SNhQ0FKBAdNHAEAi0wclGP3UW4AAAAASUVORK5CYII=");\n}\n\n.flag.BY,\n.flag.BLR,\n.flag.by,\n.flag.blr {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAOVBMVEUAfDDsoqblgYbYQUnaT1bjfIHidHrOFyA0Yyznio/qlZr209XVNT2WeGLfaG6aXUvRJC2bj3fxur4V/dY/AAAAZklEQVQoz63PwRWAIAwDUGrTYgBB3X9YRyAHc/6vaQphbnWf4oRBgYnXmwInk1OBEWRK1XerhwIHBqQx0dFT/VGqNh7RfoVytTxmYGCd+5S8W72KkAhSgpOpwcTrjwKdsKVAwqSLH3bnEGqiS5R6AAAAAElFTkSuQmCC");\n}\n\n.flag.BE,\n.flag.BEL,\n.flag.be,\n.flag.bel {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAjBAMAAAAUF1WdAAAAD1BMVEXtKTkAAAD64EL2oT6mlSxymLhtAAAAGUlEQVQoz2MQBAMRJTAwYICAUcFRwWEhCADCrTMjCu9IjwAAAABJRU5ErkJggg==");\n}\n\n.flag.BZ,\n.flag.BLZ,\n.flag.bz,\n.flag.blz {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAA7VBMVEXZDxm71quuz5ugxor////w8O9RULB3ElcXFpYlJJyIuWu51KnT5MqrzJbM4b66wNWkxpZ3fLeyy6vG3rq92K3T29uZvXnq2dLEwqzx5eDn6upxfKpyfaukw5pOVKW3zrSlwaGmt7jDpZXCoH7B27ORamCnu4LRuaTl8N/i3MPc6tRzrl3y4KPx15d/r069ydXLvpexvMeZupF8e8Pw39fp3diRt4TK28efloSKfm2yhWRuPDCwoIeRq2DExOSwu8bc1Kypsonb3ZxhlzBhmjwZdcf5+vvNzN6/wYjYypvD0t5+roqxqJogesuuqH05DYSvAAAA0klEQVQoz63TVRKDQBAEUGR3k2WRAEGTihF3d3e//3Fyg4FK0d/vq6eH42JPImK4ZMT8D+momJoVdRoGSYEJTVUxDQJDwotlxZaksioQCNKCgOZVuxos6mxIAZhhjVrA7I1UKblmFoAaG5eWNW+/XlUmogbAPEPY8ZxO28FITgHQYAj73rXd8UOgJiKM/WevgTHiBwDMCvVD93T5nLsukjJQPVOm9u+t1/HbVCwKFp5Wbu6j/+7xag4+Yc5q8bJsinkSOgp9Zxnb8FHEsMfIrxB7fiVOJZw8OnZYAAAAAElFTkSuQmCC");\n}\n\n.flag.BJ,\n.flag.BEN,\n.flag.bj,\n.flag.ben {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAgMAAABzfiX9AAAADFBMVEXoES380RYAh1HycSGsqsUBAAAAG0lEQVQY02NYBQShYMAwWJj/wQDMZICAQcAEAH5nZ5nGou1dAAAAAElFTkSuQmCC");\n}\n\n.flag.BM,\n.flag.BMU,\n.flag.bm,\n.flag.bmu {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAA4VBMVEXIEC5nbZnUeo3g5O3////ZWm7xw8oBIWnAyNrGDy3Vf43UfozkuL9gdKH10tcsih+tg3YvjyXgj5jx9PL88PJfc6Htv8jMYnKScFNIgzyyRE1tjVHUoa3YdYbhoq7lrrewxIe7Dirg3rzMuFN7s6H3+PvY3ejWz9y5JDaHeVXCDiuaZVGZZFCHNiyKwIO8HDZ4PSHW6dSOZTK2za3CzJbd266cQTaYoJGIt6W0sXWuPzGdvK+Btsl2SiydqXifj1Kgt4ywm4qIxNrDXUbS09LPfSvSxoTU1qnKTyjApEiNaE+TnmGmAAAA8klEQVQoz73SWXOCMBAH8FUDAeQGQcV6gEp11B7aevTy1vb7f6AmDdAXxvjk/wGys7+ZnQ2AIJYqmEQCkOi7UBREyAttUMrgX6XlwqRZoZAxjHOhRBJ7LkIASNd7fVqzjpwGLsdXVbXVIA+fI8sIofoDGaXI2eh+T9fpaOR6cTaaQK/TsTOIsVYShWKBLsNOyTJl1GieV3YzhWmTXQ+rEvi27nYX8xQy9n/hlCYw+v583y4dhbdM6xB9fZi7Oy60j+HmZx9yofk0PTnOS3tiXoZy3Xh8bc+ex0aV82XkUc2wLKs2AG6GoyCo3sM14f4QN8kvl/oSq3LmixUAAAAASUVORK5CYII=");\n}\n\n.flag.BT,\n.flag.BTN,\n.flag.bt,\n.flag.btn {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAz1BMVEX/1R/5+fn6w7D+Yy3+/v78/Pz/WR//qBr/ThL/1SD/1y362M3639b58O373Vr46KX/ehb/yh7+eEv8rZL843z58978gVf/WRL/1zH8mnf73mP+2Tv6zb76ooP+3Ef75Nz6kGn7dkj789T70cL5spn/qhv467H6lHL644f84nH8vqj677/457j79fP8+Ob86eD6hl/68cn82kf5t6D848/758j2wa/62Zb8yrj8uqP9bTz6zpr64pT6tk/8bDv8YCv8rVb37uX+dDDKysr/ZhSbtK0qAAAACHRSTlP9/////////V+qNIUAAAFMSURBVDjLjdPpcoIwFAVgAtz0sisCDpsgUHfcrWv3vv8zVcXOOC2hnF9h+DiTOyQcJ9VJs8HVgo9trAObDcR/oSxf6tjQ8wbDYnGtY0HZs4xebzweSPI2xgq49IwEgMDndL2Lu2y41Ht2TgiBTb6jWNUonfsmC5jF2b57qIK6TYix/XDUrO+atGqP1hTe0znGc1AEVqNvdTzJn4iggRKRQHXLoT9c2NPx4C0joLYU3lmFtBxaCZynBU0lYiDweJdf0CDJ6aioEQCEiGw4XJDTF6LQD0GjVbBjg5NefkWqBSY6KyacAKSgzJEKJq9potIvgUtd0o+5MhupsC9etXiRL4GyZZN8JKghvZ0CfOGhBMrGhgQjeshmd0MIf/foG2v31Tw/OxC1sCwFlJ/d29dPES+w4c9xv0xAyguvsLg9RahJWfCurircQ7uWw2/OAzNFFY4IKAAAAABJRU5ErkJggg==");\n}\n\n.flag.BO,\n.flag.BOL,\n.flag.bo,\n.flag.bol {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAgMAAABzfiX9AAAACVBMVEXVKx4AeTT54wAKw3EdAAAAFUlEQVQY02NgoD1YBQc0Y4bCAa2YAHXmWafbUCnbAAAAAElFTkSuQmCC");\n}\n\n.flag.BA,\n.flag.BIH,\n.flag.ba,\n.flag.bih {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAALVBMVEUAI5X+ywB/d0oQLYvPqxswTKnL0ekQMJuwut5QaLY/Wa8gPqJgdb3///9QWGaw+VaMAAAAeUlEQVQY02NgYGDo4DYRhAEFBigoX7bYEUOQ4ewBE0zB2VODHTEEGcJSTTAFORo2O2IIsldlmWAIMvDcYXbEEOTcGWqCIcjAmgZxAIogzFuoglBvoQpCvYUmCPEWmiDEW+iCYG+hC4K9hS4I9haGIMhbGIIgbz0A0QCx2SL7cD63XgAAAABJRU5ErkJggg==");\n}\n\n.flag.BW,\n.flag.BWA,\n.flag.bw,\n.flag.bwa {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAElBMVEVtqdIAAAA/Pz/t9PlBQUHs9PmByX+UAAAAI0lEQVQoz2NgGHYg2BgDmDI4KWEAFQZBLIAEQaxmYrV92AEAvTIRzfY9AH0AAAAASUVORK5CYII=");\n}\n\n.flag.BR,\n.flag.BRA,\n.flag.br,\n.flag.bra {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAcCAMAAAAkyw3kAAAAh1BMVEX+3wDu0we+sB0hpDE3qi1KrygInjgAmzoAJ3YToDUPMW8fQIaPjzTn2QU/VFgtTI47WpX43QGuyRKZxBfR0wqov8uNwRl8vB5efqUgPmff1gcQNH4BmzpjtiPBzg2jxhXW7eAfPWeSubggQoetzL/v2gNKbZljdHhLc4ycr2+14cXC4NI6VHmUxPVgAAAA9UlEQVQ4y73UyRKCMAwA0CCLLQUKKvsiuG///31mKIsjIPVCDj1k3kxImgJryYBFoKZJQSMACIx5qCeAkegzkO6hiT39AbP8DIrlmKZjKWDn2RRUC4BVTOqIVwCFOgqN0ENHukDphcYQajv8MCXuYaxgYqd9QbqtO7g/yvLgHy6pi9KqU1v6CXVbtHplhBzdyC99lI7I2XoH1U07E7Mp60Yn/2i22Q0dhUzY6HnroDoo7fAUTX0QfhqU7puxUhI11bk71kw3nopwThjD8uw1Op7vgbPpgbdXWAlZTV/hH0uxzjLJNUMqu7jiKXgyT0H+cS32A3gD3OAiYEPQ1/8AAAAASUVORK5CYII=");\n}\n\n.flag.BN,\n.flag.BRN,\n.flag.bn,\n.flag.brn {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAABR1BMVEX34BdnCRRPBQzzxMn67Gn55kL88PEAAAD///8JBgPWMiHhaXbQFCj9+c2Yig378pzMuRL+/foQDwYtKgn77nmMjIvx1xbkfB3hax1BBAvqlZ0aAgT54eP20tZcBxA6NQX//vQcHBpSUk/19fVnXQlpZDT78JE+Pj51dXX34R7+/On66Va0tLT44yelpaX++9ztrBrdWx389bGyPBqhRlCuEx2lLxjnh5KyJhyjGRsoDwT998Sllg/45DM6OCHq6upyaAr03RZiYmKYmJi+vr7BwcGkmTwsLCzPz8/ZxBTCsBL89r1GPwaPgg3886l5bguwihJcVAjZ2dncpxc0BAnYq6/CDyPBexXmjD/ro2ORbg7IUBzXTx/jdoGTLxdjIQ6DIy7XPE7sn6jHx8ftpa3keIRtCBRZEw6GPkZjHyZSRkfw8PC1DiE//erTAAABIUlEQVQYGY3B1XLCABAAwIveJRR3d3eXKnV3d/f/fy6UyUygHcguaGYTQBsis97ICzARDYSmE/wsjEMqma1ENg8ATvgHjcpULs7z8Fc4Yl+Okprv8cZXrNiyaRiCfWuLS+tm+uVvTvXo/ERU3LUJaVCgQkqmCiciiZzuRafjfCRy1GPWG3kB+lAtwHzWcl9+juhZ9HhIEdIbeViNz0mokL4DDOLHu/2p6XkQSQ16uiZDzCphH8O0vcgGsNO+rxUOSQUUjs2dAyuy7Fur88p4W3duFtGSTOXmaQCGOM4ubxtyvS433F43DoQj9pUoEYwoyfL1VbVaPj1GNWscRjhKLper7HQe7e9tW1AFxtmYWQhacAAmMhliQQkRtDEZQJsu/ADqTiXJks3I9QAAAABJRU5ErkJggg==");\n}\n\n.flag.BG,\n.flag.BGR,\n.flag.bg,\n.flag.bgr {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYAgMAAAD16ldTAAAACVBMVEUAlm7WJhL////BTf+eAAAAFUlEQVQY02NYBQcMVGXSCoTCAVWZADw2T7GdUBaTAAAAAElFTkSuQmCC");\n}\n\n.flag.BF,\n.flag.BFA,\n.flag.bf,\n.flag.bfa {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAALVBMVEV3ZDoAnknvKy14Yzr60BVttDHxPin4nRz6vheYvSmvkCrfzBr3ix72jB4gpEG5oHn8AAAAAXRSTlP+GuMHfQAAAEdJREFUKM9jUMICGIacoFoSFkHdQ1gENZowBNVKXFzcYQYwMBtDgJWLy2Io04BBEAa2eMOZcEE5zymYgqKBooEYgshgSAsCADLrPLD18xGQAAAAAElFTkSuQmCC");\n}\n\n.flag.BI,\n.flag.BDI,\n.flag.bi,\n.flag.bdi {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAWlBMVEX///9y0YTXPk/RHzPzxMnz+/RIw18etTrOESbH7c7t7OQsukbpl6D88fLhanf6/vuc3qid3qmW3aPc2MrniJP++frwtbu4IyfNp5zaTFzBdGvAZ2G9PT3dW2pQSsWXAAAAzUlEQVQoz42TSRKDIBBFvyJ2bAecccr9r5kFEjEGil5QLF7xoPkNAFn6ClaawVYl/JioDJMXAFA3Pq6pAaDIQZRIeP3GKhMiEFHZefyntSvJgESu/z1m2bi6VqIvePnFbK4+i8t6A61/AnhZGJgu6x20fkBqLc3utP6C1m9OdKxPkHo41ZMfLFywCIJqGBTMGgJ7sD4Y4ENzSJ1I8L4xwNvO/seY9ih1rX/bU7a24XA27aPhkV/ohmL1h+K0emPWnjGLDG70KEQPV+y4fgCOXxe97SpR6gAAAABJRU5ErkJggg==");\n}\n\n.flag.KH,\n.flag.KHM,\n.flag.kh,\n.flag.khm {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAaCAMAAADyku75AAAAb1BMVEUCLaHPzs7aACHgeIngACXfACXU1NRxF2JxF2IDLqHi4uLf39/Hw8TYDS7TpKvMtbnIyMja2trKrrHcHDzJu7zDjpbaKkjAwMDRlJ6/sLPEdoLQSF/heYjatbvCbXnQe4bXZHbXhpTFXnC8qq27u7sIHT1WAAAACHRSTlP+/////////kgsYtwAAACuSURBVDjL5dNJDsIwDAXQ2EkNZG46zwO9/xnpCiGVRl3DX3hhPf2VzdjjUhj7KXi/lhtLxCHGHHfJN9i2F2ApBOYBhcjisLMoMgIUaLsITIxVJY4AI5bKmkhj4ejpvK60a8gVkcbJQ04AQKTBT5HG1UOzVTvbGvDrOcQ61yE4rV0IOi/wFM4pUZq+x3wGzSAJlJREUipI5WBOYNbzxXLO63ofduF99gkvH8Vf/swLLRAf6S2QnckAAAAASUVORK5CYII=");\n}\n\n.flag.CM,\n.flag.CMR,\n.flag.cm,\n.flag.cmr {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAHlBMVEXOESb80RYAel7ZQCGINDjyqRjRHCTiZR7ndx2INDk0zy9lAAAAPUlEQVQoz2NQAgNNBjAwFAQDBoigyhAXZDbAIsjRgCnI3hpRgCHIFiiagKm9UByLmcGmWAQT2IZVeKKmEADM8y2ZtlFueQAAAABJRU5ErkJggg==");\n}\n\n.flag.CA,\n.flag.CAN,\n.flag.ca,\n.flag.can {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAM1BMVEX/AAD/MDD/EBD/19f/QED/ICD/r6//////wMD/8PD/oKD/YGD/gID/b2//cHD/UFD/kJAQFQNAAAAAgUlEQVQoz62S2woDIQxEj5doou7l/7+2DwXbwupa2nkIjBwyGAa68oW40vdgKUugmUi2BVAOOGQBjADxFtS8A+xZZ6DW5s8CUJpvVYegAcQ+bBzt3r0bR6fPhzTemPzL+jT7dejhLszPY/I0Yjd3NOJW6xaxhVKoLrbn/2AIvzT8AWsMCOs6h1CtAAAAAElFTkSuQmCC");\n}\n\n.flag.CV,\n.flag.CPV,\n.flag.cv,\n.flag.cpv {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAP1BMVEUAOJP+88P/99k6W3P8/P6knTwjTH8AOJP////PICfgwx3PIin64mf41ST63lKLjUqLjEqEik1IZG3UNSPSKyVE9uWiAAAAAXRSTlP89O1mUQAAAHhJREFUKM/tklsLgCAMhb1tmhe6/v/fGmawCLFV0FPnwcnhQ4+bQliWhPjBG2A/MEA9aguwlYsTPeYV/cuMxhXJqPadU1G6swyBidxUA0PHUiBwIXeugXQ1ZUytjCqSS+86gA9GiH7KZSp9bzUcMM8agTMZgO/+4wo/5hqOVIJxmgAAAABJRU5ErkJggg==");\n}\n\n.flag.KY,\n.flag.CYM,\n.flag.ky,\n.flag.cym {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAA5FBMVEUBIWlgdKHUeY4JKG3yxs1nbpolP33IEC7AyNrYVmu/x9ng5O3f4+ykgJT6+Pp4g4T88fOKkYj21drZ3Oesq43prjxOTX4FJWvSynVEWYGIf4PDwIDnw2IZNnW9vm7WzYuJoMCbXHIhcTYAWCT+/v5lh5+irLewxt/GOjfhiCvZ2OLfkjZ9lnvZzMkdWCDaztuhsatUe39SeHz13uMxNW/FYFVFXZGfqXUzNnDIbVrHvaCMkJ1bZYDUmGtukG+zsKdBeXtCg1vGkWjNLC4NWiyOfHi/maUAUyDWTTzTpk5HcjhWeT1rSu5WAAAA9klEQVQoz8XQ2XKCMBQG4GAwAZQd3HdQq4B7666tttrl/d+nnKmpdsYB7vrfwMn/TSYJEvksh8IIlArwTadEHt0LFEB/IEwZDqEICjCSCZIkmVNDcylVDE0xw1FiHdmsn/JsoHfCun2lssIJ4PPLa2v3u6MQxlQ0Q6HU1YypCfOlqrbOjlO9npLL8mIqDZfhMvDH1rF8kuU3Gf9h7HluKXn48OzekVwgK9iDA2XQ9nr2O0FxIf1gOAz6CeBkMB4PJvGw2fFHI7/TjGGL0sHqfn51rW1pFglzy1q90W43yoXHXPSWql6uWfXCXFdjD4mLql7E6N/zDVdhFLgxamGzAAAAAElFTkSuQmCC");\n}\n\n.flag.CF,\n.flag.CAF,\n.flag.cf,\n.flag.caf {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAARVBMVEX/zgDKwAoBMYIplynSEDSTy5NAZKH///8AMIIolyjwjxFFJWjwsLxfais7VWSHhD1mcE7nvwzIvwqnjXNwSH3MhhcOOXp2KHH9AAAAaklEQVQ4y93NSRKAIAxE0RYnnAIIeP+jWmVW9MZs9S+7XiVwvm0bnjaaHRQGZ4IiKcplgQmIptcByTsTvKK8XZyoorDwjpnaFe68/wuOVFaYeUe/tB0KD5r7f8Gza6sKK80nuFXhire+DG9UNhiZFUzRDQAAAABJRU5ErkJggg==");\n}\n\n.flag.TD,\n.flag.TCD,\n.flag.td,\n.flag.tcd {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAElBMVEXGCy/+ywAAJmTGDDDrihCpkyFr4LrDAAAAAXRSTlP9g+pWxwAAABpJREFUKM9jUAIDVUEwcDYGAQOGUcFRQbyCAPqgSzR3NRKjAAAAAElFTkSuQmCC");\n}\n\n.flag.CL,\n.flag.CHL,\n.flag.cl,\n.flag.chl {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAKlBMVEUAOKVqMWLVKx4AOab////qlI7AzulrMWEQRaxCbb6sv+IgUrGAnNPKe4MtJuTCAAAAAnRSTlP9/o2EjdMAAABESURBVCjPY2A2BgEzF2TAQJLgZmyCKzAFLWb6zMZUecRlBaaglQsWM81mTcYU7DBupsjxmILi5SBQG4oMGJSwgJEsCAD/7Gr8c0BulwAAAABJRU5ErkJggg==");\n}\n\n.flag.CN,\n.flag.CHN,\n.flag.cn,\n.flag.chn {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAIVBMVEXeKRD/3QDgNA/vgQjkSw32pwT7wwLiPw7pZwrmVgzxjgfoZuX/AAAAXklEQVQoz2NgwA2UMEQUGBjaHNAFFzAwKGOozARilgkoQhxWosYKDKwBKIJMgYIpDAzsaLoZBSdgOsfRDGgTSwGqYAuTAQODagAW17M7YIpNxubNtgIsgkwMowAPAAD2ignB69EaTQAAAABJRU5ErkJggg==");\n}\n\n.flag.CO,\n.flag.COL,\n.flag.co,\n.flag.col {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAFVBMVEX80RYAOJPOESaaGkF9hFXMECYCOZGyuUP4AAAAIklEQVQoz2NgGAWowAULYEgUxABi9BM0xgIYgpQwgCrdBAGDOyRlGGexgAAAAABJRU5ErkJggg==");\n}\n\n.flag.KM,\n.flag.COM,\n.flag.km,\n.flag.com {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAY1BMVEU9jjOex5lho1nn8ebOESZIlD55sXP/xh46dcT///9sqWSyKCdTm0o8i0BPlC+HuYFJgjCSv4zO48t+VSw8hmA7gXs5eLHmvyCeqig6e595nyzOuCLz+PLb6tlgolhqZy5jbC7Q/dpQAAAArUlEQVQoz43R2w6DIBBF0UEGyoAtWnu///9XloKYNBGY88TDilsRbucNawC7CxMGemdCAEY/QUYf8lr9pDptFVhJlUX2fIxah4OvQ0v0ggih31egkiSWNwUti1ATKYDRz1KJEhQkf9F+eeh6P0OlFjg4XFlOi/yew4S4Dv8/5u2wBNP1eF+uZhgvvOvCYUKswvkXfhw2Ydj2aqrL7GgMBx5OhgNb1Rm2qwkyqnFff1UYnRYEs0QAAAAASUVORK5CYII=");\n}\n\n.flag.CG,\n.flag.COG,\n.flag.cg,\n.flag.cog {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAKlBMVEUAlEMAlUPcJB/73krzrT66y0jdKiDthjWawkfvljioxkfxoDuLvUZ+uUZGJOr2AAAAAXRSTlP9g+pWxwAAAItJREFUKM9tysENQDAUh/EawMFBIuL0VqhExM3BAjYwghVsYAUbWMEIFtLqa/t/6jv+8qmsgGZt6xRi+ZpeBfJIiH4U6EfEMCKGEZDHXaAbe0KEMeIRx4A1jAHdOBAij6dAMTJWYmTcxOiQx1GgG9sFkceJEK/PaLH5jhaT0WA6GryTkVSejqR+RnoAexFQiUISXxUAAAAASUVORK5CYII=");\n}\n\n.flag.CK,\n.flag.COK,\n.flag.ck,\n.flag.cok {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAS1BMVEUBIWlgdKHg5O3YVmtAWI4fPHswSoXIEC4QLnLAyNryxs3U2eVnbprUeY79+/yKmbq/x9mwutBwgqtQZpigrMf88fP21dpvgar13uPvoiQ3AAAA30lEQVQoz7WR65LDIAiF0SBibKPm1r7/ky6ssU1navbXnsmoB74BJTCM1oAoeB90v92HEb5JE4pWsLkLVMFPjIEfD1kOG3LO8blvk/eTrFFsrplkuaxs0wH6L9L4smAix5RwWS7BWI6eXGJtLYrTtmvrbX9G9RKWWu2uxK4ejB2H+00fU08aw4zv11bTknU8zbmV3iCtWrLVaANXVMDXVH7n5DqTBU72bG3iHknzqYibCbrC03802OegxFdJF0ufY0B3kOQQ+KIkh8DE8sVwhektESdjJtngT81EM/ybfgCcAAmZWoOTDgAAAABJRU5ErkJggg==");\n}\n\n.flag.CR,\n.flag.CRI,\n.flag.cr,\n.flag.cri {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAP1BMVEXOESbRsnvpua2CcmLULkHjeIX6+/j///8AK3/dW2rzxMmLs7qdp3+9xaXj1bkoeExBb1tBZq1KY6Klx9mHvMkwUFmwAAAAUUlEQVQoz9XTORIAIQhEUXDDXWf0/mc1NLQzyx+/BCjIg9FFKGA34c5YawgouDRcAGCsOdcIQClpFgEg99Y6A1Dp79cKGoYZGua0nhdu/cDPLAeKFD3EVE0QAAAAAElFTkSuQmCC");\n}\n\n.flag.CI,\n.flag.CIV,\n.flag.ci,\n.flag.civ {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAD1BMVEUAnmD3fwD///+p3sn81KqjQLolAAAAGElEQVQoz2MQBAMRJTAwYICAUcFRQbyCAPRzJ3OsczPTAAAAAElFTkSuQmCC");\n}\n\n.flag.HR,\n.flag.HRV,\n.flag.hr,\n.flag.hrv {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAhFBMVEX/////i4v/aGj/f3//VFT/u7v/QUEXF5b/AABkZLn/bm7/zMx+YaFWM4JgirTvGB2PkbKwbobgT1n1wcclFYxFioSnoLn/EBDfiZOEPHxQlbL/WFj/MDD/q6v/5OSnYZH/MzMfg56yVH6WXB4wp+NCfoj/NDS+UldzI298DFSHeJVeSqKsIk37AAAAj0lEQVQoz8XNxw4DIQxFUQPBkAxM7yWTXv///8Lag8QoWeTKq6cjGfTK4BfYNCtgkp26vn/PWRKA6bF7VtdzXKUBmF/MI47t655TuCHV7c7V1nQHGt4AEQ4IoQQTzJ0IQhlpKXUkg3DEPbobg3Dgkrsbvn+9JRk2cT4xQ3dQNFsgFnYxL6FSZekZfdDbH+EHirAUn8rfZdMAAAAASUVORK5CYII=");\n}\n\n.flag.CU,\n.flag.CUB,\n.flag.cu,\n.flag.cub {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAATlBMVEX////VMEX88PHtp7ANKIjCFDCiGEDPFCsAKo/fYG/43eDSITfnipXzxMmCG1DbTl9nH1waJoI0JHXYQFLwtr10HVdNIWnniZROIWl1HVZ5UILHAAAAb0lEQVQoz43TSRKAIAxE0aDiF8F5vv9FXeBaOutXRXXoWLt00hgcjQjxpwihXUUIobfCfJCYKg2Cq8swZDoNJbh/krH5C5PMrN+y9PNf6mRVRIF12DflaRw4LYy8HiBe2sLFLxRL4W+tZo9WXPUUXqHrEc6IUEytAAAAAElFTkSuQmCC");\n}\n\n.flag.CY,\n.flag.CYP,\n.flag.cy,\n.flag.cyp {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAARVBMVEX///+xt6THy7724cbqvH/Xfw+QmH3VeAD99u/d4Njt6+Ty1a/vzZ/lq1/iolDaiB/tw4/S1svns3Dfmj+8wbF5g2Obo4sXWHv7AAAAkUlEQVQYGd3BSRaCQAwFwN9jkoaemO5/VH2KyibgVqvwB5jxDfYj4xqXMEDFeEpuCp6hc3P2fvSZKHiccbQLDBVPZSi0CwzFwJmOChSODupcpwGKQB8NJ0Z6qY1xplW6y35kXHFoHtdWAcDYyQpNtBZv1kaoNtMFD9LNBl2SaMQCVkyUhDPSTUwpmi64tiz4TTctpAW3+OsVrgAAAABJRU5ErkJggg==");\n}\n\n.flag.CZ,\n.flag.CZE,\n.flag.cz,\n.flag.cze {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAARVBMVEXXExnz9fldMVZwj7LXFBrrio0oPnHriYz///8RRX6/zdyqHi/QFRwURX3JFiAnVooyX5CdITbP2uVwLU2En7xfgqhiXoONvJBJAAAACHRSTlP+/////////kgsYtwAAAB+SURBVDjLjcxHEoAgEAVR0DEMglnvf1RzGUbg9/pVq0mXUIobA0LmVIMQmu4QmZ4wPr1gdHpDbg0Iw9MXdG2PwbVRg5B9UwHZjSBknjNZ8XMcLMnUF7q8IgLg/05A307AxBIC/bs3DOyeMLh7wKQmBOYdEQKjuwMCux0iuw0uJHMc3CNW1r8AAAAASUVORK5CYII=");\n}\n\n.flag.DK,\n.flag.DNK,\n.flag.dk,\n.flag.dnk {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAeBAMAAACs80HuAAAAD1BMVEXGCy/VSGPGDDD////fdovhlE4KAAAAAXRSTlP+GuMHfQAAAClJREFUKM9jUAIDZWNDJThQYBghgoJgIGxsIogADMZYAKWCWC0awSEPAKZsVc82AYC3AAAAAElFTkSuQmCC");\n}\n\n.flag.DJ,\n.flag.DJI,\n.flag.dj,\n.flag.dji {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAY1BMVEVqsef1xcbv+PZztug+r4gSrSzYGB4SrStqsuf///+w1vIgsjjX6/nE6s80uUn2+v6MxO2r4rXztbfpf4LH4vZ8u+przHqhzvDi9eWJ1pV60YhNwWD64eLiVVnma2/wpqjbMDVRQpFcAAAAAXRSTlP9g+pWxwAAAKtJREFUOMuN0NkSgjAUA1BapDGUVZQd9P+/0heKslhvns8kMwmSx1WSICDjUAiZN0JIJoUQkvdQCJnHQkjqQghJz1Vb6LlqD6mbf1Ct+4Ufzre19eyqBY5KmUkpz1WusTLGmE8n08s+bnr+drpHhG0iB1/VVDlXWhzi4KjI57KaAb/hmrY+rJ7CzuI8W1hmgAC2AyCAugcksLSQwHQABFDXgAR2FhKYZpAkegP2fSKc/aQhAQAAAABJRU5ErkJggg==");\n}\n\n.flag.DM,\n.flag.DMA,\n.flag.dm,\n.flag.dma {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAYFBMVEUAaz/THDDGHC4rKytAPTJ+nipAQECAtZ/////80RYqKSSYLC5+nSqkJS6VjoNqQzeTfCveVGOxHyy2IyyNU6QMWjZ+niveSSncSCiJMjSveRBJSDW8QxS7Tm2HZlu1MmlGHhZsAAAAfUlEQVQoz9XTSRLCUAhFUR5Gk4j8/FYT2/3v0jFYVixnOdPLiAIi7zwed0NP604bGIwX5hTW5yZlEdbpI+ytCCmPVxFEF2i05oXxrIDOLlBncQZqY2R2gQ4WK1DbDZldoMFKCiytgyQXqLcCpNyvIggu/L6evxe+iev58gpvCkQKp08QYFcAAAAASUVORK5CYII=");\n}\n\n.flag.DO,\n.flag.DOM,\n.flag.do,\n.flag.dom {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAWlBMVEX///80V4IzV4HBydPYQFGqucrvr7YALWL////OESaFrYzc3N2MwZvw9OtdbYLyv8XDqKJ3QDOQiYx0e2jDk5hopW2UPkR2rXvRXlettL2ZOTKbhpy9bH/R5dbyk4vSAAAAAXRSTlP9g+pWxwAAAGVJREFUOMvt0LkWgCAMRNEgoiObAu7L//+mfdJQWfnKnNtkqOcZAOgGHv3wY6galsahMbY8IrB0jLE4fiUJgy27fSqgtzlvvgJO9r6WKpjONc0SivdGF4LTikdisA4AjJj3hx/DF+7cINDJhV4uAAAAAElFTkSuQmCC");\n}\n\n.flag.CD,\n.flag.COD,\n.flag.cd,\n.flag.cod {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAeCAMAAABpA6zvAAAAQlBMVEXOECH20BjicB3xuhkQhfDqmxrTKx8Af//31hjo0CXaSh6KsH0sjtbIxUNspZo+lcW6wFFdoKiatW9Omraqul/YyzWj+uowAAAAtUlEQVQ4y43Q2xKDIAxF0agoQVC02v//1ZbgBXQSOM9rsmcCumKz6UYoMz81LcAJLcfUB/sBLugmqQo3tOiEagK/OAvVA1o8ZjxTBRj6cHEz5BbFVaFtFkq7IHe2OnZm1QQVPmBeRftvEVxxmo1hq/QQgrsNn9y4qr4gEeW56g21XH1DpvqCXPUB+WoGpWoKxeoNC9UTFqsHLFcjrKhGWFGNsKKaQamaQLl6wVL1hMVqhBVV2g/BwB0JqIxfPwAAAABJRU5ErkJggg==");\n}\n\n.flag.TL,\n.flag.TLS,\n.flag.tl,\n.flag.tls {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAASFBMVEXcJB8vJQcPDALvuiP2niP3nyNeRg0AAAD/xyblTSCffBf+/v4QEBDr6+vPoR6bm5vWSB7IgRyrq6swMDBbW1uHh4cuLi5xcXHPnTqaAAAAh0lEQVQoz63TyxLCIAyF4dIaflKg1N58/zd1YdVxUcjCrL+ZTA6Hzs+dbXB3tUH68aYmCH4wUADcFJoUAPoxtCjn+KFBgX0lHbgpVCmw5ZLTa32FQioxls/6S0pacozx+ELRy2Ny2R7v1aKVq5czywr7jUfUFLio6QlFTaUQNdVM9J/FtX6FJ3flBuv74gRDAAAAAElFTkSuQmCC");\n}\n\n.flag.EC,\n.flag.ECU,\n.flag.ec,\n.flag.ecu {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAA9lBMVEWyJ0IDTaGAlVD52wqyKESBllD+3AHtHCT/3QADTqJggGbCuyMNVaOCZRddQSCleSiiqmoXW6QmY5rivRy5Jj/z1x59XizfyhM8b5CvjxLjzyzYySPtoybSsQX8wwSoxxiQo0Bwhl5ReWxwpZl2lXNBcXmaK0mpWEyGrH6AqpMfeqZwkIY+hIfJqhTnxQPTvD52WyzIpwerk0A4VH/OwBHqxxa9uEKymkFLRnVlTTe1wxO7ulgxRYd0alugglrGvT1TkUKcqFGlrTVZaZmady9RXW+hk4iBzeO3qZetbGNFfXRmrWSxgH15k45mskDC3ubv9/my090lViSgAAAAAXRSTlP+GuMHfQAAAMhJREFUOMvdzcUOwkAUheGhg4xUoThVghZ3d3fe/2VYlyYd1vzLky/3gjD6qTD4b9jMIhRjw3RCTAw7LVGoMyBEmrAYC+0G6yLsQ01MIxSD/jCeoVm5LC8nvUzcF8Kcsa5UyvmVkYP+r/WN/Hy9jyFT/37NhVxRcro7xDkQ6t45EMCuuMLtWs0/zgXOvQc80C5eqrVa0WZBQrcli5RmlDBgNDndSZI0SEYZkOdT5n5upXjMgFjBeNTFWPFAEPSkqt4NgMiP/RX8AFm1LNtFasN6AAAAAElFTkSuQmCC");\n}\n\n.flag.EG,\n.flag.EGY,\n.flag.eg,\n.flag.egy {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAOVBMVEUAAADXu2Dy58ro1qX+/fr48+bv4rzOESb////9/f3hzIf17NXfyHzr3a3NqjbHoBzn1aDOESXDmQkYz2ycAAAAXUlEQVQ4y+3QOQ6AMAxE0Xgle4D7H5YDGMmmocovracpnI5gacOv8HqFJZtU7K1YyCzC7EOGJtKAfTiBAJYLC8M96pqBxV4Vew/AiqpYAxCVaDQfZtGTUOx7dv/2ADMgFMzubFP8AAAAAElFTkSuQmCC");\n}\n\n.flag.SV,\n.flag.SLV,\n.flag.sv,\n.flag.slv {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAXCAMAAABODP0nAAAAWlBMVEX//////O//9s/X6rsAR6sBR6v/+d////8/dL////+i0ZWXx4HM5bDp6dqhyLelvrRzvIL7662uxs7v8MKL0Iv/88Krwanv8/pmr6uEtrUtnaR3uGldpqiAzICRExgrAAAACHRSTlP+/////////dElM2YAAABfSURBVCjP7dJJDoAwCAXQQhW1gx2cp/tf071NhL3+JXmLD0FVstTqm7AVRqnuGZgIi2FTQlo8eOQhuZxS1shC6Odow0UsRLPu52aA7+iOPthBsAzoOGoqofiO/z++wRtv/hV0LCDfBAAAAABJRU5ErkJggg==");\n}\n\n.flag.GQ,\n.flag.GNQ,\n.flag.gq,\n.flag.gnq {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAhFBMVEWOP1wHccTt7e3X0c4Ac874+Pj8/Pz///8+mgDjIRjy5qYojEXz8/P69dr28Mwag3fcIx0Qe9Eyjtjj8Po0lB682vKbOlF/uOY7mAbm5ubSva1mwono2MlCrmlcUYRjT34KeasNe6K8LjYwYafGKi8nZK9Dl9uvr6/IyMh+y5u95MvZ7OBX9KKrAAAAAXRSTlP+GuMHfQAAAKhJREFUOMuN0OkOgjAQBGAou8Uth4iKHOJ9+/7vZwjQmJjKzM/Jl3ayXjTD4vkrENKhBCHNUUgRCqGZHaRjCUJkZg+BmQNcLEObJEmT8CcDpJttjElTY5yQNmPD3Dzf7Ia0HuGrbZt/MB+h3gYaeJHjDsY8uZEV1zWr2AVz2zwCpYK76+vvO+qq0s47FjKVHu4Fg+cMg/5FMFgIBneCwWuGQf8kGPQwJx8qkCM/iEB9nQAAAABJRU5ErkJggg==");\n}\n\n.flag.ER,\n.flag.ERI,\n.flag.er,\n.flag.eri {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAP1BMVEXqBDerNnXVFUwsmCzsHDRVeMiAV59Bid0SrSv8qChjbi+ZQzPPGjXwOjH6kinzVS7uKTP3fiv1Zi72cS3/vyb+/BJuAAAArElEQVQoz43Q2wLCIAgGYCo6UAGivv+zhq6Vq+n2X3n4BBWej/vptiNQsgfDnC0MbUZ4NhgC8Ai/GZIxUcR+5WknJWUBjAm716iLTBFUyetK984T9H0SQdAMv5lxnUQDUNJyIsBKCq4Dy6W9eUVahcfD5Ty9hZApxQD2X7Ggq6dOgj+CJaNmW0Uf6C0NFLl1LfpC/0IhSdxBDfT2kbtoAUdoAUfoA7dQhXtQyQsr7xFoxTBegwAAAABJRU5ErkJggg==");\n}\n\n.flag.EE,\n.flag.EST,\n.flag.ee,\n.flag.est {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAZBAMAAACx9nFWAAAAD1BMVEUAAAAAcs7///8AJkVUVFRJK4tKAAAAHklEQVQoz2MQxAIYBqGgMRbAMAiBCxbAoIQFDEJBAGOJKS051BtAAAAAAElFTkSuQmCC");\n}\n\n.flag.ET,\n.flag.ETH,\n.flag.et,\n.flag.eth {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAV1BMVEUPR6+FklsaUaFGaojjRhZEnSZ2iGXaEhr83QkHiTAmVp1YdXuipEfOwCgIdlMKZHUVS6qRmlM0X5WzGzaNJVJ4RmN0LGVnL240PJInbm88Y49of3CaoEu2CXfUAAAAnklEQVQoz73Pyw7CIBBG4TODgkJbWnq/vP9zujNSY+vCeBZs/i+ZwP3L+AOsqhir6hxGAIhnULXGBGrVPbxmzWCwgoE5X7i9VgKaRJICZTblsMCKFLYREUtxAC3Y8HyOoQ+b6hb8MSwwyRjbBJPM4ekSkFXsKu+fuWT10CzeLw30+YLLmwDvUabdsIdugLqGwZ1B13bj2LXuHH7o9/ABsVYX6gf7JlYAAAAASUVORK5CYII=");\n}\n\n.flag.FO,\n.flag.FRO,\n.flag.fo,\n.flag.fro {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAdBAMAAAAqZzNAAAAAJFBMVEX///9HUpXtKTnf7PcAZb1XTozp8vnQ4vMBZb1+RHbM4fK20+39jzf7AAAAQklEQVQoz2NgAIEUIaWQAgY0MFQFjUFgCVBwszEcMLS4gABQ0AUOPBgEwWCS0kRBBGBQwgJIEMRqJlbbsbpz2EUHAAeHPE2odssQAAAAAElFTkSuQmCC");\n}\n\n.flag.FJ,\n.flag.FJI,\n.flag.fj,\n.flag.fji {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAvVBMVEVps+fyxs2OiqtgdKFhptbTeo3YVmvIEC4BIWnAyNrg5O3kiJVnbpq/yNn7+vtmr+PWS2HZ3efAQhf88fP21drIRVpsrt1voM2buM5mbZrEWQ/YhHzUegjw8PCx3cXijJrJiIbLkXTZvADN49bPLkjTiJD13uN/uOF+uOCo0Mi1FySjyFRgrIHF0NnHUBLIgYjY2NiF1ZrPsHa5iXDYcBHOhgXknQFIt3uZz7HLYFhdyI6P16/Y0M27zb3c8uYVHlLLAAAA20lEQVQoz9XQxxLCIBAGYKIQjEgCKfZuYu+9v/9jGYSMF0a8+h+Anf0YZgG2VcwX0jgYO2IvIdsCuoiGoBLKSguzpoDZJS10KKV8GAYuxm668rSkWog1eTe8nIpngND3D77frE+hejoNd4NQPB2EQy5qCbf1fv/Y3C9hNky+aNmoJIZ5n2pqGNjode1Lr7tTULLseySV8HxrJ8n11FZQss+HCyrh4D4g5PloQfA9MGIsjlkUGeGq02GMNJAJegu3RchmRj0DBGO+JmQ+GQFjylWEqmXwSyoV8E95AQvtEN53dkXyAAAAAElFTkSuQmCC");\n}\n\n.flag.FI,\n.flag.FIN,\n.flag.fi,\n.flag.fin {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYBAMAAAB6qqLzAAAAFVBMVEUANYC5x9z///8cS444YZwANIC6yN25wbmkAAAAMElEQVQY02NQAgFlBgYWJQRgGISCiYJAIMzAwCwIB2IMYMDKQAJgpaIgVicNkfAEANoyJ4DL1EUnAAAAAElFTkSuQmCC");\n}\n\n.flag.FR,\n.flag.FRA,\n.flag.fr,\n.flag.fra {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAD1BMVEXtKTkAI5X///+ptNv5t70X6cUbAAAAGElEQVQoz2MQBANhJTBwYICAUcFRQbyCAK7MKQicBg83AAAAAElFTkSuQmCC");\n}\n\n.flag.GF,\n.flag.GUF,\n.flag.gf,\n.flag.guf {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAbFBMVEX83AiRuRi+yBJRoSRyrx4VjS3n1gv63AkkkyoLiy/Pzg9fpyEcjyza0Q3v0Qv22wk1mSf32wlGniTSKxn83QkHiTDaEhrxnA4dfC3pZhFjVCayJx6LPiL60An4wwrNGBvvkA7cHRhWWyfgNxaA7xGhAAAAFHRSTlPzv8HPxfLO6eX6wcrrxtTd2+PT9HbczSwAAACWSURBVDjLjc1JEoJAFATRZhJQENTs3wzO3v+OLsAIVnbV+kWWaxsvzVEeRAj7QoRS1AFSdIWUmQghLUTIKRMhpLUI6c7eez8MUbhEp0mAdL2fZwHeRjMzs+sQK/J8mT3e8Wv4mF1qAd5tHO3Yx2EIEIJL6uj1umMlQlwiQthVItxG/8NNNAZxuQh/UQEuUQVC24iQMv8CwB5UlCzbsBIAAAAASUVORK5CYII=");\n}\n\n.flag.PF,\n.flag.PYF,\n.flag.pf,\n.flag.pyf {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAsVBMVEXOECX/tk+2i43y9PrOESb//v5lhMLaS1r////bTV1wjcbIDyTkkmjr7vb/9+v+8d+IoNH3t2f/yHqqhqH++ff/qzbfoJV4kci3xeTb4u9afL73x4fMo7P/0IzHKTvfnYvoq3yySlTBWmXkmXvdmYjEh4zpm13Who3yx5f//fn/1pw+ZbL/6s2Dh7b/3aqLotG1f5j/oh/AZG7VfHemd3i+oKKak7bywobNamm+ECDt5uYgMvG2AAAACHRSTlP+/////////kgsYtwAAACzSURBVDjL5ZNHEoMwDEVtiA2xIfTeO+m93v9gYR0yNuvkLTVvpBl9CYDZJAD4KVGaT0ICSP4E2bY8Lo5EO2mfr+MO8cSFYyq0cyBcckQnb11Ke8Uw2KJmZpVCqXHOzQVT3MC67rvy/lCgxhQT6DbCwKmCK/boyG0uV0Eos4g5GqnESoubVaRbT2R2RATHFsGHOPQ461H1UMeErLHKS0b08V7HvsiNcFCDQPyS9eTr+cvnegOnuCDbYqL39gAAAABJRU5ErkJggg==");\n}\n\n.flag.GA,\n.flag.GAB,\n.flag.ga,\n.flag.gab {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAeAgMAAAAjs7ROAAAACVBMVEUAnmA6dcT80RaPCvp4AAAAFUlEQVQY02NgoCtYBQf0YIbCAR2YAPNdY51lSXDNAAAAAElFTkSuQmCC");\n}\n\n.flag.GM,\n.flag.GMB,\n.flag.gm,\n.flag.gmb {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAElBMVEWGjsY6dyjOESYMHIz///+FjcUzsQhvAAAAAXRSTlP+GuMHfQAAAChJREFUKM9jUMICGIaKoAsWwMAaigECGIyxAJoIYrUdqzsFsYChIggAWI9PB/8YOioAAAAASUVORK5CYII=");\n}\n\n.flag.GE,\n.flag.GEO,\n.flag.ge,\n.flag.geo {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAALVBMVEX/////AAD/v7//Pz//wMD/8/P/f3//19f/5ub/YWH/nZ3/sLD/Ly//gID/QECpnlCHAAAAk0lEQVQoz2NggAJmQUEDBnSALsjughB0KYAKMokhBBMVIGKsLyWvwwRrJ84LgIgKCgrBBBUFBSFiHLukNGCCTQtXN+A2k4GVFSEYEIDTnS5Q4CMoeATGBlqNCWgiqAQFOoKCh2BsnOGJ1UfY/M6xS9oDJtgCDyVs4clqKZkOEyybOBlqKAu28GRXQQg6FeCLdwxBAHsYKbiOyGOgAAAAAElFTkSuQmCC");\n}\n\n.flag.DE,\n.flag.DEU,\n.flag.de,\n.flag.deu {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYAgMAAAD16ldTAAAACVBMVEXdAAAAAAD/zgCNyoGDAAAAFUlEQVQY02MIhQMGqjJpBVbBAVWZAPgZT7HoYeqNAAAAAElFTkSuQmCC");\n}\n\n.flag.GH,\n.flag.GHA,\n.flag.gh,\n.flag.gha {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJ1BMVEUAaz780RYAaz/OESbOEiUAAACCbAvcthMPDQG1lg+dgg3swxQwKAR6YlIEAAAAAXRSTlP9g+pWxwAAAEtJREFUKM9jcDbGACYMQ0VQEAbEC+FMhKBYIhZBmYMYguJpqWFphegqZ4SGdmJoF2+N2IgpGBqKKSjVOWMhpuBGaYQgkxIGUBgqggBnKVEwiejeOwAAAABJRU5ErkJggg==");\n}\n\n.flag.GI,\n.flag.GIB,\n.flag.gi,\n.flag.gib {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAArlBMVEX////39/e/U1jPAAn8/PzHAAnjY2raAAzpZm3UAAsAAACbAQXQGAny8vL09PS4AArVRk64GyNVAAHCOAnFfIAbBACiExmvAAaRAQejAATOmp2+io27Jwa9RwbCcnfbxcbTuru5JizFbnLQq63ksbThrrAuAADESE7TuLnCICmnTB13AAR+OQCtMDe6NjvLMjtiAALdIge5bQbDYAjITgq2VwGSP0KTPkS9AAi3cnZPTm/iAAAAy0lEQVQoz53P1xKCMBAF0BQSTAJSpKP0Yhe7/v+P+czABMb7mD2TuwvAn1EAgBBCAJQJl5VbdD6jbZlNSKdFsRARap2J6gpf4jCMLriagLV9irsuOtm1fMW0aN5f23ZeTZHKllSS3LN2lrWzvDyRXqNjRjBjmDCsS7uXjBAWBIwQtpRD7Aqf80/gYjnUCT8IzsWBE2k1RIbhe8ej5xsGgv3ZohdKqWnu96ZJKe1PgDqItnlqw9cRqLprdR58rOZB7T4Trm9zf9xcR+APFrAUctS1tzYAAAAASUVORK5CYII=");\n}\n\n.flag.GR,\n.flag.GRC,\n.flag.gr,\n.flag.grc {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAgMAAABzfiX9AAAADFBMVEUMXq////9Kh8PD1+sc/9mlAAAAKklEQVQY02NgYHVggAFcTM5QMMDBBOIYqFLsTIImEHRDKBzgYBIEFJsAALoFJ2TsUBu2AAAAAElFTkSuQmCC");\n}\n\n.flag.GL,\n.flag.GRL,\n.flag.gl,\n.flag.grl {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJ1BMVEX////QDDPohpnVIkX87/L54OX0wsvxsr/cSWbfWHPldYzrlabbSGWxUx9nAAAAj0lEQVQoz2NgoBlgTSrFEOM2FBQ0QhNjaRQEglZUQWeQmKBwAIrgRLCg4AFkMXaImKA0siAPVFAYWZARKijogCQYCBNMgIkoYQEMQAUGMAUHoTpAggIwQUMkQTFYAAgiCUpCBbmQBQULIIKJKIImkGAxRBEUBitNFkQRFJQC+sVJEE1QULhpsiCGICqgUBAANkcdSdbxxVsAAAAASUVORK5CYII=");\n}\n\n.flag.GD,\n.flag.GRD,\n.flag.gd,\n.flag.grd {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAbFBMVEX80RbUJyIjhlMSgFhKVEn5xBTWMiEAel7OESbPsiL1zhgHfVtlnUHkahyRrDN6pDujsi/WQyHiZR3lcB2FqDeGSziznirdxh7lyRzsyxq/WiihMzDRHCT3vhPtkhnrixlHk0jypxl7fjq9uifbhgG8AAAAx0lEQVQoz5XT2Q6DIBAF0AHFoYor7nbR9v//sdZawIoNvS83GU5CQASuQ4i9l4Dh2OVs6x3k15u9Fazq08/U1Qp9FA0cphHoK4iRaO2sFRGacKZpt2ddGr3WNhDRK8MtC0vvvfIFZ5oYNEy8z1xBNUGaASvyvGCQUTXUkD5GTXsuJe8NZsARIFXTYQKYBrRCCnmmIQEgBxCTO9VbF1IWB1vj92HkwWGcr+evC3f8hK6PwvGZOT/cNUEcB7be/zOM2XsHg8DeS5725xrneLCWvQAAAABJRU5ErkJggg==");\n}\n\n.flag.GP,\n.flag.GLP,\n.flag.gp,\n.flag.glp {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAh1BMVEUAAAACQwAAIgDdxAsAAAIAI4cAMwAAJIj83QkAAAAQDgCuozBPXV8WM3xfaVgACAAwKgEgHAEAVwAwR2/t0AiOfQU/OAK9ryieiwURaAAAGADt0hB3e0vNuiBfUwOumQbNtAc/U2gAEABPRQJvYQOelzi9qQZqfwMQIQB+lAQoVQF+bwSOjECMgg6qAAAAAXRSTlP+GuMHfQAAAWVJREFUOMt1ktm2gyAMRUVukYAjzrNW7fz/33dptaItPTwkmr0SchbGwXqpt5TCUOWOPceDMYMOdVUx5SqvqLMDe1qpIqUq57TfgGFq02paenK3Tt2lZzU9aJ+GK+iWNeblUqSYT3jpycu0rktXjbbd2rXny1i2w9P3Ck7/LOyWKTd35Ntlyv0yIbeVI9PDWT/sNNyBlv3DR2v10fj7EpPnU4ZhwEtHb44Q+P4YJAN8aAE9k5imDADsnnRddm+TRAsCEkiYZnGBOI6oFI78Qd8RCSEQIXFLF+Gg0YEgyVzk1+uboxHWjoaCEJHnN7yCFGe+DpTTC3HLFEejeGA6EArvcj5tQNpoR7+8LMYteGp+gayZvVnU+r9A8E/dZpk8R4XpaUFgnWp5PktfCUJEA7IhWP1ps4tJkDymriMkPsazNxkwOD5R7egn2Y5xl/nj7OGReD9A+c6SoAmCQP/MdmLAvv6B8Q8o+yuQH5IUZwAAAABJRU5ErkJggg==");\n}\n\n.flag.GU,\n.flag.GUM,\n.flag.gu,\n.flag.gum {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAVCAMAAAADxFwsAAAAeFBMVEXCHzmW0OxmN2t3w8MNKHaS2/xePXLGIDgAKXvGITmQPGGQTmpsTH6IQGpka51wO2xAocE0qF5ovayF1Oevx+KBW3mahqe8mUjQxGkJh9h/n5iyuXuXtrSJgqiIsbNXmmeSpJZNn9a/h5e7oblqrNiVxsm05P0sdJ7LAldAAAAACHRSTlP9/////////V+qNIUAAABxSURBVCjPzdM3EoAwDARAB8mYDCbnDP//IS9gpJKrt7hREJ7PiieEZUX8C0IcAAvGWgYcqFyea0NDmIrF6RpIqCTOBaIiYYrlXh6YktDIW67XaOiOybk9XUJ3tKbPsibizDEa2pC3mSqEv1/PB+T+zAtTThsh36bO6AAAAABJRU5ErkJggg==");\n}\n\n.flag.GT,\n.flag.GTM,\n.flag.gt,\n.flag.gtm {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAZCAMAAAB0BpxXAAAAXVBMVEX////g59maroTj16m6yaT09/P09PFJl9DC3O/p7+bu4ZOqu5rX382PiGiVon3T2MqYoVjCz7f5+vrM3MSitpGYm3R3k12BnGjKvKzP3bz+++rx5Z306Z/w46vf17vmoc6yAAAAaUlEQVQ4y+3Stw6AMAwE0EsFh4QSev3/z2QNk2Fgy61+OkuWUaQpkaR8jJDhV2jMG9hpNDMaz8JKnE71UXPQSmzuWDGxjRLX7jQNxEAazKJU7SsOQgRtogzErrZ12/Xt+OaOBCvym/0Fb1tLFihEHgDLAAAAAElFTkSuQmCC");\n}\n\n.flag.GG,\n.flag.GGY,\n.flag.gg,\n.flag.ggy {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJFBMVEX////oES353Rb5w8ruTGHwdSH1qhvrNyj40RbtTCTsPVT0nR3fS35zAAAAZUlEQVQoz2NggAJDQUFhBnRAgmBoKBbBInUsgkKKtBV0gYKFQopSMDaDIAhMBGIhRSAhCeZCBFtDQ0ODVIFEBJKgEhwgCbalpaUlqQGJDCTBQmxmCsIEIYB+fscf8tuyKYpiJEEA44Af4yfh9owAAAAASUVORK5CYII=");\n}\n\n.flag.GN,\n.flag.GIN,\n.flag.gn,\n.flag.gin {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAFVBMVEXOECXOESb80RYAlGCovC7tjxrskBsC56JSAAAAAXRSTlP9g+pWxwAAACBJREFUKM9jYBQEATElMHA2BgMGiKDoqOCoIEwQNYUAADVVSCfgcZ/QAAAAAElFTkSuQmCC");\n}\n\n.flag.GW,\n.flag.GNB,\n.flag.gw,\n.flag.gnb {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAIVBMVEXOESYAnkn80RbtkBpFbjwEAAC8DiEjAgaQCxqcDBxVBg4bYLCCAAAAOUlEQVQY02NgAANmJWTAQE/BBGyCC7AJRmAKspWGVmCqZA9NYGARRAYgwaUTMAUz2RowBUFgMAkCAEjfH7SkK65IAAAAAElFTkSuQmCC");\n}\n\n.flag.GY,\n.flag.GUY,\n.flag.gy,\n.flag.guy {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAgVBMVEUAnkkRpVX+8bZYwIgkrGN0ypzB59P80RbOESYJCAGk3L7t+PFAt3caAgSOCxo1BAn8/fX93lf943H+7J781SvZ8OSM063/9s7+6If82UC9nBDcthS1DiFnCBPBDyP/+uUfGgIfGgJ+aQt+aAtPQgb9/O5OQQa9qE5DS0d6uJeAemJ4QqG6AAAAsElEQVQoz42TVxLCMAwFQyiSIRB6h4QS2v0PiLHNRE6Rtd9vZp9sKXq9k0hEqj6jYbcTDuJkfHnGxaDfCwXxfFL3w2yRrdYJH0Q8puoKsNtuuBJo0P49ACzn8bSthA1aP/xoK4F/rN/QWAJLnN9QL0GCxO9KFKQEehB/tQRWoH6vRD2YS4JafROo9TAPb5iseRhqZZ6HWLkHL638FzpraCmsNbhmxipYXOkpiI9Leq5frY4Y/eRr36cAAAAASUVORK5CYII=");\n}\n\n.flag.HT,\n.flag.HTI,\n.flag.ht,\n.flag.hti {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAUVBMVEUAIJ/2zdTJ1cJ6e5/K0OtQkEr////SEDTXJkgYNamdqHn3+fC7qsOVwZ3m5c1hmlHJpDHs59z848dQba0QEBDNZmTXh19voHz84Lu0hjjIpTBzGy2qAAAAU0lEQVQoz2NgGAU0AZxQQFAhCxsbrzg3GwsRCvl4mYhSKMQsyMcsgamQHQ0w8jCLiQrzMKKLYypkkhKRFGAirJCLnxUEuAgq5IACggpxgVGFeAEAvUgOmZnoHJcAAAAASUVORK5CYII=");\n}\n\n.flag.HN,\n.flag.HND,\n.flag.hn,\n.flag.hnd {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAG1BMVEUAc8////9Vot/g7fnv9vx9t+YSfdPS5fao0O4m4Cd/AAAAQUlEQVQY02NgGFCghAUwCEJAI4iQgHKggsIpINLNEEUQCEQD4UyYoCFIUARVUDwZRJoVogiKgLnijlBBrE4aUAAAhVoQix6fUHcAAAAASUVORK5CYII=");\n}\n\n.flag.HK,\n.flag.HKG,\n.flag.hk,\n.flag.hkg {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAANlBMVEXeKA/qeGn3yMLmXUz75OL98vHvlIjeKRD////th3n519PkUT3xoZfiQy3oa1nzrqXgNh/jUT0/tP8hAAAAAXRSTlP+GuMHfQAAAJRJREFUOMvd08sNAzEIRdHBBnzxd9J/s6kgHktZJayP0APBdZWjuq5fhbkdwZYYJ/CucNRRCPwJtlKKmyJj5nsH1b11oztgsoGATdasqgLzM6wEXSI8AT02GTE1eWUP8bydOle0D+la76f13BFpubEe4DDQlbTaAwykklNN7GFWYJVp6B6OnlIupTSLw3uMv/mZr+Abp+scdpIFX0UAAAAASUVORK5CYII=");\n}\n\n.flag.HU,\n.flag.HUN,\n.flag.hu,\n.flag.hun {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAD1BMVEXNKj5Db03///+Cn4jdcH1rDt86AAAAHklEQVQY02NgGFDgggUwKGEB9BM0xgIYBLEAugkCAA3bITVQzOs7AAAAAElFTkSuQmCC");\n}\n\n.flag.IS,\n.flag.ISL,\n.flag.is,\n.flag.isl {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAdBAMAAAAqZzNAAAAAG1BMVEUBUZz////A1ObcHjUCUpz2xsyBqc3o7/a/0+YtMruUAAAAAXRSTlP+GuMHfQAAADhJREFUKM9jcAEBp2BjMRc4cGAYfoJKIKAebCyuBAcaDIJgEGwsiAQYjLEAEgSxmonFdiWGkRHyAMPXhW+2p/5SAAAAAElFTkSuQmCC");\n}\n\n.flag.IN,\n.flag.IND,\n.flag.in,\n.flag.ind {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJ1BMVEX/////mTMSiAfY2O2pqdeDg8bCwuOPj8tjY7e2tt2entJvb7xlZbj+tLZ3AAAAOUlEQVQoz2MQxAIYhoogXsByNMIBQ9B8smUwhmCZ15J0DMENHi3cxKk0xWYmW2tEAn73KWEBQ0UQAHj7LkjxXc8wAAAAAElFTkSuQmCC");\n}\n\n.flag.ID,\n.flag.IDN,\n.flag.id,\n.flag.idn {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAgMAAABzfiX9AAAADFBMVEX/////AAD/f3//AQHNXVckAAAAF0lEQVQY02O4GgoF4QyDgbkKDhgGFwAA0P04aY5rCYgAAAAASUVORK5CYII=");\n}\n\n.flag.IR,\n.flag.IRN,\n.flag.ir,\n.flag.irn {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAXCAMAAABODP0nAAAAUVBMVEXaAACe1KvjRUXxmZnaAAAjn0DwkZHfJibsd3f////kSkpduHOo2LRfunQkn0FYtW7jPz/ujIyj1q/0sLCY0ab62dn2v7/zqKhDrVyMy5r97++GuGN/AAAACXRSTlP9/////////f2Mg7y3AAAAiklEQVQoz92PsRKEIAxEg9xFISIII6j//6EXQKuzSO2SzJuwWySwfEVa4FXB3ZEnIu/cDd/AXeEaiHY4ZhWVmtuLF+L/fIAR6iG4lbJJgjrlnJIgmFEXzIJgwsQl2jEE0Y7GnOfT1ZNG1KhXBt7ACu61GxUTjMNgA5e1FTwwqvinG90fAT4iwauCP4TbGUYnV3DMAAAAAElFTkSuQmCC");\n}\n\n.flag.IQ,\n.flag.IRQ,\n.flag.iq,\n.flag.irq {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAM1BMVEXOECWl0Lrp9O6/3s///f1/vJ1xtZMAAAD////OESbP5toVhU1Am20/mmyQxapfq4VQo3lSLMJmAAAAAXRSTlP9g+pWxwAAAGNJREFUOMvt0EEOgCAMRFFKmToCAvc/rStXBsSEJX/90kzq3DmVcxuugYFThS70n9A8hWRU8UNokQTJeGF0Ua2oAaRgBGG55dxqlZhSQhlAAwAR9QAUXfisD3/e84LHZBuugTd42CCCgiyR9gAAAABJRU5ErkJggg==");\n}\n\n.flag.IE,\n.flag.IRL,\n.flag.ie,\n.flag.irl {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAD1BMVEX/iD4Wm2L///+y3sv/176zaFdvAAAAF0lEQVQY02MQBANhJTBwYICAUcHBJAgAHJ0eZQMU55UAAAAASUVORK5CYII=");\n}\n\n.flag.IM,\n.flag.IMN,\n.flag.im,\n.flag.imn {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAilBMVEXPFCvSzsrc3Nz19fXSfIfKHzTNSVnJESjMEinKLEDHSknAOzvHXmvCHDLTo6jMZnPHU1Tkx8vLln3bx6nFOEnHRVO6e3HIkXXKn6TKn5fLUhrIf4i9cCrGUGDPn4q9Sy3Rho7NLUHVzJLd0ovVv8LLHCXSkZnit7vTqq/z5+jOuYvEp3DCnV/t7e074otqAAAAeUlEQVQYGd3BRwKCMBRAwQcE/g+92Bv27v2vpxeQZOXCGf6X8mF3gIgwYJyq3XadoKvZdMR3Mi/DYxtVsF4KQ9JeJHk1IlfDID1B9niaIsxxsbfgHgWHBAe9RGVtzCbGod63Cqo4VeFZ8ZI0+QIvRZDhJZ7gx8b8whv8pgVlegsDCgAAAABJRU5ErkJggg==");\n}\n\n.flag.IL,\n.flag.ISR,\n.flag.il,\n.flag.isr {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAdCAMAAADvl95BAAAAM1BMVEX////Cz+5Lcs2OpuBcgNI9Z8n3+f0AOLi3xuu/ze3e5fZ2k9khUsEPQ7ymueYzX8ZCbMvN/KBjAAAAbUlEQVQ4y9WTSw6AIAxES2lBfsL9T6u4104iifEtuppM/0TL2UAognwpTCCvJiaC6ZKqnSh4kcbcRHx4VmqRse9DihqWucZpHGu2kneekTvZjgFy7FeNataId33iVN3azdwtDL2eP7wC/NfLOQC4WhA4gpKDGQAAAABJRU5ErkJggg==");\n}\n\n.flag.IT,\n.flag.ITA,\n.flag.it,\n.flag.ita {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAD1BMVEUAkkbOKzf///+q28Hvt7vgJlTcAAAAGUlEQVQoz2NgAANmJTBwFAQDhlHBUUG8ggBRSidzkDNWIwAAAABJRU5ErkJggg==");\n}\n\n.flag.JM,\n.flag.JAM,\n.flag.jm,\n.flag.jam {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAALVBMVEX+0QAAAAAAmzoSDwD4zwHyxgAZoTSYuxeCawCJcQCSuhgeojMfojMhojPVrwBemeiWAAAAgUlEQVQY023RwQ2AIAwF0H+Aq0lXcAq5MYJbmDiAF4+O4A6u4AiO4DpSoWqxPb6U8PkAbm7V7BHoAaUH4NH1ajft+QXEOokNbAS6dfsa46tjthspZGVbSTDrYwVZ0xQTpJAiu2IKmwrZ6uPWRZ9Ii2AwwlvPtApRJtWZJf++44y4AGk2PZ/nYcIzAAAAAElFTkSuQmCC");\n}\n\n.flag.JP,\n.flag.JPN,\n.flag.jp,\n.flag.jpn {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJ1BMVEX///+8AC355+vIL1Pqr73VX3vegJbyz9fhj6LADznRT27NP2DqsL6WBkFXAAAAXklEQVQoz2NgoDdgOpajgCG2UVBQCl30pCAQTEEVYxcEgwIUQWaIoAGKYCNEUAJFMBAiKIoiaAgRFEYRFIQCbCqlCZuJ1Xas7sTqIwZPLH5nYFqIJZQYmNxSFOgeiQChfg9XF5eK2QAAAABJRU5ErkJggg==");\n}\n\n.flag.JE,\n.flag.JEY,\n.flag.je,\n.flag.jey {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAflBMVEX////2zdHqlqD87e776uzWNUj0yc7ODyX//f3RHjPrnKXQHDDXOUvhbXrYP1DgaHXfY3LQGi/zwsjqoKny4qTpk53ekkTpkZvVMkLs3Jfpp6ronTfXRDX//PHjzGfn0XDks6jbfDvirDPqtzbheDb00rrsrI3uvULLWjzhkDGG5NwUAAABCUlEQVQoz42T7ZqCIBCFB1OhtCwh00f7rt26/xvcERYZCrY9PxQY4HWOM8D5ZifA037vz8VuwzmsOOdZTVZVp5TqyNk6wy0rEHKO73U6ravj8XDopmm6xvBcjgdnSxwWW3sHOzdNc7f3bwsMLmc2pvm5mcjrpb98mXGuqYx82MLx5fnRP6WjLvxUDT/BxbpvbjfMTiQe1YmVhi+G63crDLVkEJDhV+lpGE5pFaA66XCRMBajOuUjv9SPHP6Wvgyp8ElJ9q+NGt22n9C/yQhjYRVLxtozHYnYYw0H8psDhrtfOAFCZlIqvJQi5XtlRlV7ZfZOJShXuG+tACE+tsJrc8X4QNslZvDYrj+d2w/y/o7CEAAAAABJRU5ErkJggg==");\n}\n\n.flag.JO,\n.flag.JOR,\n.flag.jo,\n.flag.jor {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAOVBMVEUAAADzwcY0XzY0BAlAm21AQECfKSzOESb///8Aej3aS1uaDBzRHzL42t2bDBzULkHmh5JkeFpkNDmS7NDKAAAAY0lEQVQoz43QQQ6AIAxE0SLKiIKo9z+sRhqDC+z89UubVjYvXMDqSUhSgKQASQGSoimcU7cPBBY3d1KYTFrhnpM1tUKXCwcTu5o/Rt9zjN0aGIb4k3DshRZTaLMHMuyGHIvxAjjaEhDK4xL+AAAAAElFTkSuQmCC");\n}\n\n.flag.KZ,\n.flag.KAZ,\n.flag.kz,\n.flag.kaz {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAM1BMVEUAr8phuIFvuHYQsb0xs6UfsrE/tZpUt4ovs6b+xQx9umyGu2WfvVJKtpHvwxeQu13PwC6ofxUkAAAAmElEQVQoz6WSwQ7DMAhDAwiwm6Td/3/tDrssSdVFGkf0BMa4lO1yjT3wOuoeKEfugXn43ALgd+Ck0VJSciVF+8j1SrL1hZQ2avQ8SVIwgzG2zEGSTBQbQb2+J0LtMzExa9c6gC8JPXnWdF6Pq1tGJDJdmz8eg0C4ewf0hz0wC02HLPbUJRQV0fTmM4tjJWB/hGI7ZtvB3aw3Td0Ecu+54W4AAAAASUVORK5CYII=");\n}\n\n.flag.KE,\n.flag.KEN,\n.flag.ke,\n.flag.ken {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAUVBMVEUAAAC7AQHdgIAmAADl5eXl7+UBZgHZcnIAZgC7AABRAADMQEDBLy9pAAAyczIwMDAQEBBAQgDY3di4UFCjAADQ0NCAgIBgh2CQkJAYWQDmoKBlCIy5AAAAmUlEQVQ4y9WRyw6DIBBFr2Ipw0PFt/7/h7az6IJRA4tuPAmB3JzcDAA8jq47n66Ze8AqoJ8zlcsG65zFtmTEvlFU16S4OaURDJ5FP8gcb8FILNIoc1SUEiYWpyDi6iSqQM5RUFkRlrwnWyQeByn8r7F4xttbF7/jS/D7GZlDm5R1Z3FfRayl2LYmOhd5z4jfFaPROife8QjxAw+XGXSXe9vGAAAAAElFTkSuQmCC");\n}\n\n.flag.KI,\n.flag.KIR,\n.flag.ki,\n.flag.kir {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAgVBMVEXv5+oYMHD////GzNy+Z3Hkv8PIEBDesLbFd4C5V2Pz8/eLl7dvfqaMmLhEV4s1SoJSZJTFDg740AB+i68nPXncggLvvwDRXQPIGg23v9NgcJzIJQvorwCpssrVaQXQSgfFGQz1zQDKQwnGLwnfkgDgjQDU2OTYxFDi03vu5rZRY5M4CaL6AAAACnRSTlP8////5PL/8Obhjyud7gAAARFJREFUKM+NkImugjAQRaetgrJVpJtsBcT1/z/wtayKCbxJyCnDSe8M4CwrNo8udZN9t+H7NZNctlIKHsfOqhhftb7V57q8boiOozLOy+znwl/RUXGmlHK2RBU3sixlVqkNsZJc5LngcmPGSrcir+tctLpa/z1ciLMpIfi62Nzy2op1zvVC9PaH484F7Lk98ev5eDxfGIO7Ox723kgg2BYpJnqW3kejJyB0Ck4MoZlRmkaWzDRmAkkiRIMLmei/EXr7hFwCiqJkInRJJmokdMRAFh8ARWEY2oiRNAnDhNpRTCOaCH5qJd+faQZlqTlYaaZNGm6feL/jIfaDwLpF6LAQRSwoCCkCZkboF+nJAP2z/gCvnR084pgM9wAAAABJRU5ErkJggg==");\n}\n\n.flag.KW,\n.flag.KWT,\n.flag.kw,\n.flag.kwt {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAJFBMVEUAAAD///8Aej3OESbeX21Vpn5BCxEIKRgAUymNCxoAcjnBDyM+gG8gAAAATUlEQVQY02OoUsIEDAxN2ATZF2ERZODAJshQhU0Qw1iwIHsoKgALMgiiAvoKsrmgArDgZGNUABLLNsYU5DTGFGTbjEVwsjGmYDammDEAor02RGMqg7YAAAAASUVORK5CYII=");\n}\n\n.flag.KG,\n.flag.KGZ,\n.flag.kg,\n.flag.kgz {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYBAMAAAB6qqLzAAAAMFBMVEX/AAD/sAD/UAD/oAD/cAD/QAD/wAD/kAD/8AD/MAD/YAD/4AD/gAD/GAD/0AD//wDINHCxAAAAgklEQVQY02NgoDfg1FK9gCG2xlC4FF30UnZbxkNNNMGFG0+0SGehivHWmZTOWfwmAEWQVUI6MmhjswKqoNgTpxC3xAUogkxi6ubFJYloKi18zn850oxqJufpEvnP7s/RHLpsu6NJtRCaOyfZtWVs00UT5A0XFj41Ad3zvEGLJtA9FgCBRSUPxoTUWgAAAABJRU5ErkJggg==");\n}\n\n.flag.LA,\n.flag.LAO,\n.flag.la,\n.flag.lao {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJ1BMVEWbFjXOESabFzf///8AKGgBJ2c0VIfw8vZQa5eAlLSgr8fI0N4gQ3uPvoTKAAAAAXRSTlP+GuMHfQAAAFVJREFUKM9jEMQCGOgmyKSEARQYQlwwgCtc0G31rhQMwcnGxpbogh7GQNCCJugOEixBEzwMErRBE0wGCZphE7QhxkystmN1J3Yfubgi+R1rKA1oxAEA7A9c3kKd8BcAAAAASUVORK5CYII=");\n}\n\n.flag.LV,\n.flag.LVA,\n.flag.lv,\n.flag.lva {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUAQMAAADFiO34AAAABlBMVEWeMDn///+ut+dDAAAAEklEQVQI12NgIBH8BwEsJIkAAKwEE+3AWvguAAAAAElFTkSuQmCC");\n}\n\n.flag.LB,\n.flag.LBN,\n.flag.lb,\n.flag.lbn {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAP1BMVEXtGyMvtnEPq1s/vHzyVVv//f0AplHxU1n////tHCQfsWav48jv+vSV2ra/6dN/0qdfx5HW8eNvzZzbXFlPwoebhZrvAAAACHRSTlP9/////////sajZT8AAACUSURBVDjL5dPLDgMhCAVQgXqH4tvO/39rt61OdNbtXbAwJ2gIOve8Fed+Ch6PWzmc1zFR8nSm/gIWgPINmE2YaA8jVQZS28FA1dgq+rZjAhggS2sYTyKGAFbiEuZMDADVaAl9Y2MhAFLKCrYeRADIycMjx6tTaipAUNUQNgNvjGk4VzD3qLWEGY7b8/qoX9vzl5/rDXxKIaya/qD4AAAAAElFTkSuQmCC");\n}\n\n.flag.LS,\n.flag.LSO,\n.flag.ls,\n.flag.lso {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAANlBMVEUAlEM/Pz9lZWV/f3/9/v0CAgKPj48AIJ8AlUP///+8vLzPz8/v7+/f398fHx8vLy+fn59PT09zsOZCAAAAAXRSTlP9g+pWxwAAAGFJREFUOMvtzkkOwCAIQFEGpRXn+1+2dk2iHMC/JC8APM7gwi0MyaRqZ8HCoMzDAxOLsA8SiQsORN9pidG1McdVPsPaf9jyESK25TqWA6zUiSbhrMcfi4posT/C6wou3MIPDB8g750ZaJ0AAAAASUVORK5CYII=");\n}\n\n.flag.LR,\n.flag.LBR,\n.flag.lr,\n.flag.lbr {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAVCAMAAAADxFwsAAAANlBMVEXfhZhkUX1TH1NMaJXvwszvwssAKGjPR2P///+/CjBqgaZ9kbLO1uIYPHZmaZLp7PGdrMSaZ4i5Qx90AAAAWUlEQVQoz8XQOQ6AMAxEUZPAj7Ox3P+yVGmtoeLVI/nLxpJqyD4NG0DzkAGMDJx7yCBf7mMqp7s7kErIgHv2rDWC1Ci+Z1sei7nIZFVkh0hvLKI/G+XT6vAF+EQWV9KTaOcAAAAASUVORK5CYII=");\n}\n\n.flag.LY,\n.flag.LBY,\n.flag.ly,\n.flag.lby {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAG1BMVEUjnkYAAADnABMfHx9xcXHAwMAwMDBFRUXPz8+rn9MXAAAALklEQVQY02NQwgIYaCEoiAUQEDRxxhQUbhYuxBAUcRQOTSRKEKt2rBYRdie9AAAq8R55cd7EcAAAAABJRU5ErkJggg==");\n}\n\n.flag.LI,\n.flag.LIE,\n.flag.li,\n.flag.lie {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAV1BMVEUAK3+LdBxaTgkLLm0AKHxxZB+5nCXOESYAJXg/OBMAIWU1Q018by4AHnHpxDRJTzoAHVncujF2cklKQxo3SmBpZDKtlzYPKVWVgSv71DupjiVkWyBpWBVMEWERAAAAXUlEQVQoz+3PRw6AMAxE0TjEwU4Pvd3/nBzBYYOExF+/xYxSTzOm0fmuyVHMK5HsMp6aEb3kYrBWa2tnaSdtcAECBPHJstcj1TSIGydmZh4bjpMrxZF6t76xH34e3uVzD6wKgmdUAAAAAElFTkSuQmCC");\n}\n\n.flag.LT,\n.flag.LTU,\n.flag.lt,\n.flag.ltu {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYAgMAAAD16ldTAAAACVBMVEXBJy0AakT9uRO6V9nyAAAAFUlEQVQY02NYBQcMVGWGwgF1mTQCAF49T7GuEQs4AAAAAElFTkSuQmCC");\n}\n\n.flag.LU,\n.flag.LUX,\n.flag.lu,\n.flag.lux {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYAgMAAAD16ldTAAAACVBMVEXtKTkAod7///8YqkgeAAAAFUlEQVQY02NgoBFYBQfUZYbCAVWZAPgZT7EeR7VTAAAAAElFTkSuQmCC");\n}\n\n.flag.MO,\n.flag.MAC,\n.flag.mo,\n.flag.mac {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAS1BMVEUOdGGGubDD3dglgnA8j3+Vwrqky8QPdWL///9Ll4ktglldopUee1201M5Sk09pqZ3w9/bS5eK0vTY8iVXh7ux4safSyi6zvTely8QsOr8PAAAAAXRSTlP+GuMHfQAAAKlJREFUOMvdk9sKwzAIhqMx05x6btf3f9LZDgaDYQq72v4LJfDxRQNxji/FuR8FU7oGpm0rbXC+M3cd85RaxpnZ+7NZYFEXZ8SsrSsGmKbCsYpU4vJ++YdlIopgbC3jgfwisngCb4ERQt1HNYYaIBpgL5pBjUfPBkj1JIejIlkzrjgKAqCMuFozEkDoA5EWANNI8RWyjM6H2zO7/Tx6pqxsyOpzf/FnvgMfWGQc92vH/soAAAAASUVORK5CYII=");\n}\n\n.flag.MK,\n.flag.MKD,\n.flag.mk,\n.flag.mkd {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAMFBMVEX51hbOICjzwBjaTiLkeh7gZyDuqRrsnBvVPSTcWSLxtBjRLCf2yxbOHyfmhx3mhh7oX2dPAAAAw0lEQVQY02MwY2CoFgSBA0xgajsDQzKDoBkDkyGIl8AOIoUVGJIFGQSBovwbgVwHFiAh/QEoBhIUnMSwAkhOYAYSXQzKghBBwSAGR0HBBm5BQREGVUGYoGAQW6OgjKLgjQSwGFRQMOio4BVfwRiIGExQMKgivLQdKibIwJXuMrkRyJjKwBAJpCQsXcoWMIABUMacgaEYzscqiFU7VosQTnJEcxLU8RLIjgd5UxbNmygBogkRNGPgQwTdA0jQYQtkbNEBAHgKPmhpzmYhAAAAAElFTkSuQmCC");\n}\n\n.flag.MG,\n.flag.MDG,\n.flag.mg,\n.flag.mdg {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAGFBMVEUAfTn////8PTIAfjp+XTZWqXz9fnepk3lpgAtyAAAAAXRSTlP+GuMHfQAAAB9JREFUKM9jEAQDMSVkwDAqKO6CDKCCosZIwGAkCwIAcRhIc5cNL1IAAAAASUVORK5CYII=");\n}\n\n.flag.MW,\n.flag.MWI,\n.flag.mw,\n.flag.mwi {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAIVBMVEXOESYAAAAznjUWAQM0nDQ1BAluCBNMBQ1aBg9/CRa3DiHb5SsEAAAAYklEQVQoz2MQxAIYYAzTsvRgdEHzmWlpM4tRBYU7U4tNy2YYogiKzTAOSzXuTEQRbGuOYmBYapGOLCg8w5wBCII7DZEEJTKsQIKL2wqRVRqahgJBsDBU+5AGTkoYQGWoCAIA3CUzq4wFS+cAAAAASUVORK5CYII=");\n}\n\n.flag.MY,\n.flag.MYS,\n.flag.my,\n.flag.mys {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAPFBMVEXZPz9mADPPNjl+ZDPMAAD///8UEF3mf3/zwMAAAGZQQEb/zAA1K1DYrA/wwAaQcyyggCZgTT+wjR+vjCAG8B+KAAAAg0lEQVQoz63ROxLDIBAEUey1Rm7+SPe/qwMFdrCFCfRSpugqCDhejnAdxX7G73B3XMNWByB0Dd+OAGA1gxRtSNN07QCxlBKnN+ZkgFpKqWk2VGpAtpqq5Wn6LADRus3TqHSAnPXveXQUG1p5cKSfn9kc4eFw009H8GyLwv3uT++LltMf2s0Rk/ZL0FMAAAAASUVORK5CYII=");\n}\n\n.flag.MV,\n.flag.MDV,\n.flag.mv,\n.flag.mdv {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAMFBMVEXSDzMAfjrSEDSeKzWNMzUAfTkyl2D////AGDOQx6lvto+428cEgDwPhUVQpnfv9/JzkBP1AAAAAXRSTlP+GuMHfQAAAExJREFUKM9jYFLCAAoM9BRsNkYCFlBBR0EkIEJYUG5X4lEMwfmJoRgqj1UBCVE0QclaLGaeLiRWJVYzz8xPJNadgoKhBL2JNZQGLuIAYR5H52EZ6mEAAAAASUVORK5CYII=");\n}\n\n.flag.ML,\n.flag.MLI,\n.flag.ml,\n.flag.mli {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAElBMVEXOECYUtTr80RbtjxquxyGuyCKjAxX9AAAAHklEQVQoz2MQBANRJTAwYIAAiKDIqOCoIEwQNYUAAPaxJ3WCs2XbAAAAAElFTkSuQmCC");\n}\n\n.flag.MT,\n.flag.MLT,\n.flag.mt,\n.flag.mlt {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAM1BMVEXPEyr23+K/tLTjpK2xrKvTmJ67oaH////PFCvLy8vGmp3gs7bgtLjmtrurmJTBj5PLiY/HwyfHAAAAAXRSTlP+GuMHfQAAAFFJREFUOMvt0DsOgDAMA9AkzQdDP9z/tLCD1AwsSPVovSExxUu2Z4juvsmZgwf2DGy1Q63yFAq0C2BTOFxV3UviRoPzl89EsJUcTA++4IK/gxfabR7af4FUXAAAAABJRU5ErkJggg==");\n}\n\n.flag.MH,\n.flag.MHL,\n.flag.mh,\n.flag.mhl {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAVCAMAAAADxFwsAAAAzFBMVEX////bdAEwRXMgUaAwXadQd7U/aq4AOJPddQAPQ5mQqNDx8/kSPYeaYyywwd6/zuSFXDpfg7sDO5Xg5/L3+fuAnMlykcPeewzFpYXV0tN0WEXp7PLXcwP8/f4aP4IlQnuQXzOlZSTd3OCkuNhIcLKasNRqi8DToGrTehh7WkHdhSLKspvVcgXUllTc4+/j5OnCt7C9k2rLxsfWiDEfQH7w8fO4yOE5ZavHjVHPwbXCfze+qpmKpM2ytcGWh4ByiLAaTJ4jU6LH0+fS3OzDb4x6AAABE0lEQVQoz43T2VbCMBAG4ECTtFlsbaEFWyuKCriALO4bLu//TnaSJqeA1eYqF99J5p9JkNtotU9QM+Z5DWB7z/MsZNT5k5XQwYQTyupZbzzUkPgi4Jjtshawy6s7hAA6NCg2HY432UCz6QFSC+rjHdj5YVUOjoH1+jcIGegyAieKGG+z1VO3VPcjVSMcKYLQBr9VbFze2fXDonoFGY79hFDD9lsQIFNKnBKdUfeROYnJfARsusxBZednkbnFTMayQxNg9voQVcJtjBDYai4K9R1v9aoKZcEWEOAr+dydkYXy4nrykqE8GH38OnNk2eMy141w66FMJ/2hbUQtlOnzfFZpRA2U6eKN0+jf54ve17jRr/kBh1Mh+Hah75sAAAAASUVORK5CYII=");\n}\n\n.flag.MQ,\n.flag.MTQ,\n.flag.mq,\n.flag.mtq {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAPFBMVEUgQo26xNxmfbGLnMTI0ONYcaouTZWQocf///8hQo48WZzk6PHV2+p0ibhKZaOClb+suNXy9PjW3OqdrM5Jyi73AAAAAXRSTlP9g+pWxwAAAQNJREFUOMu1lMGOxSAIRasBpAhW7f//6yzaTlVeMm8zLG9O4ILgtu1rMDM7cdtuMAKc5MAUINEIloKIIS3gpR5zxt0UxJc2BVrAfMoHj3zI4nHHCi05EENvtoApaXBgTGeuI0iau2tmp9xhaobiyT2lM8cRlFgvFd+MhMAA2nDKSPFSZfIoiEjOY0HEu3Rywczs1Y2/jH8Av/Z4d02IH96ankk845ESAlzjHkCRV33nSKbmt4dMV7AH/LBmvZZ1zaqGJA4EDQfN4C6m4I9LLMN8XMo5xBU8MudQRhC5wXOHL2icAa47fPaxska0dowgWWCIaC2OpUsFgGMtjb/q0MwfP8UPxHsifYgZVt0AAAAASUVORK5CYII=");\n}\n\n.flag.MR,\n.flag.MRT,\n.flag.mr,\n.flag.mrt {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAM1BMVEXNKT1AeiZghx/WtAf/xAB7kRowdCnNKj4AYjMCYTIQaC/vvQOQmRagnxMgbiy/qwxQgSMBUdT8AAAAAXRSTlP9g+pWxwAAAJpJREFUOMvVk9sOwyAIhkV+WD2tff+nnelhqWm13C3jxohfgB/QuZfJnPshGCaThTswRiPovQWMIswi8TmiMsDvYUTaMwO+cVzA/bksS2kcF1B0PWrarUKVHljaukoPVGij6nxtVXM6qdXE3fYQ0lcoJVC/jxmYfVUS/QzkUcMreVgeT4Z4w5ieRyjV1LQ9UzCumXlx78E/+K4fGncfbmVDdvMAAAAASUVORK5CYII=");\n}\n\n.flag.MU,\n.flag.MUS,\n.flag.mu,\n.flag.mus {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAHlBMVEUApVH/1QAaIG3qKDm2JkWMejZAsj0bIWz91ADoJzlaCl/hAAAALElEQVQoz2OYbIwBLBnoJuiCBTAUKWEAdfoJhmIBDI2CGECCfoJpWADDgAIAZ5dK6eNZmaUAAAAASUVORK5CYII=");\n}\n\n.flag.YT,\n.flag.MYT,\n.flag.yt,\n.flag.myt {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAA51BMVEX////FxcUWFpafn5/Z2dm+vr7u7u7////S0tLf39/JKQ6zs7P319KkpKT0ysOHh4eMjIzRLA8TE5DfYUzniXnKRA398vDJyckVFYr1y8T65OHqlojvsKXHx9uZmZndoZfke2q6urrV1dWVlZXVMRXDw8N8fLKpqamBgYGKir0yMo6pqc+3t7fUiHq3XQfcVD1oaGisrKx9fX2Tk5O2ts/8/PzVkofyvbTso5ZbW1vt7fXj4+PQb1/r6+vgrqffwr3hbluVlbpycnJGRohMTJMUFInSe22+hhe+kRi/libgurOXl8K9kyT0y0IQAAAAAXRSTlP+GuMHfQAAAbRJREFUOMul09dy2zAQBVAJ7S5Egp1UqN4gq1Ddcm/pxfn/78mD8xBJdCZl3zA4MwvM3q1U8EdVqfw9zFx4cDMXbpY3Grnr5W6el8F85I4Qty6bzZ731Fi5Xq8VN8ugF8fxZbzCKkuQNGKg6fW8Mui2kuQqa2UJvOQKCdBye83G/3wGEOrwUokyqPy6VpA303a7fX7efr4BFNV9dQKN1c4EcswiFkUsYmOAO9o6x9Ah0hsJOY/YjLEZi+aA3Ggi5wgOaaAl3coxY+P3H94yNsUtST2g4RH0SQ+kEHIesVm/PWPRHELIgSb/EAobkLbFvXz++OalprgvrLaBFYeQ7NZo4vJb7Wd1wUl3tpYOoeK68APSw4ewloZhWgu7QlPgF5qrwzcqwwvjE78Il1/T9PsyvLAUmII7qmyEHW4fassvafp5GXYtN6Uj7BsLTOzF6KX1aOH4gDX9E9iBAALxuOjeLRZ33U+PYggIdE5gAEBNtFbYa73HXomJArA9gVQHds6v4XF2QJ1OY1asr6uaG9+8OwvWTtDhunq9LsqDS2TM2a5frW443xjSr68rvXr4t1X4LfwBrZs3C5ZPvrUAAAAASUVORK5CYII=");\n}\n\n.flag.MX,\n.flag.MEX,\n.flag.mx,\n.flag.mex {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAXCAMAAABODP0nAAAAilBMVEXNECXm5deCXUG7pXHvrrWqzMHIyKX////OESYAaEfu7+TW1LVuQiZkRDKoeVT39fKwtYr169e1zsS6vZXR0redhm9ooKGljINbnp7e387n1cfcrq3T0a2x1NvI6OanbEJ1VEDauXjYup+KubrAkWd8vMe3mH66sKfrubKOoKTOtoSklWRKkI9sWEt0Xo6XAAAAAXRSTlP89O1mUQAAAHdJREFUKM9j4EQGrOxIgIUDCTAwjCqEKBRUkmeSIkKhjKIKHy8PP0GFgozMQHU8ooRN5NZiYlJjUuAioFBYQwRooq66uDABhSJCEprK2qLijGwEFHJxc6lK6IiJcTMScqMkmxwzsywbG2HP8AsISQswjiYz0hQCAOOXHtBwW44mAAAAAElFTkSuQmCC");\n}\n\n.flag.FM,\n.flag.FSM,\n.flag.fm,\n.flag.fsm {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAVBAMAAADGNLEtAAAAG1BMVEV1st3n8vqIvOJ9tt/9/v6y1Ou+2+/T5/Sy1Oyb02ibAAAAP0lEQVQY02NgIB0wKWARDBTFImjijEXQtJmBbMAEoVAdwJgMItUEUARLwFxGd8IqsZpJErAIJtbvWEOJiRyrAdYMBYZuZK7lAAAAAElFTkSuQmCC");\n}\n\n.flag.MD,\n.flag.MDA,\n.flag.md,\n.flag.mda {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAkFBMVEUARq7hugF2WC2FXz+qozrPqQJwVSXMCS//0gDujw9pTx58XC3wxQChhg0/MBi/nAWzORRrUhh5XR6DZR+HZiiZdAxgYjlaQiGVGRZQPiatYyrSmgF4SQ6sYwrGpADEkQGFgEqvjgoXQY2Ka0Q2TmR1TCnMNBzDfwdycUJlYSqkKRZtaE6hUAxdVxg9S0+YakKn2tOlAAAAhElEQVQoz83SNxLDMAwEQAYDosWoHJwt5/j/37ll4Rmw1NVb4ObAWJyFirLM4rBZQd9ACvSWn2tVAQnzzmN1cAUJcQwhXEROQa7HV98/pDAEtO47QIMStwQ0w/Nzb48SyRu796097XVJQuGuU71Zk2WU2ZVS2BUkLAO64Glb8/m/2X/4A1rfExgCJ78JAAAAAElFTkSuQmCC");\n}\n\n.flag.MC,\n.flag.MCO,\n.flag.mc,\n.flag.mco {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAgAQMAAABaY6hDAAAABlBMVEXOESb///9W4q7JAAAAEElEQVQI12NgoDH4DwK0IwHykk+xonqt7gAAAABJRU5ErkJggg==");\n}\n\n.flag.MN,\n.flag.MNG,\n.flag.mn,\n.flag.mng {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAALVBMVEUAZrPaIDJJTYf/2QDjTyX2qwzwjBTfNyvmXiHqcRztfRj9zgNIT4j4twn0oA8yAhU1AAAAWklEQVQY02MQBAMhBjA4COExoAgqIgQdsQiKR2BTmY5FUGIbFsEyayyCUlmOmIIiGZgqhSNuOTtiCIaGTsYUDJ+ORWV0GhaVccnYtM8g1iJsTsIRngQEodEBABWyIo6noem1AAAAAElFTkSuQmCC");\n}\n\n.flag.ME,\n.flag.MNE,\n.flag.me,\n.flag.mne {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAUVBMVEXEAwjNnTPENBXDCQnKkzDBJBLEQhnTrjvHfSrIii7EFAvEOhfCSBvFVB52c1LDijDHYSLHdymHek7GaCTQoTWXhzaphj+Xf0OpZTG6gjOegEZoMhC2AAAAj0lEQVQoz63SSRIDMQgDQLDBI7zNPln+/9DcU4ntqkTnvghE02BooqH8CP0YjPse+9ARKaBErg09QlhzQEjwTahminWFmmkTJmFkswwW14TBGLetVrCFNhTm7bqezNIps9i81XqbrdOaAhU5Tyl678CcUI6j4DF3oIIWkYWc770wUpK303wdRYx/n9lnOJgXvZ8Hd+ApatsAAAAASUVORK5CYII=");\n}\n\n.flag.MS,\n.flag.MSR,\n.flag.ms,\n.flag.msr {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAtFBMVEUBIWnyxs1nbppgdKEAor0AIGfYVmvIEC7AyNoAnrkuZ5M+VYqmPwb8+vu/x9kbN3b22N3g5O3Ueo7TeY3f4+yYRBP88fMsh47Z3OcAmrNldYmAh4ZtgpF9aD1Jg3wJkIsPehwFfzouSIE2XY8AdYkAUV6acFKITyhSaB9AV1e4YwAAiaARWWeqRxRwkI9eV1RwqJM/pIQtSTQgY2xwqXsReisAjWNVIwAwkFZVflocm6FHYRSUXZUeAAAA0klEQVQoz9XQxxKDIBQF0GdFElRMYje9997//78CgzFZGFnnLmAenJk7AKbS0oDFQsjiu9owFSiL2hRUQM48DaCCcljJLMdxIkoDGyGbrREbnVKISiJujDwyWIsxHi0xjut5NUtkB5RXB5RGfBYQ6+P5dqXj+rtcaylmU+WP0TzFbKj5MYP6ZtctoGDv7/miHB5v+wIK9vlwTgvYOXW/qn+EwUe7f5HDYdi5H879MHQl0J0Scu09SduQQEgJWfRmfiJz4Kb+2p9kUgcGDLLEhT/KC0hSDxL08Yr9AAAAAElFTkSuQmCC");\n}\n\n.flag.MA,\n.flag.MAR,\n.flag.ma,\n.flag.mar {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAG1BMVEXBJy22KS06TjCHOC6fMS1/Oi5ESzBmQi8rUzDm0+j4AAAAM0lEQVQoz2NgGL6AvQBTTFAsURBD0EOjqQVDkFnZyABTf5IaphiLepEDhiCjAbPA8A1aAE6IBLhFmViXAAAAAElFTkSuQmCC");\n}\n\n.flag.MZ,\n.flag.MOZ,\n.flag.mz,\n.flag.moz {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAwFBMVEUAAABISEj+8o/LEDMAAACPwLxLS0v84QAAcWjSEDTVHTDaNSrBEDE3AgxzOEUeAQfRDzPiWyB3CB0HAgDndxrxqQ30uAm5DCxdSEeOCCHqmBCWmJkZZGH3xwY0WFsJbGWIMUX71wLQLESlDCnoixKhCSbUXBnlbB3d2K1sbGyLZQPhqhyBgYHOzcHdRCetITyeKEH98Y/2yX6rCii9c2thBReGbFz10AOvqYJoEBE6NAWnbwmxnQDOwVh0axXq1Sux+eZ8AAAAAXRSTlP+GuMHfQAAANxJREFUOMuN0cd2wjAQQFElIognFwy4m5LQa3qv//9XWTiHrITnre9RmVGXk44oxc1QCNFjISQKhRBuh0KIPxZCdC6E0DCnGnoA0+riRDWMPdC+Ds/cKWDxlK6yIgP6g5YjpaBovX1ugwcAZl0ntOVgu3v/3iVJDOAHzhPtx9em2h9+VvXno67zap1v2tX+8W/yzhOjLHh+PazXuW54I4t++bKcm2XR+GubetArQYdtdwqsrZczvT93d/e/696VOdURzo2RQJsaEbweGRGMjZFAmxgR9EZGBBumcuwXkKYmCRjY5UEAAAAASUVORK5CYII=");\n}\n\n.flag.MM,\n.flag.MMR,\n.flag.mm,\n.flag.mmr {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAS1BMVEX+ywDM7Mv7+fJAtj/qKDnpKDg0sjI0sjP+ywD////zfonsQ1H719r+21Dm9uZawFn2naTuUF74tLn/7KDk9eOz4rON1IzA57/X8Nerw/7WAAAAAXRSTlP+GuMHfQAAAJxJREFUOMvV0EkOwyAMBVCwIa0ZQpr5/ictHRIVShx2Vf8CIevJ2AhxrYoQfwq9r4TDUAkB6qAn8gXYXPJMRNNXsSlAIAIW4iIfWSlmfV4XLHdESUkkHj49f7qZmzG0G2sDvwyOLzfi2dbvlu3Z94Tt6ZBDrZJ00fR9PExa1zl0BJEYIMdDS84qrbR1ZFloun0Gw8Jb8Vqa8Si/hHf9fxwRdAZrkgAAAABJRU5ErkJggg==");\n}\n\n.flag.NA,\n.flag.NAM,\n.flag.na,\n.flag.nam {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAzFBMVEUAlUP+zQEImUn+9fcQPnihlC/UGjwANYDSEDT9/PzSEjb2ztXogpXfUWwIO4XWJEUgSHDaOVb74+fuobASQ4nzvsjXLk3W3+vU7d+GzaY1q2pPdKjo9u4SnVH86+6omSvYthOUjTWf17jm6/NJtHmUqsrf8uc0X5vrk6P42uBAaKDbQ1/wsLzjaoGrvNXhXnZQZVjldYqfs8/6/PyJocTf5u9AsHKU0rDq7vX88PKr3MFebVF3e0TApx84VmSYjzPCqR5+mb9UuIFgb1Ar3ucZAAABMUlEQVQ4y4XS6XKCMBSG4cMSQVGJG9hFFm1VEBRrbWtd297/PTUiJhEjfr/feSaTOaAVrj11Zno6KOyeviJTvx+2p6uMoyFWdzsVX3EdU8+Fmrffe3lOiVlmRmmYIP9w8NEfzw06FutqTjcNVd+TJM9XGfemzFlWai0e5GOIEZLIEMKUM3iu2X0EOInuVpK2rkq5aoXjyoTLwmTtIuSuk7QLB0bjistCTUWbDUrB+mtZxNFQw1g7huGS5yaUO4fZctyYcZdhuAx4Lhgyjg8JNy7RrFItf8ogCkd2MGFZwxh+AAjC+nsxdw5HdrPGXifgTiHhWjyn9GUQhZecZTy/gGj1nwXH6XOl3xN2YDs1nX6y1bnBkUXcucc3OTLu3As4PoxX3z24HxLuF+B+OHOKOYB/YtwoD3EyzHYAAAAASUVORK5CYII=");\n}\n\n.flag.NR,\n.flag.NRU,\n.flag.nr,\n.flag.nru {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAJFBMVEUAK3/VrC5Qbaf///8qTpTw8vcQOIegsM9geq/f5O9AYJ9wiLd024YBAAAAMklEQVQY02NgGMpAEAvALggCS7wwTWDZOdsBUzDYFFMwI9i0DUOQqdhcAdNQJSWq+hIAYa8IgTmDXnwAAAAASUVORK5CYII=");\n}\n\n.flag.NP,\n.flag.NPL,\n.flag.np,\n.flag.npl {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAxCAMAAACf+RsMAAAAgVBMVEXcFDwbM4cQRJnv8vhuJme/zeSlHVEAOJP///96I2LP2evKFkPlT23eIkgwXafCF0XgMVTnXXkpMIL3xc/98fOKpM7yp7b74ufuip5JcbJELHgMNY7pbIX509viQGAgUaDwmKrf5vHRFT+0Gkvre5H0tsJcKG9ri8CVH1evwN2EIV7bYgCjAAABm0lEQVQ4y43U6ZaCIBQA4GtWWEKBuOWWrTPN+z/gIIriQnL/3XO+A95F4HLzrALQJrKEATodreDhEaDItYEAh/y6s4JwztDFtYEAv/lKUQrC/Y2+dqqHAHsHRVYQ7ltkLkqHAKJTP64NBPjLNx8rKDt1s4GiU85SpwZISF/UG512JohZzDH9UlQDMQCLm4QJWXSdyq+fGawrYDIJCaRYFRWMi5Inhpi3WVoko05Fk2/kYdJmice08v1M22kJSanSeNwpMX5VVFs1idtvZNOeik5141ftoUWazljXKbnT+mTO+8XI5I+qQz9AprgcR7MWMtoZYrwUfrA5Wi3uFznAdiN8xyA7KCYcYyCVWXYwjqn3qkpsPrODqReKwXiV+fYGUs67pXjx2iTliaxPE2I6U0Lab09NTLULSF5aHj4NsjmRFIlKudqgmWyvDns4zGgiJSyHPB2Wbizl1VT0UQYFrD0uztWdNbxOmFc+PTx+hpyTO4VPAryACoNRDtuDyfyH0eTCa7YsV+Ag12AvV6GSgLLtSogXyG2gTQj5DxajNPKFOVDvAAAAAElFTkSuQmCC");\n background-size: contain;\n}\n\n.flag.NL,\n.flag.NLD,\n.flag.nl,\n.flag.nld {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAgMAAABzfiX9AAAACVBMVEUhRov///+uHCiDi+U+AAAAFUlEQVQY02NYBQcMtGKGwgHNmLQHACMlWadYLf7+AAAAAElFTkSuQmCC");\n}\n\n.flag.NZ,\n.flag.NZL,\n.flag.nz,\n.flag.nzl {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAS1BMVEUBIWnUeY7g5O0QLnJobZryxs1gdKHIEC7AyNrYVmsfO3rNd4rMTGQyS4X8+vu/x9n22N1SW42dfJr88fPZ3OdBQHjTXnDMiJvNLkbyVu06AAAAmklEQVQoz92QyQ7DIAxESQgxOwRI2///0uKypFGjiksvnQPY+EmDhwg2rySLA3C8l0kwciUcIFrA1n1BEfzAKD1q7pxL3kcLYPOZcuvaTColOwgX6kN1J2PgyTor2ejROnqfsD+tsHX3dWZiWnCZUtXnUP95U/QNa/EcaHhshTT1boMWOKKv0IIh/yVJx7hd632M1HrQ2vwyyycwywbEVirFRwAAAABJRU5ErkJggg==");\n}\n\n.flag.NI,\n.flag.NIC,\n.flag.ni,\n.flag.nic {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAM1BMVEUAZ8bV48iesrmsuJv17tL2+/zG3br////49OD8+e/u4q/Jzq+92Cqy1TG11DLA2inx6L8SIXR/AAAATUlEQVQYGe3BOwKDMBBDQQG2nzaQz/1Pm17bUjKjxz1oTJlGJDNnmSTCKI6DToQf574vTBBpfq7ve5JEGttam0kivQo8SKLxKNPocYs/5eoIyVduk4wAAAAASUVORK5CYII=");\n}\n\n.flag.NE,\n.flag.NER,\n.flag.ne,\n.flag.ner {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAiBAMAAADfS4Y4AAAAIVBMVEUNsCv////gUgb1xayv5bnofEP87uXvo3riXBXhXBT308Cdj1xZAAAAUUlEQVQoz2NQwgIYhp+gMRbAIAgFYqXhiTA2XNBCSakLXVCsSUlJIxFNUBxkQSGaoChIMJAYQazaxSYpKWmiWyRoqaQ0C8OdKI53wQIYRgYAAF6WO9NsHTxyAAAAAElFTkSuQmCC");\n}\n\n.flag.NG,\n.flag.NGA,\n.flag.ng,\n.flag.nga {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUAgMAAACCKJcoAAAACVBMVEUAh1H///+q18VeAlDgAAAAFUlEQVQI12NgYGBQDQ2NYICAYcUEAOKRFw2YFuXeAAAAAElFTkSuQmCC");\n}\n\n.flag.KP,\n.flag.PRK,\n.flag.kp,\n.flag.prk {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAANlBMVEXtHCf+6OrzZGv6uLzxVV3tGiXvLDYCT6Kzssz////1dn381df4pan5srb7x8n1f4XwRk/3mZ5jG2kVAAAAYklEQVQYGaXBixHDIAwFwQME8uNjO/03mxKkSXbxJDwJT+JK4hfDppFQi6rWS8SkhlQGgXPu2ve9J4FS6b2zGwHpQ6eoEViaDJYeAqbRNGsZRGxJOi+xYY/xvysJT8KT8KQv1DYLH0ST+zUAAAAASUVORK5CYII=");\n}\n\n.flag.NO,\n.flag.NOR,\n.flag.no,\n.flag.nor {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAdBAMAAAAqZzNAAAAAJ1BMVEXvKiyvu8/xRkfvKy0AKGj///+6xNahr8fzVFXwPT8BKGj//v54jK6Zgt+rAAAAAXRSTlP+GuMHfQAAAE5JREFUKM9jYDYGgqkpLqXNxjBgwDCkBZVAoBUo2KQEBwxbQ0EAKBgKB9EMgmBwxOWgIAIwLHEBAi8wCQNeDChcvIJYzcRqO1Z3DrvoAADRhJHdGoS+qgAAAABJRU5ErkJggg==");\n}\n\n.flag.OM,\n.flag.OMN,\n.flag.om,\n.flag.omn {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAKlBMVEX////bFhsAgADzsbNKXAnmW17naW3hPEDypaf76+v1urvpen7um53tlZfX+7IwAAAAP0lEQVQY02MQBAEGNCAotjsRU1D4zkJMwa6ZHZiCWZPLMQVF0wMxBU0FgwWNUQGDIBZAZ0EXVAARVEIFdBMEABIJJaFkAQecAAAAAElFTkSuQmCC");\n}\n\n.flag.PK,\n.flag.PAK,\n.flag.pk,\n.flag.pak {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAANlBMVEX///+ctabQ3NViiXLg6OMfVzdQfGMAQRwxZUcQTCoPTClwlH/w9PGwxLjA0Mdvk36AoI5Pe2Ll19D6AAAAjUlEQVQ4y92TzRLDIAiEV0V+qibp+79sDtHkkJZ4bTkx8LkzCwicIW7gd8FsU6AFm1Jk0v7ABxVrzyInD4zIR5IAdcAC6oYK1eCAActoNrvc38E4FEWya+bL6D8p4j0FBoBeM2ABcJkV9eYItK5pyd0MAFpVRBOpu+s6SpUfrmc5Ks2e75G3jfOffK577LpLFTQFgZZfAAAAAElFTkSuQmCC");\n}\n\n.flag.PW,\n.flag.PLW,\n.flag.pw,\n.flag.plw {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAZBAMAAACx9nFWAAAAG1BMVEUAmf///wCg2V+w309Qua8Qn+/Q7C/w+Q/P7DAG5Io+AAAAVklEQVQoz2NgoDNwamxyQBcLFhQUFA5AFWMtBAoKlqIKMoPEBIVRBR3BgoKopipCBBVQBBMhgg0oghAxQQFsKhMIm4nVdqzuxOojrH4HhlJikgMD3QEAcycN4otQy3cAAAAASUVORK5CYII=");\n}\n\n.flag.PS,\n.flag.PSE,\n.flag.ps,\n.flag.pse {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAARVBMVEUAej2lJS6BCheBNy1Vpn5UVFTBEyQAAAD////OESanDR4nZjgnAwdOUjROBg7XPE720tbgaXb88PHRHzLtpa2gSEZbT1DC0kGAAAAAX0lEQVQoz63QRw6AMBAEwcUmDTn//6kITLiZPtDnkka75gqWqWogVN5BKDkKyXyAYP6CUrJl0R6ofihjvVDzAqE0Tv9COk2PWdN498Nb+yp8uzYEvRmBYPaEZPbIM2Y7L4kRqytOrv8AAAAASUVORK5CYII=");\n}\n\n.flag.PA,\n.flag.PAN,\n.flag.pa,\n.flag.pan {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAOVBMVEX///+jrcD28fLsf4SEkqztiY3CydYGI1faEhr////nYGXqdXnaEBffMTjDytdMYIUtRXAVL2D2xsfKG8juAAAAAXRSTlP9g+pWxwAAAGlJREFUOMvF0FkKgDAMRdG0iU3naf+LdQEGfAjq/T70lRCla9GIXoTeg1AEgi7MGRwA+1JdAZl2qg764xAZEOwp9b8OfgfF6DAiNTJG6Gu4NwhzhiC3WBsjL5ZaGZouLRYIsvf5rzs+gSfVcCE9ZTrZmgAAAABJRU5ErkJggg==");\n}\n\n.flag.PG,\n.flag.PNG,\n.flag.pg,\n.flag.png {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAeCAMAAABpA6zvAAAAZlBMVEXOESYkAgbGECQTExOpDh8HAAFNBg4AAAD80RaAChfRHCQwMDDiYR7lcR5wcHDXNSLofRw/Pz/5whbUKCPcTSDtkBpQUFCsrKzxoRn19fWQkJDg4ODzrRhgYGDQ0NDnfBx/f3/ZQSGki0rXAAAA+0lEQVQ4y42S1xLCIBBFUVRWQklIb5b//0kxGkJLhuWNOXPP3AV0O6O0IadLIkiu90SQkB29fPtgXC9VHoBRfQ0RMNSXqIOaVyHo6ilTTAHAJEPQ1tPnk8MyXQhivOknMMN9MHu9slXPAJQCL9KA45it+pJWJVviWM4C9dA67elXLxHLwzJ+e8mh1tvcBa32Usd1lQ0WKyTc5VNaV/kG4uLxI/HQt9jW61KIW4lD/0sizSg8fcmpBYqm+e9IH+ft6Rvtl4m9vQtm8057HywKL9T5euRobP0mxuRo+QZs2naOhRq9+Y6PHh/qzYUQcXDVk4RZ9Cngok8Ctf4D1OgYXQgrIwMAAAAASUVORK5CYII=");\n}\n\n.flag.PY,\n.flag.PRY,\n.flag.py,\n.flag.pry {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAWCAMAAACFUC6CAAAAM1BMVEUAOKj6+vrk8dC0u7b1ycbo6OjP0dD////VKx6/zene3t7J5c67yOTwxcK31MKdxKuKvZtVfUrjAAAAUElEQVQoz+2PwRKAIAgFEYIU1Pr/r807THKvPe7szAOoSeCb4eEZI5BwOliEvfUhk5DyPixyId5S9iFNw5kI14lmnJhepWr0TPP0Hkj4eeMBpwIRWct/suEAAAAASUVORK5CYII=");\n}\n\n.flag.PE,\n.flag.PER,\n.flag.pe,\n.flag.per {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAgMAAABzfiX9AAAACVBMVEXZDyP////yr7XIwwUlAAAAFklEQVQY02NgYGBQDQ2NYICAUSYuJgAGeB8eIlqm5wAAAABJRU5ErkJggg==");\n}\n\n.flag.PH,\n.flag.PHL,\n.flag.ph,\n.flag.phl {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAb1BMVEUAOKj95Xv/99P+9MT80Rb/+eH+7qfOESb//////PD920j94GH81Sv+65jv8voQRK388fLRHzPF0uz+8bXniJPaTFx/m9NfgsjgandAar6Xrtz+6Ivsn6fzxMkgUbPULkH209f54uTwtbvf5vSvwOSsgxV0AAAAnUlEQVQoz43QxxLCMAxFUTsuekrvCaRS/v8bWYQVw9i66zOyJdXuShb4Xomgy105iSYaBtqbAF69dxlklGMlgIkG8JpiUHuXcZZEvgrA6dymHQAgcCrA+9Rau3gGTFGOAVik1tqlY8AUdU//+3l6bSgAtU+uZbaBKAS/53nMRDEIoO4bksDnQRSBhoFzoFjK5a6eKZ4Crw1J4HaQqA+p8xC4Vz8IHQAAAABJRU5ErkJggg==");\n}\n\n.flag.PN,\n.flag.PCN,\n.flag.pn,\n.flag.pcn {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAABC1BMVEUBIWlnbpoRPkkFKV7yxs1gdKHUeY7IEC7AyNrYVmsQK2QCbsY8TlEKMlVcZkP8+vu/x9ng5O0sZCunoiy3rShRZD8fUDhdiBzf4+wBI2P88fMLLVx/hDT21doxcCMiWTAmXS9DajANW3mDkSd9nkORq1oDJWQeN1ycnCoSOVJDXT0tQlczQWxmbZpBdCXIuyQ1YlZkeDansRVfY3F+emk/iZHY3ej13uPZ2+ZIV00WRkEpIFxNLkVAS3BrckNIUWt6fj1Kfx41Xy/YxyAyU0FseVtScTZEVVWRpRkySk9Jfh1xkzJ4lxhrgD1pbFaMfnUeaH2utBVlWlNJaFSkuoSKf3oge6bt8OxBiYdXl17vAAABKklEQVQoz7WS13LCMBBFFxtjcMcVN0xzqKG3VNJ77///JZHsEM9kGPkp90HS3T2aXe0ICtkSA0h5ls3jPZMrZGGTcAKjMYhdkQEgoBj8i9HiVmLyiqIsF74js6yM1jmyyjonmvt7vyC7QTguGAC91eQAgHJJIKerLvTOpxwIXpmOSiPNZcfHpR1/scQehW06CILL+4szXdPon06ZUraQy+DHMEV02o7bU8uUO32pV7tHA41LsPV4ErR9MqpLjw91U9Sk6GqMJQPHaJS41hvD98lr32wCUd7A4Pnwg69RaocIVswKP3sL+aeR1CKCYpXiG5/hrNZpSURQODW+rLHVqKkVm9zkoXBbfr45Hu7SkCKJuruy+pyRxoEnVMdWW99JBbvoP9jQ5OCf9A3qch0S+mTgLwAAAABJRU5ErkJggg==");\n}\n\n.flag.PL,\n.flag.POL,\n.flag.pl,\n.flag.pol {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAZAgMAAAA+toT2AAAACVBMVEXcFDz////tip5hJkzaAAAAFElEQVQY02MIhQOGAWOuggOGQQAAG50ufcR4g+sAAAAASUVORK5CYII=");\n}\n\n.flag.PT,\n.flag.PRT,\n.flag.pt,\n.flag.prt {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAA6lBMVEX/AADuTQiivADpbCUrdgDangABYAD/AAAAZgABZQD7PT3tKQCzwQD4AAD8AADonwDjlADmrwD+/v72LADQ2ex1oADV1QDp6AB4pQDjdwD5OzrkjQD1dwCKodDsAADi1ADmJQBonwC6ywCCpACNqwDiMgDuPgK7xQCbtgD4SUf5fHzuWi36bW3qklLseCX2ybmfstgsVqrnZwDOsQDWwQBBhQDyCgDYYiHd4ADcfwDtxADPgQDfzznnrELTjQDUMADofR/0c1Lfjj3fPwDLtkMZbQCEmiqatD35QgDgWkff5fLnfSDu8fhnhMLtoPh4AAAAAXRSTlP+GuMHfQAAANFJREFUOMvl08cOglAQBVDgFZ+PoiKCoIi99957L///O65NdHCtd30ymczNCEH2msD7CMIPQ4oL6hcQS0puFglF/WBcwRSvUmmShGGshGStsNPkUb8LQWpZSKw2GlUREVMFYKZkcq632zp3hrYIwHxZQTXdMPQaCocTAFQkfGt2Hm6nuU6THgBzUtzhd8O4cmcCTszE2CXact3WeTMNQTvScfloF+t10Z57Vgq8oyntK5pWWRCP+DSTxYfTVpYjSf+us/nlF10zxuigqP7fz3yGT1SnLAsv0Hz9AAAAAElFTkSuQmCC");\n}\n\n.flag.PR,\n.flag.PRI,\n.flag.pr,\n.flag.pri {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAb1BMVEX////3gIDWCBgRXPH////7wMD2f3/3gIAAUPDuAAAiZ/IwcfPQ3/0KT+lbMZQRSd5rmfdKg/WAqPiauvpFOKre6P7z9/80Pry6ETSUHlpxKn7hBA3zfoK3zfuIabJ5o/fMq8mDJGw2aOaow/o2Z+XRXciaAAAACHRSTlP9/////////sajZT8AAACqSURBVDjLrZTZFoIgFEVJrE6AqeTUaNP/f2OUYTwIXNfqPO917nxZlWxIYsgORxoI5HsiCLQdEQS2CRFEdjmtQhpBQJxTv5gDAmVNBIG+iYGljf+IgEpa0/t1OaUvKFL9iz/Zqjco1WBfWDK/efrIdwarpVNU5Wk4d/0CjigarVQ8R0BLE14M2DNUNR/dPun+ZTJzZk3cHrOPi4DWMzeceDPEK6TeNfVTvACicyGeiMPPMAAAAABJRU5ErkJggg==");\n}\n\n.flag.QA,\n.flag.QAT,\n.flag.qa,\n.flag.qat {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAQBAMAAACW+SCeAAAAMFBMVEWMGj2NGz3////x4+e/f5KUKUn48fPKlKS4b4WwYnm8eY2pU2ybN1XcuMPq1dvp1NoxFdFrAAAAAXRSTlP7aonz8gAAAD9JREFUGNNjUAIBtRuBggggwAAR9BHEFFQywaZyIjaV6lgElVuxqXyCTWU1sYJKX7CpnEqsk7A73oTYAEELOgCpoyOl1kutCQAAAABJRU5ErkJggg==");\n}\n\n.flag.RE,\n.flag.REU,\n.flag.re,\n.flag.reu {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAflBMVEUyZv+CoZ3q7xpYgtD/AAD//wCZs3+Ur4Z2RKszZv+5y1dOet3yBg83aPqctXthicXM2T9mjL/8/QTPFzx2matskbn1+AxQV9uLqZE+b/FDcuulu3H6AgdGdOfP2ztHW+XCHkuPOIzd5il+QaGGPZdDXerH1UXZEi6vrGSYNIG39pwpAAAACXRSTlP9/////////v4+p77OAAABMUlEQVQ4y42Q15aDIBRFkZZclGVsqLHG9P//waBGI7aZ/cACzvYIIKYsmMHYfMdSDCnGRGpuK2yuU8GYQoUeMTGC08lYEqy7CoSANMxPtsXEZw0BpEV9BMwe6bqYPhhuL9GLkGY+dseQ83HqYj/rKr4igF36fCly/2T3s1EECHFZmGJR4nBIJyJIjqP+1fqXjTCXsCbq/4usjTyv/SwTxSQyRe0Iuxdt4RnBXARpeUAIeJaEmXhIrDByiX0ets6ulO5vZRM3Cq3kgNiIakqRcc3r1Y6ZKBv1S5eN8p3nb7lsnJ0R4ifVPGOA/ctcctqRX3bFOKAjQbwtDnUrpVNxWrconYg3hy5wbguxCugqQWWKV4du4FwnYlXTHepqELfrvqXHTrzX9E/qO0JHh/4D5/gBM/8mwq7UuJMAAAAASUVORK5CYII=");\n}\n\n.flag.RO,\n.flag.ROU,\n.flag.ro,\n.flag.rou {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAElBMVEUAK3/OESb80RaomTjtjxrOESXfWuRDAAAAGklEQVQoz2NgAANmJTBwFAQBUYZRwVFBvIIAxOIn30Ew1B8AAAAASUVORK5CYII=");\n}\n\n.flag.RU,\n.flag.RUS,\n.flag.ru,\n.flag.rus {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAgMAAABzfiX9AAAADFBMVEXVKh3///8AOabVKx55q0MDAAAAAXRSTlP+GuMHfQAAABpJREFUGNNjCIUDBloxV8EBzZj2/6HgD62YAHlVrHK7tinsAAAAAElFTkSuQmCC");\n}\n\n.flag.RW,\n.flag.RWA,\n.flag.rw,\n.flag.rwa {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAM1BMVEUfXzwPotA8qKQrprRXfS58uW8dpMIAod760gAgYD1prnistzbTvBF9uW+HslqQs1JWq4oAZWDQAAAAAXRSTlP+GuMHfQAAAFtJREFUOMvd0TkSgEAIRFEWbRRm8f6n9QjTiQbz41cFFBJk8jdUAMpAWLoRUC1HpesSwqq14VhCz2qtnuVoDZ+z0qir04zYMQJQfPWZflJ1ucj2ggeZyE0lW8EXy4wfIcoZkFMAAAAASUVORK5CYII=");\n}\n\n.flag.SH,\n.flag.SHN,\n.flag.sh,\n.flag.shn {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAllBMVEUBIWkrPWOynWf8+vvyxs1nbppgdKHIEC7AyNrYVmu/x9kAIGfg5O3Ueo66pmkVN2dVbm7TeY3f4+z88fP21dpbj4/Z3OcXL2QfRX4CNHZbX2UzYXN2e2utu7k2hKWGhm5Oh46/rXz13uNxmrRdhqCqzMyVpqZ+objP3dodTFuYg1Srl25SdXZZcGwQhbmyjlF1k4CbmI4Wf3HSAAAAv0lEQVQoz93Q1w6DIBQG4AMqOBG3ddTRvdv3f7lK1I7EqL3tfwE58IUTDmiyS6CJSqkqdsXSZBiK4rS0hYKZBGCECjjKVF3Xw9r3JEqlZg2bUh+EdCA/QiNCSYIio2/dJJQ8X7T2/DoUdXuDMH4UDKPXm8SVNUcRnyGmrFlKf44YqyrM0Bfrx/NJbc4vGed2B1v2HrigHSzKYFleFzAV+4bvQbCchsYRn9NDakxCyE55vl3DjOz2mxXMShzDX+YJ/VkMBuOm1OEAAAAASUVORK5CYII=");\n}\n\n.flag.KN,\n.flag.KNA,\n.flag.kn,\n.flag.kna {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAA4VBMVEUAAAA3LQT2zRXlvRP70BX///8KCADOESYAnkn80Ra6mQ/UJiPQGCUTDwFCOAUQEBDIpxH7+/uLcwzVsRJZSgfvxhTcthMdGAIIoEfxoRnuzhgWo0T7yxbZOSL1sxj4wRbdTiCliQ6Xl5dFrTprWAl5ty8xqD/lbB04ODggICAsJAN2YQrt7e2lpaXcyhwjpUHFxiGcvSnqhxuAagu5wyPnexxXsDfRyB1+fn6WfA26urpYV1OMjIy4uLjk5OTx8fGRuyvlzBqGuC0fHx9NSC+pwCZ8fHzIyMjtkhpwcHCzs7NT4XdnAAABTElEQVQ4y4XSZ3eCMBiG4VdMTKM4UEBa7RBHnV12aK3avf7/D+oboBgiIx/4wn2uc5LzwEHKad3yRg6Ck9LdH5F6ATJD5OyQSwmRWxYgM2x98HxFzgrxYfeFd1ZVgOF/l7Pjwta14EbT4ZcbcHXShniujL+3lI58rsEPS3uhg5yJf6trSuladHPSPmdMDbsXvCg4WMxm9PHXhXENOaaGzjOxzPCmW7zORENOV8MBcs3dkzwJ7uSYeUcKnVdi9eS38zidqeHgIcIBNHecFDp9TYtyPYvc6UwNkau9i0cJuaLMhSFyE1iswf0MOjPKBeHlFa+NAUaGYfhiWeX8sK+RufcalBreCsw8v9GZGiLnzf3N3UzpZvoD5Q4/PWN7B6S5rwz8VOI4EcpznyVxIozMHbnvEosP5bkvSQIXDSu2P6iMEOeezEmhN/eUjv0BCoErISxfBDYAAAAASUVORK5CYII=");\n}\n\n.flag.LC,\n.flag.LCA,\n.flag.lc,\n.flag.lca {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAVFBMVEVmzP+46P8rJhLxyBiZ3f950v/T8f/80RYAAACLzsRfX1+/v7/Pz8+egw2r3eHr5riPj4/MqRGkkT7m7O8QDQGJ0eHd6e8QEBCfn58vLy9fTwiCs6AoQUrkAAAAfElEQVQYGb3BSQ7DIBAEwAYGZgJ43+3//zNWZHELoBxShb8gQh3nUMXGaFFDea9QY922FRVoF9kJZe4QORyKbJBbtChRXs5TvELJJJpZy4QC6mfDbOaekOf0wLdBO2TZ0PBHEyxy1MiPUSGn46RDRms4MS2+W65Xci34yRvvSQUaIFkI4gAAAABJRU5ErkJggg==");\n}\n\n.flag.PM,\n.flag.SPM,\n.flag.pm,\n.flag.spm {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAACRlBMVEW2DhRebHGQn6QAkchbPimqGR5CUVbl9PrU5OnQh40Aksj/////zwDMAADftQAQl8vv7+/vwgBgut0AkcdQs9m/mwBArNYIZy8wpdIgns/mgIDf398AkMafgQAAjsMKhqtwweAYgJMscWmOcwAhdXlDd1jMAADQqAATYCyvr6+fn59Tc0BKWCMNiKxjiU1qZxY9gGvLpADJAAB3cxivjwFCmbvdbQAYfqZLbkJdgUhcUgornci5lQAmhIh2YgMVms3TiYSCJxGjFAjZQEAIlcrODAA1h34hmsgzhaQ9bVFzkkXXTQDUPQC/oQgje4CkmhwxfnXrnQA0mcDZXQB9jTWAyOTTMgBBn8VeZB9iXA+IfxbpiwDstwAXfI+VfANcdDc/ZD9UWBiDbwTZdgCyoRbopQDPz8+9mQAAhbbIOgHEJAXhfADMFAAtdW5mh09qhT8oi5DilQCjoymolRC/pSeWlyY5WjlLf1enhwAveXCYixRQRQPKMAI5dmbRJADQsA5ebStrg1RqklKWmziWhg73xwCJsJZRQB17bQyOIA5umIhUnq9kcy6Pj4+QrZR2kmmzDQbB2cuwkw9pnpjBk4hvb2+jxrEgWil/f3+PZlEtgKDlhAAakacAh7pHj6qyBxvVmwBxgzM5koc/jKtfuty9nwRXh1eLiyMXh5xmbiNCinI5LwFIThgHaz1Rj2kvZFMtUybn9frUJgBFg4x/yOOAlV+fn0TBPQoHaz45RyK/v7/dhQC9qBc1YEffvQwsVCY/TyVfX1/OrkRSAAAACnRSTlPp9e//9ev36On1SIBarwAAAyFJREFUOMt9kgVX3EAQx9NuW9rb+CUnXBJO38EJx3GHO8Xd3bVCX90VqAAtpYW6u7u7fLNOwsF79PV1kjebzP52Zva/SxhfnaGi8Voq/+In3f+MOGGMzQdwMta44q8p/VKQyjMaz+HLxthJYjFo08VsSkjrlfSSkpUqRcDo6NzjZ/GF07nRa7QAIPHdupj92x62gM/MDCyAeNFea4HSzMo2b5WiPAo9s8fYbS99Tvu/M0pZTp897WnWrtZel8+/13WkocW/tMe8SI/ex9nhVpvTl+7os59qkx0NS3edt7Brf5B2D9gCfQ5R3J3tlsUBvyTpigA0/lzQ8bkGxpMkdzCBBr+9FDz5wr9vZ5lPryMuYfwbY48H41Vai9tIcrxqOxBk2W1wmUoarKmBjKwFs+pjwas1Ce8Hw2k9KkcWVau0bcuD7oBelScOyDgMQ5Sqoq1lV6t3TAPtQXC7nZK0uUbTcRpAqD/NAijtVVJDba2bNfAz1KSfBByObFVzgmWxVpyF0ja7vnNL154QbIh00985Tp44so8WG9RTJ75g1mPBQ3GYXa67401wKkGy0nX46IQsxg909Xam7uEqr2k6nscY3jjochmUTu+Krya5nT0hZ1Z6aOxUQvcszXkjZ22BY2YxDOpmqlJFDlo7Gqj5pbh6+rJByWopAnqGsAVU9AxFzV8Kh0iTMk0Ph4c5WiZp2bVwH1VLTAQXOWuX7A7Tblp0iJwYFGXRXaRTNLC/YrC8/mv/gZGVKetSUhRdysHwsQ+HyWPjO7gfM6PD36ZGr18piVlHUG8GZzvaB2uTm4jmpIy6uyXNSSVvM07OvG+um5syZ5ycy6m7YSpOSiKoDRs7mj62H+o/QKAChJhihHLMCBVnIFSQg+AHYjAUENRNaoRKPARNEhAy8I2CCSHhHd9oQLzVygsMMll5IAkqufxWcsXWrfVNAKoGnNmkjo1myMzcMzNamKAKr+7oqK+tLS8EEGYMBt7Km9S0DHzyPBIEZh7ckLxxZH174voKApl4q2AV1LBgMDC8AKsMaD4hmtdRM7U0Y0IRMwuIsZqRmY+AfwCdALIv0wUbWwAAAABJRU5ErkJggg==");\n}\n\n.flag.VC,\n.flag.VCT,\n.flag.vc,\n.flag.vct {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJ1BMVEUAfC4AJnT80CK9uyRUmCjsyyI/kSqdsCbcxSJ+pigQgS0PgS0fhixRK6rDAAAAbUlEQVQoz2MQBAElOGAAg6Em6KGk1IIuqMyipORghCaoxmCkzJCEJmjAkKTGwIwm6MDA0cDAQoxKNQbzYgwzlVmilmLYruQxgRPDnUqqC7iCMATVGRiKMFVu4MZUqTSBE0soRR/FIqheRK2QBwDQhTJFgRiQewAAAABJRU5ErkJggg==");\n}\n\n.flag.WS,\n.flag.WSM,\n.flag.ws,\n.flag.wsm {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAG1BMVEUAK3/OESYyVJggRY9jfbEQOIeQosfAyt+gsM9en5nHAAAAQElEQVQY02NgAALWABApCAcgHgNbAhZBZgNmDEEnBgYPDEEXBgYjTO0MLAFYBJmxWMSkgEUwvJQYlYJYwJAWBAC4ZRdFtyZb0AAAAABJRU5ErkJggg==");\n}\n\n.flag.SM,\n.flag.SMR,\n.flag.sm,\n.flag.smr {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAeCAMAAABpA6zvAAABR1BMVEX///+LaxFqdntctOLw8PCSlpOGcS9etuQ1SzNasN5Kk7j8/PzLzcsgOSxAUTosQC5KW0BdflOBYxumeyBpaVKFaCN0goygdh+QdSpfanFxVARqTA1xUxF0uNw/gKE+bXVLh54sUUlSptPo6ujh4+FNm8I0WUVHaUh4hHWbm5v39/fBxsJZdH44UEY1UjyrrqpreWgoR0EvTlNgcl1xc1hbVC+HdUNqbVlQSCFpazFzdTl2nLNrhmp4k6SqjEZ5pr18XRVUX2iXiWe5kiBwjp5cp86mvclapMvfz6vv37qku8g+dIRIhabf39/EuaTa0cGvtq0hLhxFUjR7eV0yPilXY1UiQTa8vLxYVzSogS9xgW0+QyG2tra4jTVFQSp6iYZkXCNic31hZk6KahyHpbWIr3FtZCd8pGp9aTOHr8hSYGhjf5JuYTEiW0ESAAABDElEQVQ4y+XPRXODUBQFYCDII8EJTrRx98a97u7u8v/X7TJZ8Mi207M939wzF0H+ZjbWF4R7uwsxX+bmIuNzdztko99vkDFXiKP6ZKKjuPtJ0rRMU3dlDDK2Nc0eI8UlGMsSl+82alnokKyWGMjDgr/0tPw9/ar7pdQtcIb71ZOaPDCmndFAfuTqzuMx4fhI6jxgvc+PYQ2A1FxJzSQEQF7rYZhqPMvlAhue7eagN3FaVjBDVUd3Up6NUI7Qk2SvBKUril2FAyIMbiV5/rX18ta+LxwkKGf4O354Xmm22s0KzwWhMB6On10T2SLjDXmgkN7EiXQulybwVRoKqbUAHd0ORunACgWHjvmf8AdLZy8UWK2OKgAAAABJRU5ErkJggg==");\n}\n\n.flag.ST,\n.flag.STP,\n.flag.st,\n.flag.stp {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAMFBMVEVWtx//zgASrSvSEDSKSjAAAADYrgDjWCDjVyCzkAB0XQAXEwBrVgCkTiuDaQB3YAAKgYv+AAAAZklEQVQY02NwUsIEDCbYBI2dsAmaYBPEohQoaMuAAYyNjQsF0QBI0BzMEkuEEWBBiFKZgzACIghSKrk1eiKEgApagKRTw2AERLARxPq1DkaABS2w2d6IRRCr452IDRAnYgMZW3QAAIBCN0MOGs4oAAAAAElFTkSuQmCC");\n}\n\n.flag.SA,\n.flag.SAU,\n.flag.sa,\n.flag.sau {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAMFBMVEUAbDWAtpqgyLMQdUFgo4FwrI1QmnSQv6fA283S5dsgfk5AkWew0cAwh1v3+/mPvqafxqwrAAAAdUlEQVQoz2NgGBzA2ABNYKuQr2tSp2vxnCIkQad2J5+gQ0HCRYVIgkGNtanZVd0lmYJIgqmdk5L8tQ6JFSoiCTKmysrOeCTq5q6JJJjTkfRJYpm7o6ANkuCqzZc3MBvssmb2opP3UbmmgiCg+RSLSmbjwRBdAAOBHQ8vIxWsAAAAAElFTkSuQmCC");\n}\n\n.flag.SN,\n.flag.SEN,\n.flag.sn,\n.flag.sen {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJFBMVEUAhT/jGyP970LjGyL1pzaoy0GRwj9nsD8dkT7U3kDt6EFOpj/lyas/AAAARUlEQVQoz2NgAANWJTBwFAQBYYYhJ6g5CYugehEWQY0mDEGtDQwM3IvQVaoxMCRham/gwDRTk71gEYagWpJa0tANT0KCAK4xK1LO9A4bAAAAAElFTkSuQmCC");\n}\n\n.flag.RS,\n.flag.SRB,\n.flag.rs,\n.flag.srb {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAABHVBMVEXGNTvHPkTl39/kwsP9/f4NP3QOQnfGNjz///8MQHbPdSxDRGzMaj7OjyXbz8/evb/GPD/Qkl3JcFPLq7HPXDTBMjf69/f25OVBQmvu0NHlsbPJZCvg09TSfH/KeDLEPjXUlSnLlJXo2drh2dnUt7fRsLDOhIfIUUr129zNnWzCVC3ioqRFRm7NbzjWiCfRalHRb3OuWWKubHjx7+/Fm57KTFHRmjrQi47XkpXTzM3KWlbexsbRj3LAa23x6encmZvLpKTEhYfEdXnVoaLrt7nMiUufRlfcioTil4htSkPSnk2kN0LBXjbOimLGfSbap6q8jJa0XzvQhX7Qd06qdzfaq2PSqDTCmzPUp4vYsbLhzs/t4ODJxMG6cXHIfH+gIrqyAAAAAXRSTlP9g+pWxwAAAQVJREFUOMvFzsdSwmAYheEUkJ+YbopJSCOFJk1CbwIq9t7b/V+GC51hgebLuPFdP3PmYFgmURj2N8hLySB+eswngAXh3CqJJREHoHwgVMv38klZgBbP6BrN0LVqAYL2BeM4DGNAH3n8rtN5dB6uf/mYzn61cdgYjMy2SzfaO9n10ivYVGxr0nsypjoAt1o9WWuZeF7ZBmCOcAN/zydYEPbHXdKN2CEAI48dT7UwItjNeHhFDENdXcxecwDczXPNkPyYTZ5BuAjm5LvPkT/DFPqucmMN3vrzUb2rovVSK1ikDNsjAokSUTxES+r2xeMoqQhBdGSS3GVdQyBEql7ZV1ACGNN/wk/ONTdzPjKb2QAAAABJRU5ErkJggg==");\n}\n\n.flag.SC,\n.flag.SYC,\n.flag.sc,\n.flag.syc {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAb1BMVEX////cRET20dHdRi8Aej3pjIz//v782FYAP4fWKCjzuE0PSITXLSnszljumEXf7+fkZzitp2X70lQ1lWVObnfaPT2HvaAJfkNeq4S22cj319f1ysrogoKt1MGPxKkRg0lXp35mr4qwj36kj29psIx3kSIwAAAAr0lEQVQoz33N2RaCIBRA0YtToZWRQFk29//fGDLoBcHzvNc6sEU1+81cnVMcYMiQO+xoEvKZnY6UJiEaB9sAsuTWhzy99eA0jmxVAsJxbCuGWwX+OLLVSuWNF1sxZFpNkMW2SDnIl1viKQv1GG9JmUGYG8/bharau3yBGU9bX2nSnQsV6LHdIlW1vbwYYoJxrLekvMaJg3zcGtX2jwixsKlzpRR5d89iJfh+5G+dmP7QIhk7LnKNYwAAAABJRU5ErkJggg==");\n}\n\n.flag.SL,\n.flag.SLE,\n.flag.sl,\n.flag.sle {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAgMAAABzfiX9AAAADFBMVEUAcsb///8etToftTtamkkBAAAAGElEQVQY02N4tQoKVjPQihkKBzRj0h4AAGLOW/Cjq+5HAAAAAElFTkSuQmCC");\n}\n\n.flag.SG,\n.flag.SGP,\n.flag.sg,\n.flag.sgp {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJ1BMVEXtKTn////2lJzxUV/uNUX1gYryYm7vQlD6ur/+7vD7ys73oaj1jZbd0n4ZAAAAW0lEQVQoz2NgwAFYkjHF2Bcqs2MIVk5msHBAF1wY4GCKYaKgSzMDkwKqIJskQzgDWwKqILMgNhdNLHAqCEMXDFzAYRCKLsgt4YBFf3aPAQMRQAkLYBDEAkayIADytx8PHH3E9QAAAABJRU5ErkJggg==");\n}\n\n.flag.SK,\n.flag.SVK,\n.flag.sk,\n.flag.svk {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAV1BMVEXuGyTNpbfxPkfIIzr+/v8LTaH7x8kLTqL////uHCXyVFvyjZL1dXsZSpn6rbD+8fL94+QYSps4b7PkdX9hWY9gWpGSlbr4nKCdbpKOa5PFiZ9IernPj6EDTQy6AAAAAXRSTlP+GuMHfQAAAJNJREFUOMvdz9kOhCAMQFEsCtNaQHGb7f+/cyBGfXGKz94QCMkhDap+XKpWN4TB7AURGkwtS95NGbatBBubqxC96TqTHlT2rOaAzN4zlyEweU8MRUghjw5UHr19RobzAWcRfkBr7VzaIIrQfnvrbFrubWUYp/Wc4j+ocI3GfB8Jz1M7RHj1/ROwDBGHAfESlLoX/AFBXSI5QBCfVgAAAABJRU5ErkJggg==");\n}\n\n.flag.SI,\n.flag.SVN,\n.flag.si,\n.flag.svn {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAMFBMVEUAXOX/AAD///+/Fzq/1vkoTMF8crqIs/OYjMQQVtavzPcudbsweuqfgbUQZdaPl9PUMJ+YAAAAR0lEQVQY02NQwgIYSBN0L8EU1Ofe0IQhqMv34BKqoIuLi9vxmhQXZMAABKxOKgEM6IAza9kEDEGGiFYGqgJjLIBBEAugmyAAw6IoE6NtAqsAAAAASUVORK5CYII=");\n}\n\n.flag.SB,\n.flag.SLB,\n.flag.sb,\n.flag.slb {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAP1BMVEUhWzMaYsH7/P5Kgs7Fsx29sD8/cpEAUbr80RZYeSsub8WkwOY9ecqKr9/D1u/l7Pfu8/pYjNFwndjG1++zyuq3m5y9AAAAkUlEQVQoz43QyQ7CMAxF0RcHuCVDR/7/W1mEqpVo0nhj2TqSBwEOONJFvJ7DIEi5lDnV2eMtFrMVYDVb6kyCcSutcWwwqWwXwtWKJ1Ygfpp8m/0g83zDpPKXlCC0mITP0QP4T/Z1JuHMAkAwc3UmQYwOwMXYYPsxtIb+wwY7wyY74A3b4S0rsINJnUzqZFIn0xe7Ugy2JSfdKQAAAABJRU5ErkJggg==");\n}\n\n.flag.SO,\n.flag.SOM,\n.flag.so,\n.flag.som {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJFBMVEVBid3///+gxO5bmeLN4Pbp8ftMkN+WvuyCsen4+/6vzfG30vJNbQNHAAAAUUlEQVQoz2NgGMSA2QCLINcCLIKsAVgEDYUxhLSVHEWUNqEJpggCgRu60kpBwekY+pkEBRUwBFkEBR0wBBNndIphCJYaMIdjCDYwMHAwDDEAAKAdCNZzMJXoAAAAAElFTkSuQmCC");\n}\n\n.flag.ZA,\n.flag.ZAF,\n.flag.za,\n.flag.zaf {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAe1BMVEUAFIm/3dHwshwPfUsAd0n/uBzA3dIAAAD////gPDHeOzGQxK/g6uv47/DP5dyvpCovkGqAu6TiSD4QI5BsTgs/mXbpc2tIVqsgFwMffkP3shq/qCfAihVvkzXQlhbxqaSQmctQiztPizuAXA5/XA4wIwX1wr6wttrfsCKtJwiyAAAAwElEQVQ4y42S2RLCIAwAY1sMYr3aqnU8q/X4/y8URBTKuc87OyEECsGK0kc1CcHgIxbLOZ1tUsRolMFRmeEoA7LfadFz5RUPJEuJMsAm06JTX5SL2PLoVZnr0h0VIoroIv+auTsqRWxPZtSBFBFvRI+ObZSIdz3q4Cea0aCIDSGvFLFPK4oZu4QZe+PVI5v/HruEPQ5/5lKDjfxrPVduwYV1Pc4cZ3CPnhzHvHBfjmOctzfH0XLPGqJiLKfEaA7gDafDHAN8aOvZAAAAAElFTkSuQmCC");\n}\n\n.flag.KR,\n.flag.KOR,\n.flag.kr,\n.flag.kor {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAe1BMVEX///9/f3+Pj49vb28PDw8/Pz/v7+/NLjoAR6CgoKC/v7/g4OAgICAfHx8VRJbzy862qcGEhIRmOm3Mwsqtra28L0IuR5DVhJBzbp6mMk3mlpzTR1HvvcHssLSTiKykl7bs5uxfX1+UlJT88vKPd53ZYmtTWpWXl5dQUFDfXWhyAAAA+ElEQVQ4y7WTiQ6DIAyGBYfgjdfu+37/J1zL0GVUzZZsPzGR+sEvbfG8/ykOaCyIe0DhR24o8gXleMrS6G3ToIYQJ8aTEMbbnhGGipgY4zCvpzx/xnzB7oWgxixF53wmQRdkg+JIzMPWeCOtNjCp0Dx0/pEb47XstIbpQXCaII7Gqxe4QnM2kPSqpRbw5CPVOVssU1kplyPgvESuyRSoHAVV2chmqoxmI6CG75my0gMQw1N3FCzoP7XN4+4F7nrz2FVm23Lb/srwhCW3BM21Ocq1MrWuIczd7gmZ7R5P673tnmPtds9gPzJSazR3O5waf3NnPr+Fv9IDQ40NIe3u0ysAAAAASUVORK5CYII=");\n}\n\n.flag.SS,\n.flag.SSD,\n.flag.ss,\n.flag.ssd {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAYFBMVEX///9KbYVZdXr83QkHiTASRaUABhDaEhoAAAAPR68HfUUGIVMLNIMKZXQMWYsGhDhaMnamHz+luuHMFCNBOYl0LGQsXbkeUKSUnFFof3A8Y4+yrjzeyhwJb2ANUpcDEiy4e3zXAAAAc0lEQVQoz63QRxKAIBBEUZQRHXPO4f63FKVYCr3wr1/VNIhcJVCCOVMg5CgDIXN+gVBTBUJ9X2GQeWyFq4cEq6F9E39m4B7O00vrzgXDTcrFTh3+gPBp/DHw97zjiopcWVimRAA8fczA6CBCoGechWVKUDcmdhWS10VBkwAAAABJRU5ErkJggg==");\n}\n\n.flag.ES,\n.flag.ESP,\n.flag.es,\n.flag.esp {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAn1BMVEXUOBXxvxW4Zk+qUQj/wwC2Qw/5uQDGCh7VORf/xADzrwfXshjmngfOwpvJrYaiXxTRsb67dgbgtxeOlVTDqi3+yBftvAv6ww6/rD7rnAfOaQ3TsADSjAvopxbFVhTikgywRh2sWRXWeQ+1Yz+5ZwvToh+/elzRpUnMkxzTlEWxLRLMiRexqFmEOzJsU1+5WxTijbSTSRzUs55eaVvNpHBqh5K5AAAAAXRSTlP+GuMHfQAAAJdJREFUOMvl07cSwkAMBNDL4HDBgHO2h5zD/38btDSyathGzRs1K5EZMuSnIJmjQojwUBHfMEHBmNKApggYNoerLOIpqCqviqIoVOEEFGUr5euhVQlDkZrBWnNztRHwxmLT2PvFuYHlMMzZsT8/R9YyBUNf7zjvekm1D8MgW3M+yi7IEhiulot6e9r7n4moEOoafT1/+VxvK0kl3q0nSz4AAAAASUVORK5CYII=");\n}\n\n.flag.LK,\n.flag.LKA,\n.flag.lk,\n.flag.lka {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAe1BMVEWNFTquVivxjA2KFDfZhi6miCzDbg3/vikAU07rdADGaTCyTTJ/EDP5pxy0ZCeFETW8bCjvsCX1tCXSiiffmyWfRCvTlh/CcSj5uCWRMyvAfyCiUifamCTroCTRgCqkXh/gqSXqqSXHfSiGJiqVSCLDix3kliuQIzDXkSbhs4zbAAAA8UlEQVQoz42SSXLDIBBFmxCnMxAGCRAg2Zpt3/+EaZQsXLFw+S1gwavfVfQHfBLA4ZA5fmfwfHrd43Qk8fCeefsgXrAJDu5hVfNf/NKMHpz6MxTfLi0/70QgJ14VCCdltNbmAZzDjkhMtbZmWI1v+2Rkm1N3RV7X0Qc0JlUptr1+IE7ae/R+mVnL5ARlkSmXBhMWRlhWFC9d4k1lAlbbT8ty4rqKm5XUZbH39kYsJ0Ld40jG2CyGpouiqLrZsRa1At5V9oEI7AIgwpX+j2EsjqYVZqPLSa4bE867K2RbKWi8EL+nEHy3FE2IxZo9Xdwn+QGnxBrCNL/vUwAAAABJRU5ErkJggg==");\n}\n\n.flag.SD,\n.flag.SDN,\n.flag.sd,\n.flag.sdn {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAARVBMVEUAAAAiXyxQVDPEFjJAQEDdTGcFZiXSEDT///8AcikAFQcARxmqIjGDNS8AKw8PejUvjFBfp3jv9vHP5Nafyq48Qz7PTmJl4CtHAAAAYElEQVQoz63QNxKAQBADwTm88P7/TyXAZYcCFHfV1C5JWlpDoTWhis6EkpNHkpz8CY38BaVkz6N7oMaliu2FGlYTStP8L3TT7jFhy6K7H97ztdPVWLABBxpZACsL0HiMA+tdEadf53u5AAAAAElFTkSuQmCC");\n}\n\n.flag.SR,\n.flag.SUR,\n.flag.sr,\n.flag.sur {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAKlBMVEU2fT67IkGwzLO0Ci3///83fj/syB3+/v7fmSDPZSTEPyfVeyK/LinpvB0xIzJ4AAAAAXRSTlP+GuMHfQAAAGFJREFUKM9jYA3FAAEMtBBUwgIYSlwwgDt2QUEsgMEYBqwWw5kIQevNWARtL2MIWna0ZXRMRlc5LS0tE0O7VVraYgxBm7S0wxiC1pnTNmMIWhy2aYYLYvUR8QGCNTzpFZsAgv2JIjNIFmMAAAAASUVORK5CYII=");\n}\n\n.flag.SZ,\n.flag.SWZ,\n.flag.sz,\n.flag.swz {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAA21BMVEU9XriuCwu+vr6RkZHrpgMAAAD///+xDAs+Xrn/2QAcGxuyOgm4OghBQUFtbW2rCwlOSYUrKyvrpgX92AJPPDnEaQbu6OhJUJKMMzOzKgeEHTLWqpjUmZnVm5vU1NTHbm5nPj+3Pz+pGBiMjIybJiaCXDp2JEBnL1SbYSvDZwN3W09TQniPGSkPDw/BX1+1UA9aPG60KCjr19evr6/v7+/6+vpiYGo4QGtHTo2vZBlwcHDOl12tOAbBcnLEgVe5b1S0TCI7WqNgYGByTT2XNzcPGS84THsbKU8yTYzAGvZjAAAAAXRSTlP9g+pWxwAAAQ1JREFUOMvdk9lWwjAQQDNoqqa2ScDSHShlBwFRwB13/f8vMmlOK6JoXvU+zrmZzJIgtK8FQn9BrBxoUUHlXS3KaG8TaD0lCXwJb4rNBsHpfD6LTn4WPfLGXk8NQbW+RfQPBY/4mblLfiZNI5SRSX3cXBeB+qZpHh1b1st0SaySpBqa13e3N2P6IQJQU3qY2La9WHC+I6kZ4WQVJQCQi9BvD3qO08YFWZWCK6fv9AYXfp6xy1hHHBQZL0VKm/NUZYxFcHTvMppnDM7dQB6QNQpISdUYyRgdulNa1Njpqgk31M0PWdux6jMYjta7LuYoPFL7NEfYuhmM01n8y2ayXXte65tda78e7ff4n37hOy+LLL1mIK03AAAAAElFTkSuQmCC");\n}\n\n.flag.SE,\n.flag.SWE,\n.flag.se,\n.flag.swe {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAZAgMAAAA+toT2AAAACVBMVEUAaqf+zAB/m1N8Q7kSAAAAGklEQVQY02NgYGCYmsAAA7RmhsIBSUy6OhIASfMjv9uXrDcAAAAASUVORK5CYII=");\n}\n\n.flag.CH,\n.flag.CHE,\n.flag.ch,\n.flag.che {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoBAMAAAB+0KVeAAAAFVBMVEX/AAD/////wMD/gID/v7//YGD/8PBls0LNAAAAPElEQVQoz2NgGLwg2NjYFENQUVBQaJALsroAQaKgoBiIDoAKMgsiAQN6C7IqAQHISSA6YIiFJ+7EMHgAACUjEjNIvHDuAAAAAElFTkSuQmCC");\n}\n\n.flag.SY,\n.flag.SYR,\n.flag.sy,\n.flag.syr {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJ1BMVEUAAADOESb///8Aej3A3s8rkF3f7ubv9/PP5tqq0794uJhPo3kPgUhA53/OAAAAV0lEQVQoz2MQxAIYhoqgEhYAFVSBUE4ogqkQKgxZ0GXxlCQlJTVPKxckwVZj6yIlJfXNxhFIgmrGQSBK1TgJSVAz6jiIqlk6CVmwqANEdagjC6K7cygDAFe0LEzg45X5AAAAAElFTkSuQmCC");\n}\n\n.flag.TW,\n.flag.TWN,\n.flag.tw,\n.flag.twn {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJ1BMVEX+AAAAAJV+AEsUFJ2Cgsv///8BAJQwMKmfn9dCQrC6uuLg4PJgYL0ICCqaAAAAWUlEQVQoz2NIFIQBBgTAJSgsXmiIISje4lGILijs6bVkiiG6ypLQUHd0lZIdoaEdE9FVmoSGOmNY1LI12gPDIuMlXsYYFmXWHJ+I6SNhQ2K8qQQHDKMAFwAASRwaKceV/cMAAAAASUVORK5CYII=");\n}\n\n.flag.TJ,\n.flag.TJK,\n.flag.tj,\n.flag.tjk {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAJ1BMVEUAZgDMAAD////aSEhJkkn++N/97bD+88n96aD85pP74YBQlEb/++/JD/WXAAAAUUlEQVQY02MQxAIYaCFojAUwKMGAahCcCRdUSw1LwhAsUi9SxxTUnKSKLqgapJYENxUuGFO1/Ci6oFLFsqx2TNtndCJsd4ECbxeXLTA2A70AAP6jLUlcjKwxAAAAAElFTkSuQmCC");\n}\n\n.flag.TZ,\n.flag.TZA,\n.flag.tz,\n.flag.tza {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAeFBMVEUAAAArIwN3YwrrwhQdGAL2zBUptzcetToAo9380RbnzRxRvDHFpBHxyBUIpddfTwi0lQ8WEgHdzRqjxiNqWAm9nBCOvGw8rq7gyytivi4Rps9Osp+SwybVyjSpjA5TRQfNqhGdv2CzxyGpwVfTyxzNyDp9unovrLjWAwfLAAAAwklEQVQ4y43MWRKCMBAA0WF1hh0FRVTA/f43NBELs5BAf3c92Ng6RtSVMGbZwht5PcDiKHKWUebMI+MKgQNnfgx35OUi5wZg4nyRG+gJq7jgleljrHIJXd6IoHOpwtE+Q22Mt1Sr3AFRHTlXzXHKqHL+xEmjxlXpxIkj4xKJq6mZuP8Ynilwzdw0cs6xcL9xmRvHFdx3VLnco2uL+vigQeIKak44E6zi+ChypYnjo8zdW1wcGReZOHHsbdx/LDsrx/oAkpwc3/6WLokAAAAASUVORK5CYII=");\n}\n\n.flag.TH,\n.flag.THA,\n.flag.th,\n.flag.tha {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAgMAAABzfiX9AAAADFBMVEWlGTH09fjMh5QtKkoyD257AAAAH0lEQVQY02NgIAGsggOGUDggzPwPBzRjkuIcJF+QAAAjJYF/PyJQ8AAAAABJRU5ErkJggg==");\n}\n\n.flag.TG,\n.flag.TGO,\n.flag.tg,\n.flag.tgo {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAZBAMAAACx9nFWAAAALVBMVEUAak7SEDT/zgD//v+vHjjZLyvWJUXqj6D87/HgW3PaPVr42d/meY31y9PwsbwZZZ5IAAAATUlEQVQoz2MQhAAHBmRAkqA4NsEMbIKHJwoKBikhAQZBcWNj4x50QcEVxtaJGILixpYY2gUlzO0wBbMT12LankihNzEFlbAAmgjSCwAAG7QmPcKBtfcAAAAASUVORK5CYII=");\n}\n\n.flag.TO,\n.flag.TON,\n.flag.to,\n.flag.ton {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAJFBMVEXBAAD////rq6vwv7/TSkr66OjllJT++vrkkJDFFBTbamrFDw+mCkE3AAAAMUlEQVQY02MQhAIFBiQA5It4YBGU5MIUDLZmMS5EF0wAkoFECWLVjtUi7E7CdPywAwDkmwmBWzMtugAAAABJRU5ErkJggg==");\n}\n\n.flag.TT,\n.flag.TTO,\n.flag.tt,\n.flag.tto {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAhFBMVEXaGjXcKEEQEBDqfY3eNUwICAj87/EAAAD////+/Pzn5+dDQ0P53OD9+PkdHR3hRFvbIDpsbGyTk5PlY3X19fX0v8bysLkzMzPMzMzV1dXw8PAqKir2yc/75unkWW2hoaG4uLjd3d3iT2RSUlKtra330dbvnqnDw8PtkJ18fHznbn9eXl5tmbTVAAAAyElEQVQoz43SRxaEIBBFUSOCihHMNua4//31AHRYwvgO+HWeYRPhyRc0nWkA70cHS8rWDx1Ixn0dSRlVKIakE/qllO5Ac0ianAXqoxm2IWkUJFUyxRsobZwpOTOeQDKniytl6a/g+AlV6kxR3X+MH1sprR39wPFdo8a7glyQTAp6q0knPsDxBz6VvGkBjr+IcDUbQfvTyKjbiFWhCTzT+jaywI0knM2ajWz4bYQUmo0EjJtwI8PbyMd4VEW6jfhPIwPVbMQTxP4DG9AQs+B16vUAAAAASUVORK5CYII=");\n}\n\n.flag.TN,\n.flag.TUN,\n.flag.tn,\n.flag.tun {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAMFBMVEXnABLnABP////zf4jtQE7rLz7qHy/83+H+8PH4qa/6xcj1j5fwYGvxb3noECH84OIlBDrBAAAAAXRSTlP9g+pWxwAAAG1JREFUKM9jYBTEAAIM9BcUDcQUzFRSmoYuKNO0eJfGQTRBp1JRYwsVVEG5isRNSkrqD1EERXRFlLarKzmiCAqrCitdy1IyRBGUVJQsETykNJGwSqxmyv0A2a7/EMOdl9Hdid1HWP2OPZQGJOIAPpI4lSZvLh0AAAAASUVORK5CYII=");\n}\n\n.flag.TR,\n.flag.TUR,\n.flag.tr,\n.flag.tur {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAALVBMVEXjCRbjChf////nKTXrTFblGyf4wsXtZW3+8PHoOELvdHv1o6j84eL2srbxhIofikYmAAAAAXRSTlP+GuMHfQAAAGRJREFUKM9jYBTEAAIMdBYUnogpGN2klIIuKNKkW+m1EE3QQqlQUDAETTBJD8QODkQWFFY6CGKbbJyMJCiidBHEFtdJRBKUU3oIclWSkiMhlXAzjQnZjt2dWH2E1e/YQ2mgIg4A7pA0KOwEES4AAAAASUVORK5CYII=");\n}\n\n.flag.TM,\n.flag.TKM,\n.flag.tm,\n.flag.tkm {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAABL1BMVEUAhDwQi0lEdDayUi8pcTowm2HSJjAAhD0Bgzw2cjfHPS+/cDBAo23aRC/gWS3ULy9gSzfaSy7A4c+SOjG1cjCuSC+BQjK9WS+DZTCvaDCdRi9wQjSlUjB7azi6cDDCRi+iPy+iYGBVbjyWVjmFVDtPYzumWDBKWzaPdlFqYDNwupJgsoapLjGVQzEpajl+Njabj3jFVi6hk428Zi+jRy+rXTDELDCIWEuAVk3PUS6NUzGPSDOlaVuLXjCJPDFoUkORYjJ5Rz+7kI3XYi7CezCmdG80WjWAwp5Qqnmw2cOv2MLOOi+Xdz3MPTy1gC+AaEmhbjC+VEprazK3j5KgOj59ZWhZVTZUPzKSZmWUYVqaZTJ1UzI9fD2mfkqaT0zuii1ehEzrgC2Yg1t8WU+tZkZNbMQvAAAAAXRSTlP+GuMHfQAAATJJREFUOMuN0cVyw2AMBGBD7P3jGMPMzBPmhsvMjO//DD316Kg6f7OalTgOgBDyTx8fZi4G2+E4DoDz2Zvb619nSOjoD+5vzcY5AyDtTPS3UtnYhY8BUCFBtYOCSxlkOwkXA1DhDyCV7RK7PTEaULwMksQDgNsG1jPB9FMuGGAAyjwg2UHH3TgZnY2if60P9+1Wj6fpUXouMgA8rx65bcusFdEX6MUZAEgV1fY8QreTz4vJf3wmXIpEzGCN/kykcFNsmB4S1mtXewszRkNnO5wXxXCIhEJcMSw54aUTlVLuuzAf0mWyH8XY10ubTrQK28W2tKLh2npffQ7pgwshJVN8S8TpxOTrz2bZ9NFlLiebVKpZpeFpazk5OzmmoS57/FVZo6GmybJhGTSUdd3QNXkX/AXh7zbhm0h1sQAAAABJRU5ErkJggg==");\n}\n\n.flag.TC,\n.flag.TCA,\n.flag.tc,\n.flag.tca {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAh1BMVEUAKGjXeorg5e2CgV70x8xncplgeaHOESbAytrcV2VSYGD8zxn8+vu/ydlDVGG2oj/9wDoSNGruxh0AnkkzS2TarhtKWWScrjfuvDnIiw7Mxx53eV3mwCTepg5GfDf98fP31dn88fL21djY3uj13uLZ3OYTNGq+fgv8q5OrVBa7ZBb+qoVPrjjs6fq2AAAAtUlEQVQoz92Q2Q6DIBBFR1HRIoL7vrRq9///vkIJTZsYbV97HoDhnjBhwLNMBwQuxq7cbcOzYAkZSFWJulpRpbiquZTSeTrsfYx9sY6ipIsiXuBHMdk9SXRrwej3g2zdD9Msa5WgomiaNEWvNx3T8gxbfkad9D3iN96eSvSh6fG8q4ifOSmJFnWgBy5VldSEXK5tVMMWWUS6jkTZpnhk1T2uWLgpQpDHcR7AFwSMfeUBhCH8JQ/SlAsDOOEqEAAAAABJRU5ErkJggg==");\n}\n\n.flag.TV,\n.flag.TUV,\n.flag.tv,\n.flag.tuv {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAVFBMVEUAlcjYVmvyxs1Ap5YQmbswo6Ignq/IEC4BIWnAyNr89/jUeY7g5O1dr3+/yzJnbppgdKFwtHCjw0j22N3f1BnPzyV/uWT+3QDZ3OePvldfc6FmbZpuQUo4AAAAzklEQVQoz42S2Q6EIAxFUQoojgvgPv//n9OCxpEY8D6Ukp7QDVaUn71C1UrVdPZNUbInUYDQAPrbEDOCzBHcCQxYVcVcZ9DWqNU5rZXSaFe6xy92LRr1oPt7AhjkQInINAXfp9aYFVNr5+6p+SikMZKFZoZPWTQ9NeO9718zxlcXFLBzPAG9CoTLDdg1cELjrjl7JzFuybCEYy1g2xS4LQTC3Il0PuDWE/P0qjqQkIUkAGuXTMO0ixlrFDZdYEsL4VbeBv4kPnKWhc5PE+sHuscKVSzXnS4AAAAASUVORK5CYII=");\n}\n\n.flag.UG,\n.flag.UGA,\n.flag.ug,\n.flag.uga {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAb1BMVEUAAAB+bgKsNwH////ZAAAAAADqbQF+bgKsNwH83ATZAQD72wONjY1fX1vm5+a4uLbbEBD2v7/pb2/ukJAQEBC2UCDAwMDPW1oiJSLijVjvoZNwcHCcnJzExMTrqKjGNTWurq66mI/77e1FR0XhkJDFkXaHAAAACXRSTlP+/////////v4HKoILAAAAhElEQVQ4y82SSRLCIBQF0VYTwwcyJ45xuv8ZXUeogh328lXvXiu1T0KpjGKxSaJQ+piEzilWu1/a07n1xsoT68aaJ00dFTvsG+iiIoixgCeW2xUDuNlNL4b1XnoXAm5eJqJfC/Iwn7tExX7kJox9Qj0XuZpAPYFntP6zKA6JBOoJUmUUv8WyGwrCEGL4AAAAAElFTkSuQmCC");\n}\n\n.flag.UA,\n.flag.UKR,\n.flag.ua,\n.flag.ukr {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAgMAAABzfiX9AAAADFBMVEWAmF3/1QAAW7uAmF21ZTA2AAAAAXRSTlP+GuMHfQAAABpJREFUGNNjWAUHDIOBaf8fCv4whMLBYGACAHKYirK4JSjEAAAAAElFTkSuQmCC");\n}\n\n.flag.AE,\n.flag.ARE,\n.flag.ae,\n.flag.are,\n.flag.UAE,\n.flag.uae {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAElBMVEUAcy8AAAD/AAD///9UVFRVonQ6Np3gAAAAI0lEQVQY02NQAgEGNEBfwVBUABE0RgV0FnRBBRBBQVRAN0EAy7cuKPK5R68AAAAASUVORK5CYII=");\n}\n\n.flag.GB,\n.flag.GBR,\n.flag.gb,\n.flag.gbr,\n.flag.UK,\n.flag.uk {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAPFBMVEX////xw8p8jbLnv8pBWY8OLHHw8vfIEC4BIWnWTGKAkLRAWI5LYZXgeIn10tigrMfheYrx2+Htz9hKYJTy9LpmAAAAqUlEQVQoz8XTQRaDIAwFwC8SLBYE9f53LRVCCbJw1yx8koyiMcJOgFH04tBYUkDXBKnZLkldh4Z2kBnAJ2alO6SVqwrtgiSk9iaQ19EPktwL/RYuQ9c/Et45znB467dUyHAvq3AWgHtccJx+Ev+Ej19G53DBAFu0cc/wu/I2HsEVwA1PhSl1eK4NrxluuGTtJ5QUksmhaCkk68dM1SokGwxuoR0b/Qp5zw/L/xHkHUeiPgAAAABJRU5ErkJggg==");\n}\n\n.flag.US,\n.flag.USA,\n.flag.us,\n.flag.usa {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAVBAMAAADGNLEtAAAALVBMVEXGWWb////YkZo8O27ZkJmyIjRUU4BIR3fsyMzsyM21nbBzcpdgX4mUlLCFhKRMRAwAAAAAiklEQVQY02MwMy5ONjM3Tg5FAgzWZembQdgFCTCYX6+1OX691lgQCTDYmSU/BmEGZGB8vcrmMFAliqCtzeHHIIyi3RhoJkilEhJgsE5L2wzCKE4y25adlrYtOxlFuznYldbFM5EAgx3QEhBG0b4KCjqQAIMgFsAQigUwuGAB2LUTD7BqV8ICsDoJABuIZ60LUleQAAAAAElFTkSuQmCC");\n}\n\n.flag.UY,\n.flag.URY,\n.flag.uy,\n.flag.ury {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAflBMVEX////59vXouxDl0aKvehT9+/vR2+////8AOKgCOajHolX59Ozp3c7Gol69iQjPsnzDm0zPrV2tdwm2fwbw59bp2r3o1K7w48HfyZr17d+8iRm0gBnNp03v6OS7kDzXv5LdxYfMqW3QqEbOpkPCkBLBkinUow35zhTBkR/Ong6oZui5AAAAAXRSTlP9g+pWxwAAAJZJREFUOMvt0kcOwjAQBVCXMU7cS3qA0Mv9L4g4QJggkR1//TSaRohcFEK+gqIWXhscVjT0IeyolnJTzOUN6daeAaZIEdg0/pIdDFZVn6GwAE92SyeN9Nip5BhjeVQGGaa/OnZnMB6RirWKCVwGzlukR7rv4DEclMDWYwT3sbX4HqXkgkvzy1svgmWxKOUKcJ0P/089B19MsyEgLwCQwAAAAABJRU5ErkJggg==");\n}\n\n.flag.UZ,\n.flag.UZB,\n.flag.uz,\n.flag.uzb {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAIVBMVEUAmbX///8etTqZimSNf5Ifpb5vxNQyrcNOt8qe2ONcvc//sX/oAAAAR0lEQVQY02NgYGBlYAhgQAPsUxkYUhsaUAU5C7Co5AxgaE9NSEAV5ErAopKhqr09IWEBipALFsAgiAXQT9AYC2BQwgLoJggAd5op+8o7j/AAAAAASUVORK5CYII=");\n}\n\n.flag.VU,\n.flag.VUT,\n.flag.vu,\n.flag.vut {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAXVBMVEUAAADtwRBeTQXetA8AfzmzDSwPCwEAlUPSEDShgwt/ZwifgQv9zhJ+Zwk/MwMfGQEAMRZGBRG3lQwARx9lBxmPdAoAiz7EDzDOqA4wJwNOPwQAcTKdDCduWgSmDCgachgdAAAAt0lEQVQoz43Qy47CMAxA0WsH7JkkTaDQmVIe//+ZLCpYFZK7s3Qky+Z4++kKo48ig3Hcd0ANfRQ6KQBRRGlQALAoQeH834Ivap8pQB3S0qTARWKUCbCUQ4HzY78RMC5aSq4ANeWx8KmZe2Re1qGmLOPvRkDSavdc2tCmNI1i7dVwCVnXY+YCp+tuoxVOBWyQoHD6883eD//OXrDJVmiDiMJh5/4VapBoDebeydzpY+4Yh6t31Mncnxi9Gc0Ued8IAAAAAElFTkSuQmCC");\n}\n\n.flag.VE,\n.flag.VEN,\n.flag.ve,\n.flag.ven {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAALVBMVEXPEyr/zAAAJH3PFCv9ygECI3y7xNsbOYrp7PMuSpSotNM8V5tTaqZXbqmFlcDhG/iSAAAAAXRSTlP9g+pWxwAAAFhJREFUKM9jcBTEACIMQ0UwSAkDqMIF1TtnFKELqiWlT1NLQhOseqSkpLccVVBjEYjUakIR1LkEInUPIQtqZkM0bpuEJKgO0aekUYTqJBR3MhtjAIOhIggAAWBSAu+GeDgAAAAASUVORK5CYII=");\n}\n\n.flag.VN,\n.flag.VNM,\n.flag.vn,\n.flag.vnm {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAIVBMVEXaJR3//wDhShf86gLztwnpexHcMhvvoAzlaRP41gXjWxXelDKJAAAAYUlEQVQoz2NgoDtgS8AiyBqARZDFAYsgowEWwUYJLIKOIugimoJgMAlVtBAkJo6mlMNQUFB4AboBiYKCYhj2LBQUFMIQLBQ2FMcQNHRLEUYXYxJlYAhUQA8OoABTAMOgBQBOLAlBK2IgQgAAAABJRU5ErkJggg==");\n}\n\n.flag.VG,\n.flag.VGB,\n.flag.vg,\n.flag.vgb {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAz1BMVEUBIWkeaiHUeY4+VYnyxs1nbpo9VIrIEC7AyNrYVms+VYoPLXEtcSMAXCVgdKENZCa/x9ng5O37/P378vTf4+weOnj21dqHiYjPu37Z3Odfc6HltDmYlIPKnSG6tIhthiXTrEGhlGf99/iGljx8jSYydT6IqI6Ikyc4cyJ3n4JPg0YtbDUcbz8bYydcgiXL2M3LzsG5y7yYtqH13uNhbYPXrDm7kR6rm26ogRvAqGNJXiTUsE9QfiNcfEEpbSpviinHxbe2zcDi5OBYjGGSrXzI51XpAAAA80lEQVQoz7XQyZKCMBAG4ETQsCQEQQXc930p911ndN7/mSY9kKo5UOTkf0jo9FfpIsjUS1UkYhBiwJ7PmTpKCzSAxhCqooNQBgWYyQzXdaNtxfcI6Yo1EqWbCklK/hp2IYmtgBambHHBnGnJaJHI8ytdQsS6jaBOYAsPOrxFNTncKelmLg8/4xThKzm28AgPV7O+hDGTz/OPWvT22KzvSzlaNuSDA40hG882X3zMNJQdi+Pl+sVGVAW1RR+v/OlTeaM9pfjbm9BBWQGbYY+/f+a9Zmhnul3tcB7O+SRs1ALF6Hr7dG039nXVaEGDYydQs4/nFxTcFD++Tcb9AAAAAElFTkSuQmCC");\n}\n\n.flag.VI,\n.flag.VIR,\n.flag.vi,\n.flag.vir {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAABm1BMVEX////bsDX+/v7dsjUUJGP8/Pzjtjb////19fXarjP7+/sWJmfWqzH5+fnPqrX28+qkNlanN1jgx4HjvlYFe7u3bYMAdbTkwmP0xT3tvjnjxnTWs1Pw8fDetD/dsDPm7PDk2rrTqTLgszPr3LXXwoXk6Orn1qbjuUTpuzjhtDbmuTjPpS+TLkxzrMzLozHHnix7rMYpiLvXs0aKsceOuNC9mjiuZG3r4L7gu1PS4eqZvdGty9unw9Sxzt+BtdFFlcCsxa/RxqR1oXwEb6vatlFllWzE08aAqIVOi1fJv5atZnrUtmHc0bLmy3zVrT3x7uXg0aT58+Gvs8LYxZVDTHQ3jLlDRFPiy43dyImix9tBQlLs48pVoMfL2uLOq0TcxH7KuYrN28/B2OTLsnNsoHOYvJ6FqoqJso/WvXrZ4tvKrK/m3cXczJ6+kGbQrlb7+O9zo77m0puSfEaTfkXywzvs4cC4l6C6mKGfXXFcnmUmgbSdn1nj5tiPljjc6d5bkWQ/eUhIi1HN0rJWoMc9dXmzqW1Dh6yquLJMjbLH8TdBAAACKklEQVQ4y7WTV3caMRBGJW20Z0VYUx0wdRdTdum9+FAMmI57t+Peu9N7cZz2s8MaMDzETl48LzrSXH2aGc0A8BDG4Pv3mGmvbHJ8WMH2jvNmXR/JKobHkx2vHdKiTj3VFkKzRl541ZWaUutEGtq7lyYIgTztNjgVEul8qVdLxwqnwSXykJCJ2+cmjRASXtQLrmdSJHq9ruVyugS9KCcUNE72AplWQ+gngkBpZhyz4vMXIueY0VGCQPwQqqf7E0NLYRKgRXpx7lHH5hZb2wAJL6FemhggjFaNvMfiHlp43LGFIbfFwxtXJRV8A6N0Gpl81tGPG+seC73SVVyhKc/6hpQdMPlMN4rLOdl2qLy3v8dZiG3T+/a11/um7t20EQvHsCPSBzxpV5zRWn3Zz6VShTm0kZpqcECpGhhU1YjtcC19ncE9ED+NhlKy/WqhDBSJvLINKvMJBb6OFtdG0C0IlkMhFhwVSgcMuBiLt8H42AWw5i6j2lRPEVi1WYC2dquVMlZT4boE1sOUAbOXkWAQ94O5VsimSvXLwZFZ3jg7VqqOzxrEzJh+B7clf2re0am2VCc0unv1teY/Pw3E4vFY4PTc34z8jPb8fV1Y+CBqEhwhfCzGE8IlNLYff+9fvPPpGzjhIWwYWy1ygn5938F3kFvvWNCUU0kXJW8CX/G97M6hGG1FbTcnk2Y7yGi187J7JwhxBgOHmaC2mP3XsMkkJSYSyfzfbCLwwPYHPCRVSi8V07AAAAAASUVORK5CYII=");\n}\n\n.flag.WF,\n.flag.WLF,\n.flag.wf,\n.flag.wlf {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAMFBMVEXtKDjtKTkAI5X////vRFLuOknuNkXxWmf5tbv819qptNv7ys5YaLP83N/3oajEtdCITnYQAAAAAXRSTlP9g+pWxwAAAGFJREFUKM9jUFLSMjZuFBRxFIQDAYahKCi3e/dDsOCZM+fv3m13dwcKiqRNtkxzBAmGgkBqaChQhfi0zGmZhSBBRoRZ4pZpaZMxBI0bJYyJU4nNTITtSIIIdyILwn00RAQB9plFeRIwkYUAAAAASUVORK5CYII=");\n}\n\n.flag.EH,\n.flag.ESH,\n.flag.eh,\n.flag.esh {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAWlBMVEXEERvxxMa4ExrIIyxVVVVVpn7llpoAAAD///8Aej300tTYYmmeJSbppKj88PDttLefDRV7NyYNczolZjZ6ChANAQElAwVKUjBKBgrPPEX44uPeeH6aSD9cnHcNwNhSAAAAfUlEQVQoz43QSQ6DMBBE0TIE4wEzJCEJ0/2vyWAgC6Sm/tJ6UqmNd5tTAfWHhEh+JASY+Q0y8xES8zgqHnInROdMrAqqN5f+EGmIzhtlRAj4cnkZtE41CxU37UonwfMYpcVjxikTOz78a2/af/tlKdg8LQPvZyMkZjfIzK7NQI0WA0pe9mYAAAAASUVORK5CYII=");\n}\n\n.flag.YE,\n.flag.YEM,\n.flag.ye,\n.flag.yem {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAgMAAABzfiX9AAAACVBMVEUAAADOESb///9w5v7GAAAAFUlEQVQY02MIhQMGWjFXwQHNmLQHAJQLWadZSURAAAAAAElFTkSuQmCC");\n}\n\n.flag.ZM,\n.flag.ZMB,\n.flag.zm,\n.flag.zmb {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAP1BMVEUZigAZhQAwgQDFaQC3YQBSawNsJgPvfQDeIBAAAABmgABfZAVeRQGlaAB7bgBNeQCLcwDSawCeagBiVANaewDu6/ERAAAAYElEQVQ4y+3QSQ6AIAxA0Q4girYMev+zWg8gsjDGBS/p7gcKAB+iSAhw2CClZiiFJXPWKlybR6JyKYGZXaaH2zElcc5jx6Koip1Pwvd+ZzX7ZuLlPvSzmRbjghnhCP8UntyWCYNHCcFWAAAAAElFTkSuQmCC");\n}\n\n.flag.ZW,\n.flag.ZWE,\n.flag.zw,\n.flag.zwe {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAdVBMVEXUAAAAAACioaDw8PBqAAD/0gD0ngBAgAD///8AZADS0dDCnADaiwPyr6/97+/tk4b41dUQSBAwSjBkaGA5cQChhxDUIhIQEBBmYGBeAAB0aDDnb2/QWzvnuQBoMDBwamCIEBD0v7+rOQDWDw/f39/3qA/dagBgvDPGAAAAh0lEQVQoz42TRxLCMBAEB4nQSA4imWCbDP9/IheulrbPXbW1s7Nym7UJEbZGEb/br8oIwB0WRQRAuNjElPytWuYR4Nse3F15gPenA8I1Lza9FL/S0PjTeT6NoH6NsWoB3HE2iYAhjhUGselifCYoj67h0RaX4Y8lHsAWuP2ExlJYa2YtrvUVfoyrFApCzR7PAAAAAElFTkSuQmCC");\n}\n',"/*\n * React Fabric\n * @version : 1.0.0\n * @copyright : 2024\n * @author : Adarsh Pastakia\n */\n\n.sb-show-main.sb-show-main.sb-show-main .control-panel {\n margin: -2rem 0 2.5rem;\n\n .sb-bar {\n display: none;\n }\n}\n\n.sb-show-main.sb-show-main.sb-show-main .docblock-argstable.docblock-argstable {\n border-spacing: 0.25rem;\n border-collapse: separate;\n border-width: 0;\n\n & thead th {\n color: theme(textColor.accent.600);\n background-color: theme(backgroundColor.dimmed);\n }\n\n & tbody tr:nth-child(odd) td {\n background-color: color-mix(in lab, var(--fabric-bg) 99%, var(--tint));\n }\n\n & tbody tr:nth-child(even) td {\n background-color: color-mix(in lab, var(--fabric-bg) 96%, var(--tint));\n }\n\n & tbody td p {\n white-space: pre-wrap;\n }\n}\n\n.hidden-anchor {\n height: 0;\n visibility: hidden;\n}\n\nh1.sbdocs-title {\n font-size: 1.5rem;\n font-weight: 500;\n color: var(--primary);\n text-decoration: underline 2px;\n text-underline-offset: 0.25em;\n}\n\n.sbdocs.sbdocs-content > h3,\n.sb-anchor > h3 {\n font-size: 1.125rem;\n font-weight: 400;\n color: var(--accent);\n text-decoration: underline 1px;\n text-underline-offset: 0.25em;\n}\n\n.sbdocs.sbdocs.sbdocs-preview {\n &,\n & .docs-story {\n background-color: theme(backgroundColor.base);\n }\n\n .sb-bar {\n background-color: var(--fabric-bg);\n }\n}\n\n.sb-bar.sb-bar .tabbutton {\n color: var(--primary);\n\n &.tabbutton-active {\n border-bottom-color: var(--primary);\n }\n}\n\n.toc-wrapper.toc-wrapper.toc-wrapper > .toc-list.toc-list.toc-list {\n padding: 0;\n border-left: 0;\n border-inline-start: 1px solid theme(borderColor.base);\n\n .toc-list-item.toc-list-item.toc-list-item {\n margin: 0;\n margin-inline-start: -1px;\n padding: 0.25rem 1rem;\n border-inline-start: 2px solid transparent;\n\n &::before {\n border-left: 0;\n }\n }\n\n .toc-list-item.toc-list-item.is-active-li.is-active-li {\n border-color: var(--accent);\n\n & > a.is-active-link {\n color: var(--accent);\n }\n }\n}\n",'/*\n * React Fabric\n * @version : 1.0.0\n * @copyright : 2024\n * @author : Adarsh Pastakia\n */\n\n.prismjs.prismjs.prismjs {\n color: theme(textColor.dimmed);\n background: var(--fabric-bg);\n}\n\n.prismjs > code {\n user-select: text;\n\n font-family: Consolas, Monaco, "Andale Mono", "Ubuntu Mono", monospace;\n font-size: 1em;\n line-height: 1.5;\n text-align: left;\n word-break: normal;\n word-spacing: normal;\n word-wrap: normal;\n white-space: pre;\n}\n\n/* Code blocks */\npre[class*="language-"] {\n overflow: auto;\n margin: 0.5em 0;\n padding: 1em;\n}\n\n/* Inline code */\n*:not(pre) > code[class*="language-"] {\n padding: 0.1em;\n white-space: normal;\n border-radius: 0.3em;\n}\n\ncode[class*="language-"],\npre[class*="language-"] {\n & .token.important,\n & .token.bold {\n font-weight: 600;\n }\n\n & .token.italic {\n font-style: italic;\n }\n\n & .token.entity {\n cursor: help;\n }\n}\n\n.prismjs {\n position: relative;\n}\n\n.prismjs > div {\n white-space: pre-wrap !important;\n\n &::after {\n position: absolute;\n top: 0;\n inset-inline-end: 0;\n\n padding: 0.25em 0.5em;\n\n font-size: 0.75rem;\n\n opacity: 0.7;\n border-end-start-radius: 8px;\n }\n\n &.language-jsx::after,\n &.language-tsx::after {\n content: "React";\n color: #000;\n background-color: #61dafb;\n }\n\n &.language-js::after {\n content: "JS";\n color: #000;\n background-color: #f7df1e;\n }\n\n &.language-ts::after {\n content: "TS";\n color: #fff;\n background-color: #3178c6;\n }\n\n &.language-css::after {\n content: "CSS";\n color: #fff;\n background-color: #1572b6;\n }\n\n &.language-html::after {\n content: "HTML";\n color: #fff;\n background-color: #e34f26;\n }\n\n &.language-bash::after {\n content: "Bash";\n color: #fff;\n background-color: #64748b;\n }\n\n &.language-json::after {\n content: "JSON";\n color: #fff;\n background-color: #000;\n }\n\n &.language-yaml::after {\n content: "YAML";\n color: #fff;\n background-color: #cb171e;\n }\n}\n','/*\n * React Fabric\n * @version : 1.0.0\n * @copyright : 2024\n * @author : Adarsh Pastakia\n */\n\nhtml[data-color-scheme="dark"] {\n & .prismjs > div[class*="language-"] {\n & .token.comment,\n & .token.block-comment,\n & .token.prolog,\n & .token.doctype,\n & .token.cdata {\n color: #999;\n }\n\n & .token.punctuation {\n color: #ccc;\n }\n\n & .token.tag,\n & .token.attr-name,\n & .token.namespace,\n & .token.deleted {\n color: #e2777a;\n }\n\n & .token.function-name {\n color: #6196cc;\n }\n\n & .token.boolean,\n & .token.number,\n & .token.function {\n color: #f08d49;\n }\n\n & .token.property,\n & .token.class-name,\n & .token.constant,\n & .token.symbol {\n color: #f8c555;\n }\n\n & .token.selector,\n & .token.important,\n & .token.atrule,\n & .token.keyword,\n & .token.builtin {\n color: #cc99cd;\n }\n\n & .token.string,\n & .token.char,\n & .token.attr-value,\n & .token.regex,\n & .token.variable {\n color: #7ec699;\n }\n\n & .token.operator,\n & .token.entity,\n & .token.url {\n color: #67cdcc;\n }\n\n & .token.important,\n & .token.bold {\n font-weight: 600;\n }\n\n & .token.italic {\n font-style: italic;\n }\n\n & .token.entity {\n cursor: help;\n }\n\n & .token.inserted {\n color: #008000;\n }\n }\n}\n','/*\n * React Fabric\n * @version : 1.0.0\n * @copyright : 2024\n * @author : Adarsh Pastakia\n */\n\nhtml[data-color-scheme="light"] {\n & .prismjs > div[class*="language-"] {\n & .token.comment,\n & .token.prolog,\n & .token.doctype,\n & .token.cdata {\n color: #708090;\n }\n\n & .token.punctuation {\n color: #999;\n }\n\n & .token.namespace {\n opacity: 0.7;\n }\n\n & .token.property,\n & .token.tag,\n & .token.boolean,\n & .token.number,\n & .token.constant,\n & .token.symbol,\n & .token.deleted {\n color: #905;\n }\n\n & .token.selector,\n & .token.attr-name,\n & .token.string,\n & .token.char,\n & .token.builtin,\n & .token.inserted {\n color: #690;\n }\n\n & .token.operator,\n & .token.entity,\n & .token.url,\n & .language-css .token.string,\n & .style .token.string {\n /* This background color was intended by the author of this theme. */\n color: #9a6e3a;\n background: hsl(0deg 0% 100% / 50%);\n }\n\n & .token.atrule,\n & .token.attr-value,\n & .token.keyword {\n color: #07a;\n }\n\n & .token.function,\n & .token.class-name {\n color: #dd4a68;\n }\n\n & .token.regex,\n & .token.important,\n & .token.variable {\n color: #e90;\n }\n }\n}\n'],sourceRoot:""}]);const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/dist/esm/components/actionLabel/ActionLabel.module.css":(module,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,"@layer comp{.du9AtGJbcP3pwKaV7sdy>.UjtQjCQh3YkDCy_FXJ2l{--width:4rem;width:0}.du9AtGJbcP3pwKaV7sdy:not([data-disabled=true]):hover>.UjtQjCQh3YkDCy_FXJ2l{transition:all .1s cubic-bezier(.215,.61,.355,1);transition-delay:.5s;width:var(--width)}}","",{version:3,sources:["webpack://./packages/core/dist/esm/components/actionLabel/ActionLabel.module.css"],names:[],mappings:"AAAA,YAAyB,4CAAW,YAAY,CAAC,OAAO,CAAC,4EAA2C,gDAAgD,CAAC,oBAAoB,CAAC,kBAAkB,CAAE",sourcesContent:["@layer comp{.actionLabel{&>.actions{--width:4rem;width:0}&:not([data-disabled=true]):hover>.actions{transition:all .1s cubic-bezier(.215,.61,.355,1);transition-delay:.5s;width:var(--width)}}}"],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={actionLabel:"du9AtGJbcP3pwKaV7sdy",actions:"UjtQjCQh3YkDCy_FXJ2l"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/dist/esm/components/animations/Animations.module.css":(module,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,"@layer comp{@keyframes _Cwycr0UXpHx8Efc93Te{0%,25%{background-position:0 50%,0 calc(50% - 2px),0 calc(50% + 2px),50% 50%,50% calc(50% - 2px),50% calc(50% + 2px),100% 50%,100% calc(50% - 2px),100% calc(50% + 2px);background-size:8px 0,8px 4px,8px 4px,8px 0,8px 4px,8px 4px,8px 0,8px 4px,8px 4px}50%{background-position:0 50%,0 -2px,0 calc(100% + 2px),50% 50%,50% calc(50% - 2px),50% calc(50% + 2px),100% 50%,100% calc(50% - 2px),100% calc(50% + 2px);background-size:8px 100%,8px 4px,8px 4px,8px 0,8px 4px,8px 4px,8px 0,8px 4px,8px 4px}75%{background-position:0 50%,0 -2px,0 calc(100% + 2px),50% 50%,50% -2px,50% calc(100% + 2px),100% 50%,100% calc(50% - 2px),100% calc(50% + 2px);background-size:8px 100%,8px 4px,8px 4px,8px 100%,8px 4px,8px 4px,8px 0,8px 4px,8px 4px}95%,to{background-position:0 50%,0 -2px,0 calc(100% + 2px),50% 50%,50% -2px,50% calc(100% + 2px),100% 50%,100% -2px,100% calc(100% + 2px);background-size:8px 100%,8px 4px,8px 4px,8px 100%,8px 4px,8px 4px,8px 100%,8px 4px,8px 4px}}.bcgiQmAkP9O7Rqb30XA5{--c:linear-gradient(currentcolor 0 0);--r1:radial-gradient(farthest-side at bottom,currentcolor 93%,#0000);--r2:radial-gradient(farthest-side at top,currentcolor 93%,#0000);animation:_Cwycr0UXpHx8Efc93Te 1s infinite alternate;aspect-ratio:1;background:var(--c),var(--r1),var(--r2),var(--c),var(--r1),var(--r2),var(--c),var(--r1),var(--r2);background-repeat:no-repeat}@keyframes Mp31gmbYKtCId30xLj0w{to{transform:rotate(1turn)}}.VP15o9uVw43m9wTwNlVa{--b:8px;animation:Mp31gmbYKtCId30xLj0w 2s steps(10) infinite;aspect-ratio:1;background:conic-gradient(#0000 10%,currentcolor) content-box;border-radius:50%;-webkit-mask:repeating-conic-gradient(#0000 0deg,#000 1deg 20deg,#0000 21deg 36deg),radial-gradient(farthest-side,#0000 calc(100% - var(--b) - 1px),#000 calc(100% - var(--b)));mask:repeating-conic-gradient(#0000 0deg,#000 1deg 20deg,#0000 21deg 36deg),radial-gradient(farthest-side,#0000 calc(100% - var(--b) - 1px),#000 calc(100% - var(--b)));-webkit-mask-composite:destination-in;mask-composite:destination-in;-webkit-mask-composite:source-in, xor;mask-composite:intersect}@keyframes ZydUSDX2ipk7YUFLhN8Q{0%{transform:translateX(calc(-100%*var(--multiplier)))}to{transform:translateX(calc(100%*var(--multiplier)))}}.ZydUSDX2ipk7YUFLhN8Q{--multiplier:1;}.ZydUSDX2ipk7YUFLhN8Q>div{height:calc(.125rem + 2px);}.ZydUSDX2ipk7YUFLhN8Q>div:after{animation:ZydUSDX2ipk7YUFLhN8Q 1s cubic-bezier(.65,0,.45,1) infinite}[dir=rtl] .ZydUSDX2ipk7YUFLhN8Q{--multiplier:-1}@keyframes qOdAZMm1rXd8r6LgRPJV{to{stroke-dashoffset:0}}@keyframes pvx6y9ULlMfBxqXVUYSa{0%,to{transform:none}50%{transform:scale3d(1.1,1.1,1)}}@keyframes pXVeXQ4nFG6hgqEbAHy8{to{box-shadow:inset 0 0 0 1em currentcolor}}.Mfk0LLqF54QunSsQdHQs{box-shadow:inset 0 0 0 currentcolor;color:var(--primary);height:1.5em;width:1.5em;fill:transparent;stroke-miterlimit:10;stroke-width:4px;animation:pXVeXQ4nFG6hgqEbAHy8 .4s ease-in-out .4s forwards,pvx6y9ULlMfBxqXVUYSa .3s ease-in-out .9s both;animation-delay:.75s;}.Mfk0LLqF54QunSsQdHQs .Z2h8KvKKrMfsNTwMBpoC{fill:transparent;stroke:currentcolor;stroke-dasharray:166;stroke-dashoffset:166;stroke-miterlimit:10;stroke-width:8px;animation:qOdAZMm1rXd8r6LgRPJV .6s cubic-bezier(.65,0,.45,1) forwards;animation-delay:.25s}.Mfk0LLqF54QunSsQdHQs .WCpA_9bkgQc43377GNl7{transform-origin:50% 50%;stroke:currentcolor;stroke-dasharray:48;stroke-dashoffset:48;animation:qOdAZMm1rXd8r6LgRPJV .3s cubic-bezier(.65,0,.45,1) .8s forwards;animation-delay:.75s}}","",{version:3,sources:["webpack://./packages/core/dist/esm/components/animations/Animations.module.css"],names:[],mappings:"AAAA,YAAY,gCAAc,OAAO,gKAAgK,CAAC,iFAAiF,CAAC,IAAI,sJAAsJ,CAAC,oFAAoF,CAAC,IAAI,4IAA4I,CAAC,uFAAuF,CAAC,OAAO,kIAAkI,CAAC,0FAA0F,CAAC,CAAC,sBAAM,qCAAqC,CAAC,oEAAoE,CAAC,iEAAiE,CAAC,oDAAkC,CAAC,cAAc,CAAC,iGAAiG,CAAC,2BAA2B,CAAC,gCAAc,GAAG,uBAAuB,CAAC,CAAC,sBAAS,OAAO,CAAC,oDAAkC,CAAC,cAAc,CAAC,6DAA6D,CAAC,iBAAiB,CAAC,+KAAuK,CAAvK,uKAAuK,CAAC,qCAA6B,CAA7B,6BAA6B,CAAC,qCAAuB,CAAvB,wBAAwB,CAAC,gCAAkB,GAAG,mDAAmD,CAAC,GAAG,kDAAkD,CAAC,CAAC,sBAAQ,cAAc,CAAuI,CAAtI,0BAAM,0BAA0B,CAAgE,CAA/D,gCAAQ,oEAAsD,CAAE,gCAAqB,eAAe,CAAE,gCAAwB,GAAG,mBAAmB,CAAC,CAAC,gCAAuB,MAAM,cAAc,CAAC,IAAI,4BAA4B,CAAC,CAAC,gCAAsB,GAAG,uCAAuC,CAAC,CAAC,sBAAgB,mCAAmC,CAAC,oBAAmC,CAAC,YAAY,CAAC,WAAW,CAAC,gBAAgB,CAAC,oBAAoB,CAAC,gBAAgB,CAAC,yGAAsF,CAAC,oBAAoB,CAAiZ,CAAhZ,4CAAc,gBAAgB,CAAC,mBAAmB,CAAC,oBAAoB,CAAC,qBAAqB,CAAC,oBAAoB,CAAC,gBAAgB,CAAC,qEAA6D,CAAC,oBAAoB,CAAC,4CAAY,wBAAwB,CAAC,mBAAmB,CAAC,mBAAmB,CAAC,oBAAoB,CAAC,yEAAiE,CAAC,oBAAoB,CAAE",sourcesContent:["@layer comp{@keyframes l2{0%,25%{background-position:0 50%,0 calc(50% - 2px),0 calc(50% + 2px),50% 50%,50% calc(50% - 2px),50% calc(50% + 2px),100% 50%,100% calc(50% - 2px),100% calc(50% + 2px);background-size:8px 0,8px 4px,8px 4px,8px 0,8px 4px,8px 4px,8px 0,8px 4px,8px 4px}50%{background-position:0 50%,0 -2px,0 calc(100% + 2px),50% 50%,50% calc(50% - 2px),50% calc(50% + 2px),100% 50%,100% calc(50% - 2px),100% calc(50% + 2px);background-size:8px 100%,8px 4px,8px 4px,8px 0,8px 4px,8px 4px,8px 0,8px 4px,8px 4px}75%{background-position:0 50%,0 -2px,0 calc(100% + 2px),50% 50%,50% -2px,50% calc(100% + 2px),100% 50%,100% calc(50% - 2px),100% calc(50% + 2px);background-size:8px 100%,8px 4px,8px 4px,8px 100%,8px 4px,8px 4px,8px 0,8px 4px,8px 4px}95%,to{background-position:0 50%,0 -2px,0 calc(100% + 2px),50% 50%,50% -2px,50% calc(100% + 2px),100% 50%,100% -2px,100% calc(100% + 2px);background-size:8px 100%,8px 4px,8px 4px,8px 100%,8px 4px,8px 4px,8px 100%,8px 4px,8px 4px}}.bars{--c:linear-gradient(currentcolor 0 0);--r1:radial-gradient(farthest-side at bottom,currentcolor 93%,#0000);--r2:radial-gradient(farthest-side at top,currentcolor 93%,#0000);animation:l2 1s infinite alternate;aspect-ratio:1;background:var(--c),var(--r1),var(--r2),var(--c),var(--r1),var(--r2),var(--c),var(--r1),var(--r2);background-repeat:no-repeat}@keyframes l4{to{transform:rotate(1turn)}}.spinner{--b:8px;animation:l4 2s steps(10) infinite;aspect-ratio:1;background:conic-gradient(#0000 10%,currentcolor) content-box;border-radius:50%;mask:repeating-conic-gradient(#0000 0deg,#000 1deg 20deg,#0000 21deg 36deg),radial-gradient(farthest-side,#0000 calc(100% - var(--b) - 1px),#000 calc(100% - var(--b)));mask-composite:destination-in;mask-composite:intersect}@keyframes loader{0%{transform:translateX(calc(-100%*var(--multiplier)))}to{transform:translateX(calc(100%*var(--multiplier)))}}.loader{--multiplier:1;&>div{height:calc(.125rem + 2px);&:after{animation:loader 1s cubic-bezier(.65,0,.45,1) infinite}}:global([dir=rtl]) &{--multiplier:-1}}@keyframes check-stroke{to{stroke-dashoffset:0}}@keyframes check-scale{0%,to{transform:none}50%{transform:scale3d(1.1,1.1,1)}}@keyframes check-fill{to{box-shadow:inset 0 0 0 1em currentcolor}}.checkAnimation{box-shadow:inset 0 0 0 currentcolor;color:theme(colors.primary.DEFAULT);height:1.5em;width:1.5em;fill:transparent;stroke-miterlimit:10;stroke-width:4px;animation:check-fill .4s ease-in-out .4s forwards,check-scale .3s ease-in-out .9s both;animation-delay:.75s;& .circlePart{fill:transparent;stroke:currentcolor;stroke-dasharray:166;stroke-dashoffset:166;stroke-miterlimit:10;stroke-width:8px;animation:check-stroke .6s cubic-bezier(.65,0,.45,1) forwards;animation-delay:.25s}& .iconPart{transform-origin:50% 50%;stroke:currentcolor;stroke-dasharray:48;stroke-dashoffset:48;animation:check-stroke .3s cubic-bezier(.65,0,.45,1) .8s forwards;animation-delay:.75s}}}"],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={bars:"bcgiQmAkP9O7Rqb30XA5",l2:"_Cwycr0UXpHx8Efc93Te",spinner:"VP15o9uVw43m9wTwNlVa",l4:"Mp31gmbYKtCId30xLj0w",loader:"ZydUSDX2ipk7YUFLhN8Q",checkAnimation:"Mfk0LLqF54QunSsQdHQs","check-fill":"pXVeXQ4nFG6hgqEbAHy8","check-scale":"pvx6y9ULlMfBxqXVUYSa",circlePart:"Z2h8KvKKrMfsNTwMBpoC","check-stroke":"qOdAZMm1rXd8r6LgRPJV",iconPart:"WCpA_9bkgQc43377GNl7"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/dist/esm/components/avatar/Avatar.module.css":(module,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,"@layer comp{.DJ1qWLXKusZ_aFMujFXy{border-radius:var(--rounding);box-shadow:0 0 1px color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 65%, color(from var(--tint) srgb r g b / 1));height:1em;vertical-align:-.125em;width:1em;}.DJ1qWLXKusZ_aFMujFXy>i,.DJ1qWLXKusZ_aFMujFXy>img,.DJ1qWLXKusZ_aFMujFXy>svg{background-color:color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 90%, color(from var(--tint) srgb r g b / 1));border-radius:inherit;display:block;height:1em;line-height:1;-o-object-fit:cover;object-fit:cover;overflow:hidden;pointer-events:none;width:1em;fill:currentcolor}.DJ1qWLXKusZ_aFMujFXy>i:before{line-height:1}.DJ1qWLXKusZ_aFMujFXy>.fMlCiJnANvXgG4m2yTO_{z-index:-1}.OcR_rqwAd0mtTPg9k528>.DJ1qWLXKusZ_aFMujFXy{box-shadow:0 0 0 1px color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 80%, color(from var(--tint) srgb r g b / 1)),0 0 0 .125em var(--fabric-bg);}.OcR_rqwAd0mtTPg9k528>.DJ1qWLXKusZ_aFMujFXy:not(:first-child){margin-inline-start:-.125em}.OcR_rqwAd0mtTPg9k528 .EPrRvA_g2ge3IzEXpsCM{border-radius:inherit;font-size:inherit;height:1em;width:1em}}@layer util{.OcR_rqwAd0mtTPg9k528>.DJ1qWLXKusZ_aFMujFXy{border-radius:inherit;font-size:inherit}}","",{version:3,sources:["webpack://./packages/core/dist/esm/components/avatar/Avatar.module.css"],names:[],mappings:"AAAA,YAAY,sBAAQ,6BAA6B,CAAC,8HAA0C,CAAC,UAAU,CAAC,sBAAsB,CAAC,SAAS,CAAsQ,CAArQ,4EAAgB,4HAA8C,CAAC,qBAAqB,CAAC,aAAa,CAAC,UAAU,CAAC,aAAa,CAAC,mBAAgB,CAAhB,gBAAgB,CAAC,eAAe,CAAC,mBAAmB,CAAC,SAAS,CAAC,iBAAiB,CAAC,+BAAW,aAAa,CAAC,4CAAoB,UAAU,CAAe,4CAAU,8JAA2E,CAAiD,CAAhD,8DAAoB,2BAA2B,CAAE,4CAAsB,qBAAqB,CAAC,iBAAiB,CAAC,UAAU,CAAC,SAAS,CAAE,CAAC,YAAyB,4CAAU,qBAAqB,CAAC,iBAAiB,CAAE",sourcesContent:["@layer comp{.avatar{border-radius:var(--rounding);box-shadow:0 0 1px theme(borderColor.base);height:1em;vertical-align:-.125em;width:1em;&>i,&>img,&>svg{background-color:theme(backgroundColor.dimmed);border-radius:inherit;display:block;height:1em;line-height:1;object-fit:cover;overflow:hidden;pointer-events:none;width:1em;fill:currentcolor}&>i:before{line-height:1}&>.imagePlaceholder{z-index:-1}}.avatarGroup{&>.avatar{box-shadow:0 0 0 1px theme(borderColor.muted),0 0 0 .125em var(--fabric-bg);&:not(:first-child){margin-inline-start:-.125em}}& .avatarGroup--extra{border-radius:inherit;font-size:inherit;height:1em;width:1em}}}@layer util{.avatarGroup{&>.avatar{border-radius:inherit;font-size:inherit}}}"],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={avatar:"DJ1qWLXKusZ_aFMujFXy",imagePlaceholder:"fMlCiJnANvXgG4m2yTO_",avatarGroup:"OcR_rqwAd0mtTPg9k528","avatarGroup--extra":"EPrRvA_g2ge3IzEXpsCM"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/dist/esm/components/badge/Badge.module.css":(module,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'@layer comp{@keyframes elVi1kloLEQOkNlUHl4Y{0%{opacity:.7;transform:scale(1)}to{opacity:0;transform:scale(3)}}.PzFE0Mkd567NPdLmK2qS{--tw-bg-opacity:1;background-color:color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));box-sizing:content-box;color:color-mix(in lab, color(from var(--fabric-text) srgb r g b / 1) 95%, color(from var(--tint) srgb r g b / 1));outline:.5px solid color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 99%, color(from var(--tint) srgb r g b / 1));}.PzFE0Mkd567NPdLmK2qS>span{font-size:.625em;font-weight:500;line-height:1;vertical-align:.125em}.PzFE0Mkd567NPdLmK2qS[data-ping=true]{--translate:50%;}.PzFE0Mkd567NPdLmK2qS[data-ping=true]:before{animation:elVi1kloLEQOkNlUHl4Y 1s linear infinite;background-color:inherit;border-radius:999px;content:"";inset:0;position:absolute;z-index:-1}.PzFE0Mkd567NPdLmK2qS:not([data-ping=true]){--translate:0.75rem;min-width:1em}.PzFE0Mkd567NPdLmK2qS[data-placement=top]{left:50%;top:0;transform:translate(-50%,-50%)}.PzFE0Mkd567NPdLmK2qS[data-placement=top-start]{inset-inline-start:0;top:0;}[dir=ltr] .PzFE0Mkd567NPdLmK2qS[data-placement=top-start]{transform:translate(calc(var(--translate)*-1),-50%)}[dir=rtl] .PzFE0Mkd567NPdLmK2qS[data-placement=top-start]{transform:translate(calc(var(--translate)*1),-50%)}.PzFE0Mkd567NPdLmK2qS[data-placement=top-end]{inset-inline-end:0;top:0;}[dir=ltr] .PzFE0Mkd567NPdLmK2qS[data-placement=top-end]{transform:translate(calc(var(--translate)*1),-50%)}[dir=rtl] .PzFE0Mkd567NPdLmK2qS[data-placement=top-end]{transform:translate(calc(var(--translate)*-1),-50%)}.PzFE0Mkd567NPdLmK2qS[data-placement=bottom]{bottom:0;left:50%;transform:translate(-50%,50%)}.PzFE0Mkd567NPdLmK2qS[data-placement=bottom-start]{bottom:0;inset-inline-start:0;}[dir=ltr] .PzFE0Mkd567NPdLmK2qS[data-placement=bottom-start]{transform:translate(calc(var(--translate)*-1),-50%)}[dir=rtl] .PzFE0Mkd567NPdLmK2qS[data-placement=bottom-start]{transform:translate(calc(var(--translate)*1),-50%)}.PzFE0Mkd567NPdLmK2qS[data-placement=bottom-end]{bottom:0;inset-inline-end:0;}[dir=ltr] .PzFE0Mkd567NPdLmK2qS[data-placement=bottom-end]{transform:translate(calc(var(--translate)*1),-50%)}[dir=rtl] .PzFE0Mkd567NPdLmK2qS[data-placement=bottom-end]{transform:translate(calc(var(--translate)*-1),-50%)}.PzFE0Mkd567NPdLmK2qS[data-placement=start]{inset-inline-start:0;top:50%;}[dir=ltr] .PzFE0Mkd567NPdLmK2qS[data-placement=start]{transform:translate(-50%,-50%)}[dir=rtl] .PzFE0Mkd567NPdLmK2qS[data-placement=start]{transform:translate(50%,-50%)}.PzFE0Mkd567NPdLmK2qS[data-placement=end]{inset-inline-end:0;top:50%;}[dir=ltr] .PzFE0Mkd567NPdLmK2qS[data-placement=end]{transform:translate(50%,-50%)}[dir=rtl] .PzFE0Mkd567NPdLmK2qS[data-placement=end]{transform:translate(-50%,-50%)}}',"",{version:3,sources:["webpack://./packages/core/dist/esm/components/badge/Badge.module.css"],names:[],mappings:"AAAA,YAAY,gCAAkB,GAAG,UAAU,CAAC,kBAAkB,CAAC,GAAG,SAAS,CAAC,kBAAkB,CAAC,CAAC,sBAAO,iBAAiB,CAAC,kKAA4D,CAAC,sBAAsB,CAAC,mHAA2B,CAAC,8HAA8C,CAA+hD,CAA9hD,2BAAO,gBAAgB,CAAC,eAAe,CAAC,aAAa,CAAC,qBAAqB,CAAC,sCAAkB,eAAe,CAA2I,CAA1I,6CAAS,iDAAmC,CAAC,wBAAwB,CAAC,mBAAmB,CAAC,UAAU,CAAC,OAAO,CAAC,iBAAiB,CAAC,UAAU,CAAE,4CAAwB,mBAAmB,CAAC,aAAa,CAAC,0CAAsB,QAAQ,CAAC,KAAK,CAAC,8BAA8B,CAAC,gDAA4B,oBAAoB,CAAC,KAAK,CAAkJ,CAAjJ,0DAAqB,mDAAmD,CAAC,0DAAqB,kDAAkD,CAAE,8CAA0B,kBAAkB,CAAC,KAAK,CAAkJ,CAAjJ,wDAAqB,kDAAkD,CAAC,wDAAqB,mDAAmD,CAAE,6CAAyB,QAAQ,CAAC,QAAQ,CAAC,6BAA6B,CAAC,mDAA+B,QAAQ,CAAC,oBAAoB,CAAkJ,CAAjJ,6DAAqB,mDAAmD,CAAC,6DAAqB,kDAAkD,CAAE,iDAA6B,QAAQ,CAAC,kBAAkB,CAAkJ,CAAjJ,2DAAqB,kDAAkD,CAAC,2DAAqB,mDAAmD,CAAE,4CAAwB,oBAAoB,CAAC,OAAO,CAAwG,CAAvG,sDAAqB,8BAA8B,CAAC,sDAAqB,6BAA6B,CAAE,0CAAsB,kBAAkB,CAAC,OAAO,CAAwG,CAAvG,oDAAqB,6BAA6B,CAAC,oDAAqB,8BAA8B,CAAG",sourcesContent:['@layer comp{@keyframes pinger{0%{opacity:.7;transform:scale(1)}to{opacity:0;transform:scale(3)}}.badge{--tw-bg-opacity:1;background-color:theme(colors.tint.200/var(--tw-bg-opacity));box-sizing:content-box;color:theme(textColor.base);outline:.5px solid theme(backgroundColor.base);&>span{font-size:.625em;font-weight:500;line-height:1;vertical-align:.125em}&[data-ping=true]{--translate:50%;&:before{animation:pinger 1s linear infinite;background-color:inherit;border-radius:999px;content:"";inset:0;position:absolute;z-index:-1}}&:not([data-ping=true]){--translate:0.75rem;min-width:1em}&[data-placement=top]{left:50%;top:0;transform:translate(-50%,-50%)}&[data-placement=top-start]{inset-inline-start:0;top:0;:global([dir=ltr]) &{transform:translate(calc(var(--translate)*-1),-50%)}:global([dir=rtl]) &{transform:translate(calc(var(--translate)*1),-50%)}}&[data-placement=top-end]{inset-inline-end:0;top:0;:global([dir=ltr]) &{transform:translate(calc(var(--translate)*1),-50%)}:global([dir=rtl]) &{transform:translate(calc(var(--translate)*-1),-50%)}}&[data-placement=bottom]{bottom:0;left:50%;transform:translate(-50%,50%)}&[data-placement=bottom-start]{bottom:0;inset-inline-start:0;:global([dir=ltr]) &{transform:translate(calc(var(--translate)*-1),-50%)}:global([dir=rtl]) &{transform:translate(calc(var(--translate)*1),-50%)}}&[data-placement=bottom-end]{bottom:0;inset-inline-end:0;:global([dir=ltr]) &{transform:translate(calc(var(--translate)*1),-50%)}:global([dir=rtl]) &{transform:translate(calc(var(--translate)*-1),-50%)}}&[data-placement=start]{inset-inline-start:0;top:50%;:global([dir=ltr]) &{transform:translate(-50%,-50%)}:global([dir=rtl]) &{transform:translate(50%,-50%)}}&[data-placement=end]{inset-inline-end:0;top:50%;:global([dir=ltr]) &{transform:translate(50%,-50%)}:global([dir=rtl]) &{transform:translate(-50%,-50%)}}}}'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={badge:"PzFE0Mkd567NPdLmK2qS",pinger:"elVi1kloLEQOkNlUHl4Y"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/dist/esm/components/breadcrumbs/Breadcrumbs.module.css":(module,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'@layer comp{.tDoNvYGJ3cmKqX6mw24M,.o4UUrSqidV0EINAxA_py{--color:var(--primary);}.tDoNvYGJ3cmKqX6mw24M[data-color=accent],.o4UUrSqidV0EINAxA_py[data-color=accent]{--color:var(--accent)}.tDoNvYGJ3cmKqX6mw24M[data-color=info],.o4UUrSqidV0EINAxA_py[data-color=info]{--color:#00bfff}.tDoNvYGJ3cmKqX6mw24M[data-color=danger],.o4UUrSqidV0EINAxA_py[data-color=danger]{--color:#f24c3d}.tDoNvYGJ3cmKqX6mw24M[data-color=success],.o4UUrSqidV0EINAxA_py[data-color=success]{--color:#44bc69}.tDoNvYGJ3cmKqX6mw24M[data-color=warning],.o4UUrSqidV0EINAxA_py[data-color=warning]{--color:#edaa00}.tDoNvYGJ3cmKqX6mw24M .link,.o4UUrSqidV0EINAxA_py .link{padding:.25em .5em;text-decoration:none}:is(.tDoNvYGJ3cmKqX6mw24M,.o4UUrSqidV0EINAxA_py[data-variant=classic]) .link{color:color-mix(in lab,var(--color) 90%,var(--fabric-text))}:is(.tDoNvYGJ3cmKqX6mw24M,.o4UUrSqidV0EINAxA_py[data-variant=classic]) .link:hover{background-color:color-mix(in lab, color(from var(--tint) srgb r g b / 50%) 10%, color(from var(--fabric-bg) srgb r g b / 50%));color:color-mix(in lab,var(--color) 99%,var(--fabric-text));text-decoration:underline}:is(.tDoNvYGJ3cmKqX6mw24M,.o4UUrSqidV0EINAxA_py[data-variant=classic]) .link:active{background-color:color-mix(in lab, color(from var(--tint) srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));color:color-mix(in lab,var(--color) 85%,var(--fabric-text))}.o4UUrSqidV0EINAxA_py[data-variant=classic]>.eLGpwH0txvZaEzks37ih{list-style:none;}.o4UUrSqidV0EINAxA_py[data-variant=classic]>.eLGpwH0txvZaEzks37ih:after{color:color-mix(in lab, color(from var(--tint) srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));content:attr(data-separator);display:inline-block;margin-inline:.125em}.o4UUrSqidV0EINAxA_py[data-variant=classic]>.eLGpwH0txvZaEzks37ih:last-child:after{content:unset}[data-ref=viewport] .o4UUrSqidV0EINAxA_py{grid-area:crumbbar;padding:0 .25rem}}@layer var{.o4UUrSqidV0EINAxA_py[data-variant=classic]>.link{max-width:24rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.o4UUrSqidV0EINAxA_py[data-variant=classic]>.eLGpwH0txvZaEzks37ih:last-child>.link{color:color-mix(in lab, color(from var(--tint) srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));pointer-events:none}.o4UUrSqidV0EINAxA_py[data-variant=modern]>.eLGpwH0txvZaEzks37ih{--linkcolor:color-mix(in lab,var(--color) 50%,var(--fabric-bg));border-radius:var(--rounding);list-style:none;position:relative;}.o4UUrSqidV0EINAxA_py[data-variant=modern]>.eLGpwH0txvZaEzks37ih:last-child{--color:color(from var(--tint) srgb r g b / 1);pointer-events:none}.o4UUrSqidV0EINAxA_py[data-variant=modern]>.eLGpwH0txvZaEzks37ih:first-child>.link{border-end-start-radius:var(--rounding);border-start-start-radius:var(--rounding)}.o4UUrSqidV0EINAxA_py[data-variant=modern]>.eLGpwH0txvZaEzks37ih:last-child>.link{border-end-end-radius:var(--rounding);border-start-end-radius:var(--rounding)}.o4UUrSqidV0EINAxA_py[data-variant=modern]>.eLGpwH0txvZaEzks37ih:not(:first-child){margin-inline-start:-1em;}.o4UUrSqidV0EINAxA_py[data-variant=modern]>.eLGpwH0txvZaEzks37ih:not(:first-child):before{border:.625em solid transparent;border-block-color:var(--linkcolor);border-inline-end-color:var(--linkcolor);content:"";display:inline-block;vertical-align:middle}.o4UUrSqidV0EINAxA_py[data-variant=modern]>.eLGpwH0txvZaEzks37ih:not(:first-child)>.link{margin-inline-start:-.625em}.o4UUrSqidV0EINAxA_py[data-variant=modern]>.eLGpwH0txvZaEzks37ih:not(:last-child):after{border:.625em solid transparent;border-inline-start-color:var(--linkcolor);content:"";display:inline-block;vertical-align:middle}.o4UUrSqidV0EINAxA_py[data-variant=modern]>.eLGpwH0txvZaEzks37ih>.link{background-color:var(--linkcolor);color:color-mix(in lab,var(--color) 50%,var(--fabric-text));display:inline-block;line-height:1;padding:.125em .5em;vertical-align:middle}.o4UUrSqidV0EINAxA_py[data-variant=modern]>.eLGpwH0txvZaEzks37ih:hover{--linkcolor:color-mix(in lab,var(--color) 65%,var(--fabric-bg))}.o4UUrSqidV0EINAxA_py[data-variant=modern]>.eLGpwH0txvZaEzks37ih:active{--linkcolor:color-mix(in lab,var(--color) 35%,var(--fabric-bg))}}',"",{version:3,sources:["webpack://./packages/core/dist/esm/components/breadcrumbs/Breadcrumbs.module.css"],names:[],mappings:"AAAA,YAAY,4CAAiC,sBAAqC,CAA4V,CAA3V,kFAAqB,qBAAoC,CAAC,8EAAmB,eAAkC,CAAC,kFAAqB,eAAoC,CAAC,oFAAsB,eAAqC,CAAC,oFAAsB,eAAqC,CAAC,wDAAiB,kBAAkB,CAAC,oBAAoB,CAAyD,6EAAiB,2DAA2D,CAAC,mFAAuB,gIAA0C,CAAC,2DAA2D,CAAC,yBAAyB,CAAC,oFAAwB,4HAAsC,CAAC,2DAA2D,CAAqC,kEAAkB,eAAe,CAA8I,CAA7I,wEAAQ,iHAA4B,CAAC,4BAA4B,CAAC,oBAAoB,CAAC,oBAAoB,CAAC,mFAAmB,aAAa,CAAG,0CAAiC,kBAAkB,CAAC,gBAAgB,CAAC,CAAC,WAA8C,kDAAiB,eAAe,CAAC,eAAe,CAAC,sBAAsB,CAAC,kBAAkB,CAAC,mFAA4C,mHAA4B,CAAC,mBAAmB,CAAoC,iEAAkB,+DAA+D,CAAC,6BAA6B,CAAC,eAAe,CAAC,iBAAiB,CAA2gC,CAA1gC,4EAAa,8CAA8B,CAAC,mBAAmB,CAAC,mFAA6B,uCAAuC,CAAC,yCAAyC,CAAC,kFAA4B,qCAAqC,CAAC,uCAAuC,CAAC,mFAAoB,wBAAwB,CAA0N,CAAzN,0FAAS,+BAA+B,CAAC,mCAAmC,CAAC,wCAAwC,CAAC,UAAU,CAAC,oBAAoB,CAAC,qBAAqB,CAAC,yFAAiB,2BAA2B,CAAqB,wFAAQ,+BAA+B,CAAC,0CAA0C,CAAC,UAAU,CAAC,oBAAoB,CAAC,qBAAqB,CAAE,uEAAiB,iCAAiC,CAAC,2DAA2D,CAAC,oBAAoB,CAAC,aAAa,CAAC,mBAAmB,CAAC,qBAAqB,CAAC,uEAAQ,+DAA+D,CAAC,wEAAS,+DAA+D,CAAG",sourcesContent:['@layer comp{.breadcrumbOverflow,.breadcrumbs{--color:theme(colors.primary.DEFAULT);&[data-color=accent]{--color:theme(colors.accent.DEFAULT)}&[data-color=info]{--color:theme(colors.info.DEFAULT)}&[data-color=danger]{--color:theme(colors.danger.DEFAULT)}&[data-color=success]{--color:theme(colors.success.DEFAULT)}&[data-color=warning]{--color:theme(colors.warning.DEFAULT)}& :global(.link){padding:.25em .5em;text-decoration:none}}.breadcrumbOverflow,.breadcrumbs[data-variant=classic]{& :global(.link){color:color-mix(in lab,var(--color) 90%,var(--fabric-text))}& :global(.link):hover{background-color:theme(colors.tint.50/50%);color:color-mix(in lab,var(--color) 99%,var(--fabric-text));text-decoration:underline}& :global(.link):active{background-color:theme(colors.tint.50);color:color-mix(in lab,var(--color) 85%,var(--fabric-text))}}.breadcrumbs[data-variant=classic]{&>.breadcrumbLink{list-style:none;&:after{color:theme(colors.tint.300);content:attr(data-separator);display:inline-block;margin-inline:.125em}&:last-child:after{content:unset}}}[data-ref=viewport] .breadcrumbs{grid-area:crumbbar;padding:0 .25rem}}@layer var{.breadcrumbs[data-variant=classic]{&>:global(.link){max-width:24rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}&>.breadcrumbLink:last-child>:global(.link){color:theme(colors.tint.600);pointer-events:none}}.breadcrumbs[data-variant=modern]{&>.breadcrumbLink{--linkcolor:color-mix(in lab,var(--color) 50%,var(--fabric-bg));border-radius:var(--rounding);list-style:none;position:relative;&:last-child{--color:theme(colors.tint.500);pointer-events:none}&:first-child>:global(.link){border-end-start-radius:var(--rounding);border-start-start-radius:var(--rounding)}&:last-child>:global(.link){border-end-end-radius:var(--rounding);border-start-end-radius:var(--rounding)}&:not(:first-child){margin-inline-start:-1em;&:before{border:.625em solid transparent;border-block-color:var(--linkcolor);border-inline-end-color:var(--linkcolor);content:"";display:inline-block;vertical-align:middle}&>:global(.link){margin-inline-start:-.625em}}&:not(:last-child){&:after{border:.625em solid transparent;border-inline-start-color:var(--linkcolor);content:"";display:inline-block;vertical-align:middle}}&>:global(.link){background-color:var(--linkcolor);color:color-mix(in lab,var(--color) 50%,var(--fabric-text));display:inline-block;line-height:1;padding:.125em .5em;vertical-align:middle}&:hover{--linkcolor:color-mix(in lab,var(--color) 65%,var(--fabric-bg))}&:active{--linkcolor:color-mix(in lab,var(--color) 35%,var(--fabric-bg))}}}}'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={breadcrumbOverflow:"tDoNvYGJ3cmKqX6mw24M",breadcrumbs:"o4UUrSqidV0EINAxA_py",breadcrumbLink:"eLGpwH0txvZaEzks37ih"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/dist/esm/components/button/Button.module.css":(module,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'@layer comp{.XwuF9Qfj8UeuTsrxBv2B{--color:color(from var(--primary) srgb r g b / 1);border-radius:var(--rounding);font-size:1rem;}.XwuF9Qfj8UeuTsrxBv2B .JLwDrna80r4psLHalqWX{background-color:var(--bg);background-image:var(--click-gradient);border-radius:inherit;color:var(--text);outline:1px solid var(--outline);}.XwuF9Qfj8UeuTsrxBv2B .JLwDrna80r4psLHalqWX.QCMLVIZ5QVKt7q9Abp94:hover .ipUW1VKHsk57hVpiDLD3{animation:spin 2s linear infinite}.XwuF9Qfj8UeuTsrxBv2B .JLwDrna80r4psLHalqWX>*{pointer-events:none}.XwuF9Qfj8UeuTsrxBv2B .JLwDrna80r4psLHalqWX:not(:disabled) input[type=file]{pointer-events:auto;}.XwuF9Qfj8UeuTsrxBv2B .JLwDrna80r4psLHalqWX:not(:disabled) input[type=file]::-webkit-file-upload-button{cursor:pointer;inset:0;position:absolute}.XwuF9Qfj8UeuTsrxBv2B .Po_sil13yERnPSQoRDY6{border-radius:9999px}.XwuF9Qfj8UeuTsrxBv2B .saTIU1vdon1Truv3izNz{line-height:1;order:1;padding:.5em 1em;}:is(.XwuF9Qfj8UeuTsrxBv2B .saTIU1vdon1Truv3izNz)+.HT1FcYCT8M2dLFCEeSzm{margin-inline-start:-1em}.XwuF9Qfj8UeuTsrxBv2B .__UaQz1_f7YzgjmlIDO0{line-height:1;order:1;padding:.5em}.XwuF9Qfj8UeuTsrxBv2B .ipUW1VKHsk57hVpiDLD3{font-size:1.125em;padding:.3889em}.XwuF9Qfj8UeuTsrxBv2B .hotkey-label{align-self:center;order:3}.XwuF9Qfj8UeuTsrxBv2B .HT1FcYCT8M2dLFCEeSzm{align-self:center;order:4;padding:.125em .5em}.XwuF9Qfj8UeuTsrxBv2B [data-ref=badge]{align-self:center;margin-inline-end:.5em;order:2}.fIYnrZxjHh4_kD4iM1eh>.XwuF9Qfj8UeuTsrxBv2B{flex:0 1 1em}.fIYnrZxjHh4_kD4iM1eh:not(.gdHig8CC9ckVGIDQBKsK)+.fIYnrZxjHh4_kD4iM1eh:not(.gdHig8CC9ckVGIDQBKsK){margin-inline-start:.5rem}}@layer util{.XwuF9Qfj8UeuTsrxBv2B[data-size=xs]{font-size:.625rem}.XwuF9Qfj8UeuTsrxBv2B[data-size=sm]{font-size:.875rem}.XwuF9Qfj8UeuTsrxBv2B[data-size=md]{font-size:1.125rem}.XwuF9Qfj8UeuTsrxBv2B[data-size=lg]{font-size:1.25rem}.XwuF9Qfj8UeuTsrxBv2B[data-size=xl]{font-size:1.5rem}.JLwDrna80r4psLHalqWX{--bg:color-mix(in lab,var(--fabric-bg) 99%,var(--tint));--outline:color-mix(in lab,var(--bg) 90%,var(--fabric-text));--text:color-mix(in lab,var(--color) 80%,var(--fabric-text));--bg-hover:color-mix(in lab,var(--color) 18%,var(--fabric-bg));--bg-click:color-mix(in lab,var(--color) 25%,var(--fabric-bg));--bg-active:color-mix(in lab,var(--color) 36%,var(--fabric-bg));}.JLwDrna80r4psLHalqWX[data-color=accent]{--color:color(from var(--accent) srgb r g b / 1)}.JLwDrna80r4psLHalqWX[data-color=info]{--color:color(from #00bfff srgb r g b / 1)}.JLwDrna80r4psLHalqWX[data-color=danger]{--color:color(from #f24c3d srgb r g b / 1)}.JLwDrna80r4psLHalqWX[data-color=success]{--color:color(from #44bc69 srgb r g b / 1)}.JLwDrna80r4psLHalqWX[data-color=warning]{--color:color(from #edaa00 srgb r g b / 1)}.JLwDrna80r4psLHalqWX[data-variant=outline]{--outline:var(--color)}.JLwDrna80r4psLHalqWX[data-variant=solid]{--outline:var(--color);--bg:color-mix(in lab,var(--color) 96%,var(--fabric-text));--text:#fefdfc;--bg-hover:color-mix(in lab,var(--color) 90%,var(--fabric-bg));--bg-click:color-mix(in lab,var(--color) 80%,#191a1b);--bg-active:color-mix(in lab,var(--color) 70%,#191a1b);}.JLwDrna80r4psLHalqWX[data-variant=solid] .hotkey-label{background-color:color-mix(in lab, color(from var(--black) srgb r g b / 30%) 90%, color(from var(--tint) srgb r g b / 30%));color:rgb(254 253 252 / 70%)}.JLwDrna80r4psLHalqWX[data-variant=link]{--bg:transparent;--outline:transparent;background-image:none;box-shadow:none}.JLwDrna80r4psLHalqWX[data-color=invert]{--bg:color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 5%, color(from var(--fabric-text) srgb r g b / 1));--text:color-mix(in lab,var(--color) 90%,color-mix(in lab, color(from var(--fabric-text) srgb r g b / 1) 5%, color(from var(--fabric-bg) srgb r g b / 1)));--bg-hover:color-mix(in lab,var(--color) 15%,color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 5%, color(from var(--fabric-text) srgb r g b / 1)));--bg-click:color-mix(in lab,var(--color) 35%,color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 5%, color(from var(--fabric-text) srgb r g b / 1)))}.ipUW1VKHsk57hVpiDLD3[data-align=start]{order:0;}.ipUW1VKHsk57hVpiDLD3[data-align=start]+.saTIU1vdon1Truv3izNz[data-colored-icon=false]{margin-inline-start:-1em}.ipUW1VKHsk57hVpiDLD3[data-align=end]{order:2;}.ipUW1VKHsk57hVpiDLD3[data-align=end]~.saTIU1vdon1Truv3izNz[data-colored-icon=false]{margin-inline-end:-1em}}@layer var{.XwuF9Qfj8UeuTsrxBv2B{height:unset;padding:unset;}.XwuF9Qfj8UeuTsrxBv2B[data-disabled=true]{cursor:not-allowed;}.XwuF9Qfj8UeuTsrxBv2B[data-disabled=true] .JLwDrna80r4psLHalqWX{background-image:var(--active-gradient);opacity:.5;pointer-events:none}.XwuF9Qfj8UeuTsrxBv2B[data-loading=true]{cursor:wait;}.XwuF9Qfj8UeuTsrxBv2B[data-loading=true] .JLwDrna80r4psLHalqWX{background-image:var(--progress-gradient);background-size:1em 1em;pointer-events:none;}.XwuF9Qfj8UeuTsrxBv2B[data-loading=true] .JLwDrna80r4psLHalqWX{animation:bgprogress .75s linear infinite}.XwuF9Qfj8UeuTsrxBv2B[data-loading=true] .JLwDrna80r4psLHalqWX:not([data-variant=solid]){background-color:color-mix(in lab,var(--color) 15%,var(--fabric-bg))}.XwuF9Qfj8UeuTsrxBv2B.btn-dashed>.JLwDrna80r4psLHalqWX{color:color-mix(in lab, color(from var(--tint) srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));outline:1px dashed color-mix(in lab, color(from var(--tint) srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));}.XwuF9Qfj8UeuTsrxBv2B.btn-dashed>.JLwDrna80r4psLHalqWX[data-invalid=true]{background-color:color-mix(in lab, color(from #f24c3d srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));color:color-mix(in lab, color(from #f24c3d srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));outline:1px dashed color-mix(in lab, color(from #f24c3d srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1))}.JLwDrna80r4psLHalqWX{--tw-ring-color:var(--color);}.JLwDrna80r4psLHalqWX:hover{background-color:var(--bg-hover)}.JLwDrna80r4psLHalqWX:active{background-color:var(--bg-click);background-image:var(--active-gradient);}.JLwDrna80r4psLHalqWX:active .ipUW1VKHsk57hVpiDLD3,.JLwDrna80r4psLHalqWX:active .saTIU1vdon1Truv3izNz{transform:translateY(1px)}.JLwDrna80r4psLHalqWX[data-active=true],.JLwDrna80r4psLHalqWX[data-checked=true],.JLwDrna80r4psLHalqWX[data-dropdown-open=true]{background-color:var(--bg-active);background-image:none}.JLwDrna80r4psLHalqWX[data-active=true],.JLwDrna80r4psLHalqWX[data-dropdown-open=true]{pointer-events:none}.fIYnrZxjHh4_kD4iM1eh>.XwuF9Qfj8UeuTsrxBv2B{margin:0;}.fIYnrZxjHh4_kD4iM1eh>.XwuF9Qfj8UeuTsrxBv2B .JLwDrna80r4psLHalqWX[data-variant=link]{--outline:color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 99%, color(from var(--tint) srgb r g b / 1))}.fIYnrZxjHh4_kD4iM1eh:not(.bnAv_3zgHh899KvVXqb_)>:not(:first-child):before{border-inline-start:.5px solid color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 65%, color(from var(--tint) srgb r g b / 1));content:"";inset-block:5%;inset-inline-start:-.5px;position:absolute}.fIYnrZxjHh4_kD4iM1eh.SlhzTX5VMiXDKR8exvE_:not(.bnAv_3zgHh899KvVXqb_)>:not(:first-child){margin-inline-start:2px;}.fIYnrZxjHh4_kD4iM1eh.SlhzTX5VMiXDKR8exvE_:not(.bnAv_3zgHh899KvVXqb_)>:not(:first-child):before{inset-inline-start:-1.5px}.fIYnrZxjHh4_kD4iM1eh:not(.bnAv_3zgHh899KvVXqb_)>:not(:last-child) .JLwDrna80r4psLHalqWX{border-end-end-radius:0;border-start-end-radius:0}.fIYnrZxjHh4_kD4iM1eh:not(.bnAv_3zgHh899KvVXqb_)>:not(:first-child) .JLwDrna80r4psLHalqWX{border-end-start-radius:0;border-start-start-radius:0}.fIYnrZxjHh4_kD4iM1eh.bnAv_3zgHh899KvVXqb_>:not(:first-child):before{border-block-start:.5px solid color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 65%, color(from var(--tint) srgb r g b / 1));content:"";inset-block-start:-.5px;inset-inline:5%;position:absolute}.fIYnrZxjHh4_kD4iM1eh.bnAv_3zgHh899KvVXqb_.SlhzTX5VMiXDKR8exvE_>:not(:first-child){margin-block-start:1px;}.fIYnrZxjHh4_kD4iM1eh.bnAv_3zgHh899KvVXqb_.SlhzTX5VMiXDKR8exvE_>:not(:first-child):before{inset-block-start:-1px}.fIYnrZxjHh4_kD4iM1eh.bnAv_3zgHh899KvVXqb_>:not(:last-child) .JLwDrna80r4psLHalqWX{border-end-end-radius:0;border-end-start-radius:0}.fIYnrZxjHh4_kD4iM1eh.bnAv_3zgHh899KvVXqb_>:not(:first-child) .JLwDrna80r4psLHalqWX{border-start-end-radius:0;border-start-start-radius:0}}',"",{version:3,sources:["webpack://./packages/core/dist/esm/components/button/Button.module.css"],names:[],mappings:"AAAA,YAAY,sBAAe,iDAAiC,CAAC,6BAA6B,CAAC,cAAc,CAAuwB,CAAtwB,4CAAU,0BAA0B,CAAC,sCAAsC,CAAC,qBAAqB,CAAC,iBAAiB,CAAC,gCAAgC,CAAoO,CAAnM,6FAAU,iCAAiC,CAAE,8CAAI,mBAAmB,CAAC,4EAAkC,mBAAmB,CAAwE,CAAvE,wGAA8B,cAAc,CAAC,OAAO,CAAC,iBAAiB,CAAG,4CAAW,oBAAoB,CAAC,4CAAe,aAAa,CAAC,OAAO,CAAC,gBAAgB,CAAqC,CAApC,uEAAW,wBAAwB,CAAE,4CAAe,aAAa,CAAC,OAAO,CAAC,YAAY,CAAC,4CAAc,iBAAiB,CAAC,eAAe,CAAC,oCAAyB,iBAAiB,CAAC,OAAO,CAAC,4CAAW,iBAAiB,CAAC,OAAO,CAAC,mBAAmB,CAAC,uCAAmB,iBAAiB,CAAC,sBAAsB,CAAC,OAAO,CAAe,4CAAiB,YAAY,CAAC,kGAA0B,yBAAyB,CAAE,CAAC,YAA2B,oCAAgB,iBAAiB,CAAC,oCAAgB,iBAAiB,CAAC,oCAAgB,kBAAkB,CAAC,oCAAgB,iBAAiB,CAAC,oCAAgB,gBAAgB,CAAE,sBAAQ,uDAAuD,CAAC,4DAA4D,CAAC,4DAA4D,CAAC,8DAA8D,CAAC,8DAA8D,CAAC,+DAA+D,CAAkmC,CAAjmC,yCAAqB,gDAAgC,CAAC,uCAAmB,0CAA8B,CAAC,yCAAqB,0CAAgC,CAAC,0CAAsB,0CAAiC,CAAC,0CAAsB,0CAAiC,CAAC,4CAAwB,sBAAsB,CAAC,0CAAsB,sBAAsB,CAAC,0DAA0D,CAAC,cAA0B,CAAC,8DAA8D,CAAC,qDAAiE,CAAC,sDAAkE,CAAyG,CAAxG,wDAAyB,4HAAgD,CAAC,4BAA6B,CAAE,yCAAqB,gBAAgB,CAAC,qBAAqB,CAAC,qBAAqB,CAAC,eAAe,CAAC,yCAAqB,sHAAkC,CAAC,2JAAiE,CAAC,+JAA2E,CAAC,+JAA2E,CAAE,wCAA8B,OAAO,CAAkE,CAAjE,uFAAwC,wBAAwB,CAAE,sCAA4B,OAAO,CAAgE,CAA/D,qFAAwC,sBAAsB,CAAE,CAAC,WAAW,sBAAe,YAAY,CAAC,aAAa,CAA4oB,CAA3oB,0CAAsB,kBAAkB,CAAkF,CAAjF,gEAAU,uCAAuC,CAAC,UAAU,CAAC,mBAAmB,CAAE,yCAAqB,WAAW,CAA+P,CAA9P,+DAAU,yCAAyC,CAAC,uBAAuB,CAAC,mBAAmB,CAAqD,CAApD,+DAAU,yCAAyC,CAAE,yFAAoC,oEAAoE,CAAE,uDAA8B,mHAA4B,CAAC,gIAAyC,CAA2I,CAA1I,0EAAqB,wHAAyC,CAAC,+GAA8B,CAAC,4HAA2C,CAAG,sBAAQ,4BAA4B,CAA+W,CAA9W,4BAAQ,gCAAgC,CAAC,6BAAS,gCAAgC,CAAC,uCAAuC,CAAoD,CAAnD,sGAAyB,yBAAyB,CAAE,gIAAoE,iCAAiC,CAAC,qBAAqB,CAAC,uFAA+C,mBAAmB,CAAe,4CAAiB,QAAQ,CAAoE,CAAnE,qFAA6B,qHAAqC,CAAwC,2EAAS,0IAAsD,CAAC,UAAU,CAAC,cAAc,CAAC,wBAAwB,CAAC,iBAAiB,CAAE,yFAA+B,uBAAuB,CAAoC,CAAnC,gGAAS,yBAAyB,CAAE,yFAA4B,uBAAuB,CAAC,yBAAyB,CAAC,0FAA6B,yBAAyB,CAAC,2BAA2B,CAAkC,qEAAS,yIAAqD,CAAC,UAAU,CAAC,uBAAuB,CAAC,eAAe,CAAC,iBAAiB,CAAE,mFAA+B,sBAAsB,CAAiC,CAAhC,0FAAS,sBAAsB,CAAE,mFAA4B,uBAAuB,CAAC,yBAAyB,CAAC,oFAA6B,yBAAyB,CAAC,2BAA2B,CAAG",sourcesContent:['@layer comp{.buttonWrapper{--color:theme(colors.primary.500);border-radius:var(--rounding);font-size:1rem;& .button{background-color:var(--bg);background-image:var(--click-gradient);border-radius:inherit;color:var(--text);outline:1px solid var(--outline);&.spinOnHover:hover .buttonIcon{& :global{animation:spin 2s linear infinite}}&>*{pointer-events:none}&:not(:disabled) input[type=file]{pointer-events:auto;&::-webkit-file-upload-button{cursor:pointer;inset:0;position:absolute}}}& .rounded{border-radius:9999px}& .buttonLabel{line-height:1;order:1;padding:.5em 1em;&+.altIcon{margin-inline-start:-1em}}& .buttonChild{line-height:1;order:1;padding:.5em}& .buttonIcon{font-size:1.125em;padding:.3889em}& :global(.hotkey-label){align-self:center;order:3}& .altIcon{align-self:center;order:4;padding:.125em .5em}& [data-ref=badge]{align-self:center;margin-inline-end:.5em;order:2}}.buttonGroup{&>.buttonWrapper{flex:0 1 1em}&:not(.flex)+&:not(.flex){margin-inline-start:.5rem}}}@layer util{.buttonWrapper{&[data-size=xs]{font-size:.625rem}&[data-size=sm]{font-size:.875rem}&[data-size=md]{font-size:1.125rem}&[data-size=lg]{font-size:1.25rem}&[data-size=xl]{font-size:1.5rem}}.button{--bg:color-mix(in lab,var(--fabric-bg) 99%,var(--tint));--outline:color-mix(in lab,var(--bg) 90%,var(--fabric-text));--text:color-mix(in lab,var(--color) 80%,var(--fabric-text));--bg-hover:color-mix(in lab,var(--color) 18%,var(--fabric-bg));--bg-click:color-mix(in lab,var(--color) 25%,var(--fabric-bg));--bg-active:color-mix(in lab,var(--color) 36%,var(--fabric-bg));&[data-color=accent]{--color:theme(colors.accent.500)}&[data-color=info]{--color:theme(colors.info.500)}&[data-color=danger]{--color:theme(colors.danger.500)}&[data-color=success]{--color:theme(colors.success.500)}&[data-color=warning]{--color:theme(colors.warning.500)}&[data-variant=outline]{--outline:var(--color)}&[data-variant=solid]{--outline:var(--color);--bg:color-mix(in lab,var(--color) 96%,var(--fabric-text));--text:theme(colors.white);--bg-hover:color-mix(in lab,var(--color) 90%,var(--fabric-bg));--bg-click:color-mix(in lab,var(--color) 80%,theme(colors.black));--bg-active:color-mix(in lab,var(--color) 70%,theme(colors.black));& :global(.hotkey-label){background-color:theme(backgroundColor.dark/30%);color:theme(colors.white/70%)}}&[data-variant=link]{--bg:transparent;--outline:transparent;background-image:none;box-shadow:none}&[data-color=invert]{--bg:theme(backgroundColor.invert);--text:color-mix(in lab,var(--color) 90%,theme(textColor.invert));--bg-hover:color-mix(in lab,var(--color) 15%,theme(backgroundColor.invert));--bg-click:color-mix(in lab,var(--color) 35%,theme(backgroundColor.invert))}}.buttonIcon[data-align=start]{order:0;&+.buttonLabel[data-colored-icon=false]{margin-inline-start:-1em}}.buttonIcon[data-align=end]{order:2;&~.buttonLabel[data-colored-icon=false]{margin-inline-end:-1em}}}@layer var{.buttonWrapper{height:unset;padding:unset;&[data-disabled=true]{cursor:not-allowed;& .button{background-image:var(--active-gradient);opacity:.5;pointer-events:none}}&[data-loading=true]{cursor:wait;& .button{background-image:var(--progress-gradient);background-size:1em 1em;pointer-events:none;& :global{animation:bgprogress .75s linear infinite}}& .button:not([data-variant=solid]){background-color:color-mix(in lab,var(--color) 15%,var(--fabric-bg))}}&:global(.btn-dashed)>.button{color:theme(colors.tint.600);outline:1px dashed theme(colors.tint.600);&[data-invalid=true]{background-color:theme(colors.danger.100);color:theme(colors.danger.600);outline:1px dashed theme(colors.danger.600)}}}.button{--tw-ring-color:var(--color);&:hover{background-color:var(--bg-hover)}&:active{background-color:var(--bg-click);background-image:var(--active-gradient);.buttonIcon,.buttonLabel{transform:translateY(1px)}}&[data-active=true],&[data-checked=true],&[data-dropdown-open=true]{background-color:var(--bg-active);background-image:none}&[data-active=true],&[data-dropdown-open=true]{pointer-events:none}}.buttonGroup{&>.buttonWrapper{margin:0;& .button[data-variant=link]{--outline:theme(backgroundColor.base)}}&:not(.vertical){&>:not(:first-child){&:before{border-inline-start:.5px solid theme(borderColor.base);content:"";inset-block:5%;inset-inline-start:-.5px;position:absolute}}&.separator>:not(:first-child){margin-inline-start:2px;&:before{inset-inline-start:-1.5px}}&>:not(:last-child) .button{border-end-end-radius:0;border-start-end-radius:0}&>:not(:first-child) .button{border-end-start-radius:0;border-start-start-radius:0}}&.vertical{&>:not(:first-child){&:before{border-block-start:.5px solid theme(borderColor.base);content:"";inset-block-start:-.5px;inset-inline:5%;position:absolute}}&.separator>:not(:first-child){margin-block-start:1px;&:before{inset-block-start:-1px}}&>:not(:last-child) .button{border-end-end-radius:0;border-end-start-radius:0}&>:not(:first-child) .button{border-start-end-radius:0;border-start-start-radius:0}}}}'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={buttonWrapper:"XwuF9Qfj8UeuTsrxBv2B",button:"JLwDrna80r4psLHalqWX",spinOnHover:"QCMLVIZ5QVKt7q9Abp94",buttonIcon:"ipUW1VKHsk57hVpiDLD3",rounded:"Po_sil13yERnPSQoRDY6",buttonLabel:"saTIU1vdon1Truv3izNz",altIcon:"HT1FcYCT8M2dLFCEeSzm",buttonChild:"__UaQz1_f7YzgjmlIDO0",buttonGroup:"fIYnrZxjHh4_kD4iM1eh",flex:"gdHig8CC9ckVGIDQBKsK",vertical:"bnAv_3zgHh899KvVXqb_",separator:"SlhzTX5VMiXDKR8exvE_"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/dist/esm/components/card/Card.module.css":(module,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'@layer comp{.nFVCHlxLFKw05awVzOEG.iyakctdRmmdIHNd1Kpwg:before{border-bottom:1rem solid transparent;border-inline-end:1rem solid transparent;border-inline-start:1rem solid color(from var(--accent) srgb r g b / 1);border-start-start-radius:var(--rounding-cap);border-top:1rem solid color(from var(--accent) srgb r g b / 1);content:""}.nFVCHlxLFKw05awVzOEG.iyakctdRmmdIHNd1Kpwg:after,.nFVCHlxLFKw05awVzOEG.iyakctdRmmdIHNd1Kpwg:before{inset-inline-start:-4px;position:absolute;top:-4px;z-index:5}.nFVCHlxLFKw05awVzOEG.iyakctdRmmdIHNd1Kpwg:after{color:#fefdfc;content:"✓";line-height:1;padding:4px}.KVdoOx6HrY3bZIj9t4fN{background-color:var(--fabric-bg);box-shadow:0 0 0 1px color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 80%, color(from var(--tint) srgb r g b / 1));}.KVdoOx6HrY3bZIj9t4fN>*{background-color:transparent}.KVdoOx6HrY3bZIj9t4fN .U_feBJ6cGhQGZSI1STCd.fljgtdx4LrAeacHDg0fh>.XBePIvLrVd303fopS9ry,.KVdoOx6HrY3bZIj9t4fN .U_feBJ6cGhQGZSI1STCd.V1kXLnTfdIqlvk65ONd3:has([data-colorset=dark])>.XBePIvLrVd303fopS9ry{background-image:linear-gradient(180deg,#0000 0,#0006);color:var(--white);text-shadow:0 0 2px var(--black)}.KVdoOx6HrY3bZIj9t4fN .U_feBJ6cGhQGZSI1STCd.V1kXLnTfdIqlvk65ONd3:has([data-colorset=light])>.XBePIvLrVd303fopS9ry,.KVdoOx6HrY3bZIj9t4fN .U_feBJ6cGhQGZSI1STCd.t2G09ok5qpi8WAVIowPG>.XBePIvLrVd303fopS9ry{background-image:linear-gradient(180deg,#fff0 0,#fff6);color:var(--black);text-shadow:0 0 2px var(--white)}.KVdoOx6HrY3bZIj9t4fN ._hiiTP8EHFCVXT65KsMH{padding:1rem}.KVdoOx6HrY3bZIj9t4fN.VKesvjbZp__NB1dmx2sr{box-shadow:0 0 0 1px color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 72%, color(from var(--tint) srgb r g b / 1)),0 1px 2px 0 var(--fabric-shadow);transition:box-shadow 0ms;}.KVdoOx6HrY3bZIj9t4fN.VKesvjbZp__NB1dmx2sr:has(._hiiTP8EHFCVXT65KsMH:hover):not(:has([data-inner-clickable=true]:hover)){box-shadow:0 0 0 1px color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 72%, color(from var(--tint) srgb r g b / 1)),0 1px 4px 0 var(--fabric-shadow),0 8px 16px 0 color-mix(in lab,var(--fabric-shadow) 35%,#0000);transition-delay:.15s}.KVdoOx6HrY3bZIj9t4fN.VKesvjbZp__NB1dmx2sr:has(._hiiTP8EHFCVXT65KsMH:active):not(:has([data-inner-clickable=true]:hover)){box-shadow:0 0 0 1px color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 72%, color(from var(--tint) srgb r g b / 1));transform:translateY(1px);transition-delay:0ms}.KVdoOx6HrY3bZIj9t4fN.VKesvjbZp__NB1dmx2sr ._hiiTP8EHFCVXT65KsMH{cursor:pointer;}.KVdoOx6HrY3bZIj9t4fN.VKesvjbZp__NB1dmx2sr ._hiiTP8EHFCVXT65KsMH:after{background-image:linear-gradient(175deg,hsla(0,0%,100%,.05),transparent 18%,transparent 72%,rgb(0 0 0/5%));content:"";inset:0;pointer-events:none;position:absolute;z-index:5}}@layer util{.KVdoOx6HrY3bZIj9t4fN ._hiiTP8EHFCVXT65KsMH>*{background-color:transparent;grid-area:unset}.KVdoOx6HrY3bZIj9t4fN .U_feBJ6cGhQGZSI1STCd>[data-ref=image],.KVdoOx6HrY3bZIj9t4fN .U_feBJ6cGhQGZSI1STCd>[data-ref=video]{inset:0;position:absolute;z-index:0}.KVdoOx6HrY3bZIj9t4fN .U_feBJ6cGhQGZSI1STCd .XBePIvLrVd303fopS9ry>*{flex:0 0 auto}}',"",{version:3,sources:["webpack://./packages/core/dist/esm/components/card/Card.module.css"],names:[],mappings:"AAAA,YAAkC,kDAAS,oCAAoC,CAAC,wCAAwC,CAAC,uEAAuD,CAAC,6CAA6C,CAAC,8DAA8C,CAAC,UAAU,CAAC,mGAAiB,uBAAuB,CAAC,iBAAiB,CAAC,QAAQ,CAAC,SAAS,CAAC,iDAAQ,aAAyB,CAAC,WAAW,CAAC,aAAa,CAAC,WAAW,CAAE,sBAAM,iCAAiC,CAAC,gIAA6C,CAA+pC,CAA9pC,wBAAI,4BAA4B,CAAc,wMAAqF,sDAAsD,CAAC,kBAAkB,CAAC,gCAAgC,CAAC,yMAAuF,sDAAsD,CAAC,kBAAkB,CAAC,gCAAgC,CAAE,4CAAY,YAAY,CAAC,2CAAY,iKAA+E,CAAC,yBAAyB,CAA8lB,CAA7lB,yHAAoE,+NAA6I,CAAC,qBAAqB,CAAC,0HAAqE,gIAA8C,CAAC,yBAAyB,CAAC,oBAAoB,CAAC,iEAAY,cAAc,CAAuL,CAAtL,uEAAQ,0GAA0G,CAAC,UAAU,CAAC,OAAO,CAAC,mBAAmB,CAAC,iBAAiB,CAAC,SAAS,CAAI,CAAC,YAA8B,8CAAI,4BAA4B,CAAC,eAAe,CAAe,0HAAsC,OAAO,CAAC,iBAAiB,CAAC,SAAS,CAAqB,oEAAI,aAAa,CAAI",sourcesContent:['@layer comp{.cardWrapper.selected{&:before{border-bottom:1rem solid transparent;border-inline-end:1rem solid transparent;border-inline-start:1rem solid theme(colors.accent.500);border-start-start-radius:var(--rounding-cap);border-top:1rem solid theme(colors.accent.500);content:""}&:after,&:before{inset-inline-start:-4px;position:absolute;top:-4px;z-index:5}&:after{color:theme(colors.white);content:"✓";line-height:1;padding:4px}}.card{background-color:var(--fabric-bg);box-shadow:0 0 0 1px theme(borderColor.muted);&>*{background-color:transparent}& .cardCover{&.dark>.cardCoverContent,&.inheritScheme:has([data-colorset=dark])>.cardCoverContent{background-image:linear-gradient(180deg,#0000 0,#0006);color:var(--white);text-shadow:0 0 2px var(--black)}&.inheritScheme:has([data-colorset=light])>.cardCoverContent,&.light>.cardCoverContent{background-image:linear-gradient(180deg,#fff0 0,#fff6);color:var(--black);text-shadow:0 0 2px var(--white)}}& .cardBody{padding:1rem}&.clickable{box-shadow:0 0 0 1px theme(borderColor.dimmed),0 1px 2px 0 var(--fabric-shadow);transition:box-shadow 0ms;&:has(.cardBody:hover):not(:has([data-inner-clickable=true]:hover)){box-shadow:0 0 0 1px theme(borderColor.dimmed),0 1px 4px 0 var(--fabric-shadow),0 8px 16px 0 color-mix(in lab,var(--fabric-shadow) 35%,#0000);transition-delay:.15s}&:has(.cardBody:active):not(:has([data-inner-clickable=true]:hover)){box-shadow:0 0 0 1px theme(borderColor.dimmed);transform:translateY(1px);transition-delay:0ms}& .cardBody{cursor:pointer;&:after{background-image:linear-gradient(175deg,hsla(0,0%,100%,.05),transparent 18%,transparent 72%,rgb(0 0 0/5%));content:"";inset:0;pointer-events:none;position:absolute;z-index:5}}}}}@layer util{.card{& .cardBody{&>*{background-color:transparent;grid-area:unset}}& .cardCover{&>[data-ref=image],&>[data-ref=video]{inset:0;position:absolute;z-index:0}& .cardCoverContent{&>*{flex:0 0 auto}}}}}'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={cardWrapper:"nFVCHlxLFKw05awVzOEG",selected:"iyakctdRmmdIHNd1Kpwg",card:"KVdoOx6HrY3bZIj9t4fN",cardCover:"U_feBJ6cGhQGZSI1STCd",dark:"fljgtdx4LrAeacHDg0fh",cardCoverContent:"XBePIvLrVd303fopS9ry",inheritScheme:"V1kXLnTfdIqlvk65ONd3",light:"t2G09ok5qpi8WAVIowPG",cardBody:"_hiiTP8EHFCVXT65KsMH",clickable:"VKesvjbZp__NB1dmx2sr"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/dist/esm/components/chip/Chip.module.css":(module,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,"@layer comp{.YeuegM5hxc8hnCActvH1{--blank-gradient:linear-gradient(180deg,#00000005 0%,#0000 10%);background-image:var(--blank-gradient);color:color(from var(--tint) srgb r g b / 1);outline:1px solid color-mix(in lab,currentcolor 20%,var(--fabric-bg));outline-offset:-1px;}.YeuegM5hxc8hnCActvH1>.TXgbdhBVcoaq1lWl2sT5{padding:0 .5em}:is(.YeuegM5hxc8hnCActvH1>.ltNm3skO4rvT2IDVpimd)+.TXgbdhBVcoaq1lWl2sT5{margin-inline-start:-.5em}.YeuegM5hxc8hnCActvH1.FXUC78bENMG8HCoi27jg{background-image:var(--click-gradient);cursor:pointer;}.YeuegM5hxc8hnCActvH1.FXUC78bENMG8HCoi27jg.tlzgSLwCEFGfognRcjX5{opacity:.5;pointer-events:none}}@layer var{.YeuegM5hxc8hnCActvH1{background-color:color-mix(in lab,currentcolor 10%,var(--fabric-bg));height:unset;padding:unset;}.YeuegM5hxc8hnCActvH1[data-variant=outline]{box-shadow:0 0 2px color-mix(in lab,currentcolor 50%,var(--tint)) inset;outline-color:color-mix(in lab,currentcolor 50%,var(--fabric-bg))}.YeuegM5hxc8hnCActvH1 >*{color:color-mix(in lab,currentcolor 50%,var(--fabric-text))}.YeuegM5hxc8hnCActvH1.FXUC78bENMG8HCoi27jg:hover{background-color:color-mix(in lab,currentcolor 20%,var(--fabric-bg))}.YeuegM5hxc8hnCActvH1.FXUC78bENMG8HCoi27jg:active,.YeuegM5hxc8hnCActvH1.FXUC78bENMG8HCoi27jg[data-dropdown-open=true]{background-color:color-mix(in lab,currentcolor 15%,var(--fabric-bg));background-image:var(--active-gradient)}.YeuegM5hxc8hnCActvH1.FXUC78bENMG8HCoi27jg[data-dropdown-open=true]{pointer-events:none}.YeuegM5hxc8hnCActvH1[data-variant=solid]{background-color:color-mix(in lab,currentcolor 35%,var(--fabric-bg));outline-color:color-mix(in lab,currentcolor 50%,var(--fabric-bg));}.YeuegM5hxc8hnCActvH1[data-variant=solid]>*{color:color-mix(in lab,currentcolor 5%,var(--fabric-text))}.YeuegM5hxc8hnCActvH1.FXUC78bENMG8HCoi27jg[data-variant=solid]:hover{background-color:color-mix(in lab,currentcolor 45%,var(--fabric-bg))}.YeuegM5hxc8hnCActvH1.FXUC78bENMG8HCoi27jg[data-variant=solid]:active,.YeuegM5hxc8hnCActvH1.FXUC78bENMG8HCoi27jg[data-variant=solid][data-dropdown-open=true]{background-color:color-mix(in lab,currentcolor 30%,var(--fabric-bg))}}","",{version:3,sources:["webpack://./packages/core/dist/esm/components/chip/Chip.module.css"],names:[],mappings:"AAAA,YAAY,sBAAM,+DAA+D,CAAC,sCAAsC,CAAC,4CAA4B,CAAC,qEAAqE,CAAC,mBAAmB,CAA8L,CAA7L,4CAAa,cAAc,CAAa,uEAAa,yBAAyB,CAAE,2CAAY,sCAAsC,CAAC,cAAc,CAA2C,CAA1C,gEAAW,UAAU,CAAC,mBAAmB,CAAG,CAAC,WAAW,sBAAM,oEAAoE,CAAC,YAAY,CAAC,aAAa,CAA45B,CAA35B,4CAAwB,uEAAuE,CAAC,iEAAiE,CAAC,yBAAG,2DAA2D,CAAa,iDAAQ,oEAAoE,CAAC,sHAAoC,oEAAoE,CAAC,uCAAuC,CAAC,oEAA2B,mBAAmB,CAAE,0CAAsB,oEAAoE,CAAC,iEAAiE,CAAmQ,CAAlQ,4CAAI,0DAA0D,CAAa,qEAAQ,oEAAoE,CAAC,8JAAoC,oEAAoE,CAAI",sourcesContent:["@layer comp{.chip{--blank-gradient:linear-gradient(180deg,#00000005 0%,#0000 10%);background-image:var(--blank-gradient);color:theme(colors.tint.500);outline:1px solid color-mix(in lab,currentcolor 20%,var(--fabric-bg));outline-offset:-1px;&>.chipLabel{padding:0 .5em}&>.chipIcon{&+.chipLabel{margin-inline-start:-.5em}}&.clickable{background-image:var(--click-gradient);cursor:pointer;&.disabled{opacity:.5;pointer-events:none}}}}@layer var{.chip{background-color:color-mix(in lab,currentcolor 10%,var(--fabric-bg));height:unset;padding:unset;&[data-variant=outline]{box-shadow:0 0 2px color-mix(in lab,currentcolor 50%,var(--tint)) inset;outline-color:color-mix(in lab,currentcolor 50%,var(--fabric-bg))}>*{color:color-mix(in lab,currentcolor 50%,var(--fabric-text))}&.clickable{&:hover{background-color:color-mix(in lab,currentcolor 20%,var(--fabric-bg))}&:active,&[data-dropdown-open=true]{background-color:color-mix(in lab,currentcolor 15%,var(--fabric-bg));background-image:var(--active-gradient)}&[data-dropdown-open=true]{pointer-events:none}}&[data-variant=solid]{background-color:color-mix(in lab,currentcolor 35%,var(--fabric-bg));outline-color:color-mix(in lab,currentcolor 50%,var(--fabric-bg));&>*{color:color-mix(in lab,currentcolor 5%,var(--fabric-text))}&.clickable{&:hover{background-color:color-mix(in lab,currentcolor 45%,var(--fabric-bg))}&:active,&[data-dropdown-open=true]{background-color:color-mix(in lab,currentcolor 30%,var(--fabric-bg))}}}}}"],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={chip:"YeuegM5hxc8hnCActvH1",chipLabel:"TXgbdhBVcoaq1lWl2sT5",chipIcon:"ltNm3skO4rvT2IDVpimd",clickable:"FXUC78bENMG8HCoi27jg",disabled:"tlzgSLwCEFGfognRcjX5"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/dist/esm/components/collapsable/Collapsable.module.css":(module,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,"@layer comp{.VUeFNais4PVqr4WAPNf9+.VUeFNais4PVqr4WAPNf9{border-top:1px solid color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 65%, color(from var(--tint) srgb r g b / 1))}}","",{version:3,sources:["webpack://./packages/core/dist/esm/components/collapsable/Collapsable.module.css"],names:[],mappings:"AAAA,YAAyB,4CAAI,gIAA4C,CAAE",sourcesContent:["@layer comp{.collapsable{&+&{border-top:1px solid theme(borderColor.base)}}}"],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={collapsable:"VUeFNais4PVqr4WAPNf9"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/dist/esm/components/divider/Divider.module.css":(module,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,"@layer comp{.ZoVsBvORjvrobywYN6JO{margin-inline:.25rem}.Lxy4dmg2bmS9pqLI6z3S{margin-block:.25rem}}","",{version:3,sources:["webpack://./packages/core/dist/esm/components/divider/Divider.module.css"],names:[],mappings:"AAAA,YAAY,sBAAU,oBAAoB,CAAC,sBAAY,mBAAmB,CAAC",sourcesContent:["@layer comp{.vertical{margin-inline:.25rem}.horizontal{margin-block:.25rem}}"],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={vertical:"ZoVsBvORjvrobywYN6JO",horizontal:"Lxy4dmg2bmS9pqLI6z3S"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/dist/esm/components/dropdown/Dropdown.module.css":(module,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,"@layer var{.lCNdoE9CM6eLCjcSoNa1{grid-template:1fr/1fr;}.lCNdoE9CM6eLCjcSoNa1 [data-ref=card],.lCNdoE9CM6eLCjcSoNa1 [data-ref=panelGroup],.lCNdoE9CM6eLCjcSoNa1 [data-ref=panel]{border-inline:0;border-top:0;box-shadow:none;grid-area:unset;outline:0}}","",{version:3,sources:["webpack://./packages/core/dist/esm/components/dropdown/Dropdown.module.css"],names:[],mappings:"AAAA,WAAW,sBAAc,qBAAqB,CAAqI,CAApI,yHAA6D,eAAe,CAAC,YAAY,CAAC,eAAe,CAAC,eAAe,CAAC,SAAS,CAAE",sourcesContent:["@layer var{.dropdownBody{grid-template:1fr/1fr;& [data-ref=card],& [data-ref=panelGroup],& [data-ref=panel]{border-inline:0;border-top:0;box-shadow:none;grid-area:unset;outline:0}}}"],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={dropdownBody:"lCNdoE9CM6eLCjcSoNa1"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/dist/esm/components/icon/Icon.module.css":(module,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,"@layer comp{.dSLau8LDK5X8mcM6ZjRQ{height:1em;position:relative;vertical-align:-.125em;width:1em;}.dSLau8LDK5X8mcM6ZjRQ>i,.dSLau8LDK5X8mcM6ZjRQ>img,.dSLau8LDK5X8mcM6ZjRQ>svg{border-radius:inherit;display:block;height:1em;line-height:1;-o-object-fit:cover;object-fit:cover;overflow:hidden;pointer-events:none;width:1em;fill:currentcolor}.dSLau8LDK5X8mcM6ZjRQ>i:before{line-height:1}.dSLau8LDK5X8mcM6ZjRQ[data-clickable=true]{opacity:.75;}.dSLau8LDK5X8mcM6ZjRQ[data-clickable=true]:hover{background-color:color(from var(--fabric-text) srgb r g b / 10%);opacity:.9}.dSLau8LDK5X8mcM6ZjRQ[data-clickable=true]:active{opacity:.5}[dir=rtl] .dSLau8LDK5X8mcM6ZjRQ[data-flip=true]{transform:scaleX(-1)}}","",{version:3,sources:["webpack://./packages/core/dist/esm/components/icon/Icon.module.css"],names:[],mappings:"AAAA,YAAY,sBAAM,UAAU,CAAC,iBAAiB,CAAC,sBAAsB,CAAC,SAAS,CAA2S,CAA1S,4EAAgB,qBAAqB,CAAC,aAAa,CAAC,UAAU,CAAC,aAAa,CAAC,mBAAgB,CAAhB,gBAAgB,CAAC,eAAe,CAAC,mBAAmB,CAAC,SAAS,CAAC,iBAAiB,CAAC,+BAAW,aAAa,CAAC,2CAAuB,WAAW,CAAgF,CAA/E,iDAAQ,gEAAuC,CAAC,UAAU,CAAC,kDAAS,UAAU,CAAG,gDAAgC,oBAAoB,CAAC",sourcesContent:["@layer comp{.icon{height:1em;position:relative;vertical-align:-.125em;width:1em;&>i,&>img,&>svg{border-radius:inherit;display:block;height:1em;line-height:1;object-fit:cover;overflow:hidden;pointer-events:none;width:1em;fill:currentcolor}&>i:before{line-height:1}&[data-clickable=true]{opacity:.75;&:hover{background-color:theme(colors.text/10%);opacity:.9}&:active{opacity:.5}}}[dir=rtl] .icon[data-flip=true]{transform:scaleX(-1)}}"],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={icon:"dSLau8LDK5X8mcM6ZjRQ"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/dist/esm/components/media/Media.module.css":(module,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'@layer comp{.M_PCZ3dUwrZOH5ARU3TZ.eP4mjJ20I0AeiCDaIvdF:after,.M_PCZ3dUwrZOH5ARU3TZ.eP4mjJ20I0AeiCDaIvdF:before{background-image:linear-gradient(90deg,#222c 0,#222c .25rem,#fff8 0,#fff8 .75rem,#222c 0,#222c 1rem);background-position:50%;background-repeat:repeat-x;background-size:1rem;border:.125rem solid #222c;content:"";height:.5rem;inset-inline:0;position:absolute}.M_PCZ3dUwrZOH5ARU3TZ.eP4mjJ20I0AeiCDaIvdF:before{top:0}.M_PCZ3dUwrZOH5ARU3TZ.eP4mjJ20I0AeiCDaIvdF:after{bottom:0}.M_PCZ3dUwrZOH5ARU3TZ .igu47dDRAUCoJlUio8qM [data-ref=button]{margin:0;}.M_PCZ3dUwrZOH5ARU3TZ .igu47dDRAUCoJlUio8qM [data-ref=button]>:first-child{background-color:rgb(25 26 27 / 50%);color:#fff;}.M_PCZ3dUwrZOH5ARU3TZ .igu47dDRAUCoJlUio8qM [data-ref=button]>:first-child:hover{background-color:rgb(25 26 27 / 80%);color:color-mix(in lab, color(from var(--primary) srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1))}.M_PCZ3dUwrZOH5ARU3TZ .igu47dDRAUCoJlUio8qM .nN9LzPpe7wgodWuIJaog>:first-child{background-color:rgb(25 26 27 / 70%)}:is(.M_PCZ3dUwrZOH5ARU3TZ .igu47dDRAUCoJlUio8qM) .nN9LzPpe7wgodWuIJaog+.nN9LzPpe7wgodWuIJaog{margin-top:8px}}@layer util{:scope .igu47dDRAUCoJlUio8qM:hover .ishGvX5s2sXqPdjx3bKC{display:none}:scope .igu47dDRAUCoJlUio8qM:not(:hover) .nN9LzPpe7wgodWuIJaog{display:none}}',"",{version:3,sources:["webpack://./packages/core/dist/esm/components/media/Media.module.css"],names:[],mappings:"AAAA,YAAwC,mGAAiB,oGAAoG,CAAC,uBAAuB,CAAC,0BAA0B,CAAC,oBAAoB,CAAC,0BAA0B,CAAC,UAAU,CAAC,YAAY,CAAC,cAAc,CAAC,iBAAiB,CAAC,kDAAS,KAAK,CAAC,iDAAQ,QAAQ,CAAmB,8DAAoB,QAAQ,CAAsJ,CAArJ,2EAAe,oCAAwC,CAAC,UAAU,CAAkF,CAAjF,iFAAQ,oCAAwC,CAAC,sHAA+B,CAAG,+EAAmC,oCAAwC,CAAC,6FAA0C,cAAc,CAAG,CAAC,YAAqC,yDAA2B,YAAY,CAAgB,+DAAsB,YAAY,CAAG",sourcesContent:['@layer comp{.mediaContainer{&.mediaReel{&:after,&:before{background-image:linear-gradient(90deg,#222c 0,#222c .25rem,#fff8 0,#fff8 .75rem,#222c 0,#222c 1rem);background-position:50%;background-repeat:repeat-x;background-size:1rem;border:.125rem solid #222c;content:"";height:.5rem;inset-inline:0;position:absolute}&:before{top:0}&:after{bottom:0}}& .mediaControls{& [data-ref=button]{margin:0;&>:first-child{background-color:theme(colors.black/50%);color:#fff;&:hover{background-color:theme(colors.black/80%);color:theme(colors.primary.600)}}}& .mediaControlAction>:first-child{background-color:theme(colors.black/70%)}& .mediaControlAction+.mediaControlAction{margin-top:8px}}}}@layer util{& .mediaControls{&:hover{& .mediaControlPlaceholder{display:none}}&:not(:hover){& .mediaControlAction{display:none}}}}'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={mediaContainer:"M_PCZ3dUwrZOH5ARU3TZ",mediaReel:"eP4mjJ20I0AeiCDaIvdF",mediaControls:"igu47dDRAUCoJlUio8qM",mediaControlAction:"nN9LzPpe7wgodWuIJaog",mediaControlPlaceholder:"ishGvX5s2sXqPdjx3bKC"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/dist/esm/components/menu/Menu.module.css":(module,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,"@layer comp{.APDED5JWb7NxU81ZpjDQ{--color:var(--primary);}.APDED5JWb7NxU81ZpjDQ[data-color=accent]{--color:var(--accent)}.APDED5JWb7NxU81ZpjDQ[data-color=info]{--color:#00bfff}.APDED5JWb7NxU81ZpjDQ[data-color=danger]{--color:#f24c3d}.APDED5JWb7NxU81ZpjDQ[data-color=success]{--color:#44bc69}.APDED5JWb7NxU81ZpjDQ[data-color=warning]{--color:#edaa00}}@layer var{.APDED5JWb7NxU81ZpjDQ{color:color-mix(in lab,var(--color) 80%,var(--fabric-text));}.APDED5JWb7NxU81ZpjDQ >*{pointer-events:none}.APDED5JWb7NxU81ZpjDQ[data-focus=true]{background-color:color(from var(--color) srgb r g b/15%)}.APDED5JWb7NxU81ZpjDQ:active{background-color:color(from var(--color) srgb r g b/35%)}.APDED5JWb7NxU81ZpjDQ[data-open=true]{background-color:color(from var(--color) srgb r g b/10%)}.APDED5JWb7NxU81ZpjDQ.C7rFMKNnqlJF0pH1i2ym,.APDED5JWb7NxU81ZpjDQ.active{background-color:color(from var(--color) srgb r g b/20%);pointer-events:none;}.APDED5JWb7NxU81ZpjDQ.C7rFMKNnqlJF0pH1i2ym>div,.APDED5JWb7NxU81ZpjDQ.active>div{box-shadow:4px 0 0 var(--color) inset;}[dir=rtl] :is(.APDED5JWb7NxU81ZpjDQ.C7rFMKNnqlJF0pH1i2ym>div),[dir=rtl] :is(.APDED5JWb7NxU81ZpjDQ.active>div){box-shadow:-4px 0 0 var(--color) inset}.APDED5JWb7NxU81ZpjDQ.yUbYKudmQXNerOFyQakR{color:color(from var(--tint) srgb r g b / 1);opacity:.5;pointer-events:none;}.APDED5JWb7NxU81ZpjDQ.yUbYKudmQXNerOFyQakR>label~*{display:none}.YIAjkuhrySCRtppzpElX{font-size:1.25em;padding:.3em;}.YIAjkuhrySCRtppzpElX._aw3XFzBbcuxSQl0sj7y{font-size:1.5em;font-weight:500;padding:.375em}.menu-list.hide-icons .YIAjkuhrySCRtppzpElX{width:.125em}}","",{version:3,sources:["webpack://./packages/core/dist/esm/components/menu/Menu.module.css"],names:[],mappings:"AAAA,YAAY,sBAAU,sBAAqC,CAAmS,CAAlS,yCAAqB,qBAAoC,CAAC,uCAAmB,eAAkC,CAAC,yCAAqB,eAAoC,CAAC,0CAAsB,eAAqC,CAAC,0CAAsB,eAAqC,CAAE,CAAC,WAAW,sBAAU,2DAA2D,CAAqiB,CAApiB,yBAAG,mBAAmB,CAAC,uCAAmB,wDAAwD,CAAC,6BAAS,wDAAwD,CAAC,sCAAkB,wDAAwD,CAAC,wEAA2B,wDAAwD,CAAC,mBAAmB,CAA0G,CAAzG,gFAAM,qCAAqC,CAA6D,CAA5D,8GAAqB,sCAAsC,CAAG,2CAAW,4CAA+B,CAAC,UAAU,CAAC,mBAAmB,CAAwB,CAAvB,mDAAU,YAAY,CAAG,sBAAU,gBAAgB,CAAC,YAAY,CAA0D,CAAzD,2CAAU,eAAe,CAAC,eAAe,CAAC,cAAc,CAAE,4CAAyC,YAAY,CAAC",sourcesContent:["@layer comp{.menuItem{--color:theme(colors.primary.DEFAULT);&[data-color=accent]{--color:theme(colors.accent.DEFAULT)}&[data-color=info]{--color:theme(colors.info.DEFAULT)}&[data-color=danger]{--color:theme(colors.danger.DEFAULT)}&[data-color=success]{--color:theme(colors.success.DEFAULT)}&[data-color=warning]{--color:theme(colors.warning.DEFAULT)}}}@layer var{.menuItem{color:color-mix(in lab,var(--color) 80%,var(--fabric-text));>*{pointer-events:none}&[data-focus=true]{background-color:color(from var(--color) srgb r g b/15%)}&:active{background-color:color(from var(--color) srgb r g b/35%)}&[data-open=true]{background-color:color(from var(--color) srgb r g b/10%)}&.active,&:global(.active){background-color:color(from var(--color) srgb r g b/20%);pointer-events:none;&>div{box-shadow:4px 0 0 var(--color) inset;:global([dir=rtl]) &{box-shadow:-4px 0 0 var(--color) inset}}}&.disabled{color:theme(textColor.tint.500);opacity:.5;pointer-events:none;&>label~*{display:none}}}.menuIcon{font-size:1.25em;padding:.3em;&.minimal{font-size:1.5em;font-weight:500;padding:.375em}}:global(.menu-list.hide-icons) .menuIcon{width:.125em}}"],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={menuItem:"APDED5JWb7NxU81ZpjDQ",active:"C7rFMKNnqlJF0pH1i2ym",disabled:"yUbYKudmQXNerOFyQakR",menuIcon:"YIAjkuhrySCRtppzpElX",minimal:"_aw3XFzBbcuxSQl0sj7y"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/dist/esm/components/meter/Meter.module.css":(module,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,"@layer comp{.bCPlZx5rtyNeQwZj1Fju .jIb4CLAhTkiASg0jtu6e{flex:1 1 1rem;height:.5em;line-height:1;max-width:12rem;min-width:1rem;}.bCPlZx5rtyNeQwZj1Fju .jIb4CLAhTkiASg0jtu6e:after{width:var(--width)}.bCPlZx5rtyNeQwZj1Fju>label{font-size:max(.75rem,.5em);line-height:1}.bCPlZx5rtyNeQwZj1Fju .jIb4CLAhTkiASg0jtu6e[data-active=true]:first-child:after,.bCPlZx5rtyNeQwZj1Fju .jIb4CLAhTkiASg0jtu6e[data-active=true]:nth-child(2):after,.bCPlZx5rtyNeQwZj1Fju .jIb4CLAhTkiASg0jtu6e[data-active=true]:nth-child(3):after,.bCPlZx5rtyNeQwZj1Fju .jIb4CLAhTkiASg0jtu6e[data-active=true]:nth-child(4):after,.bCPlZx5rtyNeQwZj1Fju .jIb4CLAhTkiASg0jtu6e[data-active=true]:nth-child(5):after,.bCPlZx5rtyNeQwZj1Fju .jIb4CLAhTkiASg0jtu6e[data-active=true]:nth-child(6):after{background-color:currentColor;opacity:.85}.bCPlZx5rtyNeQwZj1Fju .jIb4CLAhTkiASg0jtu6e[data-active=true]:first-child{color:#eb5e28}.bCPlZx5rtyNeQwZj1Fju .jIb4CLAhTkiASg0jtu6e[data-active=true]:nth-child(2){color:#f9a03f}.bCPlZx5rtyNeQwZj1Fju .jIb4CLAhTkiASg0jtu6e[data-active=true]:nth-child(3){color:#f3c053}.bCPlZx5rtyNeQwZj1Fju .jIb4CLAhTkiASg0jtu6e[data-active=true]:nth-child(4){color:#a1c349}.bCPlZx5rtyNeQwZj1Fju .jIb4CLAhTkiASg0jtu6e[data-active=true]:nth-child(5){color:#87a330}.bCPlZx5rtyNeQwZj1Fju .jIb4CLAhTkiASg0jtu6e[data-active=true]:nth-child(6){color:#6a8532}.bCPlZx5rtyNeQwZj1Fju[class*=text-accent] .jIb4CLAhTkiASg0jtu6e[data-active=true],.bCPlZx5rtyNeQwZj1Fju[class*=text-danger] .jIb4CLAhTkiASg0jtu6e[data-active=true],.bCPlZx5rtyNeQwZj1Fju[class*=text-info] .jIb4CLAhTkiASg0jtu6e[data-active=true],.bCPlZx5rtyNeQwZj1Fju[class*=text-primary] .jIb4CLAhTkiASg0jtu6e[data-active=true],.bCPlZx5rtyNeQwZj1Fju[class*=text-success] .jIb4CLAhTkiASg0jtu6e[data-active=true],.bCPlZx5rtyNeQwZj1Fju[class*=text-warning] .jIb4CLAhTkiASg0jtu6e[data-active=true]{color:currentColor;}.bCPlZx5rtyNeQwZj1Fju[class*=text-accent] .jIb4CLAhTkiASg0jtu6e[data-active=true]:first-child:after,.bCPlZx5rtyNeQwZj1Fju[class*=text-danger] .jIb4CLAhTkiASg0jtu6e[data-active=true]:first-child:after,.bCPlZx5rtyNeQwZj1Fju[class*=text-info] .jIb4CLAhTkiASg0jtu6e[data-active=true]:first-child:after,.bCPlZx5rtyNeQwZj1Fju[class*=text-primary] .jIb4CLAhTkiASg0jtu6e[data-active=true]:first-child:after,.bCPlZx5rtyNeQwZj1Fju[class*=text-success] .jIb4CLAhTkiASg0jtu6e[data-active=true]:first-child:after,.bCPlZx5rtyNeQwZj1Fju[class*=text-warning] .jIb4CLAhTkiASg0jtu6e[data-active=true]:first-child:after{opacity:.2}.bCPlZx5rtyNeQwZj1Fju[class*=text-accent] .jIb4CLAhTkiASg0jtu6e[data-active=true]:nth-child(2):after,.bCPlZx5rtyNeQwZj1Fju[class*=text-danger] .jIb4CLAhTkiASg0jtu6e[data-active=true]:nth-child(2):after,.bCPlZx5rtyNeQwZj1Fju[class*=text-info] .jIb4CLAhTkiASg0jtu6e[data-active=true]:nth-child(2):after,.bCPlZx5rtyNeQwZj1Fju[class*=text-primary] .jIb4CLAhTkiASg0jtu6e[data-active=true]:nth-child(2):after,.bCPlZx5rtyNeQwZj1Fju[class*=text-success] .jIb4CLAhTkiASg0jtu6e[data-active=true]:nth-child(2):after,.bCPlZx5rtyNeQwZj1Fju[class*=text-warning] .jIb4CLAhTkiASg0jtu6e[data-active=true]:nth-child(2):after{opacity:.35}.bCPlZx5rtyNeQwZj1Fju[class*=text-accent] .jIb4CLAhTkiASg0jtu6e[data-active=true]:nth-child(3):after,.bCPlZx5rtyNeQwZj1Fju[class*=text-danger] .jIb4CLAhTkiASg0jtu6e[data-active=true]:nth-child(3):after,.bCPlZx5rtyNeQwZj1Fju[class*=text-info] .jIb4CLAhTkiASg0jtu6e[data-active=true]:nth-child(3):after,.bCPlZx5rtyNeQwZj1Fju[class*=text-primary] .jIb4CLAhTkiASg0jtu6e[data-active=true]:nth-child(3):after,.bCPlZx5rtyNeQwZj1Fju[class*=text-success] .jIb4CLAhTkiASg0jtu6e[data-active=true]:nth-child(3):after,.bCPlZx5rtyNeQwZj1Fju[class*=text-warning] .jIb4CLAhTkiASg0jtu6e[data-active=true]:nth-child(3):after{opacity:.5}.bCPlZx5rtyNeQwZj1Fju[class*=text-accent] .jIb4CLAhTkiASg0jtu6e[data-active=true]:nth-child(4):after,.bCPlZx5rtyNeQwZj1Fju[class*=text-danger] .jIb4CLAhTkiASg0jtu6e[data-active=true]:nth-child(4):after,.bCPlZx5rtyNeQwZj1Fju[class*=text-info] .jIb4CLAhTkiASg0jtu6e[data-active=true]:nth-child(4):after,.bCPlZx5rtyNeQwZj1Fju[class*=text-primary] .jIb4CLAhTkiASg0jtu6e[data-active=true]:nth-child(4):after,.bCPlZx5rtyNeQwZj1Fju[class*=text-success] .jIb4CLAhTkiASg0jtu6e[data-active=true]:nth-child(4):after,.bCPlZx5rtyNeQwZj1Fju[class*=text-warning] .jIb4CLAhTkiASg0jtu6e[data-active=true]:nth-child(4):after{opacity:.65}.bCPlZx5rtyNeQwZj1Fju[class*=text-accent] .jIb4CLAhTkiASg0jtu6e[data-active=true]:nth-child(5):after,.bCPlZx5rtyNeQwZj1Fju[class*=text-danger] .jIb4CLAhTkiASg0jtu6e[data-active=true]:nth-child(5):after,.bCPlZx5rtyNeQwZj1Fju[class*=text-info] .jIb4CLAhTkiASg0jtu6e[data-active=true]:nth-child(5):after,.bCPlZx5rtyNeQwZj1Fju[class*=text-primary] .jIb4CLAhTkiASg0jtu6e[data-active=true]:nth-child(5):after,.bCPlZx5rtyNeQwZj1Fju[class*=text-success] .jIb4CLAhTkiASg0jtu6e[data-active=true]:nth-child(5):after,.bCPlZx5rtyNeQwZj1Fju[class*=text-warning] .jIb4CLAhTkiASg0jtu6e[data-active=true]:nth-child(5):after{opacity:.8}.bCPlZx5rtyNeQwZj1Fju[class*=text-accent] .jIb4CLAhTkiASg0jtu6e[data-active=true]:nth-child(6):after,.bCPlZx5rtyNeQwZj1Fju[class*=text-danger] .jIb4CLAhTkiASg0jtu6e[data-active=true]:nth-child(6):after,.bCPlZx5rtyNeQwZj1Fju[class*=text-info] .jIb4CLAhTkiASg0jtu6e[data-active=true]:nth-child(6):after,.bCPlZx5rtyNeQwZj1Fju[class*=text-primary] .jIb4CLAhTkiASg0jtu6e[data-active=true]:nth-child(6):after,.bCPlZx5rtyNeQwZj1Fju[class*=text-success] .jIb4CLAhTkiASg0jtu6e[data-active=true]:nth-child(6):after,.bCPlZx5rtyNeQwZj1Fju[class*=text-warning] .jIb4CLAhTkiASg0jtu6e[data-active=true]:nth-child(6):after{opacity:.95}}","",{version:3,sources:["webpack://./packages/core/dist/esm/components/meter/Meter.module.css"],names:[],mappings:"AAAA,YAAmB,4CAAY,aAAa,CAAC,WAAW,CAAC,aAAa,CAAC,eAAe,CAAC,cAAc,CAA4B,CAA3B,kDAAQ,kBAAkB,CAAE,4BAAQ,0BAA0B,CAAC,aAAa,CAAwH,qeAAQ,6BAA6B,CAAC,WAAW,CAAE,0EAAc,aAAa,CAAC,2EAAe,aAAa,CAAC,2EAAe,aAAa,CAAC,2EAAe,aAAa,CAAC,2EAAe,aAAa,CAAC,2EAAe,aAAa,CAAE,6eAA6S,kBAAkB,CAAmM,CAAlM,ylBAAoB,UAAU,CAAC,+lBAAqB,WAAW,CAAC,+lBAAqB,UAAU,CAAC,+lBAAqB,WAAW,CAAC,+lBAAqB,UAAU,CAAC,+lBAAqB,WAAW,CAAG",sourcesContent:["@layer comp{.meter{& .meterBar{flex:1 1 1rem;height:.5em;line-height:1;max-width:12rem;min-width:1rem;&:after{width:var(--width)}}&>label{font-size:max(.75rem,.5em);line-height:1}& .meterBar[data-active=true]{&:first-child,&:nth-child(2),&:nth-child(3),&:nth-child(4),&:nth-child(5),&:nth-child(6){&:after{background-color:currentColor;opacity:.85}}&:first-child{color:#eb5e28}&:nth-child(2){color:#f9a03f}&:nth-child(3){color:#f3c053}&:nth-child(4){color:#a1c349}&:nth-child(5){color:#87a330}&:nth-child(6){color:#6a8532}}&[class*=text-accent] .meterBar[data-active=true],&[class*=text-danger] .meterBar[data-active=true],&[class*=text-info] .meterBar[data-active=true],&[class*=text-primary] .meterBar[data-active=true],&[class*=text-success] .meterBar[data-active=true],&[class*=text-warning] .meterBar[data-active=true]{color:currentColor;&:first-child:after{opacity:.2}&:nth-child(2):after{opacity:.35}&:nth-child(3):after{opacity:.5}&:nth-child(4):after{opacity:.65}&:nth-child(5):after{opacity:.8}&:nth-child(6):after{opacity:.95}}}}"],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={meter:"bCPlZx5rtyNeQwZj1Fju",meterBar:"jIb4CLAhTkiASg0jtu6e"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/dist/esm/components/panel/Panel.module.css":(module,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'@layer comp{.bVamxEOh20wXhsGXsqa4{background-color:color(from var(--fabric-bg) srgb r g b / 1);grid-template:"head" auto "content" 1fr/1fr;}.bVamxEOh20wXhsGXsqa4>*{background-color:transparent}.bVamxEOh20wXhsGXsqa4.fixed{box-shadow:0 0 18px var(--fabric-shadow)}.bVamxEOh20wXhsGXsqa4 .NUo1qY7rIFusA8D9KCGG{background-color:color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 90%, color(from var(--tint) srgb r g b / 1))}.bVamxEOh20wXhsGXsqa4 .RcYIcPlphu1_yKSRyJCi{padding:.25rem}.bVamxEOh20wXhsGXsqa4 .xgFOR_eF9PuGKUo8k9aX{grid-template:"head head head" auto ". loader ." auto "side-s content side-e" 1fr "foot foot foot" auto/auto 1fr auto}}@layer util{.UKE3OP6edrBaUSixU4tA>.bVamxEOh20wXhsGXsqa4[data-collapsed=true]{flex:0 0 auto}.UKE3OP6edrBaUSixU4tA>.bVamxEOh20wXhsGXsqa4[data-collapsed=false]{flex:1 1 auto;min-height:15rem;}.UKE3OP6edrBaUSixU4tA>.bVamxEOh20wXhsGXsqa4[data-collapsed=false] [data-ref=panelCollapse]{color:var(--tint);opacity:.25;pointer-events:none}.UKE3OP6edrBaUSixU4tA>.bVamxEOh20wXhsGXsqa4:not(:first-child){border-start-end-radius:0;border-start-start-radius:0}.UKE3OP6edrBaUSixU4tA>.bVamxEOh20wXhsGXsqa4:not(:last-child){border-bottom:1px solid color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 99%, color(from var(--tint) srgb r g b / 1));border-end-end-radius:0;border-end-start-radius:0}[data-ref=asideBody]>.UKE3OP6edrBaUSixU4tA>.bVamxEOh20wXhsGXsqa4{border-radius:0;outline:0}}',"",{version:3,sources:["webpack://./packages/core/dist/esm/components/panel/Panel.module.css"],names:[],mappings:"AAAA,YAAY,sBAAO,4DAAiC,CAAC,2CAA2C,CAAiU,CAAhU,wBAAI,4BAA4B,CAAC,4BAAiB,wCAA8C,CAAC,4CAAe,4HAA8C,CAAC,4CAAe,cAAc,CAAC,4CAAa,qHAAqH,CAAE,CAAC,YAAiC,iEAAuB,aAAa,CAAC,kEAAwB,aAAa,CAAC,gBAAgB,CAA4E,CAA3E,2FAAyB,iBAAiB,CAAC,WAAW,CAAC,mBAAmB,CAAG,8DAA2B,yBAAyB,CAAC,2BAA2B,CAAC,6DAA0B,mIAAmD,CAAC,uBAAuB,CAAC,yBAAyB,CAAE,iEAAwC,eAAe,CAAC,SAAS,CAAC",sourcesContent:['@layer comp{.panel{background-color:theme(colors.bg);grid-template:"head" auto "content" 1fr/1fr;&>*{background-color:transparent}&:global(.fixed){box-shadow:0 0 18px theme(boxShadowColor.base)}& .panelHeader{background-color:theme(backgroundColor.dimmed)}& .panelAction{padding:.25rem}& .panelBody{grid-template:"head head head" auto ". loader ." auto "side-s content side-e" 1fr "foot foot foot" auto/auto 1fr auto}}}@layer util{.panelGroup{&>.panel{&[data-collapsed=true]{flex:0 0 auto}&[data-collapsed=false]{flex:1 1 auto;min-height:15rem;[data-ref=panelCollapse]{color:var(--tint);opacity:.25;pointer-events:none}}}&>.panel:not(:first-child){border-start-end-radius:0;border-start-start-radius:0}&>.panel:not(:last-child){border-bottom:1px solid theme(backgroundColor.base);border-end-end-radius:0;border-end-start-radius:0}}[data-ref=asideBody]>.panelGroup>.panel{border-radius:0;outline:0}}'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={panel:"bVamxEOh20wXhsGXsqa4",panelHeader:"NUo1qY7rIFusA8D9KCGG",panelAction:"RcYIcPlphu1_yKSRyJCi",panelBody:"xgFOR_eF9PuGKUo8k9aX",panelGroup:"UKE3OP6edrBaUSixU4tA"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/dist/esm/components/progress/Progress.module.css":(module,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,"@layer comp{.aqj6FU0ZyPvP6Gm9yKBg{box-shadow:inset 0 0 4px 0 color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 72%, color(from var(--tint) srgb r g b / 1));height:1em;}.aqj6FU0ZyPvP6Gm9yKBg>div:last-child{width:calc(var(--progress)*1%);}.aqj6FU0ZyPvP6Gm9yKBg>div:last-child:after{color:var(--white);content:attr(data-label);font-size:.5em;inset-block:0;inset-inline-start:0;line-height:.5em;padding:.75em;position:absolute;text-align:center;vertical-align:middle;width:calc((100/var(--progress))*100%)}.aqj6FU0ZyPvP6Gm9yKBg .HCr6YW0zax1EAd6MbSaw{transition:width .5s;width:calc(var(--progress)*1%)}.aqj6FU0ZyPvP6Gm9yKBg>div:first-child{font-size:.5em;line-height:.5em;padding:.75em}.yL1DglF47lyTkSfpLQFA{background-image:var(--progress-gradient);background-size:1rem 1rem;}.yL1DglF47lyTkSfpLQFA{animation:progress .75s linear infinite}}","",{version:3,sources:["webpack://./packages/core/dist/esm/components/progress/Progress.module.css"],names:[],mappings:"AAAA,YAAY,sBAAa,sIAAuD,CAAC,UAAU,CAA2Z,CAA1Z,qCAAiB,8BAA8B,CAAuO,CAAtO,2CAAQ,kBAAkB,CAAC,wBAAwB,CAAC,cAAc,CAAC,aAAa,CAAC,oBAAoB,CAAC,gBAAgB,CAAC,aAAa,CAAC,iBAAiB,CAAC,iBAAiB,CAAC,qBAAqB,CAAC,sCAAsC,CAAE,4CAAe,oBAAoB,CAAC,8BAA8B,CAAC,sCAAkB,cAAc,CAAC,gBAAgB,CAAC,aAAa,CAAE,sBAAiB,yCAAyC,CAAC,yBAAyB,CAAmD,CAAlD,sBAAU,uCAAuC,CAAE",sourcesContent:["@layer comp{.progressbar{box-shadow:inset 0 0 4px 0 theme(boxShadowColor.dimmed);height:1em;&>div:last-child{width:calc(var(--progress)*1%);&:after{color:var(--white);content:attr(data-label);font-size:.5em;inset-block:0;inset-inline-start:0;line-height:.5em;padding:.75em;position:absolute;text-align:center;vertical-align:middle;width:calc((100/var(--progress))*100%)}}.progressTrack{transition:width .5s;width:calc(var(--progress)*1%)}&>div:first-child{font-size:.5em;line-height:.5em;padding:.75em}}.progressAnimate{background-image:var(--progress-gradient);background-size:1rem 1rem;& :global{animation:progress .75s linear infinite}}}"],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={progressbar:"aqj6FU0ZyPvP6Gm9yKBg",progressTrack:"HCr6YW0zax1EAd6MbSaw",progressAnimate:"yL1DglF47lyTkSfpLQFA"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/dist/esm/components/tabpanel/TabPanel.module.css":(module,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'@layer comp{.ySfH6I_iz1CIfplIJhhU{--color:color(from var(--primary) srgb r g b / 1);}.ySfH6I_iz1CIfplIJhhU>.KGWk5HxYVcAyxnWxkEgB{grid-area:tablist;}.ySfH6I_iz1CIfplIJhhU>.KGWk5HxYVcAyxnWxkEgB>.mOet8rindgiEavbabC0E>.foGSFDjUlHsAI2TZBR5g[data-color=accent]{--color:color(from var(--accent) srgb r g b / 1)}.ySfH6I_iz1CIfplIJhhU>.KGWk5HxYVcAyxnWxkEgB>.mOet8rindgiEavbabC0E>.foGSFDjUlHsAI2TZBR5g[data-color=info]{--color:color(from #00bfff srgb r g b / 1)}.ySfH6I_iz1CIfplIJhhU>.KGWk5HxYVcAyxnWxkEgB>.mOet8rindgiEavbabC0E>.foGSFDjUlHsAI2TZBR5g[data-color=danger]{--color:color(from #f24c3d srgb r g b / 1)}.ySfH6I_iz1CIfplIJhhU>.KGWk5HxYVcAyxnWxkEgB>.mOet8rindgiEavbabC0E>.foGSFDjUlHsAI2TZBR5g[data-color=success]{--color:color(from #44bc69 srgb r g b / 1)}.ySfH6I_iz1CIfplIJhhU>.KGWk5HxYVcAyxnWxkEgB>.mOet8rindgiEavbabC0E>.foGSFDjUlHsAI2TZBR5g[data-color=warning]{--color:color(from #edaa00 srgb r g b / 1)}.ySfH6I_iz1CIfplIJhhU>.KGWk5HxYVcAyxnWxkEgB>.mOet8rindgiEavbabC0E>.foGSFDjUlHsAI2TZBR5g:not(.active):hover{background-color:color-mix(in lab, color(from var(--tint) srgb r g b / 50%) 27%, color(from var(--fabric-bg) srgb r g b / 50%));color:color-mix(in lab,var(--color) 65%,var(--fabric-text))}.ySfH6I_iz1CIfplIJhhU>.KGWk5HxYVcAyxnWxkEgB>.mOet8rindgiEavbabC0E>.foGSFDjUlHsAI2TZBR5g.active{--active-color:var(--color);color:color-mix(in lab,var(--color) 65%,var(--fabric-text));font-weight:500}.ySfH6I_iz1CIfplIJhhU[data-variant=outline] .mOet8rindgiEavbabC0E>.foGSFDjUlHsAI2TZBR5g.active{--active-color:color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 99%, color(from var(--tint) srgb r g b / 1));--active-border:0 0 0 1px color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 65%, color(from var(--tint) srgb r g b / 1)) inset;background-color:color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 99%, color(from var(--tint) srgb r g b / 1))}.ySfH6I_iz1CIfplIJhhU[data-variant=solid] .mOet8rindgiEavbabC0E>.foGSFDjUlHsAI2TZBR5g.active{background-color:var(--color);color:#fefdfc}.ySfH6I_iz1CIfplIJhhU[data-variant=soft] .mOet8rindgiEavbabC0E>.foGSFDjUlHsAI2TZBR5g.active{background-color:color-mix(in lab,var(--color) 20%,var(--fabric-bg))}.ySfH6I_iz1CIfplIJhhU[data-orientation=top]{grid-template:"tablist" auto "content" 1fr/1fr;padding-inline:2px;}.ySfH6I_iz1CIfplIJhhU[data-orientation=top] .KGWk5HxYVcAyxnWxkEgB{box-shadow:inset 0 -1px 0 color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 72%, color(from var(--tint) srgb r g b / 1))}.ySfH6I_iz1CIfplIJhhU[data-orientation=bottom]{grid-template:"content" 1fr "tablist" auto/1fr;padding-inline:2px;}.ySfH6I_iz1CIfplIJhhU[data-orientation=bottom] .KGWk5HxYVcAyxnWxkEgB{box-shadow:inset 0 1px 0 color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 72%, color(from var(--tint) srgb r g b / 1));margin-top:1px}.ySfH6I_iz1CIfplIJhhU[data-orientation=start]{grid-template:"tablist content" 1fr/auto 1fr;padding-block:2px;}.ySfH6I_iz1CIfplIJhhU[data-orientation=start] .KGWk5HxYVcAyxnWxkEgB{box-shadow:inset -1px 0 0 color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 72%, color(from var(--tint) srgb r g b / 1))}.ySfH6I_iz1CIfplIJhhU[data-orientation=end]{grid-template:"content tablist" 1fr/1fr auto;padding-block:2px;}.ySfH6I_iz1CIfplIJhhU[data-orientation=end] .KGWk5HxYVcAyxnWxkEgB{box-shadow:inset 1px 0 0 color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 72%, color(from var(--tint) srgb r g b / 1))}}@layer util{.ySfH6I_iz1CIfplIJhhU .mOet8rindgiEavbabC0E>.foGSFDjUlHsAI2TZBR5g.active{pointer-events:none}.ySfH6I_iz1CIfplIJhhU[data-orientation=top] .mOet8rindgiEavbabC0E>.foGSFDjUlHsAI2TZBR5g.active{box-shadow:0 -2px 0 var(--active-color) inset,var(--active-border,0 0 0 transparent)}.ySfH6I_iz1CIfplIJhhU[data-orientation=bottom] .mOet8rindgiEavbabC0E>.foGSFDjUlHsAI2TZBR5g.active{box-shadow:0 2px 0 var(--active-color) inset,var(--active-border,0 0 0 transparent)}.ySfH6I_iz1CIfplIJhhU[data-orientation=start] .mOet8rindgiEavbabC0E>.foGSFDjUlHsAI2TZBR5g.active{box-shadow:-2px 0 0 var(--active-color) inset,var(--active-border,0 0 0 transparent)}.ySfH6I_iz1CIfplIJhhU[data-orientation=end] .mOet8rindgiEavbabC0E>.foGSFDjUlHsAI2TZBR5g.active{box-shadow:2px 0 0 var(--active-color) inset,var(--active-border,0 0 0 transparent)}.ySfH6I_iz1CIfplIJhhU[data-orientation=top] .mOet8rindgiEavbabC0E>.foGSFDjUlHsAI2TZBR5g{border-end-end-radius:0;border-end-start-radius:0;margin-top:2px;margin-inline:1px}.ySfH6I_iz1CIfplIJhhU[data-orientation=bottom] .mOet8rindgiEavbabC0E>.foGSFDjUlHsAI2TZBR5g{border-start-end-radius:0;border-start-start-radius:0;margin-bottom:2px;margin-inline:1px}.ySfH6I_iz1CIfplIJhhU[data-orientation=start] .mOet8rindgiEavbabC0E>.foGSFDjUlHsAI2TZBR5g{border-end-end-radius:0;border-start-end-radius:0;margin-block:1px;margin-inline-start:2px}.ySfH6I_iz1CIfplIJhhU[data-orientation=end] .mOet8rindgiEavbabC0E>.foGSFDjUlHsAI2TZBR5g{border-end-start-radius:0;border-start-start-radius:0;margin-block:1px;margin-inline-end:2px}}',"",{version:3,sources:["webpack://./packages/core/dist/esm/components/tabpanel/TabPanel.module.css"],names:[],mappings:"AAAA,YAAY,sBAAU,iDAAiC,CAA+nD,CAA9nD,4CAAa,iBAAiB,CAAsiB,CAA/gB,2GAAqB,gDAAgC,CAAC,yGAAmB,0CAA8B,CAAC,2GAAqB,0CAAgC,CAAC,4GAAsB,0CAAiC,CAAC,4GAAsB,0CAAiC,CAAC,2GAA8B,gIAA2C,CAAC,2DAA2D,CAAC,+FAAkB,2BAA2B,CAAC,2DAA2D,CAAC,eAAe,CAA2B,+FAAsC,0HAA0C,CAAC,2IAAuD,CAAC,4HAA4C,CAAwB,6FAAsC,6BAA6B,CAAC,aAAyB,CAAuB,4FAAsC,oEAAoE,CAAE,4CAAwB,8CAA8C,CAAC,kBAAkB,CAAgE,CAA/D,kEAAW,qIAAmD,CAAE,+CAA2B,8CAA8C,CAAC,kBAAkB,CAA8E,CAA7E,qEAAW,oIAAkD,CAAC,cAAc,CAAE,8CAA0B,4CAA4C,CAAC,iBAAiB,CAAgE,CAA/D,oEAAW,qIAAmD,CAAE,4CAAwB,4CAA4C,CAAC,iBAAiB,CAA+D,CAA9D,kEAAW,oIAAkD,CAAG,CAAC,YAAsB,yEAAsC,mBAAmB,CAAkC,+FAA6B,oFAAoF,CAAsC,kGAA6B,mFAAmF,CAAqC,iGAA6B,oFAAoF,CAAmC,+FAA6B,mFAAmF,CAAE,wFAA4C,uBAAuB,CAAC,yBAAyB,CAAC,cAAc,CAAC,iBAAiB,CAAC,2FAA+C,yBAAyB,CAAC,2BAA2B,CAAC,iBAAiB,CAAC,iBAAiB,CAAC,0FAA8C,uBAAuB,CAAC,yBAAyB,CAAC,gBAAgB,CAAC,uBAAuB,CAAC,wFAA4C,yBAAyB,CAAC,2BAA2B,CAAC,gBAAgB,CAAC,qBAAqB,CAAE",sourcesContent:['@layer comp{.tabPanel{--color:theme(colors.primary.500);&>.tabHeader{grid-area:tablist;&>.tabList>.tabButton{&[data-color=accent]{--color:theme(colors.accent.500)}&[data-color=info]{--color:theme(colors.info.500)}&[data-color=danger]{--color:theme(colors.danger.500)}&[data-color=success]{--color:theme(colors.success.500)}&[data-color=warning]{--color:theme(colors.warning.500)}&:not(:global(.active)):hover{background-color:theme(colors.tint.100/50%);color:color-mix(in lab,var(--color) 65%,var(--fabric-text))}&:global(.active){--active-color:var(--color);color:color-mix(in lab,var(--color) 65%,var(--fabric-text));font-weight:500}}}&[data-variant=outline]{& .tabList>.tabButton:global(.active){--active-color:theme(backgroundColor.base);--active-border:0 0 0 1px theme(borderColor.base) inset;background-color:theme(backgroundColor.base)}}&[data-variant=solid]{& .tabList>.tabButton:global(.active){background-color:var(--color);color:theme(colors.white)}}&[data-variant=soft]{& .tabList>.tabButton:global(.active){background-color:color-mix(in lab,var(--color) 20%,var(--fabric-bg))}}&[data-orientation=top]{grid-template:"tablist" auto "content" 1fr/1fr;padding-inline:2px;.tabHeader{box-shadow:inset 0 -1px 0 theme(borderColor.dimmed)}}&[data-orientation=bottom]{grid-template:"content" 1fr "tablist" auto/1fr;padding-inline:2px;.tabHeader{box-shadow:inset 0 1px 0 theme(borderColor.dimmed);margin-top:1px}}&[data-orientation=start]{grid-template:"tablist content" 1fr/auto 1fr;padding-block:2px;.tabHeader{box-shadow:inset -1px 0 0 theme(borderColor.dimmed)}}&[data-orientation=end]{grid-template:"content tablist" 1fr/1fr auto;padding-block:2px;.tabHeader{box-shadow:inset 1px 0 0 theme(borderColor.dimmed)}}}}@layer util{.tabPanel{& .tabList>.tabButton:global(.active){pointer-events:none}&[data-orientation=top] .tabList{&>.tabButton:global(.active){box-shadow:0 -2px 0 var(--active-color) inset,var(--active-border,0 0 0 transparent)}}&[data-orientation=bottom] .tabList{&>.tabButton:global(.active){box-shadow:0 2px 0 var(--active-color) inset,var(--active-border,0 0 0 transparent)}}&[data-orientation=start] .tabList{&>.tabButton:global(.active){box-shadow:-2px 0 0 var(--active-color) inset,var(--active-border,0 0 0 transparent)}}&[data-orientation=end] .tabList{&>.tabButton:global(.active){box-shadow:2px 0 0 var(--active-color) inset,var(--active-border,0 0 0 transparent)}}&[data-orientation=top] .tabList>.tabButton{border-end-end-radius:0;border-end-start-radius:0;margin-top:2px;margin-inline:1px}&[data-orientation=bottom] .tabList>.tabButton{border-start-end-radius:0;border-start-start-radius:0;margin-bottom:2px;margin-inline:1px}&[data-orientation=start] .tabList>.tabButton{border-end-end-radius:0;border-start-end-radius:0;margin-block:1px;margin-inline-start:2px}&[data-orientation=end] .tabList>.tabButton{border-end-start-radius:0;border-start-start-radius:0;margin-block:1px;margin-inline-end:2px}}}'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={tabPanel:"ySfH6I_iz1CIfplIJhhU",tabHeader:"KGWk5HxYVcAyxnWxkEgB",tabList:"mOet8rindgiEavbabC0E",tabButton:"foGSFDjUlHsAI2TZBR5g"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/dist/esm/core/aside/Aside.module.css":(module,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'@layer comp{.tSDfaIzLtXaaEUpncwId{--aside-bg:color-mix(in lab,var(--fabric-bg) 95%,var(--tint));--aside-border:color-mix(in lab,var(--fabric-bg) 75%,var(--tint));background-color:var(--aside-bg);}.tSDfaIzLtXaaEUpncwId[data-align=start]{border-inline-end:1px solid var(--aside-border);grid-area:side-s;grid-template:"head resizer" auto "loader resizer" auto "content resizer" 1fr/1fr auto;}.tSDfaIzLtXaaEUpncwId[data-align=start] .cLZCPHvnpYs84tsmv4ta{grid-template-areas:"icon title actions collapse";grid-template-columns:auto 1fr auto auto}.tSDfaIzLtXaaEUpncwId[data-align=end]{border-inline-start:1px solid var(--aside-border);grid-area:side-e;grid-template:"resizer head" auto "resizer loader" auto "resizer content" 1fr/auto 1fr;}.tSDfaIzLtXaaEUpncwId[data-align=end] .cLZCPHvnpYs84tsmv4ta{grid-template-areas:"collapse icon title actions";grid-template-columns:auto auto 1fr auto}.tSDfaIzLtXaaEUpncwId[data-align=end] .jl1qTICpEP68nN4bkxDP{transform:scaleX(-1)}.tSDfaIzLtXaaEUpncwId .M0OJsuSqPvlZBmpDxgG2{grid-area:content;grid-template:"head" auto "content" 1fr "foot" auto/1fr;}.tSDfaIzLtXaaEUpncwId .M0OJsuSqPvlZBmpDxgG2>[data-ref=content]{background-color:transparent}.tSDfaIzLtXaaEUpncwId .cLZCPHvnpYs84tsmv4ta{color:color-mix(in lab, color(from var(--primary) srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));font-weight:500;}.tSDfaIzLtXaaEUpncwId .cLZCPHvnpYs84tsmv4ta:not(:empty){border-bottom:1px solid var(--aside-border)}.tSDfaIzLtXaaEUpncwId .q5UYiPbju0wWVtAbg_Bo{grid-area:title}.tSDfaIzLtXaaEUpncwId .mBs6aS7Y3MCT7R6plYqz{grid-area:icon}.tSDfaIzLtXaaEUpncwId .dCmYmQ3tTL2SyxmBv7rQ{grid-area:actions}.tSDfaIzLtXaaEUpncwId .jl1qTICpEP68nN4bkxDP{grid-area:collapse;}.tSDfaIzLtXaaEUpncwId .jl1qTICpEP68nN4bkxDP:hover{background-color:color-mix(in lab,var(--fabric-text) 10%,#0000)}.tSDfaIzLtXaaEUpncwId .NTk7IdrEEytgFfIUrKKp{background-color:var(--aside-bg);grid-area:content;z-index:4}.tSDfaIzLtXaaEUpncwId ._ylbrMfsGo6wDNkbiJFW{cursor:col-resize;grid-area:resizer;position:relative;width:.25rem;}.tSDfaIzLtXaaEUpncwId ._ylbrMfsGo6wDNkbiJFW:before{border:1px solid color-mix(in lab, color(from var(--tint) srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));border-width:0 1.5px;height:32px}.tSDfaIzLtXaaEUpncwId ._ylbrMfsGo6wDNkbiJFW:active:before,.tSDfaIzLtXaaEUpncwId ._ylbrMfsGo6wDNkbiJFW:hover:before{background-color:color-mix(in lab, color(from var(--primary) srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));border-color:color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 99%, color(from var(--tint) srgb r g b / 1));border-width:0 1.25px;height:100%}}@layer util{.M0OJsuSqPvlZBmpDxgG2,.cLZCPHvnpYs84tsmv4ta{height:unset;margin:unset;width:unset}.M0OJsuSqPvlZBmpDxgG2>[data-ref=content]{background-color:transparent}.tSDfaIzLtXaaEUpncwId[data-collapsed=true]{overflow:visible;position:relative;width:2rem;}.tSDfaIzLtXaaEUpncwId[data-collapsed=true] .M0OJsuSqPvlZBmpDxgG2{background-color:var(--aside-bg);inset:0;position:absolute;transition:transform .15s cubic-bezier(.4,0,.2,1);z-index:-1}.tSDfaIzLtXaaEUpncwId[data-collapsed=true] .cLZCPHvnpYs84tsmv4ta{position:absolute;width:2rem;z-index:5}.tSDfaIzLtXaaEUpncwId[data-collapsed=true] .q5UYiPbju0wWVtAbg_Bo{font-size:1rem;grid-area:unset;position:absolute;top:1rem}.tSDfaIzLtXaaEUpncwId[data-collapsed=true] .mBs6aS7Y3MCT7R6plYqz{margin-inline:2px}.tSDfaIzLtXaaEUpncwId[data-collapsed=true] .jl1qTICpEP68nN4bkxDP+.mBs6aS7Y3MCT7R6plYqz,.tSDfaIzLtXaaEUpncwId[data-collapsed=true] ._ylbrMfsGo6wDNkbiJFW{display:none}[dir=ltr] .tSDfaIzLtXaaEUpncwId[data-align=start][data-collapsed=true] .M0OJsuSqPvlZBmpDxgG2,[dir=rtl] .tSDfaIzLtXaaEUpncwId[data-align=end][data-collapsed=true] .M0OJsuSqPvlZBmpDxgG2{grid-area:unset;right:unset;transform:translateX(-100%)}[dir=ltr] .tSDfaIzLtXaaEUpncwId[data-align=start][data-collapsed=true] .q5UYiPbju0wWVtAbg_Bo,[dir=rtl] .tSDfaIzLtXaaEUpncwId[data-align=end][data-collapsed=true] .q5UYiPbju0wWVtAbg_Bo{right:calc(2rem + 2px);transform:rotate(-90deg) translateY(2rem);transform-origin:100% 100%}[dir=ltr] .tSDfaIzLtXaaEUpncwId[data-align=start][data-collapsed=true] .jl1qTICpEP68nN4bkxDP,[dir=rtl] .tSDfaIzLtXaaEUpncwId[data-align=end][data-collapsed=true] .jl1qTICpEP68nN4bkxDP{transform:scaleX(-1)}[dir=ltr] .tSDfaIzLtXaaEUpncwId[data-align=start][data-collapsed=true][data-flyout=true] .M0OJsuSqPvlZBmpDxgG2,[dir=rtl] .tSDfaIzLtXaaEUpncwId[data-align=end][data-collapsed=true][data-flyout=true] .M0OJsuSqPvlZBmpDxgG2{box-shadow:0 0 1rem 0 var(--fabric-shadow);transform:translateX(2rem);z-index:3}[dir=ltr] .tSDfaIzLtXaaEUpncwId[data-align=end][data-collapsed=true] .M0OJsuSqPvlZBmpDxgG2,[dir=rtl] .tSDfaIzLtXaaEUpncwId[data-align=start][data-collapsed=true] .M0OJsuSqPvlZBmpDxgG2{grid-area:unset;left:unset;transform:translateX(100%)}[dir=ltr] .tSDfaIzLtXaaEUpncwId[data-align=end][data-collapsed=true] .q5UYiPbju0wWVtAbg_Bo,[dir=rtl] .tSDfaIzLtXaaEUpncwId[data-align=start][data-collapsed=true] .q5UYiPbju0wWVtAbg_Bo{left:calc(2rem + 2px);transform:rotate(90deg) translateY(2rem);transform-origin:0 100%}[dir=ltr] .tSDfaIzLtXaaEUpncwId[data-align=end][data-collapsed=true] .jl1qTICpEP68nN4bkxDP,[dir=rtl] .tSDfaIzLtXaaEUpncwId[data-align=start][data-collapsed=true] .jl1qTICpEP68nN4bkxDP{transform:scaleX(1)}[dir=ltr] .tSDfaIzLtXaaEUpncwId[data-align=end][data-collapsed=true][data-flyout=true] .M0OJsuSqPvlZBmpDxgG2,[dir=rtl] .tSDfaIzLtXaaEUpncwId[data-align=start][data-collapsed=true][data-flyout=true] .M0OJsuSqPvlZBmpDxgG2{box-shadow:0 0 1rem 0 var(--fabric-shadow);transform:translateX(-2rem);z-index:3}}',"",{version:3,sources:["webpack://./packages/core/dist/esm/core/aside/Aside.module.css"],names:[],mappings:"AAAA,YAAY,sBAAO,6DAA6D,CAAC,iEAAiE,CAAC,gCAAgC,CAA46C,CAA36C,wCAAoB,+CAA+C,CAAC,gBAAgB,CAAC,sFAAsF,CAA2G,CAA1G,8DAAe,iDAAiD,CAAC,wCAAwC,CAAE,sCAAkB,iDAAiD,CAAC,gBAAgB,CAAC,sFAAsF,CAAiJ,CAAhJ,4DAAe,iDAAiD,CAAC,wCAAwC,CAAC,4DAAiB,oBAAoB,CAAE,4CAAa,iBAAiB,CAAC,uDAAuD,CAAmD,CAAlD,+DAAqB,4BAA4B,CAAE,4CAAe,sHAA+B,CAAC,eAAe,CAA2D,CAA1D,wDAAc,2CAA2C,CAAE,4CAAc,eAAe,CAAC,4CAAa,cAAc,CAAC,4CAAc,iBAAiB,CAAC,4CAAiB,kBAAkB,CAAyE,CAAxE,kDAAQ,+DAA+D,CAAE,4CAAoB,gCAAgC,CAAC,iBAAiB,CAAC,SAAS,CAAC,4CAAgB,iBAAiB,CAAC,iBAAiB,CAAC,iBAAiB,CAAC,YAAY,CAAwO,CAAvO,mDAAS,8HAAuC,CAAC,oBAAoB,CAAC,WAAW,CAAC,mHAA+B,iIAA0C,CAAC,wHAAwC,CAAC,qBAAqB,CAAC,WAAW,CAAG,CAAC,YAAY,4CAAwB,YAAY,CAAC,YAAY,CAAC,WAAW,CAAY,yCAAqB,4BAA4B,CAAE,2CAA4B,gBAAgB,CAAC,iBAAiB,CAAC,UAAU,CAA0V,CAAzV,iEAAa,gCAAgC,CAAC,OAAO,CAAC,iBAAiB,CAAC,iDAAiD,CAAC,UAAU,CAAC,iEAAe,iBAAiB,CAAC,UAAU,CAAC,SAAS,CAAC,iEAAc,cAAc,CAAC,eAAe,CAAC,iBAAiB,CAAC,QAAQ,CAAC,iEAAW,iBAAiB,CAAC,wJAA4C,YAAY,CAAgH,wLAAa,eAAe,CAAC,WAAW,CAAC,2BAA2B,CAAC,wLAAc,sBAAsB,CAAC,yCAAyC,CAAC,0BAA0B,CAAC,wLAAiB,oBAAoB,CAAC,4NAA+B,0CAA0C,CAAC,0BAA0B,CAAC,SAAS,CAAgH,wLAAa,eAAe,CAAC,UAAU,CAAC,0BAA0B,CAAC,wLAAc,qBAAqB,CAAC,wCAAwC,CAAC,uBAAuB,CAAC,wLAAiB,mBAAmB,CAAC,4NAA+B,0CAA0C,CAAC,2BAA2B,CAAC,SAAS,CAAE",sourcesContent:['@layer comp{.aside{--aside-bg:color-mix(in lab,var(--fabric-bg) 95%,var(--tint));--aside-border:color-mix(in lab,var(--fabric-bg) 75%,var(--tint));background-color:var(--aside-bg);&[data-align=start]{border-inline-end:1px solid var(--aside-border);grid-area:side-s;grid-template:"head resizer" auto "loader resizer" auto "content resizer" 1fr/1fr auto;& .asideHeader{grid-template-areas:"icon title actions collapse";grid-template-columns:auto 1fr auto auto}}&[data-align=end]{border-inline-start:1px solid var(--aside-border);grid-area:side-e;grid-template:"resizer head" auto "resizer loader" auto "resizer content" 1fr/auto 1fr;& .asideHeader{grid-template-areas:"collapse icon title actions";grid-template-columns:auto auto 1fr auto}& .asideCollapse{transform:scaleX(-1)}}& .asideBody{grid-area:content;grid-template:"head" auto "content" 1fr "foot" auto/1fr;&>[data-ref=content]{background-color:transparent}}& .asideHeader{color:theme(colors.primary.600);font-weight:500;&:not(:empty){border-bottom:1px solid var(--aside-border)}}& .asideTitle{grid-area:title}& .asideIcon{grid-area:icon}.asideActions{grid-area:actions}& .asideCollapse{grid-area:collapse;&:hover{background-color:color-mix(in lab,var(--fabric-text) 10%,#0000)}}& .asidePlaceholder{background-color:var(--aside-bg);grid-area:content;z-index:4}& .asideResizer{cursor:col-resize;grid-area:resizer;position:relative;width:.25rem;&:before{border:1px solid theme(colors.tint.700);border-width:0 1.5px;height:32px}&:active:before,&:hover:before{background-color:theme(colors.primary.600);border-color:theme(backgroundColor.base);border-width:0 1.25px;height:100%}}}}@layer util{.asideBody,.asideHeader{height:unset;margin:unset;width:unset}.asideBody{&>[data-ref=content]{background-color:transparent}}.aside[data-collapsed=true]{overflow:visible;position:relative;width:2rem;& .asideBody{background-color:var(--aside-bg);inset:0;position:absolute;transition:transform .15s cubic-bezier(.4,0,.2,1);z-index:-1}& .asideHeader{position:absolute;width:2rem;z-index:5}& .asideTitle{font-size:1rem;grid-area:unset;position:absolute;top:1rem}.asideIcon{margin-inline:2px}& .asideCollapse+.asideIcon,& .asideResizer{display:none}}[dir=ltr] .aside[data-align=start][data-collapsed=true],[dir=rtl] .aside[data-align=end][data-collapsed=true]{& .asideBody{grid-area:unset;right:unset;transform:translateX(-100%)}& .asideTitle{right:calc(2rem + 2px);transform:rotate(-90deg) translateY(2rem);transform-origin:100% 100%}& .asideCollapse{transform:scaleX(-1)}&[data-flyout=true] .asideBody{box-shadow:0 0 1rem 0 var(--fabric-shadow);transform:translateX(2rem);z-index:3}}[dir=ltr] .aside[data-align=end][data-collapsed=true],[dir=rtl] .aside[data-align=start][data-collapsed=true]{& .asideBody{grid-area:unset;left:unset;transform:translateX(100%)}& .asideTitle{left:calc(2rem + 2px);transform:rotate(90deg) translateY(2rem);transform-origin:0 100%}& .asideCollapse{transform:scaleX(1)}&[data-flyout=true] .asideBody{box-shadow:0 0 1rem 0 var(--fabric-shadow);transform:translateX(-2rem);z-index:3}}}'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={aside:"tSDfaIzLtXaaEUpncwId",asideHeader:"cLZCPHvnpYs84tsmv4ta",asideCollapse:"jl1qTICpEP68nN4bkxDP",asideBody:"M0OJsuSqPvlZBmpDxgG2",asideTitle:"q5UYiPbju0wWVtAbg_Bo",asideIcon:"mBs6aS7Y3MCT7R6plYqz",asideActions:"dCmYmQ3tTL2SyxmBv7rQ",asidePlaceholder:"NTk7IdrEEytgFfIUrKKp",asideResizer:"_ylbrMfsGo6wDNkbiJFW"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/dist/esm/core/boundary/ErrorBoundary.module.css":(module,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'@layer comp{.Pzc1Kg30AUxwEN4XfIzO{align-self:flex-start;background-color:color(from #f24c3d srgb r g b / 1);background-image:repeating-linear-gradient(135deg,hsla(0,0%,100%,.5) 0 4px,hsla(0,0%,100%,.2) 4px 8px);grid-area:inherit;margin:1rem;max-height:calc(100% - 2rem);}.Pzc1Kg30AUxwEN4XfIzO .rslGJQRoHl6Xvndl6S1I{background-color:var(--fabric-bg);grid-template:"icon message" auto "detail detail" auto/auto 1fr}.Pzc1Kg30AUxwEN4XfIzO .U0qfMPJ5Dm2vPZa_PM1Q{grid-area:icon}.Pzc1Kg30AUxwEN4XfIzO .BWZcOXXlxH6ZDxMAvdaU{grid-area:message}.Pzc1Kg30AUxwEN4XfIzO .Ga0FrpCZCiIe9dkmKgAi{grid-area:detail;grid-template-rows:auto 1fr}}',"",{version:3,sources:["webpack://./packages/core/dist/esm/core/boundary/ErrorBoundary.module.css"],names:[],mappings:"AAAA,YAAY,sBAAe,qBAAqB,CAAC,mDAAyC,CAAC,sGAAsG,CAAC,iBAAiB,CAAC,WAAW,CAAC,4BAA4B,CAAyP,CAAxP,4CAAmB,iCAAiC,CAAC,+DAA+D,CAAC,4CAAgB,cAAc,CAAC,4CAAmB,iBAAiB,CAAC,4CAAkB,gBAAgB,CAAC,2BAA2B,CAAE",sourcesContent:['@layer comp{.errorBoundary{align-self:flex-start;background-color:theme(colors.danger.500);background-image:repeating-linear-gradient(135deg,hsla(0,0%,100%,.5) 0 4px,hsla(0,0%,100%,.2) 4px 8px);grid-area:inherit;margin:1rem;max-height:calc(100% - 2rem);& .boundaryContent{background-color:var(--fabric-bg);grid-template:"icon message" auto "detail detail" auto/auto 1fr}& .boundaryIcon{grid-area:icon}& .boundaryMessage{grid-area:message}& .boundaryDetail{grid-area:detail;grid-template-rows:auto 1fr}}}'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={errorBoundary:"Pzc1Kg30AUxwEN4XfIzO",boundaryContent:"rslGJQRoHl6Xvndl6S1I",boundaryIcon:"U0qfMPJ5Dm2vPZa_PM1Q",boundaryMessage:"BWZcOXXlxH6ZDxMAvdaU",boundaryDetail:"Ga0FrpCZCiIe9dkmKgAi"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/dist/esm/core/content/Content.module.css":(module,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,"@layer comp{._I_rOdJqclkrKYTuRhqT{--fabric-content:color-mix(in lab,var(--fabric-bg) 97%,var(--tint));background-color:var(--fabric-content);overflow:auto;padding:1rem}}@layer util{._I_rOdJqclkrKYTuRhqT{height:unset;margin:unset;width:unset}}","",{version:3,sources:["webpack://./packages/core/dist/esm/core/content/Content.module.css"],names:[],mappings:"AAAA,YAAY,sBAAS,mEAAmE,CAAC,sCAAsC,CAAC,aAAa,CAAC,YAAY,CAAC,CAAC,YAAY,sBAAS,YAAY,CAAC,YAAY,CAAC,WAAW,CAAC",sourcesContent:["@layer comp{.content{--fabric-content:color-mix(in lab,var(--fabric-bg) 97%,var(--tint));background-color:var(--fabric-content);overflow:auto;padding:1rem}}@layer util{.content{height:unset;margin:unset;width:unset}}"],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={content:"_I_rOdJqclkrKYTuRhqT"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/dist/esm/core/headfoot/HeadFoot.module.css":(module,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,"@layer comp{.nTd3WE1t4kWp4Yuy4dxg{gap:2px;}.nTd3WE1t4kWp4Yuy4dxg .GYNk0c7QfHPqXRPVZpzA+.GYNk0c7QfHPqXRPVZpzA{margin-inline-start:.25rem}}@layer util{.nTd3WE1t4kWp4Yuy4dxg{height:unset;margin:unset;width:unset}}","",{version:3,sources:["webpack://./packages/core/dist/esm/core/headfoot/HeadFoot.module.css"],names:[],mappings:"AAAA,YAAY,sBAAU,OAAO,CAA0D,CAAzD,kEAA8B,0BAA0B,CAAE,CAAC,YAAY,sBAAU,YAAY,CAAC,YAAY,CAAC,WAAW,CAAC",sourcesContent:["@layer comp{.headfoot{gap:2px;.buttonWrapper+.buttonWrapper{margin-inline-start:.25rem}}}@layer util{.headfoot{height:unset;margin:unset;width:unset}}"],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={headfoot:"nTd3WE1t4kWp4Yuy4dxg",buttonWrapper:"GYNk0c7QfHPqXRPVZpzA"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/dist/esm/core/page/Page.module.css":(module,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'@layer comp{.y1VNZi_Q9zOJ3d89E1Pf{--fabric-page:color-mix(in lab,var(--fabric-bg) 94%,var(--tint));--fabric-page-title:color-mix(in lab,var(--fabric-bg) 90%,var(--tint));background-color:var(--fabric-page);grid-template:"title title title" auto "head head head" auto ". loader ." auto "side-s content side-e" 1fr "foot foot foot" auto/auto 1fr auto;}.y1VNZi_Q9zOJ3d89E1Pf .LYxyBVHwe7_EnXPTrWIh{background-color:var(--fabric-page-title);color:color-mix(in lab, color(from var(--primary) srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));grid-area:title}}@layer util{.LYxyBVHwe7_EnXPTrWIh{height:unset;margin:unset;width:unset}}',"",{version:3,sources:["webpack://./packages/core/dist/esm/core/page/Page.module.css"],names:[],mappings:"AAAA,YAAY,sBAAM,gEAAgE,CAAC,sEAAsE,CAAC,mCAAmC,CAAC,8IAA8I,CAAsG,CAArG,4CAAW,yCAAyC,CAAC,sHAA+B,CAAC,eAAe,CAAE,CAAC,YAAY,sBAAW,YAAY,CAAC,YAAY,CAAC,WAAW,CAAC",sourcesContent:['@layer comp{.page{--fabric-page:color-mix(in lab,var(--fabric-bg) 94%,var(--tint));--fabric-page-title:color-mix(in lab,var(--fabric-bg) 90%,var(--tint));background-color:var(--fabric-page);grid-template:"title title title" auto "head head head" auto ". loader ." auto "side-s content side-e" 1fr "foot foot foot" auto/auto 1fr auto;.pageTitle{background-color:var(--fabric-page-title);color:theme(colors.primary.600);grid-area:title}}}@layer util{.pageTitle{height:unset;margin:unset;width:unset}}'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={page:"y1VNZi_Q9zOJ3d89E1Pf",pageTitle:"LYxyBVHwe7_EnXPTrWIh"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/dist/esm/core/responsive/Responsive.module.css":(module,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'@layer comp{.iMfpvp4fxS6851kRyonz{margin:calc(var(--gutter)*-.5);}.iMfpvp4fxS6851kRyonz+.iMfpvp4fxS6851kRyonz{margin-top:calc(var(--gutter)*.5)}.uxTkNV7V7AHd6RxXawd_{flex:0 0 auto;margin:calc(var(--gutter)*.5);max-width:calc(100% - var(--gutter, 0px));}.uxTkNV7V7AHd6RxXawd_.v8El836Y9clOqAP9DnaY>*{min-height:100%;min-width:100%}.nn8fLrKGk4cukSf_snyX[data-gutter="0"],.iMfpvp4fxS6851kRyonz[data-gutter="0"]{--gutter:0px}.nn8fLrKGk4cukSf_snyX[data-gutter=xs],.iMfpvp4fxS6851kRyonz[data-gutter=xs]{--gutter:2px}.nn8fLrKGk4cukSf_snyX[data-gutter=sm],.iMfpvp4fxS6851kRyonz[data-gutter=sm]{--gutter:0.25rem}.nn8fLrKGk4cukSf_snyX[data-gutter=md],.iMfpvp4fxS6851kRyonz[data-gutter=md]{--gutter:0.75rem}.nn8fLrKGk4cukSf_snyX[data-gutter=lg],.iMfpvp4fxS6851kRyonz[data-gutter=lg]{--gutter:1rem}.nn8fLrKGk4cukSf_snyX[data-gutter=xl],.iMfpvp4fxS6851kRyonz[data-gutter=xl]{--gutter:1.5rem}}',"",{version:3,sources:["webpack://./packages/core/dist/esm/core/responsive/Responsive.module.css"],names:[],mappings:"AAAA,YAAY,sBAAK,8BAA8B,CAA0C,CAAzC,4CAAO,iCAAiC,CAAE,sBAAK,aAAa,CAAC,6BAA6B,CAAC,yCAAyC,CAAmD,CAAlD,6CAAmB,eAAe,CAAC,cAAc,CAAoB,8EAAkB,YAAY,CAAmB,4EAAkB,YAAY,CAAmB,4EAAkB,gBAAgB,CAAmB,4EAAkB,gBAAgB,CAAmB,4EAAkB,aAAa,CAAmB,4EAAkB,eAAe,CAAE",sourcesContent:['@layer comp{.row{margin:calc(var(--gutter)*-.5);&+.row{margin-top:calc(var(--gutter)*.5)}}.col{flex:0 0 auto;margin:calc(var(--gutter)*.5);max-width:calc(100% - var(--gutter, 0px));&.stretchContent>*{min-height:100%;min-width:100%}}[data-gutter="0"]{&.container,&.row{--gutter:0px}}[data-gutter=xs]{&.container,&.row{--gutter:2px}}[data-gutter=sm]{&.container,&.row{--gutter:0.25rem}}[data-gutter=md]{&.container,&.row{--gutter:0.75rem}}[data-gutter=lg]{&.container,&.row{--gutter:1rem}}[data-gutter=xl]{&.container,&.row{--gutter:1.5rem}}}'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={row:"iMfpvp4fxS6851kRyonz",col:"uxTkNV7V7AHd6RxXawd_",stretchContent:"v8El836Y9clOqAP9DnaY",container:"nn8fLrKGk4cukSf_snyX"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/dist/esm/core/section/Section.module.css":(module,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'@layer comp{.bF1rJ8TLKN9tvj6I637Q{grid-template:"head head head" auto "side-s content side-e" 1fr "foot foot foot" auto/auto 1fr auto}}',"",{version:3,sources:["webpack://./packages/core/dist/esm/core/section/Section.module.css"],names:[],mappings:"AAAA,YAAY,sBAAS,mGAAmG,CAAC",sourcesContent:['@layer comp{.section{grid-template:"head head head" auto "side-s content side-e" 1fr "foot foot foot" auto/auto 1fr auto}}'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={section:"bF1rJ8TLKN9tvj6I637Q"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/dist/esm/core/theme/Theme.module.css":(module,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,"@layer comp{.WjJcP26puBSgJ4Yx_WMp>*{background-color:color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 99%, color(from var(--tint) srgb r g b / 1))}}","",{version:3,sources:["webpack://./packages/core/dist/esm/core/theme/Theme.module.css"],names:[],mappings:"AAAA,YAA2B,wBAAI,4HAA4C,CAAE",sourcesContent:["@layer comp{.themeProvider{&>*{background-color:theme(backgroundColor.base)}}}"],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={themeProvider:"WjJcP26puBSgJ4Yx_WMp"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/dist/esm/core/viewport/Viewport.module.css":(module,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'@layer comp{.JpFUSNmRtxVwK625JX3_{--fabric-viewport:color-mix(in lab,var(--fabric-bg) 76%,var(--tint));background-color:var(--fabric-viewport);color:var(--fabric-text);grid-template:"head head head" auto "crumbbar crumbbar crumbbar" auto "side-s content side-e" 1fr "foot foot foot" auto/auto 1fr auto}}',"",{version:3,sources:["webpack://./packages/core/dist/esm/core/viewport/Viewport.module.css"],names:[],mappings:"AAAA,YAAY,sBAAU,oEAAoE,CAAC,uCAAuC,CAAC,wBAAwB,CAAC,qIAAqI,CAAC",sourcesContent:['@layer comp{.viewport{--fabric-viewport:color-mix(in lab,var(--fabric-bg) 76%,var(--tint));background-color:var(--fabric-viewport);color:var(--fabric-text);grid-template:"head head head" auto "crumbbar crumbbar crumbbar" auto "side-s content side-e" 1fr "foot foot foot" auto/auto 1fr auto}}'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={viewport:"JpFUSNmRtxVwK625JX3_"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/dist/esm/overlays/alert/Alert.module.css":(module,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'@layer comp{.FVUiFRFJ07FUHHTNXp1t{gap:.5rem 1rem;grid-template:"icon title" auto "icon message" auto "input input" auto "actions actions" auto/auto 1fr;margin-top:-100%;opacity:0;transition:margin .4s,opacity .3s .2s;z-index:var(--z-overlay);}.FVUiFRFJ07FUHHTNXp1t[data-show=true]{margin-top:0;opacity:1}}',"",{version:3,sources:["webpack://./packages/core/dist/esm/overlays/alert/Alert.module.css"],names:[],mappings:"AAAA,YAAY,sBAAO,cAAc,CAAC,sGAAsG,CAAC,gBAAgB,CAAC,SAAS,CAAC,qCAAqC,CAAC,wBAAwB,CAA0C,CAAzC,sCAAkB,YAAY,CAAC,SAAS,CAAE",sourcesContent:['@layer comp{.alert{gap:.5rem 1rem;grid-template:"icon title" auto "icon message" auto "input input" auto "actions actions" auto/auto 1fr;margin-top:-100%;opacity:0;transition:margin .4s,opacity .3s .2s;z-index:var(--z-overlay);&[data-show=true]{margin-top:0;opacity:1}}}'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={alert:"FVUiFRFJ07FUHHTNXp1t"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/dist/esm/overlays/flyout/Flyout.module.css":(module,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'@layer comp{.m4FumlKC0CdnIp9A7E80{max-width:70vw;transition:margin .5s;width:32rem;z-index:var(--z-overlay);}.m4FumlKC0CdnIp9A7E80 .dEaY3nQbOxEEUfj_fbeL{background-color:color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 99%, color(from var(--tint) srgb r g b / 1));border-bottom:.5px solid color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 72%, color(from var(--tint) srgb r g b / 1))}.m4FumlKC0CdnIp9A7E80 .NBRjJ4CrAdWGJwuIauzK{grid-template:"head head head" auto ". loader ." auto "side-s content side-e" 1fr "foot foot foot" auto/auto 1fr auto}.m4FumlKC0CdnIp9A7E80[data-align=start]{margin-inline-start:-100%}.m4FumlKC0CdnIp9A7E80[data-align=end]{margin-inline-end:-100%}.m4FumlKC0CdnIp9A7E80[data-show=true]{margin:0}}',"",{version:3,sources:["webpack://./packages/core/dist/esm/overlays/flyout/Flyout.module.css"],names:[],mappings:"AAAA,YAAY,sBAAQ,cAAc,CAAC,qBAAqB,CAAC,WAAW,CAAC,wBAAwB,CAAwW,CAAvW,4CAAgB,4HAA4C,CAAC,oIAAkD,CAAC,4CAAc,qHAAqH,CAAC,wCAAoB,yBAAyB,CAAC,sCAAkB,uBAAuB,CAAC,sCAAkB,QAAQ,CAAE",sourcesContent:['@layer comp{.flyout{max-width:70vw;transition:margin .5s;width:32rem;z-index:var(--z-overlay);& .flyoutHeader{background-color:theme(backgroundColor.base);border-bottom:.5px solid theme(borderColor.dimmed)}& .flyoutBody{grid-template:"head head head" auto ". loader ." auto "side-s content side-e" 1fr "foot foot foot" auto/auto 1fr auto}&[data-align=start]{margin-inline-start:-100%}&[data-align=end]{margin-inline-end:-100%}&[data-show=true]{margin:0}}}'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={flyout:"m4FumlKC0CdnIp9A7E80",flyoutHeader:"dEaY3nQbOxEEUfj_fbeL",flyoutBody:"NBRjJ4CrAdWGJwuIauzK"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/dist/esm/overlays/message/Message.module.css":(module,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,"@layer comp{.skCmx8kh7BSzHJY7x7bH{margin-top:-100%;opacity:0;transition:margin .4s,opacity .3s .2s;}.skCmx8kh7BSzHJY7x7bH[data-show=true]{margin-top:0;opacity:1}}","",{version:3,sources:["webpack://./packages/core/dist/esm/overlays/message/Message.module.css"],names:[],mappings:"AAAA,YAAY,sBAAS,gBAAgB,CAAC,SAAS,CAAC,qCAAqC,CAA0C,CAAzC,sCAAkB,YAAY,CAAC,SAAS,CAAE",sourcesContent:["@layer comp{.message{margin-top:-100%;opacity:0;transition:margin .4s,opacity .3s .2s;&[data-show=true]{margin-top:0;opacity:1}}}"],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={message:"skCmx8kh7BSzHJY7x7bH"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/dist/esm/overlays/modal/Modal.module.css":(module,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'@layer comp{.R2D5mB5REvmTw9T3EzYi{margin-top:-100%;max-height:90vh;max-width:90vw;opacity:0;transition:margin .4s,opacity .3s .2s;width:32rem;z-index:var(--z-overlay);}.R2D5mB5REvmTw9T3EzYi[data-show=true]{margin-top:0;opacity:1}.R2D5mB5REvmTw9T3EzYi ._yps8ZkAjJXa0f7Zcjvw{background-color:color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 99%, color(from var(--tint) srgb r g b / 1));border-bottom:.5px solid color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 72%, color(from var(--tint) srgb r g b / 1))}.R2D5mB5REvmTw9T3EzYi .ubCwA1uECVHmmBdL_mFW{grid-template:"head head head" auto ". loader ." auto "side-s content side-e" 1fr "foot foot foot" auto/auto 1fr auto}}',"",{version:3,sources:["webpack://./packages/core/dist/esm/overlays/modal/Modal.module.css"],names:[],mappings:"AAAA,YAAY,sBAAO,gBAAgB,CAAC,eAAe,CAAC,cAAc,CAAC,SAAS,CAAC,qCAAqC,CAAC,WAAW,CAAC,wBAAwB,CAA4R,CAA3R,sCAAkB,YAAY,CAAC,SAAS,CAAC,4CAAe,4HAA4C,CAAC,oIAAkD,CAAC,4CAAa,qHAAqH,CAAE",sourcesContent:['@layer comp{.modal{margin-top:-100%;max-height:90vh;max-width:90vw;opacity:0;transition:margin .4s,opacity .3s .2s;width:32rem;z-index:var(--z-overlay);&[data-show=true]{margin-top:0;opacity:1}& .modalHeader{background-color:theme(backgroundColor.base);border-bottom:.5px solid theme(borderColor.dimmed)}& .modalBody{grid-template:"head head head" auto ". loader ." auto "side-s content side-e" 1fr "foot foot foot" auto/auto 1fr auto}}}'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={modal:"R2D5mB5REvmTw9T3EzYi",modalHeader:"_yps8ZkAjJXa0f7Zcjvw",modalBody:"ubCwA1uECVHmmBdL_mFW"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/dist/esm/overlays/toast/Toast.module.css":(module,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,"@layer comp{.qHu0dqBQBHwkwesl_ltd{margin-bottom:-100%;opacity:0;transition:margin .4s,opacity .3s .2s;}.qHu0dqBQBHwkwesl_ltd[data-show=true]{margin-bottom:0;opacity:1}}","",{version:3,sources:["webpack://./packages/core/dist/esm/overlays/toast/Toast.module.css"],names:[],mappings:"AAAA,YAAY,sBAAO,mBAAmB,CAAC,SAAS,CAAC,qCAAqC,CAA6C,CAA5C,sCAAkB,eAAe,CAAC,SAAS,CAAE",sourcesContent:["@layer comp{.toast{margin-bottom:-100%;opacity:0;transition:margin .4s,opacity .3s .2s;&[data-show=true]{margin-bottom:0;opacity:1}}}"],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={toast:"qHu0dqBQBHwkwesl_ltd"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/dist/esm/overlays/tooltip/Tooltip.module.css":(module,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,"@layer comp{.hNmvBy6eRFJzxnemOV8Z{color:color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 90%, color(from var(--tint) srgb r g b / 1));z-index:var(--z-tooltip);}.hNmvBy6eRFJzxnemOV8Z[data-color=primary]{color:color-mix(in lab, color(from var(--primary) srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1))}.hNmvBy6eRFJzxnemOV8Z[data-color=accent]{color:color-mix(in lab, color(from var(--accent) srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1))}.hNmvBy6eRFJzxnemOV8Z[data-color=info]{color:color-mix(in lab, color(from #00bfff srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1))}.hNmvBy6eRFJzxnemOV8Z[data-color=danger]{color:color-mix(in lab, color(from #f24c3d srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1))}.hNmvBy6eRFJzxnemOV8Z[data-color=success]{color:color-mix(in lab, color(from #44bc69 srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1))}.hNmvBy6eRFJzxnemOV8Z[data-color=warning]{color:color-mix(in lab, color(from #edaa00 srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1))}}","",{version:3,sources:["webpack://./packages/core/dist/esm/overlays/tooltip/Tooltip.module.css"],names:[],mappings:"AAAA,YAAY,sBAAS,iHAAmC,CAAC,wBAAwB,CAA2T,CAA1T,0CAAsB,oHAA+B,CAAC,yCAAqB,mHAA8B,CAAC,uCAAmB,6GAA4B,CAAC,yCAAqB,6GAA8B,CAAC,0CAAsB,6GAA+B,CAAC,0CAAsB,6GAA+B,CAAE",sourcesContent:["@layer comp{.tooltip{color:theme(backgroundColor.dimmed);z-index:var(--z-tooltip);&[data-color=primary]{color:theme(colors.primary.200)}&[data-color=accent]{color:theme(colors.accent.200)}&[data-color=info]{color:theme(colors.info.200)}&[data-color=danger]{color:theme(colors.danger.200)}&[data-color=success]{color:theme(colors.success.200)}&[data-color=warning]{color:theme(colors.warning.200)}}}"],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={tooltip:"hNmvBy6eRFJzxnemOV8Z"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/dist/esm/typography/Typography.module.css":(module,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,"@layer comp{.udwKUeQtnHNWiPozCFyE{line-height:1.125}.zglgo30P8ias6H_V3vra{margin:-.25rem 0 .25rem;text-align:end;}.zglgo30P8ias6H_V3vra>span{color:color-mix(in lab, color(from var(--accent) srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));cursor:pointer;font-size:.75rem;-webkit-user-select:none;-moz-user-select:none;user-select:none;}.zglgo30P8ias6H_V3vra>span:hover{color:color(from var(--accent) srgb r g b / 1);text-decoration:underline;text-underline-offset:2px}}@layer util{.OaHcrPmD0QvDOYn_Eb3g{-webkit-line-clamp:var(--text-clamp)}.X8CEEin6nT58B9SemCuO{--abbr-color:var(--accent);color:color-mix(in lab,var(--abbr-color) 50%,var(--fabric-text))}.SUzYSbmJAqmA32CD0p2p{--mark-color:var(--primary);background-color:color-mix(in lab,var(--mark-color) 25%,var(--fabric-bg))}}","",{version:3,sources:["webpack://./packages/core/dist/esm/typography/Typography.module.css"],names:[],mappings:"AAAA,YAAY,sBAAO,iBAAiB,CAAC,sBAAU,uBAAuB,CAAC,cAAc,CAAoL,CAAnL,2BAAO,qHAA8B,CAAC,cAAc,CAAC,gBAAgB,CAAC,wBAAgB,CAAhB,qBAAgB,CAAhB,gBAAgB,CAA4F,CAA3F,iCAAQ,8CAA8B,CAAC,yBAAyB,CAAC,yBAAyB,CAAG,CAAC,YAAY,sBAAM,oCAAoC,CAAC,sBAAM,0BAA0B,CAAC,gEAAgE,CAAC,sBAAM,2BAA2B,CAAC,yEAAyE,CAAC",sourcesContent:["@layer comp{.title{line-height:1.125}.moreLink{margin:-.25rem 0 .25rem;text-align:end;&>span{color:theme(colors.accent.700);cursor:pointer;font-size:.75rem;user-select:none;&:hover{color:theme(colors.accent.500);text-decoration:underline;text-underline-offset:2px}}}}@layer util{.text{-webkit-line-clamp:var(--text-clamp)}.abbr{--abbr-color:var(--accent);color:color-mix(in lab,var(--abbr-color) 50%,var(--fabric-text))}.mark{--mark-color:var(--primary);background-color:color-mix(in lab,var(--mark-color) 25%,var(--fabric-bg))}}"],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={title:"udwKUeQtnHNWiPozCFyE",moreLink:"zglgo30P8ias6H_V3vra",text:"OaHcrPmD0QvDOYn_Eb3g",abbr:"X8CEEin6nT58B9SemCuO",mark:"SUzYSbmJAqmA32CD0p2p"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/memoizerific sync recursive":module=>{function webpackEmptyContext(req){var e=new Error("Cannot find module '"+req+"'");throw e.code="MODULE_NOT_FOUND",e}webpackEmptyContext.keys=()=>[],webpackEmptyContext.resolve=webpackEmptyContext,webpackEmptyContext.id="./node_modules/memoizerific sync recursive",module.exports=webpackEmptyContext},"./packages lazy recursive ^\\.\\/.*$ include: (?%21.*node_modules)(?:\\/packages(?:\\/(?%21\\.)(?:(?:(?%21(?:^%7C\\/)\\.).)*?)\\/%7C\\/%7C$)stories(?:\\/(?%21\\.)(?:(?:(?%21(?:^%7C\\/)\\.).)*?)\\/%7C\\/%7C$)(?%21\\.)(?=.)[^/]*?\\.mdx)$":(module,__unused_webpack_exports,__webpack_require__)=>{var map={"./chart/stories/ActivityMap.mdx":["./packages/chart/stories/ActivityMap.mdx",734,1567,2762,4546,9339],"./chart/stories/CountSeries.mdx":["./packages/chart/stories/CountSeries.mdx",734,1567,2762,4546,5542],"./chart/stories/DataSeries.mdx":["./packages/chart/stories/DataSeries.mdx",734,1567,2762,4546,5743],"./chart/stories/GenericChart.mdx":["./packages/chart/stories/GenericChart.mdx",734,2762,4546,8621],"./chart/stories/MapSeries.mdx":["./packages/chart/stories/MapSeries.mdx",734,1567,2762,4546,3161],"./chart/stories/TimeSeries.mdx":["./packages/chart/stories/TimeSeries.mdx",734,1567,2762,4546,9640],"./chart/stories/TimeSlider.mdx":["./packages/chart/stories/TimeSlider.mdx",734,1567,2762,4546,9960],"./chart/stories/WordBubble.mdx":["./packages/chart/stories/WordBubble.mdx",734,1567,2762,4546,4490],"./core/stories/0.core/Core.mdx":["./packages/core/stories/0.core/Core.mdx",1567,5622,9165,8872,2547,5791],"./core/stories/1.typography/Typography.mdx":["./packages/core/stories/1.typography/Typography.mdx",1567,2547,7642],"./core/stories/components/actionLabel/ActionLabel.mdx":["./packages/core/stories/components/actionLabel/ActionLabel.mdx",2547,4769],"./core/stories/components/animations/Animations.mdx":["./packages/core/stories/components/animations/Animations.mdx",1567,2547,6073],"./core/stories/components/avatar/Avatar.mdx":["./packages/core/stories/components/avatar/Avatar.mdx",1567,5622,2547,6225],"./core/stories/components/badge/Badge.mdx":["./packages/core/stories/components/badge/Badge.mdx",2547,3413],"./core/stories/components/breadcrumbs/Breadcrumbs.mdx":["./packages/core/stories/components/breadcrumbs/Breadcrumbs.mdx",2547,29],"./core/stories/components/button/Button.mdx":["./packages/core/stories/components/button/Button.mdx",5622,2547,2019],"./core/stories/components/button/ButtonGroup.mdx":["./packages/core/stories/components/button/ButtonGroup.mdx",2547,7004],"./core/stories/components/button/ConfirmButton.mdx":["./packages/core/stories/components/button/ConfirmButton.mdx",5622,2547,8677],"./core/stories/components/button/ToggleButtonGroup.mdx":["./packages/core/stories/components/button/ToggleButtonGroup.mdx",5622,2547,5352],"./core/stories/components/callout/Callout.mdx":["./packages/core/stories/components/callout/Callout.mdx",1567,2547,1881],"./core/stories/components/card/Card.mdx":["./packages/core/stories/components/card/Card.mdx",1567,5622,2547,5675],"./core/stories/components/chip/Chip.mdx":["./packages/core/stories/components/chip/Chip.mdx",5622,2547,7007],"./core/stories/components/collapable/Collapsable.mdx":["./packages/core/stories/components/collapable/Collapsable.mdx",1567,2547,4900],"./core/stories/components/dropdown/Dropdown.mdx":["./packages/core/stories/components/dropdown/Dropdown.mdx",5622,2547,3401],"./core/stories/components/empty/Empty.mdx":["./packages/core/stories/components/empty/Empty.mdx",1567,2547,6897],"./core/stories/components/icon/Icon.mdx":["./packages/core/stories/components/icon/Icon.mdx",5622,2547,9441],"./core/stories/components/menu/Menu.mdx":["./packages/core/stories/components/menu/Menu.mdx",734,8576,5622,2547,8088,1629],"./core/stories/components/meter/Meter.mdx":["./packages/core/stories/components/meter/Meter.mdx",2547,5129],"./core/stories/components/notifications/Notifications.mdx":["./packages/core/stories/components/notifications/Notifications.mdx",1567,2547,8737],"./core/stories/components/overlays/Overlays.mdx":["./packages/core/stories/components/overlays/Overlays.mdx",1567,2547,8929],"./core/stories/components/panel/Panel.mdx":["./packages/core/stories/components/panel/Panel.mdx",1567,5622,2547,1045],"./core/stories/components/progress/Progress.mdx":["./packages/core/stories/components/progress/Progress.mdx",2547,5825],"./core/stories/components/tabPanel/TabPanel.mdx":["./packages/core/stories/components/tabPanel/TabPanel.mdx",1567,5622,9711,2547,9385],"./core/stories/components/tooltip/Tooltip.mdx":["./packages/core/stories/components/tooltip/Tooltip.mdx",2547,2485],"./data/stories/histogram/Histogram.mdx":["./packages/data/stories/histogram/Histogram.mdx",734,1567,8576,5737,4750,8088,6100,1127,9865],"./data/stories/json/JsonViewer.mdx":["./packages/data/stories/json/JsonViewer.mdx",734,1567,8576,5737,4750,8088,6100,1127,9961],"./data/stories/useFilteredList/FilteredList.mdx":["./packages/data/stories/useFilteredList/FilteredList.mdx",734,8576,5737,4750,8088,6100,1127,526],"./date/stories/panels/DatePanels.mdx":["./packages/date/stories/panels/DatePanels.mdx",734,8576,5737,8088,2487,853],"./date/stories/superdate/Superdate.mdx":["./packages/date/stories/superdate/Superdate.mdx",734,8576,5737,8088,2487,7893],"./form/stories/autoComplete/AutoComplete.mdx":["./packages/form/stories/autoComplete/AutoComplete.mdx",734,8576,5622,1634,5337],"./form/stories/form/Form.mdx":["./packages/form/stories/form/Form.mdx",734,1567,8576,1634,2757],"./form/stories/inputs/Input.mdx":["./packages/form/stories/inputs/Input.mdx",734,8576,5622,6707,1634,2028],"./form/stories/selects/List.mdx":["./packages/form/stories/selects/List.mdx",734,8576,5622,1634,4176],"./form/stories/selects/Select.mdx":["./packages/form/stories/selects/Select.mdx",734,8576,5622,1634,8156],"./form/stories/sliders/Slider.mdx":["./packages/form/stories/sliders/Slider.mdx",734,8576,5622,1634,444]};function webpackAsyncContext(req){if(!__webpack_require__.o(map,req))return Promise.resolve().then((()=>{var e=new Error("Cannot find module '"+req+"'");throw e.code="MODULE_NOT_FOUND",e}));var ids=map[req],id=ids[0];return Promise.all(ids.slice(1).map(__webpack_require__.e)).then((()=>__webpack_require__(id)))}webpackAsyncContext.keys=()=>Object.keys(map),webpackAsyncContext.id="./packages lazy recursive ^\\.\\/.*$ include: (?%21.*node_modules)(?:\\/packages(?:\\/(?%21\\.)(?:(?:(?%21(?:^%7C\\/)\\.).)*?)\\/%7C\\/%7C$)stories(?:\\/(?%21\\.)(?:(?:(?%21(?:^%7C\\/)\\.).)*?)\\/%7C\\/%7C$)(?%21\\.)(?=.)[^/]*?\\.mdx)$",module.exports=webpackAsyncContext},"./packages lazy recursive ^\\.\\/.*$ include: (?%21.*node_modules)(?:\\/packages(?:\\/(?%21\\.)(?:(?:(?%21(?:^%7C\\/)\\.).)*?)\\/%7C\\/%7C$)stories(?:\\/(?%21\\.)(?:(?:(?%21(?:^%7C\\/)\\.).)*?)\\/%7C\\/%7C$)(?%21\\.)(?=.)[^/]*?\\.stories\\.(js%7Cjsx%7Cts%7Ctsx))$":(module,__unused_webpack_exports,__webpack_require__)=>{var map={"./chart/stories/ActivityMap.stories":["./packages/chart/stories/ActivityMap.stories.tsx",734,1567,2762,4546,8221],"./chart/stories/ActivityMap.stories.tsx":["./packages/chart/stories/ActivityMap.stories.tsx",734,1567,2762,4546,8221],"./chart/stories/CountSeries.stories":["./packages/chart/stories/CountSeries.stories.tsx",734,1567,2762,4546,1648],"./chart/stories/CountSeries.stories.tsx":["./packages/chart/stories/CountSeries.stories.tsx",734,1567,2762,4546,1648],"./chart/stories/DataSeries.stories":["./packages/chart/stories/DataSeries.stories.tsx",734,1567,2762,4546,3609],"./chart/stories/DataSeries.stories.tsx":["./packages/chart/stories/DataSeries.stories.tsx",734,1567,2762,4546,3609],"./chart/stories/GenericChart.stories":["./packages/chart/stories/GenericChart.stories.tsx",734,2762,4546,2871],"./chart/stories/GenericChart.stories.tsx":["./packages/chart/stories/GenericChart.stories.tsx",734,2762,4546,2871],"./chart/stories/MapSeries.stories":["./packages/chart/stories/MapSeries.stories.tsx",734,1567,2762,4546,7787],"./chart/stories/MapSeries.stories.tsx":["./packages/chart/stories/MapSeries.stories.tsx",734,1567,2762,4546,7787],"./chart/stories/TimeSeries.stories":["./packages/chart/stories/TimeSeries.stories.tsx",734,1567,2762,4546,8506],"./chart/stories/TimeSeries.stories.tsx":["./packages/chart/stories/TimeSeries.stories.tsx",734,1567,2762,4546,8506],"./chart/stories/TimeSlider.stories":["./packages/chart/stories/TimeSlider.stories.tsx",734,1567,2762,4546,666],"./chart/stories/TimeSlider.stories.tsx":["./packages/chart/stories/TimeSlider.stories.tsx",734,1567,2762,4546,666],"./chart/stories/WordBubble.stories":["./packages/chart/stories/WordBubble.stories.tsx",734,1567,2762,4546,1660],"./chart/stories/WordBubble.stories.tsx":["./packages/chart/stories/WordBubble.stories.tsx",734,1567,2762,4546,1660],"./core/stories/0.core/Aside.stories":["./packages/core/stories/0.core/Aside.stories.tsx",1567,5622,2547,5224],"./core/stories/0.core/Aside.stories.tsx":["./packages/core/stories/0.core/Aside.stories.tsx",1567,5622,2547,5224],"./core/stories/0.core/Content.stories":["./packages/core/stories/0.core/Content.stories.tsx",1567,5622,2547,3363],"./core/stories/0.core/Content.stories.tsx":["./packages/core/stories/0.core/Content.stories.tsx",1567,5622,2547,3363],"./core/stories/0.core/ErrorBoundary.stories":["./packages/core/stories/0.core/ErrorBoundary.stories.tsx",2547,8852],"./core/stories/0.core/ErrorBoundary.stories.tsx":["./packages/core/stories/0.core/ErrorBoundary.stories.tsx",2547,8852],"./core/stories/0.core/Page.stories":["./packages/core/stories/0.core/Page.stories.tsx",2547,6253],"./core/stories/0.core/Page.stories.tsx":["./packages/core/stories/0.core/Page.stories.tsx",2547,6253],"./core/stories/0.core/Responsive.stories":["./packages/core/stories/0.core/Responsive.stories.tsx",2547,9050],"./core/stories/0.core/Responsive.stories.tsx":["./packages/core/stories/0.core/Responsive.stories.tsx",2547,9050],"./core/stories/0.core/Section.stories":["./packages/core/stories/0.core/Section.stories.tsx",1567,2547,2977],"./core/stories/0.core/Section.stories.tsx":["./packages/core/stories/0.core/Section.stories.tsx",1567,2547,2977],"./core/stories/0.core/Theme.stories":["./packages/core/stories/0.core/Theme.stories.tsx",1567,9165,8872,2547,3395],"./core/stories/0.core/Theme.stories.tsx":["./packages/core/stories/0.core/Theme.stories.tsx",1567,9165,8872,2547,3395],"./core/stories/0.core/Viewport.stories":["./packages/core/stories/0.core/Viewport.stories.tsx",2547,5998],"./core/stories/0.core/Viewport.stories.tsx":["./packages/core/stories/0.core/Viewport.stories.tsx",2547,5998],"./core/stories/1.typography/Abbr.stories":["./packages/core/stories/1.typography/Abbr.stories.tsx",1567,2547,3866],"./core/stories/1.typography/Abbr.stories.tsx":["./packages/core/stories/1.typography/Abbr.stories.tsx",1567,2547,3866],"./core/stories/1.typography/Anchor.stories":["./packages/core/stories/1.typography/Anchor.stories.tsx",1567,2547,7268],"./core/stories/1.typography/Anchor.stories.tsx":["./packages/core/stories/1.typography/Anchor.stories.tsx",1567,2547,7268],"./core/stories/1.typography/Copy.stories":["./packages/core/stories/1.typography/Copy.stories.tsx",1567,2547,7844],"./core/stories/1.typography/Copy.stories.tsx":["./packages/core/stories/1.typography/Copy.stories.tsx",1567,2547,7844],"./core/stories/1.typography/Mark.stories":["./packages/core/stories/1.typography/Mark.stories.tsx",1567,2547,648],"./core/stories/1.typography/Mark.stories.tsx":["./packages/core/stories/1.typography/Mark.stories.tsx",1567,2547,648],"./core/stories/1.typography/Text.stories":["./packages/core/stories/1.typography/Text.stories.tsx",1567,2547,9690],"./core/stories/1.typography/Text.stories.tsx":["./packages/core/stories/1.typography/Text.stories.tsx",1567,2547,9690],"./core/stories/1.typography/Title.stories":["./packages/core/stories/1.typography/Title.stories.tsx",2547,679],"./core/stories/1.typography/Title.stories.tsx":["./packages/core/stories/1.typography/Title.stories.tsx",2547,679],"./core/stories/components/actionLabel/ActionLabel.stories":["./packages/core/stories/components/actionLabel/ActionLabel.stories.tsx",2547,2307],"./core/stories/components/actionLabel/ActionLabel.stories.tsx":["./packages/core/stories/components/actionLabel/ActionLabel.stories.tsx",2547,2307],"./core/stories/components/animations/Animations.stories":["./packages/core/stories/components/animations/Animations.stories.tsx",2547,1979],"./core/stories/components/animations/Animations.stories.tsx":["./packages/core/stories/components/animations/Animations.stories.tsx",2547,1979],"./core/stories/components/animations/Bars.stories":["./packages/core/stories/components/animations/Bars.stories.tsx",1567,2547,388],"./core/stories/components/animations/Bars.stories.tsx":["./packages/core/stories/components/animations/Bars.stories.tsx",1567,2547,388],"./core/stories/components/animations/Skeleton.stories":["./packages/core/stories/components/animations/Skeleton.stories.tsx",2547,3307],"./core/stories/components/animations/Skeleton.stories.tsx":["./packages/core/stories/components/animations/Skeleton.stories.tsx",2547,3307],"./core/stories/components/animations/Spinner.stories":["./packages/core/stories/components/animations/Spinner.stories.tsx",1567,2547,8145],"./core/stories/components/animations/Spinner.stories.tsx":["./packages/core/stories/components/animations/Spinner.stories.tsx",1567,2547,8145],"./core/stories/components/avatar/Avatar.stories":["./packages/core/stories/components/avatar/Avatar.stories.tsx",1567,5622,2547,6867],"./core/stories/components/avatar/Avatar.stories.tsx":["./packages/core/stories/components/avatar/Avatar.stories.tsx",1567,5622,2547,6867],"./core/stories/components/avatar/AvatarGroup.stories":["./packages/core/stories/components/avatar/AvatarGroup.stories.tsx",1567,2547,1636],"./core/stories/components/avatar/AvatarGroup.stories.tsx":["./packages/core/stories/components/avatar/AvatarGroup.stories.tsx",1567,2547,1636],"./core/stories/components/badge/Badge.stories":["./packages/core/stories/components/badge/Badge.stories.tsx",2547,4111],"./core/stories/components/badge/Badge.stories.tsx":["./packages/core/stories/components/badge/Badge.stories.tsx",2547,4111],"./core/stories/components/breadcrumbs/Breadcrumbs.stories":["./packages/core/stories/components/breadcrumbs/Breadcrumbs.stories.tsx",2547,8391],"./core/stories/components/breadcrumbs/Breadcrumbs.stories.tsx":["./packages/core/stories/components/breadcrumbs/Breadcrumbs.stories.tsx",2547,8391],"./core/stories/components/button/Button.stories":["./packages/core/stories/components/button/Button.stories.tsx",5622,2547,8821],"./core/stories/components/button/Button.stories.tsx":["./packages/core/stories/components/button/Button.stories.tsx",5622,2547,8821],"./core/stories/components/button/ButtonGroup.stories":["./packages/core/stories/components/button/ButtonGroup.stories.tsx",2547,3846],"./core/stories/components/button/ButtonGroup.stories.tsx":["./packages/core/stories/components/button/ButtonGroup.stories.tsx",2547,3846],"./core/stories/components/button/ConfirmButton.stories":["./packages/core/stories/components/button/ConfirmButton.stories.tsx",5622,2547,271],"./core/stories/components/button/ConfirmButton.stories.tsx":["./packages/core/stories/components/button/ConfirmButton.stories.tsx",5622,2547,271],"./core/stories/components/button/Navigator.stories":["./packages/core/stories/components/button/Navigator.stories.tsx",2547,1148],"./core/stories/components/button/Navigator.stories.tsx":["./packages/core/stories/components/button/Navigator.stories.tsx",2547,1148],"./core/stories/components/button/ToggleButtonGroup.stories":["./packages/core/stories/components/button/ToggleButtonGroup.stories.tsx",5622,2547,9194],"./core/stories/components/button/ToggleButtonGroup.stories.tsx":["./packages/core/stories/components/button/ToggleButtonGroup.stories.tsx",5622,2547,9194],"./core/stories/components/callout/Callout.stories":["./packages/core/stories/components/callout/Callout.stories.tsx",1567,2547,3003],"./core/stories/components/callout/Callout.stories.tsx":["./packages/core/stories/components/callout/Callout.stories.tsx",1567,2547,3003],"./core/stories/components/card/Card.stories":["./packages/core/stories/components/card/Card.stories.tsx",1567,5622,2547,573],"./core/stories/components/card/Card.stories.tsx":["./packages/core/stories/components/card/Card.stories.tsx",1567,5622,2547,573],"./core/stories/components/chip/Chip.stories":["./packages/core/stories/components/chip/Chip.stories.tsx",5622,2547,9481],"./core/stories/components/chip/Chip.stories.tsx":["./packages/core/stories/components/chip/Chip.stories.tsx",5622,2547,9481],"./core/stories/components/collapable/Collapsable.stories":["./packages/core/stories/components/collapable/Collapsable.stories.tsx",1567,2547,7934],"./core/stories/components/collapable/Collapsable.stories.tsx":["./packages/core/stories/components/collapable/Collapsable.stories.tsx",1567,2547,7934],"./core/stories/components/dropdown/Dropdown.stories":["./packages/core/stories/components/dropdown/Dropdown.stories.tsx",5622,2547,9627],"./core/stories/components/dropdown/Dropdown.stories.tsx":["./packages/core/stories/components/dropdown/Dropdown.stories.tsx",5622,2547,9627],"./core/stories/components/empty/Empty.stories":["./packages/core/stories/components/empty/Empty.stories.tsx",1567,2547,1427],"./core/stories/components/empty/Empty.stories.tsx":["./packages/core/stories/components/empty/Empty.stories.tsx",1567,2547,1427],"./core/stories/components/icon/Icon.stories":["./packages/core/stories/components/icon/Icon.stories.tsx",5622,2547,6339],"./core/stories/components/icon/Icon.stories.tsx":["./packages/core/stories/components/icon/Icon.stories.tsx",5622,2547,6339],"./core/stories/components/menu/Menu.stories":["./packages/core/stories/components/menu/Menu.stories.tsx",734,8576,5622,2547,8088,6071],"./core/stories/components/menu/Menu.stories.tsx":["./packages/core/stories/components/menu/Menu.stories.tsx",734,8576,5622,2547,8088,6071],"./core/stories/components/meter/Meter.stories":["./packages/core/stories/components/meter/Meter.stories.tsx",2547,5883],"./core/stories/components/meter/Meter.stories.tsx":["./packages/core/stories/components/meter/Meter.stories.tsx",2547,5883],"./core/stories/components/notifications/Alert.stories":["./packages/core/stories/components/notifications/Alert.stories.tsx",1567,2547,5305],"./core/stories/components/notifications/Alert.stories.tsx":["./packages/core/stories/components/notifications/Alert.stories.tsx",1567,2547,5305],"./core/stories/components/notifications/Message.stories":["./packages/core/stories/components/notifications/Message.stories.tsx",1567,2547,334],"./core/stories/components/notifications/Message.stories.tsx":["./packages/core/stories/components/notifications/Message.stories.tsx",1567,2547,334],"./core/stories/components/notifications/Toast.stories":["./packages/core/stories/components/notifications/Toast.stories.tsx",1567,2547,2718],"./core/stories/components/notifications/Toast.stories.tsx":["./packages/core/stories/components/notifications/Toast.stories.tsx",1567,2547,2718],"./core/stories/components/overlays/Flyout.stories":["./packages/core/stories/components/overlays/Flyout.stories.tsx",1567,2547,3681],"./core/stories/components/overlays/Flyout.stories.tsx":["./packages/core/stories/components/overlays/Flyout.stories.tsx",1567,2547,3681],"./core/stories/components/overlays/Modal.stories":["./packages/core/stories/components/overlays/Modal.stories.tsx",1567,2547,5707],"./core/stories/components/overlays/Modal.stories.tsx":["./packages/core/stories/components/overlays/Modal.stories.tsx",1567,2547,5707],"./core/stories/components/panel/Panel.stories":["./packages/core/stories/components/panel/Panel.stories.tsx",1567,5622,2547,3103],"./core/stories/components/panel/Panel.stories.tsx":["./packages/core/stories/components/panel/Panel.stories.tsx",1567,5622,2547,3103],"./core/stories/components/panel/PanelGroup.stories":["./packages/core/stories/components/panel/PanelGroup.stories.tsx",1567,5622,2547,3984],"./core/stories/components/panel/PanelGroup.stories.tsx":["./packages/core/stories/components/panel/PanelGroup.stories.tsx",1567,5622,2547,3984],"./core/stories/components/progress/Circle.stories":["./packages/core/stories/components/progress/Circle.stories.tsx",2547,6846],"./core/stories/components/progress/Circle.stories.tsx":["./packages/core/stories/components/progress/Circle.stories.tsx",2547,6846],"./core/stories/components/progress/Progress.stories":["./packages/core/stories/components/progress/Progress.stories.tsx",2547,2611],"./core/stories/components/progress/Progress.stories.tsx":["./packages/core/stories/components/progress/Progress.stories.tsx",2547,2611],"./core/stories/components/tabPanel/TabPanel.stories":["./packages/core/stories/components/tabPanel/TabPanel.stories.tsx",1567,5622,9711,2547,7355],"./core/stories/components/tabPanel/TabPanel.stories.tsx":["./packages/core/stories/components/tabPanel/TabPanel.stories.tsx",1567,5622,9711,2547,7355],"./core/stories/components/tooltip/Tooltip.stories":["./packages/core/stories/components/tooltip/Tooltip.stories.tsx",2547,5839],"./core/stories/components/tooltip/Tooltip.stories.tsx":["./packages/core/stories/components/tooltip/Tooltip.stories.tsx",2547,5839],"./data/stories/Table.stories":["./packages/data/stories/Table.stories.tsx",734,1567,8576,5737,4750,8088,6100,1127,7240],"./data/stories/Table.stories.tsx":["./packages/data/stories/Table.stories.tsx",734,1567,8576,5737,4750,8088,6100,1127,7240],"./data/stories/TreeView.stories":["./packages/data/stories/TreeView.stories.tsx",734,8576,5737,4750,8088,6100,1127,1323],"./data/stories/TreeView.stories.tsx":["./packages/data/stories/TreeView.stories.tsx",734,8576,5737,4750,8088,6100,1127,1323],"./data/stories/VirtualGallery.stories":["./packages/data/stories/VirtualGallery.stories.tsx",734,1567,8576,5622,5737,4750,8088,6100,1127,4445],"./data/stories/VirtualGallery.stories.tsx":["./packages/data/stories/VirtualGallery.stories.tsx",734,1567,8576,5622,5737,4750,8088,6100,1127,4445],"./data/stories/VirtualList.stories":["./packages/data/stories/VirtualList.stories.tsx",734,1567,8576,5737,4750,8088,6100,1127,729],"./data/stories/VirtualList.stories.tsx":["./packages/data/stories/VirtualList.stories.tsx",734,1567,8576,5737,4750,8088,6100,1127,729],"./data/stories/histogram/Histogram.stories":["./packages/data/stories/histogram/Histogram.stories.tsx",734,1567,8576,5737,4750,8088,6100,1127,5339],"./data/stories/histogram/Histogram.stories.tsx":["./packages/data/stories/histogram/Histogram.stories.tsx",734,1567,8576,5737,4750,8088,6100,1127,5339],"./data/stories/json/JsonViewer.stories":["./packages/data/stories/json/JsonViewer.stories.tsx",734,1567,8576,5737,4750,8088,6100,1127,4139],"./data/stories/json/JsonViewer.stories.tsx":["./packages/data/stories/json/JsonViewer.stories.tsx",734,1567,8576,5737,4750,8088,6100,1127,4139],"./data/stories/useFilteredList/FilteredList.stories":["./packages/data/stories/useFilteredList/FilteredList.stories.tsx",734,8576,5737,4750,8088,6100,1127,840],"./data/stories/useFilteredList/FilteredList.stories.tsx":["./packages/data/stories/useFilteredList/FilteredList.stories.tsx",734,8576,5737,4750,8088,6100,1127,840],"./date/stories/panels/DatePanel.stories":["./packages/date/stories/panels/DatePanel.stories.tsx",734,8576,5737,8088,2487,1888],"./date/stories/panels/DatePanel.stories.tsx":["./packages/date/stories/panels/DatePanel.stories.tsx",734,8576,5737,8088,2487,1888],"./date/stories/panels/RangePanel.stories":["./packages/date/stories/panels/RangePanel.stories.tsx",734,8576,5737,8088,2487,1757],"./date/stories/panels/RangePanel.stories.tsx":["./packages/date/stories/panels/RangePanel.stories.tsx",734,8576,5737,8088,2487,1757],"./date/stories/superdate/Superdate.stories":["./packages/date/stories/superdate/Superdate.stories.tsx",734,8576,5737,8088,2487,8655],"./date/stories/superdate/Superdate.stories.tsx":["./packages/date/stories/superdate/Superdate.stories.tsx",734,8576,5737,8088,2487,8655],"./draw/stories/Playground.stories":["./packages/draw/stories/Playground.stories.tsx",1529,3739,8989],"./draw/stories/Playground.stories.tsx":["./packages/draw/stories/Playground.stories.tsx",1529,3739,8989],"./form/stories/FormBuilder.stories":["./packages/form/stories/FormBuilder.stories.tsx",734,8576,8166,6707,1634,9173],"./form/stories/FormBuilder.stories.tsx":["./packages/form/stories/FormBuilder.stories.tsx",734,8576,8166,6707,1634,9173],"./form/stories/autoComplete/AutoComplete.stories":["./packages/form/stories/autoComplete/AutoComplete.stories.tsx",734,8576,5622,1634,9771],"./form/stories/autoComplete/AutoComplete.stories.tsx":["./packages/form/stories/autoComplete/AutoComplete.stories.tsx",734,8576,5622,1634,9771],"./form/stories/form/ArrayInput.stories":["./packages/form/stories/form/ArrayInput.stories.tsx",734,8576,1634,6012],"./form/stories/form/ArrayInput.stories.tsx":["./packages/form/stories/form/ArrayInput.stories.tsx",734,8576,1634,6012],"./form/stories/form/Form.stories":["./packages/form/stories/form/Form.stories.tsx",734,1567,8576,1634,8735],"./form/stories/form/Form.stories.tsx":["./packages/form/stories/form/Form.stories.tsx",734,1567,8576,1634,8735],"./form/stories/inputs/Checkbox.stories":["./packages/form/stories/inputs/Checkbox.stories.tsx",734,8576,5622,1634,357],"./form/stories/inputs/Checkbox.stories.tsx":["./packages/form/stories/inputs/Checkbox.stories.tsx",734,8576,5622,1634,357],"./form/stories/inputs/ColorInput.stories":["./packages/form/stories/inputs/ColorInput.stories.tsx",734,8576,5622,1634,2121],"./form/stories/inputs/ColorInput.stories.tsx":["./packages/form/stories/inputs/ColorInput.stories.tsx",734,8576,5622,1634,2121],"./form/stories/inputs/File.stories":["./packages/form/stories/inputs/File.stories.tsx",734,8576,5622,6707,1634,5776],"./form/stories/inputs/File.stories.tsx":["./packages/form/stories/inputs/File.stories.tsx",734,8576,5622,6707,1634,5776],"./form/stories/inputs/Input.stories":["./packages/form/stories/inputs/Input.stories.tsx",734,8576,5622,1634,7142],"./form/stories/inputs/Input.stories.tsx":["./packages/form/stories/inputs/Input.stories.tsx",734,8576,5622,1634,7142],"./form/stories/inputs/Number.stories":["./packages/form/stories/inputs/Number.stories.tsx",734,8576,5622,1634,5829],"./form/stories/inputs/Number.stories.tsx":["./packages/form/stories/inputs/Number.stories.tsx",734,8576,5622,1634,5829],"./form/stories/inputs/Others.stories":["./packages/form/stories/inputs/Others.stories.tsx",734,8576,5622,1634,3251],"./form/stories/inputs/Others.stories.tsx":["./packages/form/stories/inputs/Others.stories.tsx",734,8576,5622,1634,3251],"./form/stories/inputs/Password.stories":["./packages/form/stories/inputs/Password.stories.tsx",734,8576,5622,1634,9709],"./form/stories/inputs/Password.stories.tsx":["./packages/form/stories/inputs/Password.stories.tsx",734,8576,5622,1634,9709],"./form/stories/inputs/Radio.stories":["./packages/form/stories/inputs/Radio.stories.tsx",734,8576,5622,1634,2955],"./form/stories/inputs/Radio.stories.tsx":["./packages/form/stories/inputs/Radio.stories.tsx",734,8576,5622,1634,2955],"./form/stories/inputs/Search.stories":["./packages/form/stories/inputs/Search.stories.tsx",734,8576,5622,1634,9466],"./form/stories/inputs/Search.stories.tsx":["./packages/form/stories/inputs/Search.stories.tsx",734,8576,5622,1634,9466],"./form/stories/inputs/Switch.stories":["./packages/form/stories/inputs/Switch.stories.tsx",734,8576,5622,1634,1074],"./form/stories/inputs/Switch.stories.tsx":["./packages/form/stories/inputs/Switch.stories.tsx",734,8576,5622,1634,1074],"./form/stories/inputs/Textarea.stories":["./packages/form/stories/inputs/Textarea.stories.tsx",734,8576,5622,1634,4060],"./form/stories/inputs/Textarea.stories.tsx":["./packages/form/stories/inputs/Textarea.stories.tsx",734,8576,5622,1634,4060],"./form/stories/selects/DualList.stories":["./packages/form/stories/selects/DualList.stories.tsx",734,8576,1634,4056],"./form/stories/selects/DualList.stories.tsx":["./packages/form/stories/selects/DualList.stories.tsx",734,8576,1634,4056],"./form/stories/selects/List.stories":["./packages/form/stories/selects/List.stories.tsx",734,8576,5622,1634,4482],"./form/stories/selects/List.stories.tsx":["./packages/form/stories/selects/List.stories.tsx",734,8576,5622,1634,4482],"./form/stories/selects/Select.stories":["./packages/form/stories/selects/Select.stories.tsx",734,8576,5622,1634,2806],"./form/stories/selects/Select.stories.tsx":["./packages/form/stories/selects/Select.stories.tsx",734,8576,5622,1634,2806],"./form/stories/sliders/Range.stories":["./packages/form/stories/sliders/Range.stories.tsx",734,8576,5622,1634,1200],"./form/stories/sliders/Range.stories.tsx":["./packages/form/stories/sliders/Range.stories.tsx",734,8576,5622,1634,1200],"./form/stories/sliders/Slider.stories":["./packages/form/stories/sliders/Slider.stories.tsx",734,8576,5622,1634,2710],"./form/stories/sliders/Slider.stories.tsx":["./packages/form/stories/sliders/Slider.stories.tsx",734,8576,5622,1634,2710],"./lexical/stories/Playground.stories":["./packages/lexical/stories/Playground.stories.tsx",734,8576,2517,9787,8088,2985],"./lexical/stories/Playground.stories.tsx":["./packages/lexical/stories/Playground.stories.tsx",734,8576,2517,9787,8088,2985],"./mdx/stories/Playground.stories":["./packages/mdx/stories/Playground.stories.tsx",2517,1529,193,1630],"./mdx/stories/Playground.stories.tsx":["./packages/mdx/stories/Playground.stories.tsx",2517,1529,193,1630],"./media/stories/AudioPlayer.stories":["./packages/media/stories/AudioPlayer.stories.tsx",734,8576,377,8088,6879,3707],"./media/stories/AudioPlayer.stories.tsx":["./packages/media/stories/AudioPlayer.stories.tsx",734,8576,377,8088,6879,3707],"./media/stories/Dictation.stories":["./packages/media/stories/Dictation.stories.tsx",734,8576,377,8088,6879,8117],"./media/stories/Dictation.stories.tsx":["./packages/media/stories/Dictation.stories.tsx",734,8576,377,8088,6879,8117],"./media/stories/ImageViewer.stories":["./packages/media/stories/ImageViewer.stories.tsx",734,1567,8576,377,8088,6879,2567],"./media/stories/ImageViewer.stories.tsx":["./packages/media/stories/ImageViewer.stories.tsx",734,1567,8576,377,8088,6879,2567],"./media/stories/Thumbnail.stories":["./packages/media/stories/Thumbnail.stories.tsx",734,1567,8576,377,8088,6879,1130],"./media/stories/Thumbnail.stories.tsx":["./packages/media/stories/Thumbnail.stories.tsx",734,1567,8576,377,8088,6879,1130],"./media/stories/VideoPlayer.stories":["./packages/media/stories/VideoPlayer.stories.tsx",734,8576,377,8088,6879,9016],"./media/stories/VideoPlayer.stories.tsx":["./packages/media/stories/VideoPlayer.stories.tsx",734,8576,377,8088,6879,9016],"./monaco/stories/Playground.stories":["./packages/monaco/stories/Playground.stories.tsx",8166,4],"./monaco/stories/Playground.stories.tsx":["./packages/monaco/stories/Playground.stories.tsx",8166,4],"./searchbar/stories/SearchBar.stories":["./packages/searchbar/stories/SearchBar.stories.tsx",734,8576,5737,8166,8088,6100,5574],"./searchbar/stories/SearchBar.stories.tsx":["./packages/searchbar/stories/SearchBar.stories.tsx",734,8576,5737,8166,8088,6100,5574]};function webpackAsyncContext(req){if(!__webpack_require__.o(map,req))return Promise.resolve().then((()=>{var e=new Error("Cannot find module '"+req+"'");throw e.code="MODULE_NOT_FOUND",e}));var ids=map[req],id=ids[0];return Promise.all(ids.slice(1).map(__webpack_require__.e)).then((()=>__webpack_require__(id)))}webpackAsyncContext.keys=()=>Object.keys(map),webpackAsyncContext.id="./packages lazy recursive ^\\.\\/.*$ include: (?%21.*node_modules)(?:\\/packages(?:\\/(?%21\\.)(?:(?:(?%21(?:^%7C\\/)\\.).)*?)\\/%7C\\/%7C$)stories(?:\\/(?%21\\.)(?:(?:(?%21(?:^%7C\\/)\\.).)*?)\\/%7C\\/%7C$)(?%21\\.)(?=.)[^/]*?\\.stories\\.(js%7Cjsx%7Cts%7Ctsx))$",module.exports=webpackAsyncContext},"./stories lazy recursive ^\\.\\/.*$ include: (?%21.*node_modules)(?:\\/stories(?:\\/(?%21\\.)(?:(?:(?%21(?:^%7C\\/)\\.).)*?)\\/%7C\\/%7C$)(?%21\\.)(?=.)[^/]*?\\.mdx)$":(module,__unused_webpack_exports,__webpack_require__)=>{var map={"./0.Introduction.mdx":["./stories/0.Introduction.mdx",6628],"./1.ColorPalette.mdx":["./stories/1.ColorPalette.mdx",4185],"./2.Iconography.mdx":["./stories/2.Iconography.mdx",2547,213],"./3.Typography.mdx":["./stories/3.Typography.mdx",1567,5594],"./4.ColorCollection.mdx":["./stories/4.ColorCollection.mdx",734,8724,7141]};function webpackAsyncContext(req){if(!__webpack_require__.o(map,req))return Promise.resolve().then((()=>{var e=new Error("Cannot find module '"+req+"'");throw e.code="MODULE_NOT_FOUND",e}));var ids=map[req],id=ids[0];return Promise.all(ids.slice(1).map(__webpack_require__.e)).then((()=>__webpack_require__(id)))}webpackAsyncContext.keys=()=>Object.keys(map),webpackAsyncContext.id="./stories lazy recursive ^\\.\\/.*$ include: (?%21.*node_modules)(?:\\/stories(?:\\/(?%21\\.)(?:(?:(?%21(?:^%7C\\/)\\.).)*?)\\/%7C\\/%7C$)(?%21\\.)(?=.)[^/]*?\\.mdx)$",module.exports=webpackAsyncContext},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAQBAMAAACW+SCeAAAAMFBMVEWMGj2NGz3////x4+e/f5KUKUn48fPKlKS4b4WwYnm8eY2pU2ybN1XcuMPq1dvp1NoxFdFrAAAAAXRSTlP7aonz8gAAAD9JREFUGNNjUAIBtRuBggggwAAR9BHEFFQywaZyIjaV6lgElVuxqXyCTWU1sYJKX7CpnEqsk7A73oTYAEELOgCpoyOl1kutCQAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAQBAMAAACW+SCeAAAAMFBMVEWMGj2NGz3////x4+e/f5KUKUn48fPKlKS4b4WwYnm8eY2pU2ybN1XcuMPq1dvp1NoxFdFrAAAAAXRSTlP7aonz8gAAAD9JREFUGNNjUAIBtRuBggggwAAR9BHEFFQywaZyIjaV6lgElVuxqXyCTWU1sYJKX7CpnEqsk7A73oTYAEELOgCpoyOl1kutCQAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUAQMAAADFiO34AAAABlBMVEWeMDn///+ut+dDAAAAEklEQVQI12NgIBH8BwEsJIkAAKwEE+3AWvguAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUAQMAAADFiO34AAAABlBMVEWeMDn///+ut+dDAAAAEklEQVQI12NgIBH8BwEsJIkAAKwEE+3AWvguAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUAgMAAACCKJcoAAAACVBMVEUAh1H///+q18VeAlDgAAAAFUlEQVQI12NgYGBQDQ2NYICAYcUEAOKRFw2YFuXeAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUAgMAAACCKJcoAAAACVBMVEUAh1H///+q18VeAlDgAAAAFUlEQVQI12NgYGBQDQ2NYICAYcUEAOKRFw2YFuXeAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAD1BMVEX/iD4Wm2L///+y3sv/176zaFdvAAAAF0lEQVQY02MQBANhJTBwYICAUcHBJAgAHJ0eZQMU55UAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAD1BMVEX/iD4Wm2L///+y3sv/176zaFdvAAAAF0lEQVQY02MQBANhJTBwYICAUcHBJAgAHJ0eZQMU55UAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAD1BMVEXNKj5Db03///+Cn4jdcH1rDt86AAAAHklEQVQY02NgGFDgggUwKGEB9BM0xgIYBLEAugkCAA3bITVQzOs7AAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAD1BMVEXNKj5Db03///+Cn4jdcH1rDt86AAAAHklEQVQY02NgGFDgggUwKGEB9BM0xgIYBLEAugkCAA3bITVQzOs7AAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAD1BMVEXZABIAM6DyqACiDTW2iiiq+uFNAAAAHklEQVQY02NgGFBgjAUwCGIB9BN0wQIYlLAAugkCALbdITUesQdRAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAD1BMVEXZABIAM6DyqACiDTW2iiiq+uFNAAAAHklEQVQY02NgGFBgjAUwCGIB9BN0wQIYlLAAugkCALbdITUesQdRAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAElBMVEUAcy8AAAD/AAD///9UVFRVonQ6Np3gAAAAI0lEQVQY02NQAgEGNEBfwVBUABE0RgV0FnRBBRBBQVRAN0EAy7cuKPK5R68AAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAElBMVEUAcy8AAAD/AAD///9UVFRVonQ6Np3gAAAAI0lEQVQY02NQAgEGNEBfwVBUABE0RgV0FnRBBRBBQVRAN0EAy7cuKPK5R68AAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAG1BMVEUAK3/OESYyVJggRY9jfbEQOIeQosfAyt+gsM9en5nHAAAAQElEQVQY02NgAALWABApCAcgHgNbAhZBZgNmDEEnBgYPDEEXBgYjTO0MLAFYBJmxWMSkgEUwvJQYlYJYwJAWBAC4ZRdFtyZb0AAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAG1BMVEUAK3/OESYyVJggRY9jfbEQOIeQosfAyt+gsM9en5nHAAAAQElEQVQY02NgAALWABApCAcgHgNbAhZBZgNmDEEnBgYPDEEXBgYjTO0MLAFYBJmxWMSkgEUwvJQYlYJYwJAWBAC4ZRdFtyZb0AAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAG1BMVEUAc8////9Vot/g7fnv9vx9t+YSfdPS5fao0O4m4Cd/AAAAQUlEQVQY02NgGFCghAUwCEJAI4iQgHKggsIpINLNEEUQCEQD4UyYoCFIUARVUDwZRJoVogiKgLnijlBBrE4aUAAAhVoQix6fUHcAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAG1BMVEUAc8////9Vot/g7fnv9vx9t+YSfdPS5fao0O4m4Cd/AAAAQUlEQVQY02NgGFCghAUwCEJAI4iQgHKggsIpINLNEEUQCEQD4UyYoCFIUARVUDwZRJoVogiKgLnijlBBrE4aUAAAhVoQix6fUHcAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAG1BMVEUjnkYAAADnABMfHx9xcXHAwMAwMDBFRUXPz8+rn9MXAAAALklEQVQY02NQwgIYaCEoiAUQEDRxxhQUbhYuxBAUcRQOTSRKEKt2rBYRdie9AAAq8R55cd7EcAAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAG1BMVEUjnkYAAADnABMfHx9xcXHAwMAwMDBFRUXPz8+rn9MXAAAALklEQVQY02NQwgIYaCEoiAUQEDRxxhQUbhYuxBAUcRQOTSRKEKt2rBYRdie9AAAq8R55cd7EcAAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAIVBMVEUAmbX///8etTqZimSNf5Ifpb5vxNQyrcNOt8qe2ONcvc//sX/oAAAAR0lEQVQY02NgYGBlYAhgQAPsUxkYUhsaUAU5C7Co5AxgaE9NSEAV5ErAopKhqr09IWEBipALFsAgiAXQT9AYC2BQwgLoJggAd5op+8o7j/AAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAIVBMVEUAmbX///8etTqZimSNf5Ifpb5vxNQyrcNOt8qe2ONcvc//sX/oAAAAR0lEQVQY02NgYGBlYAhgQAPsUxkYUhsaUAU5C7Co5AxgaE9NSEAV5ErAopKhqr09IWEBipALFsAgiAXQT9AYC2BQwgLoJggAd5op+8o7j/AAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAIVBMVEXOESYAnkn80RbtkBpFbjwEAAC8DiEjAgaQCxqcDBxVBg4bYLCCAAAAOUlEQVQY02NgAANmJWTAQE/BBGyCC7AJRmAKspWGVmCqZA9NYGARRAYgwaUTMAUz2RowBUFgMAkCAEjfH7SkK65IAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAIVBMVEXOESYAnkn80RbtkBpFbjwEAAC8DiEjAgaQCxqcDBxVBg4bYLCCAAAAOUlEQVQY02NgAANmJWTAQE/BBGyCC7AJRmAKspWGVmCqZA9NYGARRAYgwaUTMAUz2RowBUFgMAkCAEjfH7SkK65IAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAJ1BMVEUAZgDMAAD////aSEhJkkn++N/97bD+88n96aD85pP74YBQlEb/++/JD/WXAAAAUUlEQVQY02MQxAIYaCFojAUwKMGAahCcCRdUSw1LwhAsUi9SxxTUnKSKLqgapJYENxUuGFO1/Ci6oFLFsqx2TNtndCJsd4ECbxeXLTA2A70AAP6jLUlcjKwxAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAJ1BMVEUAZgDMAAD////aSEhJkkn++N/97bD+88n96aD85pP74YBQlEb/++/JD/WXAAAAUUlEQVQY02MQxAIYaCFojAUwKMGAahCcCRdUSw1LwhAsUi9SxxTUnKSKLqgapJYENxUuGFO1/Ci6oFLFsqx2TNtndCJsd4ECbxeXLTA2A70AAP6jLUlcjKwxAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAJFBMVEUAAAD///8Aej3OESbeX21Vpn5BCxEIKRgAUymNCxoAcjnBDyM+gG8gAAAATUlEQVQY02OoUsIEDAxN2ATZF2ERZODAJshQhU0Qw1iwIHsoKgALMgiiAvoKsrmgArDgZGNUABLLNsYU5DTGFGTbjEVwsjGmYDammDEAor02RGMqg7YAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAJFBMVEUAAAD///8Aej3OESbeX21Vpn5BCxEIKRgAUymNCxoAcjnBDyM+gG8gAAAATUlEQVQY02OoUsIEDAxN2ATZF2ERZODAJshQhU0Qw1iwIHsoKgALMgiiAvoKsrmgArDgZGNUABLLNsYU5DTGFGTbjEVwsjGmYDammDEAor02RGMqg7YAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAJFBMVEUAK3/VrC5Qbaf///8qTpTw8vcQOIegsM9geq/f5O9AYJ9wiLd024YBAAAAMklEQVQY02NgGMpAEAvALggCS7wwTWDZOdsBUzDYFFMwI9i0DUOQqdhcAdNQJSWq+hIAYa8IgTmDXnwAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAJFBMVEUAK3/VrC5Qbaf///8qTpTw8vcQOIegsM9geq/f5O9AYJ9wiLd024YBAAAAMklEQVQY02NgGMpAEAvALggCS7wwTWDZOdsBUzDYFFMwI9i0DUOQqdhcAdNQJSWq+hIAYa8IgTmDXnwAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAJFBMVEXBAAD////rq6vwv7/TSkr66OjllJT++vrkkJDFFBTbamrFDw+mCkE3AAAAMUlEQVQY02MQhAIFBiQA5It4YBGU5MIUDLZmMS5EF0wAkoFECWLVjtUi7E7CdPywAwDkmwmBWzMtugAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAJFBMVEXBAAD////rq6vwv7/TSkr66OjllJT++vrkkJDFFBTbamrFDw+mCkE3AAAAMUlEQVQY02MQhAIFBiQA5It4YBGU5MIUDLZmMS5EF0wAkoFECWLVjtUi7E7CdPywAwDkmwmBWzMtugAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAKlBMVEU/nDXtKTkAueR5dTZOiaz1fYf3oajwUl7+6ev2lJz4r7XuNUT7zdH7zNA216A/AAAAOElEQVQY02NQwgIY6CboggUwCEKB5LVwGFMQLhghKF2IIZgmKNqFIZiJTRCrdsljSBYZYwEMAwoA/3cmVGf7nvwAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAKlBMVEU/nDXtKTkAueR5dTZOiaz1fYf3oajwUl7+6ev2lJz4r7XuNUT7zdH7zNA216A/AAAAOElEQVQY02NQwgIY6CboggUwCEKB5LVwGFMQLhghKF2IIZgmKNqFIZiJTRCrdsljSBYZYwEMAwoA/3cmVGf7nvwAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAKlBMVEX////bFhsAgADzsbNKXAnmW17naW3hPEDypaf76+v1urvpen7um53tlZfX+7IwAAAAP0lEQVQY02MQBAEGNCAotjsRU1D4zkJMwa6ZHZiCWZPLMQVF0wMxBU0FgwWNUQGDIBZAZ0EXVAARVEIFdBMEABIJJaFkAQecAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAKlBMVEX////bFhsAgADzsbNKXAnmW17naW3hPEDypaf76+v1urvpen7um53tlZfX+7IwAAAAP0lEQVQY02MQBAEGNCAotjsRU1D4zkJMwa6ZHZiCWZPLMQVF0wMxBU0FgwWNUQGDIBZAZ0EXVAARVEIFdBMEABIJJaFkAQecAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAALVBMVEUAI5X+ywB/d0oQLYvPqxswTKnL0ekQMJuwut5QaLY/Wa8gPqJgdb3///9QWGaw+VaMAAAAeUlEQVQY02NgYGDo4DYRhAEFBigoX7bYEUOQ4ewBE0zB2VODHTEEGcJSTTAFORo2O2IIsldlmWAIMvDcYXbEEOTcGWqCIcjAmgZxAIogzFuoglBvoQpCvYUmCPEWmiDEW+iCYG+hC4K9hS4I9haGIMhbGIIgbz0A0QCx2SL7cD63XgAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAALVBMVEUAI5X+ywB/d0oQLYvPqxswTKnL0ekQMJuwut5QaLY/Wa8gPqJgdb3///9QWGaw+VaMAAAAeUlEQVQY02NgYGDo4DYRhAEFBigoX7bYEUOQ4ewBE0zB2VODHTEEGcJSTTAFORo2O2IIsldlmWAIMvDcYXbEEOTcGWqCIcjAmgZxAIogzFuoglBvoQpCvYUmCPEWmiDEW+iCYG+hC4K9hS4I9haGIMhbGIIgbz0A0QCx2SL7cD63XgAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAALVBMVEUAZrPaIDJJTYf/2QDjTyX2qwzwjBTfNyvmXiHqcRztfRj9zgNIT4j4twn0oA8yAhU1AAAAWklEQVQY02MQBAMhBjA4COExoAgqIgQdsQiKR2BTmY5FUGIbFsEyayyCUlmOmIIiGZgqhSNuOTtiCIaGTsYUDJ+ORWV0GhaVccnYtM8g1iJsTsIRngQEodEBABWyIo6noem1AAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAALVBMVEUAZrPaIDJJTYf/2QDjTyX2qwzwjBTfNyvmXiHqcRztfRj9zgNIT4j4twn0oA8yAhU1AAAAWklEQVQY02MQBAMhBjA4COExoAgqIgQdsQiKR2BTmY5FUGIbFsEyayyCUlmOmIIiGZgqhSNuOTtiCIaGTsYUDJ+ORWV0GhaVccnYtM8g1iJsTsIRngQEodEBABWyIo6noem1AAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAALVBMVEX+0QAAAAAAmzoSDwD4zwHyxgAZoTSYuxeCawCJcQCSuhgeojMfojMhojPVrwBemeiWAAAAgUlEQVQY023RwQ2AIAwF0H+Aq0lXcAq5MYJbmDiAF4+O4A6u4AiO4DpSoWqxPb6U8PkAbm7V7BHoAaUH4NH1ajft+QXEOokNbAS6dfsa46tjthspZGVbSTDrYwVZ0xQTpJAiu2IKmwrZ6uPWRZ9Ii2AwwlvPtApRJtWZJf++44y4AGk2PZ/nYcIzAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAALVBMVEX+0QAAAAAAmzoSDwD4zwHyxgAZoTSYuxeCawCJcQCSuhgeojMfojMhojPVrwBemeiWAAAAgUlEQVQY023RwQ2AIAwF0H+Aq0lXcAq5MYJbmDiAF4+O4A6u4AiO4DpSoWqxPb6U8PkAbm7V7BHoAaUH4NH1ajft+QXEOokNbAS6dfsa46tjthspZGVbSTDrYwVZ0xQTpJAiu2IKmwrZ6uPWRZ9Ii2AwwlvPtApRJtWZJf++44y4AGk2PZ/nYcIzAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAMFBMVEUAXOX/AAD///+/Fzq/1vkoTMF8crqIs/OYjMQQVtavzPcudbsweuqfgbUQZdaPl9PUMJ+YAAAAR0lEQVQY02NQwgIYSBN0L8EU1Ofe0IQhqMv34BKqoIuLi9vxmhQXZMAABKxOKgEM6IAza9kEDEGGiFYGqgJjLIBBEAugmyAAw6IoE6NtAqsAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAMFBMVEUAXOX/AAD///+/Fzq/1vkoTMF8crqIs/OYjMQQVtavzPcudbsweuqfgbUQZdaPl9PUMJ+YAAAAR0lEQVQY02NQwgIYSBN0L8EU1Ofe0IQhqMv34BKqoIuLi9vxmhQXZMAABKxOKgEM6IAza9kEDEGGiFYGqgJjLIBBEAugmyAAw6IoE6NtAqsAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAMFBMVEVWtx//zgASrSvSEDSKSjAAAADYrgDjWCDjVyCzkAB0XQAXEwBrVgCkTiuDaQB3YAAKgYv+AAAAZklEQVQY02NwUsIEDCbYBI2dsAmaYBPEohQoaMuAAYyNjQsF0QBI0BzMEkuEEWBBiFKZgzACIghSKrk1eiKEgApagKRTw2AERLARxPq1DkaABS2w2d6IRRCr452IDRAnYgMZW3QAAIBCN0MOGs4oAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAMFBMVEVWtx//zgASrSvSEDSKSjAAAADYrgDjWCDjVyCzkAB0XQAXEwBrVgCkTiuDaQB3YAAKgYv+AAAAZklEQVQY02NwUsIEDCbYBI2dsAmaYBPEohQoaMuAAYyNjQsF0QBI0BzMEkuEEWBBiFKZgzACIghSKrk1eiKEgApagKRTw2AERLARxPq1DkaABS2w2d6IRRCr452IDRAnYgMZW3QAAIBCN0MOGs4oAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAMFBMVEX51hbOICjzwBjaTiLkeh7gZyDuqRrsnBvVPSTcWSLxtBjRLCf2yxbOHyfmhx3mhh7oX2dPAAAAw0lEQVQY02MwY2CoFgSBA0xgajsDQzKDoBkDkyGIl8AOIoUVGJIFGQSBovwbgVwHFiAh/QEoBhIUnMSwAkhOYAYSXQzKghBBwSAGR0HBBm5BQREGVUGYoGAQW6OgjKLgjQSwGFRQMOio4BVfwRiIGExQMKgivLQdKibIwJXuMrkRyJjKwBAJpCQsXcoWMIABUMacgaEYzscqiFU7VosQTnJEcxLU8RLIjgd5UxbNmygBogkRNGPgQwTdA0jQYQtkbNEBAHgKPmhpzmYhAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAMFBMVEX51hbOICjzwBjaTiLkeh7gZyDuqRrsnBvVPSTcWSLxtBjRLCf2yxbOHyfmhx3mhh7oX2dPAAAAw0lEQVQY02MwY2CoFgSBA0xgajsDQzKDoBkDkyGIl8AOIoUVGJIFGQSBovwbgVwHFiAh/QEoBhIUnMSwAkhOYAYSXQzKghBBwSAGR0HBBm5BQREGVUGYoGAQW6OgjKLgjQSwGFRQMOio4BVfwRiIGExQMKgivLQdKibIwJXuMrkRyJjKwBAJpCQsXcoWMIABUMacgaEYzscqiFU7VosQTnJEcxLU8RLIjgd5UxbNmygBogkRNGPgQwTdA0jQYQtkbNEBAHgKPmhpzmYhAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAA4VBMVEXIEC5nbZnUeo3g5O3////ZWm7xw8oBIWnAyNrGDy3Vf43UfozkuL9gdKH10tcsih+tg3YvjyXgj5jx9PL88PJfc6Htv8jMYnKScFNIgzyyRE1tjVHUoa3YdYbhoq7lrrewxIe7Dirg3rzMuFN7s6H3+PvY3ejWz9y5JDaHeVXCDiuaZVGZZFCHNiyKwIO8HDZ4PSHW6dSOZTK2za3CzJbd266cQTaYoJGIt6W0sXWuPzGdvK+Btsl2SiydqXifj1Kgt4ywm4qIxNrDXUbS09LPfSvSxoTU1qnKTyjApEiNaE+TnmGmAAAA8klEQVQoz73SWXOCMBAH8FUDAeQGQcV6gEp11B7aevTy1vb7f6AmDdAXxvjk/wGys7+ZnQ2AIJYqmEQCkOi7UBREyAttUMrgX6XlwqRZoZAxjHOhRBJ7LkIASNd7fVqzjpwGLsdXVbXVIA+fI8sIofoDGaXI2eh+T9fpaOR6cTaaQK/TsTOIsVYShWKBLsNOyTJl1GieV3YzhWmTXQ+rEvi27nYX8xQy9n/hlCYw+v583y4dhbdM6xB9fZi7Oy60j+HmZx9yofk0PTnOS3tiXoZy3Xh8bc+ex0aV82XkUc2wLKs2AG6GoyCo3sM14f4QN8kvl/oSq3LmixUAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAA4VBMVEXIEC5nbZnUeo3g5O3////ZWm7xw8oBIWnAyNrGDy3Vf43UfozkuL9gdKH10tcsih+tg3YvjyXgj5jx9PL88PJfc6Htv8jMYnKScFNIgzyyRE1tjVHUoa3YdYbhoq7lrrewxIe7Dirg3rzMuFN7s6H3+PvY3ejWz9y5JDaHeVXCDiuaZVGZZFCHNiyKwIO8HDZ4PSHW6dSOZTK2za3CzJbd266cQTaYoJGIt6W0sXWuPzGdvK+Btsl2SiydqXifj1Kgt4ywm4qIxNrDXUbS09LPfSvSxoTU1qnKTyjApEiNaE+TnmGmAAAA8klEQVQoz73SWXOCMBAH8FUDAeQGQcV6gEp11B7aevTy1vb7f6AmDdAXxvjk/wGys7+ZnQ2AIJYqmEQCkOi7UBREyAttUMrgX6XlwqRZoZAxjHOhRBJ7LkIASNd7fVqzjpwGLsdXVbXVIA+fI8sIofoDGaXI2eh+T9fpaOR6cTaaQK/TsTOIsVYShWKBLsNOyTJl1GieV3YzhWmTXQ+rEvi27nYX8xQy9n/hlCYw+v583y4dhbdM6xB9fZi7Oy60j+HmZx9yofk0PTnOS3tiXoZy3Xh8bc+ex0aV82XkUc2wLKs2AG6GoyCo3sM14f4QN8kvl/oSq3LmixUAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAA5FBMVEUBIWlgdKHUeY4JKG3yxs1nbpolP33IEC7AyNrYVmu/x9ng5O3f4+ykgJT6+Pp4g4T88fOKkYj21drZ3Oesq43prjxOTX4FJWvSynVEWYGIf4PDwIDnw2IZNnW9vm7WzYuJoMCbXHIhcTYAWCT+/v5lh5+irLewxt/GOjfhiCvZ2OLfkjZ9lnvZzMkdWCDaztuhsatUe39SeHz13uMxNW/FYFVFXZGfqXUzNnDIbVrHvaCMkJ1bZYDUmGtukG+zsKdBeXtCg1vGkWjNLC4NWiyOfHi/maUAUyDWTTzTpk5HcjhWeT1rSu5WAAAA9klEQVQoz8XQ2XKCMBQG4GAwAZQd3HdQq4B7666tttrl/d+nnKmpdsYB7vrfwMn/TSYJEvksh8IIlArwTadEHt0LFEB/IEwZDqEICjCSCZIkmVNDcylVDE0xw1FiHdmsn/JsoHfCun2lssIJ4PPLa2v3u6MQxlQ0Q6HU1YypCfOlqrbOjlO9npLL8mIqDZfhMvDH1rF8kuU3Gf9h7HluKXn48OzekVwgK9iDA2XQ9nr2O0FxIf1gOAz6CeBkMB4PJvGw2fFHI7/TjGGL0sHqfn51rW1pFglzy1q90W43yoXHXPSWql6uWfXCXFdjD4mLql7E6N/zDVdhFLgxamGzAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAA5FBMVEUBIWlgdKHUeY4JKG3yxs1nbpolP33IEC7AyNrYVmu/x9ng5O3f4+ykgJT6+Pp4g4T88fOKkYj21drZ3Oesq43prjxOTX4FJWvSynVEWYGIf4PDwIDnw2IZNnW9vm7WzYuJoMCbXHIhcTYAWCT+/v5lh5+irLewxt/GOjfhiCvZ2OLfkjZ9lnvZzMkdWCDaztuhsatUe39SeHz13uMxNW/FYFVFXZGfqXUzNnDIbVrHvaCMkJ1bZYDUmGtukG+zsKdBeXtCg1vGkWjNLC4NWiyOfHi/maUAUyDWTTzTpk5HcjhWeT1rSu5WAAAA9klEQVQoz8XQ2XKCMBQG4GAwAZQd3HdQq4B7666tttrl/d+nnKmpdsYB7vrfwMn/TSYJEvksh8IIlArwTadEHt0LFEB/IEwZDqEICjCSCZIkmVNDcylVDE0xw1FiHdmsn/JsoHfCun2lssIJ4PPLa2v3u6MQxlQ0Q6HU1YypCfOlqrbOjlO9npLL8mIqDZfhMvDH1rF8kuU3Gf9h7HluKXn48OzekVwgK9iDA2XQ9nr2O0FxIf1gOAz6CeBkMB4PJvGw2fFHI7/TjGGL0sHqfn51rW1pFglzy1q90W43yoXHXPSWql6uWfXCXFdjD4mLql7E6N/zDVdhFLgxamGzAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAM1BMVEUAr8phuIFvuHYQsb0xs6UfsrE/tZpUt4ovs6b+xQx9umyGu2WfvVJKtpHvwxeQu13PwC6ofxUkAAAAmElEQVQoz6WSwQ7DMAhDAwiwm6Td/3/tDrssSdVFGkf0BMa4lO1yjT3wOuoeKEfugXn43ALgd+Ck0VJSciVF+8j1SrL1hZQ2avQ8SVIwgzG2zEGSTBQbQb2+J0LtMzExa9c6gC8JPXnWdF6Pq1tGJDJdmz8eg0C4ewf0hz0wC02HLPbUJRQV0fTmM4tjJWB/hGI7ZtvB3aw3Td0Ecu+54W4AAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAM1BMVEUAr8phuIFvuHYQsb0xs6UfsrE/tZpUt4ovs6b+xQx9umyGu2WfvVJKtpHvwxeQu13PwC6ofxUkAAAAmElEQVQoz6WSwQ7DMAhDAwiwm6Td/3/tDrssSdVFGkf0BMa4lO1yjT3wOuoeKEfugXn43ALgd+Ck0VJSciVF+8j1SrL1hZQ2avQ8SVIwgzG2zEGSTBQbQb2+J0LtMzExa9c6gC8JPXnWdF6Pq1tGJDJdmz8eg0C4ewf0hz0wC02HLPbUJRQV0fTmM4tjJWB/hGI7ZtvB3aw3Td0Ecu+54W4AAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAM1BMVEVAi3MAN0EAWWgASlYAa34GCwgAHSIAAAAAd4v/xywoVkfvuilfShCAYxa/lSFAMgs/MQvJSo6TAAAAW0lEQVQoz63TuxKAIAxE0agJK77//2ulcqBAb+HWZ4YQFks+o5g0OISKCUIpjRAW6hAqPkZ9YKGLvUVVziN300BpWyFU7D9DePTFLgPXQxcOnxCWgtYMFpd+hRvLVBb8dDVZSQAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAM1BMVEVAi3MAN0EAWWgASlYAa34GCwgAHSIAAAAAd4v/xywoVkfvuilfShCAYxa/lSFAMgs/MQvJSo6TAAAAW0lEQVQoz63TuxKAIAxE0agJK77//2ulcqBAb+HWZ4YQFks+o5g0OISKCUIpjRAW6hAqPkZ9YKGLvUVVziN300BpWyFU7D9DePTFLgPXQxcOnxCWgtYMFpd+hRvLVBb8dDVZSQAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAM1BMVEX/AAD/MDD/EBD/19f/QED/ICD/r6//////wMD/8PD/oKD/YGD/gID/b2//cHD/UFD/kJAQFQNAAAAAgUlEQVQoz62S2woDIQxEj5doou7l/7+2DwXbwupa2nkIjBwyGAa68oW40vdgKUugmUi2BVAOOGQBjADxFtS8A+xZZ6DW5s8CUJpvVYegAcQ+bBzt3r0bR6fPhzTemPzL+jT7dejhLszPY/I0Yjd3NOJW6xaxhVKoLrbn/2AIvzT8AWsMCOs6h1CtAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAM1BMVEX/AAD/MDD/EBD/19f/QED/ICD/r6//////wMD/8PD/oKD/YGD/gID/b2//cHD/UFD/kJAQFQNAAAAAgUlEQVQoz62S2woDIQxEj5doou7l/7+2DwXbwupa2nkIjBwyGAa68oW40vdgKUugmUi2BVAOOGQBjADxFtS8A+xZZ6DW5s8CUJpvVYegAcQ+bBzt3r0bR6fPhzTemPzL+jT7dejhLszPY/I0Yjd3NOJW6xaxhVKoLrbn/2AIvzT8AWsMCOs6h1CtAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAANlBMVEXtHCf+6OrzZGv6uLzxVV3tGiXvLDYCT6Kzssz////1dn381df4pan5srb7x8n1f4XwRk/3mZ5jG2kVAAAAYklEQVQYGaXBixHDIAwFwQME8uNjO/03mxKkSXbxJDwJT+JK4hfDppFQi6rWS8SkhlQGgXPu2ve9J4FS6b2zGwHpQ6eoEViaDJYeAqbRNGsZRGxJOi+xYY/xvysJT8KT8KQv1DYLH0ST+zUAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAANlBMVEXtHCf+6OrzZGv6uLzxVV3tGiXvLDYCT6Kzssz////1dn381df4pan5srb7x8n1f4XwRk/3mZ5jG2kVAAAAYklEQVQYGaXBixHDIAwFwQME8uNjO/03mxKkSXbxJDwJT+JK4hfDppFQi6rWS8SkhlQGgXPu2ve9J4FS6b2zGwHpQ6eoEViaDJYeAqbRNGsZRGxJOi+xYY/xvysJT8KT8KQv1DYLH0ST+zUAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAOVBMVEUAAADzwcY0XzY0BAlAm21AQECfKSzOESb///8Aej3aS1uaDBzRHzL42t2bDBzULkHmh5JkeFpkNDmS7NDKAAAAY0lEQVQoz43QQQ6AIAxE0SLKiIKo9z+sRhqDC+z89UubVjYvXMDqSUhSgKQASQGSoimcU7cPBBY3d1KYTFrhnpM1tUKXCwcTu5o/Rt9zjN0aGIb4k3DshRZTaLMHMuyGHIvxAjjaEhDK4xL+AAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAOVBMVEUAAADzwcY0XzY0BAlAm21AQECfKSzOESb///8Aej3aS1uaDBzRHzL42t2bDBzULkHmh5JkeFpkNDmS7NDKAAAAY0lEQVQoz43QQQ6AIAxE0SLKiIKo9z+sRhqDC+z89UubVjYvXMDqSUhSgKQASQGSoimcU7cPBBY3d1KYTFrhnpM1tUKXCwcTu5o/Rt9zjN0aGIb4k3DshRZTaLMHMuyGHIvxAjjaEhDK4xL+AAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAOVBMVEUAfDDsoqblgYbYQUnaT1bjfIHidHrOFyA0Yyznio/qlZr209XVNT2WeGLfaG6aXUvRJC2bj3fxur4V/dY/AAAAZklEQVQoz63PwRWAIAwDUGrTYgBB3X9YRyAHc/6vaQphbnWf4oRBgYnXmwInk1OBEWRK1XerhwIHBqQx0dFT/VGqNh7RfoVytTxmYGCd+5S8W72KkAhSgpOpwcTrjwKdsKVAwqSLH3bnEGqiS5R6AAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAOVBMVEUAfDDsoqblgYbYQUnaT1bjfIHidHrOFyA0Yyznio/qlZr209XVNT2WeGLfaG6aXUvRJC2bj3fxur4V/dY/AAAAZklEQVQoz63PwRWAIAwDUGrTYgBB3X9YRyAHc/6vaQphbnWf4oRBgYnXmwInk1OBEWRK1XerhwIHBqQx0dFT/VGqNh7RfoVytTxmYGCd+5S8W72KkAhSgpOpwcTrjwKdsKVAwqSLH3bnEGqiS5R6AAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAP1BMVEUhWzMaYsH7/P5Kgs7Fsx29sD8/cpEAUbr80RZYeSsub8WkwOY9ecqKr9/D1u/l7Pfu8/pYjNFwndjG1++zyuq3m5y9AAAAkUlEQVQoz43QyQ7CMAxF0RcHuCVDR/7/W1mEqpVo0nhj2TqSBwEOONJFvJ7DIEi5lDnV2eMtFrMVYDVb6kyCcSutcWwwqWwXwtWKJ1Ygfpp8m/0g83zDpPKXlCC0mITP0QP4T/Z1JuHMAkAwc3UmQYwOwMXYYPsxtIb+wwY7wyY74A3b4S0rsINJnUzqZFIn0xe7Ugy2JSfdKQAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAP1BMVEUhWzMaYsH7/P5Kgs7Fsx29sD8/cpEAUbr80RZYeSsub8WkwOY9ecqKr9/D1u/l7Pfu8/pYjNFwndjG1++zyuq3m5y9AAAAkUlEQVQoz43QyQ7CMAxF0RcHuCVDR/7/W1mEqpVo0nhj2TqSBwEOONJFvJ7DIEi5lDnV2eMtFrMVYDVb6kyCcSutcWwwqWwXwtWKJ1Ygfpp8m/0g83zDpPKXlCC0mITP0QP4T/Z1JuHMAkAwc3UmQYwOwMXYYPsxtIb+wwY7wyY74A3b4S0rsINJnUzqZFIn0xe7Ugy2JSfdKQAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAP1BMVEXqBDerNnXVFUwsmCzsHDRVeMiAV59Bid0SrSv8qChjbi+ZQzPPGjXwOjH6kinzVS7uKTP3fiv1Zi72cS3/vyb+/BJuAAAArElEQVQoz43Q2wLCIAgGYCo6UAGivv+zhq6Vq+n2X3n4BBWej/vptiNQsgfDnC0MbUZ4NhgC8Ai/GZIxUcR+5WknJWUBjAm716iLTBFUyetK984T9H0SQdAMv5lxnUQDUNJyIsBKCq4Dy6W9eUVahcfD5Ty9hZApxQD2X7Ggq6dOgj+CJaNmW0Uf6C0NFLl1LfpC/0IhSdxBDfT2kbtoAUdoAUfoA7dQhXtQyQsr7xFoxTBegwAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAP1BMVEXqBDerNnXVFUwsmCzsHDRVeMiAV59Bid0SrSv8qChjbi+ZQzPPGjXwOjH6kinzVS7uKTP3fiv1Zi72cS3/vyb+/BJuAAAArElEQVQoz43Q2wLCIAgGYCo6UAGivv+zhq6Vq+n2X3n4BBWej/vptiNQsgfDnC0MbUZ4NhgC8Ai/GZIxUcR+5WknJWUBjAm716iLTBFUyetK984T9H0SQdAMv5lxnUQDUNJyIsBKCq4Dy6W9eUVahcfD5Ty9hZApxQD2X7Ggq6dOgj+CJaNmW0Uf6C0NFLl1LfpC/0IhSdxBDfT2kbtoAUdoAUfoA7dQhXtQyQsr7xFoxTBegwAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAPFBMVEX////xw8p8jbLnv8pBWY8OLHHw8vfIEC4BIWnWTGKAkLRAWI5LYZXgeIn10tigrMfheYrx2+Htz9hKYJTy9LpmAAAAqUlEQVQoz8XTQRaDIAwFwC8SLBYE9f53LRVCCbJw1yx8koyiMcJOgFH04tBYUkDXBKnZLkldh4Z2kBnAJ2alO6SVqwrtgiSk9iaQ19EPktwL/RYuQ9c/Et45znB467dUyHAvq3AWgHtccJx+Ev+Ej19G53DBAFu0cc/wu/I2HsEVwA1PhSl1eK4NrxluuGTtJ5QUksmhaCkk68dM1SokGwxuoR0b/Qp5zw/L/xHkHUeiPgAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAPFBMVEX////xw8p8jbLnv8pBWY8OLHHw8vfIEC4BIWnWTGKAkLRAWI5LYZXgeIn10tigrMfheYrx2+Htz9hKYJTy9LpmAAAAqUlEQVQoz8XTQRaDIAwFwC8SLBYE9f53LRVCCbJw1yx8koyiMcJOgFH04tBYUkDXBKnZLkldh4Z2kBnAJ2alO6SVqwrtgiSk9iaQ19EPktwL/RYuQ9c/Et45znB467dUyHAvq3AWgHtccJx+Ev+Ej19G53DBAFu0cc/wu/I2HsEVwA1PhSl1eK4NrxluuGTtJ5QUksmhaCkk68dM1SokGwxuoR0b/Qp5zw/L/xHkHUeiPgAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAPFBMVEXZPz9mADPPNjl+ZDPMAAD///8UEF3mf3/zwMAAAGZQQEb/zAA1K1DYrA/wwAaQcyyggCZgTT+wjR+vjCAG8B+KAAAAg0lEQVQoz63ROxLDIBAEUey1Rm7+SPe/qwMFdrCFCfRSpugqCDhejnAdxX7G73B3XMNWByB0Dd+OAGA1gxRtSNN07QCxlBKnN+ZkgFpKqWk2VGpAtpqq5Wn6LADRus3TqHSAnPXveXQUG1p5cKSfn9kc4eFw009H8GyLwv3uT++LltMf2s0Rk/ZL0FMAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAPFBMVEXZPz9mADPPNjl+ZDPMAAD///8UEF3mf3/zwMAAAGZQQEb/zAA1K1DYrA/wwAaQcyyggCZgTT+wjR+vjCAG8B+KAAAAg0lEQVQoz63ROxLDIBAEUey1Rm7+SPe/qwMFdrCFCfRSpugqCDhejnAdxX7G73B3XMNWByB0Dd+OAGA1gxRtSNN07QCxlBKnN+ZkgFpKqWk2VGpAtpqq5Wn6LADRus3TqHSAnPXveXQUG1p5cKSfn9kc4eFw009H8GyLwv3uT++LltMf2s0Rk/ZL0FMAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAARVBMVEUAAAAiXyxQVDPEFjJAQEDdTGcFZiXSEDT///8AcikAFQcARxmqIjGDNS8AKw8PejUvjFBfp3jv9vHP5Nafyq48Qz7PTmJl4CtHAAAAYElEQVQoz63QNxKAQBADwTm88P7/TyXAZYcCFHfV1C5JWlpDoTWhis6EkpNHkpz8CY38BaVkz6N7oMaliu2FGlYTStP8L3TT7jFhy6K7H97ztdPVWLABBxpZACsL0HiMA+tdEadf53u5AAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAARVBMVEUAAAAiXyxQVDPEFjJAQEDdTGcFZiXSEDT///8AcikAFQcARxmqIjGDNS8AKw8PejUvjFBfp3jv9vHP5Nafyq48Qz7PTmJl4CtHAAAAYElEQVQoz63QNxKAQBADwTm88P7/TyXAZYcCFHfV1C5JWlpDoTWhis6EkpNHkpz8CY38BaVkz6N7oMaliu2FGlYTStP8L3TT7jFhy6K7H97ztdPVWLABBxpZACsL0HiMA+tdEadf53u5AAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAARVBMVEUAIWn5w81QZphpbZkQLnIgPHvsS2nkACvAyNpgdKHicYz////Q1uP99Pd9jbLf4+zg5O0wSoX70trZ3OcQLnGPnbz43OPaT7sJAAAArklEQVQoz7WQ2xaEIAhFyTA0vHSZ+v9PnahlOdlq+TLnRYGNB4GuiRY2GSIjZ9t3DTxJCoIeoESDBXhBBSwwmwVm07xOnon85P0scaqhc3iC9KCziBf3Dubarf3mSsR+Wn+sd+mg08Sx6fpWPmMHud1cFasMS+u5UOfSiwcHqZAWLuh9MzWq5sexSGld1YlhWcKnhgzMoYZThtmoYsKHcbRzRRZjxBJELNuVgv/pC+H0B3jjpdgoAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAARVBMVEUAIWn5w81QZphpbZkQLnIgPHvsS2nkACvAyNpgdKHicYz////Q1uP99Pd9jbLf4+zg5O0wSoX70trZ3OcQLnGPnbz43OPaT7sJAAAArklEQVQoz7WQ2xaEIAhFyTA0vHSZ+v9PnahlOdlq+TLnRYGNB4GuiRY2GSIjZ9t3DTxJCoIeoESDBXhBBSwwmwVm07xOnon85P0scaqhc3iC9KCziBf3Dubarf3mSsR+Wn+sd+mg08Sx6fpWPmMHud1cFasMS+u5UOfSiwcHqZAWLuh9MzWq5sexSGld1YlhWcKnhgzMoYZThtmoYsKHcbRzRRZjxBJELNuVgv/pC+H0B3jjpdgoAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAARVBMVEUAej2lJS6BCheBNy1Vpn5UVFTBEyQAAAD////OESanDR4nZjgnAwdOUjROBg7XPE720tbgaXb88PHRHzLtpa2gSEZbT1DC0kGAAAAAX0lEQVQoz63QRw6AMBAEwcUmDTn//6kITLiZPtDnkka75gqWqWogVN5BKDkKyXyAYP6CUrJl0R6ofihjvVDzAqE0Tv9COk2PWdN498Nb+yp8uzYEvRmBYPaEZPbIM2Y7L4kRqytOrv8AAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAARVBMVEUAej2lJS6BCheBNy1Vpn5UVFTBEyQAAAD////OESanDR4nZjgnAwdOUjROBg7XPE720tbgaXb88PHRHzLtpa2gSEZbT1DC0kGAAAAAX0lEQVQoz63QRw6AMBAEwcUmDTn//6kITLiZPtDnkka75gqWqWogVN5BKDkKyXyAYP6CUrJl0R6ofihjvVDzAqE0Tv9COk2PWdN498Nb+yp8uzYEvRmBYPaEZPbIM2Y7L4kRqytOrv8AAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAS1BMVEUBIWlgdKHg5O3YVmtAWI4fPHswSoXIEC4QLnLAyNryxs3U2eVnbprUeY79+/yKmbq/x9mwutBwgqtQZpigrMf88fP21dpvgar13uPvoiQ3AAAA30lEQVQoz7WR65LDIAiF0SBibKPm1r7/ky6ssU1navbXnsmoB74BJTCM1oAoeB90v92HEb5JE4pWsLkLVMFPjIEfD1kOG3LO8blvk/eTrFFsrplkuaxs0wH6L9L4smAix5RwWS7BWI6eXGJtLYrTtmvrbX9G9RKWWu2uxK4ejB2H+00fU08aw4zv11bTknU8zbmV3iCtWrLVaANXVMDXVH7n5DqTBU72bG3iHknzqYibCbrC03802OegxFdJF0ufY0B3kOQQ+KIkh8DE8sVwhektESdjJtngT81EM/ybfgCcAAmZWoOTDgAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAS1BMVEUBIWlgdKHg5O3YVmtAWI4fPHswSoXIEC4QLnLAyNryxs3U2eVnbprUeY79+/yKmbq/x9mwutBwgqtQZpigrMf88fP21dpvgar13uPvoiQ3AAAA30lEQVQoz7WR65LDIAiF0SBibKPm1r7/ky6ssU1navbXnsmoB74BJTCM1oAoeB90v92HEb5JE4pWsLkLVMFPjIEfD1kOG3LO8blvk/eTrFFsrplkuaxs0wH6L9L4smAix5RwWS7BWI6eXGJtLYrTtmvrbX9G9RKWWu2uxK4ejB2H+00fU08aw4zv11bTknU8zbmV3iCtWrLVaANXVMDXVH7n5DqTBU72bG3iHknzqYibCbrC03802OegxFdJF0ufY0B3kOQQ+KIkh8DE8sVwhektESdjJtngT81EM/ybfgCcAAmZWoOTDgAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAS1BMVEUBIWnUeY7g5O0QLnJobZryxs1gdKHIEC7AyNrYVmsfO3rNd4rMTGQyS4X8+vu/x9n22N1SW42dfJr88fPZ3OdBQHjTXnDMiJvNLkbyVu06AAAAmklEQVQoz92QyQ7DIAxESQgxOwRI2///0uKypFGjiksvnQPY+EmDhwg2rySLA3C8l0kwciUcIFrA1n1BEfzAKD1q7pxL3kcLYPOZcuvaTColOwgX6kN1J2PgyTor2ejROnqfsD+tsHX3dWZiWnCZUtXnUP95U/QNa/EcaHhshTT1boMWOKKv0IIh/yVJx7hd632M1HrQ2vwyyycwywbEVirFRwAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAS1BMVEUBIWnUeY7g5O0QLnJobZryxs1gdKHIEC7AyNrYVmsfO3rNd4rMTGQyS4X8+vu/x9n22N1SW42dfJr88fPZ3OdBQHjTXnDMiJvNLkbyVu06AAAAmklEQVQoz92QyQ7DIAxESQgxOwRI2///0uKypFGjiksvnQPY+EmDhwg2rySLA3C8l0kwciUcIFrA1n1BEfzAKD1q7pxL3kcLYPOZcuvaTColOwgX6kN1J2PgyTor2ejROnqfsD+tsHX3dWZiWnCZUtXnUP95U/QNa/EcaHhshTT1boMWOKKv0IIh/yVJx7hd632M1HrQ2vwyyycwywbEVirFRwAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAASFBMVEXcJB8vJQcPDALvuiP2niP3nyNeRg0AAAD/xyblTSCffBf+/v4QEBDr6+vPoR6bm5vWSB7IgRyrq6swMDBbW1uHh4cuLi5xcXHPnTqaAAAAh0lEQVQoz63TyxLCIAyF4dIaflKg1N58/zd1YdVxUcjCrL+ZTA6Hzs+dbXB3tUH68aYmCH4wUADcFJoUAPoxtCjn+KFBgX0lHbgpVCmw5ZLTa32FQioxls/6S0pacozx+ELRy2Ny2R7v1aKVq5czywr7jUfUFLio6QlFTaUQNdVM9J/FtX6FJ3flBuv74gRDAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAASFBMVEXcJB8vJQcPDALvuiP2niP3nyNeRg0AAAD/xyblTSCffBf+/v4QEBDr6+vPoR6bm5vWSB7IgRyrq6swMDBbW1uHh4cuLi5xcXHPnTqaAAAAh0lEQVQoz63TyxLCIAyF4dIaflKg1N58/zd1YdVxUcjCrL+ZTA6Hzs+dbXB3tUH68aYmCH4wUADcFJoUAPoxtCjn+KFBgX0lHbgpVCmw5ZLTa32FQioxls/6S0pacozx+ELRy2Ny2R7v1aKVq5czywr7jUfUFLio6QlFTaUQNdVM9J/FtX6FJ3flBuv74gRDAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAATlBMVEX////VMEX88PHtp7ANKIjCFDCiGEDPFCsAKo/fYG/43eDSITfnipXzxMmCG1DbTl9nH1waJoI0JHXYQFLwtr10HVdNIWnniZROIWl1HVZ5UILHAAAAb0lEQVQoz43TSRKAIAxE0aDiF8F5vv9FXeBaOutXRXXoWLt00hgcjQjxpwihXUUIobfCfJCYKg2Cq8swZDoNJbh/krH5C5PMrN+y9PNf6mRVRIF12DflaRw4LYy8HiBe2sLFLxRL4W+tZo9WXPUUXqHrEc6IUEytAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAATlBMVEX////VMEX88PHtp7ANKIjCFDCiGEDPFCsAKo/fYG/43eDSITfnipXzxMmCG1DbTl9nH1waJoI0JHXYQFLwtr10HVdNIWnniZROIWl1HVZ5UILHAAAAb0lEQVQoz43TSRKAIAxE0aDiF8F5vv9FXeBaOutXRXXoWLt00hgcjQjxpwihXUUIobfCfJCYKg2Cq8swZDoNJbh/krH5C5PMrN+y9PNf6mRVRIF12DflaRw4LYy8HiBe2sLFLxRL4W+tZo9WXPUUXqHrEc6IUEytAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAUVBMVEXEAwjNnTPENBXDCQnKkzDBJBLEQhnTrjvHfSrIii7EFAvEOhfCSBvFVB52c1LDijDHYSLHdymHek7GaCTQoTWXhzaphj+Xf0OpZTG6gjOegEZoMhC2AAAAj0lEQVQoz63SSRIDMQgDQLDBI7zNPln+/9DcU4ntqkTnvghE02BooqH8CP0YjPse+9ARKaBErg09QlhzQEjwTahminWFmmkTJmFkswwW14TBGLetVrCFNhTm7bqezNIps9i81XqbrdOaAhU5Tyl678CcUI6j4DF3oIIWkYWc770wUpK303wdRYx/n9lnOJgXvZ8Hd+ApatsAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAUVBMVEXEAwjNnTPENBXDCQnKkzDBJBLEQhnTrjvHfSrIii7EFAvEOhfCSBvFVB52c1LDijDHYSLHdymHek7GaCTQoTWXhzaphj+Xf0OpZTG6gjOegEZoMhC2AAAAj0lEQVQoz63SSRIDMQgDQLDBI7zNPln+/9DcU4ntqkTnvghE02BooqH8CP0YjPse+9ARKaBErg09QlhzQEjwTahminWFmmkTJmFkswwW14TBGLetVrCFNhTm7bqezNIps9i81XqbrdOaAhU5Tyl678CcUI6j4DF3oIIWkYWc770wUpK303wdRYx/n9lnOJgXvZ8Hd+ApatsAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAV1BMVEUPR6+FklsaUaFGaojjRhZEnSZ2iGXaEhr83QkHiTAmVp1YdXuipEfOwCgIdlMKZHUVS6qRmlM0X5WzGzaNJVJ4RmN0LGVnL240PJInbm88Y49of3CaoEu2CXfUAAAAnklEQVQoz73Pyw7CIBBG4TODgkJbWnq/vP9zujNSY+vCeBZs/i+ZwP3L+AOsqhir6hxGAIhnULXGBGrVPbxmzWCwgoE5X7i9VgKaRJICZTblsMCKFLYREUtxAC3Y8HyOoQ+b6hb8MSwwyRjbBJPM4ekSkFXsKu+fuWT10CzeLw30+YLLmwDvUabdsIdugLqGwZ1B13bj2LXuHH7o9/ABsVYX6gf7JlYAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAV1BMVEUPR6+FklsaUaFGaojjRhZEnSZ2iGXaEhr83QkHiTAmVp1YdXuipEfOwCgIdlMKZHUVS6qRmlM0X5WzGzaNJVJ4RmN0LGVnL240PJInbm88Y49of3CaoEu2CXfUAAAAnklEQVQoz73Pyw7CIBBG4TODgkJbWnq/vP9zujNSY+vCeBZs/i+ZwP3L+AOsqhir6hxGAIhnULXGBGrVPbxmzWCwgoE5X7i9VgKaRJICZTblsMCKFLYREUtxAC3Y8HyOoQ+b6hb8MSwwyRjbBJPM4ekSkFXsKu+fuWT10CzeLw30+YLLmwDvUabdsIdugLqGwZ1B13bj2LXuHH7o9/ABsVYX6gf7JlYAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAVFBMVEUAlcjYVmvyxs1Ap5YQmbswo6Ignq/IEC4BIWnAyNr89/jUeY7g5O1dr3+/yzJnbppgdKFwtHCjw0j22N3f1BnPzyV/uWT+3QDZ3OePvldfc6FmbZpuQUo4AAAAzklEQVQoz42S2Q6EIAxFUQoojgvgPv//n9OCxpEY8D6Ukp7QDVaUn71C1UrVdPZNUbInUYDQAPrbEDOCzBHcCQxYVcVcZ9DWqNU5rZXSaFe6xy92LRr1oPt7AhjkQInINAXfp9aYFVNr5+6p+SikMZKFZoZPWTQ9NeO9718zxlcXFLBzPAG9CoTLDdg1cELjrjl7JzFuybCEYy1g2xS4LQTC3Il0PuDWE/P0qjqQkIUkAGuXTMO0ixlrFDZdYEsL4VbeBv4kPnKWhc5PE+sHuscKVSzXnS4AAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAVFBMVEUAlcjYVmvyxs1Ap5YQmbswo6Ignq/IEC4BIWnAyNr89/jUeY7g5O1dr3+/yzJnbppgdKFwtHCjw0j22N3f1BnPzyV/uWT+3QDZ3OePvldfc6FmbZpuQUo4AAAAzklEQVQoz42S2Q6EIAxFUQoojgvgPv//n9OCxpEY8D6Ukp7QDVaUn71C1UrVdPZNUbInUYDQAPrbEDOCzBHcCQxYVcVcZ9DWqNU5rZXSaFe6xy92LRr1oPt7AhjkQInINAXfp9aYFVNr5+6p+SikMZKFZoZPWTQ9NeO9718zxlcXFLBzPAG9CoTLDdg1cELjrjl7JzFuybCEYy1g2xS4LQTC3Il0PuDWE/P0qjqQkIUkAGuXTMO0ixlrFDZdYEsL4VbeBv4kPnKWhc5PE+sHuscKVSzXnS4AAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAVFBMVEVmzP+46P8rJhLxyBiZ3f950v/T8f/80RYAAACLzsRfX1+/v7/Pz8+egw2r3eHr5riPj4/MqRGkkT7m7O8QDQGJ0eHd6e8QEBCfn58vLy9fTwiCs6AoQUrkAAAAfElEQVQYGb3BSQ7DIBAEwAYGZgJ43+3//zNWZHELoBxShb8gQh3nUMXGaFFDea9QY922FRVoF9kJZe4QORyKbJBbtChRXs5TvELJJJpZy4QC6mfDbOaekOf0wLdBO2TZ0PBHEyxy1MiPUSGn46RDRms4MS2+W65Xci34yRvvSQUaIFkI4gAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAVFBMVEVmzP+46P8rJhLxyBiZ3f950v/T8f/80RYAAACLzsRfX1+/v7/Pz8+egw2r3eHr5riPj4/MqRGkkT7m7O8QDQGJ0eHd6e8QEBCfn58vLy9fTwiCs6AoQUrkAAAAfElEQVQYGb3BSQ7DIBAEwAYGZgJ43+3//zNWZHELoBxShb8gQh3nUMXGaFFDea9QY922FRVoF9kJZe4QORyKbJBbtChRXs5TvELJJJpZy4QC6mfDbOaekOf0wLdBO2TZ0PBHEyxy1MiPUSGn46RDRms4MS2+W65Xci34yRvvSQUaIFkI4gAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAWlBMVEXEERvxxMa4ExrIIyxVVVVVpn7llpoAAAD///8Aej300tTYYmmeJSbppKj88PDttLefDRV7NyYNczolZjZ6ChANAQElAwVKUjBKBgrPPEX44uPeeH6aSD9cnHcNwNhSAAAAfUlEQVQoz43QSQ6DMBBE0TIE4wEzJCEJ0/2vyWAgC6Sm/tJ6UqmNd5tTAfWHhEh+JASY+Q0y8xES8zgqHnInROdMrAqqN5f+EGmIzhtlRAj4cnkZtE41CxU37UonwfMYpcVjxikTOz78a2/af/tlKdg8LQPvZyMkZjfIzK7NQI0WA0pe9mYAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAWlBMVEXEERvxxMa4ExrIIyxVVVVVpn7llpoAAAD///8Aej300tTYYmmeJSbppKj88PDttLefDRV7NyYNczolZjZ6ChANAQElAwVKUjBKBgrPPEX44uPeeH6aSD9cnHcNwNhSAAAAfUlEQVQoz43QSQ6DMBBE0TIE4wEzJCEJ0/2vyWAgC6Sm/tJ6UqmNd5tTAfWHhEh+JASY+Q0y8xES8zgqHnInROdMrAqqN5f+EGmIzhtlRAj4cnkZtE41CxU37UonwfMYpcVjxikTOz78a2/af/tlKdg8LQPvZyMkZjfIzK7NQI0WA0pe9mYAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAYFBMVEUAaz/THDDGHC4rKytAPTJ+nipAQECAtZ/////80RYqKSSYLC5+nSqkJS6VjoNqQzeTfCveVGOxHyy2IyyNU6QMWjZ+niveSSncSCiJMjSveRBJSDW8QxS7Tm2HZlu1MmlGHhZsAAAAfUlEQVQoz9XTSRLCUAhFUR5Gk4j8/FYT2/3v0jFYVixnOdPLiAIi7zwed0NP604bGIwX5hTW5yZlEdbpI+ytCCmPVxFEF2i05oXxrIDOLlBncQZqY2R2gQ4WK1DbDZldoMFKCiytgyQXqLcCpNyvIggu/L6evxe+iev58gpvCkQKp08QYFcAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAYFBMVEUAaz/THDDGHC4rKytAPTJ+nipAQECAtZ/////80RYqKSSYLC5+nSqkJS6VjoNqQzeTfCveVGOxHyy2IyyNU6QMWjZ+niveSSncSCiJMjSveRBJSDW8QxS7Tm2HZlu1MmlGHhZsAAAAfUlEQVQoz9XTSRLCUAhFUR5Gk4j8/FYT2/3v0jFYVixnOdPLiAIi7zwed0NP604bGIwX5hTW5yZlEdbpI+ytCCmPVxFEF2i05oXxrIDOLlBncQZqY2R2gQ4WK1DbDZldoMFKCiytgyQXqLcCpNyvIggu/L6evxe+iev58gpvCkQKp08QYFcAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAYFBMVEX///9KbYVZdXr83QkHiTASRaUABhDaEhoAAAAPR68HfUUGIVMLNIMKZXQMWYsGhDhaMnamHz+luuHMFCNBOYl0LGQsXbkeUKSUnFFof3A8Y4+yrjzeyhwJb2ANUpcDEiy4e3zXAAAAc0lEQVQoz63QRxKAIBBEUZQRHXPO4f63FKVYCr3wr1/VNIhcJVCCOVMg5CgDIXN+gVBTBUJ9X2GQeWyFq4cEq6F9E39m4B7O00vrzgXDTcrFTh3+gPBp/DHw97zjiopcWVimRAA8fczA6CBCoGechWVKUDcmdhWS10VBkwAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAYFBMVEX///9KbYVZdXr83QkHiTASRaUABhDaEhoAAAAPR68HfUUGIVMLNIMKZXQMWYsGhDhaMnamHz+luuHMFCNBOYl0LGQsXbkeUKSUnFFof3A8Y4+yrjzeyhwJb2ANUpcDEiy4e3zXAAAAc0lEQVQoz63QRxKAIBBEUZQRHXPO4f63FKVYCr3wr1/VNIhcJVCCOVMg5CgDIXN+gVBTBUJ9X2GQeWyFq4cEq6F9E39m4B7O00vrzgXDTcrFTh3+gPBp/DHw97zjiopcWVimRAA8fczA6CBCoGechWVKUDcmdhWS10VBkwAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAb1BMVEUAOKj95Xv/99P+9MT80Rb/+eH+7qfOESb//////PD920j94GH81Sv+65jv8voQRK388fLRHzPF0uz+8bXniJPaTFx/m9NfgsjgandAar6Xrtz+6Ivsn6fzxMkgUbPULkH209f54uTwtbvf5vSvwOSsgxV0AAAAnUlEQVQoz43QxxLCMAxFUTsuekrvCaRS/v8bWYQVw9i66zOyJdXuShb4Xomgy105iSYaBtqbAF69dxlklGMlgIkG8JpiUHuXcZZEvgrA6dymHQAgcCrA+9Rau3gGTFGOAVik1tqlY8AUdU//+3l6bSgAtU+uZbaBKAS/53nMRDEIoO4bksDnQRSBhoFzoFjK5a6eKZ4Crw1J4HaQqA+p8xC4Vz8IHQAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAb1BMVEUAOKj95Xv/99P+9MT80Rb/+eH+7qfOESb//////PD920j94GH81Sv+65jv8voQRK388fLRHzPF0uz+8bXniJPaTFx/m9NfgsjgandAar6Xrtz+6Ivsn6fzxMkgUbPULkH209f54uTwtbvf5vSvwOSsgxV0AAAAnUlEQVQoz43QxxLCMAxFUTsuekrvCaRS/v8bWYQVw9i66zOyJdXuShb4Xomgy105iSYaBtqbAF69dxlklGMlgIkG8JpiUHuXcZZEvgrA6dymHQAgcCrA+9Rau3gGTFGOAVik1tqlY8AUdU//+3l6bSgAtU+uZbaBKAS/53nMRDEIoO4bksDnQRSBhoFzoFjK5a6eKZ4Crw1J4HaQqA+p8xC4Vz8IHQAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAb1BMVEX////cRET20dHdRi8Aej3pjIz//v782FYAP4fWKCjzuE0PSITXLSnszljumEXf7+fkZzitp2X70lQ1lWVObnfaPT2HvaAJfkNeq4S22cj319f1ysrogoKt1MGPxKkRg0lXp35mr4qwj36kj29psIx3kSIwAAAAr0lEQVQoz33N2RaCIBRA0YtToZWRQFk29//fGDLoBcHzvNc6sEU1+81cnVMcYMiQO+xoEvKZnY6UJiEaB9sAsuTWhzy99eA0jmxVAsJxbCuGWwX+OLLVSuWNF1sxZFpNkMW2SDnIl1viKQv1GG9JmUGYG8/bharau3yBGU9bX2nSnQsV6LHdIlW1vbwYYoJxrLekvMaJg3zcGtX2jwixsKlzpRR5d89iJfh+5G+dmP7QIhk7LnKNYwAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAb1BMVEX////cRET20dHdRi8Aej3pjIz//v782FYAP4fWKCjzuE0PSITXLSnszljumEXf7+fkZzitp2X70lQ1lWVObnfaPT2HvaAJfkNeq4S22cj319f1ysrogoKt1MGPxKkRg0lXp35mr4qwj36kj29psIx3kSIwAAAAr0lEQVQoz33N2RaCIBRA0YtToZWRQFk29//fGDLoBcHzvNc6sEU1+81cnVMcYMiQO+xoEvKZnY6UJiEaB9sAsuTWhzy99eA0jmxVAsJxbCuGWwX+OLLVSuWNF1sxZFpNkMW2SDnIl1viKQv1GG9JmUGYG8/bharau3yBGU9bX2nSnQsV6LHdIlW1vbwYYoJxrLekvMaJg3zcGtX2jwixsKlzpRR5d89iJfh+5G+dmP7QIhk7LnKNYwAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAdVBMVEUAIWlgdKHUeY7g5O3yxs3///9nbprIEC7AyNrYVmuZzP//5sD79fe/x9n22N0NK2WLl3nz88z/7M//+e//zoOgtpnZ3Of/oxv/4bORq4mewLbT1J/u787Y27H/uE//2J/Hyoawt35Ya21jdGm4vpf/xnD/8t91fNiSAAAAt0lEQVQoz9WQSRKDIBBFcUBUBhEQZ818/yMGimBlYYlZ5m2g+a+6iwZFmkTAkCOU2zOLixTsYQOrOtFXB6oVD7WcUqoZIxAhwgjRpqS7ItrhR/HK+ThzfvGjDZqYqQhBwpi2tUtqiJ+dgPXWM0rSIs7sZ9zNv9dQLRhvog/der7VaVVYtGL6iD7wC7eqS+a1w51aRhDi8WpbrGQTFO9SQingLSiCpjSEGwJQDWU5VOCM2fenvL/jDaJ7Cj8g7Qw3AAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAdVBMVEUAIWlgdKHUeY7g5O3yxs3///9nbprIEC7AyNrYVmuZzP//5sD79fe/x9n22N0NK2WLl3nz88z/7M//+e//zoOgtpnZ3Of/oxv/4bORq4mewLbT1J/u787Y27H/uE//2J/Hyoawt35Ya21jdGm4vpf/xnD/8t91fNiSAAAAt0lEQVQoz9WQSRKDIBBFcUBUBhEQZ818/yMGimBlYYlZ5m2g+a+6iwZFmkTAkCOU2zOLixTsYQOrOtFXB6oVD7WcUqoZIxAhwgjRpqS7ItrhR/HK+ThzfvGjDZqYqQhBwpi2tUtqiJ+dgPXWM0rSIs7sZ9zNv9dQLRhvog/der7VaVVYtGL6iD7wC7eqS+a1w51aRhDi8WpbrGQTFO9SQingLSiCpjSEGwJQDWU5VOCM2fenvL/jDaJ7Cj8g7Qw3AAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAdVBMVEXUAAAAAACioaDw8PBqAAD/0gD0ngBAgAD///8AZADS0dDCnADaiwPyr6/97+/tk4b41dUQSBAwSjBkaGA5cQChhxDUIhIQEBBmYGBeAAB0aDDnb2/QWzvnuQBoMDBwamCIEBD0v7+rOQDWDw/f39/3qA/dagBgvDPGAAAAh0lEQVQoz42TRxLCMBAEB4nQSA4imWCbDP9/IheulrbPXbW1s7Nym7UJEbZGEb/br8oIwB0WRQRAuNjElPytWuYR4Nse3F15gPenA8I1Lza9FL/S0PjTeT6NoH6NsWoB3HE2iYAhjhUGselifCYoj67h0RaX4Y8lHsAWuP2ExlJYa2YtrvUVfoyrFApCzR7PAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAdVBMVEXUAAAAAACioaDw8PBqAAD/0gD0ngBAgAD///8AZADS0dDCnADaiwPyr6/97+/tk4b41dUQSBAwSjBkaGA5cQChhxDUIhIQEBBmYGBeAAB0aDDnb2/QWzvnuQBoMDBwamCIEBD0v7+rOQDWDw/f39/3qA/dagBgvDPGAAAAh0lEQVQoz42TRxLCMBAEB4nQSA4imWCbDP9/IheulrbPXbW1s7Nym7UJEbZGEb/br8oIwB0WRQRAuNjElPytWuYR4Nse3F15gPenA8I1Lza9FL/S0PjTeT6NoH6NsWoB3HE2iYAhjhUGselifCYoj67h0RaX4Y8lHsAWuP2ExlJYa2YtrvUVfoyrFApCzR7PAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAe1BMVEWNFTquVivxjA2KFDfZhi6miCzDbg3/vikAU07rdADGaTCyTTJ/EDP5pxy0ZCeFETW8bCjvsCX1tCXSiiffmyWfRCvTlh/CcSj5uCWRMyvAfyCiUifamCTroCTRgCqkXh/gqSXqqSXHfSiGJiqVSCLDix3kliuQIzDXkSbhs4zbAAAA8UlEQVQoz42SSXLDIBBFmxCnMxAGCRAg2Zpt3/+EaZQsXLFw+S1gwavfVfQHfBLA4ZA5fmfwfHrd43Qk8fCeefsgXrAJDu5hVfNf/NKMHpz6MxTfLi0/70QgJ14VCCdltNbmAZzDjkhMtbZmWI1v+2Rkm1N3RV7X0Qc0JlUptr1+IE7ae/R+mVnL5ARlkSmXBhMWRlhWFC9d4k1lAlbbT8ty4rqKm5XUZbH39kYsJ0Ld40jG2CyGpouiqLrZsRa1At5V9oEI7AIgwpX+j2EsjqYVZqPLSa4bE867K2RbKWi8EL+nEHy3FE2IxZo9Xdwn+QGnxBrCNL/vUwAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAe1BMVEWNFTquVivxjA2KFDfZhi6miCzDbg3/vikAU07rdADGaTCyTTJ/EDP5pxy0ZCeFETW8bCjvsCX1tCXSiiffmyWfRCvTlh/CcSj5uCWRMyvAfyCiUifamCTroCTRgCqkXh/gqSXqqSXHfSiGJiqVSCLDix3kliuQIzDXkSbhs4zbAAAA8UlEQVQoz42SSXLDIBBFmxCnMxAGCRAg2Zpt3/+EaZQsXLFw+S1gwavfVfQHfBLA4ZA5fmfwfHrd43Qk8fCeefsgXrAJDu5hVfNf/NKMHpz6MxTfLi0/70QgJ14VCCdltNbmAZzDjkhMtbZmWI1v+2Rkm1N3RV7X0Qc0JlUptr1+IE7ae/R+mVnL5ARlkSmXBhMWRlhWFC9d4k1lAlbbT8ty4rqKm5XUZbH39kYsJ0Ld40jG2CyGpouiqLrZsRa1At5V9oEI7AIgwpX+j2EsjqYVZqPLSa4bE867K2RbKWi8EL+nEHy3FE2IxZo9Xdwn+QGnxBrCNL/vUwAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAgVBMVEXv5+oYMHD////GzNy+Z3Hkv8PIEBDesLbFd4C5V2Pz8/eLl7dvfqaMmLhEV4s1SoJSZJTFDg740AB+i68nPXncggLvvwDRXQPIGg23v9NgcJzIJQvorwCpssrVaQXQSgfFGQz1zQDKQwnGLwnfkgDgjQDU2OTYxFDi03vu5rZRY5M4CaL6AAAACnRSTlP8////5PL/8Obhjyud7gAAARFJREFUKM+NkImugjAQRaetgrJVpJtsBcT1/z/wtayKCbxJyCnDSe8M4CwrNo8udZN9t+H7NZNctlIKHsfOqhhftb7V57q8boiOozLOy+znwl/RUXGmlHK2RBU3sixlVqkNsZJc5LngcmPGSrcir+tctLpa/z1ciLMpIfi62Nzy2op1zvVC9PaH484F7Lk98ev5eDxfGIO7Ox723kgg2BYpJnqW3kejJyB0Ck4MoZlRmkaWzDRmAkkiRIMLmei/EXr7hFwCiqJkInRJJmokdMRAFh8ARWEY2oiRNAnDhNpRTCOaCH5qJd+faQZlqTlYaaZNGm6feL/jIfaDwLpF6LAQRSwoCCkCZkboF+nJAP2z/gCvnR084pgM9wAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAgVBMVEXv5+oYMHD////GzNy+Z3Hkv8PIEBDesLbFd4C5V2Pz8/eLl7dvfqaMmLhEV4s1SoJSZJTFDg740AB+i68nPXncggLvvwDRXQPIGg23v9NgcJzIJQvorwCpssrVaQXQSgfFGQz1zQDKQwnGLwnfkgDgjQDU2OTYxFDi03vu5rZRY5M4CaL6AAAACnRSTlP8////5PL/8Obhjyud7gAAARFJREFUKM+NkImugjAQRaetgrJVpJtsBcT1/z/wtayKCbxJyCnDSe8M4CwrNo8udZN9t+H7NZNctlIKHsfOqhhftb7V57q8boiOozLOy+znwl/RUXGmlHK2RBU3sixlVqkNsZJc5LngcmPGSrcir+tctLpa/z1ciLMpIfi62Nzy2op1zvVC9PaH484F7Lk98ev5eDxfGIO7Ox723kgg2BYpJnqW3kejJyB0Ck4MoZlRmkaWzDRmAkkiRIMLmei/EXr7hFwCiqJkInRJJmokdMRAFh8ARWEY2oiRNAnDhNpRTCOaCH5qJd+faQZlqTlYaaZNGm6feL/jIfaDwLpF6LAQRSwoCCkCZkboF+nJAP2z/gCvnR084pgM9wAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAh1BMVEUAKGjXeorg5e2CgV70x8xncplgeaHOESbAytrcV2VSYGD8zxn8+vu/ydlDVGG2oj/9wDoSNGruxh0AnkkzS2TarhtKWWScrjfuvDnIiw7Mxx53eV3mwCTepg5GfDf98fP31dn88fL21djY3uj13uLZ3OYTNGq+fgv8q5OrVBa7ZBb+qoVPrjjs6fq2AAAAtUlEQVQoz92Q2Q6DIBBFR1HRIoL7vrRq9///vkIJTZsYbV97HoDhnjBhwLNMBwQuxq7cbcOzYAkZSFWJulpRpbiquZTSeTrsfYx9sY6ipIsiXuBHMdk9SXRrwej3g2zdD9Msa5WgomiaNEWvNx3T8gxbfkad9D3iN96eSvSh6fG8q4ifOSmJFnWgBy5VldSEXK5tVMMWWUS6jkTZpnhk1T2uWLgpQpDHcR7AFwSMfeUBhCH8JQ/SlAsDOOEqEAAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAh1BMVEUAKGjXeorg5e2CgV70x8xncplgeaHOESbAytrcV2VSYGD8zxn8+vu/ydlDVGG2oj/9wDoSNGruxh0AnkkzS2TarhtKWWScrjfuvDnIiw7Mxx53eV3mwCTepg5GfDf98fP31dn88fL21djY3uj13uLZ3OYTNGq+fgv8q5OrVBa7ZBb+qoVPrjjs6fq2AAAAtUlEQVQoz92Q2Q6DIBBFR1HRIoL7vrRq9///vkIJTZsYbV97HoDhnjBhwLNMBwQuxq7cbcOzYAkZSFWJulpRpbiquZTSeTrsfYx9sY6ipIsiXuBHMdk9SXRrwej3g2zdD9Msa5WgomiaNEWvNx3T8gxbfkad9D3iN96eSvSh6fG8q4ifOSmJFnWgBy5VldSEXK5tVMMWWUS6jkTZpnhk1T2uWLgpQpDHcR7AFwSMfeUBhCH8JQ/SlAsDOOEqEAAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAhFBMVEX/////i4v/aGj/f3//VFT/u7v/QUEXF5b/AABkZLn/bm7/zMx+YaFWM4JgirTvGB2PkbKwbobgT1n1wcclFYxFioSnoLn/EBDfiZOEPHxQlbL/WFj/MDD/q6v/5OSnYZH/MzMfg56yVH6WXB4wp+NCfoj/NDS+UldzI298DFSHeJVeSqKsIk37AAAAj0lEQVQoz8XNxw4DIQxFUQPBkAxM7yWTXv///8Lag8QoWeTKq6cjGfTK4BfYNCtgkp26vn/PWRKA6bF7VtdzXKUBmF/MI47t655TuCHV7c7V1nQHGt4AEQ4IoQQTzJ0IQhlpKXUkg3DEPbobg3Dgkrsbvn+9JRk2cT4xQ3dQNFsgFnYxL6FSZekZfdDbH+EHirAUn8rfZdMAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAhFBMVEX/////i4v/aGj/f3//VFT/u7v/QUEXF5b/AABkZLn/bm7/zMx+YaFWM4JgirTvGB2PkbKwbobgT1n1wcclFYxFioSnoLn/EBDfiZOEPHxQlbL/WFj/MDD/q6v/5OSnYZH/MzMfg56yVH6WXB4wp+NCfoj/NDS+UldzI298DFSHeJVeSqKsIk37AAAAj0lEQVQoz8XNxw4DIQxFUQPBkAxM7yWTXv///8Lag8QoWeTKq6cjGfTK4BfYNCtgkp26vn/PWRKA6bF7VtdzXKUBmF/MI47t655TuCHV7c7V1nQHGt4AEQ4IoQQTzJ0IQhlpKXUkg3DEPbobg3Dgkrsbvn+9JRk2cT4xQ3dQNFsgFnYxL6FSZekZfdDbH+EHirAUn8rfZdMAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAilBMVEXPFCvSzsrc3Nz19fXSfIfKHzTNSVnJESjMEinKLEDHSknAOzvHXmvCHDLTo6jMZnPHU1Tkx8vLln3bx6nFOEnHRVO6e3HIkXXKn6TKn5fLUhrIf4i9cCrGUGDPn4q9Sy3Rho7NLUHVzJLd0ovVv8LLHCXSkZnit7vTqq/z5+jOuYvEp3DCnV/t7e074otqAAAAeUlEQVQYGd3BRwKCMBRAwQcE/g+92Bv27v2vpxeQZOXCGf6X8mF3gIgwYJyq3XadoKvZdMR3Mi/DYxtVsF4KQ9JeJHk1IlfDID1B9niaIsxxsbfgHgWHBAe9RGVtzCbGod63Cqo4VeFZ8ZI0+QIvRZDhJZ7gx8b8whv8pgVlegsDCgAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAilBMVEXPFCvSzsrc3Nz19fXSfIfKHzTNSVnJESjMEinKLEDHSknAOzvHXmvCHDLTo6jMZnPHU1Tkx8vLln3bx6nFOEnHRVO6e3HIkXXKn6TKn5fLUhrIf4i9cCrGUGDPn4q9Sy3Rho7NLUHVzJLd0ovVv8LLHCXSkZnit7vTqq/z5+jOuYvEp3DCnV/t7e074otqAAAAeUlEQVQYGd3BRwKCMBRAwQcE/g+92Bv27v2vpxeQZOXCGf6X8mF3gIgwYJyq3XadoKvZdMR3Mi/DYxtVsF4KQ9JeJHk1IlfDID1B9niaIsxxsbfgHgWHBAe9RGVtzCbGod63Cqo4VeFZ8ZI0+QIvRZDhJZ7gx8b8whv8pgVlegsDCgAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAkFBMVEUARq7hugF2WC2FXz+qozrPqQJwVSXMCS//0gDujw9pTx58XC3wxQChhg0/MBi/nAWzORRrUhh5XR6DZR+HZiiZdAxgYjlaQiGVGRZQPiatYyrSmgF4SQ6sYwrGpADEkQGFgEqvjgoXQY2Ka0Q2TmR1TCnMNBzDfwdycUJlYSqkKRZtaE6hUAxdVxg9S0+YakKn2tOlAAAAhElEQVQoz83SNxLDMAwEQAYDosWoHJwt5/j/37ll4Rmw1NVb4ObAWJyFirLM4rBZQd9ACvSWn2tVAQnzzmN1cAUJcQwhXEROQa7HV98/pDAEtO47QIMStwQ0w/Nzb48SyRu796097XVJQuGuU71Zk2WU2ZVS2BUkLAO64Glb8/m/2X/4A1rfExgCJ78JAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAkFBMVEUARq7hugF2WC2FXz+qozrPqQJwVSXMCS//0gDujw9pTx58XC3wxQChhg0/MBi/nAWzORRrUhh5XR6DZR+HZiiZdAxgYjlaQiGVGRZQPiatYyrSmgF4SQ6sYwrGpADEkQGFgEqvjgoXQY2Ka0Q2TmR1TCnMNBzDfwdycUJlYSqkKRZtaE6hUAxdVxg9S0+YakKn2tOlAAAAhElEQVQoz83SNxLDMAwEQAYDosWoHJwt5/j/37ll4Rmw1NVb4ObAWJyFirLM4rBZQd9ACvSWn2tVAQnzzmN1cAUJcQwhXEROQa7HV98/pDAEtO47QIMStwQ0w/Nzb48SyRu796097XVJQuGuU71Zk2WU2ZVS2BUkLAO64Glb8/m/2X/4A1rfExgCJ78JAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAllBMVEUBIWkrPWOynWf8+vvyxs1nbppgdKHIEC7AyNrYVmu/x9kAIGfg5O3Ueo66pmkVN2dVbm7TeY3f4+z88fP21dpbj4/Z3OcXL2QfRX4CNHZbX2UzYXN2e2utu7k2hKWGhm5Oh46/rXz13uNxmrRdhqCqzMyVpqZ+objP3dodTFuYg1Srl25SdXZZcGwQhbmyjlF1k4CbmI4Wf3HSAAAAv0lEQVQoz93Q1w6DIBQG4AMqOBG3ddTRvdv3f7lK1I7EqL3tfwE58IUTDmiyS6CJSqkqdsXSZBiK4rS0hYKZBGCECjjKVF3Xw9r3JEqlZg2bUh+EdCA/QiNCSYIio2/dJJQ8X7T2/DoUdXuDMH4UDKPXm8SVNUcRnyGmrFlKf44YqyrM0Bfrx/NJbc4vGed2B1v2HrigHSzKYFleFzAV+4bvQbCchsYRn9NDakxCyE55vl3DjOz2mxXMShzDX+YJ/VkMBuOm1OEAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAllBMVEUBIWkrPWOynWf8+vvyxs1nbppgdKHIEC7AyNrYVmu/x9kAIGfg5O3Ueo66pmkVN2dVbm7TeY3f4+z88fP21dpbj4/Z3OcXL2QfRX4CNHZbX2UzYXN2e2utu7k2hKWGhm5Oh46/rXz13uNxmrRdhqCqzMyVpqZ+objP3dodTFuYg1Srl25SdXZZcGwQhbmyjlF1k4CbmI4Wf3HSAAAAv0lEQVQoz93Q1w6DIBQG4AMqOBG3ddTRvdv3f7lK1I7EqL3tfwE58IUTDmiyS6CJSqkqdsXSZBiK4rS0hYKZBGCECjjKVF3Xw9r3JEqlZg2bUh+EdCA/QiNCSYIio2/dJJQ8X7T2/DoUdXuDMH4UDKPXm8SVNUcRnyGmrFlKf44YqyrM0Bfrx/NJbc4vGed2B1v2HrigHSzKYFleFzAV+4bvQbCchsYRn9NDakxCyE55vl3DjOz2mxXMShzDX+YJ/VkMBuOm1OEAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAArlBMVEX////39/e/U1jPAAn8/PzHAAnjY2raAAzpZm3UAAsAAACbAQXQGAny8vL09PS4AArVRk64GyNVAAHCOAnFfIAbBACiExmvAAaRAQejAATOmp2+io27Jwa9RwbCcnfbxcbTuru5JizFbnLQq63ksbThrrAuAADESE7TuLnCICmnTB13AAR+OQCtMDe6NjvLMjtiAALdIge5bQbDYAjITgq2VwGSP0KTPkS9AAi3cnZPTm/iAAAAy0lEQVQoz53P1xKCMBAF0BQSTAJSpKP0Yhe7/v+P+czABMb7mD2TuwvAn1EAgBBCAJQJl5VbdD6jbZlNSKdFsRARap2J6gpf4jCMLriagLV9irsuOtm1fMW0aN5f23ZeTZHKllSS3LN2lrWzvDyRXqNjRjBjmDCsS7uXjBAWBIwQtpRD7Aqf80/gYjnUCT8IzsWBE2k1RIbhe8ej5xsGgv3ZohdKqWnu96ZJKe1PgDqItnlqw9cRqLprdR58rOZB7T4Trm9zf9xcR+APFrAUctS1tzYAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAArlBMVEX////39/e/U1jPAAn8/PzHAAnjY2raAAzpZm3UAAsAAACbAQXQGAny8vL09PS4AArVRk64GyNVAAHCOAnFfIAbBACiExmvAAaRAQejAATOmp2+io27Jwa9RwbCcnfbxcbTuru5JizFbnLQq63ksbThrrAuAADESE7TuLnCICmnTB13AAR+OQCtMDe6NjvLMjtiAALdIge5bQbDYAjITgq2VwGSP0KTPkS9AAi3cnZPTm/iAAAAy0lEQVQoz53P1xKCMBAF0BQSTAJSpKP0Yhe7/v+P+czABMb7mD2TuwvAn1EAgBBCAJQJl5VbdD6jbZlNSKdFsRARap2J6gpf4jCMLriagLV9irsuOtm1fMW0aN5f23ZeTZHKllSS3LN2lrWzvDyRXqNjRjBjmDCsS7uXjBAWBIwQtpRD7Aqf80/gYjnUCT8IzsWBE2k1RIbhe8ej5xsGgv3ZohdKqWnu96ZJKe1PgDqItnlqw9cRqLprdR58rOZB7T4Trm9zf9xcR+APFrAUctS1tzYAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAArlBMVEX////EKTjjmJ87IQ52CjqlDinCITEAAGYYAl1GBkzWZnHmo6n33+LUYWzknqTv7+/z1tn12tzSXWg0HQ2TeThBIw+akYj+/f3y0tV7XBbRWWVTNidCKhhrMxTW1NLe2dOTg3XGvrfLyMWunnZtWC+xsbHu7OdcMx5LJxFDMCbU0cl6WkhwY1rPwJimfhnj3Mepqam4trRkUkN5akOpijeOaxGObBR+dGbKwKKwmVwJBAHeAAAAzUlEQVQoz5XS5w6CMBQF4Kt1r6oUENnDwXaP938xgcgIKVjPr5J8acq5F4YMGY17fWBBncl0BkwoDQMyfaMBZmi+WGU36b56MCkwRYMcARiyqh5lvQYztO4uIQ8+HBGPOHm306ARpdE4PnGcIpz2UKBtdyNCLVbgIgW5OD03oiSihYWLgtD5F4Rb8rsCHxQ9Ut+XkIiQN5Gc0KsWTsMaWB5xbHsPtHrKDiGWCH7p34+2qcTSQ7pHV2icdTnn0Hg6NmZdCmiFzGv21+JW8QewIBq5Sg9RSgAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAArlBMVEX////EKTjjmJ87IQ52CjqlDinCITEAAGYYAl1GBkzWZnHmo6n33+LUYWzknqTv7+/z1tn12tzSXWg0HQ2TeThBIw+akYj+/f3y0tV7XBbRWWVTNidCKhhrMxTW1NLe2dOTg3XGvrfLyMWunnZtWC+xsbHu7OdcMx5LJxFDMCbU0cl6WkhwY1rPwJimfhnj3Mepqam4trRkUkN5akOpijeOaxGObBR+dGbKwKKwmVwJBAHeAAAAzUlEQVQoz5XS5w6CMBQF4Kt1r6oUENnDwXaP938xgcgIKVjPr5J8acq5F4YMGY17fWBBncl0BkwoDQMyfaMBZmi+WGU36b56MCkwRYMcARiyqh5lvQYztO4uIQ8+HBGPOHm306ARpdE4PnGcIpz2UKBtdyNCLVbgIgW5OD03oiSihYWLgtD5F4Rb8rsCHxQ9Ut+XkIiQN5Gc0KsWTsMaWB5xbHsPtHrKDiGWCH7p34+2qcTSQ7pHV2icdTnn0Hg6NmZdCmiFzGv21+JW8QewIBq5Sg9RSgAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAtFBMVEUBIWnyxs1nbppgdKEAor0AIGfYVmvIEC7AyNoAnrkuZ5M+VYqmPwb8+vu/x9kbN3b22N3g5O3Ueo7TeY3f4+yYRBP88fMsh47Z3OcAmrNldYmAh4ZtgpF9aD1Jg3wJkIsPehwFfzouSIE2XY8AdYkAUV6acFKITyhSaB9AV1e4YwAAiaARWWeqRxRwkI9eV1RwqJM/pIQtSTQgY2xwqXsReisAjWNVIwAwkFZVflocm6FHYRSUXZUeAAAA0klEQVQoz9XQxxKDIBQF0GdFElRMYje9997//78CgzFZGFnnLmAenJk7AKbS0oDFQsjiu9owFSiL2hRUQM48DaCCcljJLMdxIkoDGyGbrREbnVKISiJujDwyWIsxHi0xjut5NUtkB5RXB5RGfBYQ6+P5dqXj+rtcaylmU+WP0TzFbKj5MYP6ZtctoGDv7/miHB5v+wIK9vlwTgvYOXW/qn+EwUe7f5HDYdi5H879MHQl0J0Scu09SduQQEgJWfRmfiJz4Kb+2p9kUgcGDLLEhT/KC0hSDxL08Yr9AAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAtFBMVEUBIWnyxs1nbppgdKEAor0AIGfYVmvIEC7AyNoAnrkuZ5M+VYqmPwb8+vu/x9kbN3b22N3g5O3Ueo7TeY3f4+yYRBP88fMsh47Z3OcAmrNldYmAh4ZtgpF9aD1Jg3wJkIsPehwFfzouSIE2XY8AdYkAUV6acFKITyhSaB9AV1e4YwAAiaARWWeqRxRwkI9eV1RwqJM/pIQtSTQgY2xwqXsReisAjWNVIwAwkFZVflocm6FHYRSUXZUeAAAA0klEQVQoz9XQxxKDIBQF0GdFElRMYje9997//78CgzFZGFnnLmAenJk7AKbS0oDFQsjiu9owFSiL2hRUQM48DaCCcljJLMdxIkoDGyGbrREbnVKISiJujDwyWIsxHi0xjut5NUtkB5RXB5RGfBYQ6+P5dqXj+rtcaylmU+WP0TzFbKj5MYP6ZtctoGDv7/miHB5v+wIK9vlwTgvYOXW/qn+EwUe7f5HDYdi5H879MHQl0J0Scu09SduQQEgJWfRmfiJz4Kb+2p9kUgcGDLLEhT/KC0hSDxL08Yr9AAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAvVBMVEVps+fyxs2OiqtgdKFhptbTeo3YVmvIEC4BIWnAyNrg5O3kiJVnbpq/yNn7+vtmr+PWS2HZ3efAQhf88fP21drIRVpsrt1voM2buM5mbZrEWQ/YhHzUegjw8PCx3cXijJrJiIbLkXTZvADN49bPLkjTiJD13uN/uOF+uOCo0Mi1FySjyFRgrIHF0NnHUBLIgYjY2NiF1ZrPsHa5iXDYcBHOhgXknQFIt3uZz7HLYFhdyI6P16/Y0M27zb3c8uYVHlLLAAAA20lEQVQoz9XQxxLCIBAGYKIQjEgCKfZuYu+9v/9jGYSMF0a8+h+Anf0YZgG2VcwX0jgYO2IvIdsCuoiGoBLKSguzpoDZJS10KKV8GAYuxm668rSkWog1eTe8nIpngND3D77frE+hejoNd4NQPB2EQy5qCbf1fv/Y3C9hNky+aNmoJIZ5n2pqGNjode1Lr7tTULLseySV8HxrJ8n11FZQss+HCyrh4D4g5PloQfA9MGIsjlkUGeGq02GMNJAJegu3RchmRj0DBGO+JmQ+GQFjylWEqmXwSyoV8E95AQvtEN53dkXyAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAvVBMVEVps+fyxs2OiqtgdKFhptbTeo3YVmvIEC4BIWnAyNrg5O3kiJVnbpq/yNn7+vtmr+PWS2HZ3efAQhf88fP21drIRVpsrt1voM2buM5mbZrEWQ/YhHzUegjw8PCx3cXijJrJiIbLkXTZvADN49bPLkjTiJD13uN/uOF+uOCo0Mi1FySjyFRgrIHF0NnHUBLIgYjY2NiF1ZrPsHa5iXDYcBHOhgXknQFIt3uZz7HLYFhdyI6P16/Y0M27zb3c8uYVHlLLAAAA20lEQVQoz9XQxxLCIBAGYKIQjEgCKfZuYu+9v/9jGYSMF0a8+h+Anf0YZgG2VcwX0jgYO2IvIdsCuoiGoBLKSguzpoDZJS10KKV8GAYuxm668rSkWog1eTe8nIpngND3D77frE+hejoNd4NQPB2EQy5qCbf1fv/Y3C9hNky+aNmoJIZ5n2pqGNjode1Lr7tTULLseySV8HxrJ8n11FZQss+HCyrh4D4g5PloQfA9MGIsjlkUGeGq02GMNJAJegu3RchmRj0DBGO+JmQ+GQFjylWEqmXwSyoV8E95AQvtEN53dkXyAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAz1BMVEUBIWkeaiHUeY4+VYnyxs1nbpo9VIrIEC7AyNrYVms+VYoPLXEtcSMAXCVgdKENZCa/x9ng5O37/P378vTf4+weOnj21dqHiYjPu37Z3Odfc6HltDmYlIPKnSG6tIhthiXTrEGhlGf99/iGljx8jSYydT6IqI6Ikyc4cyJ3n4JPg0YtbDUcbz8bYydcgiXL2M3LzsG5y7yYtqH13uNhbYPXrDm7kR6rm26ogRvAqGNJXiTUsE9QfiNcfEEpbSpviinHxbe2zcDi5OBYjGGSrXzI51XpAAAA80lEQVQoz7XQyZKCMBAG4ETQsCQEQQXc930p911ndN7/mSY9kKo5UOTkf0jo9FfpIsjUS1UkYhBiwJ7PmTpKCzSAxhCqooNQBgWYyQzXdaNtxfcI6Yo1EqWbCklK/hp2IYmtgBambHHBnGnJaJHI8ytdQsS6jaBOYAsPOrxFNTncKelmLg8/4xThKzm28AgPV7O+hDGTz/OPWvT22KzvSzlaNuSDA40hG882X3zMNJQdi+Pl+sVGVAW1RR+v/OlTeaM9pfjbm9BBWQGbYY+/f+a9Zmhnul3tcB7O+SRs1ALF6Hr7dG039nXVaEGDYydQs4/nFxTcFD++Tcb9AAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAz1BMVEUBIWkeaiHUeY4+VYnyxs1nbpo9VIrIEC7AyNrYVms+VYoPLXEtcSMAXCVgdKENZCa/x9ng5O37/P378vTf4+weOnj21dqHiYjPu37Z3Odfc6HltDmYlIPKnSG6tIhthiXTrEGhlGf99/iGljx8jSYydT6IqI6Ikyc4cyJ3n4JPg0YtbDUcbz8bYydcgiXL2M3LzsG5y7yYtqH13uNhbYPXrDm7kR6rm26ogRvAqGNJXiTUsE9QfiNcfEEpbSpviinHxbe2zcDi5OBYjGGSrXzI51XpAAAA80lEQVQoz7XQyZKCMBAG4ETQsCQEQQXc930p911ndN7/mSY9kKo5UOTkf0jo9FfpIsjUS1UkYhBiwJ7PmTpKCzSAxhCqooNQBgWYyQzXdaNtxfcI6Yo1EqWbCklK/hp2IYmtgBambHHBnGnJaJHI8ytdQsS6jaBOYAsPOrxFNTncKelmLg8/4xThKzm28AgPV7O+hDGTz/OPWvT22KzvSzlaNuSDA40hG882X3zMNJQdi+Pl+sVGVAW1RR+v/OlTeaM9pfjbm9BBWQGbYY+/f+a9Zmhnul3tcB7O+SRs1ALF6Hr7dG039nXVaEGDYydQs4/nFxTcFD++Tcb9AAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAABC1BMVEUBIWlnbpoRPkkFKV7yxs1gdKHUeY7IEC7AyNrYVmsQK2QCbsY8TlEKMlVcZkP8+vu/x9ng5O0sZCunoiy3rShRZD8fUDhdiBzf4+wBI2P88fMLLVx/hDT21doxcCMiWTAmXS9DajANW3mDkSd9nkORq1oDJWQeN1ycnCoSOVJDXT0tQlczQWxmbZpBdCXIuyQ1YlZkeDansRVfY3F+emk/iZHY3ej13uPZ2+ZIV00WRkEpIFxNLkVAS3BrckNIUWt6fj1Kfx41Xy/YxyAyU0FseVtScTZEVVWRpRkySk9Jfh1xkzJ4lxhrgD1pbFaMfnUeaH2utBVlWlNJaFSkuoSKf3oge6bt8OxBiYdXl17vAAABKklEQVQoz7WS13LCMBBFFxtjcMcVN0xzqKG3VNJ77///JZHsEM9kGPkp90HS3T2aXe0ICtkSA0h5ls3jPZMrZGGTcAKjMYhdkQEgoBj8i9HiVmLyiqIsF74js6yM1jmyyjonmvt7vyC7QTguGAC91eQAgHJJIKerLvTOpxwIXpmOSiPNZcfHpR1/scQehW06CILL+4szXdPon06ZUraQy+DHMEV02o7bU8uUO32pV7tHA41LsPV4ErR9MqpLjw91U9Sk6GqMJQPHaJS41hvD98lr32wCUd7A4Pnwg69RaocIVswKP3sL+aeR1CKCYpXiG5/hrNZpSURQODW+rLHVqKkVm9zkoXBbfr45Hu7SkCKJuruy+pyRxoEnVMdWW99JBbvoP9jQ5OCf9A3qch0S+mTgLwAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAABC1BMVEUBIWlnbpoRPkkFKV7yxs1gdKHUeY7IEC7AyNrYVmsQK2QCbsY8TlEKMlVcZkP8+vu/x9ng5O0sZCunoiy3rShRZD8fUDhdiBzf4+wBI2P88fMLLVx/hDT21doxcCMiWTAmXS9DajANW3mDkSd9nkORq1oDJWQeN1ycnCoSOVJDXT0tQlczQWxmbZpBdCXIuyQ1YlZkeDansRVfY3F+emk/iZHY3ej13uPZ2+ZIV00WRkEpIFxNLkVAS3BrckNIUWt6fj1Kfx41Xy/YxyAyU0FseVtScTZEVVWRpRkySk9Jfh1xkzJ4lxhrgD1pbFaMfnUeaH2utBVlWlNJaFSkuoSKf3oge6bt8OxBiYdXl17vAAABKklEQVQoz7WS13LCMBBFFxtjcMcVN0xzqKG3VNJ77///JZHsEM9kGPkp90HS3T2aXe0ICtkSA0h5ls3jPZMrZGGTcAKjMYhdkQEgoBj8i9HiVmLyiqIsF74js6yM1jmyyjonmvt7vyC7QTguGAC91eQAgHJJIKerLvTOpxwIXpmOSiPNZcfHpR1/scQehW06CILL+4szXdPon06ZUraQy+DHMEV02o7bU8uUO32pV7tHA41LsPV4ErR9MqpLjw91U9Sk6GqMJQPHaJS41hvD98lr32wCUd7A4Pnwg69RaocIVswKP3sL+aeR1CKCYpXiG5/hrNZpSURQODW+rLHVqKkVm9zkoXBbfr45Hu7SkCKJuruy+pyRxoEnVMdWW99JBbvoP9jQ5OCf9A3qch0S+mTgLwAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAABR1BMVEX34BdnCRRPBQzzxMn67Gn55kL88PEAAAD///8JBgPWMiHhaXbQFCj9+c2Yig378pzMuRL+/foQDwYtKgn77nmMjIvx1xbkfB3hax1BBAvqlZ0aAgT54eP20tZcBxA6NQX//vQcHBpSUk/19fVnXQlpZDT78JE+Pj51dXX34R7+/On66Va0tLT44yelpaX++9ztrBrdWx389bGyPBqhRlCuEx2lLxjnh5KyJhyjGRsoDwT998Sllg/45DM6OCHq6upyaAr03RZiYmKYmJi+vr7BwcGkmTwsLCzPz8/ZxBTCsBL89r1GPwaPgg3886l5bguwihJcVAjZ2dncpxc0BAnYq6/CDyPBexXmjD/ro2ORbg7IUBzXTx/jdoGTLxdjIQ6DIy7XPE7sn6jHx8ftpa3keIRtCBRZEw6GPkZjHyZSRkfw8PC1DiE//erTAAABIUlEQVQYGY3B1XLCABAAwIveJRR3d3eXKnV3d/f/fy6UyUygHcguaGYTQBsis97ICzARDYSmE/wsjEMqma1ENg8ATvgHjcpULs7z8Fc4Yl+Okprv8cZXrNiyaRiCfWuLS+tm+uVvTvXo/ERU3LUJaVCgQkqmCiciiZzuRafjfCRy1GPWG3kB+lAtwHzWcl9+juhZ9HhIEdIbeViNz0mokL4DDOLHu/2p6XkQSQ16uiZDzCphH8O0vcgGsNO+rxUOSQUUjs2dAyuy7Fur88p4W3duFtGSTOXmaQCGOM4ubxtyvS433F43DoQj9pUoEYwoyfL1VbVaPj1GNWscRjhKLper7HQe7e9tW1AFxtmYWQhacAAmMhliQQkRtDEZQJsu/ADqTiXJks3I9QAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAABR1BMVEX34BdnCRRPBQzzxMn67Gn55kL88PEAAAD///8JBgPWMiHhaXbQFCj9+c2Yig378pzMuRL+/foQDwYtKgn77nmMjIvx1xbkfB3hax1BBAvqlZ0aAgT54eP20tZcBxA6NQX//vQcHBpSUk/19fVnXQlpZDT78JE+Pj51dXX34R7+/On66Va0tLT44yelpaX++9ztrBrdWx389bGyPBqhRlCuEx2lLxjnh5KyJhyjGRsoDwT998Sllg/45DM6OCHq6upyaAr03RZiYmKYmJi+vr7BwcGkmTwsLCzPz8/ZxBTCsBL89r1GPwaPgg3886l5bguwihJcVAjZ2dncpxc0BAnYq6/CDyPBexXmjD/ro2ORbg7IUBzXTx/jdoGTLxdjIQ6DIy7XPE7sn6jHx8ftpa3keIRtCBRZEw6GPkZjHyZSRkfw8PC1DiE//erTAAABIUlEQVQYGY3B1XLCABAAwIveJRR3d3eXKnV3d/f/fy6UyUygHcguaGYTQBsis97ICzARDYSmE/wsjEMqma1ENg8ATvgHjcpULs7z8Fc4Yl+Okprv8cZXrNiyaRiCfWuLS+tm+uVvTvXo/ERU3LUJaVCgQkqmCiciiZzuRafjfCRy1GPWG3kB+lAtwHzWcl9+juhZ9HhIEdIbeViNz0mokL4DDOLHu/2p6XkQSQ16uiZDzCphH8O0vcgGsNO+rxUOSQUUjs2dAyuy7Fur88p4W3duFtGSTOXmaQCGOM4ubxtyvS433F43DoQj9pUoEYwoyfL1VbVaPj1GNWscRjhKLper7HQe7e9tW1AFxtmYWQhacAAmMhliQQkRtDEZQJsu/ADqTiXJks3I9QAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAVBAMAAADGNLEtAAAAG1BMVEV1st3n8vqIvOJ9tt/9/v6y1Ou+2+/T5/Sy1Oyb02ibAAAAP0lEQVQY02NgIB0wKWARDBTFImjijEXQtJmBbMAEoVAdwJgMItUEUARLwFxGd8IqsZpJErAIJtbvWEOJiRyrAdYMBYZuZK7lAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAVBAMAAADGNLEtAAAAG1BMVEV1st3n8vqIvOJ9tt/9/v6y1Ou+2+/T5/Sy1Oyb02ibAAAAP0lEQVQY02NgIB0wKWARDBTFImjijEXQtJmBbMAEoVAdwJgMItUEUARLwFxGd8IqsZpJErAIJtbvWEOJiRyrAdYMBYZuZK7lAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAVBAMAAADGNLEtAAAALVBMVEXGWWb////YkZo8O27ZkJmyIjRUU4BIR3fsyMzsyM21nbBzcpdgX4mUlLCFhKRMRAwAAAAAiklEQVQY02MwMy5ONjM3Tg5FAgzWZembQdgFCTCYX6+1OX691lgQCTDYmSU/BmEGZGB8vcrmMFAliqCtzeHHIIyi3RhoJkilEhJgsE5L2wzCKE4y25adlrYtOxlFuznYldbFM5EAgx3QEhBG0b4KCjqQAIMgFsAQigUwuGAB2LUTD7BqV8ICsDoJABuIZ60LUleQAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAVBAMAAADGNLEtAAAALVBMVEXGWWb////YkZo8O27ZkJmyIjRUU4BIR3fsyMzsyM21nbBzcpdgX4mUlLCFhKRMRAwAAAAAiklEQVQY02MwMy5ONjM3Tg5FAgzWZembQdgFCTCYX6+1OX691lgQCTDYmSU/BmEGZGB8vcrmMFAliqCtzeHHIIyi3RhoJkilEhJgsE5L2wzCKE4y25adlrYtOxlFuznYldbFM5EAgx3QEhBG0b4KCjqQAIMgFsAQigUwuGAB2LUTD7BqV8ICsDoJABuIZ60LUleQAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAVCAMAAAADxFwsAAAANlBMVEXfhZhkUX1TH1NMaJXvwszvwssAKGjPR2P///+/CjBqgaZ9kbLO1uIYPHZmaZLp7PGdrMSaZ4i5Qx90AAAAWUlEQVQoz8XQOQ6AMAxEUZPAj7Ox3P+yVGmtoeLVI/nLxpJqyD4NG0DzkAGMDJx7yCBf7mMqp7s7kErIgHv2rDWC1Ci+Z1sei7nIZFVkh0hvLKI/G+XT6vAF+EQWV9KTaOcAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAVCAMAAAADxFwsAAAANlBMVEXfhZhkUX1TH1NMaJXvwszvwssAKGjPR2P///+/CjBqgaZ9kbLO1uIYPHZmaZLp7PGdrMSaZ4i5Qx90AAAAWUlEQVQoz8XQOQ6AMAxEUZPAj7Ox3P+yVGmtoeLVI/nLxpJqyD4NG0DzkAGMDJx7yCBf7mMqp7s7kErIgHv2rDWC1Ci+Z1sei7nIZFVkh0hvLKI/G+XT6vAF+EQWV9KTaOcAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAVCAMAAAADxFwsAAAAeFBMVEXCHzmW0OxmN2t3w8MNKHaS2/xePXLGIDgAKXvGITmQPGGQTmpsTH6IQGpka51wO2xAocE0qF5ovayF1Oevx+KBW3mahqe8mUjQxGkJh9h/n5iyuXuXtrSJgqiIsbNXmmeSpJZNn9a/h5e7oblqrNiVxsm05P0sdJ7LAldAAAAACHRSTlP9/////////V+qNIUAAABxSURBVCjPzdM3EoAwDARAB8mYDCbnDP//IS9gpJKrt7hREJ7PiieEZUX8C0IcAAvGWgYcqFyea0NDmIrF6RpIqCTOBaIiYYrlXh6YktDIW67XaOiOybk9XUJ3tKbPsibizDEa2pC3mSqEv1/PB+T+zAtTThsh36bO6AAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAVCAMAAAADxFwsAAAAeFBMVEXCHzmW0OxmN2t3w8MNKHaS2/xePXLGIDgAKXvGITmQPGGQTmpsTH6IQGpka51wO2xAocE0qF5ovayF1Oevx+KBW3mahqe8mUjQxGkJh9h/n5iyuXuXtrSJgqiIsbNXmmeSpJZNn9a/h5e7oblqrNiVxsm05P0sdJ7LAldAAAAACHRSTlP9/////////V+qNIUAAABxSURBVCjPzdM3EoAwDARAB8mYDCbnDP//IS9gpJKrt7hREJ7PiieEZUX8C0IcAAvGWgYcqFyea0NDmIrF6RpIqCTOBaIiYYrlXh6YktDIW67XaOiOybk9XUJ3tKbPsibizDEa2pC3mSqEv1/PB+T+zAtTThsh36bO6AAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAVCAMAAAADxFwsAAAAzFBMVEX////bdAEwRXMgUaAwXadQd7U/aq4AOJPddQAPQ5mQqNDx8/kSPYeaYyywwd6/zuSFXDpfg7sDO5Xg5/L3+fuAnMlykcPeewzFpYXV0tN0WEXp7PLXcwP8/f4aP4IlQnuQXzOlZSTd3OCkuNhIcLKasNRqi8DToGrTehh7WkHdhSLKspvVcgXUllTc4+/j5OnCt7C9k2rLxsfWiDEfQH7w8fO4yOE5ZavHjVHPwbXCfze+qpmKpM2ytcGWh4ByiLAaTJ4jU6LH0+fS3OzDb4x6AAABE0lEQVQoz43T2VbCMBAG4ECTtFlsbaEFWyuKCriALO4bLu//TnaSJqeA1eYqF99J5p9JkNtotU9QM+Z5DWB7z/MsZNT5k5XQwYQTyupZbzzUkPgi4Jjtshawy6s7hAA6NCg2HY432UCz6QFSC+rjHdj5YVUOjoH1+jcIGegyAieKGG+z1VO3VPcjVSMcKYLQBr9VbFze2fXDonoFGY79hFDD9lsQIFNKnBKdUfeROYnJfARsusxBZednkbnFTMayQxNg9voQVcJtjBDYai4K9R1v9aoKZcEWEOAr+dydkYXy4nrykqE8GH38OnNk2eMy141w66FMJ/2hbUQtlOnzfFZpRA2U6eKN0+jf54ve17jRr/kBh1Mh+Hah75sAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAVCAMAAAADxFwsAAAAzFBMVEX////bdAEwRXMgUaAwXadQd7U/aq4AOJPddQAPQ5mQqNDx8/kSPYeaYyywwd6/zuSFXDpfg7sDO5Xg5/L3+fuAnMlykcPeewzFpYXV0tN0WEXp7PLXcwP8/f4aP4IlQnuQXzOlZSTd3OCkuNhIcLKasNRqi8DToGrTehh7WkHdhSLKspvVcgXUllTc4+/j5OnCt7C9k2rLxsfWiDEfQH7w8fO4yOE5ZavHjVHPwbXCfze+qpmKpM2ytcGWh4ByiLAaTJ4jU6LH0+fS3OzDb4x6AAABE0lEQVQoz43T2VbCMBAG4ECTtFlsbaEFWyuKCriALO4bLu//TnaSJqeA1eYqF99J5p9JkNtotU9QM+Z5DWB7z/MsZNT5k5XQwYQTyupZbzzUkPgi4Jjtshawy6s7hAA6NCg2HY432UCz6QFSC+rjHdj5YVUOjoH1+jcIGegyAieKGG+z1VO3VPcjVSMcKYLQBr9VbFze2fXDonoFGY79hFDD9lsQIFNKnBKdUfeROYnJfARsusxBZednkbnFTMayQxNg9voQVcJtjBDYai4K9R1v9aoKZcEWEOAr+dydkYXy4nrykqE8GH38OnNk2eMy141w66FMJ/2hbUQtlOnzfFZpRA2U6eKN0+jf54ve17jRr/kBh1Mh+Hah75sAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAWCAMAAACFUC6CAAAAM1BMVEUAOKj6+vrk8dC0u7b1ycbo6OjP0dD////VKx6/zene3t7J5c67yOTwxcK31MKdxKuKvZtVfUrjAAAAUElEQVQoz+2PwRKAIAgFEYIU1Pr/r807THKvPe7szAOoSeCb4eEZI5BwOliEvfUhk5DyPixyId5S9iFNw5kI14lmnJhepWr0TPP0Hkj4eeMBpwIRWct/suEAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAWCAMAAACFUC6CAAAAM1BMVEUAOKj6+vrk8dC0u7b1ycbo6OjP0dD////VKx6/zene3t7J5c67yOTwxcK31MKdxKuKvZtVfUrjAAAAUElEQVQoz+2PwRKAIAgFEYIU1Pr/r807THKvPe7szAOoSeCb4eEZI5BwOliEvfUhk5DyPixyId5S9iFNw5kI14lmnJhepWr0TPP0Hkj4eeMBpwIRWct/suEAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAXCAMAAABODP0nAAAAUVBMVEXaAACe1KvjRUXxmZnaAAAjn0DwkZHfJibsd3f////kSkpduHOo2LRfunQkn0FYtW7jPz/ujIyj1q/0sLCY0ab62dn2v7/zqKhDrVyMy5r97++GuGN/AAAACXRSTlP9/////////f2Mg7y3AAAAiklEQVQoz92PsRKEIAxEg9xFISIII6j//6EXQKuzSO2SzJuwWySwfEVa4FXB3ZEnIu/cDd/AXeEaiHY4ZhWVmtuLF+L/fIAR6iG4lbJJgjrlnJIgmFEXzIJgwsQl2jEE0Y7GnOfT1ZNG1KhXBt7ACu61GxUTjMNgA5e1FTwwqvinG90fAT4iwauCP4TbGUYnV3DMAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAXCAMAAABODP0nAAAAUVBMVEXaAACe1KvjRUXxmZnaAAAjn0DwkZHfJibsd3f////kSkpduHOo2LRfunQkn0FYtW7jPz/ujIyj1q/0sLCY0ab62dn2v7/zqKhDrVyMy5r97++GuGN/AAAACXRSTlP9/////////f2Mg7y3AAAAiklEQVQoz92PsRKEIAxEg9xFISIII6j//6EXQKuzSO2SzJuwWySwfEVa4FXB3ZEnIu/cDd/AXeEaiHY4ZhWVmtuLF+L/fIAR6iG4lbJJgjrlnJIgmFEXzIJgwsQl2jEE0Y7GnOfT1ZNG1KhXBt7ACu61GxUTjMNgA5e1FTwwqvinG90fAT4iwauCP4TbGUYnV3DMAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAXCAMAAABODP0nAAAAWlBMVEX//////O//9s/X6rsAR6sBR6v/+d////8/dL////+i0ZWXx4HM5bDp6dqhyLelvrRzvIL7662uxs7v8MKL0Iv/88Krwanv8/pmr6uEtrUtnaR3uGldpqiAzICRExgrAAAACHRSTlP+/////////dElM2YAAABfSURBVCjP7dJJDoAwCAXQQhW1gx2cp/tf071NhL3+JXmLD0FVstTqm7AVRqnuGZgIi2FTQlo8eOQhuZxS1shC6Odow0UsRLPu52aA7+iOPthBsAzoOGoqofiO/z++wRtv/hV0LCDfBAAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAXCAMAAABODP0nAAAAWlBMVEX//////O//9s/X6rsAR6sBR6v/+d////8/dL////+i0ZWXx4HM5bDp6dqhyLelvrRzvIL7662uxs7v8MKL0Iv/88Krwanv8/pmr6uEtrUtnaR3uGldpqiAzICRExgrAAAACHRSTlP+/////////dElM2YAAABfSURBVCjP7dJJDoAwCAXQQhW1gx2cp/tf071NhL3+JXmLD0FVstTqm7AVRqnuGZgIi2FTQlo8eOQhuZxS1shC6Odow0UsRLPu52aA7+iOPthBsAzoOGoqofiO/z++wRtv/hV0LCDfBAAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAXCAMAAABODP0nAAAAilBMVEXNECXm5deCXUG7pXHvrrWqzMHIyKX////OESYAaEfu7+TW1LVuQiZkRDKoeVT39fKwtYr169e1zsS6vZXR0redhm9ooKGljINbnp7e387n1cfcrq3T0a2x1NvI6OanbEJ1VEDauXjYup+KubrAkWd8vMe3mH66sKfrubKOoKTOtoSklWRKkI9sWEt0Xo6XAAAAAXRSTlP89O1mUQAAAHdJREFUKM9j4EQGrOxIgIUDCTAwjCqEKBRUkmeSIkKhjKIKHy8PP0GFgozMQHU8ooRN5NZiYlJjUuAioFBYQwRooq66uDABhSJCEprK2qLijGwEFHJxc6lK6IiJcTMScqMkmxwzsywbG2HP8AsISQswjiYz0hQCAOOXHtBwW44mAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAXCAMAAABODP0nAAAAilBMVEXNECXm5deCXUG7pXHvrrWqzMHIyKX////OESYAaEfu7+TW1LVuQiZkRDKoeVT39fKwtYr169e1zsS6vZXR0redhm9ooKGljINbnp7e387n1cfcrq3T0a2x1NvI6OanbEJ1VEDauXjYup+KubrAkWd8vMe3mH66sKfrubKOoKTOtoSklWRKkI9sWEt0Xo6XAAAAAXRSTlP89O1mUQAAAHdJREFUKM9j4EQGrOxIgIUDCTAwjCqEKBRUkmeSIkKhjKIKHy8PP0GFgozMQHU8ooRN5NZiYlJjUuAioFBYQwRooq66uDABhSJCEprK2qLijGwEFHJxc6lK6IiJcTMScqMkmxwzsywbG2HP8AsISQswjiYz0hQCAOOXHtBwW44mAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYAgMAAAD16ldTAAAACVBMVEUAlm7WJhL////BTf+eAAAAFUlEQVQY02NYBQcMVGXSCoTCAVWZADw2T7GdUBaTAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYAgMAAAD16ldTAAAACVBMVEUAlm7WJhL////BTf+eAAAAFUlEQVQY02NYBQcMVGXSCoTCAVWZADw2T7GdUBaTAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYAgMAAAD16ldTAAAACVBMVEXBJy0AakT9uRO6V9nyAAAAFUlEQVQY02NYBQcMVGWGwgF1mTQCAF49T7GuEQs4AAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYAgMAAAD16ldTAAAACVBMVEXBJy0AakT9uRO6V9nyAAAAFUlEQVQY02NYBQcMVGWGwgF1mTQCAF49T7GuEQs4AAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYAgMAAAD16ldTAAAACVBMVEXdAAAAAAD/zgCNyoGDAAAAFUlEQVQY02MIhQMGqjJpBVbBAVWZAPgZT7HoYeqNAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYAgMAAAD16ldTAAAACVBMVEXdAAAAAAD/zgCNyoGDAAAAFUlEQVQY02MIhQMGqjJpBVbBAVWZAPgZT7HoYeqNAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYAgMAAAD16ldTAAAACVBMVEXtKTkAod7///8YqkgeAAAAFUlEQVQY02NgoBFYBQfUZYbCAVWZAPgZT7EeR7VTAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYAgMAAAD16ldTAAAACVBMVEXtKTkAod7///8YqkgeAAAAFUlEQVQY02NgoBFYBQfUZYbCAVWZAPgZT7EeR7VTAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYBAMAAAB6qqLzAAAAFVBMVEUANYC5x9z///8cS444YZwANIC6yN25wbmkAAAAMElEQVQY02NQAgFlBgYWJQRgGISCiYJAIMzAwCwIB2IMYMDKQAJgpaIgVicNkfAEANoyJ4DL1EUnAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYBAMAAAB6qqLzAAAAFVBMVEUANYC5x9z///8cS444YZwANIC6yN25wbmkAAAAMElEQVQY02NQAgFlBgYWJQRgGISCiYJAIMzAwCwIB2IMYMDKQAJgpaIgVicNkfAEANoyJ4DL1EUnAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYBAMAAAB6qqLzAAAAGFBMVEUAak70KkHlLUGyOkRrTUd6SkcuXksfYUzbDaCgAAAAUklEQVQY02NgoB1INVIOQxdjERQUFHJAEzQECgoKYyoEAlSliRBBNRTBQIigKKaR6IYqQgSFCAti1Y7VoiSIoDphx2P1JgOLIpYAAQVdOAMtAQB5kwuiqFX2NgAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYBAMAAAB6qqLzAAAAGFBMVEUAak70KkHlLUGyOkRrTUd6SkcuXksfYUzbDaCgAAAAUklEQVQY02NgoB1INVIOQxdjERQUFHJAEzQECgoKYyoEAlSliRBBNRTBQIigKKaR6IYqQgSFCAti1Y7VoiSIoDphx2P1JgOLIpYAAQVdOAMtAQB5kwuiqFX2NgAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYBAMAAAB6qqLzAAAAJ1BMVEXOESb////20tb88PHtpq7hb3zfZHLXPU7QHzLRHzPXPE7wtLvplp+6qWJJAAAAZElEQVQY02MQBAG1BgYUABYUNFmARVDQFIug6gRMwe0MWMxEMxKqXSgDm0VqmILC7li0n8RmEZqRUDOFvbAJumPRHolF+wlsFqEZicfx6IZCAqQAi/Zd2CxCjyQ80YFmKLYoAgD8YhWfwKLYOwAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYBAMAAAB6qqLzAAAAJ1BMVEXOESb////20tb88PHtpq7hb3zfZHLXPU7QHzLRHzPXPE7wtLvplp+6qWJJAAAAZElEQVQY02MQBAG1BgYUABYUNFmARVDQFIug6gRMwe0MWMxEMxKqXSgDm0VqmILC7li0n8RmEZqRUDOFvbAJumPRHolF+wlsFqEZicfx6IZCAqQAi/Zd2CxCjyQ80YFmKLYoAgD8YhWfwKLYOwAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYBAMAAAB6qqLzAAAAMFBMVEX/AAD/sAD/UAD/oAD/cAD/QAD/wAD/kAD/8AD/MAD/YAD/4AD/gAD/GAD/0AD//wDINHCxAAAAgklEQVQY02NgoDfg1FK9gCG2xlC4FF30UnZbxkNNNMGFG0+0SGehivHWmZTOWfwmAEWQVUI6MmhjswKqoNgTpxC3xAUogkxi6ubFJYloKi18zn850oxqJufpEvnP7s/RHLpsu6NJtRCaOyfZtWVs00UT5A0XFj41Ad3zvEGLJtA9FgCBRSUPxoTUWgAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYBAMAAAB6qqLzAAAAMFBMVEX/AAD/sAD/UAD/oAD/cAD/QAD/wAD/kAD/8AD/MAD/YAD/4AD/gAD/GAD/0AD//wDINHCxAAAAgklEQVQY02NgoDfg1FK9gCG2xlC4FF30UnZbxkNNNMGFG0+0SGehivHWmZTOWfwmAEWQVUI6MmhjswKqoNgTpxC3xAUogkxi6ubFJYloKi18zn850oxqJufpEvnP7s/RHLpsu6NJtRCaOyfZtWVs00UT5A0XFj41Ad3zvEGLJtA9FgCBRSUPxoTUWgAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAA7VBMVEXZDxm71quuz5ugxor////w8O9RULB3ElcXFpYlJJyIuWu51KnT5MqrzJbM4b66wNWkxpZ3fLeyy6vG3rq92K3T29uZvXnq2dLEwqzx5eDn6upxfKpyfaukw5pOVKW3zrSlwaGmt7jDpZXCoH7B27ORamCnu4LRuaTl8N/i3MPc6tRzrl3y4KPx15d/r069ydXLvpexvMeZupF8e8Pw39fp3diRt4TK28efloSKfm2yhWRuPDCwoIeRq2DExOSwu8bc1Kypsonb3ZxhlzBhmjwZdcf5+vvNzN6/wYjYypvD0t5+roqxqJogesuuqH05DYSvAAAA0klEQVQoz63TVRKDQBAEUGR3k2WRAEGTihF3d3e//3Fyg4FK0d/vq6eH42JPImK4ZMT8D+momJoVdRoGSYEJTVUxDQJDwotlxZaksioQCNKCgOZVuxos6mxIAZhhjVrA7I1UKblmFoAaG5eWNW+/XlUmogbAPEPY8ZxO28FITgHQYAj73rXd8UOgJiKM/WevgTHiBwDMCvVD93T5nLsukjJQPVOm9u+t1/HbVCwKFp5Wbu6j/+7xag4+Yc5q8bJsinkSOgp9Zxnb8FHEsMfIrxB7fiVOJZw8OnZYAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAA7VBMVEXZDxm71quuz5ugxor////w8O9RULB3ElcXFpYlJJyIuWu51KnT5MqrzJbM4b66wNWkxpZ3fLeyy6vG3rq92K3T29uZvXnq2dLEwqzx5eDn6upxfKpyfaukw5pOVKW3zrSlwaGmt7jDpZXCoH7B27ORamCnu4LRuaTl8N/i3MPc6tRzrl3y4KPx15d/r069ydXLvpexvMeZupF8e8Pw39fp3diRt4TK28efloSKfm2yhWRuPDCwoIeRq2DExOSwu8bc1Kypsonb3ZxhlzBhmjwZdcf5+vvNzN6/wYjYypvD0t5+roqxqJogesuuqH05DYSvAAAA0klEQVQoz63TVRKDQBAEUGR3k2WRAEGTihF3d3e//3Fyg4FK0d/vq6eH42JPImK4ZMT8D+momJoVdRoGSYEJTVUxDQJDwotlxZaksioQCNKCgOZVuxos6mxIAZhhjVrA7I1UKblmFoAaG5eWNW+/XlUmogbAPEPY8ZxO28FITgHQYAj73rXd8UOgJiKM/WevgTHiBwDMCvVD93T5nLsukjJQPVOm9u+t1/HbVCwKFp5Wbu6j/+7xag4+Yc5q8bJsinkSOgp9Zxnb8FHEsMfIrxB7fiVOJZw8OnZYAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAM1BMVEUAZ8bV48iesrmsuJv17tL2+/zG3br////49OD8+e/u4q/Jzq+92Cqy1TG11DLA2inx6L8SIXR/AAAATUlEQVQYGe3BOwKDMBBDQQG2nzaQz/1Pm17bUjKjxz1oTJlGJDNnmSTCKI6DToQf574vTBBpfq7ve5JEGttam0kivQo8SKLxKNPocYs/5eoIyVduk4wAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAM1BMVEUAZ8bV48iesrmsuJv17tL2+/zG3br////49OD8+e/u4q/Jzq+92Cqy1TG11DLA2inx6L8SIXR/AAAATUlEQVQYGe3BOwKDMBBDQQG2nzaQz/1Pm17bUjKjxz1oTJlGJDNnmSTCKI6DToQf574vTBBpfq7ve5JEGttam0kivQo8SKLxKNPocYs/5eoIyVduk4wAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAP1BMVEUAOJP+88P/99k6W3P8/P6knTwjTH8AOJP////PICfgwx3PIin64mf41ST63lKLjUqLjEqEik1IZG3UNSPSKyVE9uWiAAAAAXRSTlP89O1mUQAAAHhJREFUKM/tklsLgCAMhb1tmhe6/v/fGmawCLFV0FPnwcnhQ4+bQliWhPjBG2A/MEA9aguwlYsTPeYV/cuMxhXJqPadU1G6swyBidxUA0PHUiBwIXeugXQ1ZUytjCqSS+86gA9GiH7KZSp9bzUcMM8agTMZgO/+4wo/5hqOVIJxmgAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAP1BMVEUAOJP+88P/99k6W3P8/P6knTwjTH8AOJP////PICfgwx3PIin64mf41ST63lKLjUqLjEqEik1IZG3UNSPSKyVE9uWiAAAAAXRSTlP89O1mUQAAAHhJREFUKM/tklsLgCAMhb1tmhe6/v/fGmawCLFV0FPnwcnhQ4+bQliWhPjBG2A/MEA9aguwlYsTPeYV/cuMxhXJqPadU1G6swyBidxUA0PHUiBwIXeugXQ1ZUytjCqSS+86gA9GiH7KZSp9bzUcMM8agTMZgO/+4wo/5hqOVIJxmgAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAP1BMVEXOESbRsnvpua2CcmLULkHjeIX6+/j///8AK3/dW2rzxMmLs7qdp3+9xaXj1bkoeExBb1tBZq1KY6Klx9mHvMkwUFmwAAAAUUlEQVQoz9XTORIAIQhEUXDDXWf0/mc1NLQzyx+/BCjIg9FFKGA34c5YawgouDRcAGCsOdcIQClpFgEg99Y6A1Dp79cKGoYZGua0nhdu/cDPLAeKFD3EVE0QAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAP1BMVEXOESbRsnvpua2CcmLULkHjeIX6+/j///8AK3/dW2rzxMmLs7qdp3+9xaXj1bkoeExBb1tBZq1KY6Klx9mHvMkwUFmwAAAAUUlEQVQoz9XTORIAIQhEUXDDXWf0/mc1NLQzyx+/BCjIg9FFKGA34c5YawgouDRcAGCsOdcIQClpFgEg99Y6A1Dp79cKGoYZGua0nhdu/cDPLAeKFD3EVE0QAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAUVBMVEUAIJ/2zdTJ1cJ6e5/K0OtQkEr////SEDTXJkgYNamdqHn3+fC7qsOVwZ3m5c1hmlHJpDHs59z848dQba0QEBDNZmTXh19voHz84Lu0hjjIpTBzGy2qAAAAU0lEQVQoz2NgGAU0AZxQQFAhCxsbrzg3GwsRCvl4mYhSKMQsyMcsgamQHQ0w8jCLiQrzMKKLYypkkhKRFGAirJCLnxUEuAgq5IACggpxgVGFeAEAvUgOmZnoHJcAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAUVBMVEUAIJ/2zdTJ1cJ6e5/K0OtQkEr////SEDTXJkgYNamdqHn3+fC7qsOVwZ3m5c1hmlHJpDHs59z848dQba0QEBDNZmTXh19voHz84Lu0hjjIpTBzGy2qAAAAU0lEQVQoz2NgGAU0AZxQQFAhCxsbrzg3GwsRCvl4mYhSKMQsyMcsgamQHQ0w8jCLiQrzMKKLYypkkhKRFGAirJCLnxUEuAgq5IACggpxgVGFeAEAvUgOmZnoHJcAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAV1BMVEUAK3+LdBxaTgkLLm0AKHxxZB+5nCXOESYAJXg/OBMAIWU1Q018by4AHnHpxDRJTzoAHVncujF2cklKQxo3SmBpZDKtlzYPKVWVgSv71DupjiVkWyBpWBVMEWERAAAAXUlEQVQoz+3PRw6AMAxE0TjEwU4Pvd3/nBzBYYOExF+/xYxSTzOm0fmuyVHMK5HsMp6aEb3kYrBWa2tnaSdtcAECBPHJstcj1TSIGydmZh4bjpMrxZF6t76xH34e3uVzD6wKgmdUAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAV1BMVEUAK3+LdBxaTgkLLm0AKHxxZB+5nCXOESYAJXg/OBMAIWU1Q018by4AHnHpxDRJTzoAHVncujF2cklKQxo3SmBpZDKtlzYPKVWVgSv71DupjiVkWyBpWBVMEWERAAAAXUlEQVQoz+3PRw6AMAxE0TjEwU4Pvd3/nBzBYYOExF+/xYxSTzOm0fmuyVHMK5HsMp6aEb3kYrBWa2tnaSdtcAECBPHJstcj1TSIGydmZh4bjpMrxZF6t76xH34e3uVzD6wKgmdUAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAWlBMVEX///9y0YTXPk/RHzPzxMnz+/RIw18etTrOESbH7c7t7OQsukbpl6D88fLhanf6/vuc3qid3qmW3aPc2MrniJP++frwtbu4IyfNp5zaTFzBdGvAZ2G9PT3dW2pQSsWXAAAAzUlEQVQoz42TSRKDIBBFvyJ2bAecccr9r5kFEjEGil5QLF7xoPkNAFn6ClaawVYl/JioDJMXAFA3Pq6pAaDIQZRIeP3GKhMiEFHZefyntSvJgESu/z1m2bi6VqIvePnFbK4+i8t6A61/AnhZGJgu6x20fkBqLc3utP6C1m9OdKxPkHo41ZMfLFywCIJqGBTMGgJ7sD4Y4ENzSJ1I8L4xwNvO/seY9ih1rX/bU7a24XA27aPhkV/ohmL1h+K0emPWnjGLDG70KEQPV+y4fgCOXxe97SpR6gAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAWlBMVEX///9y0YTXPk/RHzPzxMnz+/RIw18etTrOESbH7c7t7OQsukbpl6D88fLhanf6/vuc3qid3qmW3aPc2MrniJP++frwtbu4IyfNp5zaTFzBdGvAZ2G9PT3dW2pQSsWXAAAAzUlEQVQoz42TSRKDIBBFvyJ2bAecccr9r5kFEjEGil5QLF7xoPkNAFn6ClaawVYl/JioDJMXAFA3Pq6pAaDIQZRIeP3GKhMiEFHZefyntSvJgESu/z1m2bi6VqIvePnFbK4+i8t6A61/AnhZGJgu6x20fkBqLc3utP6C1m9OdKxPkHo41ZMfLFywCIJqGBTMGgJ7sD4Y4ENzSJ1I8L4xwNvO/seY9ih1rX/bU7a24XA27aPhkV/ohmL1h+K0emPWnjGLDG70KEQPV+y4fgCOXxe97SpR6gAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAXVBMVEUAAADtwRBeTQXetA8AfzmzDSwPCwEAlUPSEDShgwt/ZwifgQv9zhJ+Zwk/MwMfGQEAMRZGBRG3lQwARx9lBxmPdAoAiz7EDzDOqA4wJwNOPwQAcTKdDCduWgSmDCgachgdAAAAt0lEQVQoz43Qy47CMAxA0WsH7JkkTaDQmVIe//+ZLCpYFZK7s3Qky+Z4++kKo48ig3Hcd0ANfRQ6KQBRRGlQALAoQeH834Ivap8pQB3S0qTARWKUCbCUQ4HzY78RMC5aSq4ANeWx8KmZe2Re1qGmLOPvRkDSavdc2tCmNI1i7dVwCVnXY+YCp+tuoxVOBWyQoHD6883eD//OXrDJVmiDiMJh5/4VapBoDebeydzpY+4Yh6t31Mncnxi9Gc0Ued8IAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAXVBMVEUAAADtwRBeTQXetA8AfzmzDSwPCwEAlUPSEDShgwt/ZwifgQv9zhJ+Zwk/MwMfGQEAMRZGBRG3lQwARx9lBxmPdAoAiz7EDzDOqA4wJwNOPwQAcTKdDCduWgSmDCgachgdAAAAt0lEQVQoz43Qy47CMAxA0WsH7JkkTaDQmVIe//+ZLCpYFZK7s3Qky+Z4++kKo48ig3Hcd0ANfRQ6KQBRRGlQALAoQeH834Ivap8pQB3S0qTARWKUCbCUQ4HzY78RMC5aSq4ANeWx8KmZe2Re1qGmLOPvRkDSavdc2tCmNI1i7dVwCVnXY+YCp+tuoxVOBWyQoHD6883eD//OXrDJVmiDiMJh5/4VapBoDebeydzpY+4Yh6t31Mncnxi9Gc0Ued8IAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAY1BMVEU9jjOex5lho1nn8ebOESZIlD55sXP/xh46dcT///9sqWSyKCdTm0o8i0BPlC+HuYFJgjCSv4zO48t+VSw8hmA7gXs5eLHmvyCeqig6e595nyzOuCLz+PLb6tlgolhqZy5jbC7Q/dpQAAAArUlEQVQoz43R2w6DIBBF0UEGyoAtWnu///9XloKYNBGY88TDilsRbucNawC7CxMGemdCAEY/QUYf8lr9pDptFVhJlUX2fIxah4OvQ0v0ggih31egkiSWNwUti1ATKYDRz1KJEhQkf9F+eeh6P0OlFjg4XFlOi/yew4S4Dv8/5u2wBNP1eF+uZhgvvOvCYUKswvkXfhw2Ydj2aqrL7GgMBx5OhgNb1Rm2qwkyqnFff1UYnRYEs0QAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAY1BMVEU9jjOex5lho1nn8ebOESZIlD55sXP/xh46dcT///9sqWSyKCdTm0o8i0BPlC+HuYFJgjCSv4zO48t+VSw8hmA7gXs5eLHmvyCeqig6e595nyzOuCLz+PLb6tlgolhqZy5jbC7Q/dpQAAAArUlEQVQoz43R2w6DIBBF0UEGyoAtWnu///9XloKYNBGY88TDilsRbucNawC7CxMGemdCAEY/QUYf8lr9pDptFVhJlUX2fIxah4OvQ0v0ggih31egkiSWNwUti1ATKYDRz1KJEhQkf9F+eeh6P0OlFjg4XFlOi/yew4S4Dv8/5u2wBNP1eF+uZhgvvOvCYUKswvkXfhw2Ydj2aqrL7GgMBx5OhgNb1Rm2qwkyqnFff1UYnRYEs0QAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAbFBMVEX80RbUJyIjhlMSgFhKVEn5xBTWMiEAel7OESbPsiL1zhgHfVtlnUHkahyRrDN6pDujsi/WQyHiZR3lcB2FqDeGSziznirdxh7lyRzsyxq/WiihMzDRHCT3vhPtkhnrixlHk0jypxl7fjq9uifbhgG8AAAAx0lEQVQoz5XT2Q6DIBAF0AHFoYor7nbR9v//sdZawIoNvS83GU5CQASuQ4i9l4Dh2OVs6x3k15u9Fazq08/U1Qp9FA0cphHoK4iRaO2sFRGacKZpt2ddGr3WNhDRK8MtC0vvvfIFZ5oYNEy8z1xBNUGaASvyvGCQUTXUkD5GTXsuJe8NZsARIFXTYQKYBrRCCnmmIQEgBxCTO9VbF1IWB1vj92HkwWGcr+evC3f8hK6PwvGZOT/cNUEcB7be/zOM2XsHg8DeS5725xrneLCWvQAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAbFBMVEX80RbUJyIjhlMSgFhKVEn5xBTWMiEAel7OESbPsiL1zhgHfVtlnUHkahyRrDN6pDujsi/WQyHiZR3lcB2FqDeGSziznirdxh7lyRzsyxq/WiihMzDRHCT3vhPtkhnrixlHk0jypxl7fjq9uifbhgG8AAAAx0lEQVQoz5XT2Q6DIBAF0AHFoYor7nbR9v//sdZawIoNvS83GU5CQASuQ4i9l4Dh2OVs6x3k15u9Fazq08/U1Qp9FA0cphHoK4iRaO2sFRGacKZpt2ddGr3WNhDRK8MtC0vvvfIFZ5oYNEy8z1xBNUGaASvyvGCQUTXUkD5GTXsuJe8NZsARIFXTYQKYBrRCCnmmIQEgBxCTO9VbF1IWB1vj92HkwWGcr+evC3f8hK6PwvGZOT/cNUEcB7be/zOM2XsHg8DeS5725xrneLCWvQAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAflBMVEX////2zdHqlqD87e776uzWNUj0yc7ODyX//f3RHjPrnKXQHDDXOUvhbXrYP1DgaHXfY3LQGi/zwsjqoKny4qTpk53ekkTpkZvVMkLs3Jfpp6ronTfXRDX//PHjzGfn0XDks6jbfDvirDPqtzbheDb00rrsrI3uvULLWjzhkDGG5NwUAAABCUlEQVQoz42T7ZqCIBCFB1OhtCwh00f7rt26/xvcERYZCrY9PxQY4HWOM8D5ZifA037vz8VuwzmsOOdZTVZVp5TqyNk6wy0rEHKO73U6ravj8XDopmm6xvBcjgdnSxwWW3sHOzdNc7f3bwsMLmc2pvm5mcjrpb98mXGuqYx82MLx5fnRP6WjLvxUDT/BxbpvbjfMTiQe1YmVhi+G63crDLVkEJDhV+lpGE5pFaA66XCRMBajOuUjv9SPHP6Wvgyp8ElJ9q+NGt22n9C/yQhjYRVLxtozHYnYYw0H8psDhrtfOAFCZlIqvJQi5XtlRlV7ZfZOJShXuG+tACE+tsJrc8X4QNslZvDYrj+d2w/y/o7CEAAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAflBMVEX////2zdHqlqD87e776uzWNUj0yc7ODyX//f3RHjPrnKXQHDDXOUvhbXrYP1DgaHXfY3LQGi/zwsjqoKny4qTpk53ekkTpkZvVMkLs3Jfpp6ronTfXRDX//PHjzGfn0XDks6jbfDvirDPqtzbheDb00rrsrI3uvULLWjzhkDGG5NwUAAABCUlEQVQoz42T7ZqCIBCFB1OhtCwh00f7rt26/xvcERYZCrY9PxQY4HWOM8D5ZifA037vz8VuwzmsOOdZTVZVp5TqyNk6wy0rEHKO73U6ravj8XDopmm6xvBcjgdnSxwWW3sHOzdNc7f3bwsMLmc2pvm5mcjrpb98mXGuqYx82MLx5fnRP6WjLvxUDT/BxbpvbjfMTiQe1YmVhi+G63crDLVkEJDhV+lpGE5pFaA66XCRMBajOuUjv9SPHP6Wvgyp8ElJ9q+NGt22n9C/yQhjYRVLxtozHYnYYw0H8psDhrtfOAFCZlIqvJQi5XtlRlV7ZfZOJShXuG+tACE+tsJrc8X4QNslZvDYrj+d2w/y/o7CEAAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAgVBMVEUAnkkRpVX+8bZYwIgkrGN0ypzB59P80RbOESYJCAGk3L7t+PFAt3caAgSOCxo1BAn8/fX93lf943H+7J781SvZ8OSM063/9s7+6If82UC9nBDcthS1DiFnCBPBDyP/+uUfGgIfGgJ+aQt+aAtPQgb9/O5OQQa9qE5DS0d6uJeAemJ4QqG6AAAAsElEQVQoz42TVxLCMAwFQyiSIRB6h4QS2v0PiLHNRE6Rtd9vZp9sKXq9k0hEqj6jYbcTDuJkfHnGxaDfCwXxfFL3w2yRrdYJH0Q8puoKsNtuuBJo0P49ACzn8bSthA1aP/xoK4F/rN/QWAJLnN9QL0GCxO9KFKQEehB/tQRWoH6vRD2YS4JafROo9TAPb5iseRhqZZ6HWLkHL638FzpraCmsNbhmxipYXOkpiI9Leq5frY4Y/eRr36cAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAgVBMVEUAnkkRpVX+8bZYwIgkrGN0ypzB59P80RbOESYJCAGk3L7t+PFAt3caAgSOCxo1BAn8/fX93lf943H+7J781SvZ8OSM063/9s7+6If82UC9nBDcthS1DiFnCBPBDyP/+uUfGgIfGgJ+aQt+aAtPQgb9/O5OQQa9qE5DS0d6uJeAemJ4QqG6AAAAsElEQVQoz42TVxLCMAwFQyiSIRB6h4QS2v0PiLHNRE6Rtd9vZp9sKXq9k0hEqj6jYbcTDuJkfHnGxaDfCwXxfFL3w2yRrdYJH0Q8puoKsNtuuBJo0P49ACzn8bSthA1aP/xoK4F/rN/QWAJLnN9QL0GCxO9KFKQEehB/tQRWoH6vRD2YS4JafROo9TAPb5iseRhqZZ6HWLkHL638FzpraCmsNbhmxipYXOkpiI9Leq5frY4Y/eRr36cAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAhFBMVEXaGjXcKEEQEBDqfY3eNUwICAj87/EAAAD////+/Pzn5+dDQ0P53OD9+PkdHR3hRFvbIDpsbGyTk5PlY3X19fX0v8bysLkzMzPMzMzV1dXw8PAqKir2yc/75unkWW2hoaG4uLjd3d3iT2RSUlKtra330dbvnqnDw8PtkJ18fHznbn9eXl5tmbTVAAAAyElEQVQoz43SRxaEIBBFUSOCihHMNua4//31AHRYwvgO+HWeYRPhyRc0nWkA70cHS8rWDx1Ixn0dSRlVKIakE/qllO5Ac0ianAXqoxm2IWkUJFUyxRsobZwpOTOeQDKniytl6a/g+AlV6kxR3X+MH1sprR39wPFdo8a7glyQTAp6q0knPsDxBz6VvGkBjr+IcDUbQfvTyKjbiFWhCTzT+jaywI0knM2ajWz4bYQUmo0EjJtwI8PbyMd4VEW6jfhPIwPVbMQTxP4DG9AQs+B16vUAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAhFBMVEXaGjXcKEEQEBDqfY3eNUwICAj87/EAAAD////+/Pzn5+dDQ0P53OD9+PkdHR3hRFvbIDpsbGyTk5PlY3X19fX0v8bysLkzMzPMzMzV1dXw8PAqKir2yc/75unkWW2hoaG4uLjd3d3iT2RSUlKtra330dbvnqnDw8PtkJ18fHznbn9eXl5tmbTVAAAAyElEQVQoz43SRxaEIBBFUSOCihHMNua4//31AHRYwvgO+HWeYRPhyRc0nWkA70cHS8rWDx1Ixn0dSRlVKIakE/qllO5Ac0ianAXqoxm2IWkUJFUyxRsobZwpOTOeQDKniytl6a/g+AlV6kxR3X+MH1sprR39wPFdo8a7glyQTAp6q0knPsDxBz6VvGkBjr+IcDUbQfvTyKjbiFWhCTzT+jaywI0knM2ajWz4bYQUmo0EjJtwI8PbyMd4VEW6jfhPIwPVbMQTxP4DG9AQs+B16vUAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAZAgMAAAA+toT2AAAACVBMVEUAaqf+zAB/m1N8Q7kSAAAAGklEQVQY02NgYGCYmsAAA7RmhsIBSUy6OhIASfMjv9uXrDcAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAZAgMAAAA+toT2AAAACVBMVEUAaqf+zAB/m1N8Q7kSAAAAGklEQVQY02NgYGCYmsAAA7RmhsIBSUy6OhIASfMjv9uXrDcAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAZAgMAAAA+toT2AAAACVBMVEXcFDz////tip5hJkzaAAAAFElEQVQY02MIhQOGAWOuggOGQQAAG50ufcR4g+sAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAZAgMAAAA+toT2AAAACVBMVEXcFDz////tip5hJkzaAAAAFElEQVQY02MIhQOGAWOuggOGQQAAG50ufcR4g+sAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAZBAMAAACx9nFWAAAAD1BMVEUAAAAAcs7///8AJkVUVFRJK4tKAAAAHklEQVQoz2MQxAIYBqGgMRbAMAiBCxbAoIQFDEJBAGOJKS051BtAAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAZBAMAAACx9nFWAAAAD1BMVEUAAAAAcs7///8AJkVUVFRJK4tKAAAAHklEQVQoz2MQxAIYBqGgMRbAMAiBCxbAoIQFDEJBAGOJKS051BtAAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAZBAMAAACx9nFWAAAAG1BMVEUAmf///wCg2V+w309Qua8Qn+/Q7C/w+Q/P7DAG5Io+AAAAVklEQVQoz2NgoDNwamxyQBcLFhQUFA5AFWMtBAoKlqIKMoPEBIVRBR3BgoKopipCBBVQBBMhgg0oghAxQQFsKhMIm4nVdqzuxOojrH4HhlJikgMD3QEAcycN4otQy3cAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAZBAMAAACx9nFWAAAAG1BMVEUAmf///wCg2V+w309Qua8Qn+/Q7C/w+Q/P7DAG5Io+AAAAVklEQVQoz2NgoDNwamxyQBcLFhQUFA5AFWMtBAoKlqIKMoPEBIVRBR3BgoKopipCBBVQBBMhgg0oghAxQQFsKhMIm4nVdqzuxOojrH4HhlJikgMD3QEAcycN4otQy3cAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAZBAMAAACx9nFWAAAALVBMVEUAak7SEDT/zgD//v+vHjjZLyvWJUXqj6D87/HgW3PaPVr42d/meY31y9PwsbwZZZ5IAAAATUlEQVQoz2MQhAAHBmRAkqA4NsEMbIKHJwoKBikhAQZBcWNj4x50QcEVxtaJGILixpYY2gUlzO0wBbMT12LankihNzEFlbAAmgjSCwAAG7QmPcKBtfcAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAZBAMAAACx9nFWAAAALVBMVEUAak7SEDT/zgD//v+vHjjZLyvWJUXqj6D87/HgW3PaPVr42d/meY31y9PwsbwZZZ5IAAAATUlEQVQoz2MQhAAHBmRAkqA4NsEMbIKHJwoKBikhAQZBcWNj4x50QcEVxtaJGILixpYY2gUlzO0wBbMT12LankihNzEFlbAAmgjSCwAAG7QmPcKBtfcAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAZCAMAAAB0BpxXAAAAP1BMVEX////u1q/oy5jSn1L37dz59O7u3L10rN/R4/T9/Pzozqjfun7koBPhvor05s/Yq3HcozzalA7lxpzXpl/VkhUfGetuAAAAWElEQVQ4y+3SOxKAMAhFUQgkSshX3f9aXYCOUFjm1qd5DLA5gwU/4e4MHknD1ATMJNWuijaMgUqhzDbMY5aRown5OOdFwYaAQXtN4FjDiPyy2n3H9Y+/wBtvcRWqoJAFOQAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAZCAMAAAB0BpxXAAAAP1BMVEX////u1q/oy5jSn1L37dz59O7u3L10rN/R4/T9/Pzozqjfun7koBPhvor05s/Yq3HcozzalA7lxpzXpl/VkhUfGetuAAAAWElEQVQ4y+3SOxKAMAhFUQgkSshX3f9aXYCOUFjm1qd5DLA5gwU/4e4MHknD1ATMJNWuijaMgUqhzDbMY5aRown5OOdFwYaAQXtN4FjDiPyy2n3H9Y+/wBtvcRWqoJAFOQAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAZCAMAAAB0BpxXAAAAXVBMVEX////g59maroTj16m6yaT09/P09PFJl9DC3O/p7+bu4ZOqu5rX382PiGiVon3T2MqYoVjCz7f5+vrM3MSitpGYm3R3k12BnGjKvKzP3bz+++rx5Z306Z/w46vf17vmoc6yAAAAaUlEQVQ4y+3Stw6AMAwE0EsFh4QSev3/z2QNk2Fgy61+OkuWUaQpkaR8jJDhV2jMG9hpNDMaz8JKnE71UXPQSmzuWDGxjRLX7jQNxEAazKJU7SsOQgRtogzErrZ12/Xt+OaOBCvym/0Fb1tLFihEHgDLAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAZCAMAAAB0BpxXAAAAXVBMVEX////g59maroTj16m6yaT09/P09PFJl9DC3O/p7+bu4ZOqu5rX382PiGiVon3T2MqYoVjCz7f5+vrM3MSitpGYm3R3k12BnGjKvKzP3bz+++rx5Z306Z/w46vf17vmoc6yAAAAaUlEQVQ4y+3Stw6AMAwE0EsFh4QSev3/z2QNk2Fgy61+OkuWUaQpkaR8jJDhV2jMG9hpNDMaz8JKnE71UXPQSmzuWDGxjRLX7jQNxEAazKJU7SsOQgRtogzErrZ12/Xt+OaOBCvym/0Fb1tLFihEHgDLAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAaCAMAAADyku75AAAAb1BMVEUCLaHPzs7aACHgeIngACXfACXU1NRxF2JxF2IDLqHi4uLf39/Hw8TYDS7TpKvMtbnIyMja2trKrrHcHDzJu7zDjpbaKkjAwMDRlJ6/sLPEdoLQSF/heYjatbvCbXnQe4bXZHbXhpTFXnC8qq27u7sIHT1WAAAACHRSTlP+/////////kgsYtwAAACuSURBVDjL5dNJDsIwDAXQ2EkNZG46zwO9/xnpCiGVRl3DX3hhPf2VzdjjUhj7KXi/lhtLxCHGHHfJN9i2F2ApBOYBhcjisLMoMgIUaLsITIxVJY4AI5bKmkhj4ejpvK60a8gVkcbJQ04AQKTBT5HG1UOzVTvbGvDrOcQ61yE4rV0IOi/wFM4pUZq+x3wGzSAJlJREUipI5WBOYNbzxXLO63ofduF99gkvH8Vf/swLLRAf6S2QnckAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAaCAMAAADyku75AAAAb1BMVEUCLaHPzs7aACHgeIngACXfACXU1NRxF2JxF2IDLqHi4uLf39/Hw8TYDS7TpKvMtbnIyMja2trKrrHcHDzJu7zDjpbaKkjAwMDRlJ6/sLPEdoLQSF/heYjatbvCbXnQe4bXZHbXhpTFXnC8qq27u7sIHT1WAAAACHRSTlP+/////////kgsYtwAAACuSURBVDjL5dNJDsIwDAXQ2EkNZG46zwO9/xnpCiGVRl3DX3hhPf2VzdjjUhj7KXi/lhtLxCHGHHfJN9i2F2ApBOYBhcjisLMoMgIUaLsITIxVJY4AI5bKmkhj4ejpvK60a8gVkcbJQ04AQKTBT5HG1UOzVTvbGvDrOcQ61yE4rV0IOi/wFM4pUZq+x3wGzSAJlJREUipI5WBOYNbzxXLO63ofduF99gkvH8Vf/swLLRAf6S2QnckAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAQMAAAA03l8tAAAABlBMVEXtKTn///9O8W3fAAAAEklEQVQI12NgIAv8BwGSSbIAADA3LNT5TsD+AAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAQMAAAA03l8tAAAABlBMVEXtKTn///9O8W3fAAAAEklEQVQI12NgIAv8BwGSSbIAADA3LNT5TsD+AAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAgMAAABzfiX9AAAACVBMVEUAAADOESb///9w5v7GAAAAFUlEQVQY02MIhQMGWjFXwQHNmLQHAJQLWadZSURAAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAgMAAABzfiX9AAAACVBMVEUAAADOESb///9w5v7GAAAAFUlEQVQY02MIhQMGWjFXwQHNmLQHAJQLWadZSURAAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAgMAAABzfiX9AAAACVBMVEUhRov///+uHCiDi+U+AAAAFUlEQVQY02NYBQcMtGKGwgHNmLQHACMlWadYLf7+AAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAgMAAABzfiX9AAAACVBMVEUhRov///+uHCiDi+U+AAAAFUlEQVQY02NYBQcMtGKGwgHNmLQHACMlWadYLf7+AAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAgMAAABzfiX9AAAACVBMVEXVKx4AeTT54wAKw3EdAAAAFUlEQVQY02NgoD1YBQc0Y4bCAa2YAHXmWafbUCnbAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAgMAAABzfiX9AAAACVBMVEXVKx4AeTT54wAKw3EdAAAAFUlEQVQY02NgoD1YBQc0Y4bCAa2YAHXmWafbUCnbAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAgMAAABzfiX9AAAACVBMVEXZDyP////yr7XIwwUlAAAAFklEQVQY02NgYGBQDQ2NYICAUSYuJgAGeB8eIlqm5wAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAgMAAABzfiX9AAAACVBMVEXZDyP////yr7XIwwUlAAAAFklEQVQY02NgYGBQDQ2NYICAUSYuJgAGeB8eIlqm5wAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAgMAAABzfiX9AAAADFBMVEUAcsb///8etToftTtamkkBAAAAGElEQVQY02N4tQoKVjPQihkKBzRj0h4AAGLOW/Cjq+5HAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAgMAAABzfiX9AAAADFBMVEUAcsb///8etToftTtamkkBAAAAGElEQVQY02N4tQoKVjPQihkKBzRj0h4AAGLOW/Cjq+5HAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAgMAAABzfiX9AAAADFBMVEUMXq////9Kh8PD1+sc/9mlAAAAKklEQVQY02NgYHVggAFcTM5QMMDBBOIYqFLsTIImEHRDKBzgYBIEFJsAALoFJ2TsUBu2AAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAgMAAABzfiX9AAAADFBMVEUMXq////9Kh8PD1+sc/9mlAAAAKklEQVQY02NgYHVggAFcTM5QMMDBBOIYqFLsTIImEHRDKBzgYBIEFJsAALoFJ2TsUBu2AAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAgMAAABzfiX9AAAADFBMVEWAmF3/1QAAW7uAmF21ZTA2AAAAAXRSTlP+GuMHfQAAABpJREFUGNNjWAUHDIOBaf8fCv4whMLBYGACAHKYirK4JSjEAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAgMAAABzfiX9AAAADFBMVEWAmF3/1QAAW7uAmF21ZTA2AAAAAXRSTlP+GuMHfQAAABpJREFUGNNjWAUHDIOBaf8fCv4whMLBYGACAHKYirK4JSjEAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAgMAAABzfiX9AAAADFBMVEWlGTH09fjMh5QtKkoyD257AAAAH0lEQVQY02NgIAGsggOGUDggzPwPBzRjkuIcJF+QAAAjJYF/PyJQ8AAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAgMAAABzfiX9AAAADFBMVEWlGTH09fjMh5QtKkoyD257AAAAH0lEQVQY02NgIAGsggOGUDggzPwPBzRjkuIcJF+QAAAjJYF/PyJQ8AAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAgMAAABzfiX9AAAADFBMVEX/////AAD/f3//AQHNXVckAAAAF0lEQVQY02O4GgoF4QyDgbkKDhgGFwAA0P04aY5rCYgAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAgMAAABzfiX9AAAADFBMVEX/////AAD/f3//AQHNXVckAAAAF0lEQVQY02O4GgoF4QyDgbkKDhgGFwAA0P04aY5rCYgAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAgMAAABzfiX9AAAADFBMVEXVKh3///8AOabVKx55q0MDAAAAAXRSTlP+GuMHfQAAABpJREFUGNNjCIUDBloxV8EBzZj2/6HgD62YAHlVrHK7tinsAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAgMAAABzfiX9AAAADFBMVEXVKh3///8AOabVKx55q0MDAAAAAXRSTlP+GuMHfQAAABpJREFUGNNjCIUDBloxV8EBzZj2/6HgD62YAHlVrHK7tinsAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAgMAAABzfiX9AAAADFBMVEXoES380RYAh1HycSGsqsUBAAAAG0lEQVQY02NYBQShYMAwWJj/wQDMZICAQcAEAH5nZ5nGou1dAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAgMAAABzfiX9AAAADFBMVEXoES380RYAh1HycSGsqsUBAAAAG0lEQVQY02NYBQShYMAwWJj/wQDMZICAQcAEAH5nZ5nGou1dAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAD1BMVEUAkkbOKzf///+q28Hvt7vgJlTcAAAAGUlEQVQoz2NgAANmJTBwFAQDhlHBUUG8ggBRSidzkDNWIwAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAD1BMVEUAkkbOKzf///+q28Hvt7vgJlTcAAAAGUlEQVQoz2NgAANmJTBwFAQDhlHBUUG8ggBRSidzkDNWIwAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAD1BMVEUAnmD3fwD///+p3sn81KqjQLolAAAAGElEQVQoz2MQBAMRJTAwYICAUcFRQbyCAPRzJ3OsczPTAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAD1BMVEUAnmD3fwD///+p3sn81KqjQLolAAAAGElEQVQoz2MQBAMRJTAwYICAUcFRQbyCAPRzJ3OsczPTAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAD1BMVEXtKTkAI5X///+ptNv5t70X6cUbAAAAGElEQVQoz2MQBANhJTBwYICAUcFRQbyCAK7MKQicBg83AAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAD1BMVEXtKTkAI5X///+ptNv5t70X6cUbAAAAGElEQVQoz2MQBANhJTBwYICAUcFRQbyCAK7MKQicBg83AAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAElBMVEUAK3/OESb80RaomTjtjxrOESXfWuRDAAAAGklEQVQoz2NgAANmJTBwFAQBUYZRwVFBvIIAxOIn30Ew1B8AAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAElBMVEUAK3/OESb80RaomTjtjxrOESXfWuRDAAAAGklEQVQoz2NgAANmJTBwFAQBUYZRwVFBvIIAxOIn30Ew1B8AAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAElBMVEVtqdIAAAA/Pz/t9PlBQUHs9PmByX+UAAAAI0lEQVQoz2NgGHYg2BgDmDI4KWEAFQZBLIAEQaxmYrV92AEAvTIRzfY9AH0AAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAElBMVEVtqdIAAAA/Pz/t9PlBQUHs9PmByX+UAAAAI0lEQVQoz2NgGHYg2BgDmDI4KWEAFQZBLIAEQaxmYrV92AEAvTIRzfY9AH0AAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAElBMVEWGjsY6dyjOESYMHIz///+FjcUzsQhvAAAAAXRSTlP+GuMHfQAAAChJREFUKM9jUMICGIaKoAsWwMAaigECGIyxAJoIYrUdqzsFsYChIggAWI9PB/8YOioAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAElBMVEWGjsY6dyjOESYMHIz///+FjcUzsQhvAAAAAXRSTlP+GuMHfQAAAChJREFUKM9jUMICGIaKoAsWwMAaigECGIyxAJoIYrUdqzsFsYChIggAWI9PB/8YOioAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAElBMVEXGCy/+ywAAJmTGDDDrihCpkyFr4LrDAAAAAXRSTlP9g+pWxwAAABpJREFUKM9jUAIDVUEwcDYGAQOGUcFRQbyCAPqgSzR3NRKjAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAElBMVEXGCy/+ywAAJmTGDDDrihCpkyFr4LrDAAAAAXRSTlP9g+pWxwAAABpJREFUKM9jUAIDVUEwcDYGAQOGUcFRQbyCAPqgSzR3NRKjAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAElBMVEXOECYUtTr80RbtjxquxyGuyCKjAxX9AAAAHklEQVQoz2MQBANRJTAwYIAAiKDIqOCoIEwQNYUAAPaxJ3WCs2XbAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAElBMVEXOECYUtTr80RbtjxquxyGuyCKjAxX9AAAAHklEQVQoz2MQBANRJTAwYIAAiKDIqOCoIEwQNYUAAPaxJ3WCs2XbAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAFVBMVEX80RYAOJPOESaaGkF9hFXMECYCOZGyuUP4AAAAIklEQVQoz2NgGAWowAULYEgUxABi9BM0xgIYgpQwgCrdBAGDOyRlGGexgAAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAFVBMVEX80RYAOJPOESaaGkF9hFXMECYCOZGyuUP4AAAAIklEQVQoz2NgGAWowAULYEgUxABi9BM0xgIYgpQwgCrdBAGDOyRlGGexgAAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAFVBMVEXOECXOESb80RYAlGCovC7tjxrskBsC56JSAAAAAXRSTlP9g+pWxwAAACBJREFUKM9jYBQEATElMHA2BgMGiKDoqOCoIEwQNYUAADVVSCfgcZ/QAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAFVBMVEXOECXOESb80RYAlGCovC7tjxrskBsC56JSAAAAAXRSTlP9g+pWxwAAACBJREFUKM9jYBQEATElMHA2BgMGiKDoqOCoIEwQNYUAADVVSCfgcZ/QAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAG1BMVEXBJy22KS06TjCHOC6fMS1/Oi5ESzBmQi8rUzDm0+j4AAAAM0lEQVQoz2NgGL6AvQBTTFAsURBD0EOjqQVDkFnZyABTf5IaphiLepEDhiCjAbPA8A1aAE6IBLhFmViXAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAG1BMVEXBJy22KS06TjCHOC6fMS1/Oi5ESzBmQi8rUzDm0+j4AAAAM0lEQVQoz2NgGL6AvQBTTFAsURBD0EOjqQVDkFnZyABTf5IaphiLepEDhiCjAbPA8A1aAE6IBLhFmViXAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAGFBMVEUAfTn////8PTIAfjp+XTZWqXz9fnepk3lpgAtyAAAAAXRSTlP+GuMHfQAAAB9JREFUKM9jEAQDMSVkwDAqKO6CDKCCosZIwGAkCwIAcRhIc5cNL1IAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAGFBMVEUAfTn////8PTIAfjp+XTZWqXz9fnepk3lpgAtyAAAAAXRSTlP+GuMHfQAAAB9JREFUKM9jEAQDMSVkwDAqKO6CDKCCosZIwGAkCwIAcRhIc5cNL1IAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAHlBMVEUApVH/1QAaIG3qKDm2JkWMejZAsj0bIWz91ADoJzlaCl/hAAAALElEQVQoz2OYbIwBLBnoJuiCBTAUKWEAdfoJhmIBDI2CGECCfoJpWADDgAIAZ5dK6eNZmaUAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAHlBMVEUApVH/1QAaIG3qKDm2JkWMejZAsj0bIWz91ADoJzlaCl/hAAAALElEQVQoz2OYbIwBLBnoJuiCBTAUKWEAdfoJhmIBDI2CGECCfoJpWADDgAIAZ5dK6eNZmaUAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAHlBMVEXOESb80RYAel7ZQCGINDjyqRjRHCTiZR7ndx2INDk0zy9lAAAAPUlEQVQoz2NQAgNNBjAwFAQDBoigyhAXZDbAIsjRgCnI3hpRgCHIFiiagKm9UByLmcGmWAQT2IZVeKKmEADM8y2ZtlFueQAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAHlBMVEXOESb80RYAel7ZQCGINDjyqRjRHCTiZR7ndx2INDk0zy9lAAAAPUlEQVQoz2NQAgNNBjAwFAQDBoigyhAXZDbAIsjRgCnI3hpRgCHIFiiagKm9UByLmcGmWAQT2IZVeKKmEADM8y2ZtlFueQAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAIVBMVEXOESYAAAAznjUWAQM0nDQ1BAluCBNMBQ1aBg9/CRa3DiHb5SsEAAAAYklEQVQoz2MQxAIYYAzTsvRgdEHzmWlpM4tRBYU7U4tNy2YYogiKzTAOSzXuTEQRbGuOYmBYapGOLCg8w5wBCII7DZEEJTKsQIKL2wqRVRqahgJBsDBU+5AGTkoYQGWoCAIA3CUzq4wFS+cAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAIVBMVEXOESYAAAAznjUWAQM0nDQ1BAluCBNMBQ1aBg9/CRa3DiHb5SsEAAAAYklEQVQoz2MQxAIYYAzTsvRgdEHzmWlpM4tRBYU7U4tNy2YYogiKzTAOSzXuTEQRbGuOYmBYapGOLCg8w5wBCII7DZEEJTKsQIKL2wqRVRqahgJBsDBU+5AGTkoYQGWoCAIA3CUzq4wFS+cAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAIVBMVEXaJR3//wDhShf86gLztwnpexHcMhvvoAzlaRP41gXjWxXelDKJAAAAYUlEQVQoz2NgoDtgS8AiyBqARZDFAYsgowEWwUYJLIKOIugimoJgMAlVtBAkJo6mlMNQUFB4AboBiYKCYhj2LBQUFMIQLBQ2FMcQNHRLEUYXYxJlYAhUQA8OoABTAMOgBQBOLAlBK2IgQgAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAIVBMVEXaJR3//wDhShf86gLztwnpexHcMhvvoAzlaRP41gXjWxXelDKJAAAAYUlEQVQoz2NgoDtgS8AiyBqARZDFAYsgowEWwUYJLIKOIugimoJgMAlVtBAkJo6mlMNQUFB4AboBiYKCYhj2LBQUFMIQLBQ2FMcQNHRLEUYXYxJlYAhUQA8OoABTAMOgBQBOLAlBK2IgQgAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAIVBMVEXeKRD/3QDgNA/vgQjkSw32pwT7wwLiPw7pZwrmVgzxjgfoZuX/AAAAXklEQVQoz2NgwA2UMEQUGBjaHNAFFzAwKGOozARilgkoQhxWosYKDKwBKIJMgYIpDAzsaLoZBSdgOsfRDGgTSwGqYAuTAQODagAW17M7YIpNxubNtgIsgkwMowAPAAD2ignB69EaTQAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAIVBMVEXeKRD/3QDgNA/vgQjkSw32pwT7wwLiPw7pZwrmVgzxjgfoZuX/AAAAXklEQVQoz2NgwA2UMEQUGBjaHNAFFzAwKGOozARilgkoQhxWosYKDKwBKIJMgYIpDAzsaLoZBSdgOsfRDGgTSwGqYAuTAQODagAW17M7YIpNxubNtgIsgkwMowAPAAD2ignB69EaTQAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJ1BMVEUAAADOESb///8Aej3A3s8rkF3f7ubv9/PP5tqq0794uJhPo3kPgUhA53/OAAAAV0lEQVQoz2MQxAIYhoqgEhYAFVSBUE4ogqkQKgxZ0GXxlCQlJTVPKxckwVZj6yIlJfXNxhFIgmrGQSBK1TgJSVAz6jiIqlk6CVmwqANEdagjC6K7cygDAFe0LEzg45X5AAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJ1BMVEUAAADOESb///8Aej3A3s8rkF3f7ubv9/PP5tqq0794uJhPo3kPgUhA53/OAAAAV0lEQVQoz2MQxAIYhoqgEhYAFVSBUE4ogqkQKgxZ0GXxlCQlJTVPKxckwVZj6yIlJfXNxhFIgmrGQSBK1TgJSVAz6jiIqlk6CVmwqANEdagjC6K7cygDAFe0LEzg45X5AAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJ1BMVEUAaz780RYAaz/OESbOEiUAAACCbAvcthMPDQG1lg+dgg3swxQwKAR6YlIEAAAAAXRSTlP9g+pWxwAAAEtJREFUKM9jcDbGACYMQ0VQEAbEC+FMhKBYIhZBmYMYguJpqWFphegqZ4SGdmJoF2+N2IgpGBqKKSjVOWMhpuBGaYQgkxIGUBgqggBnKVEwiejeOwAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJ1BMVEUAaz780RYAaz/OESbOEiUAAACCbAvcthMPDQG1lg+dgg3swxQwKAR6YlIEAAAAAXRSTlP9g+pWxwAAAEtJREFUKM9jcDbGACYMQ0VQEAbEC+FMhKBYIhZBmYMYguJpqWFphegqZ4SGdmJoF2+N2IgpGBqKKSjVOWMhpuBGaYQgkxIGUBgqggBnKVEwiejeOwAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJ1BMVEUAfC4AJnT80CK9uyRUmCjsyyI/kSqdsCbcxSJ+pigQgS0PgS0fhixRK6rDAAAAbUlEQVQoz2MQBAElOGAAg6Em6KGk1IIuqMyipORghCaoxmCkzJCEJmjAkKTGwIwm6MDA0cDAQoxKNQbzYgwzlVmilmLYruQxgRPDnUqqC7iCMATVGRiKMFVu4MZUqTSBE0soRR/FIqheRK2QBwDQhTJFgRiQewAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJ1BMVEUAfC4AJnT80CK9uyRUmCjsyyI/kSqdsCbcxSJ+pigQgS0PgS0fhixRK6rDAAAAbUlEQVQoz2MQBAElOGAAg6Em6KGk1IIuqMyipORghCaoxmCkzJCEJmjAkKTGwIwm6MDA0cDAQoxKNQbzYgwzlVmilmLYruQxgRPDnUqqC7iCMATVGRiKMFVu4MZUqTSBE0soRR/FIqheRK2QBwDQhTJFgRiQewAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJ1BMVEWbFjXOESabFzf///8AKGgBJ2c0VIfw8vZQa5eAlLSgr8fI0N4gQ3uPvoTKAAAAAXRSTlP+GuMHfQAAAFVJREFUKM9jEMQCGOgmyKSEARQYQlwwgCtc0G31rhQMwcnGxpbogh7GQNCCJugOEixBEzwMErRBE0wGCZphE7QhxkystmN1J3Yfubgi+R1rKA1oxAEA7A9c3kKd8BcAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJ1BMVEWbFjXOESabFzf///8AKGgBJ2c0VIfw8vZQa5eAlLSgr8fI0N4gQ3uPvoTKAAAAAXRSTlP+GuMHfQAAAFVJREFUKM9jEMQCGOgmyKSEARQYQlwwgCtc0G31rhQMwcnGxpbogh7GQNCCJugOEixBEzwMErRBE0wGCZphE7QhxkystmN1J3Yfubgi+R1rKA1oxAEA7A9c3kKd8BcAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJ1BMVEX+AAAAAJV+AEsUFJ2Cgsv///8BAJQwMKmfn9dCQrC6uuLg4PJgYL0ICCqaAAAAWUlEQVQoz2NIFIQBBgTAJSgsXmiIISje4lGILijs6bVkiiG6ypLQUHd0lZIdoaEdE9FVmoSGOmNY1LI12gPDIuMlXsYYFmXWHJ+I6SNhQ2K8qQQHDKMAFwAASRwaKceV/cMAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJ1BMVEX+AAAAAJV+AEsUFJ2Cgsv///8BAJQwMKmfn9dCQrC6uuLg4PJgYL0ICCqaAAAAWUlEQVQoz2NIFIQBBgTAJSgsXmiIISje4lGILijs6bVkiiG6ypLQUHd0lZIdoaEdE9FVmoSGOmNY1LI12gPDIuMlXsYYFmXWHJ+I6SNhQ2K8qQQHDKMAFwAASRwaKceV/cMAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJ1BMVEX///+8AC355+vIL1Pqr73VX3vegJbyz9fhj6LADznRT27NP2DqsL6WBkFXAAAAXklEQVQoz2NgoDdgOpajgCG2UVBQCl30pCAQTEEVYxcEgwIUQWaIoAGKYCNEUAJFMBAiKIoiaAgRFEYRFIQCbCqlCZuJ1Xas7sTqIwZPLH5nYFqIJZQYmNxSFOgeiQChfg9XF5eK2QAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJ1BMVEX///+8AC355+vIL1Pqr73VX3vegJbyz9fhj6LADznRT27NP2DqsL6WBkFXAAAAXklEQVQoz2NgoDdgOpajgCG2UVBQCl30pCAQTEEVYxcEgwIUQWaIoAGKYCNEUAJFMBAiKIoiaAgRFEYRFIQCbCqlCZuJ1Xas7sTqIwZPLH5nYFqIJZQYmNxSFOgeiQChfg9XF5eK2QAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJ1BMVEX/////mTMSiAfY2O2pqdeDg8bCwuOPj8tjY7e2tt2entJvb7xlZbj+tLZ3AAAAOUlEQVQoz2MQxAIYhoogXsByNMIBQ9B8smUwhmCZ15J0DMENHi3cxKk0xWYmW2tEAn73KWEBQ0UQAHj7LkjxXc8wAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJ1BMVEX/////mTMSiAfY2O2pqdeDg8bCwuOPj8tjY7e2tt2entJvb7xlZbj+tLZ3AAAAOUlEQVQoz2MQxAIYhoogXsByNMIBQ9B8smUwhmCZ15J0DMENHi3cxKk0xWYmW2tEAn73KWEBQ0UQAHj7LkjxXc8wAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJ1BMVEX////QDDPohpnVIkX87/L54OX0wsvxsr/cSWbfWHPldYzrlabbSGWxUx9nAAAAj0lEQVQoz2NgoBlgTSrFEOM2FBQ0QhNjaRQEglZUQWeQmKBwAIrgRLCg4AFkMXaImKA0siAPVFAYWZARKijogCQYCBNMgIkoYQEMQAUGMAUHoTpAggIwQUMkQTFYAAgiCUpCBbmQBQULIIKJKIImkGAxRBEUBitNFkQRFJQC+sVJEE1QULhpsiCGICqgUBAANkcdSdbxxVsAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJ1BMVEX////QDDPohpnVIkX87/L54OX0wsvxsr/cSWbfWHPldYzrlabbSGWxUx9nAAAAj0lEQVQoz2NgoBlgTSrFEOM2FBQ0QhNjaRQEglZUQWeQmKBwAIrgRLCg4AFkMXaImKA0siAPVFAYWZARKijogCQYCBNMgIkoYQEMQAUGMAUHoTpAggIwQUMkQTFYAAgiCUpCBbmQBQULIIKJKIImkGAxRBEUBitNFkQRFJQC+sVJEE1QULhpsiCGICqgUBAANkcdSdbxxVsAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJ1BMVEXtKTn////2lJzxUV/uNUX1gYryYm7vQlD6ur/+7vD7ys73oaj1jZbd0n4ZAAAAW0lEQVQoz2NgwAFYkjHF2Bcqs2MIVk5msHBAF1wY4GCKYaKgSzMDkwKqIJskQzgDWwKqILMgNhdNLHAqCEMXDFzAYRCKLsgt4YBFf3aPAQMRQAkLYBDEAkayIADytx8PHH3E9QAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJ1BMVEXtKTn////2lJzxUV/uNUX1gYryYm7vQlD6ur/+7vD7ys73oaj1jZbd0n4ZAAAAW0lEQVQoz2NgwAFYkjHF2Bcqs2MIVk5msHBAF1wY4GCKYaKgSzMDkwKqIJskQzgDWwKqILMgNhdNLHAqCEMXDFzAYRCKLsgt4YBFf3aPAQMRQAkLYBDEAkayIADytx8PHH3E9QAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJFBMVEUAhT/jGyP970LjGyL1pzaoy0GRwj9nsD8dkT7U3kDt6EFOpj/lyas/AAAARUlEQVQoz2NgAANWJTBwFAQBYYYhJ6g5CYugehEWQY0mDEGtDQwM3IvQVaoxMCRham/gwDRTk71gEYagWpJa0tANT0KCAK4xK1LO9A4bAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJFBMVEUAhT/jGyP970LjGyL1pzaoy0GRwj9nsD8dkT7U3kDt6EFOpj/lyas/AAAARUlEQVQoz2NgAANWJTBwFAQBYYYhJ6g5CYugehEWQY0mDEGtDQwM3IvQVaoxMCRham/gwDRTk71gEYagWpJa0tANT0KCAK4xK1LO9A4bAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJFBMVEVBid3///+gxO5bmeLN4Pbp8ftMkN+WvuyCsen4+/6vzfG30vJNbQNHAAAAUUlEQVQoz2NgGMSA2QCLINcCLIKsAVgEDYUxhLSVHEWUNqEJpggCgRu60kpBwekY+pkEBRUwBFkEBR0wBBNndIphCJYaMIdjCDYwMHAwDDEAAKAdCNZzMJXoAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJFBMVEVBid3///+gxO5bmeLN4Pbp8ftMkN+WvuyCsen4+/6vzfG30vJNbQNHAAAAUUlEQVQoz2NgGMSA2QCLINcCLIKsAVgEDYUxhLSVHEWUNqEJpggCgRu60kpBwekY+pkEBRUwBFkEBR0wBBNndIphCJYaMIdjCDYwMHAwDDEAAKAdCNZzMJXoAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJFBMVEX////oES353Rb5w8ruTGHwdSH1qhvrNyj40RbtTCTsPVT0nR3fS35zAAAAZUlEQVQoz2NggAJDQUFhBnRAgmBoKBbBInUsgkKKtBV0gYKFQopSMDaDIAhMBGIhRSAhCeZCBFtDQ0ODVIFEBJKgEhwgCbalpaUlqQGJDCTBQmxmCsIEIYB+fscf8tuyKYpiJEEA44Af4yfh9owAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJFBMVEX////oES353Rb5w8ruTGHwdSH1qhvrNyj40RbtTCTsPVT0nR3fS35zAAAAZUlEQVQoz2NggAJDQUFhBnRAgmBoKBbBInUsgkKKtBV0gYKFQopSMDaDIAhMBGIhRSAhCeZCBFtDQ0ODVIFEBJKgEhwgCbalpaUlqQGJDCTBQmxmCsIEIYB+fscf8tuyKYpiJEEA44Af4yfh9owAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAKlBMVEU2fT67IkGwzLO0Ci3///83fj/syB3+/v7fmSDPZSTEPyfVeyK/LinpvB0xIzJ4AAAAAXRSTlP+GuMHfQAAAGFJREFUKM9jYA3FAAEMtBBUwgIYSlwwgDt2QUEsgMEYBqwWw5kIQevNWARtL2MIWna0ZXRMRlc5LS0tE0O7VVraYgxBm7S0wxiC1pnTNmMIWhy2aYYLYvUR8QGCNTzpFZsAgv2JIjNIFmMAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAKlBMVEU2fT67IkGwzLO0Ci3///83fj/syB3+/v7fmSDPZSTEPyfVeyK/LinpvB0xIzJ4AAAAAXRSTlP+GuMHfQAAAGFJREFUKM9jYA3FAAEMtBBUwgIYSlwwgDt2QUEsgMEYBqwWw5kIQevNWARtL2MIWna0ZXRMRlc5LS0tE0O7VVraYgxBm7S0wxiC1pnTNmMIWhy2aYYLYvUR8QGCNTzpFZsAgv2JIjNIFmMAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAKlBMVEUAOKVqMWLVKx4AOab////qlI7AzulrMWEQRaxCbb6sv+IgUrGAnNPKe4MtJuTCAAAAAnRSTlP9/o2EjdMAAABESURBVCjPY2A2BgEzF2TAQJLgZmyCKzAFLWb6zMZUecRlBaaglQsWM81mTcYU7DBupsjxmILi5SBQG4oMGJSwgJEsCAD/7Gr8c0BulwAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAKlBMVEUAOKVqMWLVKx4AOab////qlI7AzulrMWEQRaxCbb6sv+IgUrGAnNPKe4MtJuTCAAAAAnRSTlP9/o2EjdMAAABESURBVCjPY2A2BgEzF2TAQJLgZmyCKzAFLWb6zMZUecRlBaaglQsWM81mTcYU7DBupsjxmILi5SBQG4oMGJSwgJEsCAD/7Gr8c0BulwAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAKlBMVEUAlEMAlUPcJB/73krzrT66y0jdKiDthjWawkfvljioxkfxoDuLvUZ+uUZGJOr2AAAAAXRSTlP9g+pWxwAAAItJREFUKM9tysENQDAUh/EawMFBIuL0VqhExM3BAjYwghVsYAUbWMEIFtLqa/t/6jv+8qmsgGZt6xRi+ZpeBfJIiH4U6EfEMCKGEZDHXaAbe0KEMeIRx4A1jAHdOBAij6dAMTJWYmTcxOiQx1GgG9sFkceJEK/PaLH5jhaT0WA6GryTkVSejqR+RnoAexFQiUISXxUAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAKlBMVEUAlEMAlUPcJB/73krzrT66y0jdKiDthjWawkfvljioxkfxoDuLvUZ+uUZGJOr2AAAAAXRSTlP9g+pWxwAAAItJREFUKM9tysENQDAUh/EawMFBIuL0VqhExM3BAjYwghVsYAUbWMEIFtLqa/t/6jv+8qmsgGZt6xRi+ZpeBfJIiH4U6EfEMCKGEZDHXaAbe0KEMeIRx4A1jAHdOBAij6dAMTJWYmTcxOiQx1GgG9sFkceJEK/PaLH5jhaT0WA6GryTkVSejqR+RnoAexFQiUISXxUAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAKlBMVEVBjt6gsG//0QBBj96gsG58o9qqkbfvNkPKepTZan9Wm+GRpdO/jathouOFF8O8AAAAAnRSTlP9/o2EjdMAAAA9SURBVCjPY2A2xgAGDDgErYOxCNokYxG82YUpGDa9IpU4QazasVuE1UnE+2ggBZWwAAYRFwzgSBPtlAkCAFHVa1J3h5tcAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAKlBMVEVBjt6gsG//0QBBj96gsG58o9qqkbfvNkPKepTZan9Wm+GRpdO/jathouOFF8O8AAAAAnRSTlP9/o2EjdMAAAA9SURBVCjPY2A2xgAGDDgErYOxCNokYxG82YUpGDa9IpU4QazasVuE1UnE+2ggBZWwAAYRFwzgSBPtlAkCAFHVa1J3h5tcAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAALVBMVEUAJn//xyaqkEM/MQjTpB4gGAQwJQZaRg2ffBfvuiO/lRxzWhAAAACviBoPDAKyFauCAAAAYklEQVQoz2NgAAMmQTBQYEAGAy4o4oghOFFQvFBQEk2wbaHPEakMNEHhRNcQUUM0QYmTYolzLqJbFCFm2Iphe7Ww4XYMwcvChrYYgkvrnr/CEHTeGm2C6SNhQ0FKBAdNHAEAi0wclGP3UW4AAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAALVBMVEUAJn//xyaqkEM/MQjTpB4gGAQwJQZaRg2ffBfvuiO/lRxzWhAAAACviBoPDAKyFauCAAAAYklEQVQoz2NgAAMmQTBQYEAGAy4o4oghOFFQvFBQEk2wbaHPEakMNEHhRNcQUUM0QYmTYolzLqJbFCFm2Iphe7Ww4XYMwcvChrYYgkvrnr/CEHTeGm2C6SNhQ0FKBAdNHAEAi0wclGP3UW4AAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAALVBMVEV3ZDoAnknvKy14Yzr60BVttDHxPin4nRz6vheYvSmvkCrfzBr3ix72jB4gpEG5oHn8AAAAAXRSTlP+GuMHfQAAAEdJREFUKM9jUMICGIacoFoSFkHdQ1gENZowBNVKXFzcYQYwMBtDgJWLy2Io04BBEAa2eMOZcEE5zymYgqKBooEYgshgSAsCADLrPLD18xGQAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAALVBMVEV3ZDoAnknvKy14Yzr60BVttDHxPin4nRz6vheYvSmvkCrfzBr3ix72jB4gpEG5oHn8AAAAAXRSTlP+GuMHfQAAAEdJREFUKM9jUMICGIacoFoSFkHdQ1gENZowBNVKXFzcYQYwMBtDgJWLy2Io04BBEAa2eMOZcEE5zymYgqKBooEYgshgSAsCADLrPLD18xGQAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAALVBMVEX/////AAD/v7//Pz//wMD/8/P/f3//19f/5ub/YWH/nZ3/sLD/Ly//gID/QECpnlCHAAAAk0lEQVQoz2NggAJmQUEDBnSALsjughB0KYAKMokhBBMVIGKsLyWvwwRrJ84LgIgKCgrBBBUFBSFiHLukNGCCTQtXN+A2k4GVFSEYEIDTnS5Q4CMoeATGBlqNCWgiqAQFOoKCh2BsnOGJ1UfY/M6xS9oDJtgCDyVs4clqKZkOEyybOBlqKAu28GRXQQg6FeCLdwxBAHsYKbiOyGOgAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAALVBMVEX/////AAD/v7//Pz//wMD/8/P/f3//19f/5ub/YWH/nZ3/sLD/Ly//gID/QECpnlCHAAAAk0lEQVQoz2NggAJmQUEDBnSALsjughB0KYAKMokhBBMVIGKsLyWvwwRrJ84LgIgKCgrBBBUFBSFiHLukNGCCTQtXN+A2k4GVFSEYEIDTnS5Q4CMoeATGBlqNCWgiqAQFOoKCh2BsnOGJ1UfY/M6xS9oDJtgCDyVs4clqKZkOEyybOBlqKAu28GRXQQg6FeCLdwxBAHsYKbiOyGOgAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAALVBMVEXPEyr/zAAAJH3PFCv9ygECI3y7xNsbOYrp7PMuSpSotNM8V5tTaqZXbqmFlcDhG/iSAAAAAXRSTlP9g+pWxwAAAFhJREFUKM9jcBTEACIMQ0UwSAkDqMIF1TtnFKELqiWlT1NLQhOseqSkpLccVVBjEYjUakIR1LkEInUPIQtqZkM0bpuEJKgO0aekUYTqJBR3MhtjAIOhIggAAWBSAu+GeDgAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAALVBMVEXPEyr/zAAAJH3PFCv9ygECI3y7xNsbOYrp7PMuSpSotNM8V5tTaqZXbqmFlcDhG/iSAAAAAXRSTlP9g+pWxwAAAFhJREFUKM9jcBTEACIMQ0UwSAkDqMIF1TtnFKELqiWlT1NLQhOseqSkpLccVVBjEYjUakIR1LkEInUPIQtqZkM0bpuEJKgO0aekUYTqJBR3MhtjAIOhIggAAWBSAu+GeDgAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAALVBMVEXjCRbjChf////nKTXrTFblGyf4wsXtZW3+8PHoOELvdHv1o6j84eL2srbxhIofikYmAAAAAXRSTlP+GuMHfQAAAGRJREFUKM9jYBTEAAIMdBYUnogpGN2klIIuKNKkW+m1EE3QQqlQUDAETTBJD8QODkQWFFY6CGKbbJyMJCiidBHEFtdJRBKUU3oIclWSkiMhlXAzjQnZjt2dWH2E1e/YQ2mgIg4A7pA0KOwEES4AAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAALVBMVEXjCRbjChf////nKTXrTFblGyf4wsXtZW3+8PHoOELvdHv1o6j84eL2srbxhIofikYmAAAAAXRSTlP+GuMHfQAAAGRJREFUKM9jYBTEAAIMdBYUnogpGN2klIIuKNKkW+m1EE3QQqlQUDAETTBJD8QODkQWFFY6CGKbbJyMJCiidBHEFtdJRBKUU3oIclWSkiMhlXAzjQnZjt2dWH2E1e/YQ2mgIg4A7pA0KOwEES4AAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAMFBMVEUAbDWAtpqgyLMQdUFgo4FwrI1QmnSQv6fA283S5dsgfk5AkWew0cAwh1v3+/mPvqafxqwrAAAAdUlEQVQoz2NgGBzA2ABNYKuQr2tSp2vxnCIkQad2J5+gQ0HCRYVIgkGNtanZVd0lmYJIgqmdk5L8tQ6JFSoiCTKmysrOeCTq5q6JJJjTkfRJYpm7o6ANkuCqzZc3MBvssmb2opP3UbmmgiCg+RSLSmbjwRBdAAOBHQ8vIxWsAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAMFBMVEUAbDWAtpqgyLMQdUFgo4FwrI1QmnSQv6fA283S5dsgfk5AkWew0cAwh1v3+/mPvqafxqwrAAAAdUlEQVQoz2NgGBzA2ABNYKuQr2tSp2vxnCIkQad2J5+gQ0HCRYVIgkGNtanZVd0lmYJIgqmdk5L8tQ6JFSoiCTKmysrOeCTq5q6JJJjTkfRJYpm7o6ANkuCqzZc3MBvssmb2opP3UbmmgiCg+RSLSmbjwRBdAAOBHQ8vIxWsAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAMFBMVEXSDzMAfjrSEDSeKzWNMzUAfTkyl2D////AGDOQx6lvto+428cEgDwPhUVQpnfv9/JzkBP1AAAAAXRSTlP+GuMHfQAAAExJREFUKM9jYFLCAAoM9BRsNkYCFlBBR0EkIEJYUG5X4lEMwfmJoRgqj1UBCVE0QclaLGaeLiRWJVYzz8xPJNadgoKhBL2JNZQGLuIAYR5H52EZ6mEAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAMFBMVEXSDzMAfjrSEDSeKzWNMzUAfTkyl2D////AGDOQx6lvto+428cEgDwPhUVQpnfv9/JzkBP1AAAAAXRSTlP+GuMHfQAAAExJREFUKM9jYFLCAAoM9BRsNkYCFlBBR0EkIEJYUG5X4lEMwfmJoRgqj1UBCVE0QclaLGaeLiRWJVYzz8xPJNadgoKhBL2JNZQGLuIAYR5H52EZ6mEAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAMFBMVEXnABLnABP////zf4jtQE7rLz7qHy/83+H+8PH4qa/6xcj1j5fwYGvxb3noECH84OIlBDrBAAAAAXRSTlP9g+pWxwAAAG1JREFUKM9jYBTEAAIM9BcUDcQUzFRSmoYuKNO0eJfGQTRBp1JRYwsVVEG5isRNSkrqD1EERXRFlLarKzmiCAqrCitdy1IyRBGUVJQsETykNJGwSqxmyv0A2a7/EMOdl9Hdid1HWP2OPZQGJOIAPpI4lSZvLh0AAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAMFBMVEXnABLnABP////zf4jtQE7rLz7qHy/83+H+8PH4qa/6xcj1j5fwYGvxb3noECH84OIlBDrBAAAAAXRSTlP9g+pWxwAAAG1JREFUKM9jYBTEAAIM9BcUDcQUzFRSmoYuKNO0eJfGQTRBp1JRYwsVVEG5isRNSkrqD1EERXRFlLarKzmiCAqrCitdy1IyRBGUVJQsETykNJGwSqxmyv0A2a7/EMOdl9Hdid1HWP2OPZQGJOIAPpI4lSZvLh0AAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAMFBMVEXtKDjtKTkAI5X////vRFLuOknuNkXxWmf5tbv819qptNv7ys5YaLP83N/3oajEtdCITnYQAAAAAXRSTlP9g+pWxwAAAGFJREFUKM9jUFLSMjZuFBRxFIQDAYahKCi3e/dDsOCZM+fv3m13dwcKiqRNtkxzBAmGgkBqaChQhfi0zGmZhSBBRoRZ4pZpaZMxBI0bJYyJU4nNTITtSIIIdyILwn00RAQB9plFeRIwkYUAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAMFBMVEXtKDjtKTkAI5X////vRFLuOknuNkXxWmf5tbv819qptNv7ys5YaLP83N/3oajEtdCITnYQAAAAAXRSTlP9g+pWxwAAAGFJREFUKM9jUFLSMjZuFBRxFIQDAYahKCi3e/dDsOCZM+fv3m13dwcKiqRNtkxzBAmGgkBqaChQhfi0zGmZhSBBRoRZ4pZpaZMxBI0bJYyJU4nNTITtSIIIdyILwn00RAQB9plFeRIwkYUAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAA21BMVEU9XriuCwu+vr6RkZHrpgMAAAD///+xDAs+Xrn/2QAcGxuyOgm4OghBQUFtbW2rCwlOSYUrKyvrpgX92AJPPDnEaQbu6OhJUJKMMzOzKgeEHTLWqpjUmZnVm5vU1NTHbm5nPj+3Pz+pGBiMjIybJiaCXDp2JEBnL1SbYSvDZwN3W09TQniPGSkPDw/BX1+1UA9aPG60KCjr19evr6/v7+/6+vpiYGo4QGtHTo2vZBlwcHDOl12tOAbBcnLEgVe5b1S0TCI7WqNgYGByTT2XNzcPGS84THsbKU8yTYzAGvZjAAAAAXRSTlP9g+pWxwAAAQ1JREFUOMvdk9lWwjAQQDNoqqa2ScDSHShlBwFRwB13/f8vMmlOK6JoXvU+zrmZzJIgtK8FQn9BrBxoUUHlXS3KaG8TaD0lCXwJb4rNBsHpfD6LTn4WPfLGXk8NQbW+RfQPBY/4mblLfiZNI5SRSX3cXBeB+qZpHh1b1st0SaySpBqa13e3N2P6IQJQU3qY2La9WHC+I6kZ4WQVJQCQi9BvD3qO08YFWZWCK6fv9AYXfp6xy1hHHBQZL0VKm/NUZYxFcHTvMppnDM7dQB6QNQpISdUYyRgdulNa1Njpqgk31M0PWdux6jMYjta7LuYoPFL7NEfYuhmM01n8y2ayXXte65tda78e7ff4n37hOy+LLL1mIK03AAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAA21BMVEU9XriuCwu+vr6RkZHrpgMAAAD///+xDAs+Xrn/2QAcGxuyOgm4OghBQUFtbW2rCwlOSYUrKyvrpgX92AJPPDnEaQbu6OhJUJKMMzOzKgeEHTLWqpjUmZnVm5vU1NTHbm5nPj+3Pz+pGBiMjIybJiaCXDp2JEBnL1SbYSvDZwN3W09TQniPGSkPDw/BX1+1UA9aPG60KCjr19evr6/v7+/6+vpiYGo4QGtHTo2vZBlwcHDOl12tOAbBcnLEgVe5b1S0TCI7WqNgYGByTT2XNzcPGS84THsbKU8yTYzAGvZjAAAAAXRSTlP9g+pWxwAAAQ1JREFUOMvdk9lWwjAQQDNoqqa2ScDSHShlBwFRwB13/f8vMmlOK6JoXvU+zrmZzJIgtK8FQn9BrBxoUUHlXS3KaG8TaD0lCXwJb4rNBsHpfD6LTn4WPfLGXk8NQbW+RfQPBY/4mblLfiZNI5SRSX3cXBeB+qZpHh1b1st0SaySpBqa13e3N2P6IQJQU3qY2La9WHC+I6kZ4WQVJQCQi9BvD3qO08YFWZWCK6fv9AYXfp6xy1hHHBQZL0VKm/NUZYxFcHTvMppnDM7dQB6QNQpISdUYyRgdulNa1Njpqgk31M0PWdux6jMYjta7LuYoPFL7NEfYuhmM01n8y2ayXXte65tda78e7ff4n37hOy+LLL1mIK03AAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAA4VBMVEUAAAA3LQT2zRXlvRP70BX///8KCADOESYAnkn80Ra6mQ/UJiPQGCUTDwFCOAUQEBDIpxH7+/uLcwzVsRJZSgfvxhTcthMdGAIIoEfxoRnuzhgWo0T7yxbZOSL1sxj4wRbdTiCliQ6Xl5dFrTprWAl5ty8xqD/lbB04ODggICAsJAN2YQrt7e2lpaXcyhwjpUHFxiGcvSnqhxuAagu5wyPnexxXsDfRyB1+fn6WfA26urpYV1OMjIy4uLjk5OTx8fGRuyvlzBqGuC0fHx9NSC+pwCZ8fHzIyMjtkhpwcHCzs7NT4XdnAAABTElEQVQ4y4XSZ3eCMBiG4VdMTKM4UEBa7RBHnV12aK3avf7/D+oboBgiIx/4wn2uc5LzwEHKad3yRg6Ck9LdH5F6ATJD5OyQSwmRWxYgM2x98HxFzgrxYfeFd1ZVgOF/l7Pjwta14EbT4ZcbcHXShniujL+3lI58rsEPS3uhg5yJf6trSuladHPSPmdMDbsXvCg4WMxm9PHXhXENOaaGzjOxzPCmW7zORENOV8MBcs3dkzwJ7uSYeUcKnVdi9eS38zidqeHgIcIBNHecFDp9TYtyPYvc6UwNkau9i0cJuaLMhSFyE1iswf0MOjPKBeHlFa+NAUaGYfhiWeX8sK+RufcalBreCsw8v9GZGiLnzf3N3UzpZvoD5Q4/PWN7B6S5rwz8VOI4EcpznyVxIozMHbnvEosP5bkvSQIXDSu2P6iMEOeezEmhN/eUjv0BCoErISxfBDYAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAA4VBMVEUAAAA3LQT2zRXlvRP70BX///8KCADOESYAnkn80Ra6mQ/UJiPQGCUTDwFCOAUQEBDIpxH7+/uLcwzVsRJZSgfvxhTcthMdGAIIoEfxoRnuzhgWo0T7yxbZOSL1sxj4wRbdTiCliQ6Xl5dFrTprWAl5ty8xqD/lbB04ODggICAsJAN2YQrt7e2lpaXcyhwjpUHFxiGcvSnqhxuAagu5wyPnexxXsDfRyB1+fn6WfA26urpYV1OMjIy4uLjk5OTx8fGRuyvlzBqGuC0fHx9NSC+pwCZ8fHzIyMjtkhpwcHCzs7NT4XdnAAABTElEQVQ4y4XSZ3eCMBiG4VdMTKM4UEBa7RBHnV12aK3avf7/D+oboBgiIx/4wn2uc5LzwEHKad3yRg6Ck9LdH5F6ATJD5OyQSwmRWxYgM2x98HxFzgrxYfeFd1ZVgOF/l7Pjwta14EbT4ZcbcHXShniujL+3lI58rsEPS3uhg5yJf6trSuladHPSPmdMDbsXvCg4WMxm9PHXhXENOaaGzjOxzPCmW7zORENOV8MBcs3dkzwJ7uSYeUcKnVdi9eS38zidqeHgIcIBNHecFDp9TYtyPYvc6UwNkau9i0cJuaLMhSFyE1iswf0MOjPKBeHlFa+NAUaGYfhiWeX8sK+RufcalBreCsw8v9GZGiLnzf3N3UzpZvoD5Q4/PWN7B6S5rwz8VOI4EcpznyVxIozMHbnvEosP5bkvSQIXDSu2P6iMEOeezEmhN/eUjv0BCoErISxfBDYAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAA51BMVEX////FxcUWFpafn5/Z2dm+vr7u7u7////S0tLf39/JKQ6zs7P319KkpKT0ysOHh4eMjIzRLA8TE5DfYUzniXnKRA398vDJyckVFYr1y8T65OHqlojvsKXHx9uZmZndoZfke2q6urrV1dWVlZXVMRXDw8N8fLKpqamBgYGKir0yMo6pqc+3t7fUiHq3XQfcVD1oaGisrKx9fX2Tk5O2ts/8/PzVkofyvbTso5ZbW1vt7fXj4+PQb1/r6+vgrqffwr3hbluVlbpycnJGRohMTJMUFInSe22+hhe+kRi/libgurOXl8K9kyT0y0IQAAAAAXRSTlP+GuMHfQAAAbRJREFUOMul09dy2zAQBVAJ7S5Egp1UqN4gq1Ddcm/pxfn/78mD8xBJdCZl3zA4MwvM3q1U8EdVqfw9zFx4cDMXbpY3Grnr5W6el8F85I4Qty6bzZ731Fi5Xq8VN8ugF8fxZbzCKkuQNGKg6fW8Mui2kuQqa2UJvOQKCdBye83G/3wGEOrwUokyqPy6VpA303a7fX7efr4BFNV9dQKN1c4EcswiFkUsYmOAO9o6x9Ah0hsJOY/YjLEZi+aA3Ggi5wgOaaAl3coxY+P3H94yNsUtST2g4RH0SQ+kEHIesVm/PWPRHELIgSb/EAobkLbFvXz++OalprgvrLaBFYeQ7NZo4vJb7Wd1wUl3tpYOoeK68APSw4ewloZhWgu7QlPgF5qrwzcqwwvjE78Il1/T9PsyvLAUmII7qmyEHW4fassvafp5GXYtN6Uj7BsLTOzF6KX1aOH4gDX9E9iBAALxuOjeLRZ33U+PYggIdE5gAEBNtFbYa73HXomJArA9gVQHds6v4XF2QJ1OY1asr6uaG9+8OwvWTtDhunq9LsqDS2TM2a5frW443xjSr68rvXr4t1X4LfwBrZs3C5ZPvrUAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAA51BMVEX////FxcUWFpafn5/Z2dm+vr7u7u7////S0tLf39/JKQ6zs7P319KkpKT0ysOHh4eMjIzRLA8TE5DfYUzniXnKRA398vDJyckVFYr1y8T65OHqlojvsKXHx9uZmZndoZfke2q6urrV1dWVlZXVMRXDw8N8fLKpqamBgYGKir0yMo6pqc+3t7fUiHq3XQfcVD1oaGisrKx9fX2Tk5O2ts/8/PzVkofyvbTso5ZbW1vt7fXj4+PQb1/r6+vgrqffwr3hbluVlbpycnJGRohMTJMUFInSe22+hhe+kRi/libgurOXl8K9kyT0y0IQAAAAAXRSTlP+GuMHfQAAAbRJREFUOMul09dy2zAQBVAJ7S5Egp1UqN4gq1Ddcm/pxfn/78mD8xBJdCZl3zA4MwvM3q1U8EdVqfw9zFx4cDMXbpY3Grnr5W6el8F85I4Qty6bzZ731Fi5Xq8VN8ugF8fxZbzCKkuQNGKg6fW8Mui2kuQqa2UJvOQKCdBye83G/3wGEOrwUokyqPy6VpA303a7fX7efr4BFNV9dQKN1c4EcswiFkUsYmOAO9o6x9Ah0hsJOY/YjLEZi+aA3Ggi5wgOaaAl3coxY+P3H94yNsUtST2g4RH0SQ+kEHIesVm/PWPRHELIgSb/EAobkLbFvXz++OalprgvrLaBFYeQ7NZo4vJb7Wd1wUl3tpYOoeK68APSw4ewloZhWgu7QlPgF5qrwzcqwwvjE78Il1/T9PsyvLAUmII7qmyEHW4fassvafp5GXYtN6Uj7BsLTOzF6KX1aOH4gDX9E9iBAALxuOjeLRZ33U+PYggIdE5gAEBNtFbYa73HXomJArA9gVQHds6v4XF2QJ1OY1asr6uaG9+8OwvWTtDhunq9LsqDS2TM2a5frW443xjSr68rvXr4t1X4LfwBrZs3C5ZPvrUAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAA6lBMVEX/AADuTQiivADpbCUrdgDangABYAD/AAAAZgABZQD7PT3tKQCzwQD4AAD8AADonwDjlADmrwD+/v72LADQ2ex1oADV1QDp6AB4pQDjdwD5OzrkjQD1dwCKodDsAADi1ADmJQBonwC6ywCCpACNqwDiMgDuPgK7xQCbtgD4SUf5fHzuWi36bW3qklLseCX2ybmfstgsVqrnZwDOsQDWwQBBhQDyCgDYYiHd4ADcfwDtxADPgQDfzznnrELTjQDUMADofR/0c1Lfjj3fPwDLtkMZbQCEmiqatD35QgDgWkff5fLnfSDu8fhnhMLtoPh4AAAAAXRSTlP+GuMHfQAAANFJREFUOMvl08cOglAQBVDgFZ+PoiKCoIi99957L///O65NdHCtd30ymczNCEH2msD7CMIPQ4oL6hcQS0puFglF/WBcwRSvUmmShGGshGStsNPkUb8LQWpZSKw2GlUREVMFYKZkcq632zp3hrYIwHxZQTXdMPQaCocTAFQkfGt2Hm6nuU6THgBzUtzhd8O4cmcCTszE2CXact3WeTMNQTvScfloF+t10Z57Vgq8oyntK5pWWRCP+DSTxYfTVpYjSf+us/nlF10zxuigqP7fz3yGT1SnLAsv0Hz9AAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAA6lBMVEX/AADuTQiivADpbCUrdgDangABYAD/AAAAZgABZQD7PT3tKQCzwQD4AAD8AADonwDjlADmrwD+/v72LADQ2ex1oADV1QDp6AB4pQDjdwD5OzrkjQD1dwCKodDsAADi1ADmJQBonwC6ywCCpACNqwDiMgDuPgK7xQCbtgD4SUf5fHzuWi36bW3qklLseCX2ybmfstgsVqrnZwDOsQDWwQBBhQDyCgDYYiHd4ADcfwDtxADPgQDfzznnrELTjQDUMADofR/0c1Lfjj3fPwDLtkMZbQCEmiqatD35QgDgWkff5fLnfSDu8fhnhMLtoPh4AAAAAXRSTlP+GuMHfQAAANFJREFUOMvl08cOglAQBVDgFZ+PoiKCoIi99957L///O65NdHCtd30ymczNCEH2msD7CMIPQ4oL6hcQS0puFglF/WBcwRSvUmmShGGshGStsNPkUb8LQWpZSKw2GlUREVMFYKZkcq632zp3hrYIwHxZQTXdMPQaCocTAFQkfGt2Hm6nuU6THgBzUtzhd8O4cmcCTszE2CXact3WeTMNQTvScfloF+t10Z57Vgq8oyntK5pWWRCP+DSTxYfTVpYjSf+us/nlF10zxuigqP7fz3yGT1SnLAsv0Hz9AAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAA9lBMVEWyJ0IDTaGAlVD52wqyKESBllD+3AHtHCT/3QADTqJggGbCuyMNVaOCZRddQSCleSiiqmoXW6QmY5rivRy5Jj/z1x59XizfyhM8b5CvjxLjzyzYySPtoybSsQX8wwSoxxiQo0Bwhl5ReWxwpZl2lXNBcXmaK0mpWEyGrH6AqpMfeqZwkIY+hIfJqhTnxQPTvD52WyzIpwerk0A4VH/OwBHqxxa9uEKymkFLRnVlTTe1wxO7ulgxRYd0alugglrGvT1TkUKcqFGlrTVZaZmady9RXW+hk4iBzeO3qZetbGNFfXRmrWSxgH15k45mskDC3ubv9/my090lViSgAAAAAXRSTlP+GuMHfQAAAMhJREFUOMvdzcUOwkAUheGhg4xUoThVghZ3d3fe/2VYlyYd1vzLky/3gjD6qTD4b9jMIhRjw3RCTAw7LVGoMyBEmrAYC+0G6yLsQ01MIxSD/jCeoVm5LC8nvUzcF8Kcsa5UyvmVkYP+r/WN/Hy9jyFT/37NhVxRcro7xDkQ6t45EMCuuMLtWs0/zgXOvQc80C5eqrVa0WZBQrcli5RmlDBgNDndSZI0SEYZkOdT5n5upXjMgFjBeNTFWPFAEPSkqt4NgMiP/RX8AFm1LNtFasN6AAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAA9lBMVEWyJ0IDTaGAlVD52wqyKESBllD+3AHtHCT/3QADTqJggGbCuyMNVaOCZRddQSCleSiiqmoXW6QmY5rivRy5Jj/z1x59XizfyhM8b5CvjxLjzyzYySPtoybSsQX8wwSoxxiQo0Bwhl5ReWxwpZl2lXNBcXmaK0mpWEyGrH6AqpMfeqZwkIY+hIfJqhTnxQPTvD52WyzIpwerk0A4VH/OwBHqxxa9uEKymkFLRnVlTTe1wxO7ulgxRYd0alugglrGvT1TkUKcqFGlrTVZaZmady9RXW+hk4iBzeO3qZetbGNFfXRmrWSxgH15k45mskDC3ubv9/my090lViSgAAAAAXRSTlP+GuMHfQAAAMhJREFUOMvdzcUOwkAUheGhg4xUoThVghZ3d3fe/2VYlyYd1vzLky/3gjD6qTD4b9jMIhRjw3RCTAw7LVGoMyBEmrAYC+0G6yLsQ01MIxSD/jCeoVm5LC8nvUzcF8Kcsa5UyvmVkYP+r/WN/Hy9jyFT/37NhVxRcro7xDkQ6t45EMCuuMLtWs0/zgXOvQc80C5eqrVa0WZBQrcli5RmlDBgNDndSZI0SEYZkOdT5n5upXjMgFjBeNTFWPFAEPSkqt4NgMiP/RX8AFm1LNtFasN6AAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAM1BMVEUfXzwPotA8qKQrprRXfS58uW8dpMIAod760gAgYD1prnistzbTvBF9uW+HslqQs1JWq4oAZWDQAAAAAXRSTlP+GuMHfQAAAFtJREFUOMvd0TkSgEAIRFEWbRRm8f6n9QjTiQbz41cFFBJk8jdUAMpAWLoRUC1HpesSwqq14VhCz2qtnuVoDZ+z0qir04zYMQJQfPWZflJ1ucj2ggeZyE0lW8EXy4wfIcoZkFMAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAM1BMVEUfXzwPotA8qKQrprRXfS58uW8dpMIAod760gAgYD1prnistzbTvBF9uW+HslqQs1JWq4oAZWDQAAAAAXRSTlP+GuMHfQAAAFtJREFUOMvd0TkSgEAIRFEWbRRm8f6n9QjTiQbz41cFFBJk8jdUAMpAWLoRUC1HpesSwqq14VhCz2qtnuVoDZ+z0qir04zYMQJQfPWZflJ1ucj2ggeZyE0lW8EXy4wfIcoZkFMAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAM1BMVEXNKT1AeiZghx/WtAf/xAB7kRowdCnNKj4AYjMCYTIQaC/vvQOQmRagnxMgbiy/qwxQgSMBUdT8AAAAAXRSTlP9g+pWxwAAAJpJREFUOMvVk9sOwyAIhkV+WD2tff+nnelhqWm13C3jxohfgB/QuZfJnPshGCaThTswRiPovQWMIswi8TmiMsDvYUTaMwO+cVzA/bksS2kcF1B0PWrarUKVHljaukoPVGij6nxtVXM6qdXE3fYQ0lcoJVC/jxmYfVUS/QzkUcMreVgeT4Z4w5ieRyjV1LQ9UzCumXlx78E/+K4fGncfbmVDdvMAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAM1BMVEXNKT1AeiZghx/WtAf/xAB7kRowdCnNKj4AYjMCYTIQaC/vvQOQmRagnxMgbiy/qwxQgSMBUdT8AAAAAXRSTlP9g+pWxwAAAJpJREFUOMvVk9sOwyAIhkV+WD2tff+nnelhqWm13C3jxohfgB/QuZfJnPshGCaThTswRiPovQWMIswi8TmiMsDvYUTaMwO+cVzA/bksS2kcF1B0PWrarUKVHljaukoPVGij6nxtVXM6qdXE3fYQ0lcoJVC/jxmYfVUS/QzkUcMreVgeT4Z4w5ieRyjV1LQ9UzCumXlx78E/+K4fGncfbmVDdvMAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAM1BMVEXOECWl0Lrp9O6/3s///f1/vJ1xtZMAAAD////OESbP5toVhU1Am20/mmyQxapfq4VQo3lSLMJmAAAAAXRSTlP9g+pWxwAAAGNJREFUOMvt0EEOgCAMRFFKmToCAvc/rStXBsSEJX/90kzq3DmVcxuugYFThS70n9A8hWRU8UNokQTJeGF0Ua2oAaRgBGG55dxqlZhSQhlAAwAR9QAUXfisD3/e84LHZBuugTd42CCCgiyR9gAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAM1BMVEXOECWl0Lrp9O6/3s///f1/vJ1xtZMAAAD////OESbP5toVhU1Am20/mmyQxapfq4VQo3lSLMJmAAAAAXRSTlP9g+pWxwAAAGNJREFUOMvt0EEOgCAMRFFKmToCAvc/rStXBsSEJX/90kzq3DmVcxuugYFThS70n9A8hWRU8UNokQTJeGF0Ua2oAaRgBGG55dxqlZhSQhlAAwAR9QAUXfisD3/e84LHZBuugTd42CCCgiyR9gAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAM1BMVEXPEyr23+K/tLTjpK2xrKvTmJ67oaH////PFCvLy8vGmp3gs7bgtLjmtrurmJTBj5PLiY/HwyfHAAAAAXRSTlP+GuMHfQAAAFFJREFUOMvt0DsOgDAMA9AkzQdDP9z/tLCD1AwsSPVovSExxUu2Z4juvsmZgwf2DGy1Q63yFAq0C2BTOFxV3UviRoPzl89EsJUcTA++4IK/gxfabR7af4FUXAAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAM1BMVEXPEyr23+K/tLTjpK2xrKvTmJ67oaH////PFCvLy8vGmp3gs7bgtLjmtrurmJTBj5PLiY/HwyfHAAAAAXRSTlP+GuMHfQAAAFFJREFUOMvt0DsOgDAMA9AkzQdDP9z/tLCD1AwsSPVovSExxUu2Z4juvsmZgwf2DGy1Q63yFAq0C2BTOFxV3UviRoPzl89EsJUcTA++4IK/gxfabR7af4FUXAAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAANlBMVEUAlEM/Pz9lZWV/f3/9/v0CAgKPj48AIJ8AlUP///+8vLzPz8/v7+/f398fHx8vLy+fn59PT09zsOZCAAAAAXRSTlP9g+pWxwAAAGFJREFUOMvtzkkOwCAIQFEGpRXn+1+2dk2iHMC/JC8APM7gwi0MyaRqZ8HCoMzDAxOLsA8SiQsORN9pidG1McdVPsPaf9jyESK25TqWA6zUiSbhrMcfi4posT/C6wou3MIPDB8g750ZaJ0AAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAANlBMVEUAlEM/Pz9lZWV/f3/9/v0CAgKPj48AIJ8AlUP///+8vLzPz8/v7+/f398fHx8vLy+fn59PT09zsOZCAAAAAXRSTlP9g+pWxwAAAGFJREFUOMvtzkkOwCAIQFEGpRXn+1+2dk2iHMC/JC8APM7gwi0MyaRqZ8HCoMzDAxOLsA8SiQsORN9pidG1McdVPsPaf9jyESK25TqWA6zUiSbhrMcfi4posT/C6wou3MIPDB8g750ZaJ0AAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAANlBMVEX///+ctabQ3NViiXLg6OMfVzdQfGMAQRwxZUcQTCoPTClwlH/w9PGwxLjA0Mdvk36AoI5Pe2Ll19D6AAAAjUlEQVQ4y92TzRLDIAiEV0V+qibp+79sDtHkkJZ4bTkx8LkzCwicIW7gd8FsU6AFm1Jk0v7ABxVrzyInD4zIR5IAdcAC6oYK1eCAActoNrvc38E4FEWya+bL6D8p4j0FBoBeM2ABcJkV9eYItK5pyd0MAFpVRBOpu+s6SpUfrmc5Ks2e75G3jfOffK577LpLFTQFgZZfAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAANlBMVEX///+ctabQ3NViiXLg6OMfVzdQfGMAQRwxZUcQTCoPTClwlH/w9PGwxLjA0Mdvk36AoI5Pe2Ll19D6AAAAjUlEQVQ4y92TzRLDIAiEV0V+qibp+79sDtHkkJZ4bTkx8LkzCwicIW7gd8FsU6AFm1Jk0v7ABxVrzyInD4zIR5IAdcAC6oYK1eCAActoNrvc38E4FEWya+bL6D8p4j0FBoBeM2ABcJkV9eYItK5pyd0MAFpVRBOpu+s6SpUfrmc5Ks2e75G3jfOffK577LpLFTQFgZZfAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAANlBMVEXeKA/qeGn3yMLmXUz75OL98vHvlIjeKRD////th3n519PkUT3xoZfiQy3oa1nzrqXgNh/jUT0/tP8hAAAAAXRSTlP+GuMHfQAAAJRJREFUOMvd08sNAzEIRdHBBnzxd9J/s6kgHktZJayP0APBdZWjuq5fhbkdwZYYJ/CucNRRCPwJtlKKmyJj5nsH1b11oztgsoGATdasqgLzM6wEXSI8AT02GTE1eWUP8bydOle0D+la76f13BFpubEe4DDQlbTaAwykklNN7GFWYJVp6B6OnlIupTSLw3uMv/mZr+Abp+scdpIFX0UAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAANlBMVEXeKA/qeGn3yMLmXUz75OL98vHvlIjeKRD////th3n519PkUT3xoZfiQy3oa1nzrqXgNh/jUT0/tP8hAAAAAXRSTlP+GuMHfQAAAJRJREFUOMvd08sNAzEIRdHBBnzxd9J/s6kgHktZJayP0APBdZWjuq5fhbkdwZYYJ/CucNRRCPwJtlKKmyJj5nsH1b11oztgsoGATdasqgLzM6wEXSI8AT02GTE1eWUP8bydOle0D+la76f13BFpubEe4DDQlbTaAwykklNN7GFWYJVp6B6OnlIupTSLw3uMv/mZr+Abp+scdpIFX0UAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAOVBMVEUAAADXu2Dy58ro1qX+/fr48+bv4rzOESb////9/f3hzIf17NXfyHzr3a3NqjbHoBzn1aDOESXDmQkYz2ycAAAAXUlEQVQ4y+3QOQ6AMAxE0Xgle4D7H5YDGMmmocovracpnI5gacOv8HqFJZtU7K1YyCzC7EOGJtKAfTiBAJYLC8M96pqBxV4Vew/AiqpYAxCVaDQfZtGTUOx7dv/2ADMgFMzubFP8AAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAOVBMVEUAAADXu2Dy58ro1qX+/fr48+bv4rzOESb////9/f3hzIf17NXfyHzr3a3NqjbHoBzn1aDOESXDmQkYz2ycAAAAXUlEQVQ4y+3QOQ6AMAxE0Xgle4D7H5YDGMmmocovracpnI5gacOv8HqFJZtU7K1YyCzC7EOGJtKAfTiBAJYLC8M96pqBxV4Vew/AiqpYAxCVaDQfZtGTUOx7dv/2ADMgFMzubFP8AAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAOVBMVEX///+jrcD28fLsf4SEkqztiY3CydYGI1faEhr////nYGXqdXnaEBffMTjDytdMYIUtRXAVL2D2xsfKG8juAAAAAXRSTlP9g+pWxwAAAGlJREFUOMvF0FkKgDAMRdG0iU3naf+LdQEGfAjq/T70lRCla9GIXoTeg1AEgi7MGRwA+1JdAZl2qg764xAZEOwp9b8OfgfF6DAiNTJG6Gu4NwhzhiC3WBsjL5ZaGZouLRYIsvf5rzs+gSfVcCE9ZTrZmgAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAOVBMVEX///+jrcD28fLsf4SEkqztiY3CydYGI1faEhr////nYGXqdXnaEBffMTjDytdMYIUtRXAVL2D2xsfKG8juAAAAAXRSTlP9g+pWxwAAAGlJREFUOMvF0FkKgDAMRdG0iU3naf+LdQEGfAjq/T70lRCla9GIXoTeg1AEgi7MGRwA+1JdAZl2qg764xAZEOwp9b8OfgfF6DAiNTJG6Gu4NwhzhiC3WBsjL5ZaGZouLRYIsvf5rzs+gSfVcCE9ZTrZmgAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAP1BMVEUZigAZhQAwgQDFaQC3YQBSawNsJgPvfQDeIBAAAABmgABfZAVeRQGlaAB7bgBNeQCLcwDSawCeagBiVANaewDu6/ERAAAAYElEQVQ4y+3QSQ6AIAxA0Q4girYMev+zWg8gsjDGBS/p7gcKAB+iSAhw2CClZiiFJXPWKlybR6JyKYGZXaaH2zElcc5jx6Koip1Pwvd+ZzX7ZuLlPvSzmRbjghnhCP8UntyWCYNHCcFWAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAP1BMVEUZigAZhQAwgQDFaQC3YQBSawNsJgPvfQDeIBAAAABmgABfZAVeRQGlaAB7bgBNeQCLcwDSawCeagBiVANaewDu6/ERAAAAYElEQVQ4y+3QSQ6AIAxA0Q4girYMev+zWg8gsjDGBS/p7gcKAB+iSAhw2CClZiiFJXPWKlybR6JyKYGZXaaH2zElcc5jx6Koip1Pwvd+ZzX7ZuLlPvSzmRbjghnhCP8UntyWCYNHCcFWAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAP1BMVEXtGyMvtnEPq1s/vHzyVVv//f0AplHxU1n////tHCQfsWav48jv+vSV2ra/6dN/0qdfx5HW8eNvzZzbXFlPwoebhZrvAAAACHRSTlP9/////////sajZT8AAACUSURBVDjL5dPLDgMhCAVQgXqH4tvO/39rt61OdNbtXbAwJ2gIOve8Fed+Ch6PWzmc1zFR8nSm/gIWgPINmE2YaA8jVQZS28FA1dgq+rZjAhggS2sYTyKGAFbiEuZMDADVaAl9Y2MhAFLKCrYeRADIycMjx6tTaipAUNUQNgNvjGk4VzD3qLWEGY7b8/qoX9vzl5/rDXxKIaya/qD4AAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAP1BMVEXtGyMvtnEPq1s/vHzyVVv//f0AplHxU1n////tHCQfsWav48jv+vSV2ra/6dN/0qdfx5HW8eNvzZzbXFlPwoebhZrvAAAACHRSTlP9/////////sajZT8AAACUSURBVDjL5dPLDgMhCAVQgXqH4tvO/39rt61OdNbtXbAwJ2gIOve8Fed+Ch6PWzmc1zFR8nSm/gIWgPINmE2YaA8jVQZS28FA1dgq+rZjAhggS2sYTyKGAFbiEuZMDADVaAl9Y2MhAFLKCrYeRADIycMjx6tTaipAUNUQNgNvjGk4VzD3qLWEGY7b8/qoX9vzl5/rDXxKIaya/qD4AAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAPFBMVEUgQo26xNxmfbGLnMTI0ONYcaouTZWQocf///8hQo48WZzk6PHV2+p0ibhKZaOClb+suNXy9PjW3OqdrM5Jyi73AAAAAXRSTlP9g+pWxwAAAQNJREFUOMu1lMGOxSAIRasBpAhW7f//6yzaTlVeMm8zLG9O4ILgtu1rMDM7cdtuMAKc5MAUINEIloKIIS3gpR5zxt0UxJc2BVrAfMoHj3zI4nHHCi05EENvtoApaXBgTGeuI0iau2tmp9xhaobiyT2lM8cRlFgvFd+MhMAA2nDKSPFSZfIoiEjOY0HEu3Rywczs1Y2/jH8Av/Z4d02IH96ankk845ESAlzjHkCRV33nSKbmt4dMV7AH/LBmvZZ1zaqGJA4EDQfN4C6m4I9LLMN8XMo5xBU8MudQRhC5wXOHL2icAa47fPaxska0dowgWWCIaC2OpUsFgGMtjb/q0MwfP8UPxHsifYgZVt0AAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAPFBMVEUgQo26xNxmfbGLnMTI0ONYcaouTZWQocf///8hQo48WZzk6PHV2+p0ibhKZaOClb+suNXy9PjW3OqdrM5Jyi73AAAAAXRSTlP9g+pWxwAAAQNJREFUOMu1lMGOxSAIRasBpAhW7f//6yzaTlVeMm8zLG9O4ILgtu1rMDM7cdtuMAKc5MAUINEIloKIIS3gpR5zxt0UxJc2BVrAfMoHj3zI4nHHCi05EENvtoApaXBgTGeuI0iau2tmp9xhaobiyT2lM8cRlFgvFd+MhMAA2nDKSPFSZfIoiEjOY0HEu3Rywczs1Y2/jH8Av/Z4d02IH96ankk845ESAlzjHkCRV33nSKbmt4dMV7AH/LBmvZZ1zaqGJA4EDQfN4C6m4I9LLMN8XMo5xBU8MudQRhC5wXOHL2icAa47fPaxska0dowgWWCIaC2OpUsFgGMtjb/q0MwfP8UPxHsifYgZVt0AAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAARVBMVEX///+xt6THy7724cbqvH/Xfw+QmH3VeAD99u/d4Njt6+Ty1a/vzZ/lq1/iolDaiB/tw4/S1svns3Dfmj+8wbF5g2Obo4sXWHv7AAAAkUlEQVQYGd3BSRaCQAwFwN9jkoaemO5/VH2KyibgVqvwB5jxDfYj4xqXMEDFeEpuCp6hc3P2fvSZKHiccbQLDBVPZSi0CwzFwJmOChSODupcpwGKQB8NJ0Z6qY1xplW6y35kXHFoHtdWAcDYyQpNtBZv1kaoNtMFD9LNBl2SaMQCVkyUhDPSTUwpmi64tiz4TTctpAW3+OsVrgAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAARVBMVEX///+xt6THy7724cbqvH/Xfw+QmH3VeAD99u/d4Njt6+Ty1a/vzZ/lq1/iolDaiB/tw4/S1svns3Dfmj+8wbF5g2Obo4sXWHv7AAAAkUlEQVQYGd3BSRaCQAwFwN9jkoaemO5/VH2KyibgVqvwB5jxDfYj4xqXMEDFeEpuCp6hc3P2fvSZKHiccbQLDBVPZSi0CwzFwJmOChSODupcpwGKQB8NJ0Z6qY1xplW6y35kXHFoHtdWAcDYyQpNtBZv1kaoNtMFD9LNBl2SaMQCVkyUhDPSTUwpmi64tiz4TTctpAW3+OsVrgAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAARVBMVEX////30tg1TTNpOTP0w8zWJUUjVDIAYjP////SEDTxtL+/FzP64eVIRTKELjPbQV6RKTLjaYCeJDP88PLmeI30xM3gWnIwpA//AAAAAXRSTlP9g+pWxwAAAHtJREFUOMvlkzsSgCAMRPkEZBVFRbz/UUUsdSCFlaZJ8ybJ7k5E91DuXkJ8HVQpMkC7AjCLbIFjxibytPV10AKDLTf6OjgAYxHTWK2AOTdycq+DGtC59caEOjgB6vQxZOH0ykT2jWzVxUfF8fFKJrWT4WddWIo//JlH8AAwAB+HdjSvjAAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAARVBMVEX////30tg1TTNpOTP0w8zWJUUjVDIAYjP////SEDTxtL+/FzP64eVIRTKELjPbQV6RKTLjaYCeJDP88PLmeI30xM3gWnIwpA//AAAAAXRSTlP9g+pWxwAAAHtJREFUOMvlkzsSgCAMRPkEZBVFRbz/UUUsdSCFlaZJ8ybJ7k5E91DuXkJ8HVQpMkC7AjCLbIFjxibytPV10AKDLTf6OjgAYxHTWK2AOTdycq+DGtC59caEOjgB6vQxZOH0ykT2jWzVxUfF8fFKJrWT4WddWIo//JlH8AAwAB+HdjSvjAAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAARVBMVEX/zgDKwAoBMYIplynSEDSTy5NAZKH///8AMIIolyjwjxFFJWjwsLxfais7VWSHhD1mcE7nvwzIvwqnjXNwSH3MhhcOOXp2KHH9AAAAaklEQVQ4y93NSRKAIAxE0RYnnAIIeP+jWmVW9MZs9S+7XiVwvm0bnjaaHRQGZ4IiKcplgQmIptcByTsTvKK8XZyoorDwjpnaFe68/wuOVFaYeUe/tB0KD5r7f8Gza6sKK80nuFXhire+DG9UNhiZFUzRDQAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAARVBMVEX/zgDKwAoBMYIplynSEDSTy5NAZKH///8AMIIolyjwjxFFJWjwsLxfais7VWSHhD1mcE7nvwzIvwqnjXNwSH3MhhcOOXp2KHH9AAAAaklEQVQ4y93NSRKAIAxE0RYnnAIIeP+jWmVW9MZs9S+7XiVwvm0bnjaaHRQGZ4IiKcplgQmIptcByTsTvKK8XZyoorDwjpnaFe68/wuOVFaYeUe/tB0KD5r7f8Gza6sKK80nuFXhire+DG9UNhiZFUzRDQAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAARVBMVEXXExnz9fldMVZwj7LXFBrrio0oPnHriYz///8RRX6/zdyqHi/QFRwURX3JFiAnVooyX5CdITbP2uVwLU2En7xfgqhiXoONvJBJAAAACHRSTlP+/////////kgsYtwAAAB+SURBVDjLjcxHEoAgEAVR0DEMglnvf1RzGUbg9/pVq0mXUIobA0LmVIMQmu4QmZ4wPr1gdHpDbg0Iw9MXdG2PwbVRg5B9UwHZjSBknjNZ8XMcLMnUF7q8IgLg/05A307AxBIC/bs3DOyeMLh7wKQmBOYdEQKjuwMCux0iuw0uJHMc3CNW1r8AAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAARVBMVEXXExnz9fldMVZwj7LXFBrrio0oPnHriYz///8RRX6/zdyqHi/QFRwURX3JFiAnVooyX5CdITbP2uVwLU2En7xfgqhiXoONvJBJAAAACHRSTlP+/////////kgsYtwAAAB+SURBVDjLjcxHEoAgEAVR0DEMglnvf1RzGUbg9/pVq0mXUIobA0LmVIMQmu4QmZ4wPr1gdHpDbg0Iw9MXdG2PwbVRg5B9UwHZjSBknjNZ8XMcLMnUF7q8IgLg/05A307AxBIC/bs3DOyeMLh7wKQmBOYdEQKjuwMCux0iuw0uJHMc3CNW1r8AAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAS1BMVEUOdGGGubDD3dglgnA8j3+Vwrqky8QPdWL///9Ll4ktglldopUee1201M5Sk09pqZ3w9/bS5eK0vTY8iVXh7ux4safSyi6zvTely8QsOr8PAAAAAXRSTlP+GuMHfQAAAKlJREFUOMvdk9sKwzAIhqMx05x6btf3f9LZDgaDYQq72v4LJfDxRQNxji/FuR8FU7oGpm0rbXC+M3cd85RaxpnZ+7NZYFEXZ8SsrSsGmKbCsYpU4vJ++YdlIopgbC3jgfwisngCb4ERQt1HNYYaIBpgL5pBjUfPBkj1JIejIlkzrjgKAqCMuFozEkDoA5EWANNI8RWyjM6H2zO7/Tx6pqxsyOpzf/FnvgMfWGQc92vH/soAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAS1BMVEUOdGGGubDD3dglgnA8j3+Vwrqky8QPdWL///9Ll4ktglldopUee1201M5Sk09pqZ3w9/bS5eK0vTY8iVXh7ux4safSyi6zvTely8QsOr8PAAAAAXRSTlP+GuMHfQAAAKlJREFUOMvdk9sKwzAIhqMx05x6btf3f9LZDgaDYQq72v4LJfDxRQNxji/FuR8FU7oGpm0rbXC+M3cd85RaxpnZ+7NZYFEXZ8SsrSsGmKbCsYpU4vJ++YdlIopgbC3jgfwisngCb4ERQt1HNYYaIBpgL5pBjUfPBkj1JIejIlkzrjgKAqCMuFozEkDoA5EWANNI8RWyjM6H2zO7/Tx6pqxsyOpzf/FnvgMfWGQc92vH/soAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAS1BMVEX+ywDM7Mv7+fJAtj/qKDnpKDg0sjI0sjP+ywD////zfonsQ1H719r+21Dm9uZawFn2naTuUF74tLn/7KDk9eOz4rON1IzA57/X8Nerw/7WAAAAAXRSTlP+GuMHfQAAAJxJREFUOMvV0EkOwyAMBVCwIa0ZQpr5/ictHRIVShx2Vf8CIevJ2AhxrYoQfwq9r4TDUAkB6qAn8gXYXPJMRNNXsSlAIAIW4iIfWSlmfV4XLHdESUkkHj49f7qZmzG0G2sDvwyOLzfi2dbvlu3Z94Tt6ZBDrZJ00fR9PExa1zl0BJEYIMdDS84qrbR1ZFloun0Gw8Jb8Vqa8Si/hHf9fxwRdAZrkgAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAS1BMVEX+ywDM7Mv7+fJAtj/qKDnpKDg0sjI0sjP+ywD////zfonsQ1H719r+21Dm9uZawFn2naTuUF74tLn/7KDk9eOz4rON1IzA57/X8Nerw/7WAAAAAXRSTlP+GuMHfQAAAJxJREFUOMvV0EkOwyAMBVCwIa0ZQpr5/ictHRIVShx2Vf8CIevJ2AhxrYoQfwq9r4TDUAkB6qAn8gXYXPJMRNNXsSlAIAIW4iIfWSlmfV4XLHdESUkkHj49f7qZmzG0G2sDvwyOLzfi2dbvlu3Z94Tt6ZBDrZJ00fR9PExa1zl0BJEYIMdDS84qrbR1ZFloun0Gw8Jb8Vqa8Si/hHf9fxwRdAZrkgAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAUVBMVEUAAAC7AQHdgIAmAADl5eXl7+UBZgHZcnIAZgC7AABRAADMQEDBLy9pAAAyczIwMDAQEBBAQgDY3di4UFCjAADQ0NCAgIBgh2CQkJAYWQDmoKBlCIy5AAAAmUlEQVQ4y9WRyw6DIBBFr2Ipw0PFt/7/h7az6IJRA4tuPAmB3JzcDAA8jq47n66Ze8AqoJ8zlcsG65zFtmTEvlFU16S4OaURDJ5FP8gcb8FILNIoc1SUEiYWpyDi6iSqQM5RUFkRlrwnWyQeByn8r7F4xttbF7/jS/D7GZlDm5R1Z3FfRayl2LYmOhd5z4jfFaPROife8QjxAw+XGXSXe9vGAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAUVBMVEUAAAC7AQHdgIAmAADl5eXl7+UBZgHZcnIAZgC7AABRAADMQEDBLy9pAAAyczIwMDAQEBBAQgDY3di4UFCjAADQ0NCAgIBgh2CQkJAYWQDmoKBlCIy5AAAAmUlEQVQ4y9WRyw6DIBBFr2Ipw0PFt/7/h7az6IJRA4tuPAmB3JzcDAA8jq47n66Ze8AqoJ8zlcsG65zFtmTEvlFU16S4OaURDJ5FP8gcb8FILNIoc1SUEiYWpyDi6iSqQM5RUFkRlrwnWyQeByn8r7F4xttbF7/jS/D7GZlDm5R1Z3FfRayl2LYmOhd5z4jfFaPROife8QjxAw+XGXSXe9vGAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAV1BMVEXuGyTNpbfxPkfIIzr+/v8LTaH7x8kLTqL////uHCXyVFvyjZL1dXsZSpn6rbD+8fL94+QYSps4b7PkdX9hWY9gWpGSlbr4nKCdbpKOa5PFiZ9IernPj6EDTQy6AAAAAXRSTlP+GuMHfQAAAJNJREFUOMvdz9kOhCAMQFEsCtNaQHGb7f+/cyBGfXGKz94QCMkhDap+XKpWN4TB7AURGkwtS95NGbatBBubqxC96TqTHlT2rOaAzN4zlyEweU8MRUghjw5UHr19RobzAWcRfkBr7VzaIIrQfnvrbFrubWUYp/Wc4j+ocI3GfB8Jz1M7RHj1/ROwDBGHAfESlLoX/AFBXSI5QBCfVgAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAV1BMVEXuGyTNpbfxPkfIIzr+/v8LTaH7x8kLTqL////uHCXyVFvyjZL1dXsZSpn6rbD+8fL94+QYSps4b7PkdX9hWY9gWpGSlbr4nKCdbpKOa5PFiZ9IernPj6EDTQy6AAAAAXRSTlP+GuMHfQAAAJNJREFUOMvdz9kOhCAMQFEsCtNaQHGb7f+/cyBGfXGKz94QCMkhDap+XKpWN4TB7AURGkwtS95NGbatBBubqxC96TqTHlT2rOaAzN4zlyEweU8MRUghjw5UHr19RobzAWcRfkBr7VzaIIrQfnvrbFrubWUYp/Wc4j+ocI3GfB8Jz1M7RHj1/ROwDBGHAfESlLoX/AFBXSI5QBCfVgAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAWlBMVEUAAAAQDQDVLSbRHSpmBBfKCC7/ywBmBBfMCS8AAABPPwDhWRvAmQAjHADzvwDuiA/yrAVfSwCQcgB1XQDcRiCgfwDQpQCwjADymgufTg7pdRSzaAvFfwhAMwAtf7ufAAAACHRSTlP9/////////sajZT8AAACgSURBVDjL1Y/JDsMgDEQxNE7MDk3S/f9/s0bJhVYKXDMHLJmnGY8Ypi4N4qSgkkZ1gTLi3BltfFQd4JNNsQ3KgEFO4S6bjgYNFypPA5xVqYKtaLkfF8MPOF5qvd7bxEe1HoWgWgkX4KFtvRZ/IF3ROqLo4RAsv271n7y4Y8e8aiDIPic6BsFbZGnbcuTspEHzpTfdKrPL2dQHsmkvSKcDvxd5Iyc+x/1IAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAWlBMVEUAAAAQDQDVLSbRHSpmBBfKCC7/ywBmBBfMCS8AAABPPwDhWRvAmQAjHADzvwDuiA/yrAVfSwCQcgB1XQDcRiCgfwDQpQCwjADymgufTg7pdRSzaAvFfwhAMwAtf7ufAAAACHRSTlP9/////////sajZT8AAACgSURBVDjL1Y/JDsMgDEQxNE7MDk3S/f9/s0bJhVYKXDMHLJmnGY8Ypi4N4qSgkkZ1gTLi3BltfFQd4JNNsQ3KgEFO4S6bjgYNFypPA5xVqYKtaLkfF8MPOF5qvd7bxEe1HoWgWgkX4KFtvRZ/IF3ROqLo4RAsv271n7y4Y8e8aiDIPic6BsFbZGnbcuTspEHzpTfdKrPL2dQHsmkvSKcDvxd5Iyc+x/1IAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAWlBMVEX///80V4IzV4HBydPYQFGqucrvr7YALWL////OESaFrYzc3N2MwZvw9OtdbYLyv8XDqKJ3QDOQiYx0e2jDk5hopW2UPkR2rXvRXlettL2ZOTKbhpy9bH/R5dbyk4vSAAAAAXRSTlP9g+pWxwAAAGVJREFUOMvt0LkWgCAMRNEgoiObAu7L//+mfdJQWfnKnNtkqOcZAOgGHv3wY6galsahMbY8IrB0jLE4fiUJgy27fSqgtzlvvgJO9r6WKpjONc0SivdGF4LTikdisA4AjJj3hx/DF+7cINDJhV4uAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAWlBMVEX///80V4IzV4HBydPYQFGqucrvr7YALWL////OESaFrYzc3N2MwZvw9OtdbYLyv8XDqKJ3QDOQiYx0e2jDk5hopW2UPkR2rXvRXlettL2ZOTKbhpy9bH/R5dbyk4vSAAAAAXRSTlP9g+pWxwAAAGVJREFUOMvt0LkWgCAMRNEgoiObAu7L//+mfdJQWfnKnNtkqOcZAOgGHv3wY6galsahMbY8IrB0jLE4fiUJgy27fSqgtzlvvgJO9r6WKpjONc0SivdGF4LTikdisA4AjJj3hx/DF+7cINDJhV4uAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAY1BMVEVqsef1xcbv+PZztug+r4gSrSzYGB4SrStqsuf///+w1vIgsjjX6/nE6s80uUn2+v6MxO2r4rXztbfpf4LH4vZ8u+przHqhzvDi9eWJ1pV60YhNwWD64eLiVVnma2/wpqjbMDVRQpFcAAAAAXRSTlP9g+pWxwAAAKtJREFUOMuN0NkSgjAUA1BapDGUVZQd9P+/0heKslhvns8kMwmSx1WSICDjUAiZN0JIJoUQkvdQCJnHQkjqQghJz1Vb6LlqD6mbf1Ct+4Ufzre19eyqBY5KmUkpz1WusTLGmE8n08s+bnr+drpHhG0iB1/VVDlXWhzi4KjI57KaAb/hmrY+rJ7CzuI8W1hmgAC2AyCAugcksLSQwHQABFDXgAR2FhKYZpAkegP2fSKc/aQhAQAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAY1BMVEVqsef1xcbv+PZztug+r4gSrSzYGB4SrStqsuf///+w1vIgsjjX6/nE6s80uUn2+v6MxO2r4rXztbfpf4LH4vZ8u+przHqhzvDi9eWJ1pV60YhNwWD64eLiVVnma2/wpqjbMDVRQpFcAAAAAXRSTlP9g+pWxwAAAKtJREFUOMuN0NkSgjAUA1BapDGUVZQd9P+/0heKslhvns8kMwmSx1WSICDjUAiZN0JIJoUQkvdQCJnHQkjqQghJz1Vb6LlqD6mbf1Ct+4Ufzre19eyqBY5KmUkpz1WusTLGmE8n08s+bnr+drpHhG0iB1/VVDlXWhzi4KjI57KaAb/hmrY+rJ7CzuI8W1hmgAC2AyCAugcksLSQwHQABFDXgAR2FhKYZpAkegP2fSKc/aQhAQAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAb1BMVEUAAAB+bgKsNwH////ZAAAAAADqbQF+bgKsNwH83ATZAQD72wONjY1fX1vm5+a4uLbbEBD2v7/pb2/ukJAQEBC2UCDAwMDPW1oiJSLijVjvoZNwcHCcnJzExMTrqKjGNTWurq66mI/77e1FR0XhkJDFkXaHAAAACXRSTlP+/////////v4HKoILAAAAhElEQVQ4y82SSRLCIBQF0VYTwwcyJ45xuv8ZXUeogh328lXvXiu1T0KpjGKxSaJQ+piEzilWu1/a07n1xsoT68aaJ00dFTvsG+iiIoixgCeW2xUDuNlNL4b1XnoXAm5eJqJfC/Iwn7tExX7kJox9Qj0XuZpAPYFntP6zKA6JBOoJUmUUv8WyGwrCEGL4AAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAb1BMVEUAAAB+bgKsNwH////ZAAAAAADqbQF+bgKsNwH83ATZAQD72wONjY1fX1vm5+a4uLbbEBD2v7/pb2/ukJAQEBC2UCDAwMDPW1oiJSLijVjvoZNwcHCcnJzExMTrqKjGNTWurq66mI/77e1FR0XhkJDFkXaHAAAACXRSTlP+/////////v4HKoILAAAAhElEQVQ4y82SSRLCIBQF0VYTwwcyJ45xuv8ZXUeogh328lXvXiu1T0KpjGKxSaJQ+piEzilWu1/a07n1xsoT68aaJ00dFTvsG+iiIoixgCeW2xUDuNlNL4b1XnoXAm5eJqJfC/Iwn7tExX7kJox9Qj0XuZpAPYFntP6zKA6JBOoJUmUUv8WyGwrCEGL4AAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAb1BMVEX////3gIDWCBgRXPH////7wMD2f3/3gIAAUPDuAAAiZ/IwcfPQ3/0KT+lbMZQRSd5rmfdKg/WAqPiauvpFOKre6P7z9/80Pry6ETSUHlpxKn7hBA3zfoK3zfuIabJ5o/fMq8mDJGw2aOaow/o2Z+XRXciaAAAACHRSTlP9/////////sajZT8AAACqSURBVDjLrZTZFoIgFEVJrE6AqeTUaNP/f2OUYTwIXNfqPO917nxZlWxIYsgORxoI5HsiCLQdEQS2CRFEdjmtQhpBQJxTv5gDAmVNBIG+iYGljf+IgEpa0/t1OaUvKFL9iz/Zqjco1WBfWDK/efrIdwarpVNU5Wk4d/0CjigarVQ8R0BLE14M2DNUNR/dPun+ZTJzZk3cHrOPi4DWMzeceDPEK6TeNfVTvACicyGeiMPPMAAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAb1BMVEX////3gIDWCBgRXPH////7wMD2f3/3gIAAUPDuAAAiZ/IwcfPQ3/0KT+lbMZQRSd5rmfdKg/WAqPiauvpFOKre6P7z9/80Pry6ETSUHlpxKn7hBA3zfoK3zfuIabJ5o/fMq8mDJGw2aOaow/o2Z+XRXciaAAAACHRSTlP9/////////sajZT8AAACqSURBVDjLrZTZFoIgFEVJrE6AqeTUaNP/f2OUYTwIXNfqPO917nxZlWxIYsgORxoI5HsiCLQdEQS2CRFEdjmtQhpBQJxTv5gDAmVNBIG+iYGljf+IgEpa0/t1OaUvKFL9iz/Zqjco1WBfWDK/efrIdwarpVNU5Wk4d/0CjigarVQ8R0BLE14M2DNUNR/dPun+ZTJzZk3cHrOPi4DWMzeceDPEK6TeNfVTvACicyGeiMPPMAAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAbFBMVEX83AiRuRi+yBJRoSRyrx4VjS3n1gv63AkkkyoLiy/Pzg9fpyEcjyza0Q3v0Qv22wk1mSf32wlGniTSKxn83QkHiTDaEhrxnA4dfC3pZhFjVCayJx6LPiL60An4wwrNGBvvkA7cHRhWWyfgNxaA7xGhAAAAFHRSTlPzv8HPxfLO6eX6wcrrxtTd2+PT9HbczSwAAACWSURBVDjLjc1JEoJAFATRZhJQENTs3wzO3v+OLsAIVnbV+kWWaxsvzVEeRAj7QoRS1AFSdIWUmQghLUTIKRMhpLUI6c7eez8MUbhEp0mAdL2fZwHeRjMzs+sQK/J8mT3e8Wv4mF1qAd5tHO3Yx2EIEIJL6uj1umMlQlwiQthVItxG/8NNNAZxuQh/UQEuUQVC24iQMv8CwB5UlCzbsBIAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAbFBMVEX83AiRuRi+yBJRoSRyrx4VjS3n1gv63AkkkyoLiy/Pzg9fpyEcjyza0Q3v0Qv22wk1mSf32wlGniTSKxn83QkHiTDaEhrxnA4dfC3pZhFjVCayJx6LPiL60An4wwrNGBvvkA7cHRhWWyfgNxaA7xGhAAAAFHRSTlPzv8HPxfLO6eX6wcrrxtTd2+PT9HbczSwAAACWSURBVDjLjc1JEoJAFATRZhJQENTs3wzO3v+OLsAIVnbV+kWWaxsvzVEeRAj7QoRS1AFSdIWUmQghLUTIKRMhpLUI6c7eez8MUbhEp0mAdL2fZwHeRjMzs+sQK/J8mT3e8Wv4mF1qAd5tHO3Yx2EIEIJL6uj1umMlQlwiQthVItxG/8NNNAZxuQh/UQEuUQVC24iQMv8CwB5UlCzbsBIAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAe1BMVEUAFIm/3dHwshwPfUsAd0n/uBzA3dIAAAD////gPDHeOzGQxK/g6uv47/DP5dyvpCovkGqAu6TiSD4QI5BsTgs/mXbpc2tIVqsgFwMffkP3shq/qCfAihVvkzXQlhbxqaSQmctQiztPizuAXA5/XA4wIwX1wr6wttrfsCKtJwiyAAAAwElEQVQ4y42S2RLCIAwAY1sMYr3aqnU8q/X4/y8URBTKuc87OyEECsGK0kc1CcHgIxbLOZ1tUsRolMFRmeEoA7LfadFz5RUPJEuJMsAm06JTX5SL2PLoVZnr0h0VIoroIv+auTsqRWxPZtSBFBFvRI+ObZSIdz3q4Cea0aCIDSGvFLFPK4oZu4QZe+PVI5v/HruEPQ5/5lKDjfxrPVduwYV1Pc4cZ3CPnhzHvHBfjmOctzfH0XLPGqJiLKfEaA7gDafDHAN8aOvZAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAe1BMVEUAFIm/3dHwshwPfUsAd0n/uBzA3dIAAAD////gPDHeOzGQxK/g6uv47/DP5dyvpCovkGqAu6TiSD4QI5BsTgs/mXbpc2tIVqsgFwMffkP3shq/qCfAihVvkzXQlhbxqaSQmctQiztPizuAXA5/XA4wIwX1wr6wttrfsCKtJwiyAAAAwElEQVQ4y42S2RLCIAwAY1sMYr3aqnU8q/X4/y8URBTKuc87OyEECsGK0kc1CcHgIxbLOZ1tUsRolMFRmeEoA7LfadFz5RUPJEuJMsAm06JTX5SL2PLoVZnr0h0VIoroIv+auTsqRWxPZtSBFBFvRI+ObZSIdz3q4Cea0aCIDSGvFLFPK4oZu4QZe+PVI5v/HruEPQ5/5lKDjfxrPVduwYV1Pc4cZ3CPnhzHvHBfjmOctzfH0XLPGqJiLKfEaA7gDafDHAN8aOvZAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAe1BMVEX///9/f3+Pj49vb28PDw8/Pz/v7+/NLjoAR6CgoKC/v7/g4OAgICAfHx8VRJbzy862qcGEhIRmOm3Mwsqtra28L0IuR5DVhJBzbp6mMk3mlpzTR1HvvcHssLSTiKykl7bs5uxfX1+UlJT88vKPd53ZYmtTWpWXl5dQUFDfXWhyAAAA+ElEQVQ4y7WTiQ6DIAyGBYfgjdfu+37/J1zL0GVUzZZsPzGR+sEvbfG8/ykOaCyIe0DhR24o8gXleMrS6G3ToIYQJ8aTEMbbnhGGipgY4zCvpzx/xnzB7oWgxixF53wmQRdkg+JIzMPWeCOtNjCp0Dx0/pEb47XstIbpQXCaII7Gqxe4QnM2kPSqpRbw5CPVOVssU1kplyPgvESuyRSoHAVV2chmqoxmI6CG75my0gMQw1N3FCzoP7XN4+4F7nrz2FVm23Lb/srwhCW3BM21Ocq1MrWuIczd7gmZ7R5P673tnmPtds9gPzJSazR3O5waf3NnPr+Fv9IDQ40NIe3u0ysAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAe1BMVEX///9/f3+Pj49vb28PDw8/Pz/v7+/NLjoAR6CgoKC/v7/g4OAgICAfHx8VRJbzy862qcGEhIRmOm3Mwsqtra28L0IuR5DVhJBzbp6mMk3mlpzTR1HvvcHssLSTiKykl7bs5uxfX1+UlJT88vKPd53ZYmtTWpWXl5dQUFDfXWhyAAAA+ElEQVQ4y7WTiQ6DIAyGBYfgjdfu+37/J1zL0GVUzZZsPzGR+sEvbfG8/ykOaCyIe0DhR24o8gXleMrS6G3ToIYQJ8aTEMbbnhGGipgY4zCvpzx/xnzB7oWgxixF53wmQRdkg+JIzMPWeCOtNjCp0Dx0/pEb47XstIbpQXCaII7Gqxe4QnM2kPSqpRbw5CPVOVssU1kplyPgvESuyRSoHAVV2chmqoxmI6CG75my0gMQw1N3FCzoP7XN4+4F7nrz2FVm23Lb/srwhCW3BM21Ocq1MrWuIczd7gmZ7R5P673tnmPtds9gPzJSazR3O5waf3NnPr+Fv9IDQ40NIe3u0ysAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAeFBMVEUAAAArIwN3YwrrwhQdGAL2zBUptzcetToAo9380RbnzRxRvDHFpBHxyBUIpddfTwi0lQ8WEgHdzRqjxiNqWAm9nBCOvGw8rq7gyytivi4Rps9Osp+SwybVyjSpjA5TRQfNqhGdv2CzxyGpwVfTyxzNyDp9unovrLjWAwfLAAAAwklEQVQ4y43MWRKCMBAA0WF1hh0FRVTA/f43NBELs5BAf3c92Ng6RtSVMGbZwht5PcDiKHKWUebMI+MKgQNnfgx35OUi5wZg4nyRG+gJq7jgleljrHIJXd6IoHOpwtE+Q22Mt1Sr3AFRHTlXzXHKqHL+xEmjxlXpxIkj4xKJq6mZuP8Ynilwzdw0cs6xcL9xmRvHFdx3VLnco2uL+vigQeIKak44E6zi+ChypYnjo8zdW1wcGReZOHHsbdx/LDsrx/oAkpwc3/6WLokAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAeFBMVEUAAAArIwN3YwrrwhQdGAL2zBUptzcetToAo9380RbnzRxRvDHFpBHxyBUIpddfTwi0lQ8WEgHdzRqjxiNqWAm9nBCOvGw8rq7gyytivi4Rps9Osp+SwybVyjSpjA5TRQfNqhGdv2CzxyGpwVfTyxzNyDp9unovrLjWAwfLAAAAwklEQVQ4y43MWRKCMBAA0WF1hh0FRVTA/f43NBELs5BAf3c92Ng6RtSVMGbZwht5PcDiKHKWUebMI+MKgQNnfgx35OUi5wZg4nyRG+gJq7jgleljrHIJXd6IoHOpwtE+Q22Mt1Sr3AFRHTlXzXHKqHL+xEmjxlXpxIkj4xKJq6mZuP8Ynilwzdw0cs6xcL9xmRvHFdx3VLnco2uL+vigQeIKak44E6zi+ChypYnjo8zdW1wcGReZOHHsbdx/LDsrx/oAkpwc3/6WLokAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAflBMVEUyZv+CoZ3q7xpYgtD/AAD//wCZs3+Ur4Z2RKszZv+5y1dOet3yBg83aPqctXthicXM2T9mjL/8/QTPFzx2matskbn1+AxQV9uLqZE+b/FDcuulu3H6AgdGdOfP2ztHW+XCHkuPOIzd5il+QaGGPZdDXerH1UXZEi6vrGSYNIG39pwpAAAACXRSTlP9/////////v4+p77OAAABMUlEQVQ4y42Q15aDIBRFkZZclGVsqLHG9P//waBGI7aZ/cACzvYIIKYsmMHYfMdSDCnGRGpuK2yuU8GYQoUeMTGC08lYEqy7CoSANMxPtsXEZw0BpEV9BMwe6bqYPhhuL9GLkGY+dseQ83HqYj/rKr4igF36fCly/2T3s1EECHFZmGJR4nBIJyJIjqP+1fqXjTCXsCbq/4usjTyv/SwTxSQyRe0Iuxdt4RnBXARpeUAIeJaEmXhIrDByiX0ets6ulO5vZRM3Cq3kgNiIakqRcc3r1Y6ZKBv1S5eN8p3nb7lsnJ0R4ifVPGOA/ctcctqRX3bFOKAjQbwtDnUrpVNxWrconYg3hy5wbguxCugqQWWKV4du4FwnYlXTHepqELfrvqXHTrzX9E/qO0JHh/4D5/gBM/8mwq7UuJMAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAflBMVEUyZv+CoZ3q7xpYgtD/AAD//wCZs3+Ur4Z2RKszZv+5y1dOet3yBg83aPqctXthicXM2T9mjL/8/QTPFzx2matskbn1+AxQV9uLqZE+b/FDcuulu3H6AgdGdOfP2ztHW+XCHkuPOIzd5il+QaGGPZdDXerH1UXZEi6vrGSYNIG39pwpAAAACXRSTlP9/////////v4+p77OAAABMUlEQVQ4y42Q15aDIBRFkZZclGVsqLHG9P//waBGI7aZ/cACzvYIIKYsmMHYfMdSDCnGRGpuK2yuU8GYQoUeMTGC08lYEqy7CoSANMxPtsXEZw0BpEV9BMwe6bqYPhhuL9GLkGY+dseQ83HqYj/rKr4igF36fCly/2T3s1EECHFZmGJR4nBIJyJIjqP+1fqXjTCXsCbq/4usjTyv/SwTxSQyRe0Iuxdt4RnBXARpeUAIeJaEmXhIrDByiX0ets6ulO5vZRM3Cq3kgNiIakqRcc3r1Y6ZKBv1S5eN8p3nb7lsnJ0R4ifVPGOA/ctcctqRX3bFOKAjQbwtDnUrpVNxWrconYg3hy5wbguxCugqQWWKV4du4FwnYlXTHepqELfrvqXHTrzX9E/qO0JHh/4D5/gBM/8mwq7UuJMAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAflBMVEX////59vXouxDl0aKvehT9+/vR2+////8AOKgCOajHolX59Ozp3c7Gol69iQjPsnzDm0zPrV2tdwm2fwbw59bp2r3o1K7w48HfyZr17d+8iRm0gBnNp03v6OS7kDzXv5LdxYfMqW3QqEbOpkPCkBLBkinUow35zhTBkR/Ong6oZui5AAAAAXRSTlP9g+pWxwAAAJZJREFUOMvt0kcOwjAQBVCXMU7cS3qA0Mv9L4g4QJggkR1//TSaRohcFEK+gqIWXhscVjT0IeyolnJTzOUN6daeAaZIEdg0/pIdDFZVn6GwAE92SyeN9Nip5BhjeVQGGaa/OnZnMB6RirWKCVwGzlukR7rv4DEclMDWYwT3sbX4HqXkgkvzy1svgmWxKOUKcJ0P/089B19MsyEgLwCQwAAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAflBMVEX////59vXouxDl0aKvehT9+/vR2+////8AOKgCOajHolX59Ozp3c7Gol69iQjPsnzDm0zPrV2tdwm2fwbw59bp2r3o1K7w48HfyZr17d+8iRm0gBnNp03v6OS7kDzXv5LdxYfMqW3QqEbOpkPCkBLBkinUow35zhTBkR/Ong6oZui5AAAAAXRSTlP9g+pWxwAAAJZJREFUOMvt0kcOwjAQBVCXMU7cS3qA0Mv9L4g4QJggkR1//TSaRohcFEK+gqIWXhscVjT0IeyolnJTzOUN6daeAaZIEdg0/pIdDFZVn6GwAE92SyeN9Nip5BhjeVQGGaa/OnZnMB6RirWKCVwGzlukR7rv4DEclMDWYwT3sbX4HqXkgkvzy1svgmWxKOUKcJ0P/089B19MsyEgLwCQwAAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAh1BMVEUAAAACQwAAIgDdxAsAAAIAI4cAMwAAJIj83QkAAAAQDgCuozBPXV8WM3xfaVgACAAwKgEgHAEAVwAwR2/t0AiOfQU/OAK9ryieiwURaAAAGADt0hB3e0vNuiBfUwOumQbNtAc/U2gAEABPRQJvYQOelzi9qQZqfwMQIQB+lAQoVQF+bwSOjECMgg6qAAAAAXRSTlP+GuMHfQAAAWVJREFUOMt1ktm2gyAMRUVukYAjzrNW7fz/33dptaItPTwkmr0SchbGwXqpt5TCUOWOPceDMYMOdVUx5SqvqLMDe1qpIqUq57TfgGFq02paenK3Tt2lZzU9aJ+GK+iWNeblUqSYT3jpycu0rktXjbbd2rXny1i2w9P3Ck7/LOyWKTd35Ntlyv0yIbeVI9PDWT/sNNyBlv3DR2v10fj7EpPnU4ZhwEtHb44Q+P4YJAN8aAE9k5imDADsnnRddm+TRAsCEkiYZnGBOI6oFI78Qd8RCSEQIXFLF+Gg0YEgyVzk1+uboxHWjoaCEJHnN7yCFGe+DpTTC3HLFEejeGA6EArvcj5tQNpoR7+8LMYteGp+gayZvVnU+r9A8E/dZpk8R4XpaUFgnWp5PktfCUJEA7IhWP1ps4tJkDymriMkPsazNxkwOD5R7egn2Y5xl/nj7OGReD9A+c6SoAmCQP/MdmLAvv6B8Q8o+yuQH5IUZwAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAh1BMVEUAAAACQwAAIgDdxAsAAAIAI4cAMwAAJIj83QkAAAAQDgCuozBPXV8WM3xfaVgACAAwKgEgHAEAVwAwR2/t0AiOfQU/OAK9ryieiwURaAAAGADt0hB3e0vNuiBfUwOumQbNtAc/U2gAEABPRQJvYQOelzi9qQZqfwMQIQB+lAQoVQF+bwSOjECMgg6qAAAAAXRSTlP+GuMHfQAAAWVJREFUOMt1ktm2gyAMRUVukYAjzrNW7fz/33dptaItPTwkmr0SchbGwXqpt5TCUOWOPceDMYMOdVUx5SqvqLMDe1qpIqUq57TfgGFq02paenK3Tt2lZzU9aJ+GK+iWNeblUqSYT3jpycu0rktXjbbd2rXny1i2w9P3Ck7/LOyWKTd35Ntlyv0yIbeVI9PDWT/sNNyBlv3DR2v10fj7EpPnU4ZhwEtHb44Q+P4YJAN8aAE9k5imDADsnnRddm+TRAsCEkiYZnGBOI6oFI78Qd8RCSEQIXFLF+Gg0YEgyVzk1+uboxHWjoaCEJHnN7yCFGe+DpTTC3HLFEejeGA6EArvcj5tQNpoR7+8LMYteGp+gayZvVnU+r9A8E/dZpk8R4XpaUFgnWp5PktfCUJEA7IhWP1ps4tJkDymriMkPsazNxkwOD5R7egn2Y5xl/nj7OGReD9A+c6SoAmCQP/MdmLAvv6B8Q8o+yuQH5IUZwAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAh1BMVEUAejbjdGrhZlvpkIjeWEzVLh/bSj0AAADTIBHYPC6MFQuMPR3mgnkwMDBAm2jsnpcwk1uAvZuXKiFAQEAVFRVdXV1grIHBk4SAgIAQgkKiUkC7gXTwsKr0yMT53duTSSu1aGFwcHCQkJCNPR2weWNQo3WhYUcgik9wtI6hQTjeV0uQxaegzbTU8WaPAAABOElEQVQ4y73USXPCMAwF4MqWxBM4ZCcLJCyllKX///f10AvMxOml03f+Zjy2nvy2eM4ST3l/e0kcrv4ICkxE5XdoYipmIrOwMAFgKoDxDEy2BgBmAKBNFoNlfQMggEAAXDYfEXisD4CpiBgbsL1upmFbtgUAGN/VM7DP1/kkLKtTAWUoIKSGfd6tp2FdLeFSYvLsKGDVbSKwTZbp6B2LBPOjX2X5NDwl7XIYvHMO6sMwrL6yxySskqQYeQeAwcxjv84+J2FdH3tnHnwncjC3zV8e8mkudbkVeJhy6hXSrCOXqY5t4yRAfgrEzTWfPnqRnA7KCmUzKFvzyCIjrKoiEDtmZkcU9l0XbU8fiHYps985onMW7+MNaapqorZLcZkp7sGUXSDyjtXOcw1nI1VAlYz7/17X2E/xDU3CHUk5qQKIAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAh1BMVEUAejbjdGrhZlvpkIjeWEzVLh/bSj0AAADTIBHYPC6MFQuMPR3mgnkwMDBAm2jsnpcwk1uAvZuXKiFAQEAVFRVdXV1grIHBk4SAgIAQgkKiUkC7gXTwsKr0yMT53duTSSu1aGFwcHCQkJCNPR2weWNQo3WhYUcgik9wtI6hQTjeV0uQxaegzbTU8WaPAAABOElEQVQ4y73USXPCMAwF4MqWxBM4ZCcLJCyllKX///f10AvMxOml03f+Zjy2nvy2eM4ST3l/e0kcrv4ICkxE5XdoYipmIrOwMAFgKoDxDEy2BgBmAKBNFoNlfQMggEAAXDYfEXisD4CpiBgbsL1upmFbtgUAGN/VM7DP1/kkLKtTAWUoIKSGfd6tp2FdLeFSYvLsKGDVbSKwTZbp6B2LBPOjX2X5NDwl7XIYvHMO6sMwrL6yxySskqQYeQeAwcxjv84+J2FdH3tnHnwncjC3zV8e8mkudbkVeJhy6hXSrCOXqY5t4yRAfgrEzTWfPnqRnA7KCmUzKFvzyCIjrKoiEDtmZkcU9l0XbU8fiHYps985onMW7+MNaapqorZLcZkp7sGUXSDyjtXOcw1nI1VAlYz7/17X2E/xDU3CHUk5qQKIAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAhFBMVEWOP1wHccTt7e3X0c4Ac874+Pj8/Pz///8+mgDjIRjy5qYojEXz8/P69dr28Mwag3fcIx0Qe9Eyjtjj8Po0lB682vKbOlF/uOY7mAbm5ubSva1mwono2MlCrmlcUYRjT34KeasNe6K8LjYwYafGKi8nZK9Dl9uvr6/IyMh+y5u95MvZ7OBX9KKrAAAAAXRSTlP+GuMHfQAAAKhJREFUOMuN0OkOgjAQBGAou8Uth4iKHOJ9+/7vZwjQmJjKzM/Jl3ayXjTD4vkrENKhBCHNUUgRCqGZHaRjCUJkZg+BmQNcLEObJEmT8CcDpJttjElTY5yQNmPD3Dzf7Ia0HuGrbZt/MB+h3gYaeJHjDsY8uZEV1zWr2AVz2zwCpYK76+vvO+qq0s47FjKVHu4Fg+cMg/5FMFgIBneCwWuGQf8kGPQwJx8qkCM/iEB9nQAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAhFBMVEWOP1wHccTt7e3X0c4Ac874+Pj8/Pz///8+mgDjIRjy5qYojEXz8/P69dr28Mwag3fcIx0Qe9Eyjtjj8Po0lB682vKbOlF/uOY7mAbm5ubSva1mwono2MlCrmlcUYRjT34KeasNe6K8LjYwYafGKi8nZK9Dl9uvr6/IyMh+y5u95MvZ7OBX9KKrAAAAAXRSTlP+GuMHfQAAAKhJREFUOMuN0OkOgjAQBGAou8Uth4iKHOJ9+/7vZwjQmJjKzM/Jl3ayXjTD4vkrENKhBCHNUUgRCqGZHaRjCUJkZg+BmQNcLEObJEmT8CcDpJttjElTY5yQNmPD3Dzf7Ia0HuGrbZt/MB+h3gYaeJHjDsY8uZEV1zWr2AVz2zwCpYK76+vvO+qq0s47FjKVHu4Fg+cMg/5FMFgIBneCwWuGQf8kGPQwJx8qkCM/iEB9nQAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAn1BMVEUAAAB9oW4fGQGtjw7NECX80RV/uOLOESb///8Acsb88/TULUAZAQSnESUAOGNSRAZ+aQs/NAXdWGf209fPFio+BAtnQHXCDyMQDQG9nRDmvxPdtxPNqRHrnqZzCRXplZ69GDIAccU1WJzFECR7ChZNBw8IP2M3Z2dtlGxvWwmWfQwwKATtxBTgZ3SYKk8QarmPlLoTaLeRkLWdJ0vmvhOhEoG+AAABDUlEQVQ4y43OaXOCMBSF4duE9LQgq4ps7utY7f7/f1tZjCSQqmecQS7Ph5e29NC2tB484gZrslz9lBAxVj/UuRZZ2Ggn5pNf/ph23KCCGLeXN6I8CYKkqP/KjdHASZvpB5TyNOWcAr8NnFwglExeHEWWiWPBlUBIiFlzCYOQnUS9EytfmusMLZSZYS6yBv6KPLwGKlBmMi4u46wNVCBcz/N2+8OTssN+Vx5d6BDxq3ExutBamdzK6kEsPvrua4E+xPuy65Y/MMF+ZgwzxOeztm+oUHmBY78osx31mwYRqTDC/xDz1s1xC46G0g1HN+E1Uw80QJkZ4R7EtHJT3IdVZjfQDB27F2iEwPlsOP4B7QcfgqeTwMkAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAn1BMVEUAAAB9oW4fGQGtjw7NECX80RV/uOLOESb///8Acsb88/TULUAZAQSnESUAOGNSRAZ+aQs/NAXdWGf209fPFio+BAtnQHXCDyMQDQG9nRDmvxPdtxPNqRHrnqZzCRXplZ69GDIAccU1WJzFECR7ChZNBw8IP2M3Z2dtlGxvWwmWfQwwKATtxBTgZ3SYKk8QarmPlLoTaLeRkLWdJ0vmvhOhEoG+AAABDUlEQVQ4y43OaXOCMBSF4duE9LQgq4ps7utY7f7/f1tZjCSQqmecQS7Ph5e29NC2tB484gZrslz9lBAxVj/UuRZZ2Ggn5pNf/ph23KCCGLeXN6I8CYKkqP/KjdHASZvpB5TyNOWcAr8NnFwglExeHEWWiWPBlUBIiFlzCYOQnUS9EytfmusMLZSZYS6yBv6KPLwGKlBmMi4u46wNVCBcz/N2+8OTssN+Vx5d6BDxq3ExutBamdzK6kEsPvrua4E+xPuy65Y/MMF+ZgwzxOeztm+oUHmBY78osx31mwYRqTDC/xDz1s1xC46G0g1HN+E1Uw80QJkZ4R7EtHJT3IdVZjfQDB27F2iEwPlsOP4B7QcfgqeTwMkAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAn1BMVEXUOBXxvxW4Zk+qUQj/wwC2Qw/5uQDGCh7VORf/xADzrwfXshjmngfOwpvJrYaiXxTRsb67dgbgtxeOlVTDqi3+yBftvAv6ww6/rD7rnAfOaQ3TsADSjAvopxbFVhTikgywRh2sWRXWeQ+1Yz+5ZwvToh+/elzRpUnMkxzTlEWxLRLMiRexqFmEOzJsU1+5WxTijbSTSRzUs55eaVvNpHBqh5K5AAAAAXRSTlP+GuMHfQAAAJdJREFUOMvl07cSwkAMBNDL4HDBgHO2h5zD/38btDSyathGzRs1K5EZMuSnIJmjQojwUBHfMEHBmNKApggYNoerLOIpqCqviqIoVOEEFGUr5euhVQlDkZrBWnNztRHwxmLT2PvFuYHlMMzZsT8/R9YyBUNf7zjvekm1D8MgW3M+yi7IEhiulot6e9r7n4moEOoafT1/+VxvK0kl3q0nSz4AAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAn1BMVEXUOBXxvxW4Zk+qUQj/wwC2Qw/5uQDGCh7VORf/xADzrwfXshjmngfOwpvJrYaiXxTRsb67dgbgtxeOlVTDqi3+yBftvAv6ww6/rD7rnAfOaQ3TsADSjAvopxbFVhTikgywRh2sWRXWeQ+1Yz+5ZwvToh+/elzRpUnMkxzTlEWxLRLMiRexqFmEOzJsU1+5WxTijbSTSRzUs55eaVvNpHBqh5K5AAAAAXRSTlP+GuMHfQAAAJdJREFUOMvl07cSwkAMBNDL4HDBgHO2h5zD/38btDSyathGzRs1K5EZMuSnIJmjQojwUBHfMEHBmNKApggYNoerLOIpqCqviqIoVOEEFGUr5euhVQlDkZrBWnNztRHwxmLT2PvFuYHlMMzZsT8/R9YyBUNf7zjvekm1D8MgW3M+yi7IEhiulot6e9r7n4moEOoafT1/+VxvK0kl3q0nSz4AAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAsVBMVEXOECX/tk+2i43y9PrOESb//v5lhMLaS1r////bTV1wjcbIDyTkkmjr7vb/9+v+8d+IoNH3t2f/yHqqhqH++ff/qzbfoJV4kci3xeTb4u9afL73x4fMo7P/0IzHKTvfnYvoq3yySlTBWmXkmXvdmYjEh4zpm13Who3yx5f//fn/1pw+ZbL/6s2Dh7b/3aqLotG1f5j/oh/AZG7VfHemd3i+oKKak7bywobNamm+ECDt5uYgMvG2AAAACHRSTlP+/////////kgsYtwAAACzSURBVDjL5ZNHEoMwDEVtiA2xIfTeO+m93v9gYR0yNuvkLTVvpBl9CYDZJAD4KVGaT0ICSP4E2bY8Lo5EO2mfr+MO8cSFYyq0cyBcckQnb11Ke8Uw2KJmZpVCqXHOzQVT3MC67rvy/lCgxhQT6DbCwKmCK/boyG0uV0Eos4g5GqnESoubVaRbT2R2RATHFsGHOPQ461H1UMeErLHKS0b08V7HvsiNcFCDQPyS9eTr+cvnegOnuCDbYqL39gAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAsVBMVEXOECX/tk+2i43y9PrOESb//v5lhMLaS1r////bTV1wjcbIDyTkkmjr7vb/9+v+8d+IoNH3t2f/yHqqhqH++ff/qzbfoJV4kci3xeTb4u9afL73x4fMo7P/0IzHKTvfnYvoq3yySlTBWmXkmXvdmYjEh4zpm13Who3yx5f//fn/1pw+ZbL/6s2Dh7b/3aqLotG1f5j/oh/AZG7VfHemd3i+oKKak7bywobNamm+ECDt5uYgMvG2AAAACHRSTlP+/////////kgsYtwAAACzSURBVDjL5ZNHEoMwDEVtiA2xIfTeO+m93v9gYR0yNuvkLTVvpBl9CYDZJAD4KVGaT0ICSP4E2bY8Lo5EO2mfr+MO8cSFYyq0cyBcckQnb11Ke8Uw2KJmZpVCqXHOzQVT3MC67rvy/lCgxhQT6DbCwKmCK/boyG0uV0Eos4g5GqnESoubVaRbT2R2RATHFsGHOPQ461H1UMeErLHKS0b08V7HvsiNcFCDQPyS9eTr+cvnegOnuCDbYqL39gAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAwFBMVEUAAABISEj+8o/LEDMAAACPwLxLS0v84QAAcWjSEDTVHTDaNSrBEDE3AgxzOEUeAQfRDzPiWyB3CB0HAgDndxrxqQ30uAm5DCxdSEeOCCHqmBCWmJkZZGH3xwY0WFsJbGWIMUX71wLQLESlDCnoixKhCSbUXBnlbB3d2K1sbGyLZQPhqhyBgYHOzcHdRCetITyeKEH98Y/2yX6rCii9c2thBReGbFz10AOvqYJoEBE6NAWnbwmxnQDOwVh0axXq1Sux+eZ8AAAAAXRSTlP+GuMHfQAAANxJREFUOMuN0cd2wjAQQFElIognFwy4m5LQa3qv//9XWTiHrITnre9RmVGXk44oxc1QCNFjISQKhRBuh0KIPxZCdC6E0DCnGnoA0+riRDWMPdC+Ds/cKWDxlK6yIgP6g5YjpaBovX1ugwcAZl0ntOVgu3v/3iVJDOAHzhPtx9em2h9+VvXno67zap1v2tX+8W/yzhOjLHh+PazXuW54I4t++bKcm2XR+GubetArQYdtdwqsrZczvT93d/e/696VOdURzo2RQJsaEbweGRGMjZFAmxgR9EZGBBumcuwXkKYmCRjY5UEAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAwFBMVEUAAABISEj+8o/LEDMAAACPwLxLS0v84QAAcWjSEDTVHTDaNSrBEDE3AgxzOEUeAQfRDzPiWyB3CB0HAgDndxrxqQ30uAm5DCxdSEeOCCHqmBCWmJkZZGH3xwY0WFsJbGWIMUX71wLQLESlDCnoixKhCSbUXBnlbB3d2K1sbGyLZQPhqhyBgYHOzcHdRCetITyeKEH98Y/2yX6rCii9c2thBReGbFz10AOvqYJoEBE6NAWnbwmxnQDOwVh0axXq1Sux+eZ8AAAAAXRSTlP+GuMHfQAAANxJREFUOMuN0cd2wjAQQFElIognFwy4m5LQa3qv//9XWTiHrITnre9RmVGXk44oxc1QCNFjISQKhRBuh0KIPxZCdC6E0DCnGnoA0+riRDWMPdC+Ds/cKWDxlK6yIgP6g5YjpaBovX1ugwcAZl0ntOVgu3v/3iVJDOAHzhPtx9em2h9+VvXno67zap1v2tX+8W/yzhOjLHh+PazXuW54I4t++bKcm2XR+GubetArQYdtdwqsrZczvT93d/e/696VOdURzo2RQJsaEbweGRGMjZFAmxgR9EZGBBumcuwXkKYmCRjY5UEAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAz1BMVEX/1R/5+fn6w7D+Yy3+/v78/Pz/WR//qBr/ThL/1SD/1y362M3639b58O373Vr46KX/ehb/yh7+eEv8rZL843z58978gVf/WRL/1zH8mnf73mP+2Tv6zb76ooP+3Ef75Nz6kGn7dkj789T70cL5spn/qhv467H6lHL644f84nH8vqj677/457j79fP8+Ob86eD6hl/68cn82kf5t6D848/758j2wa/62Zb8yrj8uqP9bTz6zpr64pT6tk/8bDv8YCv8rVb37uX+dDDKysr/ZhSbtK0qAAAACHRSTlP9/////////V+qNIUAAAFMSURBVDjLjdPpcoIwFAVgAtz0sisCDpsgUHfcrWv3vv8zVcXOOC2hnF9h+DiTOyQcJ9VJs8HVgo9trAObDcR/oSxf6tjQ8wbDYnGtY0HZs4xebzweSPI2xgq49IwEgMDndL2Lu2y41Ht2TgiBTb6jWNUonfsmC5jF2b57qIK6TYix/XDUrO+atGqP1hTe0znGc1AEVqNvdTzJn4iggRKRQHXLoT9c2NPx4C0joLYU3lmFtBxaCZynBU0lYiDweJdf0CDJ6aioEQCEiGw4XJDTF6LQD0GjVbBjg5NefkWqBSY6KyacAKSgzJEKJq9potIvgUtd0o+5MhupsC9etXiRL4GyZZN8JKghvZ0CfOGhBMrGhgQjeshmd0MIf/foG2v31Tw/OxC1sCwFlJ/d29dPES+w4c9xv0xAyguvsLg9RahJWfCurircQ7uWw2/OAzNFFY4IKAAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAz1BMVEX/1R/5+fn6w7D+Yy3+/v78/Pz/WR//qBr/ThL/1SD/1y362M3639b58O373Vr46KX/ehb/yh7+eEv8rZL843z58978gVf/WRL/1zH8mnf73mP+2Tv6zb76ooP+3Ef75Nz6kGn7dkj789T70cL5spn/qhv467H6lHL644f84nH8vqj677/457j79fP8+Ob86eD6hl/68cn82kf5t6D848/758j2wa/62Zb8yrj8uqP9bTz6zpr64pT6tk/8bDv8YCv8rVb37uX+dDDKysr/ZhSbtK0qAAAACHRSTlP9/////////V+qNIUAAAFMSURBVDjLjdPpcoIwFAVgAtz0sisCDpsgUHfcrWv3vv8zVcXOOC2hnF9h+DiTOyQcJ9VJs8HVgo9trAObDcR/oSxf6tjQ8wbDYnGtY0HZs4xebzweSPI2xgq49IwEgMDndL2Lu2y41Ht2TgiBTb6jWNUonfsmC5jF2b57qIK6TYix/XDUrO+atGqP1hTe0znGc1AEVqNvdTzJn4iggRKRQHXLoT9c2NPx4C0joLYU3lmFtBxaCZynBU0lYiDweJdf0CDJ6aioEQCEiGw4XJDTF6LQD0GjVbBjg5NefkWqBSY6KyacAKSgzJEKJq9potIvgUtd0o+5MhupsC9etXiRL4GyZZN8JKghvZ0CfOGhBMrGhgQjeshmd0MIf/foG2v31Tw/OxC1sCwFlJ/d29dPES+w4c9xv0xAyguvsLg9RahJWfCurircQ7uWw2/OAzNFFY4IKAAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAzFBMVEUAlUP+zQEImUn+9fcQPnihlC/UGjwANYDSEDT9/PzSEjb2ztXogpXfUWwIO4XWJEUgSHDaOVb74+fuobASQ4nzvsjXLk3W3+vU7d+GzaY1q2pPdKjo9u4SnVH86+6omSvYthOUjTWf17jm6/NJtHmUqsrf8uc0X5vrk6P42uBAaKDbQ1/wsLzjaoGrvNXhXnZQZVjldYqfs8/6/PyJocTf5u9AsHKU0rDq7vX88PKr3MFebVF3e0TApx84VmSYjzPCqR5+mb9UuIFgb1Ar3ucZAAABMUlEQVQ4y4XS6XKCMBSG4cMSQVGJG9hFFm1VEBRrbWtd297/PTUiJhEjfr/feSaTOaAVrj11Zno6KOyeviJTvx+2p6uMoyFWdzsVX3EdU8+Fmrffe3lOiVlmRmmYIP9w8NEfzw06FutqTjcNVd+TJM9XGfemzFlWai0e5GOIEZLIEMKUM3iu2X0EOInuVpK2rkq5aoXjyoTLwmTtIuSuk7QLB0bjistCTUWbDUrB+mtZxNFQw1g7huGS5yaUO4fZctyYcZdhuAx4Lhgyjg8JNy7RrFItf8ogCkd2MGFZwxh+AAjC+nsxdw5HdrPGXifgTiHhWjyn9GUQhZecZTy/gGj1nwXH6XOl3xN2YDs1nX6y1bnBkUXcucc3OTLu3As4PoxX3z24HxLuF+B+OHOKOYB/YtwoD3EyzHYAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAzFBMVEUAlUP+zQEImUn+9fcQPnihlC/UGjwANYDSEDT9/PzSEjb2ztXogpXfUWwIO4XWJEUgSHDaOVb74+fuobASQ4nzvsjXLk3W3+vU7d+GzaY1q2pPdKjo9u4SnVH86+6omSvYthOUjTWf17jm6/NJtHmUqsrf8uc0X5vrk6P42uBAaKDbQ1/wsLzjaoGrvNXhXnZQZVjldYqfs8/6/PyJocTf5u9AsHKU0rDq7vX88PKr3MFebVF3e0TApx84VmSYjzPCqR5+mb9UuIFgb1Ar3ucZAAABMUlEQVQ4y4XS6XKCMBSG4cMSQVGJG9hFFm1VEBRrbWtd297/PTUiJhEjfr/feSaTOaAVrj11Zno6KOyeviJTvx+2p6uMoyFWdzsVX3EdU8+Fmrffe3lOiVlmRmmYIP9w8NEfzw06FutqTjcNVd+TJM9XGfemzFlWai0e5GOIEZLIEMKUM3iu2X0EOInuVpK2rkq5aoXjyoTLwmTtIuSuk7QLB0bjistCTUWbDUrB+mtZxNFQw1g7huGS5yaUO4fZctyYcZdhuAx4Lhgyjg8JNy7RrFItf8ogCkd2MGFZwxh+AAjC+nsxdw5HdrPGXifgTiHhWjyn9GUQhZecZTy/gGj1nwXH6XOl3xN2YDs1nX6y1bnBkUXcucc3OTLu3As4PoxX3z24HxLuF+B+OHOKOYB/YtwoD3EyzHYAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAABHVBMVEXGNTvHPkTl39/kwsP9/f4NP3QOQnfGNjz///8MQHbPdSxDRGzMaj7OjyXbz8/evb/GPD/Qkl3JcFPLq7HPXDTBMjf69/f25OVBQmvu0NHlsbPJZCvg09TSfH/KeDLEPjXUlSnLlJXo2drh2dnUt7fRsLDOhIfIUUr129zNnWzCVC3ioqRFRm7NbzjWiCfRalHRb3OuWWKubHjx7+/Fm57KTFHRmjrQi47XkpXTzM3KWlbexsbRj3LAa23x6encmZvLpKTEhYfEdXnVoaLrt7nMiUufRlfcioTil4htSkPSnk2kN0LBXjbOimLGfSbap6q8jJa0XzvQhX7Qd06qdzfaq2PSqDTCmzPUp4vYsbLhzs/t4ODJxMG6cXHIfH+gIrqyAAAAAXRSTlP9g+pWxwAAAQVJREFUOMvFzsdSwmAYheEUkJ+YbopJSCOFJk1CbwIq9t7b/V+GC51hgebLuPFdP3PmYFgmURj2N8hLySB+eswngAXh3CqJJREHoHwgVMv38klZgBbP6BrN0LVqAYL2BeM4DGNAH3n8rtN5dB6uf/mYzn61cdgYjMy2SzfaO9n10ivYVGxr0nsypjoAt1o9WWuZeF7ZBmCOcAN/zydYEPbHXdKN2CEAI48dT7UwItjNeHhFDENdXcxecwDczXPNkPyYTZ5BuAjm5LvPkT/DFPqucmMN3vrzUb2rovVSK1ikDNsjAokSUTxES+r2xeMoqQhBdGSS3GVdQyBEql7ZV1ACGNN/wk/ONTdzPjKb2QAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAABHVBMVEXGNTvHPkTl39/kwsP9/f4NP3QOQnfGNjz///8MQHbPdSxDRGzMaj7OjyXbz8/evb/GPD/Qkl3JcFPLq7HPXDTBMjf69/f25OVBQmvu0NHlsbPJZCvg09TSfH/KeDLEPjXUlSnLlJXo2drh2dnUt7fRsLDOhIfIUUr129zNnWzCVC3ioqRFRm7NbzjWiCfRalHRb3OuWWKubHjx7+/Fm57KTFHRmjrQi47XkpXTzM3KWlbexsbRj3LAa23x6encmZvLpKTEhYfEdXnVoaLrt7nMiUufRlfcioTil4htSkPSnk2kN0LBXjbOimLGfSbap6q8jJa0XzvQhX7Qd06qdzfaq2PSqDTCmzPUp4vYsbLhzs/t4ODJxMG6cXHIfH+gIrqyAAAAAXRSTlP9g+pWxwAAAQVJREFUOMvFzsdSwmAYheEUkJ+YbopJSCOFJk1CbwIq9t7b/V+GC51hgebLuPFdP3PmYFgmURj2N8hLySB+eswngAXh3CqJJREHoHwgVMv38klZgBbP6BrN0LVqAYL2BeM4DGNAH3n8rtN5dB6uf/mYzn61cdgYjMy2SzfaO9n10ivYVGxr0nsypjoAt1o9WWuZeF7ZBmCOcAN/zydYEPbHXdKN2CEAI48dT7UwItjNeHhFDENdXcxecwDczXPNkPyYTZ5BuAjm5LvPkT/DFPqucmMN3vrzUb2rovVSK1ikDNsjAokSUTxES+r2xeMoqQhBdGSS3GVdQyBEql7ZV1ACGNN/wk/ONTdzPjKb2QAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAABL1BMVEUAhDwQi0lEdDayUi8pcTowm2HSJjAAhD0Bgzw2cjfHPS+/cDBAo23aRC/gWS3ULy9gSzfaSy7A4c+SOjG1cjCuSC+BQjK9WS+DZTCvaDCdRi9wQjSlUjB7azi6cDDCRi+iPy+iYGBVbjyWVjmFVDtPYzumWDBKWzaPdlFqYDNwupJgsoapLjGVQzEpajl+Njabj3jFVi6hk428Zi+jRy+rXTDELDCIWEuAVk3PUS6NUzGPSDOlaVuLXjCJPDFoUkORYjJ5Rz+7kI3XYi7CezCmdG80WjWAwp5Qqnmw2cOv2MLOOi+Xdz3MPTy1gC+AaEmhbjC+VEprazK3j5KgOj59ZWhZVTZUPzKSZmWUYVqaZTJ1UzI9fD2mfkqaT0zuii1ehEzrgC2Yg1t8WU+tZkZNbMQvAAAAAXRSTlP+GuMHfQAAATJJREFUOMuN0cVyw2AMBGBD7P3jGMPMzBPmhsvMjO//DD316Kg6f7OalTgOgBDyTx8fZi4G2+E4DoDz2Zvb619nSOjoD+5vzcY5AyDtTPS3UtnYhY8BUCFBtYOCSxlkOwkXA1DhDyCV7RK7PTEaULwMksQDgNsG1jPB9FMuGGAAyjwg2UHH3TgZnY2if60P9+1Wj6fpUXouMgA8rx65bcusFdEX6MUZAEgV1fY8QreTz4vJf3wmXIpEzGCN/kykcFNsmB4S1mtXewszRkNnO5wXxXCIhEJcMSw54aUTlVLuuzAf0mWyH8XY10ubTrQK28W2tKLh2npffQ7pgwshJVN8S8TpxOTrz2bZ9NFlLiebVKpZpeFpazk5OzmmoS57/FVZo6GmybJhGTSUdd3QNXkX/AXh7zbhm0h1sQAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAABL1BMVEUAhDwQi0lEdDayUi8pcTowm2HSJjAAhD0Bgzw2cjfHPS+/cDBAo23aRC/gWS3ULy9gSzfaSy7A4c+SOjG1cjCuSC+BQjK9WS+DZTCvaDCdRi9wQjSlUjB7azi6cDDCRi+iPy+iYGBVbjyWVjmFVDtPYzumWDBKWzaPdlFqYDNwupJgsoapLjGVQzEpajl+Njabj3jFVi6hk428Zi+jRy+rXTDELDCIWEuAVk3PUS6NUzGPSDOlaVuLXjCJPDFoUkORYjJ5Rz+7kI3XYi7CezCmdG80WjWAwp5Qqnmw2cOv2MLOOi+Xdz3MPTy1gC+AaEmhbjC+VEprazK3j5KgOj59ZWhZVTZUPzKSZmWUYVqaZTJ1UzI9fD2mfkqaT0zuii1ehEzrgC2Yg1t8WU+tZkZNbMQvAAAAAXRSTlP+GuMHfQAAATJJREFUOMuN0cVyw2AMBGBD7P3jGMPMzBPmhsvMjO//DD316Kg6f7OalTgOgBDyTx8fZi4G2+E4DoDz2Zvb619nSOjoD+5vzcY5AyDtTPS3UtnYhY8BUCFBtYOCSxlkOwkXA1DhDyCV7RK7PTEaULwMksQDgNsG1jPB9FMuGGAAyjwg2UHH3TgZnY2if60P9+1Wj6fpUXouMgA8rx65bcusFdEX6MUZAEgV1fY8QreTz4vJf3wmXIpEzGCN/kykcFNsmB4S1mtXewszRkNnO5wXxXCIhEJcMSw54aUTlVLuuzAf0mWyH8XY10ubTrQK28W2tKLh2npffQ7pgwshJVN8S8TpxOTrz2bZ9NFlLiebVKpZpeFpazk5OzmmoS57/FVZo6GmybJhGTSUdd3QNXkX/AXh7zbhm0h1sQAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAABm1BMVEX////bsDX+/v7dsjUUJGP8/Pzjtjb////19fXarjP7+/sWJmfWqzH5+fnPqrX28+qkNlanN1jgx4HjvlYFe7u3bYMAdbTkwmP0xT3tvjnjxnTWs1Pw8fDetD/dsDPm7PDk2rrTqTLgszPr3LXXwoXk6Orn1qbjuUTpuzjhtDbmuTjPpS+TLkxzrMzLozHHnix7rMYpiLvXs0aKsceOuNC9mjiuZG3r4L7gu1PS4eqZvdGty9unw9Sxzt+BtdFFlcCsxa/RxqR1oXwEb6vatlFllWzE08aAqIVOi1fJv5atZnrUtmHc0bLmy3zVrT3x7uXg0aT58+Gvs8LYxZVDTHQ3jLlDRFPiy43dyImix9tBQlLs48pVoMfL2uLOq0TcxH7KuYrN28/B2OTLsnNsoHOYvJ6FqoqJso/WvXrZ4tvKrK/m3cXczJ6+kGbQrlb7+O9zo77m0puSfEaTfkXywzvs4cC4l6C6mKGfXXFcnmUmgbSdn1nj5tiPljjc6d5bkWQ/eUhIi1HN0rJWoMc9dXmzqW1Dh6yquLJMjbLH8TdBAAACKklEQVQ4y7WTV3caMRBGJW20Z0VYUx0wdRdTdum9+FAMmI57t+Peu9N7cZz2s8MaMDzETl48LzrSXH2aGc0A8BDG4Pv3mGmvbHJ8WMH2jvNmXR/JKobHkx2vHdKiTj3VFkKzRl541ZWaUutEGtq7lyYIgTztNjgVEul8qVdLxwqnwSXykJCJ2+cmjRASXtQLrmdSJHq9ruVyugS9KCcUNE72AplWQ+gngkBpZhyz4vMXIueY0VGCQPwQqqf7E0NLYRKgRXpx7lHH5hZb2wAJL6FemhggjFaNvMfiHlp43LGFIbfFwxtXJRV8A6N0Gpl81tGPG+seC73SVVyhKc/6hpQdMPlMN4rLOdl2qLy3v8dZiG3T+/a11/um7t20EQvHsCPSBzxpV5zRWn3Zz6VShTm0kZpqcECpGhhU1YjtcC19ncE9ED+NhlKy/WqhDBSJvLINKvMJBb6OFtdG0C0IlkMhFhwVSgcMuBiLt8H42AWw5i6j2lRPEVi1WYC2dquVMlZT4boE1sOUAbOXkWAQ94O5VsimSvXLwZFZ3jg7VqqOzxrEzJh+B7clf2re0am2VCc0unv1teY/Pw3E4vFY4PTc34z8jPb8fV1Y+CBqEhwhfCzGE8IlNLYff+9fvPPpGzjhIWwYWy1ygn5938F3kFvvWNCUU0kXJW8CX/G97M6hGG1FbTcnk2Y7yGi187J7JwhxBgOHmaC2mP3XsMkkJSYSyfzfbCLwwPYHPCRVSi8V07AAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAABm1BMVEX////bsDX+/v7dsjUUJGP8/Pzjtjb////19fXarjP7+/sWJmfWqzH5+fnPqrX28+qkNlanN1jgx4HjvlYFe7u3bYMAdbTkwmP0xT3tvjnjxnTWs1Pw8fDetD/dsDPm7PDk2rrTqTLgszPr3LXXwoXk6Orn1qbjuUTpuzjhtDbmuTjPpS+TLkxzrMzLozHHnix7rMYpiLvXs0aKsceOuNC9mjiuZG3r4L7gu1PS4eqZvdGty9unw9Sxzt+BtdFFlcCsxa/RxqR1oXwEb6vatlFllWzE08aAqIVOi1fJv5atZnrUtmHc0bLmy3zVrT3x7uXg0aT58+Gvs8LYxZVDTHQ3jLlDRFPiy43dyImix9tBQlLs48pVoMfL2uLOq0TcxH7KuYrN28/B2OTLsnNsoHOYvJ6FqoqJso/WvXrZ4tvKrK/m3cXczJ6+kGbQrlb7+O9zo77m0puSfEaTfkXywzvs4cC4l6C6mKGfXXFcnmUmgbSdn1nj5tiPljjc6d5bkWQ/eUhIi1HN0rJWoMc9dXmzqW1Dh6yquLJMjbLH8TdBAAACKklEQVQ4y7WTV3caMRBGJW20Z0VYUx0wdRdTdum9+FAMmI57t+Peu9N7cZz2s8MaMDzETl48LzrSXH2aGc0A8BDG4Pv3mGmvbHJ8WMH2jvNmXR/JKobHkx2vHdKiTj3VFkKzRl541ZWaUutEGtq7lyYIgTztNjgVEul8qVdLxwqnwSXykJCJ2+cmjRASXtQLrmdSJHq9ruVyugS9KCcUNE72AplWQ+gngkBpZhyz4vMXIueY0VGCQPwQqqf7E0NLYRKgRXpx7lHH5hZb2wAJL6FemhggjFaNvMfiHlp43LGFIbfFwxtXJRV8A6N0Gpl81tGPG+seC73SVVyhKc/6hpQdMPlMN4rLOdl2qLy3v8dZiG3T+/a11/um7t20EQvHsCPSBzxpV5zRWn3Zz6VShTm0kZpqcECpGhhU1YjtcC19ncE9ED+NhlKy/WqhDBSJvLINKvMJBb6OFtdG0C0IlkMhFhwVSgcMuBiLt8H42AWw5i6j2lRPEVi1WYC2dquVMlZT4boE1sOUAbOXkWAQ94O5VsimSvXLwZFZ3jg7VqqOzxrEzJh+B7clf2re0am2VCc0unv1teY/Pw3E4vFY4PTc34z8jPb8fV1Y+CBqEhwhfCzGE8IlNLYff+9fvPPpGzjhIWwYWy1ygn5938F3kFvvWNCUU0kXJW8CX/G97M6hGG1FbTcnk2Y7yGi187J7JwhxBgOHmaC2mP3XsMkkJSYSyfzfbCLwwPYHPCRVSi8V07AAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAACRlBMVEW2DhRebHGQn6QAkchbPimqGR5CUVbl9PrU5OnQh40Aksj/////zwDMAADftQAQl8vv7+/vwgBgut0AkcdQs9m/mwBArNYIZy8wpdIgns/mgIDf398AkMafgQAAjsMKhqtwweAYgJMscWmOcwAhdXlDd1jMAADQqAATYCyvr6+fn59Tc0BKWCMNiKxjiU1qZxY9gGvLpADJAAB3cxivjwFCmbvdbQAYfqZLbkJdgUhcUgornci5lQAmhIh2YgMVms3TiYSCJxGjFAjZQEAIlcrODAA1h34hmsgzhaQ9bVFzkkXXTQDUPQC/oQgje4CkmhwxfnXrnQA0mcDZXQB9jTWAyOTTMgBBn8VeZB9iXA+IfxbpiwDstwAXfI+VfANcdDc/ZD9UWBiDbwTZdgCyoRbopQDPz8+9mQAAhbbIOgHEJAXhfADMFAAtdW5mh09qhT8oi5DilQCjoymolRC/pSeWlyY5WjlLf1enhwAveXCYixRQRQPKMAI5dmbRJADQsA5ebStrg1RqklKWmziWhg73xwCJsJZRQB17bQyOIA5umIhUnq9kcy6Pj4+QrZR2kmmzDQbB2cuwkw9pnpjBk4hvb2+jxrEgWil/f3+PZlEtgKDlhAAakacAh7pHj6qyBxvVmwBxgzM5koc/jKtfuty9nwRXh1eLiyMXh5xmbiNCinI5LwFIThgHaz1Rj2kvZFMtUybn9frUJgBFg4x/yOOAlV+fn0TBPQoHaz45RyK/v7/dhQC9qBc1YEffvQwsVCY/TyVfX1/OrkRSAAAACnRSTlPp9e//9ev36On1SIBarwAAAyFJREFUOMt9kgVX3EAQx9NuW9rb+CUnXBJO38EJx3GHO8Xd3bVCX90VqAAtpYW6u7u7fLNOwsF79PV1kjebzP52Zva/SxhfnaGi8Voq/+In3f+MOGGMzQdwMta44q8p/VKQyjMaz+HLxthJYjFo08VsSkjrlfSSkpUqRcDo6NzjZ/GF07nRa7QAIPHdupj92x62gM/MDCyAeNFea4HSzMo2b5WiPAo9s8fYbS99Tvu/M0pZTp897WnWrtZel8+/13WkocW/tMe8SI/ex9nhVpvTl+7os59qkx0NS3edt7Brf5B2D9gCfQ5R3J3tlsUBvyTpigA0/lzQ8bkGxpMkdzCBBr+9FDz5wr9vZ5lPryMuYfwbY48H41Vai9tIcrxqOxBk2W1wmUoarKmBjKwFs+pjwas1Ce8Hw2k9KkcWVau0bcuD7oBelScOyDgMQ5Sqoq1lV6t3TAPtQXC7nZK0uUbTcRpAqD/NAijtVVJDba2bNfAz1KSfBByObFVzgmWxVpyF0ja7vnNL154QbIh00985Tp44so8WG9RTJ75g1mPBQ3GYXa67401wKkGy0nX46IQsxg909Xam7uEqr2k6nscY3jjochmUTu+Krya5nT0hZ1Z6aOxUQvcszXkjZ22BY2YxDOpmqlJFDlo7Gqj5pbh6+rJByWopAnqGsAVU9AxFzV8Kh0iTMk0Ph4c5WiZp2bVwH1VLTAQXOWuX7A7Tblp0iJwYFGXRXaRTNLC/YrC8/mv/gZGVKetSUhRdysHwsQ+HyWPjO7gfM6PD36ZGr18piVlHUG8GZzvaB2uTm4jmpIy6uyXNSSVvM07OvG+um5syZ5ycy6m7YSpOSiKoDRs7mj62H+o/QKAChJhihHLMCBVnIFSQg+AHYjAUENRNaoRKPARNEhAy8I2CCSHhHd9oQLzVygsMMll5IAkqufxWcsXWrfVNAKoGnNmkjo1myMzcMzNamKAKr+7oqK+tLS8EEGYMBt7Km9S0DHzyPBIEZh7ckLxxZH174voKApl4q2AV1LBgMDC8AKsMaD4hmtdRM7U0Y0IRMwuIsZqRmY+AfwCdALIv0wUbWwAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAACRlBMVEW2DhRebHGQn6QAkchbPimqGR5CUVbl9PrU5OnQh40Aksj/////zwDMAADftQAQl8vv7+/vwgBgut0AkcdQs9m/mwBArNYIZy8wpdIgns/mgIDf398AkMafgQAAjsMKhqtwweAYgJMscWmOcwAhdXlDd1jMAADQqAATYCyvr6+fn59Tc0BKWCMNiKxjiU1qZxY9gGvLpADJAAB3cxivjwFCmbvdbQAYfqZLbkJdgUhcUgornci5lQAmhIh2YgMVms3TiYSCJxGjFAjZQEAIlcrODAA1h34hmsgzhaQ9bVFzkkXXTQDUPQC/oQgje4CkmhwxfnXrnQA0mcDZXQB9jTWAyOTTMgBBn8VeZB9iXA+IfxbpiwDstwAXfI+VfANcdDc/ZD9UWBiDbwTZdgCyoRbopQDPz8+9mQAAhbbIOgHEJAXhfADMFAAtdW5mh09qhT8oi5DilQCjoymolRC/pSeWlyY5WjlLf1enhwAveXCYixRQRQPKMAI5dmbRJADQsA5ebStrg1RqklKWmziWhg73xwCJsJZRQB17bQyOIA5umIhUnq9kcy6Pj4+QrZR2kmmzDQbB2cuwkw9pnpjBk4hvb2+jxrEgWil/f3+PZlEtgKDlhAAakacAh7pHj6qyBxvVmwBxgzM5koc/jKtfuty9nwRXh1eLiyMXh5xmbiNCinI5LwFIThgHaz1Rj2kvZFMtUybn9frUJgBFg4x/yOOAlV+fn0TBPQoHaz45RyK/v7/dhQC9qBc1YEffvQwsVCY/TyVfX1/OrkRSAAAACnRSTlPp9e//9ev36On1SIBarwAAAyFJREFUOMt9kgVX3EAQx9NuW9rb+CUnXBJO38EJx3GHO8Xd3bVCX90VqAAtpYW6u7u7fLNOwsF79PV1kjebzP52Zva/SxhfnaGi8Voq/+In3f+MOGGMzQdwMta44q8p/VKQyjMaz+HLxthJYjFo08VsSkjrlfSSkpUqRcDo6NzjZ/GF07nRa7QAIPHdupj92x62gM/MDCyAeNFea4HSzMo2b5WiPAo9s8fYbS99Tvu/M0pZTp897WnWrtZel8+/13WkocW/tMe8SI/ex9nhVpvTl+7os59qkx0NS3edt7Brf5B2D9gCfQ5R3J3tlsUBvyTpigA0/lzQ8bkGxpMkdzCBBr+9FDz5wr9vZ5lPryMuYfwbY48H41Vai9tIcrxqOxBk2W1wmUoarKmBjKwFs+pjwas1Ce8Hw2k9KkcWVau0bcuD7oBelScOyDgMQ5Sqoq1lV6t3TAPtQXC7nZK0uUbTcRpAqD/NAijtVVJDba2bNfAz1KSfBByObFVzgmWxVpyF0ja7vnNL154QbIh00985Tp44so8WG9RTJ75g1mPBQ3GYXa67401wKkGy0nX46IQsxg909Xam7uEqr2k6nscY3jjochmUTu+Krya5nT0hZ1Z6aOxUQvcszXkjZ22BY2YxDOpmqlJFDlo7Gqj5pbh6+rJByWopAnqGsAVU9AxFzV8Kh0iTMk0Ph4c5WiZp2bVwH1VLTAQXOWuX7A7Tblp0iJwYFGXRXaRTNLC/YrC8/mv/gZGVKetSUhRdysHwsQ+HyWPjO7gfM6PD36ZGr18piVlHUG8GZzvaB2uTm4jmpIy6uyXNSSVvM07OvG+um5syZ5ycy6m7YSpOSiKoDRs7mj62H+o/QKAChJhihHLMCBVnIFSQg+AHYjAUENRNaoRKPARNEhAy8I2CCSHhHd9oQLzVygsMMll5IAkqufxWcsXWrfVNAKoGnNmkjo1myMzcMzNamKAKr+7oqK+tLS8EEGYMBt7Km9S0DHzyPBIEZh7ckLxxZH174voKApl4q2AV1LBgMDC8AKsMaD4hmtdRM7U0Y0IRMwuIsZqRmY+AfwCdALIv0wUbWwAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAcCAMAAAAkyw3kAAAAh1BMVEX+3wD73AC+p3Ppgw40QYW0mmmvlGMAGKjQEDrZOC7ffBjKr0zTtjXUuEDevyjpyBzmySXqfgn52gi6n23Or0DbvjfHrFnBp2K6oF/kmw40QIXZOS/ixCLOsiuzml7VYh3CpU/DqVndjS3UeVztpoLIakj31wTVhjLsoWT+7W/dWULNRC/51mPLu1LCAAAAtElEQVQ4y+XUSRKDIBAFUIHQSUABBadE42zG+58vutNN696/fvWLLmi88yI3b5X7ZRFvCU9reD0SNFqbbWikktw67TQOCaVNCjZtbErwRjV8+kowFhQ4lDD83t8ZgsMgyaB79d0MeTZijQpk2z6dP02k8DPWcRgKXYVxjU/tP2aoRB4/ShQGIBkTJs8l9/FGCkCBT7E4jIIk4ZTSLAmijbsmxOe8JGTHoxgLEx1vFXZA7Ev5Aw7LHoRODS8/AAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAcCAMAAAAkyw3kAAAAh1BMVEX+3wD73AC+p3Ppgw40QYW0mmmvlGMAGKjQEDrZOC7ffBjKr0zTtjXUuEDevyjpyBzmySXqfgn52gi6n23Or0DbvjfHrFnBp2K6oF/kmw40QIXZOS/ixCLOsiuzml7VYh3CpU/DqVndjS3UeVztpoLIakj31wTVhjLsoWT+7W/dWULNRC/51mPLu1LCAAAAtElEQVQ4y+XUSRKDIBAFUIHQSUABBadE42zG+58vutNN696/fvWLLmi88yI3b5X7ZRFvCU9reD0SNFqbbWikktw67TQOCaVNCjZtbErwRjV8+kowFhQ4lDD83t8ZgsMgyaB79d0MeTZijQpk2z6dP02k8DPWcRgKXYVxjU/tP2aoRB4/ShQGIBkTJs8l9/FGCkCBT7E4jIIk4ZTSLAmijbsmxOe8JGTHoxgLEx1vFXZA7Ev5Aw7LHoRODS8/AAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAcCAMAAAAkyw3kAAAAh1BMVEX+3wDu0we+sB0hpDE3qi1KrygInjgAmzoAJ3YToDUPMW8fQIaPjzTn2QU/VFgtTI47WpX43QGuyRKZxBfR0wqov8uNwRl8vB5efqUgPmff1gcQNH4BmzpjtiPBzg2jxhXW7eAfPWeSubggQoetzL/v2gNKbZljdHhLc4ycr2+14cXC4NI6VHmUxPVgAAAA9UlEQVQ4y73UyRKCMAwA0CCLLQUKKvsiuG///31mKIsjIPVCDj1k3kxImgJryYBFoKZJQSMACIx5qCeAkegzkO6hiT39AbP8DIrlmKZjKWDn2RRUC4BVTOqIVwCFOgqN0ENHukDphcYQajv8MCXuYaxgYqd9QbqtO7g/yvLgHy6pi9KqU1v6CXVbtHplhBzdyC99lI7I2XoH1U07E7Mp60Yn/2i22Q0dhUzY6HnroDoo7fAUTX0QfhqU7puxUhI11bk71kw3nopwThjD8uw1Op7vgbPpgbdXWAlZTV/hH0uxzjLJNUMqu7jiKXgyT0H+cS32A3gD3OAiYEPQ1/8AAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAcCAMAAAAkyw3kAAAAh1BMVEX+3wDu0we+sB0hpDE3qi1KrygInjgAmzoAJ3YToDUPMW8fQIaPjzTn2QU/VFgtTI47WpX43QGuyRKZxBfR0wqov8uNwRl8vB5efqUgPmff1gcQNH4BmzpjtiPBzg2jxhXW7eAfPWeSubggQoetzL/v2gNKbZljdHhLc4ycr2+14cXC4NI6VHmUxPVgAAAA9UlEQVQ4y73UyRKCMAwA0CCLLQUKKvsiuG///31mKIsjIPVCDj1k3kxImgJryYBFoKZJQSMACIx5qCeAkegzkO6hiT39AbP8DIrlmKZjKWDn2RRUC4BVTOqIVwCFOgqN0ENHukDphcYQajv8MCXuYaxgYqd9QbqtO7g/yvLgHy6pi9KqU1v6CXVbtHplhBzdyC99lI7I2XoH1U07E7Mp60Yn/2i22Q0dhUzY6HnroDoo7fAUTX0QfhqU7puxUhI11bk71kw3nopwThjD8uw1Op7vgbPpgbdXWAlZTV/hH0uxzjLJNUMqu7jiKXgyT0H+cS32A3gD3OAiYEPQ1/8AAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAdBAMAAAAqZzNAAAAAG1BMVEUBUZz////A1ObcHjUCUpz2xsyBqc3o7/a/0+YtMruUAAAAAXRSTlP+GuMHfQAAADhJREFUKM9jcAEBp2BjMRc4cGAYfoJKIKAebCyuBAcaDIJgEGwsiAQYjLEAEgSxmonFdiWGkRHyAMPXhW+2p/5SAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAdBAMAAAAqZzNAAAAAG1BMVEUBUZz////A1ObcHjUCUpz2xsyBqc3o7/a/0+YtMruUAAAAAXRSTlP+GuMHfQAAADhJREFUKM9jcAEBp2BjMRc4cGAYfoJKIKAebCyuBAcaDIJgEGwsiAQYjLEAEgSxmonFdiWGkRHyAMPXhW+2p/5SAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAdBAMAAAAqZzNAAAAAJ1BMVEXvKiyvu8/xRkfvKy0AKGj///+6xNahr8fzVFXwPT8BKGj//v54jK6Zgt+rAAAAAXRSTlP+GuMHfQAAAE5JREFUKM9jYDYGgqkpLqXNxjBgwDCkBZVAoBUo2KQEBwxbQ0EAKBgKB9EMgmBwxOWgIAIwLHEBAi8wCQNeDChcvIJYzcRqO1Z3DrvoAADRhJHdGoS+qgAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAdBAMAAAAqZzNAAAAAJ1BMVEXvKiyvu8/xRkfvKy0AKGj///+6xNahr8fzVFXwPT8BKGj//v54jK6Zgt+rAAAAAXRSTlP+GuMHfQAAAE5JREFUKM9jYDYGgqkpLqXNxjBgwDCkBZVAoBUo2KQEBwxbQ0EAKBgKB9EMgmBwxOWgIAIwLHEBAi8wCQNeDChcvIJYzcRqO1Z3DrvoAADRhJHdGoS+qgAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAdBAMAAAAqZzNAAAAAJFBMVEX///9HUpXtKTnf7PcAZb1XTozp8vnQ4vMBZb1+RHbM4fK20+39jzf7AAAAQklEQVQoz2NgAIEUIaWQAgY0MFQFjUFgCVBwszEcMLS4gABQ0AUOPBgEwWCS0kRBBGBQwgJIEMRqJlbbsbpz2EUHAAeHPE2odssQAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAdBAMAAAAqZzNAAAAAJFBMVEX///9HUpXtKTnf7PcAZb1XTozp8vnQ4vMBZb1+RHbM4fK20+39jzf7AAAAQklEQVQoz2NgAIEUIaWQAgY0MFQFjUFgCVBwszEcMLS4gABQ0AUOPBgEwWCS0kRBBGBQwgJIEMRqJlbbsbpz2EUHAAeHPE2odssQAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAdBAMAAAAqZzNAAAAALVBMVEX/AAAAAACvAAB/AABvAABfAAAtAADKAACPAADfAABPAAA/AADvAACgAAAPAABIzFtLAAAAs0lEQVQoz2NgoC+YwHOjgL33ACeK4PJD23KOZetooQjO2nVZSNF29RoUwaWB4nFPC0VDUQSVHEUSxRxFlFAESwwFgUDYHUUwJBAkKOqKIqgMETRCEVR3BAmKFKEItppuExTMCo5AESx28RAUNHExRxHUYL/XlvG2oAlF8PLc7Iky227aogg2WxxKFNNptkARrGSYsVCqk2E6WuAxe6cYYIQop/amCZjhzJaAJfA5JzDQHQAA2O0qTBBsTKkAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAdBAMAAAAqZzNAAAAALVBMVEX/AAAAAACvAAB/AABvAABfAAAtAADKAACPAADfAABPAAA/AADvAACgAAAPAABIzFtLAAAAs0lEQVQoz2NgoC+YwHOjgL33ACeK4PJD23KOZetooQjO2nVZSNF29RoUwaWB4nFPC0VDUQSVHEUSxRxFlFAESwwFgUDYHUUwJBAkKOqKIqgMETRCEVR3BAmKFKEItppuExTMCo5AESx28RAUNHExRxHUYL/XlvG2oAlF8PLc7Iky227aogg2WxxKFNNptkARrGSYsVCqk2E6WuAxe6cYYIQop/amCZjhzJaAJfA5JzDQHQAA2O0qTBBsTKkAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAdCAMAAADvl95BAAAAM1BMVEX////Cz+5Lcs2OpuBcgNI9Z8n3+f0AOLi3xuu/ze3e5fZ2k9khUsEPQ7ymueYzX8ZCbMvN/KBjAAAAbUlEQVQ4y9WTSw6AIAxES2lBfsL9T6u4104iifEtuppM/0TL2UAognwpTCCvJiaC6ZKqnSh4kcbcRHx4VmqRse9DihqWucZpHGu2kneekTvZjgFy7FeNataId33iVN3azdwtDL2eP7wC/NfLOQC4WhA4gpKDGQAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAdCAMAAADvl95BAAAAM1BMVEX////Cz+5Lcs2OpuBcgNI9Z8n3+f0AOLi3xuu/ze3e5fZ2k9khUsEPQ7ymueYzX8ZCbMvN/KBjAAAAbUlEQVQ4y9WTSw6AIAxES2lBfsL9T6u4104iifEtuppM/0TL2UAognwpTCCvJiaC6ZKqnSh4kcbcRHx4VmqRse9DihqWucZpHGu2kneekTvZjgFy7FeNataId33iVN3azdwtDL2eP7wC/NfLOQC4WhA4gpKDGQAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAeAgMAAAAjs7ROAAAACVBMVEUAnmA6dcT80RaPCvp4AAAAFUlEQVQY02NgoCtYBQf0YIbCAR2YAPNdY51lSXDNAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAeAgMAAAAjs7ROAAAACVBMVEUAnmA6dcT80RaPCvp4AAAAFUlEQVQY02NgoCtYBQf0YIbCAR2YAPNdY51lSXDNAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAeBAMAAACs80HuAAAAD1BMVEXGCy/VSGPGDDD////fdovhlE4KAAAAAXRSTlP+GuMHfQAAAClJREFUKM9jUAIDZWNDJThQYBghgoJgIGxsIogADMZYAKWCWC0awSEPAKZsVc82AYC3AAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAeBAMAAACs80HuAAAAD1BMVEXGCy/VSGPGDDD////fdovhlE4KAAAAAXRSTlP+GuMHfQAAAClJREFUKM9jUAIDZWNDJThQYBghgoJgIGxsIogADMZYAKWCWC0awSEPAKZsVc82AYC3AAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAeCAMAAABpA6zvAAAAQlBMVEXOECH20BjicB3xuhkQhfDqmxrTKx8Af//31hjo0CXaSh6KsH0sjtbIxUNspZo+lcW6wFFdoKiatW9Omraqul/YyzWj+uowAAAAtUlEQVQ4y43Q2xKDIAxF0agoQVC02v//1ZbgBXQSOM9rsmcCumKz6UYoMz81LcAJLcfUB/sBLugmqQo3tOiEagK/OAvVA1o8ZjxTBRj6cHEz5BbFVaFtFkq7IHe2OnZm1QQVPmBeRftvEVxxmo1hq/QQgrsNn9y4qr4gEeW56g21XH1DpvqCXPUB+WoGpWoKxeoNC9UTFqsHLFcjrKhGWFGNsKKaQamaQLl6wVL1hMVqhBVV2g/BwB0JqIxfPwAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAeCAMAAABpA6zvAAAAQlBMVEXOECH20BjicB3xuhkQhfDqmxrTKx8Af//31hjo0CXaSh6KsH0sjtbIxUNspZo+lcW6wFFdoKiatW9Omraqul/YyzWj+uowAAAAtUlEQVQ4y43Q2xKDIAxF0agoQVC02v//1ZbgBXQSOM9rsmcCumKz6UYoMz81LcAJLcfUB/sBLugmqQo3tOiEagK/OAvVA1o8ZjxTBRj6cHEz5BbFVaFtFkq7IHe2OnZm1QQVPmBeRftvEVxxmo1hq/QQgrsNn9y4qr4gEeW56g21XH1DpvqCXPUB+WoGpWoKxeoNC9UTFqsHLFcjrKhGWFGNsKKaQamaQLl6wVL1hMVqhBVV2g/BwB0JqIxfPwAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAeCAMAAABpA6zvAAAAZlBMVEXOESYkAgbGECQTExOpDh8HAAFNBg4AAAD80RaAChfRHCQwMDDiYR7lcR5wcHDXNSLofRw/Pz/5whbUKCPcTSDtkBpQUFCsrKzxoRn19fWQkJDg4ODzrRhgYGDQ0NDnfBx/f3/ZQSGki0rXAAAA+0lEQVQ4y42S1xLCIBBFUVRWQklIb5b//0kxGkJLhuWNOXPP3AV0O6O0IadLIkiu90SQkB29fPtgXC9VHoBRfQ0RMNSXqIOaVyHo6ilTTAHAJEPQ1tPnk8MyXQhivOknMMN9MHu9slXPAJQCL9KA45it+pJWJVviWM4C9dA67elXLxHLwzJ+e8mh1tvcBa32Usd1lQ0WKyTc5VNaV/kG4uLxI/HQt9jW61KIW4lD/0sizSg8fcmpBYqm+e9IH+ft6Rvtl4m9vQtm8057HywKL9T5euRobP0mxuRo+QZs2naOhRq9+Y6PHh/qzYUQcXDVk4RZ9Cngok8Ctf4D1OgYXQgrIwMAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAeCAMAAABpA6zvAAAAZlBMVEXOESYkAgbGECQTExOpDh8HAAFNBg4AAAD80RaAChfRHCQwMDDiYR7lcR5wcHDXNSLofRw/Pz/5whbUKCPcTSDtkBpQUFCsrKzxoRn19fWQkJDg4ODzrRhgYGDQ0NDnfBx/f3/ZQSGki0rXAAAA+0lEQVQ4y42S1xLCIBBFUVRWQklIb5b//0kxGkJLhuWNOXPP3AV0O6O0IadLIkiu90SQkB29fPtgXC9VHoBRfQ0RMNSXqIOaVyHo6ilTTAHAJEPQ1tPnk8MyXQhivOknMMN9MHu9slXPAJQCL9KA45it+pJWJVviWM4C9dA67elXLxHLwzJ+e8mh1tvcBa32Usd1lQ0WKyTc5VNaV/kG4uLxI/HQt9jW61KIW4lD/0sizSg8fcmpBYqm+e9IH+ft6Rvtl4m9vQtm8057HywKL9T5euRobP0mxuRo+QZs2naOhRq9+Y6PHh/qzYUQcXDVk4RZ9Cngok8Ctf4D1OgYXQgrIwMAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAeCAMAAABpA6zvAAABR1BMVEX///+LaxFqdntctOLw8PCSlpOGcS9etuQ1SzNasN5Kk7j8/PzLzcsgOSxAUTosQC5KW0BdflOBYxumeyBpaVKFaCN0goygdh+QdSpfanFxVARqTA1xUxF0uNw/gKE+bXVLh54sUUlSptPo6ujh4+FNm8I0WUVHaUh4hHWbm5v39/fBxsJZdH44UEY1UjyrrqpreWgoR0EvTlNgcl1xc1hbVC+HdUNqbVlQSCFpazFzdTl2nLNrhmp4k6SqjEZ5pr18XRVUX2iXiWe5kiBwjp5cp86mvclapMvfz6vv37qku8g+dIRIhabf39/EuaTa0cGvtq0hLhxFUjR7eV0yPilXY1UiQTa8vLxYVzSogS9xgW0+QyG2tra4jTVFQSp6iYZkXCNic31hZk6KahyHpbWIr3FtZCd8pGp9aTOHr8hSYGhjf5JuYTEiW0ESAAABDElEQVQ4y+XPRXODUBQFYCDII8EJTrRx98a97u7u8v/X7TJZ8Mi207M939wzF0H+ZjbWF4R7uwsxX+bmIuNzdztko99vkDFXiKP6ZKKjuPtJ0rRMU3dlDDK2Nc0eI8UlGMsSl+82alnokKyWGMjDgr/0tPw9/ar7pdQtcIb71ZOaPDCmndFAfuTqzuMx4fhI6jxgvc+PYQ2A1FxJzSQEQF7rYZhqPMvlAhue7eagN3FaVjBDVUd3Up6NUI7Qk2SvBKUril2FAyIMbiV5/rX18ta+LxwkKGf4O354Xmm22s0KzwWhMB6On10T2SLjDXmgkN7EiXQulybwVRoKqbUAHd0ORunACgWHjvmf8AdLZy8UWK2OKgAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAeCAMAAABpA6zvAAABR1BMVEX///+LaxFqdntctOLw8PCSlpOGcS9etuQ1SzNasN5Kk7j8/PzLzcsgOSxAUTosQC5KW0BdflOBYxumeyBpaVKFaCN0goygdh+QdSpfanFxVARqTA1xUxF0uNw/gKE+bXVLh54sUUlSptPo6ujh4+FNm8I0WUVHaUh4hHWbm5v39/fBxsJZdH44UEY1UjyrrqpreWgoR0EvTlNgcl1xc1hbVC+HdUNqbVlQSCFpazFzdTl2nLNrhmp4k6SqjEZ5pr18XRVUX2iXiWe5kiBwjp5cp86mvclapMvfz6vv37qku8g+dIRIhabf39/EuaTa0cGvtq0hLhxFUjR7eV0yPilXY1UiQTa8vLxYVzSogS9xgW0+QyG2tra4jTVFQSp6iYZkXCNic31hZk6KahyHpbWIr3FtZCd8pGp9aTOHr8hSYGhjf5JuYTEiW0ESAAABDElEQVQ4y+XPRXODUBQFYCDII8EJTrRx98a97u7u8v/X7TJZ8Mi207M939wzF0H+ZjbWF4R7uwsxX+bmIuNzdztko99vkDFXiKP6ZKKjuPtJ0rRMU3dlDDK2Nc0eI8UlGMsSl+82alnokKyWGMjDgr/0tPw9/ar7pdQtcIb71ZOaPDCmndFAfuTqzuMx4fhI6jxgvc+PYQ2A1FxJzSQEQF7rYZhqPMvlAhue7eagN3FaVjBDVUd3Up6NUI7Qk2SvBKUril2FAyIMbiV5/rX18ta+LxwkKGf4O354Xmm22s0KzwWhMB6On10T2SLjDXmgkN7EiXQulybwVRoKqbUAHd0ORunACgWHjvmf8AdLZy8UWK2OKgAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAgAQMAAABaY6hDAAAABlBMVEXOESb///9W4q7JAAAAEElEQVQI12NgoDH4DwK0IwHykk+xonqt7gAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAgAQMAAABaY6hDAAAABlBMVEXOESb///9W4q7JAAAAEElEQVQI12NgoDH4DwK0IwHykk+xonqt7gAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAiBAMAAADfS4Y4AAAAIVBMVEUNsCv////gUgb1xayv5bnofEP87uXvo3riXBXhXBT308Cdj1xZAAAAUUlEQVQoz2NQwgIYhp+gMRbAIAgFYqXhiTA2XNBCSakLXVCsSUlJIxFNUBxkQSGaoChIMJAYQazaxSYpKWmiWyRoqaQ0C8OdKI53wQIYRgYAAF6WO9NsHTxyAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAiBAMAAADfS4Y4AAAAIVBMVEUNsCv////gUgb1xayv5bnofEP87uXvo3riXBXhXBT308Cdj1xZAAAAUUlEQVQoz2NQwgIYhp+gMRbAIAgFYqXhiTA2XNBCSakLXVCsSUlJIxFNUBxkQSGaoChIMJAYQazaxSYpKWmiWyRoqaQ0C8OdKI53wQIYRgYAAF6WO9NsHTxyAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAjBAMAAAAUF1WdAAAAD1BMVEXtKTkAAAD64EL2oT6mlSxymLhtAAAAGUlEQVQoz2MQBAMRJTAwYICAUcFRwWEhCADCrTMjCu9IjwAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAjBAMAAAAUF1WdAAAAD1BMVEXtKTkAAAD64EL2oT6mlSxymLhtAAAAGUlEQVQoz2MQBAMRJTAwYICAUcFRwWEhCADCrTMjCu9IjwAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoBAMAAAB+0KVeAAAAFVBMVEX/AAD/////wMD/gID/v7//YGD/8PBls0LNAAAAPElEQVQoz2NgGLwg2NjYFENQUVBQaJALsroAQaKgoBiIDoAKMgsiAQN6C7IqAQHISSA6YIiFJ+7EMHgAACUjEjNIvHDuAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoBAMAAAB+0KVeAAAAFVBMVEX/AAD/////wMD/gID/v7//YGD/8PBls0LNAAAAPElEQVQoz2NgGLwg2NjYFENQUVBQaJALsroAQaKgoBiIDoAKMgsiAQN6C7IqAQHISSA6YIiFJ+7EMHgAACUjEjNIvHDuAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAxCAMAAACf+RsMAAAAgVBMVEXcFDwbM4cQRJnv8vhuJme/zeSlHVEAOJP///96I2LP2evKFkPlT23eIkgwXafCF0XgMVTnXXkpMIL3xc/98fOKpM7yp7b74ufuip5JcbJELHgMNY7pbIX509viQGAgUaDwmKrf5vHRFT+0Gkvre5H0tsJcKG9ri8CVH1evwN2EIV7bYgCjAAABm0lEQVQ4y43U6ZaCIBQA4GtWWEKBuOWWrTPN+z/gIIriQnL/3XO+A95F4HLzrALQJrKEATodreDhEaDItYEAh/y6s4JwztDFtYEAv/lKUQrC/Y2+dqqHAHsHRVYQ7ltkLkqHAKJTP64NBPjLNx8rKDt1s4GiU85SpwZISF/UG512JohZzDH9UlQDMQCLm4QJWXSdyq+fGawrYDIJCaRYFRWMi5Inhpi3WVoko05Fk2/kYdJmice08v1M22kJSanSeNwpMX5VVFs1idtvZNOeik5141ftoUWazljXKbnT+mTO+8XI5I+qQz9AprgcR7MWMtoZYrwUfrA5Wi3uFznAdiN8xyA7KCYcYyCVWXYwjqn3qkpsPrODqReKwXiV+fYGUs67pXjx2iTliaxPE2I6U0Lab09NTLULSF5aHj4NsjmRFIlKudqgmWyvDns4zGgiJSyHPB2Wbizl1VT0UQYFrD0uztWdNbxOmFc+PTx+hpyTO4VPAryACoNRDtuDyfyH0eTCa7YsV+Ag12AvV6GSgLLtSogXyG2gTQj5DxajNPKFOVDvAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAxCAMAAACf+RsMAAAAgVBMVEXcFDwbM4cQRJnv8vhuJme/zeSlHVEAOJP///96I2LP2evKFkPlT23eIkgwXafCF0XgMVTnXXkpMIL3xc/98fOKpM7yp7b74ufuip5JcbJELHgMNY7pbIX509viQGAgUaDwmKrf5vHRFT+0Gkvre5H0tsJcKG9ri8CVH1evwN2EIV7bYgCjAAABm0lEQVQ4y43U6ZaCIBQA4GtWWEKBuOWWrTPN+z/gIIriQnL/3XO+A95F4HLzrALQJrKEATodreDhEaDItYEAh/y6s4JwztDFtYEAv/lKUQrC/Y2+dqqHAHsHRVYQ7ltkLkqHAKJTP64NBPjLNx8rKDt1s4GiU85SpwZISF/UG512JohZzDH9UlQDMQCLm4QJWXSdyq+fGawrYDIJCaRYFRWMi5Inhpi3WVoko05Fk2/kYdJmice08v1M22kJSanSeNwpMX5VVFs1idtvZNOeik5141ftoUWazljXKbnT+mTO+8XI5I+qQz9AprgcR7MWMtoZYrwUfrA5Wi3uFznAdiN8xyA7KCYcYyCVWXYwjqn3qkpsPrODqReKwXiV+fYGUs67pXjx2iTliaxPE2I6U0Lab09NTLULSF5aHj4NsjmRFIlKudqgmWyvDns4zGgiJSyHPB2Wbizl1VT0UQYFrD0uztWdNbxOmFc+PTx+hpyTO4VPAryACoNRDtuDyfyH0eTCa7YsV+Ag12AvV6GSgLLtSogXyG2gTQj5DxajNPKFOVDvAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAABRElEQVR42u3aoROCMBTHcf5lo2fxNHgaPItapGjRRKJooWjBIEGD/8y81xCmrjhg7xte4VZ+n21vgyMyxkSaS3V4AAAAAAAAAAAAAACKx1NlVQGMsgIAAAAAAAAA3wDpKTOb3cH0BuO3kmdJegwX4FrczXwV14JXazhdmOyShwUg4SXYr/Dl8oDgD8C25F1WQhAAMpO2gOX9Ln3h15jOAmwPiVOwfZLWxi3jXfcBJov1W6j+aGYdd8zONQBpmp0HkMAuoWzbIIgV4FoStgog20IFwKdT4pLfwgb4djn68+w3DyDhqw3SY/jmAWzLXhqmnAbBvw3K7Ntufn/e8+0BsB15Hme+eQC5CbpcjtQAeHjx4YsQAG0CsH0cUdUEAQAAAN0AHIMAAAAAAAAAAEDbANT/KKkXgJ+lAQAAAAAAAAAAABTWC/MCectA2CykAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAABRElEQVR42u3aoROCMBTHcf5lo2fxNHgaPItapGjRRKJooWjBIEGD/8y81xCmrjhg7xte4VZ+n21vgyMyxkSaS3V4AAAAAAAAAAAAAACKx1NlVQGMsgIAAAAAAAAA3wDpKTOb3cH0BuO3kmdJegwX4FrczXwV14JXazhdmOyShwUg4SXYr/Dl8oDgD8C25F1WQhAAMpO2gOX9Ln3h15jOAmwPiVOwfZLWxi3jXfcBJov1W6j+aGYdd8zONQBpmp0HkMAuoWzbIIgV4FoStgog20IFwKdT4pLfwgb4djn68+w3DyDhqw3SY/jmAWzLXhqmnAbBvw3K7Ntufn/e8+0BsB15Hme+eQC5CbpcjtQAeHjx4YsQAG0CsH0cUdUEAQAAAN0AHIMAAAAAAAAAAEDbANT/KKkXgJ+lAQAAAAAAAAAAABTWC/MCectA2CykAAAAAElFTkSuQmCC"},"data:image/svg+xml,%3csvg viewBox=%270 0 16 16%27 fill=%27white%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3ccircle cx=%278%27 cy=%278%27 r=%273%27/%3e%3c/svg%3e":module=>{"use strict";module.exports="data:image/svg+xml,%3csvg viewBox=%270 0 16 16%27 fill=%27white%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3ccircle cx=%278%27 cy=%278%27 r=%273%27/%3e%3c/svg%3e"},"data:image/svg+xml,%3csvg viewBox=%270 0 16 16%27 fill=%27white%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath d=%27M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z%27/%3e%3c/svg%3e":module=>{"use strict";module.exports="data:image/svg+xml,%3csvg viewBox=%270 0 16 16%27 fill=%27white%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath d=%27M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z%27/%3e%3c/svg%3e"},"data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 fill=%27none%27 viewBox=%270 0 16 16%27%3e%3cpath stroke=%27white%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27 stroke-width=%272%27 d=%27M4 8h8%27/%3e%3c/svg%3e":module=>{"use strict";module.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 fill=%27none%27 viewBox=%270 0 16 16%27%3e%3cpath stroke=%27white%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27 stroke-width=%272%27 d=%27M4 8h8%27/%3e%3c/svg%3e"},"data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 fill=%27none%27 viewBox=%270 0 20 20%27%3e%3cpath stroke=%27%236b7280%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27 stroke-width=%271.5%27 d=%27M6 8l4 4 4-4%27/%3e%3c/svg%3e":module=>{"use strict";module.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 fill=%27none%27 viewBox=%270 0 20 20%27%3e%3cpath stroke=%27%236b7280%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27 stroke-width=%271.5%27 d=%27M6 8l4 4 4-4%27/%3e%3c/svg%3e"},"data:image/svg+xml,":module=>{"use strict";module.exports="data:image/svg+xml,"},"storybook/internal/channels":module=>{"use strict";module.exports=__STORYBOOK_MODULE_CHANNELS__},"storybook/internal/client-logger":module=>{"use strict";module.exports=__STORYBOOK_MODULE_CLIENT_LOGGER__},"storybook/internal/preview-errors":module=>{"use strict";module.exports=__STORYBOOK_MODULE_CORE_EVENTS_PREVIEW_ERRORS__},"storybook/internal/core-events":module=>{"use strict";module.exports=__STORYBOOK_MODULE_CORE_EVENTS__},"@storybook/global":module=>{"use strict";module.exports=__STORYBOOK_MODULE_GLOBAL__},"storybook/internal/preview-api":module=>{"use strict";module.exports=__STORYBOOK_MODULE_PREVIEW_API__}},__webpack_require__=>{__webpack_require__.O(0,[9296],(()=>{return moduleId="./storybook-config-entry.js",__webpack_require__(__webpack_require__.s=moduleId);var moduleId}));__webpack_require__.O()}]); \ No newline at end of file diff --git a/main.d09fce3c.iframe.bundle.js b/main.d09fce3c.iframe.bundle.js new file mode 100644 index 0000000..82c42d6 --- /dev/null +++ b/main.d09fce3c.iframe.bundle.js @@ -0,0 +1 @@ +(self.webpackChunkreact_fabric=self.webpackChunkreact_fabric||[]).push([[8792],{"./node_modules/@bundled-es-modules/tough-cookie sync recursive":module=>{function webpackEmptyContext(req){var e=new Error("Cannot find module '"+req+"'");throw e.code="MODULE_NOT_FOUND",e}webpackEmptyContext.keys=()=>[],webpackEmptyContext.resolve=webpackEmptyContext,webpackEmptyContext.id="./node_modules/@bundled-es-modules/tough-cookie sync recursive",module.exports=webpackEmptyContext},"./node_modules/@storybook/core/dist/components sync recursive":module=>{function webpackEmptyContext(req){var e=new Error("Cannot find module '"+req+"'");throw e.code="MODULE_NOT_FOUND",e}webpackEmptyContext.keys=()=>[],webpackEmptyContext.resolve=webpackEmptyContext,webpackEmptyContext.id="./node_modules/@storybook/core/dist/components sync recursive",module.exports=webpackEmptyContext},"./node_modules/@storybook/core/dist/theming sync recursive":module=>{function webpackEmptyContext(req){var e=new Error("Cannot find module '"+req+"'");throw e.code="MODULE_NOT_FOUND",e}webpackEmptyContext.keys=()=>[],webpackEmptyContext.resolve=webpackEmptyContext,webpackEmptyContext.id="./node_modules/@storybook/core/dist/theming sync recursive",module.exports=webpackEmptyContext},"./node_modules/@storybook/instrumenter/dist sync recursive":module=>{function webpackEmptyContext(req){var e=new Error("Cannot find module '"+req+"'");throw e.code="MODULE_NOT_FOUND",e}webpackEmptyContext.keys=()=>[],webpackEmptyContext.resolve=webpackEmptyContext,webpackEmptyContext.id="./node_modules/@storybook/instrumenter/dist sync recursive",module.exports=webpackEmptyContext},"./packages/core/dist/esm/index.js":(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.d(__webpack_exports__,{L4:()=>ActionLabel,bm:()=>AnimationBars,Cv:()=>AnimationSpinner,QN:()=>ApplicationProvider,eu:()=>Avatar,Ex:()=>Badge,$n:()=>Button_Button,e2:()=>ButtonGroup,Pq:()=>Callout,Zp:()=>Card,vu:()=>Chip,fv:()=>Col,pJ:()=>Collapsable,UC:()=>Content,QR:()=>Copy,OO:()=>icons_CoreIcons,cG:()=>Divider,ms:()=>Dropdown_Dropdown,W2:()=>DropdownDismiss,Mi:()=>DropdownTool,HY:()=>EmptyContent,tH:()=>ErrorBoundary_ErrorBoundary,wi:()=>Footer,Y9:()=>HeadFoot_Header,B9:()=>HotKey_HotKey,ze:()=>HotKeyLabel,In:()=>Icon_Icon,Rh:()=>Animations_Loading,W1:()=>Menu,Dr:()=>MenuItem,kI:()=>Meter,Zk:()=>Panel,n4:()=>PanelStack,z2:()=>ProgressBar,a3:()=>ProgressCircle,fI:()=>Row,wn:()=>Section,EA:()=>Skeleton,oz:()=>Tab,Kp:()=>TabPanel,EY:()=>Text,NP:()=>ThemeProvider,hE:()=>Title,WK:()=>ToggleButtonGroup,m_:()=>Tooltip_Tooltip,LM:()=>Viewport,Rp:()=>addTranslationBundle,EH:()=>getBadgeProps,Xn:()=>useApplicationContext,d7:()=>useDebounce,al:()=>useEffectDebugger_useEffectDebugger,l:()=>useGlobals,Yf:()=>useIsDark,OL:()=>useIsRtl,Mj:()=>useLocalStorage,ZU:()=>useEffectDebugger_useMemoDebugger,w2:()=>useNotificationService,st:()=>useResize_useResize,wY:()=>useResizeObserver});var defineProperty=__webpack_require__("./node_modules/@babel/runtime/helpers/esm/defineProperty.js"),objectWithoutProperties=__webpack_require__("./node_modules/@babel/runtime/helpers/esm/objectWithoutProperties.js"),classnames=__webpack_require__("./node_modules/classnames/index.js"),classnames_default=__webpack_require__.n(classnames),react=__webpack_require__("./node_modules/react/index.js"),esm=__webpack_require__("./packages/utilities/dist/esm/index.js"),injectStylesIntoStyleTag=__webpack_require__("./node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js"),injectStylesIntoStyleTag_default=__webpack_require__.n(injectStylesIntoStyleTag),styleDomAPI=__webpack_require__("./node_modules/style-loader/dist/runtime/styleDomAPI.js"),styleDomAPI_default=__webpack_require__.n(styleDomAPI),insertBySelector=__webpack_require__("./node_modules/style-loader/dist/runtime/insertBySelector.js"),insertBySelector_default=__webpack_require__.n(insertBySelector),setAttributesWithoutAttributes=__webpack_require__("./node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js"),setAttributesWithoutAttributes_default=__webpack_require__.n(setAttributesWithoutAttributes),insertStyleElement=__webpack_require__("./node_modules/style-loader/dist/runtime/insertStyleElement.js"),insertStyleElement_default=__webpack_require__.n(insertStyleElement),styleTagTransform=__webpack_require__("./node_modules/style-loader/dist/runtime/styleTagTransform.js"),styleTagTransform_default=__webpack_require__.n(styleTagTransform),Button_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/dist/esm/components/button/Button.module.css"),options={};options.styleTagTransform=styleTagTransform_default(),options.setAttributes=setAttributesWithoutAttributes_default(),options.insert=insertBySelector_default().bind(null,"head"),options.domAPI=styleDomAPI_default(),options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(Button_module.A,options);const button_Button_module=Button_module.A&&Button_module.A.locals?Button_module.A.locals:void 0;var jsx_runtime=__webpack_require__("./node_modules/react/jsx-runtime.js"),_excluded=["vertical","className","children","variant","rounded","disabled","fullWidth","color","size"];function ownKeys(e,r){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);r&&(o=o.filter((function(r){return Object.getOwnPropertyDescriptor(e,r).enumerable}))),t.push.apply(t,o)}return t}function _objectSpread(e){for(var r=1;rmax?"".concat(max,"+"):"".concat(value)}),[value,max]),innerRef=(0,react.useMemo)((function(){return(0,esm.Px)(ref,null==children?void 0:children.props.ref)}),[ref,null==children?void 0:children.props.ref]);return(0,jsx_runtime.jsxs)("div",{className:classnames_default()(forButton?"contents":"relative",block?"block":"inline-block"),children:[children&&(0,react.cloneElement)(children,Badge_objectSpread(Badge_objectSpread({},rest),{},{ref:innerRef})),(!!ping||label)&&(0,jsx_runtime.jsxs)("div",{"data-ref":"badge","data-ping":ping,"data-placement":placement,className:classnames_default()(badge_Badge_module.badge,className,"inline-block p-px min-w-2 min-h-2 text-center select-none rounded-full leading-none z-5 pointer-events-none",forButton&&!placement?"relative":"absolute"),children:[label&&(0,jsx_runtime.jsx)("span",{className:"p-1",children:label}),icon&&(0,jsx_runtime.jsx)(Icon_Icon,{icon,bg:iconBg,color:iconColor,rtlFlip})]})]})},TitleSizeMap={xs:"0.875rem",sm:"1.125rem",md:"1.5rem",lg:"1.75rem",xl:"2rem"},types_TextSizeMap={xs:"0.75rem",sm:"0.875rem",md:"1.125rem",lg:"1.5rem",xl:"1.75rem"};var floating_ui_react=__webpack_require__("./node_modules/@floating-ui/react/dist/floating-ui.react.mjs"),floating_ui_dom=__webpack_require__("./node_modules/@floating-ui/dom/dist/floating-ui.dom.mjs"),floating_ui_react_dom=__webpack_require__("./node_modules/@floating-ui/react/node_modules/@floating-ui/react-dom/dist/floating-ui.react-dom.mjs"),Dropdown_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/dist/esm/components/dropdown/Dropdown.module.css"),Dropdown_module_options={};Dropdown_module_options.styleTagTransform=styleTagTransform_default(),Dropdown_module_options.setAttributes=setAttributesWithoutAttributes_default(),Dropdown_module_options.insert=insertBySelector_default().bind(null,"head"),Dropdown_module_options.domAPI=styleDomAPI_default(),Dropdown_module_options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(Dropdown_module.A,Dropdown_module_options);const dropdown_Dropdown_module=Dropdown_module.A&&Dropdown_module.A.locals?Dropdown_module.A.locals:void 0;function Dropdown_ownKeys(e,r){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);r&&(o=o.filter((function(r){return Object.getOwnPropertyDescriptor(e,r).enumerable}))),t.push.apply(t,o)}return t}function Dropdown_objectSpread(e){for(var r=1;r2&&void 0!==arguments[2]&&arguments[2];return keyList.current=[].concat((0,toConsumableArray.A)(keyList.current.filter((function(_ref2){return _ref2._key!==keyCombo}))),[reduceHotKey({keyCombo,handler,global})])}),[]),removeHotKey=(0,react.useCallback)((function(key){return keyList.current=(0,toConsumableArray.A)(keyList.current.filter((function(_ref3){return _ref3._key!==key})))}),[]),handler=(0,react.useCallback)((function(items,event){if(0!==items.length){var keyCode=event.key,code=event.code,altKey=event.altKey,ctrlKey=event.ctrlKey,metaKey=event.metaKey,shiftKey=event.shiftKey;if("Enter"===keyCode||"Esc"===keyCode||!["INPUT","TEXTAREA","SELECT"].includes(event.target.tagName)){var find=items.find((function(_ref4){var key=_ref4.key,alt=_ref4.alt,ctrl=_ref4.ctrl,meta=_ref4.meta,shift=_ref4.shift;return(key.toLowerCase()===keyCode.toLowerCase()||key.toLowerCase()===code.toLowerCase())&&alt===altKey&&ctrl===ctrlKey&&meta===metaKey&&shift===shiftKey}));null!=find&&find.handler&&(find.handler(),event.preventDefault(),event.stopImmediatePropagation())}}}),[]),handleGlobal=(0,react.useCallback)((function(event){handler(keyList.current.filter((function(i){return i.global})),event)}),[handler]),handleHotKey=(0,react.useCallback)((function(event){handler(keyList.current.filter((function(i){return!i.global})),event)}),[handler]);return useEffectDebugger_useEffectDebugger((function(){var _refEl$current,el=null===(_refEl$current=refEl.current)||void 0===_refEl$current?void 0:_refEl$current.parentElement;if(el)return el.tabIndex=0,el.addEventListener("keydown",handleHotKey),document.addEventListener("keydown",handleGlobal),function(){el.removeEventListener("keydown",handleHotKey),document.removeEventListener("keydown",handleGlobal)}}),[handleGlobal,handleHotKey],"HotKeyWrapper attach handlers"),(0,jsx_runtime.jsx)(HotKeysContext.Provider,{value:{addHotKey,removeHotKey},children:(0,jsx_runtime.jsx)("div",{ref:refEl,style:{display:"contents"},children})})}));HotKeyWrapper_HotKeyWrapper.displayName="HotKeyProvider";var icons_CoreIcons,_CoreIcons,HotKey_HotKey=function HotKey(_ref){var keyCombo=_ref.keyCombo,global=_ref.global,handler=_ref.handler,_useHotKeys=function useHotKeys(){return(0,react.useContext)(HotKeysContext)}(),addHotKey=_useHotKeys.addHotKey,removeHotKey=_useHotKeys.removeHotKey;return useEffectDebugger_useEffectDebugger((function(){return null==addHotKey||addHotKey(keyCombo,null!=handler?handler:function(){},global),function(){return null==removeHotKey?void 0:removeHotKey(keyCombo)}}),[addHotKey,global,handler,keyCombo,removeHotKey],"HotKey add"),null},HotKeyLabel=function HotKeyLabel(_ref){var keyCombo=_ref.keyCombo,label=useEffectDebugger_useMemoDebugger((function(){var item=reduceHotKey({keyCombo}),label=[];return item.alt&&label.push("ALT"),item.ctrl&&label.push("CTRL"),item.meta&&label.push("META"),item.shift&&label.push("SHIFT"),"tab"===item.key.toLowerCase()?label.push("TAB"):"space"===item.key.toLowerCase()?label.push("SPC"):"arrowleft"===item.key.toLowerCase()?label.push("LEFT"):"arrowright"===item.key.toLowerCase()?label.push("RIGHT"):"arrowup"===item.key.toLowerCase()?label.push("UP"):"arrowdown"===item.key.toLowerCase()?label.push("DOWN"):"enter"===item.key.toLowerCase()?label.push("ENTER"):"delete"===item.key.toLowerCase()?label.push("DEL"):"escape"===item.key.toLowerCase()?label.push("ESC"):"backspace"===item.key.toLowerCase()?label.push("BKSPC"):label.push(item.key.toUpperCase()),[(0,jsx_runtime.jsx)("span",{children:label.join(" ")},"label")]}),[keyCombo],"HotKey label");return(0,jsx_runtime.jsx)("kbd",{className:"hotkey-label inline-flex gap-1 select-none self-center font-mono items-center text-[0.625rem] leading-4 bg-tint-500/10 text-base/50 whitespace-nowrap rounded px-2 mx-1",children:label})},es=__webpack_require__("./node_modules/react-i18next/dist/es/index.js"),useIsRtl=function useIsRtl(){var i18n=(0,es.Bd)("core").i18n,_useState=(0,react.useState)(!1),_useState2=(0,slicedToArray.A)(_useState,2),isRtl=_useState2[0],setIsRtl=_useState2[1];return useEffectDebugger_useLayoutEffectDebugger((function(){try{setIsRtl("rtl"===i18n.dir())}catch(_unused){}}),[i18n.language],"useIsRtl"),isRtl};(_CoreIcons=icons_CoreIcons||(icons_CoreIcons={})).chevronDown="M6.173 7.29l5.827 5.827 5.827-5.827 1.79 1.803-7.617 7.617-7.617-7.617 1.79-1.803z",_CoreIcons.chevronLeft="M16.94 18.107l-6.107-6.107 6.107-6.12-1.88-1.88-8 8 8 8 1.88-1.893z",_CoreIcons.chevronRight="M7.453 18.107l6.107-6.107-6.107-6.12 1.88-1.88 8 8-8 8-1.88-1.893z",_CoreIcons.chevronUp="M6.171 16.705l5.829-5.816 5.829 5.816 1.791-1.791-7.619-7.619-7.619 7.619 1.791 1.791z",_CoreIcons.chevronsDown="M17.959 3.295l1.831 1.831-7.79 7.79-7.79-7.79 1.831-1.831 5.959 5.946 5.959-5.946zM17.959 11.085l1.831 1.831-7.79 7.79-7.79-7.79 1.831-1.831 5.959 5.946 5.959-5.946z",_CoreIcons.chevronsLeft="M20.94 5.88l-1.88-1.88-8 8 8 8 1.88-1.88-6.107-6.12 6.107-6.12zM12.94 5.88l-1.88-1.88-8 8 8 8 1.88-1.88-6.107-6.12 6.107-6.12z",_CoreIcons.chevronsRight="M3.060 5.88l1.88-1.88 8 8-8 8-1.88-1.88 6.107-6.12-6.107-6.12zM11.060 5.88l1.88-1.88 8 8-8 8-1.88-1.88 6.107-6.12-6.107-6.12z",_CoreIcons.chevronsUp="M6.041 20.705l-1.831-1.831 7.79-7.79 7.79 7.79-1.831 1.831-5.959-5.946-5.959 5.946zM6.041 12.915l-1.831-1.831 7.79-7.79 7.79 7.79-1.831 1.831-5.959-5.946-5.959 5.946z",_CoreIcons.pageFirst="M20.273 18.12l-6.12-6.12 6.12-6.12-1.88-1.88-8 8 8 8 1.88-1.88zM3.727 4h2.667v16h-2.667v-16z",_CoreIcons.pageLast="M3.727 5.88l6.12 6.12-6.12 6.12 1.88 1.88 8-8-8-8-1.88 1.88zM17.607 4h2.667v16h-2.667v-16z",_CoreIcons.arrowDown="M18.293 11.293l-5.293 5.293v-11.586c0-0.552-0.448-1-1-1s-1 0.448-1 1v11.586l-5.293-5.293c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414l7 7c0.092 0.092 0.202 0.166 0.324 0.217 0.245 0.101 0.521 0.101 0.766 0 0.118-0.049 0.228-0.121 0.324-0.217l7-7c0.391-0.391 0.391-1.024 0-1.414s-1.024-0.391-1.414 0z",_CoreIcons.arrowLeft="M12.707 18.293l-5.293-5.293h11.586c0.552 0 1-0.448 1-1s-0.448-1-1-1h-11.586l5.293-5.293c0.391-0.391 0.391-1.024 0-1.414s-1.024-0.391-1.414 0l-7 7c-0.096 0.096-0.168 0.206-0.217 0.324-0.051 0.122-0.076 0.253-0.076 0.383 0 0.256 0.098 0.512 0.293 0.707l7 7c0.391 0.391 1.024 0.391 1.414 0s0.391-1.024 0-1.414z",_CoreIcons.arrowRight="M11.293 5.707l5.293 5.293h-11.586c-0.552 0-1 0.448-1 1s0.448 1 1 1h11.586l-5.293 5.293c-0.391 0.391-0.391 1.024 0 1.414s1.024 0.391 1.414 0l7-7c0.092-0.092 0.166-0.202 0.217-0.324 0.101-0.245 0.101-0.521 0-0.766-0.049-0.118-0.121-0.228-0.217-0.324l-7-7c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414z",_CoreIcons.arrowUp="M5.707 12.707l5.293-5.293v11.586c0 0.552 0.448 1 1 1s1-0.448 1-1v-11.586l5.293 5.293c0.391 0.391 1.024 0.391 1.414 0s0.391-1.024 0-1.414l-7-7c-0.092-0.092-0.202-0.166-0.324-0.217s-0.253-0.076-0.383-0.076c-0.256 0-0.512 0.098-0.707 0.293l-7 7c-0.391 0.391-0.391 1.024 0 1.414s1.024 0.391 1.414 0z",_CoreIcons.arrowExpand="M10,21V19H6.41L10.91,14.5L9.5,13.09L5,17.59V14H3V21H10M14.5,10.91L19,6.41V10H21V3H14V5H17.59L13.09,9.5L14.5,10.91Z",_CoreIcons.arrowCollapse="M19.5,3.09L15,7.59V4H13V11H20V9H16.41L20.91,4.5L19.5,3.09M4,13V15H7.59L3.09,19.5L4.5,20.91L9,16.41V20H11V13H4Z",_CoreIcons.close="M5.293 6.707l5.293 5.293-5.293 5.293c-0.391 0.391-0.391 1.024 0 1.414s1.024 0.391 1.414 0l5.293-5.293 5.293 5.293c0.391 0.391 1.024 0.391 1.414 0s0.391-1.024 0-1.414l-5.293-5.293 5.293-5.293c0.391-0.391 0.391-1.024 0-1.414s-1.024-0.391-1.414 0l-5.293 5.293-5.293-5.293c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414z",_CoreIcons.closeAll="M21.707 17.293l-5.293-5.293 5.293-5.293c0.391-0.391 0.391-1.024 0-1.414s-1.024-0.391-1.414 0l-6 6c-0.391 0.391-0.391 1.024 0 1.414l6 6c0.391 0.391 1.024 0.391 1.414 0s0.391-1.024 0-1.414zM2.293 6.707l5.293 5.293-5.293 5.293c-0.391 0.391-0.391 1.024 0 1.414s1.024 0.391 1.414 0l5.293-5.293 5.293 5.293c0.391 0.391 1.024 0.391 1.414 0s0.391-1.024 0-1.414l-5.293-5.293 5.293-5.293c0.391-0.391 0.391-1.024 0-1.414s-1.024-0.391-1.414 0l-5.293 5.293-5.293-5.293c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414z",_CoreIcons.maximize="M8 2h-3c-0.828 0-1.58 0.337-2.121 0.879s-0.879 1.293-0.879 2.121v3c0 0.552 0.448 1 1 1s1-0.448 1-1v-3c0-0.276 0.111-0.525 0.293-0.707s0.431-0.293 0.707-0.293h3c0.552 0 1-0.448 1-1s-0.448-1-1-1zM22 8v-3c0-0.828-0.337-1.58-0.879-2.121s-1.293-0.879-2.121-0.879h-3c-0.552 0-1 0.448-1 1s0.448 1 1 1h3c0.276 0 0.525 0.111 0.707 0.293s0.293 0.431 0.293 0.707v3c0 0.552 0.448 1 1 1s1-0.448 1-1zM16 22h3c0.828 0 1.58-0.337 2.121-0.879s0.879-1.293 0.879-2.121v-3c0-0.552-0.448-1-1-1s-1 0.448-1 1v3c0 0.276-0.111 0.525-0.293 0.707s-0.431 0.293-0.707 0.293h-3c-0.552 0-1 0.448-1 1s0.448 1 1 1zM2 16v3c0 0.828 0.337 1.58 0.879 2.121s1.293 0.879 2.121 0.879h3c0.552 0 1-0.448 1-1s-0.448-1-1-1h-3c-0.276 0-0.525-0.111-0.707-0.293s-0.293-0.431-0.293-0.707v-3c0-0.552-0.448-1-1-1s-1 0.448-1 1z",_CoreIcons.minimize="M7 3v3c0 0.276-0.111 0.525-0.293 0.707s-0.431 0.293-0.707 0.293h-3c-0.552 0-1 0.448-1 1s0.448 1 1 1h3c0.828 0 1.58-0.337 2.121-0.879s0.879-1.293 0.879-2.121v-3c0-0.552-0.448-1-1-1s-1 0.448-1 1zM21 7h-3c-0.276 0-0.525-0.111-0.707-0.293s-0.293-0.431-0.293-0.707v-3c0-0.552-0.448-1-1-1s-1 0.448-1 1v3c0 0.828 0.337 1.58 0.879 2.121s1.293 0.879 2.121 0.879h3c0.552 0 1-0.448 1-1s-0.448-1-1-1zM17 21v-3c0-0.276 0.111-0.525 0.293-0.707s0.431-0.293 0.707-0.293h3c0.552 0 1-0.448 1-1s-0.448-1-1-1h-3c-0.828 0-1.58 0.337-2.121 0.879s-0.879 1.293-0.879 2.121v3c0 0.552 0.448 1 1 1s1-0.448 1-1zM3 17h3c0.276 0 0.525 0.111 0.707 0.293s0.293 0.431 0.293 0.707v3c0 0.552 0.448 1 1 1s1-0.448 1-1v-3c0-0.828-0.337-1.58-0.879-2.121s-1.293-0.879-2.121-0.879h-3c-0.552 0-1 0.448-1 1s0.448 1 1 1z",_CoreIcons.caretDown="M7,10L12,15L17,10H7Z",_CoreIcons.caretLeft="M14.016 6.984v10.031l-5.016-5.016z",_CoreIcons.caretRight="M9.984 17.016v-10.031l5.016 5.016z",_CoreIcons.caretUp="M7,15L12,10L17,15H7Z",_CoreIcons.expand="M5 2c-0.828 0-1.58 0.337-2.121 0.879s-0.879 1.293-0.879 2.121v14c0 0.828 0.337 1.58 0.879 2.121s1.293 0.879 2.121 0.879h14c0.828 0 1.58-0.337 2.121-0.879s0.879-1.293 0.879-2.121v-14c0-0.828-0.337-1.58-0.879-2.121s-1.293-0.879-2.121-0.879zM5 4h14c0.276 0 0.525 0.111 0.707 0.293s0.293 0.431 0.293 0.707v14c0 0.276-0.111 0.525-0.293 0.707s-0.431 0.293-0.707 0.293h-14c-0.276 0-0.525-0.111-0.707-0.293s-0.293-0.431-0.293-0.707v-14c0-0.276 0.111-0.525 0.293-0.707s0.431-0.293 0.707-0.293zM8 13h3v3c0 0.552 0.448 1 1 1s1-0.448 1-1v-3h3c0.552 0 1-0.448 1-1s-0.448-1-1-1h-3v-3c0-0.552-0.448-1-1-1s-1 0.448-1 1v3h-3c-0.552 0-1 0.448-1 1s0.448 1 1 1z",_CoreIcons.collapse="M5 2c-0.828 0-1.58 0.337-2.121 0.879s-0.879 1.293-0.879 2.121v14c0 0.828 0.337 1.58 0.879 2.121s1.293 0.879 2.121 0.879h14c0.828 0 1.58-0.337 2.121-0.879s0.879-1.293 0.879-2.121v-14c0-0.828-0.337-1.58-0.879-2.121s-1.293-0.879-2.121-0.879zM5 4h14c0.276 0 0.525 0.111 0.707 0.293s0.293 0.431 0.293 0.707v14c0 0.276-0.111 0.525-0.293 0.707s-0.431 0.293-0.707 0.293h-14c-0.276 0-0.525-0.111-0.707-0.293s-0.293-0.431-0.293-0.707v-14c0-0.276 0.111-0.525 0.293-0.707s0.431-0.293 0.707-0.293zM8 13h8c0.552 0 1-0.448 1-1s-0.448-1-1-1h-8c-0.552 0-1 0.448-1 1s0.448 1 1 1z",_CoreIcons.expandActive="M17,13H13V17H11V13H7V11H11V7H13V11H17M19,3H5C3.89,3 3,3.89 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V5C21,3.89 20.1,3 19,3Z",_CoreIcons.collapseActive="M17,13H7V11H17M19,3H5C3.89,3 3,3.89 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V5C21,3.89 20.1,3 19,3Z",_CoreIcons.expandAll="M5.293 16.707l6 6c0.391 0.391 1.024 0.391 1.414 0l6-6c0.391-0.391 0.391-1.024 0-1.414s-1.024-0.391-1.414 0l-5.293 5.293-5.293-5.293c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414zM18.707 7.293l-6-6c-0.391-0.391-1.024-0.391-1.414 0l-6 6c-0.391 0.391-0.391 1.024 0 1.414s1.024 0.391 1.414 0l5.293-5.293 5.293 5.293c0.391 0.391 1.024 0.391 1.414 0s0.391-1.024 0-1.414z",_CoreIcons.colapseAll="M18.707 21.293l-6-6c-0.391-0.391-1.024-0.391-1.414 0l-6 6c-0.391 0.391-0.391 1.024 0 1.414s1.024 0.391 1.414 0l5.293-5.293 5.293 5.293c0.391 0.391 1.024 0.391 1.414 0s0.391-1.024 0-1.414zM5.293 2.707l6 6c0.391 0.391 1.024 0.391 1.414 0l6-6c0.391-0.391 0.391-1.024 0-1.414s-1.024-0.391-1.414 0l-5.293 5.293-5.293-5.293c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414z",_CoreIcons.folderClosed="M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z",_CoreIcons.folderOpen="M6.1,10L4,18V8H21A2,2 0 0,0 19,6H12L10,4H4A2,2 0 0,0 2,6V18A2,2 0 0,0 4,20H19C19.9,20 20.7,19.4 20.9,18.5L23.2,10H6.1M19,18H6L7.6,12H20.6L19,18Z",_CoreIcons.zoomIn="M16.041 15.856c-0.034 0.026-0.067 0.055-0.099 0.087s-0.060 0.064-0.087 0.099c-1.258 1.213-2.969 1.958-4.855 1.958-1.933 0-3.682-0.782-4.95-2.050s-2.050-3.017-2.050-4.95 0.782-3.682 2.050-4.95 3.017-2.050 4.95-2.050 3.682 0.782 4.95 2.050 2.050 3.017 2.050 4.95c0 1.886-0.745 3.597-1.959 4.856zM21.707 20.293l-3.675-3.675c1.231-1.54 1.968-3.493 1.968-5.618 0-2.485-1.008-4.736-2.636-6.364s-3.879-2.636-6.364-2.636-4.736 1.008-6.364 2.636-2.636 3.879-2.636 6.364 1.008 4.736 2.636 6.364 3.879 2.636 6.364 2.636c2.125 0 4.078-0.737 5.618-1.968l3.675 3.675c0.391 0.391 1.024 0.391 1.414 0s0.391-1.024 0-1.414zM8 12h2v2c0 0.552 0.448 1 1 1s1-0.448 1-1v-2h2c0.552 0 1-0.448 1-1s-0.448-1-1-1h-2v-2c0-0.552-0.448-1-1-1s-1 0.448-1 1v2h-2c-0.552 0-1 0.448-1 1s0.448 1 1 1z",_CoreIcons.zoomOut="M16.041 15.856c-0.034 0.026-0.067 0.055-0.099 0.087s-0.060 0.064-0.087 0.099c-1.258 1.213-2.969 1.958-4.855 1.958-1.933 0-3.682-0.782-4.95-2.050s-2.050-3.017-2.050-4.95 0.782-3.682 2.050-4.95 3.017-2.050 4.95-2.050 3.682 0.782 4.95 2.050 2.050 3.017 2.050 4.95c0 1.886-0.745 3.597-1.959 4.856zM21.707 20.293l-3.675-3.675c1.231-1.54 1.968-3.493 1.968-5.618 0-2.485-1.008-4.736-2.636-6.364s-3.879-2.636-6.364-2.636-4.736 1.008-6.364 2.636-2.636 3.879-2.636 6.364 1.008 4.736 2.636 6.364 3.879 2.636 6.364 2.636c2.125 0 4.078-0.737 5.618-1.968l3.675 3.675c0.391 0.391 1.024 0.391 1.414 0s0.391-1.024 0-1.414zM8 12h6c0.552 0 1-0.448 1-1s-0.448-1-1-1h-6c-0.552 0-1 0.448-1 1s0.448 1 1 1z",_CoreIcons.sortDesc="M19 17H22L18 21L14 17H17V3H19M2 17H12V19H2M6 5V7H2V5M2 11H9V13H2V11Z",_CoreIcons.sortAsc="M19 7H22L18 3L14 7H17V21H19M2 17H12V19H2M6 5V7H2V5M2 11H9V13H2V11Z",_CoreIcons.refresh="M19.547 14.667c-0.736 2.083-2.245 3.67-4.094 4.553s-4.031 1.061-6.114 0.325-3.67-2.245-4.553-4.094-1.061-4.031-0.325-6.114 2.245-3.67 4.094-4.553 4.031-1.061 6.114-0.325c1.188 0.42 2.209 1.088 2.987 1.882l2.824 2.659h-3.48c-0.552 0-1 0.448-1 1s0.448 1 1 1h5.997c0.004 0 0.009 0 0.013 0 0.137-0.001 0.267-0.030 0.386-0.082 0.119-0.051 0.229-0.126 0.324-0.225 0.012-0.012 0.023-0.025 0.034-0.038 0.076-0.087 0.134-0.184 0.175-0.287s0.065-0.213 0.069-0.328c0.002-0.014 0.002-0.028 0.002-0.042v-5.998c0-0.552-0.448-1-1-1s-1 0.448-1 1v3.685l-2.916-2.745c-0.993-1.012-2.274-1.846-3.748-2.366-2.604-0.921-5.336-0.698-7.644 0.405s-4.197 3.088-5.117 5.692-0.696 5.335 0.406 7.643 3.088 4.197 5.692 5.117 5.335 0.697 7.643-0.406 4.197-3.088 5.117-5.692c0.184-0.521-0.089-1.092-0.61-1.276s-1.092 0.089-1.276 0.61z",_CoreIcons.search="M16.041 15.856c-0.034 0.026-0.067 0.055-0.099 0.087s-0.060 0.064-0.087 0.099c-1.258 1.213-2.969 1.958-4.855 1.958-1.933 0-3.682-0.782-4.95-2.050s-2.050-3.017-2.050-4.95 0.782-3.682 2.050-4.95 3.017-2.050 4.95-2.050 3.682 0.782 4.95 2.050 2.050 3.017 2.050 4.95c0 1.886-0.745 3.597-1.959 4.856zM21.707 20.293l-3.675-3.675c1.231-1.54 1.968-3.493 1.968-5.618 0-2.485-1.008-4.736-2.636-6.364s-3.879-2.636-6.364-2.636-4.736 1.008-6.364 2.636-2.636 3.879-2.636 6.364 1.008 4.736 2.636 6.364 3.879 2.636 6.364 2.636c2.125 0 4.078-0.737 5.618-1.968l3.675 3.675c0.391 0.391 1.024 0.391 1.414 0s0.391-1.024 0-1.414z",_CoreIcons.filter="M6,13H18V11H6M3,6V8H21V6M10,18H14V16H10V18Z",_CoreIcons.funnel="M19.845 4l-6.609 7.814c-0.147 0.173-0.236 0.399-0.236 0.646v6.922l-2-1v-5.922c0.001-0.227-0.077-0.457-0.236-0.646l-6.609-7.814zM22 2h-20c-0.552 0-1 0.448-1 1 0 0.247 0.089 0.473 0.236 0.646l7.764 9.18v6.174c0 0.389 0.222 0.727 0.553 0.894l4 2c0.494 0.247 1.095 0.047 1.342-0.447 0.072-0.146 0.106-0.301 0.105-0.447v-8.174l7.764-9.18c0.357-0.422 0.304-1.053-0.118-1.409-0.189-0.16-0.419-0.238-0.646-0.237z",_CoreIcons.ellipsis="M14 12c0-0.552-0.225-1.053-0.586-1.414s-0.862-0.586-1.414-0.586-1.053 0.225-1.414 0.586-0.586 0.862-0.586 1.414 0.225 1.053 0.586 1.414 0.862 0.586 1.414 0.586 1.053-0.225 1.414-0.586 0.586-0.862 0.586-1.414zM14 5c0-0.552-0.225-1.053-0.586-1.414s-0.862-0.586-1.414-0.586-1.053 0.225-1.414 0.586-0.586 0.862-0.586 1.414 0.225 1.053 0.586 1.414 0.862 0.586 1.414 0.586 1.053-0.225 1.414-0.586 0.586-0.862 0.586-1.414zM14 19c0-0.552-0.225-1.053-0.586-1.414s-0.862-0.586-1.414-0.586-1.053 0.225-1.414 0.586-0.586 0.862-0.586 1.414 0.225 1.053 0.586 1.414 0.862 0.586 1.414 0.586 1.053-0.225 1.414-0.586 0.586-0.862 0.586-1.414z",_CoreIcons.funnelPlus="M15 17H18V14H20V17H23V19H20V22H18V19H15V17M13 19.88C13.04 20.18 12.94 20.5 12.72 20.71C12.32 21.1 11.69 21.1 11.3 20.71L7.29 16.7C7.06 16.47 6.96 16.16 7 15.87V10.75L2.21 4.62C1.87 4.19 1.95 3.56 2.38 3.22C2.57 3.08 2.78 3 3 3V3H17V3C17.22 3 17.43 3.08 17.62 3.22C18.05 3.56 18.13 4.19 17.79 4.62L13 10.75V19.88M5.04 5L9 10.07V15.58L11 17.58V10.05L14.96 5H5.04Z",_CoreIcons.funnelRemove="M14.73,20.83L17.58,18L14.73,15.17L16.15,13.76L19,16.57L21.8,13.76L23.22,15.17L20.41,18L23.22,20.83L21.8,22.24L19,19.4L16.15,22.24L14.73,20.83M13,19.88C13.04,20.18 12.94,20.5 12.71,20.71C12.32,21.1 11.69,21.1 11.3,20.71L7.29,16.7C7.06,16.47 6.96,16.16 7,15.87V10.75L2.21,4.62C1.87,4.19 1.95,3.56 2.38,3.22C2.57,3.08 2.78,3 3,3V3H17V3C17.22,3 17.43,3.08 17.62,3.22C18.05,3.56 18.13,4.19 17.79,4.62L13,10.75V19.88M5.04,5L9,10.06V15.58L11,17.58V10.05L14.96,5H5.04Z",_CoreIcons.funnelMinus="M15 17H23V19H15V17M13 19.88C13.04 20.18 12.94 20.5 12.72 20.71C12.32 21.1 11.69 21.1 11.3 20.71L7.29 16.7C7.06 16.47 6.96 16.16 7 15.87V10.75L2.21 4.62C1.87 4.19 1.95 3.56 2.38 3.22C2.57 3.08 2.78 3 3 3V3H17V3C17.22 3 17.43 3.08 17.62 3.22C18.05 3.56 18.13 4.19 17.79 4.62L13 10.75V19.88M5.04 5L9 10.07V15.58L11 17.58V10.05L14.96 5H5.04Z",_CoreIcons.cut="M7.378 16.551c0.011 0.012 0.023 0.025 0.035 0.036s0.024 0.023 0.036 0.035c0.343 0.359 0.551 0.843 0.551 1.378 0 0.553-0.223 1.051-0.586 1.414s-0.861 0.586-1.414 0.586-1.051-0.223-1.414-0.586-0.586-0.861-0.586-1.414 0.223-1.051 0.586-1.414 0.861-0.586 1.414-0.586c0.535 0 1.019 0.208 1.378 0.551zM13.764 15.188l5.53 5.52c0.391 0.39 1.024 0.39 1.414-0.001s0.39-1.024-0.001-1.414l-5.53-5.52c-0.391-0.39-1.024-0.39-1.414 0.001s-0.39 1.024 0.001 1.414zM7.449 7.378c-0.012 0.011-0.024 0.023-0.036 0.035s-0.024 0.024-0.035 0.036c-0.359 0.343-0.843 0.551-1.378 0.551-0.553 0-1.051-0.223-1.414-0.586s-0.586-0.861-0.586-1.414 0.223-1.051 0.586-1.414 0.861-0.586 1.414-0.586 1.051 0.223 1.414 0.586 0.586 0.861 0.586 1.414c0 0.535-0.208 1.019-0.551 1.378zM8.032 9.446l2.554 2.554-2.554 2.554c-0.596-0.352-1.291-0.554-2.032-0.554-1.104 0-2.106 0.449-2.828 1.172s-1.172 1.724-1.172 2.828 0.449 2.106 1.172 2.828 1.724 1.172 2.828 1.172 2.106-0.449 2.828-1.172 1.172-1.724 1.172-2.828c0-0.741-0.202-1.436-0.554-2.032l11.261-11.261c0.391-0.391 0.391-1.024 0-1.414s-1.024-0.391-1.414 0l-7.293 7.293-2.554-2.554c0.352-0.596 0.554-1.291 0.554-2.032 0-1.104-0.449-2.106-1.172-2.828s-1.724-1.172-2.828-1.172-2.106 0.449-2.828 1.172-1.172 1.724-1.172 2.828 0.449 2.106 1.172 2.828 1.724 1.172 2.828 1.172c0.741 0 1.436-0.202 2.032-0.554z",_CoreIcons.copy="M11 8c-0.828 0-1.58 0.337-2.121 0.879s-0.879 1.293-0.879 2.121v9c0 0.828 0.337 1.58 0.879 2.121s1.293 0.879 2.121 0.879h9c0.828 0 1.58-0.337 2.121-0.879s0.879-1.293 0.879-2.121v-9c0-0.828-0.337-1.58-0.879-2.121s-1.293-0.879-2.121-0.879zM11 10h9c0.276 0 0.525 0.111 0.707 0.293s0.293 0.431 0.293 0.707v9c0 0.276-0.111 0.525-0.293 0.707s-0.431 0.293-0.707 0.293h-9c-0.276 0-0.525-0.111-0.707-0.293s-0.293-0.431-0.293-0.707v-9c0-0.276 0.111-0.525 0.293-0.707s0.431-0.293 0.707-0.293zM5 14h-1c-0.276 0-0.525-0.111-0.707-0.293s-0.293-0.431-0.293-0.707v-9c0-0.276 0.111-0.525 0.293-0.707s0.431-0.293 0.707-0.293h9c0.276 0 0.525 0.111 0.707 0.293s0.293 0.431 0.293 0.707v1c0 0.552 0.448 1 1 1s1-0.448 1-1v-1c0-0.828-0.337-1.58-0.879-2.121s-1.293-0.879-2.121-0.879h-9c-0.828 0-1.58 0.337-2.121 0.879s-0.879 1.293-0.879 2.121v9c0 0.828 0.337 1.58 0.879 2.121s1.293 0.879 2.121 0.879h1c0.552 0 1-0.448 1-1s-0.448-1-1-1z",_CoreIcons.clipboard="M7 5c0 0.552 0.225 1.053 0.586 1.414s0.862 0.586 1.414 0.586h6c0.552 0 1.053-0.225 1.414-0.586s0.586-0.862 0.586-1.414h1c0.276 0 0.525 0.111 0.707 0.293s0.293 0.431 0.293 0.707v14c0 0.276-0.111 0.525-0.293 0.707s-0.431 0.293-0.707 0.293h-12c-0.276 0-0.525-0.111-0.707-0.293s-0.293-0.431-0.293-0.707v-14c0-0.276 0.111-0.525 0.293-0.707s0.431-0.293 0.707-0.293zM9 1c-0.552 0-1.053 0.225-1.414 0.586s-0.586 0.862-0.586 1.414h-1c-0.828 0-1.58 0.337-2.121 0.879s-0.879 1.293-0.879 2.121v14c0 0.828 0.337 1.58 0.879 2.121s1.293 0.879 2.121 0.879h12c0.828 0 1.58-0.337 2.121-0.879s0.879-1.293 0.879-2.121v-14c0-0.828-0.337-1.58-0.879-2.121s-1.293-0.879-2.121-0.879h-1c0-0.552-0.225-1.053-0.586-1.414s-0.862-0.586-1.414-0.586zM9 3h6v2h-6z",_CoreIcons.download="M20 15v4c0 0.276-0.111 0.525-0.293 0.707s-0.431 0.293-0.707 0.293h-14c-0.276 0-0.525-0.111-0.707-0.293s-0.293-0.431-0.293-0.707v-4c0-0.552-0.448-1-1-1s-1 0.448-1 1v4c0 0.828 0.337 1.58 0.879 2.121s1.293 0.879 2.121 0.879h14c0.828 0 1.58-0.337 2.121-0.879s0.879-1.293 0.879-2.121v-4c0-0.552-0.448-1-1-1s-1 0.448-1 1zM13 12.586v-9.586c0-0.552-0.448-1-1-1s-1 0.448-1 1v9.586l-3.293-3.293c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414l5 5c0.092 0.092 0.202 0.166 0.324 0.217s0.253 0.076 0.383 0.076c0.256 0 0.512-0.098 0.707-0.293l5-5c0.391-0.391 0.391-1.024 0-1.414s-1.024-0.391-1.414 0z",_CoreIcons.upload="M20 15v4c0 0.276-0.111 0.525-0.293 0.707s-0.431 0.293-0.707 0.293h-14c-0.276 0-0.525-0.111-0.707-0.293s-0.293-0.431-0.293-0.707v-4c0-0.552-0.448-1-1-1s-1 0.448-1 1v4c0 0.828 0.337 1.58 0.879 2.121s1.293 0.879 2.121 0.879h14c0.828 0 1.58-0.337 2.121-0.879s0.879-1.293 0.879-2.121v-4c0-0.552-0.448-1-1-1s-1 0.448-1 1zM11 5.414v9.586c0 0.552 0.448 1 1 1s1-0.448 1-1v-9.586l3.293 3.293c0.391 0.391 1.024 0.391 1.414 0s0.391-1.024 0-1.414l-5-5c-0.092-0.092-0.202-0.166-0.324-0.217-0.245-0.101-0.521-0.101-0.766 0-0.118 0.049-0.228 0.121-0.324 0.217l-5 5c-0.391 0.391-0.391 1.024 0 1.414s1.024 0.391 1.414 0z",_CoreIcons.external="M17 13v6c0 0.276-0.111 0.525-0.293 0.707s-0.431 0.293-0.707 0.293h-11c-0.276 0-0.525-0.111-0.707-0.293s-0.293-0.431-0.293-0.707v-11c0-0.276 0.111-0.525 0.293-0.707s0.431-0.293 0.707-0.293h6c0.552 0 1-0.448 1-1s-0.448-1-1-1h-6c-0.828 0-1.58 0.337-2.121 0.879s-0.879 1.293-0.879 2.121v11c0 0.828 0.337 1.58 0.879 2.121s1.293 0.879 2.121 0.879h11c0.828 0 1.58-0.337 2.121-0.879s0.879-1.293 0.879-2.121v-6c0-0.552-0.448-1-1-1s-1 0.448-1 1zM10.707 14.707l9.293-9.293v3.586c0 0.552 0.448 1 1 1s1-0.448 1-1v-6c0-0.136-0.027-0.265-0.076-0.383s-0.121-0.228-0.216-0.323c-0.001-0.001-0.001-0.001-0.002-0.002-0.092-0.092-0.202-0.166-0.323-0.216-0.118-0.049-0.247-0.076-0.383-0.076h-6c-0.552 0-1 0.448-1 1s0.448 1 1 1h3.586l-9.293 9.293c-0.391 0.391-0.391 1.024 0 1.414s1.024 0.391 1.414 0z",_CoreIcons.exporter="M12,1L8,5H11V14H13V5H16M18,23H6C4.89,23 4,22.1 4,21V9A2,2 0 0,1 6,7H9V9H6V21H18V9H15V7H18A2,2 0 0,1 20,9V21A2,2 0 0,1 18,23Z",_CoreIcons.dragHandle="M9,3H11V5H9V3M13,3H15V5H13V3M9,7H11V9H9V7M13,7H15V9H13V7M9,11H11V13H9V11M13,11H15V13H13V11M9,15H11V17H9V15M13,15H15V17H13V15M9,19H11V21H9V19M13,19H15V21H13V19Z",_CoreIcons.calendar="M7 2v1h-2c-0.828 0-1.58 0.337-2.121 0.879s-0.879 1.293-0.879 2.121v14c0 0.828 0.337 1.58 0.879 2.121s1.293 0.879 2.121 0.879h14c0.828 0 1.58-0.337 2.121-0.879s0.879-1.293 0.879-2.121v-14c0-0.828-0.337-1.58-0.879-2.121s-1.293-0.879-2.121-0.879h-2v-1c0-0.552-0.448-1-1-1s-1 0.448-1 1v1h-6v-1c0-0.552-0.448-1-1-1s-1 0.448-1 1zM20 9h-16v-3c0-0.276 0.111-0.525 0.293-0.707s0.431-0.293 0.707-0.293h2v1c0 0.552 0.448 1 1 1s1-0.448 1-1v-1h6v1c0 0.552 0.448 1 1 1s1-0.448 1-1v-1h2c0.276 0 0.525 0.111 0.707 0.293s0.293 0.431 0.293 0.707zM4 11h16v9c0 0.276-0.111 0.525-0.293 0.707s-0.431 0.293-0.707 0.293h-14c-0.276 0-0.525-0.111-0.707-0.293s-0.293-0.431-0.293-0.707z",_CoreIcons.calendarHijri="M2.572 22.285h18.857v-13.715h-18.857v13.715zM7.715 6v-3.857c0-0.241-0.188-0.428-0.428-0.428h-0.857c-0.241 0-0.428 0.188-0.428 0.428v3.857c0 0.241 0.188 0.428 0.428 0.428h0.857c0.241 0 0.428-0.188 0.428-0.428zM18 6v-3.857c0-0.241-0.188-0.428-0.428-0.428h-0.857c-0.241 0-0.428 0.188-0.428 0.428v3.857c0 0.241 0.188 0.428 0.428 0.428h0.857c0.241 0 0.428-0.188 0.428-0.428zM23.143 5.143v17.143c0 0.938-0.777 1.715-1.715 1.715h-18.857c-0.938 0-1.715-0.777-1.715-1.715v-17.143c0-0.938 0.777-1.714 1.715-1.714h1.714v-1.285c0-1.178 0.965-2.143 2.143-2.143h0.857c1.178 0 2.143 0.965 2.143 2.143v1.285h5.143v-1.285c0-1.178 0.965-2.143 2.143-2.143h0.857c1.178 0 2.143 0.965 2.143 2.143v1.285h1.715c0.938 0 1.715 0.777 1.715 1.714zM13.389 19.885c-2.461 0-4.48-2.033-4.48-4.51 0-2.495 1.982-4.51 4.53-4.51 0.873 0 1.747 0.352 1.747 0.352-0.994-0.699-2.028-1.047-3.102-1.047-1.459 0-2.699 0.505-3.719 1.516s-1.53 2.24-1.53 3.69c0 1.44 0.508 2.667 1.523 3.683s2.243 1.523 3.683 1.523c1.861 0 3.001-0.961 3.145-1.055 0 0-0.923 0.359-1.796 0.359zM14.425 15.663l-0.465 1.443 1.226-0.887 1.219 0.887-0.465-1.443 1.226-0.882h-1.515l-0.465-1.44-0.472 1.44h-1.515l1.226 0.882z",_CoreIcons.clock="M23 12c0-3.037-1.232-5.789-3.222-7.778s-4.741-3.222-7.778-3.222-5.789 1.232-7.778 3.222-3.222 4.741-3.222 7.778 1.232 5.789 3.222 7.778 4.741 3.222 7.778 3.222 5.789-1.232 7.778-3.222 3.222-4.741 3.222-7.778zM21 12c0 2.486-1.006 4.734-2.636 6.364s-3.878 2.636-6.364 2.636-4.734-1.006-6.364-2.636-2.636-3.878-2.636-6.364 1.006-4.734 2.636-6.364 3.878-2.636 6.364-2.636 4.734 1.006 6.364 2.636 2.636 3.878 2.636 6.364zM11 6v6c0 0.389 0.222 0.727 0.553 0.894l4 2c0.494 0.247 1.095 0.047 1.342-0.447s0.047-1.095-0.447-1.342l-3.448-1.723v-5.382c0-0.552-0.448-1-1-1s-1 0.448-1 1z",_CoreIcons.pin="M16,12V4H17V2H7V4H8V12L6,14V16H11.2V22H12.8V16H18V14L16,12M8.8,14L10,12.8V4H14V12.8L15.2,14H8.8Z",_CoreIcons.eye="M0.106 11.553c-0.136 0.274-0.146 0.603 0 0.894 0 0 0.396 0.789 1.12 1.843 0.451 0.656 1.038 1.432 1.757 2.218 0.894 0.979 2.004 1.987 3.319 2.8 1.595 0.986 3.506 1.692 5.698 1.692s4.103-0.706 5.698-1.692c1.315-0.813 2.425-1.821 3.319-2.8 0.718-0.786 1.306-1.562 1.757-2.218 0.724-1.054 1.12-1.843 1.12-1.843 0.136-0.274 0.146-0.603 0-0.894 0 0-0.396-0.789-1.12-1.843-0.451-0.656-1.038-1.432-1.757-2.218-0.894-0.979-2.004-1.987-3.319-2.8-1.595-0.986-3.506-1.692-5.698-1.692s-4.103 0.706-5.698 1.692c-1.315 0.813-2.425 1.821-3.319 2.8-0.719 0.786-1.306 1.561-1.757 2.218-0.724 1.054-1.12 1.843-1.12 1.843zM2.14 12c0.163-0.281 0.407-0.681 0.734-1.158 0.41-0.596 0.94-1.296 1.585-2.001 0.805-0.881 1.775-1.756 2.894-2.448 1.35-0.834 2.901-1.393 4.647-1.393s3.297 0.559 4.646 1.393c1.119 0.692 2.089 1.567 2.894 2.448 0.644 0.705 1.175 1.405 1.585 2.001 0.328 0.477 0.572 0.876 0.734 1.158-0.163 0.281-0.407 0.681-0.734 1.158-0.41 0.596-0.94 1.296-1.585 2.001-0.805 0.881-1.775 1.756-2.894 2.448-1.349 0.834-2.9 1.393-4.646 1.393s-3.297-0.559-4.646-1.393c-1.119-0.692-2.089-1.567-2.894-2.448-0.644-0.705-1.175-1.405-1.585-2.001-0.328-0.477-0.572-0.877-0.735-1.158zM16 12c0-1.104-0.449-2.106-1.172-2.828s-1.724-1.172-2.828-1.172-2.106 0.449-2.828 1.172-1.172 1.724-1.172 2.828 0.449 2.106 1.172 2.828 1.724 1.172 2.828 1.172 2.106-0.449 2.828-1.172 1.172-1.724 1.172-2.828zM14 12c0 0.553-0.223 1.051-0.586 1.414s-0.861 0.586-1.414 0.586-1.051-0.223-1.414-0.586-0.586-0.861-0.586-1.414 0.223-1.051 0.586-1.414 0.861-0.586 1.414-0.586 1.051 0.223 1.414 0.586 0.586 0.861 0.586 1.414z",_CoreIcons.eyeOff="M10.128 5.214c0.651-0.152 1.296-0.221 1.86-0.214 1.758 0 3.309 0.559 4.658 1.393 1.119 0.692 2.089 1.567 2.894 2.448 0.644 0.705 1.175 1.405 1.585 2.001 0.327 0.475 0.57 0.874 0.733 1.155-0.546 0.953-1.16 1.821-1.778 2.542-0.359 0.419-0.311 1.051 0.108 1.41s1.051 0.311 1.41-0.108c0.818-0.954 1.611-2.112 2.283-3.37 0.148-0.279 0.163-0.618 0.013-0.919 0 0-0.396-0.789-1.12-1.843-0.451-0.656-1.038-1.432-1.757-2.218-0.894-0.979-2.004-1.987-3.319-2.8-1.595-0.985-3.506-1.691-5.686-1.691-0.734-0.009-1.54 0.079-2.34 0.266-0.538 0.126-0.872 0.664-0.746 1.202s0.664 0.872 1.202 0.746zM10.027 11.442l2.531 2.531c-0.182 0.061-0.372 0.094-0.563 0.101-0.513 0.018-1.030-0.159-1.434-0.536s-0.617-0.88-0.635-1.393c-0.008-0.238 0.025-0.476 0.101-0.704zM5.983 7.397l2.553 2.553c-0.434 0.691-0.636 1.484-0.608 2.266 0.036 1.022 0.463 2.033 1.271 2.785s1.846 1.107 2.868 1.071c0.692-0.024 1.379-0.228 1.984-0.608l2.322 2.322c-1.378 0.799-2.895 1.196-4.384 1.214-1.734 0-3.285-0.559-4.634-1.393-1.119-0.692-2.089-1.567-2.894-2.448-0.644-0.705-1.175-1.405-1.585-2.001-0.326-0.475-0.57-0.873-0.732-1.154 1.050-1.822 2.376-3.379 3.841-4.607zM0.293 1.707l4.271 4.271c-1.731 1.479-3.269 3.358-4.445 5.549-0.148 0.279-0.164 0.619-0.013 0.92 0 0 0.396 0.789 1.12 1.843 0.451 0.656 1.038 1.432 1.757 2.218 0.894 0.979 2.004 1.987 3.319 2.8 1.595 0.986 3.506 1.692 5.71 1.692 1.993-0.024 4.019-0.601 5.815-1.759l4.466 4.466c0.391 0.391 1.024 0.391 1.414 0s0.391-1.024 0-1.414l-8.876-8.876c-0.002-0.002-0.005-0.005-0.007-0.007l-4.209-4.21c-0.008-0.007-0.016-0.016-0.024-0.024l-8.884-8.883c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414z",_CoreIcons.invertDisable="M19 3H5C3.9 3 3 3.9 3 5V19C3 20.1 3.9 21 5 21H19C20.1 21 21 20.1 21 19V5C21 3.9 20.1 3 19 3M19 19H5V5H19V19M7 17V7H17",_CoreIcons.invertExclude="M9,5C10.04,5 11.06,5.24 12,5.68C12.94,5.24 13.96,5 15,5A7,7 0 0,1 22,12A7,7 0 0,1 15,19C13.96,19 12.94,18.76 12,18.32C11.06,18.76 10.04,19 9,19A7,7 0 0,1 2,12A7,7 0 0,1 9,5M15,7L14,7.11C15.28,8.41 16,10.17 16,12C16,13.83 15.28,15.59 14,16.9L15,17A5,5 0 0,0 20,12A5,5 0 0,0 15,7M8.5,12C8.5,13.87 9.29,15.56 10.56,16.75L11.56,16.29C10.31,15.29 9.5,13.74 9.5,12C9.5,10.26 10.31,8.71 11.56,7.71L10.56,7.25C9.29,8.44 8.5,10.13 8.5,12Z",_CoreIcons.lock="M5 12h14c0.276 0 0.525 0.111 0.707 0.293s0.293 0.431 0.293 0.707v7c0 0.276-0.111 0.525-0.293 0.707s-0.431 0.293-0.707 0.293h-14c-0.276 0-0.525-0.111-0.707-0.293s-0.293-0.431-0.293-0.707v-7c0-0.276 0.111-0.525 0.293-0.707s0.431-0.293 0.707-0.293zM18 10v-3c0-1.657-0.673-3.158-1.757-4.243s-2.586-1.757-4.243-1.757-3.158 0.673-4.243 1.757-1.757 2.586-1.757 4.243v3h-1c-0.828 0-1.58 0.337-2.121 0.879s-0.879 1.293-0.879 2.121v7c0 0.828 0.337 1.58 0.879 2.121s1.293 0.879 2.121 0.879h14c0.828 0 1.58-0.337 2.121-0.879s0.879-1.293 0.879-2.121v-7c0-0.828-0.337-1.58-0.879-2.121s-1.293-0.879-2.121-0.879zM8 10v-3c0-1.105 0.447-2.103 1.172-2.828s1.723-1.172 2.828-1.172 2.103 0.447 2.828 1.172 1.172 1.723 1.172 2.828v3z",_CoreIcons.unlock="M5 12h14c0.276 0 0.525 0.111 0.707 0.293s0.293 0.431 0.293 0.707v7c0 0.276-0.111 0.525-0.293 0.707s-0.431 0.293-0.707 0.293h-14c-0.276 0-0.525-0.111-0.707-0.293s-0.293-0.431-0.293-0.707v-7c0-0.276 0.111-0.525 0.293-0.707s0.431-0.293 0.707-0.293zM8 10v-3c-0.001-1.106 0.445-2.105 1.169-2.831 0.723-0.724 1.719-1.172 2.821-1.174 1.030 0.003 1.948 0.378 2.652 1 0.638 0.565 1.097 1.332 1.28 2.209 0.113 0.541 0.642 0.888 1.183 0.775s0.888-0.642 0.775-1.183c-0.272-1.307-0.958-2.454-1.912-3.299-1.060-0.938-2.452-1.504-3.973-1.502-1.657 0.002-3.157 0.676-4.241 1.762s-1.756 2.587-1.754 4.243v3h-1c-0.828 0-1.58 0.337-2.121 0.879s-0.879 1.293-0.879 2.121v7c0 0.828 0.337 1.58 0.879 2.121s1.293 0.879 2.121 0.879h14c0.828 0 1.58-0.337 2.121-0.879s0.879-1.293 0.879-2.121v-7c0-0.828-0.337-1.58-0.879-2.121s-1.293-0.879-2.121-0.879z",_CoreIcons.edit="M12 21h9c0.552 0 1-0.448 1-1s-0.448-1-1-1h-9c-0.552 0-1 0.448-1 1s0.448 1 1 1zM15.793 2.793l-12.5 12.5c-0.122 0.121-0.217 0.28-0.263 0.465l-1 4c-0.039 0.15-0.042 0.318 0 0.485 0.134 0.536 0.677 0.862 1.213 0.728l4-1c0.167-0.041 0.33-0.129 0.465-0.263l12.5-12.5c0.609-0.609 0.914-1.41 0.914-2.207s-0.305-1.598-0.914-2.207-1.411-0.915-2.208-0.915-1.598 0.305-2.207 0.914zM17.207 4.207c0.219-0.219 0.504-0.328 0.793-0.328s0.574 0.109 0.793 0.328 0.328 0.504 0.328 0.793-0.109 0.574-0.328 0.793l-12.304 12.304-2.115 0.529 0.529-2.115z",_CoreIcons.console="M4.707 17.707l6-6c0.391-0.391 0.391-1.024 0-1.414l-6-6c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414l5.293 5.293-5.293 5.293c-0.391 0.391-0.391 1.024 0 1.414s1.024 0.391 1.414 0zM12 20h8c0.552 0 1-0.448 1-1s-0.448-1-1-1h-8c-0.552 0-1 0.448-1 1s0.448 1 1 1z",_CoreIcons.backspace="M21 5c0.276 0 0.525 0.111 0.707 0.293s0.293 0.431 0.293 0.707v12c0 0.276-0.111 0.525-0.293 0.707s-0.431 0.293-0.707 0.293h-12.546l-6.125-7 6.125-7zM21 3h-13c-0.3 0-0.568 0.132-0.753 0.341l-7 8c-0.333 0.38-0.326 0.942 0 1.317l7 8c0.198 0.226 0.474 0.341 0.753 0.342h13c0.828 0 1.58-0.337 2.121-0.879s0.879-1.293 0.879-2.121v-12c0-0.828-0.337-1.58-0.879-2.121s-1.293-0.879-2.121-0.879zM11.293 9.707l2.293 2.293-2.293 2.293c-0.391 0.391-0.391 1.024 0 1.414s1.024 0.391 1.414 0l2.293-2.293 2.293 2.293c0.391 0.391 1.024 0.391 1.414 0s0.391-1.024 0-1.414l-2.293-2.293 2.293-2.293c0.391-0.391 0.391-1.024 0-1.414s-1.024-0.391-1.414 0l-2.293 2.293-2.293-2.293c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414z",_CoreIcons.insert="M12,20C7.59,20 4,16.41 4,12C4,7.59 7.59,4 12,4C16.41,4 20,7.59 20,12C20,16.41 16.41,20 12,20M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2M13,7H11V11H7V13H11V17H13V13H17V11H13V7Z",_CoreIcons.remove="M23 12c0-3.037-1.232-5.789-3.222-7.778s-4.741-3.222-7.778-3.222-5.789 1.232-7.778 3.222-3.222 4.741-3.222 7.778 1.232 5.789 3.222 7.778 4.741 3.222 7.778 3.222 5.789-1.232 7.778-3.222 3.222-4.741 3.222-7.778zM21 12c0 2.486-1.006 4.734-2.636 6.364s-3.878 2.636-6.364 2.636-4.734-1.006-6.364-2.636-2.636-3.878-2.636-6.364 1.006-4.734 2.636-6.364 3.878-2.636 6.364-2.636 4.734 1.006 6.364 2.636 2.636 3.878 2.636 6.364zM8 13h8c0.552 0 1-0.448 1-1s-0.448-1-1-1h-8c-0.552 0-1 0.448-1 1s0.448 1 1 1z",_CoreIcons.trash="M18 7v13c0 0.276-0.111 0.525-0.293 0.707s-0.431 0.293-0.707 0.293h-10c-0.276 0-0.525-0.111-0.707-0.293s-0.293-0.431-0.293-0.707v-13zM17 5v-1c0-0.828-0.337-1.58-0.879-2.121s-1.293-0.879-2.121-0.879h-4c-0.828 0-1.58 0.337-2.121 0.879s-0.879 1.293-0.879 2.121v1h-4c-0.552 0-1 0.448-1 1s0.448 1 1 1h1v13c0 0.828 0.337 1.58 0.879 2.121s1.293 0.879 2.121 0.879h10c0.828 0 1.58-0.337 2.121-0.879s0.879-1.293 0.879-2.121v-13h1c0.552 0 1-0.448 1-1s-0.448-1-1-1zM9 5v-1c0-0.276 0.111-0.525 0.293-0.707s0.431-0.293 0.707-0.293h4c0.276 0 0.525 0.111 0.707 0.293s0.293 0.431 0.293 0.707v1zM9 11v6c0 0.552 0.448 1 1 1s1-0.448 1-1v-6c0-0.552-0.448-1-1-1s-1 0.448-1 1zM13 11v6c0 0.552 0.448 1 1 1s1-0.448 1-1v-6c0-0.552-0.448-1-1-1s-1 0.448-1 1z",_CoreIcons.menu="M3 13h18c0.552 0 1-0.448 1-1s-0.448-1-1-1h-18c-0.552 0-1 0.448-1 1s0.448 1 1 1zM3 7h18c0.552 0 1-0.448 1-1s-0.448-1-1-1h-18c-0.552 0-1 0.448-1 1s0.448 1 1 1zM3 19h18c0.552 0 1-0.448 1-1s-0.448-1-1-1h-18c-0.552 0-1 0.448-1 1s0.448 1 1 1z",_CoreIcons.config="M16 12c0-1.104-0.449-2.106-1.172-2.828s-1.724-1.172-2.828-1.172-2.106 0.449-2.828 1.172-1.172 1.724-1.172 2.828 0.449 2.106 1.172 2.828 1.724 1.172 2.828 1.172 2.106-0.449 2.828-1.172 1.172-1.724 1.172-2.828zM14 12c0 0.553-0.223 1.051-0.586 1.414s-0.861 0.586-1.414 0.586-1.051-0.223-1.414-0.586-0.586-0.861-0.586-1.414 0.223-1.051 0.586-1.414 0.861-0.586 1.414-0.586 1.051 0.223 1.414 0.586 0.586 0.861 0.586 1.414zM20.315 15.404c0.046-0.105 0.112-0.191 0.192-0.257 0.112-0.092 0.251-0.146 0.403-0.147h0.090c0.828 0 1.58-0.337 2.121-0.879s0.879-1.293 0.879-2.121-0.337-1.58-0.879-2.121-1.293-0.879-2.121-0.879h-0.159c-0.11-0.001-0.215-0.028-0.308-0.076-0.127-0.066-0.23-0.172-0.292-0.312-0.003-0.029-0.004-0.059-0.004-0.089-0.024-0.055-0.040-0.111-0.049-0.168 0.020-0.334 0.077-0.454 0.168-0.547l0.062-0.062c0.585-0.586 0.878-1.356 0.877-2.122s-0.294-1.536-0.881-2.122c-0.586-0.585-1.356-0.878-2.122-0.877s-1.536 0.294-2.12 0.879l-0.046 0.046c-0.083 0.080-0.183 0.136-0.288 0.166-0.14 0.039-0.291 0.032-0.438-0.033-0.101-0.044-0.187-0.11-0.253-0.19-0.092-0.112-0.146-0.251-0.147-0.403v-0.090c0-0.828-0.337-1.58-0.879-2.121s-1.293-0.879-2.121-0.879-1.58 0.337-2.121 0.879-0.879 1.293-0.879 2.121v0.159c-0.001 0.11-0.028 0.215-0.076 0.308-0.066 0.127-0.172 0.23-0.312 0.292-0.029 0.003-0.059 0.004-0.089 0.004-0.055 0.024-0.111 0.040-0.168 0.049-0.335-0.021-0.455-0.078-0.548-0.169l-0.062-0.062c-0.586-0.585-1.355-0.878-2.122-0.878s-1.535 0.294-2.122 0.882c-0.585 0.586-0.878 1.355-0.878 2.122s0.294 1.536 0.879 2.12l0.048 0.047c0.080 0.083 0.136 0.183 0.166 0.288 0.039 0.14 0.032 0.291-0.031 0.434-0.006 0.016-0.013 0.034-0.021 0.052-0.041 0.109-0.108 0.203-0.191 0.275-0.11 0.095-0.25 0.153-0.383 0.156h-0.090c-0.828 0-1.58 0.337-2.121 0.879s-0.879 1.294-0.879 2.122 0.337 1.58 0.879 2.121 1.293 0.879 2.121 0.879h0.159c0.11 0.001 0.215 0.028 0.308 0.076 0.128 0.067 0.233 0.174 0.296 0.321 0.024 0.055 0.040 0.111 0.049 0.168-0.020 0.334-0.077 0.454-0.168 0.547l-0.062 0.062c-0.585 0.586-0.878 1.356-0.877 2.122s0.294 1.536 0.881 2.122c0.586 0.585 1.356 0.878 2.122 0.877s1.536-0.294 2.12-0.879l0.047-0.048c0.083-0.080 0.183-0.136 0.288-0.166 0.14-0.039 0.291-0.032 0.434 0.031 0.016 0.006 0.034 0.013 0.052 0.021 0.109 0.041 0.203 0.108 0.275 0.191 0.095 0.11 0.153 0.25 0.156 0.383v0.092c0 0.828 0.337 1.58 0.879 2.121s1.293 0.879 2.121 0.879 1.58-0.337 2.121-0.879 0.879-1.293 0.879-2.121v-0.159c0.001-0.11 0.028-0.215 0.076-0.308 0.067-0.128 0.174-0.233 0.321-0.296 0.055-0.024 0.111-0.040 0.168-0.049 0.334 0.020 0.454 0.077 0.547 0.168l0.062 0.062c0.586 0.585 1.356 0.878 2.122 0.877s1.536-0.294 2.122-0.881c0.585-0.586 0.878-1.356 0.877-2.122s-0.294-1.536-0.879-2.12l-0.048-0.047c-0.080-0.083-0.136-0.183-0.166-0.288-0.039-0.14-0.032-0.291 0.031-0.434zM18.396 9.302c-0.012-0.201-0.038-0.297-0.076-0.382v0.080c0 0.043 0.003 0.084 0.008 0.125 0.021 0.060 0.043 0.119 0.068 0.177 0.004 0.090 0.005 0.091 0.005 0.092 0.249 0.581 0.684 1.030 1.208 1.303 0.371 0.193 0.785 0.298 1.211 0.303h0.18c0.276 0 0.525 0.111 0.707 0.293s0.293 0.431 0.293 0.707-0.111 0.525-0.293 0.707-0.431 0.293-0.707 0.293h-0.090c-0.637 0.003-1.22 0.228-1.675 0.603-0.323 0.266-0.581 0.607-0.75 0.993-0.257 0.582-0.288 1.21-0.127 1.782 0.119 0.423 0.341 0.814 0.652 1.136l0.072 0.073c0.196 0.196 0.294 0.45 0.294 0.707s-0.097 0.512-0.292 0.707c-0.197 0.197-0.451 0.295-0.709 0.295s-0.512-0.097-0.707-0.292l-0.061-0.061c-0.463-0.453-1.040-0.702-1.632-0.752-0.437-0.037-0.882 0.034-1.293 0.212-0.578 0.248-1.027 0.683-1.3 1.206-0.193 0.371-0.298 0.785-0.303 1.211v0.181c0 0.276-0.111 0.525-0.293 0.707s-0.43 0.292-0.706 0.292-0.525-0.111-0.707-0.293-0.293-0.431-0.293-0.707v-0.090c-0.015-0.66-0.255-1.242-0.644-1.692-0.284-0.328-0.646-0.585-1.058-0.744-0.575-0.247-1.193-0.274-1.756-0.116-0.423 0.119-0.814 0.341-1.136 0.652l-0.073 0.072c-0.196 0.196-0.45 0.294-0.707 0.294s-0.512-0.097-0.707-0.292c-0.197-0.197-0.295-0.451-0.295-0.709s0.097-0.512 0.292-0.707l0.061-0.061c0.453-0.463 0.702-1.040 0.752-1.632 0.037-0.437-0.034-0.882-0.212-1.293-0.248-0.578-0.683-1.027-1.206-1.3-0.371-0.193-0.785-0.298-1.211-0.303l-0.18 0.001c-0.276 0-0.525-0.111-0.707-0.293s-0.293-0.431-0.293-0.707 0.111-0.525 0.293-0.707 0.431-0.293 0.707-0.293h0.090c0.66-0.015 1.242-0.255 1.692-0.644 0.328-0.284 0.585-0.646 0.744-1.058 0.247-0.575 0.274-1.193 0.116-1.756-0.119-0.423-0.341-0.814-0.652-1.136l-0.073-0.073c-0.196-0.196-0.294-0.45-0.294-0.707s0.097-0.512 0.292-0.707c0.197-0.197 0.451-0.295 0.709-0.295s0.512 0.097 0.707 0.292l0.061 0.061c0.463 0.453 1.040 0.702 1.632 0.752 0.37 0.032 0.745-0.014 1.101-0.137 0.096-0.012 0.186-0.036 0.266-0.072-0.031 0.001-0.061 0.003-0.089 0.004-0.201 0.012-0.297 0.038-0.382 0.076h0.080c0.043 0 0.084-0.003 0.125-0.008 0.060-0.021 0.119-0.043 0.177-0.068 0.090-0.004 0.091-0.005 0.092-0.005 0.581-0.249 1.030-0.684 1.303-1.208 0.193-0.37 0.298-0.785 0.303-1.21v-0.181c0-0.276 0.111-0.525 0.293-0.707s0.431-0.293 0.707-0.293 0.525 0.111 0.707 0.293 0.293 0.431 0.293 0.707v0.090c0.003 0.637 0.228 1.22 0.603 1.675 0.266 0.323 0.607 0.581 0.996 0.751 0.578 0.255 1.206 0.286 1.778 0.125 0.423-0.119 0.814-0.341 1.136-0.652l0.073-0.072c0.196-0.196 0.45-0.294 0.707-0.294s0.512 0.097 0.707 0.292c0.197 0.197 0.295 0.451 0.295 0.709s-0.097 0.512-0.292 0.707l-0.061 0.061c-0.453 0.463-0.702 1.040-0.752 1.632-0.032 0.37 0.014 0.745 0.137 1.101 0.012 0.095 0.037 0.185 0.072 0.266-0.001-0.032-0.002-0.062-0.004-0.089z",_CoreIcons.settings="M5 10v-7c0-0.552-0.448-1-1-1s-1 0.448-1 1v7c0 0.552 0.448 1 1 1s1-0.448 1-1zM13 21v-9c0-0.552-0.448-1-1-1s-1 0.448-1 1v9c0 0.552 0.448 1 1 1s1-0.448 1-1zM21 12v-9c0-0.552-0.448-1-1-1s-1 0.448-1 1v9c0 0.552 0.448 1 1 1s1-0.448 1-1zM1 15h2v6c0 0.552 0.448 1 1 1s1-0.448 1-1v-6h2c0.552 0 1-0.448 1-1s-0.448-1-1-1h-6c-0.552 0-1 0.448-1 1s0.448 1 1 1zM9 9h6c0.552 0 1-0.448 1-1s-0.448-1-1-1h-2v-4c0-0.552-0.448-1-1-1s-1 0.448-1 1v4h-2c-0.552 0-1 0.448-1 1s0.448 1 1 1zM17 17h2v4c0 0.552 0.448 1 1 1s1-0.448 1-1v-4h2c0.552 0 1-0.448 1-1s-0.448-1-1-1h-6c-0.552 0-1 0.448-1 1s0.448 1 1 1z",_CoreIcons.notAllowed="M23 12c0-3.037-1.232-5.789-3.222-7.778s-4.741-3.222-7.778-3.222-5.789 1.232-7.778 3.222-3.222 4.741-3.222 7.778 1.232 5.789 3.222 7.778 4.741 3.222 7.778 3.222 5.789-1.232 7.778-3.222 3.222-4.741 3.222-7.778zM19.032 17.618l-12.65-12.65c1.54-1.232 3.493-1.968 5.618-1.968 2.486 0 4.734 1.006 6.364 2.636s2.636 3.878 2.636 6.364c0 2.125-0.736 4.078-1.968 5.618zM4.968 6.382l12.65 12.65c-1.54 1.232-3.493 1.968-5.618 1.968-2.486 0-4.734-1.006-6.364-2.636s-2.636-3.878-2.636-6.364c0-2.125 0.736-4.078 1.968-5.618z",_CoreIcons.tick="M19.293 5.293l-10.293 10.293-4.293-4.293c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414l5 5c0.391 0.391 1.024 0.391 1.414 0l11-11c0.391-0.391 0.391-1.024 0-1.414s-1.024-0.391-1.414 0z",_CoreIcons.target="M23 12c0-3.037-1.232-5.789-3.222-7.778s-4.741-3.222-7.778-3.222-5.789 1.232-7.778 3.222-3.222 4.741-3.222 7.778 1.232 5.789 3.222 7.778 4.741 3.222 7.778 3.222 5.789-1.232 7.778-3.222 3.222-4.741 3.222-7.778zM21 12c0 2.486-1.006 4.734-2.636 6.364s-3.878 2.636-6.364 2.636-4.734-1.006-6.364-2.636-2.636-3.878-2.636-6.364 1.006-4.734 2.636-6.364 3.878-2.636 6.364-2.636 4.734 1.006 6.364 2.636 2.636 3.878 2.636 6.364zM19 12c0-1.933-0.785-3.684-2.050-4.95s-3.017-2.050-4.95-2.050-3.684 0.785-4.95 2.050-2.050 3.017-2.050 4.95 0.785 3.684 2.050 4.95 3.017 2.050 4.95 2.050 3.684-0.785 4.95-2.050 2.050-3.017 2.050-4.95zM17 12c0 1.381-0.559 2.63-1.464 3.536s-2.155 1.464-3.536 1.464-2.63-0.559-3.536-1.464-1.464-2.155-1.464-3.536 0.559-2.63 1.464-3.536 2.155-1.464 3.536-1.464 2.63 0.559 3.536 1.464 1.464 2.155 1.464 3.536zM15 12c0-0.828-0.337-1.58-0.879-2.121s-1.293-0.879-2.121-0.879-1.58 0.337-2.121 0.879-0.879 1.293-0.879 2.121 0.337 1.58 0.879 2.121 1.293 0.879 2.121 0.879 1.58-0.337 2.121-0.879 0.879-1.293 0.879-2.121zM13 12c0 0.276-0.111 0.525-0.293 0.707s-0.431 0.293-0.707 0.293-0.525-0.111-0.707-0.293-0.293-0.431-0.293-0.707 0.111-0.525 0.293-0.707 0.431-0.293 0.707-0.293 0.525 0.111 0.707 0.293 0.293 0.431 0.293 0.707z",_CoreIcons.sun="M18 12c0-1.657-0.673-3.158-1.757-4.243s-2.586-1.757-4.243-1.757-3.158 0.673-4.243 1.757-1.757 2.586-1.757 4.243 0.673 3.158 1.757 4.243 2.586 1.757 4.243 1.757 3.158-0.673 4.243-1.757 1.757-2.586 1.757-4.243zM16 12c0 1.105-0.447 2.103-1.172 2.828s-1.723 1.172-2.828 1.172-2.103-0.447-2.828-1.172-1.172-1.723-1.172-2.828 0.447-2.103 1.172-2.828 1.723-1.172 2.828-1.172 2.103 0.447 2.828 1.172 1.172 1.723 1.172 2.828zM11 1v2c0 0.552 0.448 1 1 1s1-0.448 1-1v-2c0-0.552-0.448-1-1-1s-1 0.448-1 1zM11 21v2c0 0.552 0.448 1 1 1s1-0.448 1-1v-2c0-0.552-0.448-1-1-1s-1 0.448-1 1zM3.513 4.927l1.42 1.42c0.391 0.391 1.024 0.391 1.414 0s0.391-1.024 0-1.414l-1.42-1.42c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414zM17.653 19.067l1.42 1.42c0.391 0.391 1.024 0.391 1.414 0s0.391-1.024 0-1.414l-1.42-1.42c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414zM1 13h2c0.552 0 1-0.448 1-1s-0.448-1-1-1h-2c-0.552 0-1 0.448-1 1s0.448 1 1 1zM21 13h2c0.552 0 1-0.448 1-1s-0.448-1-1-1h-2c-0.552 0-1 0.448-1 1s0.448 1 1 1zM4.927 20.487l1.42-1.42c0.391-0.391 0.391-1.024 0-1.414s-1.024-0.391-1.414 0l-1.42 1.42c-0.391 0.391-0.391 1.024 0 1.414s1.024 0.391 1.414 0zM19.067 6.347l1.42-1.42c0.391-0.391 0.391-1.024 0-1.414s-1.024-0.391-1.414 0l-1.42 1.42c-0.391 0.391-0.391 1.024 0 1.414s1.024 0.391 1.414 0z",_CoreIcons.moon="M21.996 12.882c0.022-0.233-0.038-0.476-0.188-0.681-0.325-0.446-0.951-0.544-1.397-0.219-0.95 0.693-2.060 1.086-3.188 1.162-1.368 0.092-2.765-0.283-3.95-1.158-1.333-0.985-2.139-2.415-2.367-3.935s0.124-3.124 1.109-4.456c0.142-0.191 0.216-0.435 0.191-0.691-0.053-0.55-0.542-0.952-1.092-0.898-2.258 0.22-4.314 1.18-5.895 2.651-1.736 1.615-2.902 3.847-3.137 6.386-0.254 2.749 0.631 5.343 2.266 7.311s4.022 3.313 6.772 3.567 5.343-0.631 7.311-2.266 3.313-4.022 3.567-6.772zM19.567 14.674c-0.49 1.363-1.335 2.543-2.416 3.441-1.576 1.309-3.648 2.016-5.848 1.813s-4.108-1.278-5.417-2.854-2.016-3.648-1.813-5.848c0.187-2.032 1.117-3.814 2.507-5.106 0.782-0.728 1.71-1.3 2.731-1.672-0.456 1.264-0.577 2.606-0.384 3.899 0.303 2.023 1.38 3.934 3.156 5.247 1.578 1.167 3.448 1.668 5.272 1.545 0.752-0.050 1.496-0.207 2.21-0.465z",_CoreIcons.login="M15 4h4c0.276 0 0.525 0.111 0.707 0.293s0.293 0.431 0.293 0.707v14c0 0.276-0.111 0.525-0.293 0.707s-0.431 0.293-0.707 0.293h-4c-0.552 0-1 0.448-1 1s0.448 1 1 1h4c0.828 0 1.58-0.337 2.121-0.879s0.879-1.293 0.879-2.121v-14c0-0.828-0.337-1.58-0.879-2.121s-1.293-0.879-2.121-0.879h-4c-0.552 0-1 0.448-1 1s0.448 1 1 1zM12.586 11h-9.586c-0.552 0-1 0.448-1 1s0.448 1 1 1h9.586l-3.293 3.293c-0.391 0.391-0.391 1.024 0 1.414s1.024 0.391 1.414 0l5-5c0.096-0.096 0.168-0.206 0.217-0.324s0.076-0.247 0.076-0.383c0-0.13-0.025-0.261-0.076-0.383-0.049-0.118-0.121-0.228-0.217-0.324l-5-5c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414z",_CoreIcons.logout="M9 20h-4c-0.276 0-0.525-0.111-0.707-0.293s-0.293-0.431-0.293-0.707v-14c0-0.276 0.111-0.525 0.293-0.707s0.431-0.293 0.707-0.293h4c0.552 0 1-0.448 1-1s-0.448-1-1-1h-4c-0.828 0-1.58 0.337-2.121 0.879s-0.879 1.293-0.879 2.121v14c0 0.828 0.337 1.58 0.879 2.121s1.293 0.879 2.121 0.879h4c0.552 0 1-0.448 1-1s-0.448-1-1-1zM18.586 11h-9.586c-0.552 0-1 0.448-1 1s0.448 1 1 1h9.586l-3.293 3.293c-0.391 0.391-0.391 1.024 0 1.414s1.024 0.391 1.414 0l5-5c0.092-0.092 0.166-0.202 0.217-0.324 0.15-0.362 0.078-0.795-0.217-1.090l-5-5c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414z",_CoreIcons.phone="M23 16.92c0.016-0.714-0.236-1.404-0.673-1.943-0.46-0.566-1.129-0.967-1.925-1.080-0.8-0.098-1.695-0.314-2.586-0.646-0.433-0.159-0.893-0.218-1.344-0.174-0.663 0.064-1.307 0.349-1.819 0.855l-0.72 0.72c-1.77-1.117-3.36-2.667-4.583-4.589l0.726-0.726c0.322-0.33 0.563-0.726 0.707-1.156 0.212-0.632 0.214-1.336-0.039-2.011-0.289-0.753-0.518-1.644-0.644-2.595-0.104-0.714-0.456-1.345-0.963-1.804-0.539-0.486-1.256-0.779-2.027-0.771h-2.996c-0.088 0-0.182 0.004-0.273 0.012-0.824 0.075-1.542 0.478-2.033 1.066s-0.758 1.367-0.683 2.199c0.3 3.076 1.365 6.243 3.216 9.102 1.502 2.413 3.648 4.623 6.298 6.306 2.568 1.697 5.684 2.862 9.086 3.231 0.092 0.009 0.191 0.013 0.288 0.013 0.828-0.003 1.578-0.343 2.118-0.887s0.873-1.297 0.87-2.121zM21 16.92v3c0.001 0.28-0.109 0.53-0.29 0.712s-0.429 0.295-0.706 0.296c-3.149-0.336-5.961-1.391-8.263-2.912-2.428-1.543-4.359-3.537-5.702-5.694-1.697-2.62-2.655-5.481-2.924-8.238-0.024-0.268 0.064-0.526 0.229-0.724s0.403-0.33 0.678-0.355l3.088-0.005c0.271-0.003 0.507 0.094 0.687 0.256 0.17 0.154 0.288 0.366 0.323 0.608 0.142 1.072 0.408 2.117 0.757 3.025 0.081 0.216 0.080 0.447 0.010 0.658-0.049 0.145-0.131 0.281-0.242 0.395l-1.262 1.261c-0.324 0.324-0.379 0.814-0.162 1.201 1.584 2.785 3.839 4.957 6.381 6.378 0.397 0.222 0.882 0.144 1.195-0.166l1.27-1.27c0.166-0.164 0.377-0.257 0.598-0.279 0.152-0.015 0.31 0.005 0.459 0.060 1.022 0.381 2.070 0.636 3.034 0.754 0.241 0.034 0.462 0.166 0.615 0.355 0.147 0.181 0.231 0.412 0.226 0.682z",_CoreIcons.message="M22 15v-10c0-0.828-0.337-1.58-0.879-2.121s-1.293-0.879-2.121-0.879h-14c-0.828 0-1.58 0.337-2.121 0.879s-0.879 1.293-0.879 2.121v16c0 0.256 0.098 0.512 0.293 0.707 0.391 0.391 1.024 0.391 1.414 0l3.707-3.707h11.586c0.828 0 1.58-0.337 2.121-0.879s0.879-1.293 0.879-2.121zM20 15c0 0.276-0.111 0.525-0.293 0.707s-0.431 0.293-0.707 0.293h-12c-0.276 0-0.526 0.112-0.707 0.293l-2.293 2.293v-13.586c0-0.276 0.111-0.525 0.293-0.707s0.431-0.293 0.707-0.293h14c0.276 0 0.525 0.111 0.707 0.293s0.293 0.431 0.293 0.707z",_CoreIcons.mail="M3 7.921l8.427 5.899c0.34 0.235 0.795 0.246 1.147 0l8.426-5.899v10.079c0 0.272-0.11 0.521-0.295 0.705s-0.433 0.295-0.705 0.295h-16c-0.272 0-0.521-0.11-0.705-0.295s-0.295-0.433-0.295-0.705zM1 5.983c0 0.010 0 0.020 0 0.030v11.987c0 0.828 0.34 1.579 0.88 2.12s1.292 0.88 2.12 0.88h16c0.828 0 1.579-0.34 2.12-0.88s0.88-1.292 0.88-2.12v-11.988c0-0.010 0-0.020 0-0.030-0.005-0.821-0.343-1.565-0.88-2.102-0.541-0.54-1.292-0.88-2.12-0.88h-16c-0.828 0-1.579 0.34-2.12 0.88-0.537 0.537-0.875 1.281-0.88 2.103zM20.894 5.554l-8.894 6.225-8.894-6.225c0.048-0.096 0.112-0.183 0.188-0.259 0.185-0.185 0.434-0.295 0.706-0.295h16c0.272 0 0.521 0.11 0.705 0.295 0.076 0.076 0.14 0.164 0.188 0.259z",_CoreIcons.clip="M20.733 10.343l-9.19 9.19c-0.977 0.977-2.256 1.465-3.538 1.465s-2.561-0.488-3.538-1.465-1.465-2.256-1.465-3.538 0.488-2.561 1.465-3.538l9.19-9.19c0.586-0.586 1.353-0.879 2.123-0.879s1.536 0.293 2.123 0.879 0.879 1.353 0.879 2.123-0.293 1.536-0.879 2.123l-9.2 9.19c-0.196 0.196-0.451 0.294-0.708 0.294s-0.512-0.098-0.708-0.293-0.293-0.45-0.293-0.708 0.098-0.512 0.293-0.708l8.49-8.48c0.391-0.39 0.391-1.023 0.001-1.414s-1.023-0.391-1.414-0.001l-8.49 8.48c-0.586 0.586-0.879 1.356-0.879 2.122s0.293 1.536 0.879 2.122 1.356 0.879 2.122 0.879 1.536-0.293 2.122-0.879l9.2-9.19c0.977-0.977 1.465-2.258 1.465-3.537s-0.489-2.561-1.465-3.537-2.258-1.465-3.537-1.465-2.561 0.489-3.537 1.465l-9.19 9.19c-1.367 1.367-2.051 3.161-2.051 4.952s0.684 3.585 2.051 4.952 3.161 2.051 4.952 2.051 3.585-0.684 4.952-2.051l9.19-9.19c0.391-0.391 0.391-1.024 0-1.414s-1.024-0.391-1.414 0z",_CoreIcons.map="M7 3.723v13.697l-5 2.857v-13.697zM17 20.277v-13.697l5-2.857v13.696zM15.535 22.885c0.082 0.043 0.17 0.075 0.263 0.094 0.033 0.007 0.067 0.012 0.101 0.015s0.068 0.005 0.102 0.005c-0.001 0.001-0.001 0.001-0.001 0.001s0 0 0.001 0c0.173 0 0.344-0.046 0.496-0.132l0.015-0.009 6.985-3.991c0.32-0.183 0.501-0.518 0.503-0.868v-16c0-0.552-0.448-1-1-1-0.183 0-0.354 0.049-0.496 0.132l-6.535 3.734-7.503-3.752c-0.083-0.042-0.171-0.075-0.264-0.094-0.034-0.007-0.067-0.012-0.101-0.015s-0.068-0.005-0.102-0.005c0.001 0 0.001 0 0.001 0s0 0-0.001 0c-0.173 0-0.344 0.046-0.495 0.132l-0.015 0.008-6.985 3.992c-0.321 0.183-0.502 0.518-0.504 0.868v16c0 0.552 0.448 1 1 1 0.183 0 0.354-0.049 0.496-0.132l6.535-3.734zM15 6.618v13.764l-6-3v-13.764z",_CoreIcons.mapPin="M22 10c0-2.761-1.12-5.263-2.929-7.071s-4.31-2.929-7.071-2.929-5.263 1.12-7.071 2.929-2.929 4.31-2.929 7.071c0 0.569 0.053 1.128 0.15 1.676 0.274 1.548 0.899 3.004 1.682 4.32 2.732 4.591 7.613 7.836 7.613 7.836 0.331 0.217 0.765 0.229 1.109 0 0 0 4.882-3.245 7.613-7.836 0.783-1.316 1.408-2.772 1.682-4.32 0.098-0.548 0.151-1.107 0.151-1.676zM20 10c0 0.444-0.041 0.887-0.119 1.328-0.221 1.25-0.737 2.478-1.432 3.646-1.912 3.214-5.036 5.747-6.369 6.74-1.398-0.916-4.588-3.477-6.53-6.74-0.695-1.168-1.211-2.396-1.432-3.646-0.077-0.441-0.118-0.884-0.118-1.328 0-2.209 0.894-4.208 2.343-5.657s3.448-2.343 5.657-2.343 4.208 0.894 5.657 2.343 2.343 3.448 2.343 5.657zM16 10c0-1.104-0.449-2.106-1.172-2.828s-1.724-1.172-2.828-1.172-2.106 0.449-2.828 1.172-1.172 1.724-1.172 2.828 0.449 2.106 1.172 2.828 1.724 1.172 2.828 1.172 2.106-0.449 2.828-1.172 1.172-1.724 1.172-2.828zM14 10c0 0.553-0.223 1.051-0.586 1.414s-0.861 0.586-1.414 0.586-1.051-0.223-1.414-0.586-0.586-0.861-0.586-1.414 0.223-1.051 0.586-1.414 0.861-0.586 1.414-0.586 1.051 0.223 1.414 0.586 0.586 0.861 0.586 1.414z",_CoreIcons.thumbDown="M11 15c0-0.552-0.448-1-1-1h-5.679c-0.065-0.002-0.153-0.011-0.153-0.011-0.273-0.041-0.502-0.188-0.655-0.396s-0.225-0.47-0.184-0.742l1.38-8.998c0.037-0.239 0.156-0.448 0.325-0.6 0.179-0.161 0.415-0.256 0.686-0.253h10.28v9.788l-3.608 8.118c-0.307-0.098-0.582-0.268-0.806-0.492-0.363-0.363-0.586-0.861-0.586-1.414zM9 16v3c0 1.104 0.449 2.106 1.172 2.828s1.724 1.172 2.828 1.172c0.405 0 0.754-0.241 0.914-0.594l4-9c0.060-0.134 0.087-0.275 0.086-0.406v-11c0-0.552-0.448-1-1-1h-11.28c-0.767-0.009-1.482 0.281-2.021 0.763-0.505 0.452-0.857 1.076-0.967 1.783l-1.38 9.002c-0.125 0.82 0.096 1.614 0.55 2.231s1.147 1.063 1.965 1.187c0.165 0.025 0.333 0.037 0.492 0.034zM17 3h2.67c0.361-0.006 0.674 0.119 0.912 0.332 0.213 0.191 0.364 0.45 0.418 0.746v6.787c-0.037 0.34-0.208 0.63-0.455 0.833-0.235 0.194-0.537 0.306-0.861 0.301l-2.684 0.001c-0.552 0-1 0.448-1 1s0.448 1 1 1h2.656c0.81 0.012 1.569-0.27 2.16-0.756 0.622-0.511 1.059-1.251 1.176-2.11 0.005-0.040 0.008-0.087 0.008-0.134v-7c0-0.042-0.003-0.089-0.009-0.137-0.111-0.803-0.505-1.51-1.075-2.020-0.6-0.537-1.397-0.858-2.246-0.842h-2.67c-0.552 0-1 0.448-1 1s0.448 1 1 1z",_CoreIcons.thumbUp="M13 9c0 0.552 0.448 1 1 1h5.679c0.065 0.002 0.153 0.011 0.153 0.011 0.273 0.041 0.502 0.188 0.655 0.396s0.225 0.47 0.184 0.742l-1.38 8.998c-0.037 0.239-0.156 0.448-0.325 0.6-0.18 0.161-0.415 0.256-0.686 0.253h-10.28v-9.788l3.608-8.118c0.307 0.098 0.582 0.268 0.806 0.492 0.363 0.363 0.586 0.861 0.586 1.414zM15 8v-3c0-1.104-0.449-2.106-1.172-2.828s-1.724-1.172-2.828-1.172c-0.405 0-0.754 0.241-0.914 0.594l-4 9c-0.060 0.134-0.087 0.275-0.086 0.406v11c0 0.552 0.448 1 1 1h11.28c0.767 0.009 1.482-0.281 2.021-0.763 0.505-0.452 0.857-1.076 0.967-1.783l1.38-9.002c0.125-0.82-0.096-1.614-0.55-2.231s-1.147-1.063-1.965-1.187c-0.165-0.025-0.333-0.037-0.492-0.034zM7 21h-3c-0.276 0-0.525-0.111-0.707-0.293s-0.293-0.431-0.293-0.707v-7c0-0.276 0.111-0.525 0.293-0.707s0.431-0.293 0.707-0.293h3c0.552 0 1-0.448 1-1s-0.448-1-1-1h-3c-0.828 0-1.58 0.337-2.121 0.879s-0.879 1.293-0.879 2.121v7c0 0.828 0.337 1.58 0.879 2.121s1.293 0.879 2.121 0.879h3c0.552 0 1-0.448 1-1s-0.448-1-1-1z",_CoreIcons.spinner="M24 12c-0.030-1.567-0.37-3.129-0.998-4.558-0.626-1.43-1.534-2.725-2.649-3.795s-2.436-1.918-3.867-2.476c-1.43-0.561-2.967-0.829-4.486-0.796-1.519 0.030-3.031 0.36-4.414 0.969-1.384 0.607-2.638 1.488-3.673 2.568s-1.855 2.36-2.395 3.745c-0.542 1.384-0.8 2.872-0.767 4.342 0.030 1.471 0.351 2.933 0.941 4.27 0.588 1.338 1.441 2.551 2.487 3.552s2.284 1.793 3.624 2.314c1.339 0.523 2.776 0.771 4.199 0.739 1.423-0.030 2.835-0.341 4.127-0.912 1.293-0.569 2.464-1.394 3.43-2.406s1.731-2.209 2.233-3.502c0.305-0.784 0.513-1.603 0.622-2.433 0.029 0.002 0.059 0.003 0.088 0.003 0.828 0 1.5-0.672 1.5-1.5 0-0.042-0.002-0.084-0.006-0.125h0.006zM21.617 15.983c-0.55 1.247-1.347 2.377-2.324 3.309s-2.133 1.668-3.381 2.151c-1.248 0.485-2.585 0.714-3.911 0.682-1.327-0.030-2.639-0.322-3.84-0.855-1.201-0.531-2.289-1.301-3.187-2.243s-1.606-2.057-2.070-3.259c-0.466-1.202-0.685-2.489-0.653-3.768 0.031-1.279 0.312-2.541 0.826-3.696 0.512-1.155 1.254-2.202 2.162-3.066s1.981-1.544 3.138-1.989c1.156-0.447 2.394-0.656 3.624-0.624 1.23 0.031 2.443 0.303 3.552 0.798 1.11 0.493 2.115 1.207 2.944 2.081s1.481 1.905 1.908 3.016c0.428 1.111 0.628 2.298 0.596 3.48h0.006c-0.003 0.041-0.006 0.083-0.006 0.125 0 0.774 0.586 1.41 1.338 1.491-0.146 0.816-0.387 1.613-0.721 2.367z",_CoreIcons.file="M17.586 7h-2.586v-2.586zM20.707 7.293l-6-6c-0.092-0.092-0.202-0.166-0.324-0.217s-0.253-0.076-0.383-0.076h-8c-0.828 0-1.58 0.337-2.121 0.879s-0.879 1.293-0.879 2.121v16c0 0.828 0.337 1.58 0.879 2.121s1.293 0.879 2.121 0.879h12c0.828 0 1.58-0.337 2.121-0.879s0.879-1.293 0.879-2.121v-12c0-0.276-0.112-0.526-0.293-0.707zM13 3v5c0 0.552 0.448 1 1 1h5v11c0 0.276-0.111 0.525-0.293 0.707s-0.431 0.293-0.707 0.293h-12c-0.276 0-0.525-0.111-0.707-0.293s-0.293-0.431-0.293-0.707v-16c0-0.276 0.111-0.525 0.293-0.707s0.431-0.293 0.707-0.293zM16 12h-8c-0.552 0-1 0.448-1 1s0.448 1 1 1h8c0.552 0 1-0.448 1-1s-0.448-1-1-1zM16 16h-8c-0.552 0-1 0.448-1 1s0.448 1 1 1h8c0.552 0 1-0.448 1-1s-0.448-1-1-1zM10 8h-2c-0.552 0-1 0.448-1 1s0.448 1 1 1h2c0.552 0 1-0.448 1-1s-0.448-1-1-1z",_CoreIcons.image="M5 2c-0.828 0-1.58 0.337-2.121 0.879s-0.879 1.293-0.879 2.121v14c0 0.828 0.337 1.58 0.879 2.121s1.293 0.879 2.121 0.879h14c0.828 0 1.58-0.337 2.121-0.879s0.879-1.293 0.879-2.121v-14c0-0.828-0.337-1.58-0.879-2.121s-1.293-0.879-2.121-0.879zM11 8.5c0-0.69-0.281-1.316-0.732-1.768s-1.078-0.732-1.768-0.732-1.316 0.281-1.768 0.732-0.732 1.078-0.732 1.768 0.281 1.316 0.732 1.768 1.078 0.732 1.768 0.732 1.316-0.281 1.768-0.732 0.732-1.078 0.732-1.768zM9 8.5c0 0.138-0.055 0.262-0.146 0.354s-0.216 0.146-0.354 0.146-0.262-0.055-0.354-0.146-0.146-0.216-0.146-0.354 0.055-0.262 0.146-0.354 0.216-0.146 0.354-0.146 0.262 0.055 0.354 0.146 0.146 0.216 0.146 0.354zM7.414 20l8.586-8.586 4 4v3.586c0 0.276-0.111 0.525-0.293 0.707s-0.431 0.293-0.707 0.293zM20 12.586l-3.293-3.293c-0.391-0.391-1.024-0.391-1.414 0l-10.644 10.644c-0.135-0.050-0.255-0.129-0.356-0.23-0.182-0.182-0.293-0.431-0.293-0.707v-14c0-0.276 0.111-0.525 0.293-0.707s0.431-0.293 0.707-0.293h14c0.276 0 0.525 0.111 0.707 0.293s0.293 0.431 0.293 0.707z",_CoreIcons.audio="M8 18c0 0.553-0.223 1.051-0.586 1.414s-0.861 0.586-1.414 0.586-1.051-0.223-1.414-0.586-0.586-0.861-0.586-1.414 0.223-1.051 0.586-1.414 0.861-0.586 1.414-0.586 1.051 0.223 1.414 0.586 0.586 0.861 0.586 1.414zM22 16v-13c0-0.050-0.004-0.107-0.014-0.164-0.091-0.545-0.606-0.913-1.151-0.822l-12 2c-0.476 0.081-0.835 0.492-0.835 0.986v9.535c-0.588-0.34-1.272-0.535-2-0.535-1.104 0-2.106 0.449-2.828 1.172s-1.172 1.724-1.172 2.828 0.449 2.106 1.172 2.828 1.724 1.172 2.828 1.172 2.106-0.449 2.828-1.172 1.172-1.724 1.172-2.828v-12.153l10-1.667v8.355c-0.588-0.34-1.272-0.535-2-0.535-1.104 0-2.106 0.449-2.828 1.172s-1.172 1.724-1.172 2.828 0.449 2.106 1.172 2.828 1.724 1.172 2.828 1.172 2.106-0.449 2.828-1.172 1.172-1.724 1.172-2.828zM20 16c0 0.553-0.223 1.051-0.586 1.414s-0.861 0.586-1.414 0.586-1.051-0.223-1.414-0.586-0.586-0.861-0.586-1.414 0.223-1.051 0.586-1.414 0.861-0.586 1.414-0.586 1.051 0.223 1.414 0.586 0.586 0.861 0.586 1.414z",_CoreIcons.video="M16 11h-8v-8h8zM8 13h8v8h-8zM6 6h-3v-1.82c0-0.326 0.131-0.62 0.346-0.834s0.508-0.346 0.834-0.346h1.82zM3 8h3v3h-3zM6 16h-3v-3h3zM3 18h3v3h-1.82c-0.326 0-0.62-0.131-0.834-0.346s-0.346-0.508-0.346-0.834zM21 16h-3v-3h3zM18 18h3v1.82c0 0.326-0.131 0.62-0.346 0.834s-0.508 0.346-0.834 0.346h-1.82zM21 6h-3v-3h1.82c0.326 0 0.62 0.131 0.834 0.346s0.346 0.508 0.346 0.834zM23 7v-2.82c0-0.878-0.357-1.674-0.931-2.249s-1.371-0.931-2.249-0.931h-15.64c-0.878 0-1.674 0.357-2.249 0.931s-0.931 1.371-0.931 2.249v15.64c0 0.878 0.357 1.674 0.931 2.249s1.371 0.931 2.249 0.931h15.64c0.878 0 1.674-0.357 2.249-0.931s0.931-1.371 0.931-2.249zM18 8h3v3h-3z",_CoreIcons.mic="M12 2c0.553 0 1.051 0.223 1.414 0.586s0.586 0.861 0.586 1.414v8c0 0.553-0.223 1.051-0.586 1.414s-0.861 0.586-1.414 0.586-1.051-0.223-1.414-0.586-0.586-0.861-0.586-1.414v-8c0-0.553 0.223-1.051 0.586-1.414s0.861-0.586 1.414-0.586zM12 0c-1.104 0-2.106 0.449-2.828 1.172s-1.172 1.724-1.172 2.828v8c0 1.104 0.449 2.106 1.172 2.828s1.724 1.172 2.828 1.172 2.106-0.449 2.828-1.172 1.172-1.724 1.172-2.828v-8c0-1.104-0.449-2.106-1.172-2.828s-1.724-1.172-2.828-1.172zM8 24h8c0.552 0 1-0.448 1-1s-0.448-1-1-1h-3v-2.062c1.809-0.226 3.432-1.056 4.657-2.281 1.446-1.447 2.343-3.448 2.343-5.657v-2c0-0.552-0.448-1-1-1s-1 0.448-1 1v2c0 1.657-0.67 3.156-1.757 4.243s-2.586 1.757-4.243 1.757-3.156-0.67-4.243-1.757-1.757-2.586-1.757-4.243v-2c0-0.552-0.448-1-1-1s-1 0.448-1 1v2c0 2.209 0.897 4.21 2.343 5.657 1.225 1.225 2.847 2.055 4.657 2.281v2.062h-3c-0.552 0-1 0.448-1 1s0.448 1 1 1z",_CoreIcons.play="M5.541 2.159c-0.153-0.1-0.34-0.159-0.541-0.159-0.552 0-1 0.448-1 1v18c-0.001 0.182 0.050 0.372 0.159 0.541 0.299 0.465 0.917 0.599 1.382 0.3l14-9c0.114-0.072 0.219-0.174 0.3-0.3 0.299-0.465 0.164-1.083-0.3-1.382zM6 4.832l11.151 7.168-11.151 7.168z",_CoreIcons.pause="M6 3c-0.552 0-1 0.448-1 1v16c0 0.552 0.448 1 1 1h4c0.552 0 1-0.448 1-1v-16c0-0.552-0.448-1-1-1zM7 5h2v14h-2zM14 3c-0.552 0-1 0.448-1 1v16c0 0.552 0.448 1 1 1h4c0.552 0 1-0.448 1-1v-16c0-0.552-0.448-1-1-1zM15 5h2v14h-2z",_CoreIcons.stop="M18,18H6V6H18V18Z",_CoreIcons.volumeOn="M10 7.081v9.839l-3.375-2.7c-0.17-0.137-0.388-0.22-0.625-0.22h-3v-4h3c0.218 0.001 0.439-0.071 0.625-0.219zM10.375 4.219l-4.726 3.781h-3.649c-0.552 0-1 0.448-1 1v6c0 0.552 0.448 1 1 1h3.649l4.726 3.781c0.431 0.345 1.061 0.275 1.406-0.156 0.148-0.185 0.22-0.407 0.219-0.625v-14c0-0.552-0.448-1-1-1-0.237 0-0.455 0.083-0.625 0.219zM18.363 5.637c1.757 1.758 2.635 4.059 2.635 6.364 0 2.304-0.878 4.605-2.635 6.362-0.39 0.391-0.39 1.024 0 1.414s1.024 0.39 1.414 0c2.147-2.147 3.22-4.963 3.221-7.776s-1.074-5.63-3.221-7.778c-0.39-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414zM14.833 9.167c0.781 0.781 1.171 1.803 1.171 2.828s-0.39 2.047-1.171 2.828c-0.39 0.391-0.39 1.024 0 1.414s1.024 0.39 1.414 0c1.171-1.171 1.757-2.708 1.757-4.242s-0.586-3.071-1.757-4.242c-0.39-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414z",_CoreIcons.volumeOff="M10 7.081v9.839l-3.375-2.7c-0.17-0.137-0.388-0.22-0.625-0.22h-3v-4h3c0.218 0.001 0.439-0.071 0.625-0.219zM10.375 4.219l-4.726 3.781h-3.649c-0.552 0-1 0.448-1 1v6c0 0.552 0.448 1 1 1h3.649l4.726 3.781c0.431 0.345 1.061 0.275 1.406-0.156 0.148-0.185 0.22-0.407 0.219-0.625v-14c0-0.552-0.448-1-1-1-0.237 0-0.455 0.083-0.625 0.219zM16.293 9.707l2.293 2.293-2.293 2.293c-0.391 0.391-0.391 1.024 0 1.414s1.024 0.391 1.414 0l2.293-2.293 2.293 2.293c0.391 0.391 1.024 0.391 1.414 0s0.391-1.024 0-1.414l-2.293-2.293 2.293-2.293c0.391-0.391 0.391-1.024 0-1.414s-1.024-0.391-1.414 0l-2.293 2.293-2.293-2.293c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414z",_CoreIcons.alignLeft="M3,3H21V5H3V3M3,7H15V9H3V7M3,11H21V13H3V11M3,15H15V17H3V15M3,19H21V21H3V19Z",_CoreIcons.alignCenter="M3,3H21V5H3V3M7,7H17V9H7V7M3,11H21V13H3V11M7,15H17V17H7V15M3,19H21V21H3V19Z",_CoreIcons.alignRight="M3,3H21V5H3V3M9,7H21V9H9V7M3,11H21V13H3V11M9,15H21V17H9V15M3,19H21V21H3V19Z",_CoreIcons.alignJustify="M3,3H21V5H3V3M3,7H21V9H3V7M3,11H21V13H3V11M3,15H21V17H3V15M3,19H21V21H3V19Z",_CoreIcons.formatBold="M13.5,15.5H10V12.5H13.5A1.5,1.5 0 0,1 15,14A1.5,1.5 0 0,1 13.5,15.5M10,6.5H13A1.5,1.5 0 0,1 14.5,8A1.5,1.5 0 0,1 13,9.5H10M15.6,10.79C16.57,10.11 17.25,9 17.25,8C17.25,5.74 15.5,4 13.25,4H7V18H14.04C16.14,18 17.75,16.3 17.75,14.21C17.75,12.69 16.89,11.39 15.6,10.79Z",_CoreIcons.formatItalic="M10,4V7H12.21L8.79,15H6V18H14V15H11.79L15.21,7H18V4H10Z",_CoreIcons.formatUnderline="M5,21H19V19H5V21M12,17A6,6 0 0,0 18,11V3H15.5V11A3.5,3.5 0 0,1 12,14.5A3.5,3.5 0 0,1 8.5,11V3H6V11A6,6 0 0,0 12,17Z",_CoreIcons.formatStrikethrough="M7.2 9.8C6 7.5 7.7 4.8 10.1 4.3C13.2 3.3 17.7 4.7 17.6 8.5H14.6C14.6 8.2 14.5 7.9 14.5 7.7C14.3 7.1 13.9 6.8 13.3 6.6C12.5 6.3 11.2 6.4 10.5 6.9C9 8.2 10.4 9.5 12 10H7.4C7.3 9.9 7.3 9.8 7.2 9.8M21 13V11H3V13H12.6C12.8 13.1 13 13.1 13.2 13.2C13.8 13.5 14.3 13.7 14.5 14.3C14.6 14.7 14.7 15.2 14.5 15.6C14.3 16.1 13.9 16.3 13.4 16.5C11.6 17 9.4 16.3 9.5 14.1H6.5C6.4 16.7 8.6 18.5 11 18.8C14.8 19.6 19.3 17.2 17.3 12.9L21 13Z",_CoreIcons.formatClear="M6,5V5.18L8.82,8H11.22L10.5,9.68L12.6,11.78L14.21,8H20V5H6M3.27,5L2,6.27L8.97,13.24L6.5,19H9.5L11.07,15.34L16.73,21L18,19.73L3.55,5.27L3.27,5Z",_CoreIcons.formatIndentDecrease="M11,13H21V11H11M11,9H21V7H11M3,3V5H21V3M3,21H21V19H3M3,12L7,16V8M11,17H21V15H11V17Z",_CoreIcons.formatIndentIncrease="M11,13H21V11H11M11,9H21V7H11M3,3V5H21V3M11,17H21V15H11M3,8V16L7,12M3,21H21V19H3V21Z",_CoreIcons.formatListBullet="M7,5H21V7H7V5M7,13V11H21V13H7M4,4.5A1.5,1.5 0 0,1 5.5,6A1.5,1.5 0 0,1 4,7.5A1.5,1.5 0 0,1 2.5,6A1.5,1.5 0 0,1 4,4.5M4,10.5A1.5,1.5 0 0,1 5.5,12A1.5,1.5 0 0,1 4,13.5A1.5,1.5 0 0,1 2.5,12A1.5,1.5 0 0,1 4,10.5M7,19V17H21V19H7M4,16.5A1.5,1.5 0 0,1 5.5,18A1.5,1.5 0 0,1 4,19.5A1.5,1.5 0 0,1 2.5,18A1.5,1.5 0 0,1 4,16.5Z",_CoreIcons.formatListNumber="M7,13V11H21V13H7M7,19V17H21V19H7M7,7V5H21V7H7M3,8V5H2V4H4V8H3M2,17V16H5V20H2V19H4V18.5H3V17.5H4V17H2M4.25,10A0.75,0.75 0 0,1 5,10.75C5,10.95 4.92,11.14 4.79,11.27L3.12,13H5V14H2V13.08L4,11H2V10H4.25Z",_CoreIcons.formatText="M18.5,4L19.66,8.35L18.7,8.61C18.25,7.74 17.79,6.87 17.26,6.43C16.73,6 16.11,6 15.5,6H13V16.5C13,17 13,17.5 13.33,17.75C13.67,18 14.33,18 15,18V19H9V18C9.67,18 10.33,18 10.67,17.75C11,17.5 11,17 11,16.5V6H8.5C7.89,6 7.27,6 6.74,6.43C6.21,6.87 5.75,7.74 5.3,8.61L4.34,8.35L5.5,4H18.5Z",_CoreIcons.formatFill="M19,11.5C19,11.5 17,13.67 17,15A2,2 0 0,0 19,17A2,2 0 0,0 21,15C21,13.67 19,11.5 19,11.5M5.21,10L10,5.21L14.79,10M16.56,8.94L7.62,0L6.21,1.41L8.59,3.79L3.44,8.94C2.85,9.5 2.85,10.47 3.44,11.06L8.94,16.56C9.23,16.85 9.62,17 10,17C10.38,17 10.77,16.85 11.06,16.56L16.56,11.06C17.15,10.47 17.15,9.5 16.56,8.94Z",_CoreIcons.formatHilight="M4,17L6.75,14.25L6.72,14.23C6.14,13.64 6.14,12.69 6.72,12.11L11.46,7.37L15.7,11.61L10.96,16.35C10.39,16.93 9.46,16.93 8.87,16.37L8.24,17H4M15.91,2.91C16.5,2.33 17.45,2.33 18.03,2.91L20.16,5.03C20.74,5.62 20.74,6.57 20.16,7.16L16.86,10.45L12.62,6.21L15.91,2.91Z",_CoreIcons.formatParagraph="M13,4A4,4 0 0,1 17,8A4,4 0 0,1 13,12H11V18H9V4H13M13,10A2,2 0 0,0 15,8A2,2 0 0,0 13,6H11V10H13Z",_CoreIcons.formatCommentBlock="M9,22A1,1 0 0,1 8,21V18H4A2,2 0 0,1 2,16V4C2,2.89 2.9,2 4,2H20A2,2 0 0,1 22,4V16A2,2 0 0,1 20,18H13.9L10.2,21.71C10,21.9 9.75,22 9.5,22V22H9M10,16V19.08L13.08,16H20V4H4V16H10M6,7H18V9H6V7M6,11H15V13H6V11Z",_CoreIcons.formatQuoteBlock="M10,7L8,11H11V17H5V11L7,7H10M18,7L16,11H19V17H13V11L15,7H18Z",_CoreIcons.formatCodeBlock="M5.59 3.41L7 4.82L3.82 8L7 11.18L5.59 12.6L1 8L5.59 3.41M11.41 3.41L16 8L11.41 12.6L10 11.18L13.18 8L10 4.82L11.41 3.41M22 6V18C22 19.11 21.11 20 20 20H4C2.9 20 2 19.11 2 18V14H4V18H20V6H17.03V4H20C21.11 4 22 4.89 22 6Z",_CoreIcons.chartColumn="M22,21H2V3H4V19H6V10H10V19H12V6H16V19H18V14H22V21Z",_CoreIcons.chartBar="M3 2v20h18v-2h-16v-2h9v-4h-9v-2h13v-4h-13v-2h5v-4h-7z",_CoreIcons.chartLine="M16,11.78L20.24,4.45L21.97,5.45L16.74,14.5L10.23,10.75L5.46,19H22V21H2V3H4V17.54L9.5,8L16,11.78Z",_CoreIcons.chartRadar="M12,5L19.6,10.5L16.7,19.4H7.3L4.4,10.5L12,5M12,2.5L2,9.8L5.8,21.5H18.1L22,9.8L12,2.5Z",_CoreIcons.chartPie="M11,2V22C5.9,21.5 2,17.2 2,12C2,6.8 5.9,2.5 11,2M13,2V11H22C21.5,6.2 17.8,2.5 13,2M13,13V22C17.7,21.5 21.5,17.8 22,13H13Z",_CoreIcons.chartLineStacked="M17.45,15.18L22,6.81V19L22,21H2V3H4V15.54L4,19H4.31L6,19H6.57L10.96,11.44L17.45,15.18M22,3L21.97,3.45L17,11L10,6L6,12V3H22Z",_CoreIcons.chartBarStacked="M3 2v20h18v-2h-16v-2h2v-4h-2v-2h3v-4h-3v-2h2v-4h-4zM10 6v-4h-2v4h2zM18 12v-4h-3v4h3zM9 8v4h5v-4h-5zM14 18v-4h-2v4h2zM8 14v4h3v-4h-3z",_CoreIcons.chartColumnStacked="M22,21H2V3H4V19H6V17H10V19H12V16H16V19H18V17H22V21M18,14H22V16H18V14M12,6H16V9H12V6M16,15H12V10H16V15M6,10H10V12H6V10M10,16H6V13H10V16Z",_CoreIcons.chartActivityScatter="M2,2H4V20H22V22H2V2M9,10A3,3 0 0,1 12,13A3,3 0 0,1 9,16A3,3 0 0,1 6,13A3,3 0 0,1 9,10M13,2A3,3 0 0,1 16,5A3,3 0 0,1 13,8A3,3 0 0,1 10,5A3,3 0 0,1 13,2M18,12A3,3 0 0,1 21,15A3,3 0 0,1 18,18A3,3 0 0,1 15,15A3,3 0 0,1 18,12Z",_CoreIcons.chartActivityCalendar="M2,4V6H4V4H2M20,4V6H22V4H20M2,7V9H4V7H2M5,7V9H7V7H5M14,7V9H16V7H14M17,7V9H19V7H17M20,7V9H22V7H20M2,10V12H4V10H2M5,10V12H7V10H5M8,10V12H10V10H8M11,10V12H13V10H11M14,10V12H16V10H14M17,10V12H19V10H17M20,10V12H22V10H20M2,13V15H4V13H2M5,13V15H7V13H5M8,13V15H10V13H8M11,13V15H13V13H11M14,13V15H16V13H14M17,13V15H19V13H17M20,13V15H22V13H20M5",_CoreIcons.palette="M12,22A10,10 0 0,1 2,12A10,10 0 0,1 12,2C17.5,2 22,6 22,11A6,6 0 0,1 16,17H14.2C13.9,17 13.7,17.2 13.7,17.5C13.7,17.6 13.8,17.7 13.8,17.8C14.2,18.3 14.4,18.9 14.4,19.5C14.5,20.9 13.4,22 12,22M12,4A8,8 0 0,0 4,12A8,8 0 0,0 12,20C12.3,20 12.5,19.8 12.5,19.5C12.5,19.3 12.4,19.2 12.4,19.1C12,18.6 11.8,18.1 11.8,17.5C11.8,16.1 12.9,15 14.3,15H16A4,4 0 0,0 20,11C20,7.1 16.4,4 12,4M6.5,10C7.3,10 8,10.7 8,11.5C8,12.3 7.3,13 6.5,13C5.7,13 5,12.3 5,11.5C5,10.7 5.7,10 6.5,10M9.5,6C10.3,6 11,6.7 11,7.5C11,8.3 10.3,9 9.5,9C8.7,9 8,8.3 8,7.5C8,6.7 8.7,6 9.5,6M14.5,6C15.3,6 16,6.7 16,7.5C16,8.3 15.3,9 14.5,9C13.7,9 13,8.3 13,7.5C13,6.7 13.7,6 14.5,6M17.5,10C18.3,10 19,10.7 19,11.5C19,12.3 18.3,13 17.5,13C16.7,13 16,12.3 16,11.5C16,10.7 16.7,10 17.5,10Z",_CoreIcons.widget="M16.7 4.5L19.5 7.3L16.7 10.1L13.9 7.3L16.7 4.5M9 5V9H5V5H9M19 15V19H15V15H19M16.7 1.7L11 7.3L16.7 13H13V21H21V13H16.7L22.3 7.3L16.7 1.7M11 3H3V11H11V3M9 15V19H5V15H9M11 13H3V21H11V13Z",_CoreIcons.checkboxOff="M19,3H5C3.89,3 3,3.89 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V5C21,3.89 20.1,3 19,3M19,5V19H5V5H19Z",_CoreIcons.checkboxOn="M10,17L5,12L6.41,10.58L10,14.17L17.59,6.58L19,8M19,3H5C3.89,3 3,3.89 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V5C21,3.89 20.1,3 19,3Z",_CoreIcons.checkboxInt="M19,3H5A2,2 0 0,0 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V5A2,2 0 0,0 19,3M19,19H5V5H19V19M17,17H7V7H17V17Z",_CoreIcons.radioOff="M12,20A8,8 0 0,1 4,12A8,8 0 0,1 12,4A8,8 0 0,1 20,12A8,8 0 0,1 12,20M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2Z",_CoreIcons.radioOn="M12,20A8,8 0 0,1 4,12A8,8 0 0,1 12,4A8,8 0 0,1 20,12A8,8 0 0,1 12,20M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2M12,7A5,5 0 0,0 7,12A5,5 0 0,0 12,17A5,5 0 0,0 17,12A5,5 0 0,0 12,7Z",_CoreIcons.colorSwatch="M16 14V12H17.61C17.85 12.71 18 13.39 18 14H16M15.58 8C15.12 7.29 14.65 6.61 14.2 6H14V8H15.58M16 12V10H14V12H16M16 8.68V10H16.74C16.5 9.56 16.26 9.11 16 8.68M12 16V14H14V12H12V10H14V8H12V6H14V5.73C12.9 4.26 12 3.25 12 3.25S6 10 6 14C6 17.31 8.69 20 12 20V18H14V16H12M14 19.65C14.75 19.39 15.42 19 16 18.46V18H14V19.65M14 16H16V14H14V16M16 18H16.46C17 17.42 17.39 16.75 17.65 16H16V18Z",_CoreIcons.colorPicker="M19.35,11.72L17.22,13.85L15.81,12.43L8.1,20.14L3.5,22L2,20.5L3.86,15.9L11.57,8.19L10.15,6.78L12.28,4.65L19.35,11.72M16.76,3C17.93,1.83 19.83,1.83 21,3C22.17,4.17 22.17,6.07 21,7.24L19.08,9.16L14.84,4.92L16.76,3M5.56,17.03L4.5,19.5L6.97,18.44L14.4,11L13,9.6L5.56,17.03Z",_CoreIcons.info="M23 12c0-3.037-1.232-5.789-3.222-7.778s-4.741-3.222-7.778-3.222-5.789 1.232-7.778 3.222-3.222 4.741-3.222 7.778 1.232 5.789 3.222 7.778 4.741 3.222 7.778 3.222 5.789-1.232 7.778-3.222 3.222-4.741 3.222-7.778zM21 12c0 2.486-1.006 4.734-2.636 6.364s-3.878 2.636-6.364 2.636-4.734-1.006-6.364-2.636-2.636-3.878-2.636-6.364 1.006-4.734 2.636-6.364 3.878-2.636 6.364-2.636 4.734 1.006 6.364 2.636 2.636 3.878 2.636 6.364zM13 16v-4c0-0.552-0.448-1-1-1s-1 0.448-1 1v4c0 0.552 0.448 1 1 1s1-0.448 1-1zM12 9c0.552 0 1-0.448 1-1s-0.448-1-1-1-1 0.448-1 1 0.448 1 1 1z",_CoreIcons.alert="M23 12c0-3.037-1.232-5.789-3.222-7.778s-4.741-3.222-7.778-3.222-5.789 1.232-7.778 3.222-3.222 4.741-3.222 7.778 1.232 5.789 3.222 7.778 4.741 3.222 7.778 3.222 5.789-1.232 7.778-3.222 3.222-4.741 3.222-7.778zM21 12c0 2.486-1.006 4.734-2.636 6.364s-3.878 2.636-6.364 2.636-4.734-1.006-6.364-2.636-2.636-3.878-2.636-6.364 1.006-4.734 2.636-6.364 3.878-2.636 6.364-2.636 4.734 1.006 6.364 2.636 2.636 3.878 2.636 6.364zM11 8v4c0 0.552 0.448 1 1 1s1-0.448 1-1v-4c0-0.552-0.448-1-1-1s-1 0.448-1 1zM12 17c0.552 0 1-0.448 1-1s-0.448-1-1-1-1 0.448-1 1 0.448 1 1 1z",_CoreIcons.error="M23 12c0-3.037-1.232-5.789-3.222-7.778s-4.741-3.222-7.778-3.222-5.789 1.232-7.778 3.222-3.222 4.741-3.222 7.778 1.232 5.789 3.222 7.778 4.741 3.222 7.778 3.222 5.789-1.232 7.778-3.222 3.222-4.741 3.222-7.778zM21 12c0 2.486-1.006 4.734-2.636 6.364s-3.878 2.636-6.364 2.636-4.734-1.006-6.364-2.636-2.636-3.878-2.636-6.364 1.006-4.734 2.636-6.364 3.878-2.636 6.364-2.636 4.734 1.006 6.364 2.636 2.636 3.878 2.636 6.364zM8.293 9.707l2.293 2.293-2.293 2.293c-0.391 0.391-0.391 1.024 0 1.414s1.024 0.391 1.414 0l2.293-2.293 2.293 2.293c0.391 0.391 1.024 0.391 1.414 0s0.391-1.024 0-1.414l-2.293-2.293 2.293-2.293c0.391-0.391 0.391-1.024 0-1.414s-1.024-0.391-1.414 0l-2.293 2.293-2.293-2.293c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414z",_CoreIcons.success="M21 11.080v0.92c-0.001 2.485-1.009 4.733-2.64 6.362s-3.88 2.634-6.365 2.632-4.734-1.009-6.362-2.64-2.634-3.879-2.633-6.365 1.009-4.733 2.64-6.362 3.88-2.634 6.365-2.633c1.33 0.001 2.586 0.289 3.649 0.775 0.502 0.23 1.096 0.008 1.325-0.494s0.008-1.096-0.494-1.325c-1.327-0.606-2.866-0.955-4.479-0.956-3.037-0.002-5.789 1.229-7.78 3.217s-3.224 4.74-3.226 7.777 1.229 5.789 3.217 7.78 4.739 3.225 7.776 3.226 5.789-1.229 7.78-3.217 3.225-4.739 3.227-7.777v-0.92c0-0.552-0.448-1-1-1s-1 0.448-1 1zM21.293 3.293l-9.293 9.302-2.293-2.292c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414l3 3c0.391 0.391 1.024 0.39 1.415 0l10-10.010c0.39-0.391 0.39-1.024-0.001-1.414s-1.024-0.39-1.414 0.001z",_CoreIcons.warning="M11.148 4.374c0.073-0.123 0.185-0.242 0.334-0.332 0.236-0.143 0.506-0.178 0.756-0.116s0.474 0.216 0.614 0.448l8.466 14.133c0.070 0.12 0.119 0.268 0.128 0.434-0.015 0.368-0.119 0.591-0.283 0.759-0.18 0.184-0.427 0.298-0.693 0.301l-16.937-0.001c-0.152-0.001-0.321-0.041-0.481-0.134-0.239-0.138-0.399-0.359-0.466-0.607s-0.038-0.519 0.092-0.745zM9.432 3.346l-8.47 14.14c-0.422 0.731-0.506 1.55-0.308 2.29s0.68 1.408 1.398 1.822c0.464 0.268 0.976 0.4 1.475 0.402h16.943c0.839-0.009 1.587-0.354 2.123-0.902s0.864-1.303 0.855-2.131c-0.006-0.536-0.153-1.044-0.406-1.474l-8.474-14.147c-0.432-0.713-1.11-1.181-1.854-1.363s-1.561-0.081-2.269 0.349c-0.429 0.26-0.775 0.615-1.012 1.014zM11 9v4c0 0.552 0.448 1 1 1s1-0.448 1-1v-4c0-0.552-0.448-1-1-1s-1 0.448-1 1zM12 18c0.552 0 1-0.448 1-1s-0.448-1-1-1-1 0.448-1 1 0.448 1 1 1z",_CoreIcons.question="M23 12c0-3.037-1.232-5.789-3.222-7.778s-4.741-3.222-7.778-3.222-5.789 1.232-7.778 3.222-3.222 4.741-3.222 7.778 1.232 5.789 3.222 7.778 4.741 3.222 7.778 3.222 5.789-1.232 7.778-3.222 3.222-4.741 3.222-7.778zM21 12c0 2.486-1.006 4.734-2.636 6.364s-3.878 2.636-6.364 2.636-4.734-1.006-6.364-2.636-2.636-3.878-2.636-6.364 1.006-4.734 2.636-6.364 3.878-2.636 6.364-2.636 4.734 1.006 6.364 2.636 2.636 3.878 2.636 6.364zM10.033 9.332c0.183-0.521 0.559-0.918 1.022-1.14s1.007-0.267 1.528-0.083c0.458 0.161 0.819 0.47 1.050 0.859 0.183 0.307 0.284 0.665 0.286 1.037 0 0.155-0.039 0.309-0.117 0.464-0.080 0.16-0.203 0.325-0.368 0.49-0.709 0.709-1.831 1.092-1.831 1.092-0.524 0.175-0.807 0.741-0.632 1.265s0.741 0.807 1.265 0.632c0 0 1.544-0.506 2.613-1.575 0.279-0.279 0.545-0.614 0.743-1.010 0.2-0.4 0.328-0.858 0.328-1.369-0.004-0.731-0.204-1.437-0.567-2.049-0.463-0.778-1.19-1.402-2.105-1.724-1.042-0.366-2.135-0.275-3.057 0.167s-1.678 1.238-2.044 2.28c-0.184 0.521 0.090 1.092 0.611 1.275s1.092-0.091 1.275-0.611zM12 18c0.552 0 1-0.448 1-1s-0.448-1-1-1-1 0.448-1 1 0.448 1 1 1z",_CoreIcons.mediaRotateCW="M16.89,15.5L18.31,16.89C19.21,15.73 19.76,14.39 19.93,13H17.91C17.77,13.87 17.43,14.72 16.89,15.5M13,17.9V19.92C14.39,19.75 15.74,19.21 16.9,18.31L15.46,16.87C14.71,17.41 13.87,17.76 13,17.9M19.93,11C19.76,9.61 19.21,8.27 18.31,7.11L16.89,8.53C17.43,9.28 17.77,10.13 17.91,11M15.55,5.55L11,1V4.07C7.06,4.56 4,7.92 4,12C4,16.08 7.05,19.44 11,19.93V17.91C8.16,17.43 6,14.97 6,12C6,9.03 8.16,6.57 11,6.09V10L15.55,5.55Z",_CoreIcons.mediaRotateCCW="M13,4.07V1L8.45,5.55L13,10V6.09C15.84,6.57 18,9.03 18,12C18,14.97 15.84,17.43 13,17.91V19.93C16.95,19.44 20,16.08 20,12C20,7.92 16.95,4.56 13,4.07M7.1,18.32C8.26,19.22 9.61,19.76 11,19.93V17.9C10.13,17.75 9.29,17.41 8.54,16.87L7.1,18.32M6.09,13H4.07C4.24,14.39 4.79,15.73 5.69,16.89L7.1,15.47C6.58,14.72 6.23,13.88 6.09,13M7.11,8.53L5.7,7.11C4.8,8.27 4.24,9.61 4.07,11H6.09C6.23,10.13 6.58,9.28 7.11,8.53Z",_CoreIcons.mediaFitToView="M20,2H4C2.89,2 2,2.89 2,4V20C2,21.11 2.89,22 4,22H20C21.11,22 22,21.11 22,20V4C22,2.89 21.11,2 20,2M20,20H4V4H20M13,8V10H11V8H9L12,5L15,8M16,15V13H14V11H16V9L19,12M10,13H8V15L5,12L8,9V11H10M15,16L12,19L9,16H11V14H13V16",_CoreIcons.mediaSrt="M18,11H16.5V10.5H14.5V13.5H16.5V13H18V14A1,1 0 0,1 17,15H14A1,1 0 0,1 13,14V10A1,1 0 0,1 14,9H17A1,1 0 0,1 18,10M11,11H9.5V10.5H7.5V13.5H9.5V13H11V14A1,1 0 0,1 10,15H7A1,1 0 0,1 6,14V10A1,1 0 0,1 7,9H10A1,1 0 0,1 11,10M19,4H5C3.89,4 3,4.89 3,6V18A2,2 0 0,0 5,20H19A2,2 0 0,0 21,18V6C21,4.89 20.1,4 19,4Z",_CoreIcons.mediaAspect="M19,12H17V15H14V17H19V12M7,9H10V7H5V12H7V9M21,3H3A2,2 0 0,0 1,5V19A2,2 0 0,0 3,21H21A2,2 0 0,0 23,19V5A2,2 0 0,0 21,3M21,19H3V5H21V19Z",_CoreIcons.mediaZoomer="M15 0.004c-4.97 0-9 4.030-9 9 0 1.52 0.38 2.95 1.046 4.206l-6.258 6.256 0.005 0.005c-0.489 0.481-0.794 1.147-0.794 1.887 0 1.462 1.185 2.647 2.647 2.647 0.739 0 1.406-0.304 1.886-0.794l-0.002-0.001 6.256-6.255c1.257 0.668 2.689 1.050 4.213 1.050 4.97 0 9-4.030 9-9s-4.030-9-9-9zM3.596 22.273c-0.241 0.25-0.576 0.407-0.95 0.407-0.731 0-1.324-0.592-1.324-1.323 0-0.373 0.157-0.707 0.407-0.95l-0.007-0.006 6.050-6.050c0.529 0.713 1.159 1.343 1.87 1.874l-6.047 6.047zM15 16.505c-4.142 0-7.5-3.359-7.5-7.5s3.358-7.5 7.5-7.5c4.141 0 7.5 3.358 7.5 7.5s-3.359 7.5-7.5 7.5zM15 3.754c0.206 0 0.375 0.168 0.375 0.375s-0.169 0.375-0.375 0.375c-2.486 0-4.5 2.015-4.5 4.5 0 0.207-0.168 0.375-0.375 0.375s-0.375-0.168-0.375-0.375c0-2.9 2.35-5.25 5.25-5.25z",_CoreIcons.mediaOrient="M7.34,6.41L0.86,12.9L7.35,19.38L13.84,12.9L7.34,6.41M3.69,12.9L7.35,9.24L11,12.9L7.34,16.56L3.69,12.9M19.36,6.64C17.61,4.88 15.3,4 13,4V0.76L8.76,5L13,9.24V6C14.79,6 16.58,6.68 17.95,8.05C20.68,10.78 20.68,15.22 17.95,17.95C16.58,19.32 14.79,20 13,20C12.03,20 11.06,19.79 10.16,19.39L8.67,20.88C10,21.62 11.5,22 13,22C15.3,22 17.61,21.12 19.36,19.36C22.88,15.85 22.88,10.15 19.36,6.64Z",_CoreIcons.mediaCrop="M7,17V1H5V5H1V7H5V17A2,2 0 0,0 7,19H17V23H19V19H23V17M17,15H19V7C19,5.89 18.1,5 17,5H9V7H17V15Z",_CoreIcons.mediaImage="M19,19H5V5H19M19,3H5A2,2 0 0,0 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V5A2,2 0 0,0 19,3M13.96,12.29L11.21,15.83L9.25,13.47L6.5,17H17.5L13.96,12.29Z",_CoreIcons.mediaVideo="M15,8V16H5V8H15M16,6H4A1,1 0 0,0 3,7V17A1,1 0 0,0 4,18H16A1,1 0 0,0 17,17V13.5L21,17.5V6.5L17,10.5V7A1,1 0 0,0 16,6Z",_CoreIcons.mediaAudio="M17.3,11C17.3,14 14.76,16.1 12,16.1C9.24,16.1 6.7,14 6.7,11H5C5,14.41 7.72,17.23 11,17.72V21H13V17.72C16.28,17.23 19,14.41 19,11M10.8,4.9C10.8,4.24 11.34,3.7 12,3.7C12.66,3.7 13.2,4.24 13.2,4.9L13.19,11.1C13.19,11.76 12.66,12.3 12,12.3C11.34,12.3 10.8,11.76 10.8,11.1M12,14A3,3 0 0,0 15,11V5A3,3 0 0,0 12,2A3,3 0 0,0 9,5V11A3,3 0 0,0 12,14Z",_CoreIcons.mediaVideoBroken="M3.41,1.86L2,3.27L4.73,6H4A1,1 0 0,0 3,7V17A1,1 0 0,0 4,18H16C16.21,18 16.39,17.92 16.55,17.82L19.73,21L21.14,19.59L12.28,10.73L3.41,1.86M5,16V8H6.73L14.73,16H5M15,8V10.61L21,16.61V6.5L17,10.5V7A1,1 0 0,0 16,6H10.39L12.39,8H15Z",_CoreIcons.mediaAudioBroken="M19,11C19,12.19 18.66,13.3 18.1,14.28L16.87,13.05C17.14,12.43 17.3,11.74 17.3,11H19M15,11.16L9,5.18V5A3,3 0 0,1 12,2A3,3 0 0,1 15,5V11L15,11.16M4.27,3L21,19.73L19.73,21L15.54,16.81C14.77,17.27 13.91,17.58 13,17.72V21H11V17.72C7.72,17.23 5,14.41 5,11H6.7C6.7,14 9.24,16.1 12,16.1C12.81,16.1 13.6,15.91 14.31,15.58L12.65,13.92L12,14A3,3 0 0,1 9,11V10.28L3,4.27L4.27,3Z",_CoreIcons.mediaImageBroken="M22 20.7L3.3 2L2 3.3L3 4.3V19C3 20.1 3.9 21 5 21H19.7L20.7 22L22 20.7M5 19V6.3L12.6 13.9L11.1 15.8L9 13.1L6 17H15.7L17.7 19H5M8.8 5L6.8 3H19C20.1 3 21 3.9 21 5V17.2L19 15.2V5H8.8",_CoreIcons.mediaNsfw="M2,5.27L3.28,4L20,20.72L18.73,22L15.65,18.92C14.5,19.3 13.28,19.5 12,19.5C7,19.5 2.73,16.39 1,12C1.69,10.24 2.79,8.69 4.19,7.46L2,5.27M12,9A3,3 0 0,1 15,12C15,12.35 14.94,12.69 14.83,13L11,9.17C11.31,9.06 11.65,9 12,9M12,4.5C17,4.5 21.27,7.61 23,12C22.18,14.08 20.79,15.88 19,17.19L17.58,15.76C18.94,14.82 20.06,13.54 20.82,12C19.17,8.64 15.76,6.5 12,6.5C10.91,6.5 9.84,6.68 8.84,7L7.3,5.47C8.74,4.85 10.33,4.5 12,4.5M3.18,12C4.83,15.36 8.24,17.5 12,17.5C12.69,17.5 13.37,17.43 14,17.29L11.72,15C10.29,14.85 9.15,13.71 9,12.28L5.6,8.87C4.61,9.72 3.78,10.78 3.18,12Z",_CoreIcons.mediaSplitter="M3 15V17H5V15M15 19V21H17V19M19 3H5C3.9 3 3 3.9 3 5V9H5V5H19V9H21V5C21 3.9 20.1 3 19 3M21 19H19V21C20.1 21 21 20.1 21 19M1 11V13H23V11M7 19V21H9V19M19 15V17H21V15M11 19V21H13V19M3 19C3 20.1 3.9 21 5 21V19Z",_CoreIcons.mediaPlay="M8,5.14V19.14L19,12.14L8,5.14Z",_CoreIcons.mediaPause="M14,19H18V5H14M6,19H10V5H6V19Z",_CoreIcons.mediaContrast="M12 2A10 10 0 0 0 2 12A10 10 0 0 0 12 22A10 10 0 0 0 22 12A10 10 0 0 0 12 2M12 4A8 8 0 0 1 20 12A8 8 0 0 1 12 20V4Z",_CoreIcons.mediaEqs="M7 3H5V9H7V3M19 3H17V13H19V3M3 13H5V21H7V13H9V11H3V13M15 7H13V3H11V7H9V9H15V7M11 21H13V11H11V21M15 15V17H17V21H19V17H21V15H15Z",_CoreIcons.mediaCaptionOff="M5,4C4.45,4 4,4.18 3.59,4.57C3.2,4.96 3,5.44 3,6V18C3,18.56 3.2,19.04 3.59,19.43C4,19.82 4.45,20 5,20H19C19.5,20 20,19.81 20.39,19.41C20.8,19 21,18.53 21,18V6C21,5.47 20.8,5 20.39,4.59C20,4.19 19.5,4 19,4H5M4.5,5.5H19.5V18.5H4.5V5.5M7,9C6.7,9 6.47,9.09 6.28,9.28C6.09,9.47 6,9.7 6,10V14C6,14.3 6.09,14.53 6.28,14.72C6.47,14.91 6.7,15 7,15H10C10.27,15 10.5,14.91 10.71,14.72C10.91,14.53 11,14.3 11,14V13H9.5V13.5H7.5V10.5H9.5V11H11V10C11,9.7 10.91,9.47 10.71,9.28C10.5,9.09 10.27,9 10,9H7M14,9C13.73,9 13.5,9.09 13.29,9.28C13.09,9.47 13,9.7 13,10V14C13,14.3 13.09,14.53 13.29,14.72C13.5,14.91 13.73,15 14,15H17C17.3,15 17.53,14.91 17.72,14.72C17.91,14.53 18,14.3 18,14V13H16.5V13.5H14.5V10.5H16.5V11H18V10C18,9.7 17.91,9.47 17.72,9.28C17.53,9.09 17.3,9 17,9H14Z",_CoreIcons.mediaCaptionOn="M18,11H16.5V10.5H14.5V13.5H16.5V13H18V14A1,1 0 0,1 17,15H14A1,1 0 0,1 13,14V10A1,1 0 0,1 14,9H17A1,1 0 0,1 18,10M11,11H9.5V10.5H7.5V13.5H9.5V13H11V14A1,1 0 0,1 10,15H7A1,1 0 0,1 6,14V10A1,1 0 0,1 7,9H10A1,1 0 0,1 11,10M19,4H5C3.89,4 3,4.89 3,6V18A2,2 0 0,0 5,20H19A2,2 0 0,0 21,18V6C21,4.89 20.1,4 19,4Z",_CoreIcons.mediaChannel="M12,12A3,3 0 0,0 9,15A3,3 0 0,0 12,18A3,3 0 0,0 15,15A3,3 0 0,0 12,12M12,20A5,5 0 0,1 7,15A5,5 0 0,1 12,10A5,5 0 0,1 17,15A5,5 0 0,1 12,20M12,4A2,2 0 0,1 14,6A2,2 0 0,1 12,8C10.89,8 10,7.1 10,6C10,4.89 10.89,4 12,4M17,2H7C5.89,2 5,2.89 5,4V20A2,2 0 0,0 7,22H17A2,2 0 0,0 19,20V4C19,2.89 18.1,2 17,2Z",_CoreIcons.mediaVolume0="M3,9H7L12,4V20L7,15H3V9M16.59,12L14,9.41L15.41,8L18,10.59L20.59,8L22,9.41L19.41,12L22,14.59L20.59,16L18,13.41L15.41,16L14,14.59L16.59,12Z",_CoreIcons.mediaVolume1="M7,9V15H11L16,20V4L11,9H7Z",_CoreIcons.mediaVolume2="M5,9V15H9L14,20V4L9,9M18.5,12C18.5,10.23 17.5,8.71 16,7.97V16C17.5,15.29 18.5,13.76 18.5,12Z",_CoreIcons.mediaVolume3="M14,3.23V5.29C16.89,6.15 19,8.83 19,12C19,15.17 16.89,17.84 14,18.7V20.77C18,19.86 21,16.28 21,12C21,7.72 18,4.14 14,3.23M16.5,12C16.5,10.23 15.5,8.71 14,7.97V16C15.5,15.29 16.5,13.76 16.5,12M3,9V15H7L12,20V4L7,9H3Z",_CoreIcons.mediaComment="M9,22A1,1 0 0,1 8,21V18H4A2,2 0 0,1 2,16V4C2,2.89 2.9,2 4,2H20A2,2 0 0,1 22,4V16A2,2 0 0,1 20,18H13.9L10.2,21.71C10,21.9 9.75,22 9.5,22V22H9M10,16V19.08L13.08,16H20V4H4V16H10M6,7H18V9H6V7M6,11H15V13H6V11Z",_CoreIcons.mediaCommentAdd="M9,22A1,1 0 0,1 8,21V18H4A2,2 0 0,1 2,16V4C2,2.89 2.9,2 4,2H20A2,2 0 0,1 22,4V16A2,2 0 0,1 20,18H13.9L10.2,21.71C10,21.9 9.75,22 9.5,22V22H9M10,16V19.08L13.08,16H20V4H4V16H10M11,6H13V9H16V11H13V14H11V11H8V9H11V6Z";var Tooltip_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/dist/esm/overlays/tooltip/Tooltip.module.css"),Tooltip_module_options={};Tooltip_module_options.styleTagTransform=styleTagTransform_default(),Tooltip_module_options.setAttributes=setAttributesWithoutAttributes_default(),Tooltip_module_options.insert=insertBySelector_default().bind(null,"head"),Tooltip_module_options.domAPI=styleDomAPI_default(),Tooltip_module_options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(Tooltip_module.A,Tooltip_module_options);const tooltip_Tooltip_module=Tooltip_module.A&&Tooltip_module.A.locals?Tooltip_module.A.locals:void 0;var Tooltip_excluded=["ref","children","color","content","open","copyContent","disabled","placement"];function Tooltip_ownKeys(e,r){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);r&&(o=o.filter((function(r){return Object.getOwnPropertyDescriptor(e,r).enumerable}))),t.push.apply(t,o)}return t}function Tooltip_objectSpread(e){for(var r=1;r0&&void 0!==arguments[0]&&arguments[0],onToggle=arguments.length>1?arguments[1]:void 0,key=arguments.length>2?arguments[2]:void 0,toggleRef=(0,react.useRef)(isOn),_useState=(0,react.useState)(isOn),_useState2=(0,slicedToArray.A)(_useState,2),toggleOn=_useState2[0],setToggleOn=_useState2[1];useEffectDebugger_useLayoutEffectDebugger((function(){toggleRef.current=isOn,setToggleOn(isOn)}),[isOn],"usePropToggle");var doToggle=(0,react.useCallback)((function(){!1!==(null==onToggle?void 0:onToggle(!toggleOn,key))&&(toggleRef.current=!toggleOn,setToggleOn(!toggleOn))}),[toggleOn,onToggle,key]);return[toggleOn,doToggle,toggleRef]},ErrorBoundary_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/dist/esm/core/boundary/ErrorBoundary.module.css"),ErrorBoundary_module_options={};ErrorBoundary_module_options.styleTagTransform=styleTagTransform_default(),ErrorBoundary_module_options.setAttributes=setAttributesWithoutAttributes_default(),ErrorBoundary_module_options.insert=insertBySelector_default().bind(null,"head"),ErrorBoundary_module_options.domAPI=styleDomAPI_default(),ErrorBoundary_module_options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(ErrorBoundary_module.A,ErrorBoundary_module_options);const boundary_ErrorBoundary_module=ErrorBoundary_module.A&&ErrorBoundary_module.A.locals?ErrorBoundary_module.A.locals:void 0;var ErrorIcon=function ErrorIcon(){return(0,jsx_runtime.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 64 64",className:classnames_default()(boundary_ErrorBoundary_module.boundaryIcon,"size-6 m-2"),children:[(0,jsx_runtime.jsx)("path",{fill:"#808080",d:"M64 32c0 17.673-14.327 32-32 32s-32-14.327-32-32 14.327-32 32-32 32 14.327 32 32z"}),(0,jsx_runtime.jsx)("path",{fill:"#fff",d:"M63.5 32c0 17.397-14.103 31.5-31.5 31.5s-31.5-14.103-31.5-31.5 14.103-31.5 31.5-31.5 31.5 14.103 31.5 31.5z"}),(0,jsx_runtime.jsx)("path",{fill:"#f44336",d:"M60 32c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-15.464 12.536-28 28-28s28 12.536 28 28z"}),(0,jsx_runtime.jsx)("path",{fill:"#fff",d:"M50.667 35.733h-37.333c-1.031 0-1.867-0.835-1.867-1.867v-3.733c0-1.031 0.835-1.867 1.867-1.867h37.333c1.031 0 1.867 0.835 1.867 1.867v3.733c0 1.031-0.835 1.867-1.867 1.867z"})]})},i18next=__webpack_require__("./node_modules/i18next/dist/esm/i18next.js"),asyncToGenerator=__webpack_require__("./node_modules/@babel/runtime/helpers/esm/asyncToGenerator.js"),regenerator=__webpack_require__("./node_modules/@babel/runtime/regenerator/index.js"),regenerator_default=__webpack_require__.n(regenerator),react_dom=__webpack_require__("./node_modules/react-dom/index.js"),Typography_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/dist/esm/typography/Typography.module.css"),Typography_module_options={};Typography_module_options.styleTagTransform=styleTagTransform_default(),Typography_module_options.setAttributes=setAttributesWithoutAttributes_default(),Typography_module_options.insert=insertBySelector_default().bind(null,"head"),Typography_module_options.domAPI=styleDomAPI_default(),Typography_module_options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(Typography_module.A,Typography_module_options);const typography_Typography_module=Typography_module.A&&Typography_module.A.locals?Typography_module.A.locals:void 0;var Title_excluded=["children","className","as","bg","color","size","align","family"];function Title_ownKeys(e,r){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);r&&(o=o.filter((function(r){return Object.getOwnPropertyDescriptor(e,r).enumerable}))),t.push.apply(t,o)}return t}function Title_objectSpread(e){for(var r=1;r4&&void 0!==_args[4]?_args[4]:5e3,timerRef=null,obj=makeProps(props),_context.next=5,new Promise((function(resolve){var key=(0,esm.uR)(),handleClose=function handleClose(){var b=arguments.length>0&&void 0!==arguments[0]&&arguments[0];clearTimeout(timerRef),setTimeout((function(){delete map[key],update(),resolve(b)}),250)};map[key]=[(0,jsx_runtime.jsx)("div",{children:(0,jsx_runtime.jsx)(Notif,NotificationCenter_objectSpread(NotificationCenter_objectSpread({},obj),{},{onClose:handleClose,onCloseAll:handleCloseAll.current}))},key),handleClose],update(),"confirm"!==obj.type&&timeout>0&&(timerRef=setTimeout(handleClose,timeout))}));case 5:return _context.abrupt("return",_context.sent);case 6:case"end":return _context.stop()}}),_callee)})));return function(_x,_x2,_x3,_x4){return _ref2.apply(this,arguments)}}()),showMessage=(0,react.useRef)(function(){var _ref3=(0,asyncToGenerator.A)(regenerator_default().mark((function _callee2(props){var timeout,_args2=arguments;return regenerator_default().wrap((function _callee2$(_context2){for(;;)switch(_context2.prev=_context2.next){case 0:return timeout=_args2.length>1&&void 0!==_args2[1]?_args2[1]:5e3,_context2.next=3,openNotification.current(refItems.current.messages,updateMessages.current,Message,props,timeout);case 3:return _context2.abrupt("return",_context2.sent);case 4:case"end":return _context2.stop()}}),_callee2)})));return function(_x5){return _ref3.apply(this,arguments)}}()),showToast=(0,react.useRef)(function(){var _ref4=(0,asyncToGenerator.A)(regenerator_default().mark((function _callee3(props){var timeout,_args3=arguments;return regenerator_default().wrap((function _callee3$(_context3){for(;;)switch(_context3.prev=_context3.next){case 0:return timeout=_args3.length>1&&void 0!==_args3[1]?_args3[1]:5e3,_context3.next=3,openNotification.current(refItems.current.toasts,updateToasts.current,Toast,props,timeout);case 3:return _context3.abrupt("return",_context3.sent);case 4:case"end":return _context3.stop()}}),_callee3)})));return function(_x6){return _ref4.apply(this,arguments)}}()),showAlert=(0,react.useRef)(function(){var _ref5=(0,asyncToGenerator.A)(regenerator_default().mark((function _callee4(props){return regenerator_default().wrap((function _callee4$(_context4){for(;;)switch(_context4.prev=_context4.next){case 0:return _context4.next=2,openNotification.current(refItems.current.alerts,updateAlerts.current,Alert,props,0);case 2:return _context4.abrupt("return",_context4.sent);case 3:case"end":return _context4.stop()}}),_callee4)})));return function(_x7){return _ref5.apply(this,arguments)}}()),showError=(0,react.useRef)(function(){var _ref6=(0,asyncToGenerator.A)(regenerator_default().mark((function _callee5(props){return regenerator_default().wrap((function _callee5$(_context5){for(;;)switch(_context5.prev=_context5.next){case 0:return _context5.next=3,openNotification.current(refItems.current.toasts,Toast,NotificationCenter_objectSpread(NotificationCenter_objectSpread({},makeProps(props)),{},{color:"danger"}),0);case 3:return _context5.abrupt("return",_context5.sent);case 4:case"end":return _context5.stop()}}),_callee5)})));return function(_x8){return _ref6.apply(this,arguments)}}());return(0,react.useEffect)((function(){onLoad({showMessage:showMessage.current,showToast:showToast.current,showAlert:showAlert.current,showError:showError.current,closeAll:handleCloseAll.current})}),[]),(0,jsx_runtime.jsxs)(react.Fragment,{children:[(0,react_dom.createPortal)((0,jsx_runtime.jsx)("div",{style:{zIndex:"var(--z-overlay)"},className:"ruf-container__overlays pointer-events-none fixed inset-0 p-4 bg-transparent",children:Object.values(alerts).map((function(_ref7){return(0,slicedToArray.A)(_ref7,1)[0]}))}),document.body),(0,react_dom.createPortal)((0,jsx_runtime.jsx)("div",{style:{zIndex:"var(--z-notifications)"},className:"ruf-container__notifs flex flex-nowrap pointer-events-none fixed inset-0 p-2 bg-transparent flex-col-reverse items-center justify-end",children:Object.values(messages).map((function(_ref9){return(0,slicedToArray.A)(_ref9,1)[0]}))}),document.body),(0,react_dom.createPortal)((0,jsx_runtime.jsx)("div",{style:{zIndex:"var(--z-notifications)"},className:"ruf-container__toasts flex flex-nowrap pointer-events-none fixed inset-0 p-4 bg-transparent flex-col items-end justify-end overflow-auto scroll-hide",children:Object.values(toasts).map((function(_ref11){return(0,slicedToArray.A)(_ref11,1)[0]}))}),document.body)]})},Global_excluded=["errorElement"],GlobalContext=(0,react.createContext)({}),ApplicationProvider=function ApplicationProvider(_ref3){var children=_ref3.children,errorElement=_ref3.errorElement,defaultLocale=_ref3.defaultLocale,defaultCalendar=_ref3.defaultCalendar,defaultColorScheme=_ref3.defaultColorScheme,_useState=(0,react.useState)({closeAll:function closeAll(){},showAlert:function showAlert(){},showError:function showError(){},showMessage:function showMessage(){},showToast:function showToast(){}}),_useState2=(0,slicedToArray.A)(_useState,2),refNotifications=_useState2[0],setNotificationRef=_useState2[1],_useState3=(0,react.useState)(null!=defaultColorScheme?defaultColorScheme:function systemColorScheme(){var _localStorage$getItem;return"undefined"!=typeof window?null!==(_localStorage$getItem=localStorage.getItem("ruf:colorScheme"))&&void 0!==_localStorage$getItem?_localStorage$getItem:window.matchMedia("(prefers-color-scheme: dark)").matches?"dark":"light":"light"}()),_useState4=(0,slicedToArray.A)(_useState3,2),colorScheme=_useState4[0],setColorScheme=_useState4[1],_useState5=(0,react.useState)(null!=defaultCalendar?defaultCalendar:function systemCalendar(){var _ref2;return null!==(_ref2="undefined"!=typeof window?localStorage.getItem("ruf:calendar"):void 0)&&void 0!==_ref2?_ref2:"gregorian"}()),_useState6=(0,slicedToArray.A)(_useState5,2),calendar=_useState6[0],setCalendar=_useState6[1],_useState7=(0,react.useState)(null!=defaultLocale?defaultLocale:function systemLocale(){var _ref;return null!==(_ref="undefined"!=typeof window?localStorage.getItem("ruf:locale"):void 0)&&void 0!==_ref?_ref:"en"}()),_useState8=(0,slicedToArray.A)(_useState7,2),locale=_useState8[0],setLocale=_useState8[1];(0,react.useEffect)((function(){if(document.documentElement.lang=locale,document.documentElement.dataset.colorScheme?setColorScheme(document.documentElement.dataset.colorScheme):document.documentElement.dataset.colorScheme=colorScheme,"undefined"!=typeof window)try{i18next.Ay.changeLanguage(locale).then((function(){document.documentElement.dir=i18next.Ay.dir()}))}catch(_unused){}}),[]);var toggleColorScheme=(0,react.useCallback)((function(forceTheme){var newTheme=null!=forceTheme?forceTheme:"dark"===colorScheme?"light":"dark";return setColorScheme(newTheme),localStorage.setItem("ruf:colorScheme",newTheme),document.documentElement.dataset.colorScheme=newTheme,newTheme}),[colorScheme]),changeLocale=(0,react.useCallback)((function(locale){try{i18next.Ay.changeLanguage(locale).then((function(){localStorage.setItem("ruf:locale",locale),document.documentElement.lang=locale,document.documentElement.dir=i18next.Ay.dir()}))}catch(_unused2){}return setLocale(locale),locale}),[]),changeCalendar=(0,react.useCallback)((function(calendar){return setCalendar(calendar),localStorage.setItem("ruf:calendar",calendar),calendar}),[]);return(0,jsx_runtime.jsxs)(GlobalContext.Provider,{value:{errorElement,changeLocale,changeCalendar,toggleColorScheme,currentLocale:locale,currentCalendar:calendar,currentColorScheme:colorScheme,notificationManager:refNotifications},children:[(0,jsx_runtime.jsx)(HotKeyWrapper_HotKeyWrapper,{children}),(0,jsx_runtime.jsx)(NotificationManager,{onLoad:setNotificationRef})]})},useGlobals=function useGlobals(){return(0,react.useContext)(GlobalContext)},useApplicationContext=function useApplicationContext(){var _useContext=(0,react.useContext)(GlobalContext);return _useContext.errorElement,(0,objectWithoutProperties.A)(_useContext,Global_excluded)},useNotificationService=function useNotificationService(){var notificationManager=(0,react.useContext)(GlobalContext).notificationManager;return null!=notificationManager?notificationManager:{}};function _callSuper(t,o,e){return o=(0,getPrototypeOf.A)(o),(0,possibleConstructorReturn.A)(t,_isNativeReflectConstruct()?Reflect.construct(o,e||[],(0,getPrototypeOf.A)(t).constructor):o.apply(t,e))}function _isNativeReflectConstruct(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(_isNativeReflectConstruct=function _isNativeReflectConstruct(){return!!t})()}var DefaultError=function DefaultError(_ref){var error=_ref.error,t=(0,es.Bd)("core").t;return(0,jsx_runtime.jsxs)(jsx_runtime.Fragment,{children:[(0,jsx_runtime.jsx)("h6",{children:t("error.title")}),(0,jsx_runtime.jsx)("p",{className:"line-clamp-4",children:error})]})},ErrorMessage=function ErrorMessage(_ref2){var error=_ref2.error,errorElement=_ref2.errorElement,globalError=useGlobals().errorElement,EE=useEffectDebugger_useMemoDebugger((function(){var _ref3;return null!==(_ref3=null!=errorElement?errorElement:globalError)&&void 0!==_ref3?_ref3:DefaultError}),[],"ErrorBoundary element");return(0,jsx_runtime.jsxs)(jsx_runtime.Fragment,{children:[(0,jsx_runtime.jsx)(ErrorIcon,{}),(0,jsx_runtime.jsx)("div",{className:classnames_default()(boundary_ErrorBoundary_module.boundaryMessage,"p-2"),children:(0,jsx_runtime.jsx)(EE,{error})})]})},ErrorBoundary_ErrorBoundary=function(_Component){function ErrorBoundary(props){var _this;return(0,classCallCheck.A)(this,ErrorBoundary),(_this=_callSuper(this,ErrorBoundary,[props])).state={hasError:!1},_this}return(0,inherits.A)(ErrorBoundary,_Component),(0,createClass.A)(ErrorBoundary,[{key:"componentDidCatch",value:function componentDidCatch(error){this.setState({hasError:!0,error:error.message,stack:error.stack})}},{key:"render",value:function render(){if(this.state.hasError){var E=this.props.errorElement;return(0,jsx_runtime.jsx)("div",{className:classnames_default()(boundary_ErrorBoundary_module.errorBoundary,"grid grid-rows-1 overflow-hidden p-0.5 rounded-capped"),children:(0,jsx_runtime.jsxs)("div",{className:classnames_default()(boundary_ErrorBoundary_module.boundaryContent,"overflow-hidden grid rounded-capped"),children:[(0,jsx_runtime.jsx)(ErrorMessage,{error:this.state.error,errorElement:E}),!1]})})}return this.props.children}}],[{key:"getDerivedStateFromError",value:function getDerivedStateFromError(error){return{hasError:!0,error:error.message,stack:error.stack}}}])}(react.Component),HeadFoot_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/dist/esm/core/headfoot/HeadFoot.module.css"),HeadFoot_module_options={};HeadFoot_module_options.styleTagTransform=styleTagTransform_default(),HeadFoot_module_options.setAttributes=setAttributesWithoutAttributes_default(),HeadFoot_module_options.insert=insertBySelector_default().bind(null,"head"),HeadFoot_module_options.domAPI=styleDomAPI_default(),HeadFoot_module_options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(HeadFoot_module.A,HeadFoot_module_options);const headfoot_HeadFoot_module=HeadFoot_module.A&&HeadFoot_module.A.locals?HeadFoot_module.A.locals:void 0;var HeadFoot_excluded=["as","children","className","bg","color","flex","area","dir","align","justify"];function HeadFoot_ownKeys(e,r){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);r&&(o=o.filter((function(r){return Object.getOwnPropertyDescriptor(e,r).enumerable}))),t.push.apply(t,o)}return t}function HeadFoot_objectSpread(e){for(var r=1;r1?_len-1:0),_key=1;_key<_len;_key++)types[_key-1]=arguments[_key];return(0,esm.Gv)(node)&&"type"in node&&types.includes(node.type)},Card_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/dist/esm/components/card/Card.module.css"),Card_module_options={};Card_module_options.styleTagTransform=styleTagTransform_default(),Card_module_options.setAttributes=setAttributesWithoutAttributes_default(),Card_module_options.insert=insertBySelector_default().bind(null,"head"),Card_module_options.domAPI=styleDomAPI_default(),Card_module_options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(Card_module.A,Card_module_options);const card_Card_module=Card_module.A&&Card_module.A.locals?Card_module.A.locals:void 0;var Card_excluded=["children","className","bodyClassName","selected","selectedRibbon","onClick","flex","draggable","dragKey","dragData","ref"];function Card_ownKeys(e,r){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);r&&(o=o.filter((function(r){return Object.getOwnPropertyDescriptor(e,r).enumerable}))),t.push.apply(t,o)}return t}function Card_objectSpread(e){for(var r=1;r=step,style:{"--width":"".concat(Math.min(100*(activeCount-step),100),"%")}},step)})),!hideLabel&&(0,jsx_runtime.jsx)("label",{className:"text-muted",children:esm.yL.percent(value/100)})]}))};var Panel_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/dist/esm/components/panel/Panel.module.css"),Panel_module_options={};Panel_module_options.styleTagTransform=styleTagTransform_default(),Panel_module_options.setAttributes=setAttributesWithoutAttributes_default(),Panel_module_options.insert=insertBySelector_default().bind(null,"head"),Panel_module_options.domAPI=styleDomAPI_default(),Panel_module_options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(Panel_module.A,Panel_module_options);const panel_Panel_module=Panel_module.A&&Panel_module.A.locals?Panel_module.A.locals:void 0;var Panel_excluded=["children","className","titleClassName","headerClassName","title","actions","icon","iconBg","iconColor","rtlFlip","panelId","height","width","minHeight","minWidth","maxHeight","maxWidth","loading","expandable","expanded","onExpand","collapsable","collapsed","onCollapse","onClose","onBack"];function Panel_ownKeys(e,r){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);r&&(o=o.filter((function(r){return Object.getOwnPropertyDescriptor(e,r).enumerable}))),t.push.apply(t,o)}return t}function Panel_objectSpread(e){for(var r=1;r0?goBack:void 0})}))},Progress_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/dist/esm/components/progress/Progress.module.css"),Progress_module_options={};Progress_module_options.styleTagTransform=styleTagTransform_default(),Progress_module_options.setAttributes=setAttributesWithoutAttributes_default(),Progress_module_options.insert=insertBySelector_default().bind(null,"head"),Progress_module_options.domAPI=styleDomAPI_default(),Progress_module_options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(Progress_module.A,Progress_module_options);const progress_Progress_module=Progress_module.A&&Progress_module.A.locals?Progress_module.A.locals:void 0;function ProgressBar_ownKeys(e,r){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);r&&(o=o.filter((function(r){return Object.getOwnPropertyDescriptor(e,r).enumerable}))),t.push.apply(t,o)}return t}function ProgressBar_objectSpread(e){for(var r=1;r2&&void 0!==arguments[2]?arguments[2]:100,timerRef=(0,react.useRef)(),cb=(0,react.useMemo)((function(){"undefined"!=typeof window&&window.clearTimeout(timerRef.current);var fn=function fn(){for(var _len=arguments.length,args=new Array(_len),_key=0;_key<_len;_key++)args[_key]=arguments[_key];"undefined"!=typeof window&&(window.clearTimeout(timerRef.current),timerRef.current=window.setTimeout((function(){return null==callback?void 0:callback.apply(void 0,args)}),delay))};return fn.cancel=function(){"undefined"!=typeof window&&clearTimeout(timerRef.current)},fn}),deps);return cb},ResizeObserver_es=__webpack_require__("./node_modules/resize-observer-polyfill/dist/ResizeObserver.es.js"),useResizeObserver=function useResizeObserver(onResize){var ref=(0,react.useRef)(null),_useTransition=(0,react.useTransition)(),startTransition=(0,slicedToArray.A)(_useTransition,2)[1],callbackResize=useDebounce((function(){startTransition((function(){if(onResize&&null!=ref.current){var _ref$current=ref.current,width=_ref$current.offsetWidth,height=_ref$current.offsetHeight;null==onResize||onResize({width,height})}}))}),[onResize]);return(0,react.useEffect)((function(){if(null!=ref.current){var ob=new ResizeObserver_es.A(callbackResize);return ob.observe(ref.current),function(){ob.disconnect()}}}),[callbackResize,ref]),ref},Content_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/dist/esm/core/content/Content.module.css"),Content_module_options={};Content_module_options.styleTagTransform=styleTagTransform_default(),Content_module_options.setAttributes=setAttributesWithoutAttributes_default(),Content_module_options.insert=insertBySelector_default().bind(null,"head"),Content_module_options.domAPI=styleDomAPI_default(),Content_module_options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(Content_module.A,Content_module_options);const content_Content_module=Content_module.A&&Content_module.A.locals?Content_module.A.locals:void 0;var Content=function Content(_ref){var ref=_ref.ref,children=_ref.children,className=_ref.className,onScroll=_ref.onScroll,onResize=_ref.onResize,testId=_ref["data-testid"],testValue=_ref["data-test-value"],resizeHandle=useResizeObserver(onResize),scrollHandler=useDebounce((function(e){var el=e.target;null==onScroll||onScroll({left:el.scrollLeft,top:el.scrollTop,scrollHeight:el.scrollHeight,scrollWidth:el.scrollWidth,width:el.offsetWidth,height:el.offsetHeight},e)}),[onScroll]);return(0,react.useImperativeHandle)(ref,(function(){return resizeHandle.current}),[]),(0,jsx_runtime.jsx)("section",{"data-ref":"content","data-testid":testId,"data-test-value":testValue,ref:resizeHandle,onScroll:scrollHandler,className:classnames_default()(content_Content_module.content,"area-content",className),children:(0,jsx_runtime.jsx)(ErrorBoundary_ErrorBoundary,{children})})},Page_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/dist/esm/core/page/Page.module.css"),Page_module_options={};Page_module_options.styleTagTransform=styleTagTransform_default(),Page_module_options.setAttributes=setAttributesWithoutAttributes_default(),Page_module_options.insert=insertBySelector_default().bind(null,"head"),Page_module_options.domAPI=styleDomAPI_default(),Page_module_options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(Page_module.A,Page_module_options);Page_module.A&&Page_module.A.locals&&Page_module.A.locals;var Responsive_module=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/dist/esm/core/responsive/Responsive.module.css"),Responsive_module_options={};Responsive_module_options.styleTagTransform=styleTagTransform_default(),Responsive_module_options.setAttributes=setAttributesWithoutAttributes_default(),Responsive_module_options.insert=insertBySelector_default().bind(null,"head"),Responsive_module_options.domAPI=styleDomAPI_default(),Responsive_module_options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(Responsive_module.A,Responsive_module_options);const responsive_Responsive_module=Responsive_module.A&&Responsive_module.A.locals?Responsive_module.A.locals:void 0;var Responsive_excluded2=["children","gutter","noWrap","orient","align","justify","className"],_excluded3=["children","flex","align","className","stretchContent"];function Responsive_ownKeys(e,r){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);r&&(o=o.filter((function(r){return Object.getOwnPropertyDescriptor(e,r).enumerable}))),t.push.apply(t,o)}return t}function Responsive_objectSpread(e){for(var r=1;r0&&!refShowMore.current&&setClipped(function calculateTextHeight(element,styleRoot){var clone=element.cloneNode(!0);clone.style.font=getCssStyle(null!=styleRoot?styleRoot:element,"font"),clone.style.width="".concat(element.offsetWidth,"px"),clone.style.padding=getCssStyle(null!=styleRoot?styleRoot:element,"padding"),clone.style.lineHeight=getCssStyle(null!=styleRoot?styleRoot:element,"line-height"),clone.style.letterSpacing=getCssStyle(null!=styleRoot?styleRoot:element,"letter-spacing"),clone.style.webkitLineClamp="unset",clone.style.position="absolute",clone.style.left="-10000%",document.body.appendChild(clone);var height=clone.offsetHeight;return clone.remove(),height}(el.firstElementChild,el)>el.offsetHeight)}),[clamp]);useEffectDebugger_useLayoutEffectDebugger((function(){if(refContainer.current){var ob=new ResizeObserver(checkHeight);return ob.observe(refContainer.current),checkHeight(),function(){ob.disconnect()}}}),[children,checkHeight],"Text check height");var styles=useEffectDebugger_useMemoDebugger((function(){var s={};return bg&&(s.backgroundColor=getColor_getColor(bg)),color&&(s.color=getColor_getColor(color)),align&&(s.textAlign=align),size&&!(size in types_TextSizeMap)&&(s.fontSize=size),size&&size in types_TextSizeMap&&(s.fontSize=types_TextSizeMap[size]),s}),[bg,color,size,align,family],"Text styles");return inline?(0,jsx_runtime.jsx)("span",Text_objectSpread(Text_objectSpread({className,style:styles},aria),{},{children})):(0,jsx_runtime.jsxs)("article",{className,children:[(0,jsx_runtime.jsx)("div",{ref:refContainer,style:{"--text-clamp":showMore?"unset":null!=clamp?clamp:"unset"},children:(0,jsx_runtime.jsx)("div",Text_objectSpread(Text_objectSpread({className:classnames_default()(typography_Typography_module.text,"text-reset mixed-lang px-[2px] whitespace-pre-wrap",family&&"font-".concat(family),bg&&getColor_getBgClass(bg),color&&getColor_getColorClass(color),clamp&&"line-clamp-1"),style:styles},aria),{},{children}))}),clipped&&(0,jsx_runtime.jsx)("div",{className:typography_Typography_module.moreLink,children:(0,jsx_runtime.jsxs)("span",{role:"link",tabIndex:0,"data-inner-clickable":!0,onClick:function onClick(e){return[e.stopPropagation(),toggleShowMore()]},children:["...",t("action.".concat(showMore?"less":"more"))]})})]})},useIsDark=function useIsDark(){var _useState=(0,react.useState)(!1),_useState2=(0,slicedToArray.A)(_useState,2),isDark=_useState2[0],setDark=_useState2[1],checkTheme=(0,react.useCallback)((function(){var _ref=getComputedStyle(document.documentElement).backgroundColor.match(/\d?\d?\d/g),r=(0,slicedToArray.A)(_ref,1)[0];setDark(+r<50)}),[]);return useEffectDebugger_useLayoutEffectDebugger((function(){if(MutationObserver){var ob=new MutationObserver(checkTheme);return ob.observe(document.documentElement,{attributes:!0}),checkTheme(),function(){ob.disconnect()}}}),[],"useIsDark"),isDark};var useLocalStorage=function useLocalStorage(key,defaultValue){var _JSON$parse,_service$getItem,service=function useClientService(clientApi,serverMock){return"undefined"==typeof window?serverMock:clientApi}(localStorage),_useState=(0,react.useState)(null!==(_JSON$parse=JSON.parse(null!==(_service$getItem=null==service?void 0:service.getItem(key))&&void 0!==_service$getItem?_service$getItem:"null"))&&void 0!==_JSON$parse?_JSON$parse:defaultValue),_useState2=(0,slicedToArray.A)(_useState,2),value=_useState2[0],setValue=_useState2[1];useEffectDebugger_useEffectDebugger((function(){var _JSON$parse2,_service$getItem2;setValue(null!==(_JSON$parse2=JSON.parse(null!==(_service$getItem2=null==service?void 0:service.getItem(key))&&void 0!==_service$getItem2?_service$getItem2:"null"))&&void 0!==_JSON$parse2?_JSON$parse2:defaultValue)}),[],"useStorage initial value");return[value,function changeValue(value){null==service||service.setItem(key,JSON.stringify(value)),setValue(value)}]}},"./packages/utilities/dist/esm/index.js":(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.d(__webpack_exports__,{rX:()=>Countries,Ml:()=>EMPTY_ARRAY,fO:()=>_fileType,yL:()=>Format,t_:()=>cloneChildren,ck:()=>compareValues,sg:()=>debounce,Qq:()=>dedupe,YH:()=>getBox,Dz:()=>getByPath,TP:()=>getImageColorset,_W:()=>getValue,$z:()=>groupBy,DB:()=>iconToken,cy:()=>isArray,Lm:()=>_isType_isBoolean,_o:()=>isColor,Im:()=>_isType_isEmpty,gD:()=>isNil,Et:()=>_isType_isNumber,Gv:()=>_isType_isObject,Kg:()=>_isType_isString,yX:()=>isSvgPath,Hn:()=>isTrue,FX:()=>matchString,Px:()=>mergeRefs,BC:()=>shortHash,qw:()=>tokenize,Ul:()=>useLogger,uR:()=>uuid,hg:()=>index_esm});var slicedToArray=__webpack_require__("./node_modules/@babel/runtime/helpers/esm/slicedToArray.js"),esm_typeof=__webpack_require__("./node_modules/@babel/runtime/helpers/esm/typeof.js"),isNil=function isNil(val){return null==val},_isType_isEmpty=function isEmpty(val){return!(val instanceof Date)&&(!(!isNil(val)&&""!==val)||(!(!Array.isArray(val)||0!==val.filter(Boolean).length)||(val instanceof Map||val instanceof Set?0===val.size:!["boolean","number","bigint","function"].includes((0,esm_typeof.A)(val))&&(!!val&&"object"===(0,esm_typeof.A)(val)&&0===Object.entries(val).length))))},_isType_isObject=function isObject(val){return!(isNil(val)||val instanceof Date||"object"!==(0,esm_typeof.A)(val)||Array.isArray(val))},isArray=function isArray(val){return Array.isArray(val)},_isType_isString=function isString(value){return"string"==typeof value},_isType_isNumber=function isNumber(value){return"number"==typeof value},_isType_isBoolean=function isBoolean(value){return"boolean"==typeof value},isTrue=function isTrue(){var value=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"";return!0===value||1===value||"yes"===(null==value?void 0:value.toString().toLowerCase())||"true"===(null==value?void 0:value.toString().toLowerCase())},isColor=function isColor(color){var _color$startsWith,_color$startsWith2,_color$startsWith3,_color$startsWith4;return(null===(_color$startsWith=color.startsWith)||void 0===_color$startsWith?void 0:_color$startsWith.call(color,"#"))||(null===(_color$startsWith2=color.startsWith)||void 0===_color$startsWith2?void 0:_color$startsWith2.call(color,"rgb"))||(null===(_color$startsWith3=color.startsWith)||void 0===_color$startsWith3?void 0:_color$startsWith3.call(color,"hsl"))||(null===(_color$startsWith4=color.startsWith)||void 0===_color$startsWith4?void 0:_color$startsWith4.call(color,"lab"))||"transparent"===color},isSvgPath=function isSvgPath(value){return"string"==typeof value&&null!==value.match(/^[Mm][\d.].*[\dzZ]$/)},conversions={AE:"Æ|Ǽ",Ae:"Ä",ae:"ä|æ|ǽ",OE:"Œ",Oe:"Ö",oe:"ö|œ",Ue:"Ü",ue:"ü",IJ:"IJ",ij:"ij",ss:"ß",A:"À|Á|Â|Ã|Ä|Å|Ǻ|Ā|Ă|Ą|Ǎ",a:"à|á|â|ã|å|ǻ|ā|ă|ą|ǎ|ª",C:"Ç|Ć|Ĉ|Ċ|Č",c:"ç|ć|ĉ|ċ|č",D:"Ð|Ď|Đ",d:"ð|ď|đ",E:"È|É|Ê|Ë|Ē|Ĕ|Ė|Ę|Ě",e:"è|é|ê|ë|ē|ĕ|ė|ę|ě",G:"Ĝ|Ğ|Ġ|Ģ",g:"ĝ|ğ|ġ|ģ",H:"Ĥ|Ħ",h:"ĥ|ħ",I:"Ì|Í|Î|Ï|Ĩ|Ī|Ĭ|Ǐ|Į|İ",i:"ì|í|î|ï|ĩ|ī|ĭ|ǐ|į|ı",J:"Ĵ",j:"ĵ",K:"Ķ",k:"ķ",L:"Ĺ|Ļ|Ľ|Ŀ|Ł",l:"ĺ|ļ|ľ|ŀ|ł",N:"Ñ|Ń|Ņ|Ň",n:"ñ|ń|ņ|ň|ʼn",O:"Ò|Ó|Ô|Õ|Ō|Ŏ|Ǒ|Ő|Ơ|Ø|Ǿ",o:"ò|ó|ô|õ|ō|ŏ|ǒ|ő|ơ|ø|ǿ|º",R:"Ŕ|Ŗ|Ř",r:"ŕ|ŗ|ř",S:"Ś|Ŝ|Ş|Š",s:"ś|ŝ|ş|š|ſ",T:"Ţ|Ť|Ŧ",t:"ţ|ť|ŧ",U:"Ù|Ú|Û|Ũ|Ū|Ŭ|Ů|Ű|Ų|Ư|Ǔ|Ǖ|Ǘ|Ǚ|Ǜ",u:"ù|ú|û|ũ|ū|ŭ|ů|ű|ų|ư|ǔ|ǖ|ǘ|ǚ|ǜ",Y:"Ý|Ÿ|Ŷ",y:"ý|ÿ|ŷ",W:"Ŵ",w:"ŵ",Z:"Ź|Ż|Ž",z:"ź|ż|ž",f:"ƒ"},ascii=function ascii(str){return _isType_isEmpty(str)?"":(Object.entries(conversions).forEach((function(_ref){var _ref2=(0,slicedToArray.A)(_ref,2),a=_ref2[0],l=_ref2[1],re=new RegExp(l,"g");str="".concat(str).replace(re,a)})),str)},_getBox=function _getBox(box){var boundingBox=box;return _isType_isEmpty(box)?[0,0,0,0]:("string"==typeof box&&(boundingBox=box.split(",")),Array.isArray(boundingBox)&&(boundingBox=boundingBox.map((function(b){return parseInt(b,10)}))),boundingBox)},getBox=function getBox(){var boundingBox=_getBox(arguments.length>0&&void 0!==arguments[0]?arguments[0]:"0,0,0,0"),_boundingBox=(0,slicedToArray.A)(boundingBox,4),x=_boundingBox[0],y=_boundingBox[1],w=_boundingBox[2],h=_boundingBox[3];return w=x<0?w+x:w,h=y<0?h+y:h,[x=x>0?x:0,y=y>0?y:0,w,h]},react=__webpack_require__("./node_modules/react/index.js"),jsx_runtime=__webpack_require__("./node_modules/react/jsx-runtime.js"),cloneChildren=function cloneChildren(children,callback){var index=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0;return react.Children.map(children,(function(c){var _c$props;return(0,react.isValidElement)(c)?c.type===jsx_runtime.Fragment?cloneChildren(null===(_c$props=c.props)||void 0===_c$props?void 0:_c$props.children,callback):callback(c,index++):c}))};cloneChildren.__docgenInfo={description:"",methods:[],displayName:"cloneChildren"};var Countries={toIso2:function toIso2(code){var ctry=this.find(code);return null!=ctry?ctry.iso2:void 0},toIso3:function toIso3(code){var ctry=this.find(code);return null!=ctry?ctry.iso3:void 0},emoji:function emoji(code){var ctry=this.find(code);return null!=ctry?ctry.emoji:"🏳️"},name:function name(code){var ctry=this.find(code);return null!=ctry?ctry.name:code},find:function find(code){return this.list.find((function(ct){var _ct$alt;return(null!==(_ct$alt=ct.alt)&&void 0!==_ct$alt?_ct$alt:"__").toLowerCase()===code.toLowerCase()||ct.iso3.toLowerCase()===code.toLowerCase()||ct.iso2.toLowerCase()===code.toLowerCase()}))},list:[{continent:"Asia",iso2:"AF",iso3:"AFG",alpha:"A",name:"Afghanistan",fullname:"The Islamic Republic of Afghanistan",capital:"Kabul",tld:".af",currency:"AFN",phone:"+93",emoji:"🇦🇫"},{continent:"Europe",iso2:"AL",iso3:"ALB",alpha:"A",name:"Albania",fullname:"The Republic of Albania",capital:"Tirana",tld:".al",currency:"ALL",phone:"+355",emoji:"🇦🇱"},{continent:"Africa",iso2:"DZ",iso3:"DZA",alpha:"A",name:"Algeria",fullname:"The People's Democratic Republic of Algeria",capital:"Algiers",tld:".dz",currency:"DZD",phone:"+213",emoji:"🇩🇿"},{continent:"Oceania",iso2:"AS",iso3:"ASM",alpha:"A",name:"American Samoa",fullname:"American Samoa",capital:"Pago Pago",tld:".as",currency:"USD",phone:"+1684",emoji:"🇦🇸"},{continent:"Europe",iso2:"AD",iso3:"AND",alpha:"A",name:"Andorra",fullname:"The Principality of Andorra",capital:"Andorra la Vella",tld:".ad",currency:"EUR",phone:"+376",emoji:"🇦🇩"},{continent:"Africa",iso2:"AO",iso3:"AGO",alpha:"A",name:"Angola",fullname:"The Republic of Angola",capital:"Luanda",tld:".ao",currency:"AOA",phone:"+244",emoji:"🇦🇴"},{continent:"North America",iso2:"AI",iso3:"AIA",alpha:"A",name:"Anguilla",fullname:"Anguilla",capital:"The Valley",tld:".ai",currency:"XCD",phone:"+1264",emoji:"🇦🇮"},{continent:"North America",iso2:"AG",iso3:"ATG",alpha:"A",name:"Antigua And Barbuda",fullname:"Antigua and Barbuda",capital:"Saint John’s",tld:".ag",currency:"XCD",phone:"+1268",emoji:"🇦🇬"},{continent:"South America",iso2:"AR",iso3:"ARG",alpha:"A",name:"Argentina",fullname:"The Argentine Republic",capital:"Buenos Aires",tld:".ar",currency:"ARS",phone:"+54",emoji:"🇦🇷"},{continent:"Asia",iso2:"AM",iso3:"ARM",alpha:"A",name:"Armenia",fullname:"The Republic of Armenia",capital:"Yerevan",tld:".am",currency:"AMD",phone:"+374",emoji:"🇦🇲"},{continent:"North America",iso2:"AW",iso3:"ABW",alpha:"A",name:"Aruba",fullname:"Aruba",capital:"Oranjestad",tld:".aw",currency:"ANG",phone:"+297",emoji:"🇦🇼"},{continent:"Oceania",iso2:"AU",iso3:"AUS",alpha:"A",name:"Australia",fullname:"Australia",capital:"Canberra",tld:".au",currency:"AUD",phone:"+61",emoji:"🇦🇺"},{continent:"Europe",iso2:"AT",iso3:"AUT",alpha:"A",name:"Austria",fullname:"The Republic of Austria",capital:"Vienna",tld:".at",currency:"EUR",phone:"+43",emoji:"🇦🇹"},{continent:"Asia",iso2:"AZ",iso3:"AZE",alpha:"A",name:"Azerbaijan",fullname:"The Republic of Azerbaijan",capital:"Baku",tld:".az",currency:"AZN",phone:"+994",emoji:"🇦🇿"},{continent:"North America",iso2:"BS",iso3:"BHS",alpha:"B",name:"Bahamas",fullname:"The Commonwealth of the Bahamas",capital:"Nassau",tld:".bs",currency:"BSD",phone:"+1242",emoji:"🇧🇸"},{continent:"Asia",iso2:"BH",iso3:"BHR",alpha:"B",name:"Bahrain",fullname:"The Kingdom of Bahrain",capital:"Manama",tld:".bh",currency:"BHD",phone:"+973",emoji:"🇧🇭"},{continent:"Asia",iso2:"BD",iso3:"BGD",alpha:"B",name:"Bangladesh",fullname:"The People's Republic of Bangladesh",capital:"Dhaka",tld:".bd",currency:"BDT",phone:"+880",emoji:"🇧🇩"},{continent:"North America",iso2:"BB",iso3:"BRB",alpha:"B",name:"Barbados",fullname:"Barbados",capital:"Bridgetown",tld:".bb",currency:"BBD",phone:"+1246",emoji:"🇧🇧"},{continent:"Europe",iso2:"BY",iso3:"BLR",alpha:"B",name:"Belarus",fullname:"The Republic of Belarus",capital:"Minsk",tld:".by",currency:"BYR",phone:"+375",emoji:"🇧🇾"},{continent:"Europe",iso2:"BE",iso3:"BEL",alpha:"B",name:"Belgium",fullname:"The Kingdom of Belgium",capital:"Brussels",tld:".be",currency:"EUR",phone:"+32",emoji:"🇧🇪"},{continent:"North America",iso2:"BZ",iso3:"BLZ",alpha:"B",name:"Belize",fullname:"Belize",capital:"Belmopan",tld:".bz",currency:"BZD",phone:"+51",emoji:"🇧🇿"},{continent:"Africa",iso2:"BJ",iso3:"BEN",alpha:"B",name:"Benin",fullname:"The Republic of Benin",capital:"Porto-novo",tld:".bj",currency:"XOF",phone:"+229",emoji:"🇧🇯"},{continent:"North America",iso2:"BM",iso3:"BMU",alpha:"B",name:"Bermuda",fullname:"Bermuda",capital:"Hamilton",tld:".bm",currency:"BMD",phone:"+1441",emoji:"🇧🇲"},{continent:"Asia",iso2:"BT",iso3:"BTN",alpha:"B",name:"Bhutan",fullname:"The Kingdom of Bhutan",capital:"Thimphu",tld:".bt",currency:"BTN",phone:"+975",emoji:"🇧🇹"},{continent:"South America",iso2:"BO",iso3:"BOL",alpha:"B",name:"Bolivia",fullname:"The Plurinational State of Bolivia",capital:"La Paz",tld:".bo",currency:"BOB",phone:"+591",emoji:"🇧🇴"},{continent:"Europe",iso2:"BA",iso3:"BIH",alpha:"B",name:"Bosnia And Herzegovina",fullname:"Bosnia and Herzegovina",capital:"Sarajevo",tld:".ba",currency:"BAM",phone:"+387",emoji:"🇧🇦"},{continent:"Africa",iso2:"BW",iso3:"BWA",alpha:"B",name:"Botswana",fullname:"The Republic of Botswana",capital:"Gaborone",tld:".bw",currency:"BWP",phone:"+267",emoji:"🇧🇼"},{continent:"South America",iso2:"BR",iso3:"BRA",alpha:"B",name:"Brazil",fullname:"The Federative Republic of Brazil",capital:"Brasilia",tld:".br",currency:"BRL",phone:"+55",emoji:"🇧🇷"},{continent:"Asia",iso2:"BN",iso3:"BRN",alpha:"B",name:"Brunei Darussalam",fullname:"Brunei Darussalam",capital:"Bandar Seri Begawan",tld:".bn",currency:"BND",phone:"+673",emoji:"🇧🇳"},{continent:"Europe",iso2:"BG",iso3:"BGR",alpha:"B",name:"Bulgaria",fullname:"The Republic of Bulgaria",capital:"Sofia",tld:".bg",currency:"BGN",phone:"+359",emoji:"🇧🇬"},{continent:"Africa",iso2:"BF",iso3:"BFA",alpha:"B",name:"Burkina Faso",fullname:"Burkina Faso",capital:"Ouagadougou",tld:".bf",currency:"XOF",phone:"+226",emoji:"🇧🇫"},{continent:"Africa",iso2:"BI",iso3:"BDI",alpha:"B",name:"Burundi",fullname:"The Republic of Burundi",capital:"Bujumbura",tld:".bi",currency:"BIF",phone:"+257",emoji:"🇧🇮"},{continent:"Asia",iso2:"KH",iso3:"KHM",alpha:"C",name:"Cambodia",fullname:"The Kingdom of Cambodia",capital:"Phnom Penh",tld:".kh",currency:"KHR",phone:"+855",emoji:"🇰🇭"},{continent:"Africa",iso2:"CM",iso3:"CMR",alpha:"C",name:"Cameroon",fullname:"The Republic of Cameroon",capital:"Yaounde",tld:".cm",currency:"XAF",phone:"+237",emoji:"🇨🇲"},{continent:"North America",iso2:"CA",iso3:"CAN",alpha:"C",name:"Canada",fullname:"Canada",capital:"Ottawa",tld:".ca",currency:"CAD",phone:"+1",emoji:"🇨🇦"},{continent:"Africa",iso2:"CV",iso3:"CPV",alpha:"C",name:"Cape Verde",fullname:"Republic of Cabo Verde",capital:"Praia",tld:".cv",currency:"CVE",phone:"+238",emoji:"🇨🇻"},{continent:"North America",iso2:"KY",iso3:"CYM",alpha:"C",name:"Cayman Islands",fullname:"Cayman Islands",capital:"George Town",tld:".ky",currency:"KYD",phone:"+1345",emoji:"🇰🇾"},{continent:"Africa",iso2:"CF",iso3:"CAF",alpha:"C",name:"Central African Republic",fullname:"The Central African Republic",capital:"Bangui",tld:".cf",currency:"XAF",phone:"+236",emoji:"🇨🇫"},{continent:"Africa",iso2:"TD",iso3:"TCD",alpha:"C",name:"Chad",fullname:"The Republic of Chad",capital:"n'Djamena",tld:".td",currency:"XAF",phone:"+235",emoji:"🇹🇩"},{continent:"South America",iso2:"CL",iso3:"CHL",alpha:"C",name:"Chile",fullname:"The Republic of Chile",capital:"Santiago",tld:".cl",currency:"CLP",phone:"+56",emoji:"🇨🇱"},{continent:"Asia",iso2:"CN",iso3:"CHN",alpha:"C",name:"China",fullname:"The People's Republic of China",capital:"Beijing",tld:".cn",currency:"CNY",phone:"+86",emoji:"🇨🇳"},{continent:"South America",iso2:"CO",iso3:"COL",alpha:"C",name:"Colombia",fullname:"The Republic of Colombia",capital:"Bogotá",tld:".co",currency:"COP",phone:"+57",emoji:"🇨🇴"},{continent:"Africa",iso2:"KM",iso3:"COM",alpha:"C",name:"Comoros",fullname:"The Union of the Comoros",capital:"Moroni",tld:".km",currency:"KMF",phone:"+269",emoji:"🇰🇲"},{continent:"Africa",iso2:"CG",iso3:"COG",alpha:"C",name:"Congo",fullname:"The Republic of the Congo",capital:"Brazzaville",tld:".cg",currency:"XAF",phone:"+242",emoji:"🇨🇬"},{continent:"Oceania",iso2:"CK",iso3:"COK",alpha:"C",name:"Cook Islands",fullname:"The Cook Islands",capital:"Avarua",tld:".ck",currency:"NZD",phone:"+682",emoji:"🇨🇰"},{continent:"North America",iso2:"CR",iso3:"CRI",alpha:"C",name:"Costa Rica",fullname:"The Republic of Costa Rica",capital:"San Jose",tld:".cr",currency:"CRC",phone:"+56",emoji:"🇨🇷"},{continent:"Africa",iso2:"CI",iso3:"CIV",alpha:"C",name:"Côte D'ivoire",fullname:"The Republic of Côte d'Ivoire",capital:"Yamoussoukro",tld:".ci",currency:"XOF",phone:"+225",emoji:"🇨🇮"},{continent:"Europe",iso2:"HR",iso3:"HRV",alpha:"C",name:"Croatia",fullname:"The Republic of Croatia",capital:"Zagreb",tld:".hr",currency:"HRK",phone:"+385",emoji:"🇭🇷"},{continent:"North America",iso2:"CU",iso3:"CUB",alpha:"C",name:"Cuba",fullname:"The Republic of Cuba",capital:"Havana",tld:".cu",currency:"CUP",phone:"+53",emoji:"🇨🇺"},{continent:"Asia",iso2:"CY",iso3:"CYP",alpha:"C",name:"Cyprus",fullname:"The Republic of Cyprus",capital:"Nicosia",tld:".cy",currency:"CYP",phone:"+357",emoji:"🇨🇾"},{continent:"Europe",iso2:"CZ",iso3:"CZE",alpha:"C",name:"Czech Republic",fullname:"The Czech Republic",capital:"Prague",tld:".cz",currency:"CZK",phone:"+420",emoji:"🇨🇿"},{continent:"Europe",iso2:"DK",iso3:"DNK",alpha:"D",name:"Denmark",fullname:"The Kingdom of Denmark",capital:"Copenhagen",tld:".dk",currency:"DKK",phone:"+45",emoji:"🇩🇰"},{continent:"Africa",iso2:"DJ",iso3:"DJI",alpha:"D",name:"Djibouti",fullname:"The Republic of Djibouti",capital:"Djibouti",tld:"dj",currency:"DJF",phone:"+253",emoji:"🇩🇯"},{continent:"North America",iso2:"DM",iso3:"DMA",alpha:"D",name:"Dominica",fullname:"The Commonwealth of Dominica",capital:"Roseau",tld:".dm",currency:"XCD",phone:"+1767",emoji:"🇩🇲"},{continent:"South America",iso2:"DO",iso3:"DOM",alpha:"D",name:"Dominican Republic",fullname:"The Dominican Republic",capital:"Santo Domingo",tld:".do",currency:"DOP",phone:"+1809",emoji:"🇩🇴"},{continent:"Africa",iso2:"CD",iso3:"COD",alpha:"D",name:"DR Congo",fullname:"The Democratic Republic of the Congo",capital:"Kinshasa",tld:".cd",currency:"CDF",phone:"+243",emoji:"🇨🇩"},{continent:"Oceania",iso2:"TL",iso3:"TLS",alpha:"E",name:"East Timor",fullname:"The Democratic Republic of Timor-Leste",capital:"Dilli",tld:".tl",currency:"IDR",phone:"+670",emoji:"🇹🇱"},{continent:"South America",iso2:"EC",iso3:"ECU",alpha:"E",name:"Ecuador",fullname:"The Republic of Ecuador",capital:"Quito",tld:".ec",currency:"USD",phone:"+593",emoji:"🇪🇨"},{continent:"Africa",iso2:"EG",iso3:"EGY",alpha:"E",name:"Egypt",fullname:"The Arab Republic of Egypt",capital:"Cairo",tld:".eg",currency:"EGP",phone:"+20",emoji:"🇪🇬"},{continent:"North America",iso2:"SV",iso3:"SLV",alpha:"E",name:"El Salvador",fullname:"The Republic of el Salvador",capital:"San Salvador",tld:".sv",currency:"SVC",phone:"+53",emoji:"🇸🇻"},{continent:"Africa",iso2:"GQ",iso3:"GNQ",alpha:"E",name:"Equatorial Guinea",fullname:"The Republic of Equatorial Guinea",capital:"Malabo",tld:".gq",currency:"XAF",phone:"+240",emoji:"🇬🇶"},{continent:"Africa",iso2:"ER",iso3:"ERI",alpha:"E",name:"Eritrea",fullname:"The State of Eritrea",capital:"Asmara",tld:".er",currency:"ERN",phone:"+291",emoji:"🇪🇷"},{continent:"Europe",iso2:"EE",iso3:"EST",alpha:"E",name:"Estonia",fullname:"The Republic of Estonia",capital:"Tallinn",tld:".ee",currency:"EEK",phone:"+372",emoji:"🇪🇪"},{continent:"Africa",iso2:"ET",iso3:"ETH",alpha:"E",name:"Ethiopia",fullname:"The Federal Democratic Republic of Ethiopia",capital:"Addis Ababa",tld:".et",currency:"ETB",phone:"+251",emoji:"🇪🇹"},{continent:"Europe",iso2:"FO",iso3:"FRO",alpha:"F",name:"Faroe Islands",fullname:"Faroe Islands",capital:"Palikir",tld:".fo",currency:"DKK",phone:"+298",emoji:"🇫🇴"},{continent:"Oceania",iso2:"FJ",iso3:"FJI",alpha:"F",name:"Fiji",fullname:"The Republic of Fiji",capital:"Suva",tld:".fj",currency:"FJD",phone:"+679",emoji:"🇫🇯"},{continent:"Europe",iso2:"FI",iso3:"FIN",alpha:"F",name:"Finland",fullname:"The Republic of Finland",capital:"Helsinki",tld:".fi",currency:"EUR",phone:"+358",emoji:"🇫🇮"},{continent:"Europe",iso2:"FR",iso3:"FRA",alpha:"F",name:"France",fullname:"The French Republic",capital:"Paris",tld:".fr",currency:"EUR",phone:"+33",emoji:"🇫🇷"},{continent:"South America",iso2:"GF",iso3:"GUF",alpha:"F",name:"French Guyana",fullname:"French Guyana",capital:"Cayenne",tld:".gf",currency:"EUR",phone:"+594",emoji:"🇬🇫"},{continent:"Oceania",iso2:"PF",iso3:"PYF",alpha:"F",name:"French Polynesia",fullname:"French Polynesia",capital:"Papeete",tld:".pf",currency:"XPF",phone:"+689",emoji:"🇵🇫"},{continent:"Africa",iso2:"GA",iso3:"GAB",alpha:"G",name:"Gabon",fullname:"The Gabonese Republic",capital:"Libreville",tld:".ga",currency:"XAF",phone:"+241",emoji:"🇬🇦"},{continent:"Africa",iso2:"GM",iso3:"GMB",alpha:"G",name:"Gambia",fullname:"The Republic of the Gambia",capital:"Banjul",tld:".gm",currency:"GMD",phone:"+220",emoji:"🇬🇲"},{continent:"Europe",iso2:"GE",iso3:"GEO",alpha:"G",name:"Georgia",fullname:"Georgia",capital:"Tbilisi",tld:".ge",currency:"GEL",phone:"+995",emoji:"🇬🇪"},{continent:"Europe",iso2:"DE",iso3:"DEU",alpha:"G",name:"Germany",fullname:"The Federal Republic of Germany",capital:"Berlin",tld:".de",currency:"EUR",phone:"+49",emoji:"🇩🇪"},{continent:"Africa",iso2:"GH",iso3:"GHA",alpha:"G",name:"Ghana",fullname:"The Republic of Ghana",capital:"Accra",tld:".gh",currency:"GHC",phone:"+233",emoji:"🇬🇭"},{continent:"Africa",iso2:"GI",iso3:"GIB",alpha:"G",name:"Gibraltar",fullname:"Gibraltar",capital:"Gibraltar",tld:".gi",currency:"GIP",phone:"+350",emoji:"🇬🇮"},{continent:"Europe",iso2:"GR",iso3:"GRC",alpha:"G",name:"Greece",fullname:"The Hellenic Republic",capital:"Athens",tld:".gr",currency:"EUR",phone:"+30",emoji:"🇬🇷"},{continent:"North America",iso2:"GL",iso3:"GRL",alpha:"G",name:"Greenland",fullname:"Greenland",capital:"Nuuk",tld:".gl",currency:"DKK",phone:"+299",emoji:"🇬🇱"},{continent:"North America",iso2:"GD",iso3:"GRD",alpha:"G",name:"Grenada",fullname:"Grenada",capital:"Saint George’s",tld:".gd",currency:"XCD",phone:"+1473",emoji:"🇬🇩"},{continent:"North America",iso2:"GP",iso3:"GLP",alpha:"G",name:"Guadeloupe",fullname:"Guadeloupe",capital:"Basse-Terre",tld:".gp",currency:"EUR",phone:"+590",emoji:"🇬🇵"},{continent:"Asia",iso2:"GU",iso3:"GUM",alpha:"G",name:"Guam",fullname:"Guam",capital:"Hagåtña",tld:".gu",currency:"USD",phone:"+1671",emoji:"🇬🇺"},{continent:"North America",iso2:"GT",iso3:"GTM",alpha:"G",name:"Guatemala",fullname:"The Republic of Guatemala",capital:"Guatemala City",tld:".gt",currency:"GTQ",phone:"+52",emoji:"🇬🇹"},{continent:"Europe",iso2:"GG",iso3:"GGY",alpha:"G",name:"Guernsey",fullname:"Guernsey",capital:"St. Peter Port",tld:".gg",currency:"GGP",phone:"+44",emoji:"🇬🇬"},{continent:"Africa",iso2:"GN",iso3:"GIN",alpha:"G",name:"Guinea",fullname:"The Republic of Guinea",capital:"Conakry",tld:".gn",currency:"GNF",phone:"+224",emoji:"🇬🇳"},{continent:"Africa",iso2:"GW",iso3:"GNB",alpha:"G",name:"Guinea-bissau",fullname:"The Republic of Guinea-bissau",capital:"Bissau",tld:".gw",currency:"XOF",phone:"+245",emoji:"🇬🇼"},{continent:"South America",iso2:"GY",iso3:"GUY",alpha:"G",name:"Guyana",fullname:"The Republic of Guyana",capital:"Georgetown",tld:".gy",currency:"GYD",phone:"+592",emoji:"🇬🇾"},{continent:"North America",iso2:"HT",iso3:"HTI",alpha:"H",name:"Haiti",fullname:"The Republic of Haiti",capital:"Port-au-prince",tld:".ht",currency:"USD",phone:"+59",emoji:"🇭🇹"},{continent:"North America",iso2:"HN",iso3:"HND",alpha:"H",name:"Honduras",fullname:"The Republic of Honduras",capital:"Tegucigalpa",tld:".hn",currency:"HNL",phone:"+54",emoji:"🇭🇳"},{continent:"Asia",iso2:"HK",iso3:"HKG",alpha:"H",name:"Hong Kong",fullname:"Hong Kong Special Administrative Region of the People's Republic of China",capital:"Hong Kong",tld:".hk",currency:"HNL",phone:"+852",emoji:"🇭🇰"},{continent:"Europe",iso2:"HU",iso3:"HUN",alpha:"H",name:"Hungary",fullname:"Hungary",capital:"Budapest",tld:".hu",currency:"HUF",phone:"+36",emoji:"🇭🇺"},{continent:"Europe",iso2:"IS",iso3:"ISL",alpha:"I",name:"Iceland",fullname:"The Republic of Iceland",capital:"Reykjavik",tld:".is",currency:"ISK",phone:"+354",emoji:"🇮🇸"},{continent:"Asia",iso2:"IN",iso3:"IND",alpha:"I",name:"India",fullname:"The Republic of India",capital:"New Delhi",tld:".in",currency:"INR",phone:"+91",emoji:"🇮🇳"},{continent:"Asia",iso2:"ID",iso3:"IDN",alpha:"I",name:"Indonesia",fullname:"The Republic of Indonesia",capital:"Jakarta",tld:".id",currency:"IDR",phone:"+62",emoji:"🇮🇩"},{continent:"Asia",iso2:"IR",iso3:"IRN",alpha:"I",name:"Iran",fullname:"The Islamic Republic of Iran",capital:"Tehran",tld:".ir",currency:"IRR",phone:"+98",emoji:"🇮🇷"},{continent:"Asia",iso2:"IQ",iso3:"IRQ",alpha:"I",name:"Iraq",fullname:"The Republic of Iraq",capital:"Baghdad",tld:".iq",currency:"IQD",phone:"+964",emoji:"🇮🇶"},{continent:"Europe",iso2:"IE",iso3:"IRL",alpha:"I",name:"Ireland",fullname:"Ireland",capital:"Dublin",tld:".ie",currency:"EUR",phone:"+353",emoji:"🇮🇪"},{continent:"Europe",iso2:"IM",iso3:"IMN",alpha:"I",name:"Isle Of Man",fullname:"Isle Of Man",capital:"Douglas",tld:".im",currency:"IMP",phone:"+44",emoji:"🇮🇲"},{continent:"Asia",iso2:"IL",iso3:"ISR",alpha:"I",name:"Israel",fullname:"The State of Israel",capital:"Tel Aviv",tld:".il",currency:"ILS",phone:"+972",emoji:"🇮🇱"},{continent:"Europe",iso2:"IT",iso3:"ITA",alpha:"I",name:"Italy",fullname:"The Republic of Italy",capital:"Rome",tld:".it",currency:"EUR",phone:"+39",emoji:"🇮🇹"},{continent:"North America",iso2:"JM",iso3:"JAM",alpha:"J",name:"Jamaica",fullname:"Jamaica",capital:"Kingston",tld:".jm",currency:"JMD",phone:"+1876",emoji:"🇯🇲"},{continent:"Asia",iso2:"JP",iso3:"JPN",alpha:"J",name:"Japan",fullname:"Japan",capital:"Tokyo",tld:".jp",currency:"JPY",phone:"+81",emoji:"🇯🇵"},{continent:"Europe",iso2:"JE",iso3:"JEY",alpha:"J",name:"Jersey",fullname:"Jersey",capital:"Saint Helier",tld:".je",currency:"JEP",phone:"+44",emoji:"🇯🇪"},{continent:"Asia",iso2:"JO",iso3:"JOR",alpha:"J",name:"Jordan",fullname:"The Hashemite Kingdom of Jordan",capital:"Amman",tld:".jo",currency:"JOD",phone:"+962",emoji:"🇯🇴"},{continent:"Asia",iso2:"KZ",iso3:"KAZ",alpha:"K",name:"Kazakhstan",fullname:"The Republic of Kazakhstan",capital:"Astana",tld:".kz",currency:"KZT",phone:"+7",emoji:"🇰🇿"},{continent:"Africa",iso2:"KE",iso3:"KEN",alpha:"K",name:"Kenya",fullname:"The Republic of Kenya",capital:"Nairobi",tld:".ke",currency:"KES",phone:"+254",emoji:"🇰🇪"},{continent:"Oceania",iso2:"KI",iso3:"KIR",alpha:"K",name:"Kiribati",fullname:"The Republic of Kiribati",capital:"Tarawa Atoll",tld:".ki",currency:"AUD",phone:"+686",emoji:"🇰🇮"},{continent:"Asia",iso2:"KW",iso3:"KWT",alpha:"K",name:"Kuwait",fullname:"The State of Kuwait",capital:"Kuwait City",tld:".kw",currency:"KWD",phone:"+965",emoji:"🇰🇼"},{continent:"Asia",iso2:"KG",iso3:"KGZ",alpha:"K",name:"Kyrgyzstan",fullname:"The Kyrgyz Republic",capital:"Bishkek",tld:".kg",currency:"KGS",phone:"+996",emoji:"🇰🇬"},{continent:"Asia",iso2:"LA",iso3:"LAO",alpha:"L",name:"Laos",fullname:"The Lao People's Democratic Republic",capital:"Vientiane",tld:".la",currency:"LAK",phone:"+856",emoji:"🇱🇦"},{continent:"Europe",iso2:"LV",iso3:"LVA",alpha:"L",name:"Latvia",fullname:"The Republic of Latvia",capital:"Riga",tld:".lv",currency:"LVL",phone:"+371",emoji:"🇱🇻"},{continent:"Asia",iso2:"LB",iso3:"LBN",alpha:"L",name:"Lebanon",fullname:"The Lebanese Republic",capital:"Beirut",tld:".lb",currency:"LBP",phone:"+961",emoji:"🇱🇧"},{continent:"Africa",iso2:"LS",iso3:"LSO",alpha:"L",name:"Lesotho",fullname:"The Kingdom of Lesotho",capital:"Maseru",tld:".ls",currency:"LSL",phone:"+266",emoji:"🇱🇸"},{continent:"Africa",iso2:"LR",iso3:"LBR",alpha:"L",name:"Liberia",fullname:"The Republic of Liberia",capital:"Monrovia",tld:".lr",currency:"LRD",phone:"+231",emoji:"🇱🇷"},{continent:"Africa",iso2:"LY",iso3:"LBY",alpha:"L",name:"Libya",fullname:"Libya",capital:"Tripoli",tld:".ly",currency:"LYD",phone:"+218",emoji:"🇱🇾"},{continent:"Europe",iso2:"LI",iso3:"LIE",alpha:"L",name:"Liechtenstein",fullname:"The Principality of Liechtenstein",capital:"Vaduz",tld:".li",currency:"CHF",phone:"+423",emoji:"🇱🇮"},{continent:"Europe",iso2:"LT",iso3:"LTU",alpha:"L",name:"Lithuania",fullname:"The Republic of Lithuania",capital:"Vilnius",tld:".lt",currency:"LTL",phone:"+370",emoji:"🇱🇹"},{continent:"Europe",iso2:"LU",iso3:"LUX",alpha:"L",name:"Luxembourg",fullname:"The Grand Duchy of Luxembourg",capital:"Luxembourg",tld:".lu",currency:"EUR",phone:"+352",emoji:"🇱🇺"},{continent:"Asia",iso2:"MO",iso3:"MAC",alpha:"M",name:"Macao",fullname:"Macao Special Administrative Region of the People's Republic of China",capital:"Macao",tld:".mo",currency:"MOP",phone:"+853",emoji:"🇲🇴"},{continent:"Europe",iso2:"MK",iso3:"MKD",alpha:"M",name:"Macedonia",fullname:"The Former Yugoslav Republic of Macedonia",capital:"Skopje",tld:".mk",currency:"MKD",phone:"+389",emoji:"🇲🇰"},{continent:"Africa",iso2:"MG",iso3:"MDG",alpha:"M",name:"Madagascar",fullname:"The Republic of Madagascar",capital:"Antananarivo",tld:".mg",currency:"MGA",phone:"+261",emoji:"🇲🇬"},{continent:"Africa",iso2:"MW",iso3:"MWI",alpha:"M",name:"Malawi",fullname:"The Republic of Malawi",capital:"Lilongwe",tld:".mw",currency:"MWK",phone:"+265",emoji:"🇲🇼"},{continent:"Asia",iso2:"MY",iso3:"MYS",alpha:"M",name:"Malaysia",fullname:"Malaysia",capital:"Kuala Lumpur",tld:".my",currency:"MYR",phone:"+60",emoji:"🇲🇾"},{continent:"Asia",iso2:"MV",iso3:"MDV",alpha:"M",name:"Maldives",fullname:"The Republic of Maldives",capital:"Male",tld:".mv",currency:"MVR",phone:"+960",emoji:"🇲🇻"},{continent:"Africa",iso2:"ML",iso3:"MLI",alpha:"M",name:"Mali",fullname:"The Republic of Mali",capital:"Bamako",tld:".ml",currency:"XOF",phone:"+223",emoji:"🇲🇱"},{continent:"Europe",iso2:"MT",iso3:"MLT",alpha:"M",name:"Malta",fullname:"The Republic of Malta",capital:"Valletta",tld:".mt",currency:"EUR",phone:"+356",emoji:"🇲🇹"},{continent:"Oceania",iso2:"MH",iso3:"MHL",alpha:"M",name:"Marshall Islands",fullname:"The Republic of the Marshall Islands",capital:"Majuro",tld:".mh",currency:"USD",phone:"+692",emoji:"🇲🇭"},{continent:"North America",iso2:"MQ",iso3:"MTQ",alpha:"M",name:"Martinique",fullname:"Martinique",capital:"Fort-de-France",tld:".mq",currency:"EUR",phone:"+596",emoji:"🇲🇶"},{continent:"Africa",iso2:"MR",iso3:"MRT",alpha:"M",name:"Mauritania",fullname:"The Islamic Republic of Mauritania",capital:"Nouakchott",tld:".mr",currency:"MRO",phone:"+222",emoji:"🇲🇷"},{continent:"Africa",iso2:"MU",iso3:"MUS",alpha:"M",name:"Mauritius",fullname:"The Republic of Mauritius",capital:"Port Louis",tld:".mu",currency:"MUR",phone:"+230",emoji:"🇲🇺"},{continent:"Africa",iso2:"YT",iso3:"MYT",alpha:"M",name:"Mayotte",fullname:"The Department of Mayotte",capital:"Mamoudzou",tld:".yt",currency:"EUR",phone:"+269",emoji:"🇾🇹"},{continent:"North America",iso2:"MX",iso3:"MEX",alpha:"M",name:"Mexico",fullname:"The United Mexican States",capital:"Mexico City",tld:".mx",currency:"MXN",phone:"+52",emoji:"🇲🇽"},{continent:"Oceania",iso2:"FM",iso3:"FSM",alpha:"M",name:"Micronesia",fullname:"The Federated States of Micronesia",capital:"Palikir",tld:".fm",currency:"USD",phone:"+691",emoji:"🇫🇲"},{continent:"Europe",iso2:"MD",iso3:"MDA",alpha:"M",name:"Moldova",fullname:"The Republic of Moldova",capital:"Chisinau",tld:".md",currency:"MDL",phone:"+373",emoji:"🇲🇩"},{continent:"Europe",iso2:"MC",iso3:"MCO",alpha:"M",name:"Monaco",fullname:"The Principality of Monaco",capital:"Monaco",tld:".mc",currency:"EUR",phone:"+377",emoji:"🇲🇨"},{continent:"Asia",iso2:"MN",iso3:"MNG",alpha:"M",name:"Mongolia",fullname:"Mongolia",capital:"Ulaanbaatar",tld:".mn",currency:"MNT",phone:"+976",emoji:"🇲🇳"},{continent:"Europe",iso2:"ME",iso3:"MNE",alpha:"M",name:"Montenegro",fullname:"Montenegro",capital:"Podgorica",tld:".me",currency:"EUR",phone:"+382",emoji:"🇲🇪"},{continent:"North America",iso2:"MS",iso3:"MSR",alpha:"M",name:"Montserrat",fullname:"Montserrat",capital:"Plymouth",tld:".ms",currency:"XCD",phone:"+1664",emoji:"🇲🇸"},{continent:"Africa",iso2:"MA",iso3:"MAR",alpha:"M",name:"Morocco",fullname:"The Kingdom of Morocco",capital:"Rabat",tld:".ma",currency:"MAD",phone:"+211",emoji:"🇲🇦"},{continent:"Africa",iso2:"MZ",iso3:"MOZ",alpha:"M",name:"Mozambique",fullname:"The Republic of Mozambique",capital:"Maputo",tld:".mz",currency:"MZM",phone:"+258",emoji:"🇲🇿"},{continent:"Asia",iso2:"MM",iso3:"MMR",alpha:"M",name:"Myanmar",fullname:"The Republic of the Union of Myanmar",capital:"Nypyidaw",tld:".mm",currency:"MMK",phone:"+95",emoji:"🇲🇲"},{continent:"Africa",iso2:"NA",iso3:"NAM",alpha:"N",name:"Namibia",fullname:"The Republic of Namibia",capital:"Windhoek",tld:".na",currency:"ZAR",phone:"+264",emoji:"🇳🇦"},{continent:"Oceania",iso2:"NR",iso3:"NRU",alpha:"N",name:"Nauru",fullname:"The Republic of Nauru",capital:"Yaren District",tld:".nr",currency:"AUD",phone:"+674",emoji:"🇳🇷"},{continent:"Asia",iso2:"NP",iso3:"NPL",alpha:"N",name:"Nepal",fullname:"The Federal Democratic Republic of Nepal",capital:"Kathmandu",tld:".np",currency:"NPR",phone:"+977",emoji:"🇳🇵"},{continent:"Europe",iso2:"NL",iso3:"NLD",alpha:"N",name:"Netherlands",fullname:"The Kingdom of the Netherlands",capital:"Amsterdam",tld:".nl",currency:"EUR",phone:"+31",emoji:"🇳🇱"},{continent:"Oceania",iso2:"NZ",iso3:"NZL",alpha:"N",name:"New Zealand",fullname:"New Zealand",capital:"Wellington",tld:".nz",currency:"NZD",phone:"+64",emoji:"🇳🇿"},{continent:"North America",iso2:"NI",iso3:"NIC",alpha:"N",name:"Nicaragua",fullname:"The Republic of Nicaragua",capital:"Managua",tld:".ni",currency:"NIO",phone:"+55",emoji:"🇳🇮"},{continent:"Africa",iso2:"NE",iso3:"NER",alpha:"N",name:"Niger",fullname:"The Republic of the Niger",capital:"Niamey",tld:".ne",currency:"XOF",phone:"+227",emoji:"🇳🇪"},{continent:"Africa",iso2:"NG",iso3:"NGA",alpha:"N",name:"Nigeria",fullname:"The Federal Republic of Nigeria",capital:"Abuja",tld:".ng",currency:"NGN",phone:"+234",emoji:"🇳🇬"},{continent:"Asia",iso2:"KP",iso3:"PRK",alpha:"N",name:"North Korea",fullname:"The Democratic People's Republic of Korea",capital:"Pyongyang",tld:".kp",currency:"KPW",phone:"+850",emoji:"🇰🇵"},{continent:"Europe",iso2:"NO",iso3:"NOR",alpha:"N",name:"Norway",fullname:"The Kingdom of Norway",capital:"Oslo",tld:".no",currency:"NOK",phone:"+47",emoji:"🇳🇴"},{continent:"Asia",iso2:"OM",iso3:"OMN",alpha:"O",name:"Oman",fullname:"The Sultanate of Oman",capital:"Muscat",tld:".om",currency:"OMR",phone:"+968",emoji:"🇴🇲"},{continent:"Asia",iso2:"PK",iso3:"PAK",alpha:"P",name:"Pakistan",fullname:"The Islamic Republic of Pakistan",capital:"Islamabad",tld:".pk",currency:"PKR",phone:"+92",emoji:"🇵🇰"},{continent:"Oceania",iso2:"PW",iso3:"PLW",alpha:"P",name:"Palau",fullname:"The Republic of Palau",capital:"Ngerulmud",tld:".pw",currency:"USD",phone:"+680",emoji:"🇵🇼"},{continent:"Asia",iso2:"PS",iso3:"PSE",alpha:"P",name:"Palestine",fullname:"The State of Palestine",capital:"Ramallah",tld:".ps",currency:"",phone:"+970",emoji:"🇵🇸"},{continent:"South America",iso2:"PA",iso3:"PAN",alpha:"P",name:"Panama",fullname:"The Republic of Panama",capital:"Panama City",tld:".pa",currency:"USD",phone:"+57",emoji:"🇵🇦"},{continent:"Oceania",iso2:"PG",iso3:"PNG",alpha:"P",name:"Papua New Guinea",fullname:"Independent State of Papua New Guinea",capital:"Port Moresby",tld:".pg",currency:"PGK",phone:"+675",emoji:"🇵🇬"},{continent:"South America",iso2:"PY",iso3:"PRY",alpha:"P",name:"Paraguay",fullname:"The Republic of Paraguay",capital:"Asunción",tld:".py",currency:"PYG",phone:"+595",emoji:"🇵🇾"},{continent:"South America",iso2:"PE",iso3:"PER",alpha:"P",name:"Peru",fullname:"The Republic of Peru",capital:"Lima",tld:".pe",currency:"PEN",phone:"+51",emoji:"🇵🇪"},{continent:"Asia",iso2:"PH",iso3:"PHL",alpha:"P",name:"Philippines",fullname:"The Republic of the Philippines",capital:"Manila",tld:".ph",currency:"PHP",phone:"+63",emoji:"🇵🇭"},{continent:"Oceania",iso2:"PN",iso3:"PCN",alpha:"P",name:"Pitcairn",fullname:"Pitcairn",capital:"Adamstown",tld:".pn",currency:"NZD",phone:"+649",emoji:"🇵🇳"},{continent:"Europe",iso2:"PL",iso3:"POL",alpha:"P",name:"Poland",fullname:"The Republic of Poland",capital:"Warsaw",tld:".pl",currency:"PLN",phone:"+48",emoji:"🇵🇱"},{continent:"Europe",iso2:"PT",iso3:"PRT",alpha:"P",name:"Portugal",fullname:"The Portuguese Republic",capital:"Lisbon",tld:".pt",currency:"EUR",phone:"+351",emoji:"🇵🇹"},{continent:"North America",iso2:"PR",iso3:"PRI",alpha:"P",name:"Puerto Rico",fullname:"The Commonwealth of Puerto Rico",capital:"San Juan",tld:".pr",currency:"USD",phone:"+1939",emoji:"🇵🇷"},{continent:"Asia",iso2:"QA",iso3:"QAT",alpha:"Q",name:"Qatar",fullname:"The State of Qatar",capital:"Doha",tld:".qa",currency:"QAR",phone:"+974",emoji:"🇶🇦"},{continent:"Africa",iso2:"RE",iso3:"REU",alpha:"R",name:"Réunion",fullname:"Réunion",capital:"Saint-Denis",tld:".re",currency:"EUR",phone:"+262",emoji:"🇷🇪"},{continent:"Europe",iso2:"RO",iso3:"ROU",alpha:"R",name:"Romania",fullname:"Romania",capital:"Bucharest",tld:".ro",currency:"RON",phone:"+40",emoji:"🇷🇴"},{continent:"Asia",iso2:"RU",iso3:"RUS",alpha:"R",name:"Russia",fullname:"The Russian Federation",capital:"Moscow",tld:".ru",currency:"RUB",phone:"+7",emoji:"🇷🇺"},{continent:"Africa",iso2:"RW",iso3:"RWA",alpha:"R",name:"Rwanda",fullname:"The Republic of Rwanda",capital:"Kigali",tld:".rw",currency:"RWF",phone:"+250",emoji:"🇷🇼"},{continent:"Africa",iso2:"SH",iso3:"SHN",alpha:"S",name:"Saint Helena",fullname:"Saint Helena",capital:"Jamestown",tld:".sh",currency:"SHP",phone:"+290",emoji:"🇸🇭"},{continent:"North America",iso2:"KN",iso3:"KNA",alpha:"S",name:"Saint Kitts And Nevis",fullname:"Saint Kitts and Nevis",capital:"Basseterre",tld:".kn",currency:"XCD",phone:"+1869",emoji:"🇰🇳"},{continent:"South America",iso2:"LC",iso3:"LCA",alpha:"S",name:"Saint Lucia",fullname:"Saint Lucia",capital:"Castries",tld:".lc",currency:"XCD",phone:"+1758",emoji:"🇱🇨"},{continent:"North America",iso2:"PM",iso3:"SPM",alpha:"S",name:"Saint Pierre And Miquelon",fullname:"Saint Pierre And Miquelon",capital:"Saint-Pierre",tld:".pm",currency:"EUR",phone:"+508",emoji:"🇵🇲"},{continent:"South America",iso2:"VC",iso3:"VCT",alpha:"S",name:"Saint Vincent And The Grenadines",fullname:"Saint Vincent and the Grenadines",capital:"Kingstown",tld:".vc",currency:"XCD",phone:"+1784",emoji:"🇻🇨"},{continent:"Oceania",iso2:"WS",iso3:"WSM",alpha:"S",name:"Samoa",fullname:"The Independent State of Samoa",capital:"Apia",tld:".ws",currency:"WST",phone:"+685",emoji:"🇼🇸"},{continent:"Europe",iso2:"SM",iso3:"SMR",alpha:"S",name:"San Marino",fullname:"The Republic of San Marino",capital:"San Marino",tld:".sm",currency:"EUR",phone:"+378",emoji:"🇸🇲"},{continent:"Africa",iso2:"ST",iso3:"STP",alpha:"S",name:"São Tomé and Príncipe",fullname:"The Democratic Republic of São Tomé and Príncipe",capital:"São Tomé",tld:".st",currency:"STD",phone:"+239",emoji:"🇸🇹"},{continent:"Asia",iso2:"SA",iso3:"SAU",alpha:"S",name:"Saudi Arabia",fullname:"The Kingdom of Saudi Arabia",capital:"Riyadh",tld:".sa",currency:"SAR",phone:"+966",emoji:"🇸🇦"},{continent:"Africa",iso2:"SN",iso3:"SEN",alpha:"S",name:"Senegal",fullname:"The Republic of Senegal",capital:"Dakar",tld:".sn",currency:"XOF",phone:"+221",emoji:"🇸🇳"},{continent:"Europe",iso2:"RS",iso3:"SRB",alpha:"S",name:"Serbia",fullname:"The Republic of Serbia",capital:"Belgrade",tld:".cs",currency:"EUR",phone:"+381",emoji:"🇷🇸"},{continent:"Africa",iso2:"SC",iso3:"SYC",alpha:"S",name:"Seychelles",fullname:"The Republic of Seychelles",capital:"Victoria",tld:".sc",currency:"SCR",phone:"+248",emoji:"🇸🇨"},{continent:"Africa",iso2:"SL",iso3:"SLE",alpha:"S",name:"Sierra Leone",fullname:"The Republic of Sierra Leone",capital:"Freetown",tld:".sl",currency:"SLL",phone:"+232",emoji:"🇸🇱"},{continent:"Asia",iso2:"SG",iso3:"SGP",alpha:"S",name:"Singapore",fullname:"The Republic of Singapore",capital:"Singapore",tld:".sg",currency:"SGD",phone:"+65",emoji:"🇸🇬"},{continent:"Europe",iso2:"SK",iso3:"SVK",alpha:"S",name:"Slovakia",fullname:"The Slovak Republic",capital:"Bratislava",tld:".sk",currency:"SKK",phone:"+421",emoji:"🇸🇰"},{continent:"Europe",iso2:"SI",iso3:"SVN",alpha:"S",name:"Slovenia",fullname:"The Republic of Slovenia",capital:"Ljubljana",tld:".si",currency:"SIT",phone:"+386",emoji:"🇸🇮"},{continent:"Oceania",iso2:"SB",iso3:"SLB",alpha:"S",name:"Solomon Islands",fullname:"Solomon Islands",capital:"Honiara",tld:".sb",currency:"SBD",phone:"+677",emoji:"🇸🇧"},{continent:"Africa",iso2:"SO",iso3:"SOM",alpha:"S",name:"Somalia",fullname:"The Federal Republic of Somalia",capital:"Mogadishu",tld:".so",currency:"SOS",phone:"+252",emoji:"🇸🇴"},{continent:"Africa",iso2:"ZA",iso3:"ZAF",alpha:"S",name:"South Africa",fullname:"The Republic of South Africa",capital:"Pretoria",tld:".za",currency:"ZAR",phone:"+27",emoji:"🇿🇦"},{continent:"Asia",iso2:"KR",iso3:"KOR",alpha:"S",name:"South Korea",fullname:"The Republic of Korea",capital:"Seoul",tld:".kr",currency:"KRW",phone:"+82",emoji:"🇰🇷"},{continent:"Africa",iso2:"SS",iso3:"SSD",alpha:"S",name:"South Sudan",fullname:"The Republic of South Sudan",capital:"Juba",tld:".ss",currency:"SSP",phone:"+221",emoji:"🇸🇸"},{continent:"Europe",iso2:"ES",iso3:"ESP",alpha:"S",name:"Spain",fullname:"The Kingdom of Spain",capital:"Madrid",tld:".es",currency:"EUR",phone:"+34",emoji:"🇪🇸"},{continent:"Asia",iso2:"LK",iso3:"LKA",alpha:"S",name:"Sri Lanka",fullname:"The Democratic Socialist Republic of Sri Lanka",capital:"Colombo",tld:".lk",currency:"LKR",phone:"+94",emoji:"🇱🇰"},{continent:"Africa",iso2:"SD",iso3:"SDN",alpha:"S",name:"Sudan",fullname:"The Republic of the Sudan",capital:"Khartoum",tld:".sd",currency:"SDD",phone:"+249",emoji:"🇸🇩"},{continent:"South America",iso2:"SR",iso3:"SUR",alpha:"S",name:"Suriname",fullname:"The Republic of Suriname",capital:"Paramaribo",tld:".sr",currency:"SRD",phone:"+597",emoji:"🇸🇷"},{continent:"Africa",iso2:"SZ",iso3:"SWZ",alpha:"S",name:"Swaziland",fullname:"The Kingdom of Swaziland",capital:"Mbabane",tld:".sz",currency:"SZL",phone:"+268",emoji:"🇸🇿"},{continent:"Europe",iso2:"SE",iso3:"SWE",alpha:"S",name:"Sweden",fullname:"The Kingdom of Sweden",capital:"Stockholm",tld:".se",currency:"SEK",phone:"+46",emoji:"🇸🇪"},{continent:"Europe",iso2:"CH",iso3:"CHE",alpha:"S",name:"Switzerland",fullname:"The Swiss Confederation",capital:"Bern",tld:".ch",currency:"CHF",phone:"+41",emoji:"🇨🇭"},{continent:"Asia",iso2:"SY",iso3:"SYR",alpha:"S",name:"Syria",fullname:"The Syrian Arab Republic",capital:"Damascus",tld:".sy",currency:"SYP",phone:"+963",emoji:"🇸🇾"},{continent:"Asia",iso2:"TW",iso3:"TWN",alpha:"T",name:"Taiwan",fullname:"Taiwan",capital:"Taipei",tld:".tw",currency:"TWD",phone:"+886",emoji:"🇹🇼"},{continent:"Asia",iso2:"TJ",iso3:"TJK",alpha:"T",name:"Tajikistan",fullname:"The Republic of Tajikistan",capital:"Dushanbe",tld:".tj",currency:"RUB",phone:"+992",emoji:"🇹🇯"},{continent:"Africa",iso2:"TZ",iso3:"TZA",alpha:"T",name:"Tanzania",fullname:"The United Republic of Tanzania",capital:"Dar es Salaam",tld:".tz",currency:"TZS",phone:"+255",emoji:"🇹🇿"},{continent:"Asia",iso2:"TH",iso3:"THA",alpha:"T",name:"Thailand",fullname:"The Kingdom of Thailand",capital:"Bangkok",tld:".th",currency:"THB",phone:"+66",emoji:"🇹🇭"},{continent:"Africa",iso2:"TG",iso3:"TGO",alpha:"T",name:"Togo",fullname:"The Togolese Republic",capital:"Lomé",tld:".tg",currency:"XOF",phone:"+228",emoji:"🇹🇬"},{continent:"Oceania",iso2:"TO",iso3:"TON",alpha:"T",name:"Tonga",fullname:"The Kingdom of Tonga",capital:"Nukuʻalofa",tld:".to",currency:"TOP",phone:"+676",emoji:"🇹🇴"},{continent:"South America",iso2:"TT",iso3:"TTO",alpha:"T",name:"Trinidad And Tobago",fullname:"The Republic of Trinidad and Tobago",capital:"Port of Spain",tld:".tt",currency:"TTD",phone:"+1868",emoji:"🇹🇹"},{continent:"Africa",iso2:"TN",iso3:"TUN",alpha:"T",name:"Tunisia",fullname:"The Republic of Tunisia",capital:"Tunis",tld:".tn",currency:"TND",phone:"+216",emoji:"🇹🇳"},{continent:"Asia",iso2:"TR",iso3:"TUR",alpha:"T",name:"Turkey",fullname:"The Republic of Turkey",capital:"Ankara",tld:".tr",currency:"TRY",phone:"+90",emoji:"🇹🇷"},{continent:"Asia",iso2:"TM",iso3:"TKM",alpha:"T",name:"Turkmenistan",fullname:"Turkmenistan",capital:"Ashgabat",tld:".tm",currency:"TMM",phone:"+993",emoji:"🇹🇲"},{continent:"North America",iso2:"TC",iso3:"TCA",alpha:"T",name:"Turks and Caicos",fullname:"The Turks and Caicos Islands",capital:"Grand Turk (Cockburn Town)",tld:".tc",currency:"USD",phone:"+1649",emoji:"🇹🇨"},{continent:"Oceania",iso2:"TV",iso3:"TUV",alpha:"T",name:"Tuvalu",fullname:"Tuvalu",capital:"Funafuti",tld:".tv",currency:"TVD",phone:"+688",emoji:"🇹🇻"},{continent:"Africa",iso2:"UG",iso3:"UGA",alpha:"U",name:"Uganda",fullname:"The Republic of Uganda",capital:"Kampala",tld:".ug",currency:"UGX",phone:"+256",emoji:"🇺🇬"},{continent:"Europe",iso2:"UA",iso3:"UKR",alpha:"U",name:"Ukraine",fullname:"Ukraine",capital:"Kiev",tld:".ua",currency:"UAH",phone:"+380",emoji:"🇺🇦"},{continent:"Asia",iso2:"AE",iso3:"ARE",alt:"UAE",alpha:"U",name:"United Arab Emirates",fullname:"The United Arab Emirates",capital:"Abu Dhabi",tld:".ae",currency:"AED",phone:"+971",emoji:"🇦🇪"},{continent:"Europe",iso2:"GB",iso3:"GBR",alt:"UK",alpha:"U",name:"United Kingdom",fullname:"The United Kingdom of Great Britain and Northern Ireland",capital:"London",tld:".gb",currency:"GBP",phone:"+44",emoji:"🇬🇧"},{continent:"North America",iso2:"US",iso3:"USA",alpha:"U",name:"United States",fullname:"The United States of America",capital:"Washington, D.C.",tld:".us",currency:"USD",phone:"+1",emoji:"🇺🇸"},{continent:"South America",iso2:"UY",iso3:"URY",alpha:"U",name:"Uruguay",fullname:"The Eastern Republic of Uruguay",capital:"Montevideo",tld:".uy",currency:"UYU",phone:"+598",emoji:"🇺🇾"},{continent:"Asia",iso2:"UZ",iso3:"UZB",alpha:"U",name:"Uzbekistan",fullname:"The Republic of Uzbekistan",capital:"Tashkent",tld:".uz",currency:"UZS",phone:"+998",emoji:"🇺🇿"},{continent:"Oceania",iso2:"VU",iso3:"VUT",alpha:"V",name:"Vanuatu",fullname:"The Republic of Vanuatu",capital:"Port Vila",tld:".vu",currency:"VUV",phone:"+678",emoji:"🇻🇺"},{continent:"South America",iso2:"VE",iso3:"VEN",alpha:"V",name:"Venezuela",fullname:"The Bolivarian Republic of Venezuela",capital:"Caracas",tld:".ve",currency:"VEB",phone:"+58",emoji:"🇻🇪"},{continent:"Asia",iso2:"VN",iso3:"VNM",alpha:"V",name:"Vietnam",fullname:"The Socialist Republic of Viet Nam",capital:"Hanoi",tld:".vn",currency:"VND",phone:"+84",emoji:"🇻🇳"},{continent:"North America",iso2:"VG",iso3:"VGB",alpha:"V",name:"Virgin Islands, British",fullname:"British Virgin Islands",capital:"Road Town",tld:".vg",currency:"USD",phone:"+1284",emoji:"🇻🇬"},{continent:"South America",iso2:"VI",iso3:"VIR",alpha:"V",name:"Virgin Islands, US",fullname:"U.S. Virgin Islands",capital:"Charlotte Amalie",tld:".vi",currency:"USD",phone:"+1340",emoji:"🇻🇮"},{continent:"Oceania",iso2:"WF",iso3:"WLF",alpha:"W",name:"Wallis and Futuna",fullname:"Wallis and Futuna",capital:"Matā'Utu",tld:".wf",currency:"CFP",phone:"+681",emoji:"🇼🇫"},{continent:"Africa",iso2:"EH",iso3:"ESH",alpha:"W",name:"Western Sahara",fullname:"Western Sahara",capital:"El-Aaiún",tld:".eh",currency:"MAD",phone:"+212",emoji:"🇪🇭"},{continent:"Asia",iso2:"YE",iso3:"YEM",alpha:"Y",name:"Yemen",fullname:"The Republic of Yemen",capital:"Sana’a",tld:".ye",currency:"YER",phone:"+967",emoji:"🇾🇪"},{continent:"Africa",iso2:"ZM",iso3:"ZMB",alpha:"Z",name:"Zambia",fullname:"The Republic of Zambia",capital:"Lusaka",tld:".zm",currency:"ZMK",phone:"+260",emoji:"🇿🇲"},{continent:"Africa",iso2:"ZW",iso3:"ZWE",alpha:"Z",name:"Zimbabwe",fullname:"The Republic of Zimbabwe",capital:"Harare",tld:".zw",currency:"ZWD",phone:"+263",emoji:"🇿🇼"}]},debounce=function debounce(fn){var _timer,timeout=arguments.length>1&&void 0!==arguments[1]?arguments[1]:500,cb=function cb(){for(var _len=arguments.length,args=new Array(_len),_key=0;_key<_len;_key++)args[_key]=arguments[_key];clearTimeout(_timer),"undefined"!=typeof window&&(_timer=window.setTimeout((function(){return null==fn?void 0:fn.apply(void 0,args)}),timeout))};return cb.cancel=function(){return clearTimeout(_timer)},cb},dedupe=function dedupe(list,key){var filtered=list.filter((function(i){return!_isType_isEmpty(i)}));return key?Array.from(new Map(filtered.map((function(obj){var _obj$key;return[null!==(_obj$key=obj[key])&&void 0!==_obj$key?_obj$key:obj,obj]}))).values()):Array.from(new Set(filtered).values())},groupBy=function groupBy(list,prop,missingKey){return list.reduce((function(r,i){var _i$prop,key=null!==(_i$prop=i[prop])&&void 0!==_i$prop?_i$prop:missingKey;return r[key]||(r[key]=[]),r[key].push(i),r}),{})},defineProperty=__webpack_require__("./node_modules/@babel/runtime/helpers/esm/defineProperty.js"),asyncToGenerator=__webpack_require__("./node_modules/@babel/runtime/helpers/esm/asyncToGenerator.js"),regenerator=__webpack_require__("./node_modules/@babel/runtime/regenerator/index.js"),regenerator_default=__webpack_require__.n(regenerator);function ownKeys(e,r){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);r&&(o=o.filter((function(r){return Object.getOwnPropertyDescriptor(e,r).enumerable}))),t.push.apply(t,o)}return t}function _objectSpread(e){for(var r=1;r=200&&resp.status<300)){_context.next=4;break}return _context.next=3,resp.json();case 3:return _context.abrupt("return",_context.sent);case 4:throw{status:resp.status,code:-1,message:resp.statusText};case 5:case"end":return _context.stop()}}),_callee)})));return function(_x4){return _ref3.apply(this,arguments)}}()).then((function(resp){var _ref4,_resp$error_code,_ref5,_resp$error_message,code=null!==(_ref4=null!==(_resp$error_code=resp.error_code)&&void 0!==_resp$error_code?_resp$error_code:resp.errorCode)&&void 0!==_ref4?_ref4:resp.error,message=null!==(_ref5=null!==(_resp$error_message=resp.error_message)&&void 0!==_resp$error_message?_resp$error_message:resp.errorMessage)&&void 0!==_ref5?_ref5:resp.message;if("error"===resp.status||code)throw{status:500,code,message};return resp}));case 7:return _context2.abrupt("return",_context2.sent);case 8:case"end":return _context2.stop()}}),_callee2)})));return function _fetch(_x,_x2,_x3){return _ref2.apply(this,arguments)}}();_fetch.isAborted=function(_ref6){return"AbortError"===_ref6.name},_fetch.abort=function(signal){if(_signals.has(signal)){var _s=_signals.get(signal);null==_s||_s.abort(),_signals.delete(signal)}};var Format,_Format,numberFormat,makeDuration,_fileType={mime:function mime(){var mime=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"",ret=this.mimeList[mime.split(";")[0]];if(!ret&&mime){var _mime$split=mime.split("/"),_mime$split2=(0,slicedToArray.A)(_mime$split,2),t=_mime$split2[0],e=_mime$split2[1];return"".concat(t," (").concat(e,")")}return ret||"Unknown type"},mimeList:{"application/x-tika-msoffice":"Microsft Office File","application/x-tika-ooxml":"Open Office File","3d/vnd.adobe.dn+dcx":"Adobe Dimension","application-x/geogebra-file":"Ggb","application/acad":"DWG","application/acrobat":"PDF Family","application/applefile":"AppleSingle","application/atom+xml":"Atom","application/autocad_dwg":"DWG","application/binhex":"BinHex","application/bizagi-modeler":"BizAgi Process Modeler","application/cbor":"Concise Binary Object Representation","application/csv":"CSV","application/dart":"Dart","application/dbase":"MapInfo Data File (DAT)","application/dbf":"MapInfo Data File (DAT)","application/dec-dx.":"DEC Data Exchange File","application/dicom":"DICOM","application/dita+xml":"Darwin Information Typing Architecture","application/dita+xml;format=concept":"DITA Concept Topic","application/dita+xml;format=map":"DITA Map","application/dita+xml;format=task":"DITA Task Topic","application/dita+xml;format=topic":"DITA Topic","application/dita+xml;format=val":"DITA Conditional Processing Profile","application/dwf":"DWF","application/dwg":"DWG","application/dxf":"DXF","application/ecmascript":"ActionScript","application/epub+zip":"EBook","application/f4m":"F4M","application/fits":"Flexible Image Transport System","application/font-tdpfr":"PFR","application/font-woff":"WOFF","application/freemind":"Mm","application/futuresplash":"SWF","application/gdiff":"GDIFF","application/geopackage+sqlite3":"GeoPackage","application/gml+xml":"Geo XML","application/gzip":"Gzip Archive","application/gzip-compressed":"Gzip Archive","application/gzipped":"Gzip Archive","application/iges":"IGES","application/illustrator":"Adobe Illustrator","application/inf":"INF (Windows)","application/internet-shortcut":"Internet Shortcut","application/java-applet":"Java Applet","application/java-archive":"Java Archive","application/java-serialized-object":"Java Serialized Object","application/java-vm":"Java Class File","application/javascript":"JavaScript","application/jpg":"JFIF","application/json":"JSON","application/json-patch+json":"JSON Patch","application/kate":"Kate","application/ld+json":"JSON-LD","application/mac-binhex":"BinHex","application/mac-binhex40":"BinHex","application/macbinary":"MacBinary","application/marc":"MARC","application/mbox":"Mbox","application/msexcel":"Microsoft Excel Spreadsheet","application/msonenote":"Microsoft OneNote","application/mspowerpoint":"Microsoft Powerpoint Presentation","application/msword":"Word Document","application/msword2":"Microsoft Word 2 Document","application/msword5":"Microsoft Word 5 Document","application/mxf":"MXF","application/netcdf":"NetCDF","application/octet-stream":"Binary File","application/ogg":"Ogg","application/oxps":"OpenXPS","application/package":"Package (Web)","application/pdf":"PDF","application/photoshop":"Photoshop Image","application/pkcs10":"PKCS10","application/playerpro":"Module Music Formats (Mods)","application/postscript":"PostScript","application/qif":"Quicken Interchange Format","application/rdf+xml":"RDF","application/rss+xml":"RSS","application/rtf":"RTF","application/sereal":"Sereal","application/sgml":"SGML","application/sla":"STereo Lithography","application/sld":"AutoCAD Slide","application/sldworks":"SolidWorks CAD program","application/smil":"SMIL Multimedia","application/smil+xml":"SMIL Multimedia","application/soundapp":"Module Music Formats (Mods)","application/ssml+xml":"Speech Synthesis Markup Language","application/tif":"TIFF","application/tiff":"TIFF","application/typescript":"TypeScript","application/vnd.adobe.adept+xml":"Adobe Content Server Message File","application/vnd.adobe.flash-movie":"SWF","application/vnd.adobe.folio+zip":"Folio","application/vnd.adobe.indesign-idml-package":"IDML","application/vnd.adobe.pdfxml":"PDF XML","application/vnd.adobe.x-mars":"PDF XML","application/vnd.adobe.xdp+xml":"XDP","application/vnd.adobe.xfdf":"XFDF","application/vnd.api+json":"JSON API","application/vnd.apple.pkpass":"PKPass","application/vnd.android.package-archive":"Android package","application/vnd.chess-pgn":"PGN","application/vnd.coffeescript":"CoffeeScript","application/vnd.comicbook+zip":"Comic Book Archive","application/vnd.comicbook-rar":"Comic Book Archive","application/vnd.cups-raster":"CUPS Raster","application/vnd.debian.binary-package":"Deb","application/vnd.etsi.asic-e+zip":"Extended Associated Signature Container","application/vnd.etsi.asic-s+zip":"Simple Associated Signature Container","application/vnd.fdf":"FDF","application/vnd.font-fontforge-sfd":"Spline Font Database","application/vnd.framemaker":"FrameMaker","application/vnd.geo+json":"GeoJSON","application/vnd.geogebra.file":"Ggb","application/vnd.gerber":"Gerber format","application/vnd.google-earth.kml+xml":"KML","application/vnd.google-earth.kmz":"KML","application/vnd.hp-pcl":"PCL","application/vnd.hp-pclxl":"PCL","application/vnd.kde.kchart":"KChart File","application/vnd.kde.kpresenter":"KPresenter File","application/vnd.kde.kspread":"KSpread File","application/vnd.kde.kword":"KWord File","application/vnd.koan":"SSEYO Koan File","application/vnd.las":"LAS (LASer) File Format","application/vnd.lotus-1-2-3":"Lotus 1-2-3","application/vnd.lotus-notes":"Notes Storage Facility","application/vnd.lotus-wordpro":"Lotus Word Pro","application/vnd.makemusic.notation":"Finale","application/vnd.mif":"Maker Interchange Format","application/vnd.mindjet.mindmanager":"MindManager","application/vnd.ms-asf":"ASF","application/vnd.ms-cab-compressed":"Cabinet","application/vnd.ms-excel":"Excel Spreadsheet","application/vnd.ms-excel.addin.macroenabled.12":"Microsoft Excel","application/vnd.ms-excel.sheet.2":"Microsoft Excel 2 Worksheet","application/vnd.ms-excel.sheet.3":"Microsoft Excel 3 Worksheet","application/vnd.ms-excel.sheet.4":"Microsoft Excel 4 Worksheet","application/vnd.ms-excel.sheet.binary.macroenabled.12":"Microsoft Excel","application/vnd.ms-excel.sheet.macroenabled.12":"Microsoft Excel","application/vnd.ms-excel.template.macroenabled.12":"Microsoft Excel","application/vnd.ms-excel.workspace.3":"Microsoft Excel 3 Workspace","application/vnd.ms-excel.workspace.4":"Microsoft Excel 4 Workspace","application/vnd.ms-fontobject":"Embedded OpenType","application/vnd.ms-htmlhelp":"CHM","application/vnd.ms-officetheme":"Microsoft Office Theme","application/vnd.ms-outlook":"Personal Folder File","application/vnd.ms-outlook-pst":"Outlook Personal Folders File Format","application/vnd.ms-package.3dmanufacturing-3dmodel+xml":"3MF","application/vnd.ms-powerpoint":"Powerpoint Presentation","application/vnd.ms-powerpoint.addin.macroenabled.12":"Microsoft PowerPoint","application/vnd.ms-powerpoint.presentation.macroenabled.12":"Microsoft PowerPoint","application/vnd.ms-powerpoint.slide.macroenabled.12":"Microsoft PowerPoint","application/vnd.ms-powerpoint.slideshow.macroenabled.12":"Microsoft PowerPoint","application/vnd.ms-powerpoint.template.macroenabled.12":"Microsoft PowerPoint","application/vnd.ms-printing.printticket+xml":"3MF","application/vnd.ms-tnef":"Transport Neutral Encapsulation Format","application/vnd.ms-visio":"Microsoft Visio Diagram","application/vnd.ms-visio.drawing":"Office Open XML Visio Drawing (macro-free)","application/vnd.ms-visio.drawing.macroenabled.12":"Office Open XML Visio Drawing (macro-enabled)","application/vnd.ms-visio.stencil":"Office Open XML Visio Stencil (macro-free)","application/vnd.ms-visio.stencil.macroenabled.12":"Office Open XML Visio Stencil (macro-enabled)","application/vnd.ms-visio.template":"Office Open XML Visio Template (macro-free)","application/vnd.ms-visio.template.macroenabled.12":"Office Open XML Visio Template (macro-enabled)","application/vnd.ms-word":"Word Document","application/vnd.ms-word.document.macroenabled.12":"Microsoft Word","application/vnd.ms-word.template.macroenabled.12":"Microsoft Word","application/vnd.ms-xpsdocument":"OpenXPS","application/vnd.nitf":"National Imagery Transmission Format","application/vnd.oasis.opendocument.base":"OD","application/vnd.oasis.opendocument.chart":"OD Chart","application/vnd.oasis.opendocument.chart-template":"OD Chart Template","application/vnd.oasis.opendocument.database":"OD Database","application/vnd.oasis.opendocument.formula":"OD","application/vnd.oasis.opendocument.formula-template":"OD Formula","application/vnd.oasis.opendocument.graphics":"OD Graphics","application/vnd.oasis.opendocument.graphics-template":"OD Graphics","application/vnd.oasis.opendocument.image":"OD Image","application/vnd.oasis.opendocument.image-template":"OD Image template","application/vnd.oasis.opendocument.presentation":"OD Presentation","application/vnd.oasis.opendocument.presentation-template":"OD Presentation Template","application/vnd.oasis.opendocument.spreadsheet":"OD Spreadsheet","application/vnd.oasis.opendocument.spreadsheet-template":"OD Spreadsheet","application/vnd.oasis.opendocument.text":"OD Text","application/vnd.oasis.opendocument.text-master":"OD Text","application/vnd.oasis.opendocument.text-template":"OD Text Template","application/vnd.oasis.opendocument.text-web":"OD Text","application/vnd.openxmlformats-officedocument.presentationml.document":"OOXML Format Family -- ISO/IEC 29500 and ECMA 376","application/vnd.openxmlformats-officedocument.presentationml.presentation":"Powerpoint Presentation","application/vnd.openxmlformats-officedocument.presentationml.slideshow":"Microsoft PowerPoint","application/vnd.openxmlformats-officedocument.presentationml.template":"Microsoft PowerPoint","application/vnd.openxmlformats-officedocument.spreadsheetml.document":"OOXML Format Family -- ISO/IEC 29500 and ECMA 376","application/vnd.openxmlformats-officedocument.spreadsheetml.sheet":"Excel Spreadsheet","application/vnd.openxmlformats-officedocument.spreadsheetml.template":"Microsoft Excel","application/vnd.openxmlformats-officedocument.wordprocessingml.document":"Word Document","application/vnd.openxmlformats-officedocument.wordprocessingml.template":"Microsoft Word","application/vnd.pagemaker":"Pagemaker Document (Generic)","application/vnd.palm":"Palm OS Database","application/vnd.pdf":"PDF Family","application/vnd.quark.quarkxpress":"QuarkXPress","application/vnd.rar":"RAR","application/vnd.rn-realmedia":"RealMedia","application/vnd.scribus":"Scribus","application/vnd.sqlite3":"SQLite","application/vnd.stardivision.calc":"SDC","application/vnd.stardivision.chart":"StarOffice binary formats","application/vnd.stardivision.draw":"StarOffice binary formats","application/vnd.stardivision.impress":"StarOffice binary formats","application/vnd.stardivision.impress-packed":"StarOffice binary formats","application/vnd.stardivision.mail":"StarOffice binary formats","application/vnd.stardivision.math":"StarOffice binary formats","application/vnd.stardivision.writer":"SDW","application/vnd.stardivision.writer-global":"StarOffice binary formats","application/vnd.sun.xml.calc":"OpenOffice.org XML","application/vnd.sun.xml.calc.template":"OpenOffice.org XML","application/vnd.sun.xml.draw":"OpenOffice.org XML","application/vnd.sun.xml.draw.template":"OpenOffice.org XML","application/vnd.sun.xml.impress":"SXI","application/vnd.sun.xml.impress.template":"SXI","application/vnd.sun.xml.math":"OpenOffice.org XML","application/vnd.sun.xml.writer":"SXW","application/vnd.sun.xml.writer.global":"OpenOffice.org XML","application/vnd.sun.xml.writer.template":"STW","application/vnd.tcpdump.pcap":"TCPDump pcap packet capture","application/vnd.truedoc":"PFR","application/vnd.valve.source.material":"Valve Material Type","application/vnd.visio":"Visio","application/vnd.visio2013":"Visio VSDX Drawing File Format","application/vnd.wap.wmlc":"Compiled WML Document","application/vnd.wap.wmlscriptc":"Compiled WML Script","application/vnd.wolfram.cdf":"Computable Document Format","application/vnd.wolfram.cdf.text":"Computable Document Format","application/vnd.wordperfect":"WordPerfect","application/vnd.xara":"Xar (vector graphics)","application/vnd.xmi+xml":"XML Metadata Interchange","application/warc":"WARC","application/warc-fields":"WARC","application/x--iworks-protected":"Password Protected iWorks File","application/x--msoffice-embedded;format=comp_obj":"CompObj OLE2 Embedded Document","application/x--msoffice-embedded;format=ole10_native":"OLE10 Native Embedded Document","application/x--old-excel":"Pre-OLE2 (Old) Microsoft Excel Worksheets","application/x--ooxml-protected":"Password Protected OOXML File","application/x--visio-ooxml":"Visio OOXML File","application/x-3ds":"3DS","application/x-3dxmlplugin":"3DXML","application/x-7z-compressed":"7z Archive","application/x-acad":"DWG","application/x-adobe-indesign":"Adobe InDesign document","application/x-adobe-indesign-interchange":"Adobe InDesign Interchange format","application/x-apple-diskimage":"Apple Disk Image","application/x-aspx":"ASP.NET","application/x-astrotite-afa":"Astrotite","application/x-autocad":"DWG","application/x-axcrypt":"AxCrypt","application/x-b6z-compressed":"B6Z","application/x-berkeley-db":"Berkeley DB","application/x-berkeley-db;format=btree":"Berkeley DB BTree Database","application/x-berkeley-db;format=hash":"Berkeley DB Hash Database","application/x-berkeley-db;format=log":"Berkeley DB Log Database","application/x-berkeley-db;format=queue":"Berkeley DB Queue Database","application/x-bittorrent":"Torrent file","application/x-bplist":"Backup list","application/x-bzip2":"Bzip2","application/x-cbr":"Comic Book Archive","application/x-cdf":"CD Audio","application/x-cdlink":"Virtual CD-ROM CD Image File","application/x-cfs-compressed":"Compact File Set","application/x-chess-pgn":"PGN","application/x-chrome-package":"Chrome Extension Package","application/x-compress":"Compress (Unix)","application/x-compressed":"Tape Archive","application/x-cpio":"Cpio","application/x-csv":"CSV","application/x-dbase":"dBASE Table (DBF)","application/x-dbf":"dBASE Table (DBF)","application/x-dbm":"Berkeley DB","application/x-debian-package":"Debian package","application/x-deflate":"ZLIB Archive","application/x-dex":"Dalvik Executable Format","application/x-dgc-compressed":"DGCA","application/x-director":"Shockwave (Director)","application/x-dosexec":"DOS/Windows executable (EXE)","application/x-dvi":"DVI (Device Independent File Format)","application/x-dwg":"DWG","application/x-elc":"Emacs Lisp bytecode","application/x-emf":"Extended Metafile","application/x-endnote-connect":"EndNote Connection File","application/x-endnote-connection":"EndNote Connection File","application/x-endnote-refer":"EndNote Import File","application/x-endnote-style":"EndNote Style File","application/x-erb":"HTML+ERB","application/x-fictionbook+xml":"FictionBook document","application/x-filemaker":"FileMaker Pro 7","application/x-font-adobe-metric":"Adobe Font Metric","application/x-font-otf":"OpenType Font","application/x-font-printer-metric":"Printer Font Metric","application/x-font-ttf":"TrueType Font","application/x-foxmail":"Foxmail Email File","application/x-frame":"FrameMaker Interchange Format","application/x-freemind":"Mm","application/x-futuresplash":"Macromedia FutureSplash File","application/x-gca-compressed":"GCA","application/x-glulx":"Glulx","application/x-gnumeric":"Gnumeric","application/x-grib":"General Regularly-distributed Information in Binary form","application/x-gtar":"GNU Archive","application/x-gunzip":"Gzip Compressed Archive","application/x-gzip":"Gzip","application/x-gzip-compressed":"Gzip Compressed Archive","application/x-hdf":"HDF","application/x-httpd-jsp":"Java Server Page","application/x-httpd-php":"HTML+PHP","application/x-hwp":"Hangul Word Processor File","application/x-hwp-v5":"Hangul Word Processor File v5","application/x-ibooks+zip":"Apple iBooks","application/x-isatab":"ISA-Tab Study file","application/x-isatab-assay":"ISA-Tab Assay file","application/x-isatab-investigation":"ISA-Tab Investigation file","application/x-iso9660-image":"ISO image","application/x-itunes-ipa":"Apple iOS IPA AppStore file","application/x-java":"Java Class File","application/x-java-jnilib":"Java Native Library for OSX","application/x-java-jnlp-file":"Java Network Launching Protocol","application/x-java-vm":"Java Class File","application/x-javascript":"JavaScript Source Code","application/x-jpg":"JFIF","application/x-jsp":"Groovy Server Pages","application/x-kchart":"KChart File","application/x-killustrator":"KIllustrator File","application/x-koan":"SSEYO Koan File","application/x-kpresenter":"KPresenter File","application/x-krita":"Krita","application/x-kspread":"KSpread File","application/x-kword":"KWord File","application/x-latex":"LaTeX Source Document","application/x-lotus-notes":"Notes Storage Facility","application/x-lzh-compressed":"LHA","application/x-lzip":"Lzip","application/x-lzma":"LZMA Alone","application/x-macbinary":"MacBinary","application/x-maff":"MAFF","application/x-matlab-data":"MAT","application/x-matroska":"Matroska Media","application/x-midi":"MIDI","application/x-mif":"FrameMaker Interchange Format","application/x-mplayer2":"ASF (Advanced Systems Format)","application/x-msaccess":"Microsoft Access","application/x-msdownload":"Microsoft Download","application/x-ms-installer":"Microsoft Windows Installer","application/x-ms-wim":"Windows Imaging Format","application/x-msi":"Microsoft Windows Installer","application/x-msmetafile":"Windows Metafile","application/x-mso":"ActiveMime","application/x-mysql-misam-compressed-index":"MySQL MISAM Compressed Index","application/x-mysql-misam-data":"MySQL MISAM Data","application/x-mysql-misam-index":"MySQL MISAM Index","application/x-mysql-table-definition":"MySQL Table Definition (Format)","application/x-navi-animation":"Windows Animated Cursor","application/x-pdf":"Portable Document Format","application/x-pn-mpg":"MPEG-2 Video Encoding (H.262)","application/x-powershell":"PowerShell","application/x-rar":"RAR archive","application/x-rar-compressed":"RAR","application/x-riff":"MIDI Instrument Definition File","application/x-roxio-toast":"TOAST","application/x-rpm":"RedHat Package Manager","application/x-sas":"SAS Program","application/x-sas-access":"SAS Access Descriptor","application/x-sas-audit":"SAS Audit","application/x-sas-backup":"SAS Backup","application/x-sas-catalog":"SAS Catalog","application/x-sas-data":"SAS Data Set","application/x-sas-data-index":"SAS Data Set Index","application/x-sas-dmdb":"SAS DMDB Data Mining Database File","application/x-sas-fdb":"SAS FDB Consolidation Database File","application/x-sas-itemstor":"SAS Item Store (ItemStor) File","application/x-sas-mddb":"SAS MDDB Multi-Dimensional Database File","application/x-sas-program-data":"SAS Stored Program (DATA Step)","application/x-sas-putility":"SAS Permanent Utility","application/x-sas-transport":"SAS Transport File","application/x-sas-utility":"SAS Utility","application/x-sas-view":"SAS Data Set View","application/x-sas-xport":"SAS Transport (XPORT) Family","application/x-setupscript":"Windows setup INFormation","application/x-sh":"UNIX/LINUX Shell Script","application/x-shockwave-flash":"SWF","application/x-shockwave-flash2-preview":"Macromedia Flash","application/x-silverlight-app":"Silverlight","application/x-sit":"StuffIt","application/x-sitx":"StuffIt X","application/x-sld":"AutoCAD Slide","application/x-snappy-framed":"Snappy","application/x-speex":"Speex Audio","application/x-spss-por":"SPSS Portable File","application/x-spss-sav":"SAV","application/x-sqlite3":"SQLite","application/x-starcalc":"SDC","application/x-stardraw":"SDA (StarOffice)","application/x-starwriter":"SDW","application/x-stuffit":"StuffIt","application/x-stuffitx":"StuffIt X","application/x-t3vm-image":"TADS 3","application/x-tads":"TADS","application/x-tar":"Tape Archive","application/x-tcl":"Tcl script","application/x-tex":"TeX","application/x-tif":"TIFF","application/x-tiff":"TIFF","application/x-troff":"Roff/nroff/troff/groff Unformatted Manual Page (UNIX)","application/x-troff-man":"Roff/nroff/troff/groff Unformatted Manual Page (UNIX)","application/x-troff-me":"Roff/nroff/troff/groff Unformatted Manual Page (UNIX)","application/x-troff-ms":"Roff/nroff/troff/groff Unformatted Manual Page (UNIX)","application/x-troff-msvideo":"AVI (Audio Video Interleaved) File Format","application/x-url":"Internet Shortcut","application/x-vhd":"Virtual PC Virtual Hard Disk","application/x-vmdk":"Virtual Disk Format","application/x-vnd.corel.designer.document+zip":"Corel Designer","application/x-vnd.corel.zcf.designer.document+zip":"Corel Designer","application/x-vnd.oasis.opendocument.chart":"OD Chart","application/x-vnd.oasis.opendocument.chart-template":"OD Chart Template","application/x-vnd.oasis.opendocument.formula":"OD Formula document","application/x-vnd.oasis.opendocument.formula-template":"OD Formula Template","application/x-vnd.oasis.opendocument.graphics":"OD Graphics (Drawing)","application/x-vnd.oasis.opendocument.graphics-template":"OD Graphics Template","application/x-vnd.oasis.opendocument.image":"OD Image","application/x-vnd.oasis.opendocument.image-template":"OD Image Template","application/x-vnd.oasis.opendocument.presentation":"OD Presentation","application/x-vnd.oasis.opendocument.presentation-template":"OD Presentation Template","application/x-vnd.oasis.opendocument.spreadsheet":"OD Spreadsheet","application/x-vnd.oasis.opendocument.spreadsheet-template":"OD Spreadsheet Template","application/x-vnd.oasis.opendocument.text":"OD Text","application/x-vnd.oasis.opendocument.text-master":"OD Global Text","application/x-vnd.oasis.opendocument.text-template":"OD Text Template","application/x-vnd.oasis.opendocument.text-web":"OD Text Template","application/x-vnd.sun.xml.writer":"OpenOffice v1.0: Writer Document","application/x-votable+xml":"VOTable","application/x-web-app-manifest+json":"Open Web App Manifest","application/x-windows-installer":"Microsoft Windows Installer","application/x-wine-extension-inf":"Windows setup INFormation","application/x-www-form-urlencoded":"Form URL encoding","application/x-x509-ca-cert":"DER encoded certificate","application/x-x509-user-cert":"DER encoded certificate","application/x-xmind":"XMind Pro","application/x-xml":"Extensible Markup Language","application/x-xpinstall":"Cross-Platform Installer Module","application/x-xz":"XZ","application/x-zip-compressed":"Zip Archive","application/x-zoo":"Zoo","application/xhtml+xml":"HTML","application/xml":"XML","application/xml-dtd":"DTD","application/xquery":"XQuery source code","application/xslfo+xml":"XSL Format","application/xslt+xml":"XSL Transformations","application/xspf+xml":"XML Shareable Playlist Format","application/zip":"Zip Archive","application/zlib":"ZLIB Compressed Data Format","application/zstd":"Zstandard","audio/3gpp":"3GP Audio","audio/3gpp2":"3G2 Audio","audio/8svx":"8-Bit Sampled Voice Audio","audio/aiff":"AIFF Audio","audio/amr":"Adaptive Multi-Rate Audio","audio/application/x-pn-realmedia":"RealMedia Audio","audio/asf":"ASF Audio","audio/aud":"WeChat Audio","audio/audible":"Audible.Com Audio","audio/avi":"AVI Audio","audio/basic":"AU Audio","audio/flac":"FLAC Audio","audio/it":"Module Music Formats (Mods) Audio","audio/m":"MIDI Audio","audio/med":"Module Music Formats (Mods) Audio","audio/mid":"MIDI Audio","audio/midi":"MIDI Audio","audio/mod":"Module Music Formats (Mods) Audio","audio/module-xm":"Module Music Formats (Mods) Audio","audio/mp3":"MP3 Audio","audio/mp4":"MP4 Audio","audio/mp4a-latm":"MP4 Audio","audio/mpa":"MPEG Audio Layer I Audio","audio/mpeg":"MP3 Audio","audio/mpeg3":"MP3 Audio","audio/mpg":"MP3 Audio","audio/ogg":"Ogg Multimedia File Audio","audio/ogg; codecs=speex":"Speex Audio Codec Audio","audio/opus":"Opus Audio","audio/prs.sid":"SID Audio","audio/rmf":"AIFF Audio","audio/s3m":"Module Music Formats (Mods) Audio","audio/speex":"Speex Audio","audio/vnd.qcelp":"AIFF Audio","audio/vnd.rn-realaudio":"RealAudio","audio/vnd.wave":"WAV Audio","audio/vorbis":"Vorbis Audio","audio/wav":"WAV Audio","audio/wave":"WAV Audio","audio/webm":"WebM Audio","audio/x-8svx":"8-Bit Sampled Voice Audio","audio/x-aiff":"AIFF Audio","audio/x-amr-wb":"Adaptive Multi-Rate WideBand Audio","audio/x-flac":"FLAC Audio","audio/x-gsm":"AIFF Audio","audio/x-matroska":"Matroska Audio","audio/x-midi":"MIDI Audio","audio/x-mod":"EPSGMOD Audio","audio/x-mp3":"MP3 Audio","audio/x-mpeg":"MPEG-1 Audio Layer 3 Audio","audio/x-mpeg3":"MP3 Audio","audio/x-mpegaudio":"MP3 Audio","audio/x-mpegurl":"MP3 Playlist File Audio","audio/x-mpg":"MP3 Audio","audio/x-ms-wax":"Windows Media Metafile Audio","audio/x-ogg":"Ogg Audio","audio/x-ogg-flac":"Free Lossless Audio","audio/x-ogg-pcm":"Unompressed Audio","audio/x-oggflac":"Free Lossless Audio","audio/x-oggpcm":"Unompressed Audio","audio/x-pn-aiff":"AIFF Audio","audio/x-pn-audibleaudio":"Audible.Com Audio","audio/x-pn-realaudio":"RealAudio","audio/x-pn-realaudio-plugin":"RAM (RealAudio) Audio","audio/x-pn-wav":"WAV Audio","audio/x-realaudio":"Real Audio","audio/x-rmf":"AIFF Audio","audio/x-s3m":"Module Music Formats (Mods) Audio","audio/x-speex":"Speex Audio Codec Audio","audio/x-voc":"Creative Voice File Audio","audio/x-wav":"WAV Audio","audio/x-xm":"Module Music Formats (Mods) Audio","audio/xm":"Extended Module Audio File Audio","chemical/x-cif":"CIF","chemical/x-cml":"CML","chemical/x-mdl-molfile":"MOL","chemical/x-pdb":"Brookhaven Protein Databank File","drawing/dwg":"DWG","gzip/document":"Gzip Compressed Archive","image/ascii-art":"ASCII Art","image/avi":"AVI (Audio Video Interleaved) File Format","image/avif":"AVIF","image/avif-sequence":"AVIF","image/bmp":"BMP","image/cgm":"CGM","image/cis-cod":"Lightning Strike","image/dicom-rle":"DICOM","image/emf":"Enhanced Metafile","image/fits":"Flexible Image Transport System","image/flif":"Free Lossless Image Format (FLIF)","image/g3fax":"CCITT Group 3","image/gif":"GIF","image/heic":"HEIC","image/heic-sequence":"High Efficiency Image File Format","image/heif":"HEIF","image/image/x-ptx":"Pentax PEF","image/ivg":"IconVG","image/jls":"JPEG-LS","image/jp2":"JP2","image/jpeg":"JPEG","image/jpeg2000":"JPEG 2000 Part 1 (Core) jp2 File Format","image/jpeg2000-image":"JPEG 2000 Part 1 (Core) jp2 File Format","image/jpg":"JFIF","image/jpm":"JPM","image/jpx":"JPX","image/jxl":"JPEG XL","image/jxr":"JPEG Extended Range","image/ktx":"KTX","image/mov":"QuickTime File Format","image/naplps":"NAPLPS","image/nia":"Naïve Image Formats","image/nie":"Naïve Image Formats","image/nii":"Naïve Image Formats","image/openraster":"OpenRaster","image/pict":"PICT","image/png":"PNG","image/png+json":"Piskel canvas","image/pwg-raster":"PWG Raster","image/svg+xml":"Scalable Vector Graphics","image/svg-xml":"Scalable Vector Graphics","image/tif":"TIFF","image/tiff":"TIFF","image/tiff-fx":"TIFF-FX","image/vnd-wap-wbmp":"Wireless Bitmap","image/vnd.adobe.photoshop":"PSD","image/vnd.djvu":"DjVu","image/vnd.dwg":"DWG","image/vnd.dxb":"AutoCAD DXF simplified Binary","image/vnd.dxf":"DXF","image/vnd.dxf;format=ascii":"AutoCAD DXF in ASCII Text form","image/vnd.dxf;format=binary":"AutoCAD DXF in Binary form","image/vnd.fpx":"FlashPix","image/vnd.fujixerox.edmics-mmr":"Xerox EDMICS-MMR","image/vnd.fujixerox.edmics-rlc":"Xerox EDMICS-RLC","image/vnd.microsoft.icon":"ICO","image/vnd.mix":"MIX (Picture It!)","image/vnd.mozilla.apng":"APNG","image/vnd.ms-modi":"MDI","image/vnd.ms-photo":"JPEG XR","image/vnd.radiance":"Radiance HDR","image/vnd.rn-realflash":"Macromedia Flash SWF File Format","image/vnd.svf":"Simple Vector Format","image/vnd.tencent.tap":"TAP (Tencent)","image/vnd.valve.source.texture":"Valve Texture Format","image/vnd.wap.wbmp":"WBMP","image/vnd.xiff":"XIFF","image/vnd.zbrush.pcx":"PCX","image/vpb":"Quantel VPB image","image/webp":"Web Photo","image/wmf":"Windows Metafile","image/x-3ds":"3DS","image/x-bmp":"Bitmap Image File (BMP)","image/x-bpg":"Better Portable Graphics","image/x-canon-cr3":"Canon RAW 3","image/x-canon-crw":"Camera Image File Format","image/x-dcx":"Multipage Zsoft Paintbrush Bitmap Graphics","image/x-djvu":"DjVu File Format","image/x-dpx":"Digital Moving-Picture Exchange (DPX)","image/x-dwg":"DWG","image/x-freehand":"FreeHand image","image/x-hasselblad-3fr":"Hasselblad 3FR","image/x-icon":"ICO","image/x-jng":"JPEG Network Graphics","image/x-jp2-codestream":"JPEG 2000 Codestream","image/x-jp2-container":"JPEG 2000 Container Format","image/x-jpeg2000-image":"JPEG 2000 Part 1 (Core) jp2 File Format","image/x-mrsid":"MrSID","image/x-mrsid-image":"MrSID Image Format","image/x-ms-bmp":"Windows bitmap","image/x-niff":"Navy Interchange File Format","image/x-pcx":"PCX","image/x-pentax-pef":"Pentax PEF","image/x-pict":"PICT","image/x-portable-anymap":"Netpbm formats","image/x-portable-arbitrarymap":"Portable Arbitrary Map","image/x-portable-bitmap":"Netpbm formats","image/x-portable-graymap":"Netpbm formats","image/x-portable-pixmap":"Netpbm formats","image/x-psd":"Photoshop Image","image/x-quicktime":"QuickTime File Format","image/x-raw-adobe":"Adobe Digital Negative","image/x-raw-canon":"Canon raw image","image/x-raw-casio":"Casio raw image","image/x-raw-epson":"Epson raw image","image/x-raw-fuji":"Fuji raw image","image/x-raw-hasselblad":"Hasselblad raw image","image/x-raw-imacon":"Imacon raw image","image/x-raw-kodak":"Kodak raw image","image/x-raw-leaf":"Leaf raw image","image/x-raw-logitech":"Logitech raw image","image/x-raw-mamiya":"Mamiya raw image","image/x-raw-minolta":"Minolta raw image","image/x-raw-nikon":"Nikon raw image","image/x-raw-olympus":"Olympus raw image","image/x-raw-panasonic":"Panasonic raw image","image/x-raw-pentax":"Pentax raw image","image/x-raw-phaseone":"Phase One raw image","image/x-raw-rawzor":"Rawzor raw image","image/x-raw-red":"Red raw image","image/x-raw-sigma":"Sigma raw image","image/x-raw-sony":"Sony raw image","image/x-rgb":"Silicon Graphics RGB Bitmap","image/x-sgi-bw":"Silicon Graphics Image","image/x-sld":"AutoCAD Slide","image/x-sun-raster":"Sun Raster Image","image/x-tif":"TIFF","image/x-tiff":"TIFF","image/x-win-bitmap":"Microsoft Windows Cursor","image/x-wmf":"Windows Metafile","image/x-xbitmap":"XBM","image/x-xcf":"GIMP Image File","image/x-xwindowdump":"X Windows Dump","image/xcf":"GIMP Image File","interface/x-winamp-skin":"Winamp Skin","message/rfc822":"Internet e-mail message format","model/gltf+json":"glTF (GL Transmission Format) 2.0","model/gltf-binary":"glTF (GL Transmission Format) 2.0","model/iges":"IGES","model/mtl":"Wavefront Material Template Library (MTL) File Format","model/obj":"Wavefront OBJ File Format","model/prc":"Product Representation Compact (PRC) File Format","model/stl":"STL (STereoLithography) File Format","model/u3d":"Universal 3D (U3D) format family. ECMA-363","model/vnd-dwf":"DWF","model/vnd.adobe.dn+dcxucf":"Adobe Dimension","model/vnd.collada+xml":"COLLADA","model/vnd.dwfx+xps":"AutoCAD Design Web Format","model/vnd.usdz+zip":"USDZ","model/vnd.valve.source.compiled-map":"BSP","model/vrml":"VRML","model/x3d+binary":"X3D","model/x3d+fastinfoset":"Extensible 3D","model/x3d+vrml":"X3D","model/x3d+xml":"X3D","model/x3d-vrml":"Extensible 3D","multipart/appledouble":"AppleDouble","multipart/x-tar":"Tape Archive","sound/aiff":"AIFF","text/apl":"APL","text/asp":"Active Server Page","text/aspdotnet":"ASP .NET","text/calendar":"ICalendar","text/comma-separated-values":"CSV","text/css":"Cascading Style Sheets","text/csv":"CSV","text/csv-schema":"CSV Schema","text/dns":"Zone file","text/ecmascript":"ECMA Script","text/gemini":"Gemini","text/html":"HTML","text/javascript":"JavaScript","text/json":"JSON (JavaScript Object Notation)","text/jsx":"TSX","text/markdown":"Markdown","text/mirc":"IRC log","text/n3":"Notation3","text/pdf":"PDF Family","text/plain":"Plain text","text/properties":"Java Properties","text/rtf":"RTF","text/sgml":"SGML","text/tab-separated-values":"Tab delimited","text/troff":"Roff/nroff/troff/groff Unformatted Manual Page (UNIX)","text/turtle":"Turtle","text/url":"Internet Shortcut","text/vbscript":"VBScript","text/vcard":"VCard","text/vnd.ascii-art":"ASCII Art","text/vnd.iptc.anpa":"American Newspaper Publishers Association Wire Feeds","text/vnd.iptc.nitf":"News Industry Text Format","text/vnd.wap.wmlscript":"WML Script","text/vtt":"WebVTT","text/x-actionscript":"ActionScript source code","text/x-ada":"Ada source code","text/x-applescript":"AppleScript source code","text/x-ascii-art":"ASCII Art","text/x-asciidoc":"Asciidoc source code","text/x-asm":"Assembler source code","text/x-aspectj":"AspectJ source code","text/x-assembly":"Assembler source code","text/x-awk":"AWK script","text/x-basic":"Basic source code","text/x-brainfuck":"Brainfuck","text/x-c":"C source code","text/x-c++":"C++ source code","text/x-c++hdr":"C++ source code header","text/x-c++src":"C++ source code","text/x-cgi":"CGI script","text/x-chdr":"C source code header","text/x-clojure":"Clojure source code","text/x-cmake":"Makefile","text/x-cobol":"COBOL source code","text/x-coffeescript":"CoffeeScript source code","text/x-coldfusion":"ColdFusion source code","text/x-comma-separated-values":"CSV","text/x-common-lisp":"Common Lisp source code","text/x-cross-domain-policy":"Adobe Cross Domain Policy File","text/x-crystal":"Crystal","text/x-csharp":"C# source code","text/x-csrc":"C source code","text/x-csv":"CSV","text/x-cython":"Cython","text/x-d":"D source code","text/x-diff":"Diff file","text/x-django":"Jinja","text/x-dockerfile":"Dockerfile","text/x-dtd":"XML Document Type Definition","text/x-dylan":"Dylan","text/x-ebnf":"Lark","text/x-ecl":"ECL","text/x-eiffel":"Eiffel source code","text/x-elm":"Elm","text/x-emacs-lisp":"Emacs Lisp source code","text/x-erlang":"Erlang source code","text/x-expect":"Expect Script","text/x-factor":"Factor","text/x-forth":"Forth source code","text/x-fortran":"Fortran source code","text/x-fsharp":"F#","text/x-gfm":"Markdown","text/x-go":"Go source code","text/x-groovy":"Groovy source code","text/x-haml":"HAML source code","text/x-haskell":"Haskell source code","text/x-haxe":"Haxe source code","text/x-idl":"Inteface Definition Language","text/x-ini":"Configuration file","text/x-java":"Java source code","text/x-java-properties":"Java Properties","text/x-java-source":"Java source code","text/x-jsp":"Java Server Page","text/x-julia":"Julia","text/x-kotlin":"Kotlin","text/x-less":"LESS source code","text/x-lex":"Lex/Flex source code","text/x-literate-haskell":"Literate Haskell","text/x-livescript":"LiveScript","text/x-log":"Log file","text/x-lua":"Lua source code","text/x-markdown":"Markdown","text/x-mathematica":"Mathematica","text/x-matlab":"Matlab source code","text/x-ml":"ML source code","text/x-modula":"Modula source code","text/x-mumps":"M","text/x-nfo":"NFO","text/x-nginx-conf":"Nginx","text/x-nh":"Newick tree Format","text/x-nsis":"NSIS","text/x-objcsrc":"Objective-C","text/x-objectivec":"Objective-C++","text/x-ocaml":"Ocaml source code","text/x-octave":"MATLAB","text/x-oz":"Oz","text/x-pascal":"Pascal source code","text/x-pdf":"PDF Family","text/x-perl":"Perl script","text/x-php":"PHP script","text/x-plsql":"PLSQL","text/x-prolog":"Prolog source code","text/x-properties":"Java Properties","text/x-protobuf":"Protocol Buffer","text/x-pug":"Pug","text/x-puppet":"Puppet","text/x-python":"Python script","text/x-rexx":"Rexx source code","text/x-rpm-spec":"RPM Spec","text/x-rsrc":"R","text/x-rst":"reStructuredText source code","text/x-ruby":"Ruby source code","text/x-rustsrc":"ReScript","text/x-sas":"SAS","text/x-sass":"Sass","text/x-scala":"Scala source code","text/x-scheme":"Scheme source code","text/x-scss":"SCSS","text/x-sed":"Sed code","text/x-server-parsed-html":"Server Side Includes","text/x-server-parsed-html3":"Server Side Includes","text/x-sh":"Shell","text/x-slim":"Slim","text/x-smarty":"Smarty","text/x-soy":"Closure Templates","text/x-spreadsheet":"LTspice Symbol","text/x-sql":"SQL code","text/x-stex":"BibTeX","text/x-stsrc":"Smalltalk source code","text/x-swift":"Swift","text/x-systemverilog":"SystemVerilog","text/x-tcl":"Tcl script","text/x-tex":"TeX Source","text/x-toml":"TOML","text/x-ttcn-asn":"ASN.1","text/x-twig":"Twig","text/x-url":"Internet Shortcut","text/x-vb":"Visual Basic .NET","text/x-vbasic":"Visual basic source code","text/x-vbdotnet":"VB.NET source code","text/x-vbscript":"VBScript source code","text/x-verilog":"Verilog source code","text/x-vhdl":"VHDL source code","text/x-web-markdown":"Markdown source code","text/x-webidl":"WebIDL","text/x-yacc":"Yacc/Bison source code","text/x-yaml":"YAML source code","text/xml":"XML","text/xsl":"XSL Format","video/3gpp":"3GP Video","video/3gpp2":"3G2 Video","video/avi":"AVI Video","video/daala":"Ogg Daala Video","video/jpm":"JPEG 2000 Part 6 (JPM) Video","video/mj2":"MJ2 Video","video/mp1s":"MPEG-2 Video","video/mp2p":"MPEG-2 Video","video/mp4":"MP4 Video","video/mpeg":"MPEG-1 Video","video/mpeg2":"MPEG-2 Video","video/mpg":"MPEG-2 Video","video/msvideo":"AVI Video","video/ogg":"Ogg Video","video/quicktime":"QuickTime Video","video/theora":"Ogg Theora Video","video/vnd-vivo":"VivoActive Video","video/vnd.avi":"AVI Video","video/vnd.radgamettools.bink":"Bink Video","video/vnd.radgamettools.smacker":"Smacker Video","video/vnd.rn-realvideo":"Real Video","video/webm":"Web Movie","video/x-daala":"Ogg Daala Video","video/x-dirac":"Dirac Video","video/x-dv":"DV-DIF Video","video/x-flv":"FLV Video","video/x-matroska":"Matroska Video","video/x-matroska-3d":"Matroska Video","video/x-mng":"MNG Video","video/x-mpeg":"MPEG-2 Video","video/x-mpeg2a":"MPEG-2 Video","video/x-mpg":"MPEG-2 Video","video/x-ms-asf":"ASF Video","video/x-ms-asf-plugin":"ASF Video","video/x-ms-asx":"Windows Media Metafile Video","video/x-ms-wm":"ASF Video","video/x-ms-wma":"WMA Video","video/x-ms-wmv":"WMV Video","video/x-msvideo":"AVI Video","video/x-ogg-rgb":"Raw RGB Video","video/x-ogg-uvs":"Raw UVS Video","video/x-ogg-yuv":"Raw YUV Video","video/x-oggrgb":"Raw RGB Video","video/x-ogguvs":"Raw UVS Video","video/x-oggyuv":"Raw YUV Video","video/x-ogm":"OGM Video","video/x-quicktime":"QuickTime Video","video/x-sgi-movie":"SGI movie Video","video/x-theora":"Ogg Theora Video","wwwserver/redirection":"Internet Shortcut","x-conference/x-cooltalk":"Cooltalk Audio","x-world/x-3dmf":"3DMF"}},differenceInDays=__webpack_require__("./node_modules/date-fns/differenceInDays.js"),format=__webpack_require__("./node_modules/date-fns/format.js"),parseISO=__webpack_require__("./node_modules/date-fns/parseISO.js"),parsePhoneNumber=__webpack_require__("./node_modules/libphonenumber-js/min/exports/parsePhoneNumber.js"),numeral=__webpack_require__("./node_modules/numeral/numeral.js"),numeral_default=__webpack_require__.n(numeral);_Format=Format||(Format={}),numberFormat=function numberFormat(number){var format=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"0,0[.]00a";return isNil(number)?"":("".concat(number).startsWith("+")?"+":"")+numeral_default()(number).format(format)},makeDuration=function makeDuration(value){var fmt=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"HH:mm:ss.SSS";if(!isNaN(value)){var days=(0,differenceInDays.c)(value,0),prefix=days>0?"".concat(days,"d:"):"",time=(0,format.GP)((0,parseISO.H)(new Date(value).toISOString().replace("Z","")),fmt);return prefix||(time=time.replace(/^00:/,"")),"".concat(prefix).concat(time)}},_Format.phone=function(value){var _phone$country,country=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"AE",useCss=arguments.length>2&&void 0!==arguments[2]&&arguments[2];if(_isType_isEmpty(value)||value.length<6||!/^[\d+\s\-()]+$/.test(value))return value;var phone=function getPhone(value,country){var phone=null!=value.match(/^[0+]/)?value.replace(/^00/,"+"):"+".concat(value),number=(0,parsePhoneNumber.l)(phone,country);return null!=number?number:{country:"",formatInternational:function formatInternational(){return value}}}(value,country);return"".concat(useCss?''):Countries.emoji(null!==(_phone$country=phone.country)&&void 0!==_phone$country?_phone$country:"")," ").concat(phone.formatInternational())},_Format.number=function(number,format){return numberFormat(number,format)},_Format.bytes=function(number){return numberFormat(number,"0,0[.]00b")},_Format.percent=function(number){return numberFormat(number,"0,0[.]00%")},_Format.date=function(date){var fmt=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"d-M-y";return date?(0,format.GP)(new Date(date),fmt):""},_Format.duration=function(number,isFraction){if(isNil(number))return"00:00.000";if(number===1/0)return"∞";var value=parseFloat("".concat(number))*(isFraction?1e3:1);return isNaN(value)?"00:00.000":makeDuration(value)},_Format.durationSeconds=function(number,isFraction){if(isNil(number))return"00:00";if(number===1/0)return"∞";var value=parseFloat("".concat(number))*(isFraction?1e3:1);return isNaN(value)?"00:00":makeDuration(value,"HH:mm:ss")};var _get=function _get(hit,field){if(!isNil(hit)){if(isNil(field))return hit;if(_isType_isObject(hit)){if(!isNil(hit[field]))return hit[field];if(field.includes("."))for(var _ret,currentValue=hit,path=field.split("."),_loop=function _loop(){var outerPath=path.slice(0,i).join("."),innerPath=path.slice(i).join(".");if(outerPath in currentValue)return currentValue=currentValue[outerPath],isArray(currentValue)?currentValue[innerPath]?{v:currentValue[innerPath]}:{v:currentValue.map((function(val){return _get(val,innerPath)})).filter((function(val){return!_isType_isEmpty(val)}))}:{v:_get(currentValue,innerPath)}},i=path.length-1;i>=0;i--)if(_ret=_loop())return _ret.v}}},getByPath=function getByPath(obj,path){var defaultValue=arguments.length>2&&void 0!==arguments[2]?arguments[2]:void 0;if(_isType_isEmpty(obj)||_isType_isEmpty(path))return defaultValue;var value=_get(obj,path);return isNil(value)?defaultValue:value},getValue=function getValue(){for(var _len=arguments.length,args=new Array(_len),_key=0;_key<_len;_key++)args[_key]=arguments[_key];return args.find((function(a){return!_isType_isEmpty(a)}))},shortHash=function shortHash(){return((new Date).getTime()+Math.trunc(1e3*Math.random())).toString(36)},uuid=function uuid(){return[1e7,1e3,4e3,8e3,1e11].join("-").replace(/[018]/g,(function(c){return(+c^16*Math.random()&15>>+c/4).toString(16)}))},matchString=function matchString(base,match){var equality=arguments.length>2&&void 0!==arguments[2]&&arguments[2],_base=ascii(base).toLowerCase(),_match=ascii(match).toLowerCase();return!0===equality?_base===_match:"start"===equality?_base.startsWith(_match):_base.includes(_match)},compareValues=function compareValues(){var order=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"asc",key=arguments.length>1?arguments[1]:void 0;return function(a,b){var aValue=key&&_isType_isObject(a)?a[key]:a,bValue=key&&_isType_isObject(b)?b[key]:b,bigger="asc"===order?1:-1,smaller="desc"===order?1:-1;if(aValue===bValue)return 0;if(_isType_isNumber(aValue)&&_isType_isNumber(bValue))return aValue>bValue?bigger:smaller;if(_isType_isBoolean(aValue)&&_isType_isBoolean(bValue))return aValue?smaller:bigger;var _a=ascii(aValue).toLowerCase(),_b=ascii(bValue).toLowerCase();return 1===_a.localeCompare(_b)?bigger:smaller}},mergeRefs=function mergeRefs(){for(var _len=arguments.length,refs=new Array(_len),_key=0;_key<_len;_key++)refs[_key]=arguments[_key];return function(el){refs.forEach((function(ref){"function"==typeof ref&&ref(el),ref&&"current"in ref&&(ref.current=el)}))}},tokenize=function tokenize(str,keywords){if(_isType_isEmpty(keywords))return[[str,""]];for(var match,keyMap=(isArray(keywords)?keywords:[keywords]).map((function(key){var escapedKey=key.replace(/([+*.?^$()[\]\\!&|\-=])/gm,"\\$1");return null!=key.match(/^[a-z0-9]/i)&&(escapedKey="\\b".concat(escapedKey)),null!=key.match(/[a-z0-9]$/i)&&(escapedKey="".concat(escapedKey,"\\b")),escapedKey})),regx=new RegExp("(".concat(keyMap.join("|"),")"),"img"),lastIndex=0,tokens=[];null!==(match=regx.exec(str));)tokens.push([str.substring(lastIndex,match.index),str.substring(match.index,regx.lastIndex)]),lastIndex=regx.lastIndex;return tokens.push([str.substring(lastIndex),""]),tokens},iconToken=function iconToken(str){var split=str.trim().split(" "),first=split[0],last=split.length>1&&split.pop();return(first&&last?"".concat(first.charAt(0)).concat(last.charAt(0)):"".concat(first.substring(0,2))).toUpperCase()},getImageColorset=function getImageColorset(el){var canvas=document.createElement("canvas");canvas.width=Math.min(500,el.naturalWidth),canvas.height=Math.min(500,el.naturalHeight);var ctx=canvas.getContext("2d");if(null!=ctx){ctx.drawImage(el,0,0,el.naturalWidth,el.naturalHeight,0,0,canvas.width,canvas.height);for(var data=ctx.getImageData(0,0,canvas.width,canvas.height).data,dark=0,light=0,totalPixels=0,transparent=0===(null==data?void 0:data[3]),x=0,len=data.length;x0?"light":"dark";return transparent&&(ret+="_transparent"),ret}return"light"};"undefined"!=typeof window&&(window.getImageColorset=getImageColorset);var objectWithoutProperties=__webpack_require__("./node_modules/@babel/runtime/helpers/esm/objectWithoutProperties.js"),toConsumableArray=__webpack_require__("./node_modules/@babel/runtime/helpers/esm/toConsumableArray.js"),_excluded=["module"],_excluded2=["module"],_excluded3=["module"],_excluded4=["module"],_excluded5=["module"],LOG_LEVEL=function(LOG_LEVEL){return LOG_LEVEL[LOG_LEVEL.OFF=0]="OFF",LOG_LEVEL[LOG_LEVEL.WARNING=1]="WARNING",LOG_LEVEL[LOG_LEVEL.INFO=2]="INFO",LOG_LEVEL[LOG_LEVEL.DEBUG=3]="DEBUG",LOG_LEVEL}(LOG_LEVEL||{}),NODE={LOG:"",INFO:"",DEBUG:"",ERROR:"",WARNING:"",TIME:"",PROCESS:"",DURATION:"",RESET:"",logLevel:function logLevel(){var _global$LOG_LEVEL;return null!==(_global$LOG_LEVEL=__webpack_require__.g.LOG_LEVEL)&&void 0!==_global$LOG_LEVEL?_global$LOG_LEVEL:LOG_LEVEL.WARNING},makeLog:function makeLog(level){var _ref=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},process=_ref.process,module=_ref.module,duration=_ref.duration,totalTime=_ref.totalTime,ret=[];return process&&ret.push("".concat(this.PROCESS,"Process: ").concat(process).concat(this.RESET)),module&&ret.push("".concat(this.PROCESS,"Module: ").concat(module).concat(this.RESET)),duration&&ret.push("".concat(this.DURATION,"Duration: ").concat(duration).concat(this.RESET)),module&&ret.push("".concat(this.DURATION,"TotalTime: ").concat(totalTime).concat(this.RESET)),["[".concat(this.TIME).concat((new Date).toISOString()).concat(this.RESET,"] ").concat(level),ret.join(" ")].filter(Boolean).join("\n")},log:function log(msg,opts){var _console;if(!(+this.logLevel()2?_len-2:0),_key=2;_key<_len;_key++)rest[_key-2]=arguments[_key];(_console=console).log.apply(_console,[this.makeLog("".concat(this.LOG,"LOG").concat(this.RESET),opts),"\n".concat(msg,"\n")].concat(rest))}},debug:function debug(msg,opts){var _console2;if(!(+this.logLevel()2?_len2-2:0),_key2=2;_key2<_len2;_key2++)rest[_key2-2]=arguments[_key2];(_console2=console).debug.apply(_console2,[this.makeLog("".concat(this.DEBUG,"DEBUG").concat(this.RESET),opts),"\n".concat(msg,"\n")].concat(rest))}},info:function info(msg,opts){var _console3;if(!(+this.logLevel()2?_len3-2:0),_key3=2;_key3<_len3;_key3++)rest[_key3-2]=arguments[_key3];(_console3=console).info.apply(_console3,[this.makeLog("".concat(this.INFO,"INFO").concat(this.RESET),opts),"\n".concat(msg,"\n")].concat(rest))}},error:function error(msg,opts){for(var _console4,_len4=arguments.length,rest=new Array(_len4>2?_len4-2:0),_key4=2;_key4<_len4;_key4++)rest[_key4-2]=arguments[_key4];(_console4=console).error.apply(_console4,[this.makeLog("".concat(this.ERROR,"ERROR").concat(this.RESET),opts),"\n".concat(msg,"\n")].concat(rest))},warning:function warning(msg,opts){var _console5;if(!(+this.logLevel()2?_len5-2:0),_key5=2;_key5<_len5;_key5++)rest[_key5-2]=arguments[_key5];(_console5=console).warn.apply(_console5,[this.makeLog("".concat(this.WARNING,"WARNING").concat(this.RESET),opts),"\n".concat(msg,"\n")].concat(rest))}}},BROWSER={LOG:"#afaf87",INFO:"#5fd7ff",DEBUG:"#87afd7",ERROR:"#d7005f",WARNING:"#ff875f",TIME:"#5faf87",PROCESS:"#87af87",DURATION:"#af87d7",logLevel:function logLevel(){var _ref2;return null!==(_ref2="undefined"!=typeof window?window.LOG_LEVEL:void 0)&&void 0!==_ref2?_ref2:LOG_LEVEL.WARNING},makeLog:function makeLog(level,color){var _ref3=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},process=_ref3.process,module=_ref3.module,duration=_ref3.duration,totalTime=_ref3.totalTime,ret=[],colors=["color:".concat(this.TIME,";font-weight:bold;"),"color:".concat(color,";font-weight:bold;")];return module&&ret.push("%cModule: ".concat(module)),process&&ret.push("%cProcess: ".concat(process)),duration&&ret.push("%cDuration: ".concat(duration)),module&&ret.push("%cTotalTime: ".concat(totalTime)),module&&colors.push("color:".concat(this.PROCESS)),process&&colors.push("color:".concat(this.PROCESS)),duration&&colors.push("color:".concat(this.DURATION)),module&&colors.push("color:".concat(this.DURATION)),[["%c[".concat((new Date).toISOString(),"] ").concat(level),ret.join(" ")].filter(Boolean).join("\n"),colors]},log:function log(msg,opts){var _console6;if(!(+this.logLevel()2?_len6-2:0),_key6=2;_key6<_len6;_key6++)rest[_key6-2]=arguments[_key6];(_console6=console).log.apply(_console6,[logs].concat((0,toConsumableArray.A)(colors),["\n".concat(msg,"\n")],rest))}},debug:function debug(msg,opts){var _console7;if(!(+this.logLevel()2?_len7-2:0),_key7=2;_key7<_len7;_key7++)rest[_key7-2]=arguments[_key7];(_console7=console).debug.apply(_console7,[logs].concat((0,toConsumableArray.A)(colors),["\n".concat(msg,"\n")],rest))}},info:function info(msg,opts){var _console8;if(!(+this.logLevel()2?_len8-2:0),_key8=2;_key8<_len8;_key8++)rest[_key8-2]=arguments[_key8];(_console8=console).info.apply(_console8,[logs].concat((0,toConsumableArray.A)(colors),["\n".concat(msg,"\n")],rest))}},error:function error(msg,opts){for(var _console9,_this$makeLog7=this.makeLog("%cERROR",this.ERROR,opts),_this$makeLog8=(0,slicedToArray.A)(_this$makeLog7,2),logs=_this$makeLog8[0],colors=_this$makeLog8[1],_len9=arguments.length,rest=new Array(_len9>2?_len9-2:0),_key9=2;_key9<_len9;_key9++)rest[_key9-2]=arguments[_key9];(_console9=console).error.apply(_console9,[logs].concat((0,toConsumableArray.A)(colors),["\n".concat(msg,"\n")],rest))},warning:function warning(msg,opts){var _console10;if(!(+this.logLevel()2?_len10-2:0),_key10=2;_key10<_len10;_key10++)rest[_key10-2]=arguments[_key10];(_console10=console).warn.apply(_console10,[logs].concat((0,toConsumableArray.A)(colors),["\n".concat(msg,"\ntest")],rest))}}},logger=function logger(){return"undefined"==typeof window?NODE:"undefined"!=typeof window?BROWSER:void 0},useLogger=function useLogger(mod){return{timer:function timer(process){var startTime=(new Date).getTime(),nextTime=(new Date).getTime(),self=this,getTime=function getTime(){var ret=((new Date).getTime()-nextTime)/1e3;return nextTime=(new Date).getTime(),ret},getFullTime=function getFullTime(){return((new Date).getTime()-startTime)/1e3};return{log:function log(msg){for(var _len11=arguments.length,rest=new Array(_len11>1?_len11-1:0),_key11=1;_key11<_len11;_key11++)rest[_key11-1]=arguments[_key11];return self.log.apply(self,[msg,{process,duration:getTime(),totalTime:getFullTime()}].concat(rest))},debug:function debug(msg){for(var _len12=arguments.length,rest=new Array(_len12>1?_len12-1:0),_key12=1;_key12<_len12;_key12++)rest[_key12-1]=arguments[_key12];return self.debug.apply(self,[msg,{process,duration:getTime(),totalTime:getFullTime()}].concat(rest))},info:function info(msg){for(var _len13=arguments.length,rest=new Array(_len13>1?_len13-1:0),_key13=1;_key13<_len13;_key13++)rest[_key13-1]=arguments[_key13];return self.info.apply(self,[msg,{process,duration:getTime(),totalTime:getFullTime()}].concat(rest))},error:function error(msg){for(var _len14=arguments.length,rest=new Array(_len14>1?_len14-1:0),_key14=1;_key14<_len14;_key14++)rest[_key14-1]=arguments[_key14];return self.error.apply(self,[msg,{process,duration:getTime(),totalTime:getFullTime()}].concat(rest))},warning:function warning(msg){for(var _len15=arguments.length,rest=new Array(_len15>1?_len15-1:0),_key15=1;_key15<_len15;_key15++)rest[_key15-1]=arguments[_key15];return self.warning.apply(self,[msg,{process,duration:getTime(),totalTime:getFullTime()}].concat(rest))},end:function end(){for(var msg=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"completed",_len16=arguments.length,rest=new Array(_len16>1?_len16-1:0),_key16=1;_key16<_len16;_key16++)rest[_key16-1]=arguments[_key16];return self.info.apply(self,[msg,{process,duration:getTime(),totalTime:getFullTime()}].concat(rest))}}},log:function log(msg,_ref4){var _logger;_ref4.module;for(var opts=(0,objectWithoutProperties.A)(_ref4,_excluded),_len17=arguments.length,rest=new Array(_len17>2?_len17-2:0),_key17=2;_key17<_len17;_key17++)rest[_key17-2]=arguments[_key17];null===(_logger=logger())||void 0===_logger||_logger.log.apply(_logger,[msg,opts].concat(rest))},debug:function debug(msg,_ref5){var _logger2;_ref5.module;for(var opts=(0,objectWithoutProperties.A)(_ref5,_excluded2),_len18=arguments.length,rest=new Array(_len18>2?_len18-2:0),_key18=2;_key18<_len18;_key18++)rest[_key18-2]=arguments[_key18];null===(_logger2=logger())||void 0===_logger2||_logger2.debug.apply(_logger2,[msg,opts].concat(rest))},info:function info(msg,_ref6){var _logger3;_ref6.module;for(var opts=(0,objectWithoutProperties.A)(_ref6,_excluded3),_len19=arguments.length,rest=new Array(_len19>2?_len19-2:0),_key19=2;_key19<_len19;_key19++)rest[_key19-2]=arguments[_key19];null===(_logger3=logger())||void 0===_logger3||_logger3.info.apply(_logger3,[msg,opts].concat(rest))},error:function error(msg,_ref7){var _logger4;_ref7.module;for(var opts=(0,objectWithoutProperties.A)(_ref7,_excluded4),_len20=arguments.length,rest=new Array(_len20>2?_len20-2:0),_key20=2;_key20<_len20;_key20++)rest[_key20-2]=arguments[_key20];null===(_logger4=logger())||void 0===_logger4||_logger4.error.apply(_logger4,[msg,opts].concat(rest))},warning:function warning(msg,_ref8){var _logger5;_ref8.module;for(var opts=(0,objectWithoutProperties.A)(_ref8,_excluded5),_len21=arguments.length,rest=new Array(_len21>2?_len21-2:0),_key21=2;_key21<_len21;_key21++)rest[_key21-2]=arguments[_key21];null===(_logger5=logger())||void 0===_logger5||_logger5.warning.apply(_logger5,[msg,opts].concat(rest))}}},index_esm=__webpack_require__("./node_modules/yup/index.esm.js");index_esm.setLocale({mixed:{default:function _default(_ref){return{key:"form:yup.invalid",values:{path:_ref.path,label:_ref.label}}},required:function required(_ref2){return{key:"form:yup.required",values:{path:_ref2.path,label:_ref2.label}}},notType:function notType(_ref3){return{key:"form:yup.invalidType",values:{type:_ref3.type,path:_ref3.path,label:_ref3.label}}}},array:{min:function min(_ref4){return{key:"form:yup.arrayMin",values:{min:_ref4.min,path:_ref4.path,label:_ref4.label}}},max:function max(_ref5){return{key:"form:yup.arrayMax",values:{max:_ref5.max,path:_ref5.path,label:_ref5.label}}}},string:{min:function min(_ref6){return{key:"form:yup.stringMin",values:{min:_ref6.min,path:_ref6.path,label:_ref6.label}}},max:function max(_ref7){return{key:"form:yup.stringMax",values:{max:_ref7.max,path:_ref7.path,label:_ref7.label}}}},number:{min:function min(_ref8){return{key:"form:yup.numberMin",values:{min:_ref8.min,path:_ref8.path,label:_ref8.label}}},max:function max(_ref9){return{key:"form:yup.numberMax",values:{max:_ref9.max,path:_ref9.path,label:_ref9.label}}}},boolean:{}});var EMPTY_ARRAY=[];Object.freeze(EMPTY_ARRAY);Object.freeze({})},"./storybook-config-entry.js":(__unused_webpack_module,__unused_webpack___webpack_exports__,__webpack_require__)=>{"use strict";var external_STORYBOOK_MODULE_GLOBAL_=__webpack_require__("@storybook/global"),external_STORYBOOK_MODULE_PREVIEW_API_=__webpack_require__("storybook/internal/preview-api"),external_STORYBOOK_MODULE_CHANNELS_=__webpack_require__("storybook/internal/channels");const importers=[async path=>{if(!/^\.[\\/](?:stories(?:\/(?!\.)(?:(?:(?!(?:^|\/)\.).)*?)\/|\/|$)(?!\.)(?=.)[^/]*?\.mdx)$/.exec(path))return;const pathRemainder=path.substring(10);return __webpack_require__("./stories lazy recursive ^\\.\\/.*$ include: (?%21.*node_modules)(?:\\/stories(?:\\/(?%21\\.)(?:(?:(?%21(?:^%7C\\/)\\.).)*?)\\/%7C\\/%7C$)(?%21\\.)(?=.)[^/]*?\\.mdx)$")("./"+pathRemainder)},async path=>{if(!/^\.[\\/](?:packages(?:\/(?!\.)(?:(?:(?!(?:^|\/)\.).)*?)\/|\/|$)stories(?:\/(?!\.)(?:(?:(?!(?:^|\/)\.).)*?)\/|\/|$)(?!\.)(?=.)[^/]*?\.mdx)$/.exec(path))return;const pathRemainder=path.substring(11);return __webpack_require__("./packages lazy recursive ^\\.\\/.*$ include: (?%21.*node_modules)(?:\\/packages(?:\\/(?%21\\.)(?:(?:(?%21(?:^%7C\\/)\\.).)*?)\\/%7C\\/%7C$)stories(?:\\/(?%21\\.)(?:(?:(?%21(?:^%7C\\/)\\.).)*?)\\/%7C\\/%7C$)(?%21\\.)(?=.)[^/]*?\\.mdx)$")("./"+pathRemainder)},async path=>{if(!/^\.[\\/](?:packages(?:\/(?!\.)(?:(?:(?!(?:^|\/)\.).)*?)\/|\/|$)stories(?:\/(?!\.)(?:(?:(?!(?:^|\/)\.).)*?)\/|\/|$)(?!\.)(?=.)[^/]*?\.stories\.(js|jsx|ts|tsx))$/.exec(path))return;const pathRemainder=path.substring(11);return __webpack_require__("./packages lazy recursive ^\\.\\/.*$ include: (?%21.*node_modules)(?:\\/packages(?:\\/(?%21\\.)(?:(?:(?%21(?:^%7C\\/)\\.).)*?)\\/%7C\\/%7C$)stories(?:\\/(?%21\\.)(?:(?:(?%21(?:^%7C\\/)\\.).)*?)\\/%7C\\/%7C$)(?%21\\.)(?=.)[^/]*?\\.stories\\.(js%7Cjsx%7Cts%7Ctsx))$")("./"+pathRemainder)}];const channel=(0,external_STORYBOOK_MODULE_CHANNELS_.createBrowserChannel)({page:"preview"});external_STORYBOOK_MODULE_PREVIEW_API_.addons.setChannel(channel),"DEVELOPMENT"===external_STORYBOOK_MODULE_GLOBAL_.global.CONFIG_TYPE&&(window.__STORYBOOK_SERVER_CHANNEL__=channel);const preview=new external_STORYBOOK_MODULE_PREVIEW_API_.PreviewWeb((async function importFn(path){for(let i=0;iimporters[i](path),x());if(moduleExports)return moduleExports}var x}),(()=>(0,external_STORYBOOK_MODULE_PREVIEW_API_.composeConfigs)([__webpack_require__("./node_modules/@storybook/react/dist/entry-preview.mjs"),__webpack_require__("./node_modules/@storybook/react/dist/entry-preview-docs.mjs"),__webpack_require__("./node_modules/@storybook/addon-links/dist/preview.mjs"),__webpack_require__("./node_modules/@storybook/addon-essentials/dist/docs/preview.mjs"),__webpack_require__("./node_modules/@storybook/addon-essentials/dist/actions/preview.mjs"),__webpack_require__("./node_modules/@storybook/addon-essentials/dist/backgrounds/preview.mjs"),__webpack_require__("./node_modules/@storybook/addon-essentials/dist/viewport/preview.mjs"),__webpack_require__("./node_modules/@storybook/addon-essentials/dist/measure/preview.mjs"),__webpack_require__("./node_modules/@storybook/addon-essentials/dist/outline/preview.mjs"),__webpack_require__("./node_modules/@storybook/addon-essentials/dist/highlight/preview.mjs"),__webpack_require__("./node_modules/@storybook/addon-interactions/dist/preview.mjs"),__webpack_require__("./node_modules/@storybook/addon-a11y/dist/preview.mjs"),__webpack_require__("./node_modules/@storybook/addon-styling/dist/preview.mjs"),__webpack_require__("./.storybook/preview.tsx")])));window.__STORYBOOK_PREVIEW__=preview,window.__STORYBOOK_STORY_STORE__=preview.storyStore,window.__STORYBOOK_ADDONS_CHANNEL__=channel},"./.storybook/preview.tsx":(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.r(__webpack_exports__),__webpack_require__.d(__webpack_exports__,{default:()=>preview});var jsx_runtime=__webpack_require__("./node_modules/react/jsx-runtime.js"),injectStylesIntoStyleTag=(__webpack_require__("./node_modules/@mdi/font/css/materialdesignicons.min.css"),__webpack_require__("./node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js")),injectStylesIntoStyleTag_default=__webpack_require__.n(injectStylesIntoStyleTag),styleDomAPI=__webpack_require__("./node_modules/style-loader/dist/runtime/styleDomAPI.js"),styleDomAPI_default=__webpack_require__.n(styleDomAPI),insertBySelector=__webpack_require__("./node_modules/style-loader/dist/runtime/insertBySelector.js"),insertBySelector_default=__webpack_require__.n(insertBySelector),setAttributesWithoutAttributes=__webpack_require__("./node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js"),setAttributesWithoutAttributes_default=__webpack_require__.n(setAttributesWithoutAttributes),insertStyleElement=__webpack_require__("./node_modules/style-loader/dist/runtime/insertStyleElement.js"),insertStyleElement_default=__webpack_require__.n(insertStyleElement),styleTagTransform=__webpack_require__("./node_modules/style-loader/dist/runtime/styleTagTransform.js"),styleTagTransform_default=__webpack_require__.n(styleTagTransform),styles=__webpack_require__("./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./.storybook/styles/styles.css"),options={};options.styleTagTransform=styleTagTransform_default(),options.setAttributes=setAttributesWithoutAttributes_default(),options.insert=insertBySelector_default().bind(null,"head"),options.domAPI=styleDomAPI_default(),options.insertStyleElement=insertStyleElement_default();injectStylesIntoStyleTag_default()(styles.A,options);styles.A&&styles.A.locals&&styles.A.locals;var esm=__webpack_require__("./packages/core/dist/esm/index.js"),dist=__webpack_require__("./node_modules/@storybook/addon-docs/dist/index.mjs"),addon_jest_dist=__webpack_require__("./node_modules/@storybook/addon-jest/dist/index.mjs"),blocks_dist=__webpack_require__("./node_modules/@storybook/blocks/dist/index.mjs"),external_STORYBOOK_MODULE_PREVIEW_API_=__webpack_require__("storybook/internal/preview-api"),index_browser=__webpack_require__("./node_modules/msw-storybook-addon/dist/index.browser.js"),react=__webpack_require__("./node_modules/react/index.js"),es=__webpack_require__("./node_modules/react-i18next/dist/es/index.js"),i18next=__webpack_require__("./node_modules/i18next/dist/esm/i18next.js"),i18nextBrowserLanguageDetector=__webpack_require__("./node_modules/i18next-browser-languagedetector/dist/esm/i18nextBrowserLanguageDetector.js");const en_namespaceObject=JSON.parse('{"app":{"appTitle":"React UI Framework","appDescription":"React UI framework for business applications"},"login":{"demo":"Login credential for demo [demo/pass]"}}'),ar_namespaceObject=JSON.parse('{"app":{"appDescription":"إطار عمل React UI لتطبيقات الأعمال"}}');i18next.Ay.use(i18nextBrowserLanguageDetector.A).use(es.r9).init({resources:{en:en_namespaceObject,ar:ar_namespaceObject},defaultNS:"app",fallbackLng:["en"],keySeparator:".",interpolation:{escapeValue:!1}}).then();const i18n=i18next.Ay,jest_test_results_namespaceObject=JSON.parse('{"numFailedTestSuites":0,"numFailedTests":0,"numPassedTestSuites":13,"numPassedTests":62,"numPendingTestSuites":0,"numPendingTests":0,"numRuntimeErrorTestSuites":0,"numTodoTests":0,"numTotalTestSuites":13,"numTotalTests":62,"openHandles":[],"snapshot":{"added":0,"didUpdate":false,"failure":false,"filesAdded":0,"filesRemoved":0,"filesRemovedList":[],"filesUnmatched":0,"filesUpdated":0,"matched":15,"total":15,"unchecked":0,"uncheckedKeysByFile":[],"unmatched":0,"updated":0},"startTime":1730016897403,"success":true,"testResults":[{"assertionResults":[{"ancestorTitles":["Button"],"duration":29,"failureDetails":[],"failureMessages":[],"fullName":"Button should render label only","invocations":1,"location":null,"numPassingAsserts":4,"retryReasons":[],"status":"passed","title":"should render label only"},{"ancestorTitles":["Button"],"duration":6,"failureDetails":[],"failureMessages":[],"fullName":"Button should render icon only","invocations":1,"location":null,"numPassingAsserts":4,"retryReasons":[],"status":"passed","title":"should render icon only"},{"ancestorTitles":["Button"],"duration":7,"failureDetails":[],"failureMessages":[],"fullName":"Button should render alt icon","invocations":1,"location":null,"numPassingAsserts":3,"retryReasons":[],"status":"passed","title":"should render alt icon"},{"ancestorTitles":["Button"],"duration":3,"failureDetails":[],"failureMessages":[],"fullName":"Button should render rounded full-width","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"should render rounded full-width"},{"ancestorTitles":["Button"],"duration":9,"failureDetails":[],"failureMessages":[],"fullName":"Button should handle click","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"should handle click"},{"ancestorTitles":["Button"],"duration":4,"failureDetails":[],"failureMessages":[],"fullName":"Button should not handle click when disabled","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"should not handle click when disabled"},{"ancestorTitles":["Button"],"duration":9,"failureDetails":[],"failureMessages":[],"fullName":"Button should handle hotkey","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"should handle hotkey"},{"ancestorTitles":["Button"],"duration":4,"failureDetails":[],"failureMessages":[],"fullName":"Button should render with badge","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"should render with badge"},{"ancestorTitles":["Button"],"duration":107,"failureDetails":[],"failureMessages":[],"fullName":"Button should render action message","invocations":1,"location":null,"numPassingAsserts":3,"retryReasons":[],"status":"passed","title":"should render action message"},{"ancestorTitles":["Button"],"duration":23,"failureDetails":[],"failureMessages":[],"fullName":"Button should render action message via prop","invocations":1,"location":null,"numPassingAsserts":3,"retryReasons":[],"status":"passed","title":"should render action message via prop"}],"endTime":1730016910579,"message":"","name":"/home/runner/work/react-fabric/react-fabric/packages/core/tests/buttons/Button.test.tsx","startTime":1730016897744,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":["isEqual test"],"duration":2,"failureDetails":[],"failureMessages":[],"fullName":"isEqual test should check string","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"should check string"},{"ancestorTitles":["isEqual test"],"duration":1,"failureDetails":[],"failureMessages":[],"fullName":"isEqual test should check number","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"should check number"},{"ancestorTitles":["isEqual test"],"duration":1,"failureDetails":[],"failureMessages":[],"fullName":"isEqual test should check boolean","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"should check boolean"},{"ancestorTitles":["isEqual test"],"duration":1,"failureDetails":[],"failureMessages":[],"fullName":"isEqual test should check array","invocations":1,"location":null,"numPassingAsserts":5,"retryReasons":[],"status":"passed","title":"should check array"},{"ancestorTitles":["isEqual test"],"duration":4,"failureDetails":[],"failureMessages":[],"fullName":"isEqual test should check object","invocations":1,"location":null,"numPassingAsserts":4,"retryReasons":[],"status":"passed","title":"should check object"},{"ancestorTitles":["isEqual test"],"duration":2,"failureDetails":[],"failureMessages":[],"fullName":"isEqual test should check object array","invocations":1,"location":null,"numPassingAsserts":4,"retryReasons":[],"status":"passed","title":"should check object array"},{"ancestorTitles":["isEqual test"],"duration":2,"failureDetails":[],"failureMessages":[],"fullName":"isEqual test should match string","invocations":1,"location":null,"numPassingAsserts":6,"retryReasons":[],"status":"passed","title":"should match string"},{"ancestorTitles":["isEqual test"],"duration":9,"failureDetails":[],"failureMessages":[],"fullName":"isEqual test should compare","invocations":1,"location":null,"numPassingAsserts":9,"retryReasons":[],"status":"passed","title":"should compare"}],"endTime":1730016911326,"message":"","name":"/home/runner/work/react-fabric/react-fabric/packages/utilities/tests/isEqual.test.ts","startTime":1730016910594,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":["ButtonGroup"],"duration":8,"failureDetails":[],"failureMessages":[],"fullName":"ButtonGroup should render buttons","invocations":1,"location":null,"numPassingAsserts":3,"retryReasons":[],"status":"passed","title":"should render buttons"},{"ancestorTitles":["ButtonGroup"],"duration":5,"failureDetails":[],"failureMessages":[],"fullName":"ButtonGroup should render full-width","invocations":1,"location":null,"numPassingAsserts":3,"retryReasons":[],"status":"passed","title":"should render full-width"},{"ancestorTitles":["ButtonGroup"],"duration":9,"failureDetails":[],"failureMessages":[],"fullName":"ButtonGroup should render vertical","invocations":1,"location":null,"numPassingAsserts":3,"retryReasons":[],"status":"passed","title":"should render vertical"}],"endTime":1730016911556,"message":"","name":"/home/runner/work/react-fabric/react-fabric/packages/core/tests/buttons/ButtonGroup.test.tsx","startTime":1730016911338,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":["check type test"],"duration":1,"failureDetails":[],"failureMessages":[],"fullName":"check type test should check nils","invocations":1,"location":null,"numPassingAsserts":6,"retryReasons":[],"status":"passed","title":"should check nils"},{"ancestorTitles":["check type test"],"duration":1,"failureDetails":[],"failureMessages":[],"fullName":"check type test should check empty","invocations":1,"location":null,"numPassingAsserts":10,"retryReasons":[],"status":"passed","title":"should check empty"},{"ancestorTitles":["check type test"],"duration":2,"failureDetails":[],"failureMessages":[],"fullName":"check type test should check string","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"should check string"},{"ancestorTitles":["check type test"],"duration":1,"failureDetails":[],"failureMessages":[],"fullName":"check type test should check number","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"should check number"},{"ancestorTitles":["check type test"],"duration":2,"failureDetails":[],"failureMessages":[],"fullName":"check type test should check boolean","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"should check boolean"},{"ancestorTitles":["check type test"],"duration":1,"failureDetails":[],"failureMessages":[],"fullName":"check type test should check truthy","invocations":1,"location":null,"numPassingAsserts":4,"retryReasons":[],"status":"passed","title":"should check truthy"},{"ancestorTitles":["check type test"],"duration":1,"failureDetails":[],"failureMessages":[],"fullName":"check type test should check falsy","invocations":1,"location":null,"numPassingAsserts":4,"retryReasons":[],"status":"passed","title":"should check falsy"},{"ancestorTitles":["check type test"],"duration":1,"failureDetails":[],"failureMessages":[],"fullName":"check type test should check object","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"should check object"},{"ancestorTitles":["check type test"],"duration":1,"failureDetails":[],"failureMessages":[],"fullName":"check type test should check svg path","invocations":1,"location":null,"numPassingAsserts":3,"retryReasons":[],"status":"passed","title":"should check svg path"},{"ancestorTitles":["check type test"],"duration":1,"failureDetails":[],"failureMessages":[],"fullName":"check type test should check color","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"should check color"},{"ancestorTitles":["check type test"],"duration":9,"failureDetails":[],"failureMessages":[],"fullName":"check type test should check rtl","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"should check rtl"}],"endTime":1730016911751,"message":"","name":"/home/runner/work/react-fabric/react-fabric/packages/utilities/tests/isType.test.ts","startTime":1730016911566,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":["format test"],"duration":3,"failureDetails":[],"failureMessages":[],"fullName":"format test should format number","invocations":1,"location":null,"numPassingAsserts":5,"retryReasons":[],"status":"passed","title":"should format number"},{"ancestorTitles":["format test"],"duration":1,"failureDetails":[],"failureMessages":[],"fullName":"format test should format bytes","invocations":1,"location":null,"numPassingAsserts":4,"retryReasons":[],"status":"passed","title":"should format bytes"},{"ancestorTitles":["format test"],"duration":1,"failureDetails":[],"failureMessages":[],"fullName":"format test should format percentage","invocations":1,"location":null,"numPassingAsserts":3,"retryReasons":[],"status":"passed","title":"should format percentage"},{"ancestorTitles":["format test"],"duration":7,"failureDetails":[],"failureMessages":[],"fullName":"format test should format date","invocations":1,"location":null,"numPassingAsserts":3,"retryReasons":[],"status":"passed","title":"should format date"},{"ancestorTitles":["format test"],"duration":3,"failureDetails":[],"failureMessages":[],"fullName":"format test should format duration","invocations":1,"location":null,"numPassingAsserts":5,"retryReasons":[],"status":"passed","title":"should format duration"},{"ancestorTitles":["format test"],"duration":2,"failureDetails":[],"failureMessages":[],"fullName":"format test should format duration seconds","invocations":1,"location":null,"numPassingAsserts":5,"retryReasons":[],"status":"passed","title":"should format duration seconds"},{"ancestorTitles":["format test"],"duration":6,"failureDetails":[],"failureMessages":[],"fullName":"format test should format phone","invocations":1,"location":null,"numPassingAsserts":6,"retryReasons":[],"status":"passed","title":"should format phone"},{"ancestorTitles":["format test"],"duration":0,"failureDetails":[],"failureMessages":[],"fullName":"format test get mime type","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"get mime type"}],"endTime":1730016911941,"message":"","name":"/home/runner/work/react-fabric/react-fabric/packages/utilities/tests/format.test.ts","startTime":1730016911766,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":["get values by JSON path"],"duration":2,"failureDetails":[],"failureMessages":[],"fullName":"get values by JSON path should get default values","invocations":1,"location":null,"numPassingAsserts":3,"retryReasons":[],"status":"passed","title":"should get default values"},{"ancestorTitles":["get values by JSON path"],"duration":1,"failureDetails":[],"failureMessages":[],"fullName":"get values by JSON path should get inner path","invocations":1,"location":null,"numPassingAsserts":4,"retryReasons":[],"status":"passed","title":"should get inner path"},{"ancestorTitles":["get values by JSON path"],"duration":1,"failureDetails":[],"failureMessages":[],"fullName":"get values by JSON path should get inner path with . in name","invocations":1,"location":null,"numPassingAsserts":4,"retryReasons":[],"status":"passed","title":"should get inner path with . in name"},{"ancestorTitles":["get values by JSON path"],"duration":1,"failureDetails":[],"failureMessages":[],"fullName":"get values by JSON path should get first no null value","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"should get first no null value"}],"endTime":1730016912094,"message":"","name":"/home/runner/work/react-fabric/react-fabric/packages/utilities/tests/getByPath.test.ts","startTime":1730016911951,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":["countries test"],"duration":3,"failureDetails":[],"failureMessages":[],"fullName":"countries test should return country model","invocations":1,"location":null,"numPassingAsserts":3,"retryReasons":[],"status":"passed","title":"should return country model"},{"ancestorTitles":["countries test"],"duration":1,"failureDetails":[],"failureMessages":[],"fullName":"countries test should convert iso2 to iso3","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"should convert iso2 to iso3"},{"ancestorTitles":["countries test"],"duration":1,"failureDetails":[],"failureMessages":[],"fullName":"countries test should convert iso3 to iso2","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"should convert iso3 to iso2"},{"ancestorTitles":["countries test"],"duration":0,"failureDetails":[],"failureMessages":[],"fullName":"countries test should convert alternate code to iso2","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"should convert alternate code to iso2"},{"ancestorTitles":["countries test"],"duration":1,"failureDetails":[],"failureMessages":[],"fullName":"countries test should receive flag emoji","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"should receive flag emoji"},{"ancestorTitles":["countries test"],"duration":1,"failureDetails":[],"failureMessages":[],"fullName":"countries test should receive country name","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"should receive country name"}],"endTime":1730016912251,"message":"","name":"/home/runner/work/react-fabric/react-fabric/packages/utilities/tests/countries.test.ts","startTime":1730016912105,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":["interpolation test"],"duration":1,"failureDetails":[],"failureMessages":[],"fullName":"interpolation test should interpolate","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"should interpolate"},{"ancestorTitles":["interpolation test"],"duration":1,"failureDetails":[],"failureMessages":[],"fullName":"interpolation test should render template","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"should render template"}],"endTime":1730016912402,"message":"","name":"/home/runner/work/react-fabric/react-fabric/packages/utilities/tests/interpolate.test.ts","startTime":1730016912265,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":["tokenize test"],"duration":8,"failureDetails":[],"failureMessages":[],"fullName":"tokenize test should tokenize text","invocations":1,"location":null,"numPassingAsserts":3,"retryReasons":[],"status":"passed","title":"should tokenize text"},{"ancestorTitles":["tokenize test"],"duration":1,"failureDetails":[],"failureMessages":[],"fullName":"tokenize test should tokenize text for icon","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"should tokenize text for icon"}],"endTime":1730016912563,"message":"","name":"/home/runner/work/react-fabric/react-fabric/packages/utilities/tests/tokenize.test.ts","startTime":1730016912419,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":["bounding box test"],"duration":2,"failureDetails":[],"failureMessages":[],"fullName":"bounding box test should get bounding box","invocations":1,"location":null,"numPassingAsserts":4,"retryReasons":[],"status":"passed","title":"should get bounding box"},{"ancestorTitles":["bounding box test"],"duration":1,"failureDetails":[],"failureMessages":[],"fullName":"bounding box test should get box","invocations":1,"location":null,"numPassingAsserts":4,"retryReasons":[],"status":"passed","title":"should get box"}],"endTime":1730016912720,"message":"","name":"/home/runner/work/react-fabric/react-fabric/packages/utilities/tests/boundingBox.test.ts","startTime":1730016912574,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":["ascii converter test"],"duration":2,"failureDetails":[],"failureMessages":[],"fullName":"ascii converter test should convert latin to ascii","invocations":1,"location":null,"numPassingAsserts":4,"retryReasons":[],"status":"passed","title":"should convert latin to ascii"}],"endTime":1730016912871,"message":"","name":"/home/runner/work/react-fabric/react-fabric/packages/utilities/tests/ascii.test.ts","startTime":1730016912730,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":["dedupe test"],"duration":1,"failureDetails":[],"failureMessages":[],"fullName":"dedupe test should dedupe","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"should dedupe"},{"ancestorTitles":["dedupe test"],"duration":1,"failureDetails":[],"failureMessages":[],"fullName":"dedupe test should flatten and dedupe","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"should flatten and dedupe"},{"ancestorTitles":["dedupe test"],"duration":1,"failureDetails":[],"failureMessages":[],"fullName":"dedupe test should group","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"should group"}],"endTime":1730016913026,"message":"","name":"/home/runner/work/react-fabric/react-fabric/packages/utilities/tests/dedupe.test.ts","startTime":1730016912880,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":["hash/uuid test"],"duration":2,"failureDetails":[],"failureMessages":[],"fullName":"hash/uuid test should create hash","invocations":1,"location":null,"numPassingAsserts":2,"retryReasons":[],"status":"passed","title":"should create hash"},{"ancestorTitles":["hash/uuid test"],"duration":1,"failureDetails":[],"failureMessages":[],"fullName":"hash/uuid test should generate uuid","invocations":1,"location":null,"numPassingAsserts":1,"retryReasons":[],"status":"passed","title":"should generate uuid"}],"endTime":1730016913178,"message":"","name":"/home/runner/work/react-fabric/react-fabric/packages/utilities/tests/hash.test.ts","startTime":1730016913035,"status":"passed","summary":""}],"wasInterrupted":false}');var theming=__webpack_require__("./node_modules/@storybook/core/dist/theming/index.js");const theme_reset={fontBase:'Montserrat, "Helvetica Neue", Arial, sans-serif',fontCode:"Consolas, Monaco, monospace",brandImage:"poster.png",brandTitle:"React Fabric"},lightTheme=(0,theming.vt)({base:"light",appBg:"#f5f6fa",barBg:"#fefefe",appContentBg:"#fafdfd",colorPrimary:"#10ac84",colorSecondary:"#2e86de",...theme_reset}),darkTheme=(0,theming.vt)({base:"dark",appBg:"#151B20",barBg:"#2f3640",textColor:"#fefefe",inputTextColor:"#fefefe",appContentBg:"#1e272e",colorPrimary:"#10ac84",colorSecondary:"#2e86de",...theme_reset});(0,index_browser.n_)({onUnhandledRequest:"bypass",serviceWorker:{url:"./serviceWorker.js"}}),document.documentElement.dir=i18n.dir();const ContextWrapper=props=>{const{changeLocale,changeCalendar}=(0,esm.Xn)();return(0,react.useEffect)((()=>{external_STORYBOOK_MODULE_PREVIEW_API_.addons.getChannel().on("CALENDAR_CHANGE",(calendar=>{changeCalendar?.(calendar)})),external_STORYBOOK_MODULE_PREVIEW_API_.addons.getChannel().on("LOCALE_CHANGED",(locale=>{changeLocale?.(locale)}))}),[]),(0,jsx_runtime.jsx)(react.Fragment,{...props})},preview={parameters:{layout:"centered",backgrounds:{disable:!0,grid:{disable:!0}},actions:{argTypesRegex:"^on(?!Label).*"},a11y:{},controls:{exclude:/^on(?!Label).*/,sort:"requiredFirst",matchers:{date:/^date$/}},viewport:{viewports:{mobile1:{name:"Small mobile",styles:{height:"568px",width:"320px"},type:"mobile"},mobile2:{name:"Large mobile",styles:{height:"896px",width:"414px"},type:"mobile"},tablet:{name:"Tablet",styles:{height:"1112px",width:"834px"},type:"tablet"}}},themeToggle:{darkTheme,lightTheme},docs:{toc:{},controls:{sort:"alpha"},container:({children,context})=>{const globals=context.store.globals.get(),defaultCalendar=(0,react.useMemo)((()=>localStorage.getItem("storybook-calendar")??"gregorian"),[]);return(0,react.useEffect)((()=>{const scheme=localStorage.getItem("storybook-scheme")??"light",theme=localStorage.getItem("storybook-theme")??"denim:jade",tint=localStorage.getItem("storybook-tint")??"silver",round=localStorage.getItem("storybook-rounding")??"normal",[primary,accent]=theme.split(":");document.documentElement.style.setProperty("--primary",`var(--${primary})`),document.documentElement.style.setProperty("--accent",`var(--${accent})`),document.documentElement.style.setProperty("--tint",`var(--${tint})`),document.documentElement.dataset.colorScheme=scheme,document.documentElement.dataset.rounding=round}),[]),(0,jsx_runtime.jsx)(esm.QN,{defaultLocale:globals.locale,defaultColorScheme:globals.theme,defaultCalendar,children:(0,jsx_runtime.jsx)(ContextWrapper,{children:(0,jsx_runtime.jsx)(blocks_dist.vD,{context,theme:"dark"===globals.theme?darkTheme:lightTheme,children})})})},components:{h1:({storyId,...props})=>(0,jsx_runtime.jsxs)(react.Fragment,{children:[storyId&&(0,jsx_runtime.jsx)(dist.Mz,{storyId}),(0,jsx_runtime.jsx)("div",{className:"sbdocs-title",...props}),(0,jsx_runtime.jsx)("hr",{})]}),h2:({storyId,...props})=>(0,jsx_runtime.jsxs)(react.Fragment,{children:[storyId&&(0,jsx_runtime.jsx)(dist.Mz,{storyId}),(0,jsx_runtime.jsx)("cite",{className:"toc-selector",...props})]}),h3:props=>(0,jsx_runtime.jsx)("code",{...props})}}},globalTypes:{locale:{name:"Locale",description:"Internationalization locale",defaultValue:"en",toolbar:{icon:"globe",active:!0,items:[{value:"en",left:"🇺🇸",title:"English"},{value:"ar",left:"🇦🇪",title:"Arabic"}]}}},loaders:[index_browser.Rc],decorators:[Story=>{const[globals]=(0,external_STORYBOOK_MODULE_PREVIEW_API_.useGlobals)(),defaultCalendar=(0,react.useMemo)((()=>localStorage.getItem("storybook-calendar")??"gregorian"),[]);return(0,react.useEffect)((()=>{const scheme=localStorage.getItem("storybook-scheme")??"light",theme=localStorage.getItem("storybook-theme")??"denim:avacado",tint=localStorage.getItem("storybook-tint")??"silver",round=localStorage.getItem("storybook-rounding")??"normal",[primary,accent]=theme.split(":");document.documentElement.style.setProperty("--primary",`var(--${primary})`),document.documentElement.style.setProperty("--accent",`var(--${accent})`),document.documentElement.style.setProperty("--tint",`var(--${tint})`),document.documentElement.dataset.colorScheme=scheme,document.documentElement.dataset.rounding=round}),[]),(0,jsx_runtime.jsx)(es.xC,{i18n,children:(0,jsx_runtime.jsx)(esm.QN,{defaultLocale:globals.locale,defaultCalendar,children:(0,jsx_runtime.jsx)(ContextWrapper,{children:(0,jsx_runtime.jsx)(Story,{})})})})},(0,addon_jest_dist.w)({results:jest_test_results_namespaceObject})]};external_STORYBOOK_MODULE_PREVIEW_API_.addons.getChannel().on("LOCALE_CHANGED",(locale=>{i18n.changeLanguage(locale).then((()=>{document.documentElement.dir=i18n.dir()}))})),external_STORYBOOK_MODULE_PREVIEW_API_.addons.getChannel().on("SCHEME_CHANGED",((theme="light")=>{document.documentElement.dataset.colorScheme=theme})),external_STORYBOOK_MODULE_PREVIEW_API_.addons.getChannel().on("THEME_CHANGED",((primary="denim",accent="avacado")=>{document.documentElement.style.setProperty("--primary",`var(--${primary})`),document.documentElement.style.setProperty("--accent",`var(--${accent})`)})),external_STORYBOOK_MODULE_PREVIEW_API_.addons.getChannel().on("TINT_CHANGED",((tint="silver")=>{document.documentElement.style.setProperty("--tint",`var(--${tint})`)})),external_STORYBOOK_MODULE_PREVIEW_API_.addons.getChannel().on("ROUNDING_CHANGED",((round="md")=>{document.documentElement.dataset.rounding=round}))},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./.storybook/styles/styles.css":(module,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__),_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2__=__webpack_require__("./node_modules/css-loader/dist/runtime/getUrl.js"),_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2__),___CSS_LOADER_URL_IMPORT_0___=new URL(__webpack_require__("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 fill=%27none%27 viewBox=%270 0 20 20%27%3e%3cpath stroke=%27%236b7280%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27 stroke-width=%271.5%27 d=%27M6 8l4 4 4-4%27/%3e%3c/svg%3e"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_1___=new URL(__webpack_require__("data:image/svg+xml,%3csvg viewBox=%270 0 16 16%27 fill=%27white%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath d=%27M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z%27/%3e%3c/svg%3e"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_2___=new URL(__webpack_require__("data:image/svg+xml,%3csvg viewBox=%270 0 16 16%27 fill=%27white%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3ccircle cx=%278%27 cy=%278%27 r=%273%27/%3e%3c/svg%3e"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_3___=new URL(__webpack_require__("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 fill=%27none%27 viewBox=%270 0 16 16%27%3e%3cpath stroke=%27white%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27 stroke-width=%272%27 d=%27M4 8h8%27/%3e%3c/svg%3e"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_4___=new URL(__webpack_require__("data:image/svg+xml,"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_5___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAABRElEQVR42u3aoROCMBTHcf5lo2fxNHgaPItapGjRRKJooWjBIEGD/8y81xCmrjhg7xte4VZ+n21vgyMyxkSaS3V4AAAAAAAAAAAAAACKx1NlVQGMsgIAAAAAAAAA3wDpKTOb3cH0BuO3kmdJegwX4FrczXwV14JXazhdmOyShwUg4SXYr/Dl8oDgD8C25F1WQhAAMpO2gOX9Ln3h15jOAmwPiVOwfZLWxi3jXfcBJov1W6j+aGYdd8zONQBpmp0HkMAuoWzbIIgV4FoStgog20IFwKdT4pLfwgb4djn68+w3DyDhqw3SY/jmAWzLXhqmnAbBvw3K7Ntufn/e8+0BsB15Hme+eQC5CbpcjtQAeHjx4YsQAG0CsH0cUdUEAQAAAN0AHIMAAAAAAAAAAEDbANT/KKkXgJ+lAQAAAAAAAAAAABTWC/MCectA2CykAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_6___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAh1BMVEUAejbjdGrhZlvpkIjeWEzVLh/bSj0AAADTIBHYPC6MFQuMPR3mgnkwMDBAm2jsnpcwk1uAvZuXKiFAQEAVFRVdXV1grIHBk4SAgIAQgkKiUkC7gXTwsKr0yMT53duTSSu1aGFwcHCQkJCNPR2weWNQo3WhYUcgik9wtI6hQTjeV0uQxaegzbTU8WaPAAABOElEQVQ4y73USXPCMAwF4MqWxBM4ZCcLJCyllKX///f10AvMxOml03f+Zjy2nvy2eM4ST3l/e0kcrv4ICkxE5XdoYipmIrOwMAFgKoDxDEy2BgBmAKBNFoNlfQMggEAAXDYfEXisD4CpiBgbsL1upmFbtgUAGN/VM7DP1/kkLKtTAWUoIKSGfd6tp2FdLeFSYvLsKGDVbSKwTZbp6B2LBPOjX2X5NDwl7XIYvHMO6sMwrL6yxySskqQYeQeAwcxjv84+J2FdH3tnHnwncjC3zV8e8mkudbkVeJhy6hXSrCOXqY5t4yRAfgrEzTWfPnqRnA7KCmUzKFvzyCIjrKoiEDtmZkcU9l0XbU8fiHYps985onMW7+MNaapqorZLcZkp7sGUXSDyjtXOcw1nI1VAlYz7/17X2E/xDU3CHUk5qQKIAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_7___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAdBAMAAAAqZzNAAAAALVBMVEX/AAAAAACvAAB/AABvAABfAAAtAADKAACPAADfAABPAAA/AADvAACgAAAPAABIzFtLAAAAs0lEQVQoz2NgoC+YwHOjgL33ACeK4PJD23KOZetooQjO2nVZSNF29RoUwaWB4nFPC0VDUQSVHEUSxRxFlFAESwwFgUDYHUUwJBAkKOqKIqgMETRCEVR3BAmKFKEItppuExTMCo5AESx28RAUNHExRxHUYL/XlvG2oAlF8PLc7Iky227aogg2WxxKFNNptkARrGSYsVCqk2E6WuAxe6cYYIQop/amCZjhzJaAJfA5JzDQHQAA2O0qTBBsTKkAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_8___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAARVBMVEX////30tg1TTNpOTP0w8zWJUUjVDIAYjP////SEDTxtL+/FzP64eVIRTKELjPbQV6RKTLjaYCeJDP88PLmeI30xM3gWnIwpA//AAAAAXRSTlP9g+pWxwAAAHtJREFUOMvlkzsSgCAMRPkEZBVFRbz/UUUsdSCFlaZJ8ybJ7k5E91DuXkJ8HVQpMkC7AjCLbIFjxibytPV10AKDLTf6OjgAYxHTWK2AOTdycq+DGtC59caEOjgB6vQxZOH0ykT2jWzVxUfF8fFKJrWT4WddWIo//JlH8AAwAB+HdjSvjAAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_9___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAArlBMVEX////EKTjjmJ87IQ52CjqlDinCITEAAGYYAl1GBkzWZnHmo6n33+LUYWzknqTv7+/z1tn12tzSXWg0HQ2TeThBIw+akYj+/f3y0tV7XBbRWWVTNidCKhhrMxTW1NLe2dOTg3XGvrfLyMWunnZtWC+xsbHu7OdcMx5LJxFDMCbU0cl6WkhwY1rPwJimfhnj3Mepqam4trRkUkN5akOpijeOaxGObBR+dGbKwKKwmVwJBAHeAAAAzUlEQVQoz5XS5w6CMBQF4Kt1r6oUENnDwXaP938xgcgIKVjPr5J8acq5F4YMGY17fWBBncl0BkwoDQMyfaMBZmi+WGU36b56MCkwRYMcARiyqh5lvQYztO4uIQ8+HBGPOHm306ARpdE4PnGcIpz2UKBtdyNCLVbgIgW5OD03oiSihYWLgtD5F4Rb8rsCHxQ9Ut+XkIiQN5Gc0KsWTsMaWB5xbHsPtHrKDiGWCH7p34+2qcTSQ7pHV2icdTnn0Hg6NmZdCmiFzGv21+JW8QewIBq5Sg9RSgAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_10___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAcCAMAAAAkyw3kAAAAh1BMVEX+3wD73AC+p3Ppgw40QYW0mmmvlGMAGKjQEDrZOC7ffBjKr0zTtjXUuEDevyjpyBzmySXqfgn52gi6n23Or0DbvjfHrFnBp2K6oF/kmw40QIXZOS/ixCLOsiuzml7VYh3CpU/DqVndjS3UeVztpoLIakj31wTVhjLsoWT+7W/dWULNRC/51mPLu1LCAAAAtElEQVQ4y+XUSRKDIBAFUIHQSUABBadE42zG+58vutNN696/fvWLLmi88yI3b5X7ZRFvCU9reD0SNFqbbWikktw67TQOCaVNCjZtbErwRjV8+kowFhQ4lDD83t8ZgsMgyaB79d0MeTZijQpk2z6dP02k8DPWcRgKXYVxjU/tP2aoRB4/ShQGIBkTJs8l9/FGCkCBT7E4jIIk4ZTSLAmijbsmxOe8JGTHoxgLEx1vFXZA7Ev5Aw7LHoRODS8/AAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_11___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAWlBMVEUAAAAQDQDVLSbRHSpmBBfKCC7/ywBmBBfMCS8AAABPPwDhWRvAmQAjHADzvwDuiA/yrAVfSwCQcgB1XQDcRiCgfwDQpQCwjADymgufTg7pdRSzaAvFfwhAMwAtf7ufAAAACHRSTlP9/////////sajZT8AAACgSURBVDjL1Y/JDsMgDEQxNE7MDk3S/f9/s0bJhVYKXDMHLJmnGY8Ypi4N4qSgkkZ1gTLi3BltfFQd4JNNsQ3KgEFO4S6bjgYNFypPA5xVqYKtaLkfF8MPOF5qvd7bxEe1HoWgWgkX4KFtvRZ/IF3ROqLo4RAsv271n7y4Y8e8aiDIPic6BsFbZGnbcuTspEHzpTfdKrPL2dQHsmkvSKcDvxd5Iyc+x/1IAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_12___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAdVBMVEUAIWlgdKHUeY7g5O3yxs3///9nbprIEC7AyNrYVmuZzP//5sD79fe/x9n22N0NK2WLl3nz88z/7M//+e//zoOgtpnZ3Of/oxv/4bORq4mewLbT1J/u787Y27H/uE//2J/Hyoawt35Ya21jdGm4vpf/xnD/8t91fNiSAAAAt0lEQVQoz9WQSRKDIBBFcUBUBhEQZ818/yMGimBlYYlZ5m2g+a+6iwZFmkTAkCOU2zOLixTsYQOrOtFXB6oVD7WcUqoZIxAhwgjRpqS7ItrhR/HK+ThzfvGjDZqYqQhBwpi2tUtqiJ+dgPXWM0rSIs7sZ9zNv9dQLRhvog/der7VaVVYtGL6iD7wC7eqS+a1w51aRhDi8WpbrGQTFO9SQingLSiCpjSEGwJQDWU5VOCM2fenvL/jDaJ7Cj8g7Qw3AAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_13___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAn1BMVEUAAAB9oW4fGQGtjw7NECX80RV/uOLOESb///8Acsb88/TULUAZAQSnESUAOGNSRAZ+aQs/NAXdWGf209fPFio+BAtnQHXCDyMQDQG9nRDmvxPdtxPNqRHrnqZzCRXplZ69GDIAccU1WJzFECR7ChZNBw8IP2M3Z2dtlGxvWwmWfQwwKATtxBTgZ3SYKk8QarmPlLoTaLeRkLWdJ0vmvhOhEoG+AAABDUlEQVQ4y43OaXOCMBSF4duE9LQgq4ps7utY7f7/f1tZjCSQqmecQS7Ph5e29NC2tB484gZrslz9lBAxVj/UuRZZ2Ggn5pNf/ph23KCCGLeXN6I8CYKkqP/KjdHASZvpB5TyNOWcAr8NnFwglExeHEWWiWPBlUBIiFlzCYOQnUS9EytfmusMLZSZYS6yBv6KPLwGKlBmMi4u46wNVCBcz/N2+8OTssN+Vx5d6BDxq3ExutBamdzK6kEsPvrua4E+xPuy65Y/MMF+ZgwzxOeztm+oUHmBY78osx31mwYRqTDC/xDz1s1xC46G0g1HN+E1Uw80QJkZ4R7EtHJT3IdVZjfQDB27F2iEwPlsOP4B7QcfgqeTwMkAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_14___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAZCAMAAAB0BpxXAAAAP1BMVEX////u1q/oy5jSn1L37dz59O7u3L10rN/R4/T9/Pzozqjfun7koBPhvor05s/Yq3HcozzalA7lxpzXpl/VkhUfGetuAAAAWElEQVQ4y+3SOxKAMAhFUQgkSshX3f9aXYCOUFjm1qd5DLA5gwU/4e4MHknD1ATMJNWuijaMgUqhzDbMY5aRown5OOdFwYaAQXtN4FjDiPyy2n3H9Y+/wBtvcRWqoJAFOQAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_15___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAD1BMVEXZABIAM6DyqACiDTW2iiiq+uFNAAAAHklEQVQY02NgGFBgjAUwCGIB9BN0wQIYlLAAugkCALbdITUesQdRAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_16___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAKlBMVEVBjt6gsG//0QBBj96gsG58o9qqkbfvNkPKepTZan9Wm+GRpdO/jathouOFF8O8AAAAAnRSTlP9/o2EjdMAAAA9SURBVCjPY2A2xgAGDDgErYOxCNokYxG82YUpGDa9IpU4QazasVuE1UnE+2ggBZWwAAYRFwzgSBPtlAkCAFHVa1J3h5tcAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_17___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAARVBMVEUAIWn5w81QZphpbZkQLnIgPHvsS2nkACvAyNpgdKHicYz////Q1uP99Pd9jbLf4+zg5O0wSoX70trZ3OcQLnGPnbz43OPaT7sJAAAArklEQVQoz7WQ2xaEIAhFyTA0vHSZ+v9PnahlOdlq+TLnRYGNB4GuiRY2GSIjZ9t3DTxJCoIeoESDBXhBBSwwmwVm07xOnon85P0scaqhc3iC9KCziBf3Dubarf3mSsR+Wn+sd+mg08Sx6fpWPmMHud1cFasMS+u5UOfSiwcHqZAWLuh9MzWq5sexSGld1YlhWcKnhgzMoYZThtmoYsKHcbRzRRZjxBJELNuVgv/pC+H0B3jjpdgoAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_18___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAQMAAAA03l8tAAAABlBMVEXtKTn///9O8W3fAAAAEklEQVQI12NgIAv8BwGSSbIAADA3LNT5TsD+AAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_19___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAKlBMVEU/nDXtKTkAueR5dTZOiaz1fYf3oajwUl7+6ev2lJz4r7XuNUT7zdH7zNA216A/AAAAOElEQVQY02NQwgIY6CboggUwCEKB5LVwGFMQLhghKF2IIZgmKNqFIZiJTRCrdsljSBYZYwEMAwoA/3cmVGf7nvwAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_20___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAM1BMVEVAi3MAN0EAWWgASlYAa34GCwgAHSIAAAAAd4v/xywoVkfvuilfShCAYxa/lSFAMgs/MQvJSo6TAAAAW0lEQVQoz63TuxKAIAxE0agJK77//2ulcqBAb+HWZ4YQFks+o5g0OISKCUIpjRAW6hAqPkZ9YKGLvUVVziN300BpWyFU7D9DePTFLgPXQxcOnxCWgtYMFpd+hRvLVBb8dDVZSQAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_21___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYBAMAAAB6qqLzAAAAJ1BMVEXOESb////20tb88PHtpq7hb3zfZHLXPU7QHzLRHzPXPE7wtLvplp+6qWJJAAAAZElEQVQY02MQBAG1BgYUABYUNFmARVDQFIug6gRMwe0MWMxEMxKqXSgDm0VqmILC7li0n8RmEZqRUDOFvbAJumPRHolF+wlsFqEZicfx6IZCAqQAi/Zd2CxCjyQ80YFmKLYoAgD8YhWfwKLYOwAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_22___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYBAMAAAB6qqLzAAAAGFBMVEUAak70KkHlLUGyOkRrTUd6SkcuXksfYUzbDaCgAAAAUklEQVQY02NgoB1INVIOQxdjERQUFHJAEzQECgoKYyoEAlSliRBBNRTBQIigKKaR6IYqQgSFCAti1Y7VoiSIoDphx2P1JgOLIpYAAQVdOAMtAQB5kwuiqFX2NgAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_23___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAALVBMVEUAJn//xyaqkEM/MQjTpB4gGAQwJQZaRg2ffBfvuiO/lRxzWhAAAACviBoPDAKyFauCAAAAYklEQVQoz2NgAAMmQTBQYEAGAy4o4oghOFFQvFBQEk2wbaHPEakMNEHhRNcQUUM0QYmTYolzLqJbFCFm2Iphe7Ww4XYMwcvChrYYgkvrnr/CEHTeGm2C6SNhQ0FKBAdNHAEAi0wclGP3UW4AAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_24___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAOVBMVEUAfDDsoqblgYbYQUnaT1bjfIHidHrOFyA0Yyznio/qlZr209XVNT2WeGLfaG6aXUvRJC2bj3fxur4V/dY/AAAAZklEQVQoz63PwRWAIAwDUGrTYgBB3X9YRyAHc/6vaQphbnWf4oRBgYnXmwInk1OBEWRK1XerhwIHBqQx0dFT/VGqNh7RfoVytTxmYGCd+5S8W72KkAhSgpOpwcTrjwKdsKVAwqSLH3bnEGqiS5R6AAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_25___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAjBAMAAAAUF1WdAAAAD1BMVEXtKTkAAAD64EL2oT6mlSxymLhtAAAAGUlEQVQoz2MQBAMRJTAwYICAUcFRwWEhCADCrTMjCu9IjwAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_26___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAA7VBMVEXZDxm71quuz5ugxor////w8O9RULB3ElcXFpYlJJyIuWu51KnT5MqrzJbM4b66wNWkxpZ3fLeyy6vG3rq92K3T29uZvXnq2dLEwqzx5eDn6upxfKpyfaukw5pOVKW3zrSlwaGmt7jDpZXCoH7B27ORamCnu4LRuaTl8N/i3MPc6tRzrl3y4KPx15d/r069ydXLvpexvMeZupF8e8Pw39fp3diRt4TK28efloSKfm2yhWRuPDCwoIeRq2DExOSwu8bc1Kypsonb3ZxhlzBhmjwZdcf5+vvNzN6/wYjYypvD0t5+roqxqJogesuuqH05DYSvAAAA0klEQVQoz63TVRKDQBAEUGR3k2WRAEGTihF3d3e//3Fyg4FK0d/vq6eH42JPImK4ZMT8D+momJoVdRoGSYEJTVUxDQJDwotlxZaksioQCNKCgOZVuxos6mxIAZhhjVrA7I1UKblmFoAaG5eWNW+/XlUmogbAPEPY8ZxO28FITgHQYAj73rXd8UOgJiKM/WevgTHiBwDMCvVD93T5nLsukjJQPVOm9u+t1/HbVCwKFp5Wbu6j/+7xag4+Yc5q8bJsinkSOgp9Zxnb8FHEsMfIrxB7fiVOJZw8OnZYAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_27___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAgMAAABzfiX9AAAADFBMVEXoES380RYAh1HycSGsqsUBAAAAG0lEQVQY02NYBQShYMAwWJj/wQDMZICAQcAEAH5nZ5nGou1dAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_28___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAA4VBMVEXIEC5nbZnUeo3g5O3////ZWm7xw8oBIWnAyNrGDy3Vf43UfozkuL9gdKH10tcsih+tg3YvjyXgj5jx9PL88PJfc6Htv8jMYnKScFNIgzyyRE1tjVHUoa3YdYbhoq7lrrewxIe7Dirg3rzMuFN7s6H3+PvY3ejWz9y5JDaHeVXCDiuaZVGZZFCHNiyKwIO8HDZ4PSHW6dSOZTK2za3CzJbd266cQTaYoJGIt6W0sXWuPzGdvK+Btsl2SiydqXifj1Kgt4ywm4qIxNrDXUbS09LPfSvSxoTU1qnKTyjApEiNaE+TnmGmAAAA8klEQVQoz73SWXOCMBAH8FUDAeQGQcV6gEp11B7aevTy1vb7f6AmDdAXxvjk/wGys7+ZnQ2AIJYqmEQCkOi7UBREyAttUMrgX6XlwqRZoZAxjHOhRBJ7LkIASNd7fVqzjpwGLsdXVbXVIA+fI8sIofoDGaXI2eh+T9fpaOR6cTaaQK/TsTOIsVYShWKBLsNOyTJl1GieV3YzhWmTXQ+rEvi27nYX8xQy9n/hlCYw+v583y4dhbdM6xB9fZi7Oy60j+HmZx9yofk0PTnOS3tiXoZy3Xh8bc+ex0aV82XkUc2wLKs2AG6GoyCo3sM14f4QN8kvl/oSq3LmixUAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_29___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAz1BMVEX/1R/5+fn6w7D+Yy3+/v78/Pz/WR//qBr/ThL/1SD/1y362M3639b58O373Vr46KX/ehb/yh7+eEv8rZL843z58978gVf/WRL/1zH8mnf73mP+2Tv6zb76ooP+3Ef75Nz6kGn7dkj789T70cL5spn/qhv467H6lHL644f84nH8vqj677/457j79fP8+Ob86eD6hl/68cn82kf5t6D848/758j2wa/62Zb8yrj8uqP9bTz6zpr64pT6tk/8bDv8YCv8rVb37uX+dDDKysr/ZhSbtK0qAAAACHRSTlP9/////////V+qNIUAAAFMSURBVDjLjdPpcoIwFAVgAtz0sisCDpsgUHfcrWv3vv8zVcXOOC2hnF9h+DiTOyQcJ9VJs8HVgo9trAObDcR/oSxf6tjQ8wbDYnGtY0HZs4xebzweSPI2xgq49IwEgMDndL2Lu2y41Ht2TgiBTb6jWNUonfsmC5jF2b57qIK6TYix/XDUrO+atGqP1hTe0znGc1AEVqNvdTzJn4iggRKRQHXLoT9c2NPx4C0joLYU3lmFtBxaCZynBU0lYiDweJdf0CDJ6aioEQCEiGw4XJDTF6LQD0GjVbBjg5NefkWqBSY6KyacAKSgzJEKJq9potIvgUtd0o+5MhupsC9etXiRL4GyZZN8JKghvZ0CfOGhBMrGhgQjeshmd0MIf/foG2v31Tw/OxC1sCwFlJ/d29dPES+w4c9xv0xAyguvsLg9RahJWfCurircQ7uWw2/OAzNFFY4IKAAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_30___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAgMAAABzfiX9AAAACVBMVEXVKx4AeTT54wAKw3EdAAAAFUlEQVQY02NgoD1YBQc0Y4bCAa2YAHXmWafbUCnbAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_31___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAALVBMVEUAI5X+ywB/d0oQLYvPqxswTKnL0ekQMJuwut5QaLY/Wa8gPqJgdb3///9QWGaw+VaMAAAAeUlEQVQY02NgYGDo4DYRhAEFBigoX7bYEUOQ4ewBE0zB2VODHTEEGcJSTTAFORo2O2IIsldlmWAIMvDcYXbEEOTcGWqCIcjAmgZxAIogzFuoglBvoQpCvYUmCPEWmiDEW+iCYG+hC4K9hS4I9haGIMhbGIIgbz0A0QCx2SL7cD63XgAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_32___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAElBMVEVtqdIAAAA/Pz/t9PlBQUHs9PmByX+UAAAAI0lEQVQoz2NgGHYg2BgDmDI4KWEAFQZBLIAEQaxmYrV92AEAvTIRzfY9AH0AAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_33___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAcCAMAAAAkyw3kAAAAh1BMVEX+3wDu0we+sB0hpDE3qi1KrygInjgAmzoAJ3YToDUPMW8fQIaPjzTn2QU/VFgtTI47WpX43QGuyRKZxBfR0wqov8uNwRl8vB5efqUgPmff1gcQNH4BmzpjtiPBzg2jxhXW7eAfPWeSubggQoetzL/v2gNKbZljdHhLc4ycr2+14cXC4NI6VHmUxPVgAAAA9UlEQVQ4y73UyRKCMAwA0CCLLQUKKvsiuG///31mKIsjIPVCDj1k3kxImgJryYBFoKZJQSMACIx5qCeAkegzkO6hiT39AbP8DIrlmKZjKWDn2RRUC4BVTOqIVwCFOgqN0ENHukDphcYQajv8MCXuYaxgYqd9QbqtO7g/yvLgHy6pi9KqU1v6CXVbtHplhBzdyC99lI7I2XoH1U07E7Mp60Yn/2i22Q0dhUzY6HnroDoo7fAUTX0QfhqU7puxUhI11bk71kw3nopwThjD8uw1Op7vgbPpgbdXWAlZTV/hH0uxzjLJNUMqu7jiKXgyT0H+cS32A3gD3OAiYEPQ1/8AAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_34___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAABR1BMVEX34BdnCRRPBQzzxMn67Gn55kL88PEAAAD///8JBgPWMiHhaXbQFCj9+c2Yig378pzMuRL+/foQDwYtKgn77nmMjIvx1xbkfB3hax1BBAvqlZ0aAgT54eP20tZcBxA6NQX//vQcHBpSUk/19fVnXQlpZDT78JE+Pj51dXX34R7+/On66Va0tLT44yelpaX++9ztrBrdWx389bGyPBqhRlCuEx2lLxjnh5KyJhyjGRsoDwT998Sllg/45DM6OCHq6upyaAr03RZiYmKYmJi+vr7BwcGkmTwsLCzPz8/ZxBTCsBL89r1GPwaPgg3886l5bguwihJcVAjZ2dncpxc0BAnYq6/CDyPBexXmjD/ro2ORbg7IUBzXTx/jdoGTLxdjIQ6DIy7XPE7sn6jHx8ftpa3keIRtCBRZEw6GPkZjHyZSRkfw8PC1DiE//erTAAABIUlEQVQYGY3B1XLCABAAwIveJRR3d3eXKnV3d/f/fy6UyUygHcguaGYTQBsis97ICzARDYSmE/wsjEMqma1ENg8ATvgHjcpULs7z8Fc4Yl+Okprv8cZXrNiyaRiCfWuLS+tm+uVvTvXo/ERU3LUJaVCgQkqmCiciiZzuRafjfCRy1GPWG3kB+lAtwHzWcl9+juhZ9HhIEdIbeViNz0mokL4DDOLHu/2p6XkQSQ16uiZDzCphH8O0vcgGsNO+rxUOSQUUjs2dAyuy7Fur88p4W3duFtGSTOXmaQCGOM4ubxtyvS433F43DoQj9pUoEYwoyfL1VbVaPj1GNWscRjhKLper7HQe7e9tW1AFxtmYWQhacAAmMhliQQkRtDEZQJsu/ADqTiXJks3I9QAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_35___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYAgMAAAD16ldTAAAACVBMVEUAlm7WJhL////BTf+eAAAAFUlEQVQY02NYBQcMVGXSCoTCAVWZADw2T7GdUBaTAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_36___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAALVBMVEV3ZDoAnknvKy14Yzr60BVttDHxPin4nRz6vheYvSmvkCrfzBr3ix72jB4gpEG5oHn8AAAAAXRSTlP+GuMHfQAAAEdJREFUKM9jUMICGIacoFoSFkHdQ1gENZowBNVKXFzcYQYwMBtDgJWLy2Io04BBEAa2eMOZcEE5zymYgqKBooEYgshgSAsCADLrPLD18xGQAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_37___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAWlBMVEX///9y0YTXPk/RHzPzxMnz+/RIw18etTrOESbH7c7t7OQsukbpl6D88fLhanf6/vuc3qid3qmW3aPc2MrniJP++frwtbu4IyfNp5zaTFzBdGvAZ2G9PT3dW2pQSsWXAAAAzUlEQVQoz42TSRKDIBBFvyJ2bAecccr9r5kFEjEGil5QLF7xoPkNAFn6ClaawVYl/JioDJMXAFA3Pq6pAaDIQZRIeP3GKhMiEFHZefyntSvJgESu/z1m2bi6VqIvePnFbK4+i8t6A61/AnhZGJgu6x20fkBqLc3utP6C1m9OdKxPkHo41ZMfLFywCIJqGBTMGgJ7sD4Y4ENzSJ1I8L4xwNvO/seY9ih1rX/bU7a24XA27aPhkV/ohmL1h+K0emPWnjGLDG70KEQPV+y4fgCOXxe97SpR6gAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_38___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAaCAMAAADyku75AAAAb1BMVEUCLaHPzs7aACHgeIngACXfACXU1NRxF2JxF2IDLqHi4uLf39/Hw8TYDS7TpKvMtbnIyMja2trKrrHcHDzJu7zDjpbaKkjAwMDRlJ6/sLPEdoLQSF/heYjatbvCbXnQe4bXZHbXhpTFXnC8qq27u7sIHT1WAAAACHRSTlP+/////////kgsYtwAAACuSURBVDjL5dNJDsIwDAXQ2EkNZG46zwO9/xnpCiGVRl3DX3hhPf2VzdjjUhj7KXi/lhtLxCHGHHfJN9i2F2ApBOYBhcjisLMoMgIUaLsITIxVJY4AI5bKmkhj4ejpvK60a8gVkcbJQ04AQKTBT5HG1UOzVTvbGvDrOcQ61yE4rV0IOi/wFM4pUZq+x3wGzSAJlJREUipI5WBOYNbzxXLO63ofduF99gkvH8Vf/swLLRAf6S2QnckAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_39___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAHlBMVEXOESb80RYAel7ZQCGINDjyqRjRHCTiZR7ndx2INDk0zy9lAAAAPUlEQVQoz2NQAgNNBjAwFAQDBoigyhAXZDbAIsjRgCnI3hpRgCHIFiiagKm9UByLmcGmWAQT2IZVeKKmEADM8y2ZtlFueQAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_40___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAM1BMVEX/AAD/MDD/EBD/19f/QED/ICD/r6//////wMD/8PD/oKD/YGD/gID/b2//cHD/UFD/kJAQFQNAAAAAgUlEQVQoz62S2woDIQxEj5doou7l/7+2DwXbwupa2nkIjBwyGAa68oW40vdgKUugmUi2BVAOOGQBjADxFtS8A+xZZ6DW5s8CUJpvVYegAcQ+bBzt3r0bR6fPhzTemPzL+jT7dejhLszPY/I0Yjd3NOJW6xaxhVKoLrbn/2AIvzT8AWsMCOs6h1CtAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_41___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAP1BMVEUAOJP+88P/99k6W3P8/P6knTwjTH8AOJP////PICfgwx3PIin64mf41ST63lKLjUqLjEqEik1IZG3UNSPSKyVE9uWiAAAAAXRSTlP89O1mUQAAAHhJREFUKM/tklsLgCAMhb1tmhe6/v/fGmawCLFV0FPnwcnhQ4+bQliWhPjBG2A/MEA9aguwlYsTPeYV/cuMxhXJqPadU1G6swyBidxUA0PHUiBwIXeugXQ1ZUytjCqSS+86gA9GiH7KZSp9bzUcMM8agTMZgO/+4wo/5hqOVIJxmgAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_42___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAA5FBMVEUBIWlgdKHUeY4JKG3yxs1nbpolP33IEC7AyNrYVmu/x9ng5O3f4+ykgJT6+Pp4g4T88fOKkYj21drZ3Oesq43prjxOTX4FJWvSynVEWYGIf4PDwIDnw2IZNnW9vm7WzYuJoMCbXHIhcTYAWCT+/v5lh5+irLewxt/GOjfhiCvZ2OLfkjZ9lnvZzMkdWCDaztuhsatUe39SeHz13uMxNW/FYFVFXZGfqXUzNnDIbVrHvaCMkJ1bZYDUmGtukG+zsKdBeXtCg1vGkWjNLC4NWiyOfHi/maUAUyDWTTzTpk5HcjhWeT1rSu5WAAAA9klEQVQoz8XQ2XKCMBQG4GAwAZQd3HdQq4B7666tttrl/d+nnKmpdsYB7vrfwMn/TSYJEvksh8IIlArwTadEHt0LFEB/IEwZDqEICjCSCZIkmVNDcylVDE0xw1FiHdmsn/JsoHfCun2lssIJ4PPLa2v3u6MQxlQ0Q6HU1YypCfOlqrbOjlO9npLL8mIqDZfhMvDH1rF8kuU3Gf9h7HluKXn48OzekVwgK9iDA2XQ9nr2O0FxIf1gOAz6CeBkMB4PJvGw2fFHI7/TjGGL0sHqfn51rW1pFglzy1q90W43yoXHXPSWql6uWfXCXFdjD4mLql7E6N/zDVdhFLgxamGzAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_43___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAARVBMVEX/zgDKwAoBMYIplynSEDSTy5NAZKH///8AMIIolyjwjxFFJWjwsLxfais7VWSHhD1mcE7nvwzIvwqnjXNwSH3MhhcOOXp2KHH9AAAAaklEQVQ4y93NSRKAIAxE0RYnnAIIeP+jWmVW9MZs9S+7XiVwvm0bnjaaHRQGZ4IiKcplgQmIptcByTsTvKK8XZyoorDwjpnaFe68/wuOVFaYeUe/tB0KD5r7f8Gza6sKK80nuFXhire+DG9UNhiZFUzRDQAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_44___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAElBMVEXGCy/+ywAAJmTGDDDrihCpkyFr4LrDAAAAAXRSTlP9g+pWxwAAABpJREFUKM9jUAIDVUEwcDYGAQOGUcFRQbyCAPqgSzR3NRKjAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_45___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAKlBMVEUAOKVqMWLVKx4AOab////qlI7AzulrMWEQRaxCbb6sv+IgUrGAnNPKe4MtJuTCAAAAAnRSTlP9/o2EjdMAAABESURBVCjPY2A2BgEzF2TAQJLgZmyCKzAFLWb6zMZUecRlBaaglQsWM81mTcYU7DBupsjxmILi5SBQG4oMGJSwgJEsCAD/7Gr8c0BulwAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_46___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAIVBMVEXeKRD/3QDgNA/vgQjkSw32pwT7wwLiPw7pZwrmVgzxjgfoZuX/AAAAXklEQVQoz2NgwA2UMEQUGBjaHNAFFzAwKGOozARilgkoQhxWosYKDKwBKIJMgYIpDAzsaLoZBSdgOsfRDGgTSwGqYAuTAQODagAW17M7YIpNxubNtgIsgkwMowAPAAD2ignB69EaTQAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_47___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAFVBMVEX80RYAOJPOESaaGkF9hFXMECYCOZGyuUP4AAAAIklEQVQoz2NgGAWowAULYEgUxABi9BM0xgIYgpQwgCrdBAGDOyRlGGexgAAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_48___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAY1BMVEU9jjOex5lho1nn8ebOESZIlD55sXP/xh46dcT///9sqWSyKCdTm0o8i0BPlC+HuYFJgjCSv4zO48t+VSw8hmA7gXs5eLHmvyCeqig6e595nyzOuCLz+PLb6tlgolhqZy5jbC7Q/dpQAAAArUlEQVQoz43R2w6DIBBF0UEGyoAtWnu///9XloKYNBGY88TDilsRbucNawC7CxMGemdCAEY/QUYf8lr9pDptFVhJlUX2fIxah4OvQ0v0ggih31egkiSWNwUti1ATKYDRz1KJEhQkf9F+eeh6P0OlFjg4XFlOi/yew4S4Dv8/5u2wBNP1eF+uZhgvvOvCYUKswvkXfhw2Ydj2aqrL7GgMBx5OhgNb1Rm2qwkyqnFff1UYnRYEs0QAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_49___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAKlBMVEUAlEMAlUPcJB/73krzrT66y0jdKiDthjWawkfvljioxkfxoDuLvUZ+uUZGJOr2AAAAAXRSTlP9g+pWxwAAAItJREFUKM9tysENQDAUh/EawMFBIuL0VqhExM3BAjYwghVsYAUbWMEIFtLqa/t/6jv+8qmsgGZt6xRi+ZpeBfJIiH4U6EfEMCKGEZDHXaAbe0KEMeIRx4A1jAHdOBAij6dAMTJWYmTcxOiQx1GgG9sFkceJEK/PaLH5jhaT0WA6GryTkVSejqR+RnoAexFQiUISXxUAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_50___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAS1BMVEUBIWlgdKHg5O3YVmtAWI4fPHswSoXIEC4QLnLAyNryxs3U2eVnbprUeY79+/yKmbq/x9mwutBwgqtQZpigrMf88fP21dpvgar13uPvoiQ3AAAA30lEQVQoz7WR65LDIAiF0SBibKPm1r7/ky6ssU1navbXnsmoB74BJTCM1oAoeB90v92HEb5JE4pWsLkLVMFPjIEfD1kOG3LO8blvk/eTrFFsrplkuaxs0wH6L9L4smAix5RwWS7BWI6eXGJtLYrTtmvrbX9G9RKWWu2uxK4ejB2H+00fU08aw4zv11bTknU8zbmV3iCtWrLVaANXVMDXVH7n5DqTBU72bG3iHknzqYibCbrC03802OegxFdJF0ufY0B3kOQQ+KIkh8DE8sVwhektESdjJtngT81EM/ybfgCcAAmZWoOTDgAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_51___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAP1BMVEXOESbRsnvpua2CcmLULkHjeIX6+/j///8AK3/dW2rzxMmLs7qdp3+9xaXj1bkoeExBb1tBZq1KY6Klx9mHvMkwUFmwAAAAUUlEQVQoz9XTORIAIQhEUXDDXWf0/mc1NLQzyx+/BCjIg9FFKGA34c5YawgouDRcAGCsOdcIQClpFgEg99Y6A1Dp79cKGoYZGua0nhdu/cDPLAeKFD3EVE0QAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_52___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAD1BMVEUAnmD3fwD///+p3sn81KqjQLolAAAAGElEQVQoz2MQBAMRJTAwYICAUcFRQbyCAPRzJ3OsczPTAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_53___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAhFBMVEX/////i4v/aGj/f3//VFT/u7v/QUEXF5b/AABkZLn/bm7/zMx+YaFWM4JgirTvGB2PkbKwbobgT1n1wcclFYxFioSnoLn/EBDfiZOEPHxQlbL/WFj/MDD/q6v/5OSnYZH/MzMfg56yVH6WXB4wp+NCfoj/NDS+UldzI298DFSHeJVeSqKsIk37AAAAj0lEQVQoz8XNxw4DIQxFUQPBkAxM7yWTXv///8Lag8QoWeTKq6cjGfTK4BfYNCtgkp26vn/PWRKA6bF7VtdzXKUBmF/MI47t655TuCHV7c7V1nQHGt4AEQ4IoQQTzJ0IQhlpKXUkg3DEPbobg3Dgkrsbvn+9JRk2cT4xQ3dQNFsgFnYxL6FSZekZfdDbH+EHirAUn8rfZdMAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_54___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAATlBMVEX////VMEX88PHtp7ANKIjCFDCiGEDPFCsAKo/fYG/43eDSITfnipXzxMmCG1DbTl9nH1waJoI0JHXYQFLwtr10HVdNIWnniZROIWl1HVZ5UILHAAAAb0lEQVQoz43TSRKAIAxE0aDiF8F5vv9FXeBaOutXRXXoWLt00hgcjQjxpwihXUUIobfCfJCYKg2Cq8swZDoNJbh/krH5C5PMrN+y9PNf6mRVRIF12DflaRw4LYy8HiBe2sLFLxRL4W+tZo9WXPUUXqHrEc6IUEytAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_55___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAARVBMVEX///+xt6THy7724cbqvH/Xfw+QmH3VeAD99u/d4Njt6+Ty1a/vzZ/lq1/iolDaiB/tw4/S1svns3Dfmj+8wbF5g2Obo4sXWHv7AAAAkUlEQVQYGd3BSRaCQAwFwN9jkoaemO5/VH2KyibgVqvwB5jxDfYj4xqXMEDFeEpuCp6hc3P2fvSZKHiccbQLDBVPZSi0CwzFwJmOChSODupcpwGKQB8NJ0Z6qY1xplW6y35kXHFoHtdWAcDYyQpNtBZv1kaoNtMFD9LNBl2SaMQCVkyUhDPSTUwpmi64tiz4TTctpAW3+OsVrgAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_56___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAARVBMVEXXExnz9fldMVZwj7LXFBrrio0oPnHriYz///8RRX6/zdyqHi/QFRwURX3JFiAnVooyX5CdITbP2uVwLU2En7xfgqhiXoONvJBJAAAACHRSTlP+/////////kgsYtwAAAB+SURBVDjLjcxHEoAgEAVR0DEMglnvf1RzGUbg9/pVq0mXUIobA0LmVIMQmu4QmZ4wPr1gdHpDbg0Iw9MXdG2PwbVRg5B9UwHZjSBknjNZ8XMcLMnUF7q8IgLg/05A307AxBIC/bs3DOyeMLh7wKQmBOYdEQKjuwMCux0iuw0uJHMc3CNW1r8AAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_57___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAeBAMAAACs80HuAAAAD1BMVEXGCy/VSGPGDDD////fdovhlE4KAAAAAXRSTlP+GuMHfQAAAClJREFUKM9jUAIDZWNDJThQYBghgoJgIGxsIogADMZYAKWCWC0awSEPAKZsVc82AYC3AAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_58___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAY1BMVEVqsef1xcbv+PZztug+r4gSrSzYGB4SrStqsuf///+w1vIgsjjX6/nE6s80uUn2+v6MxO2r4rXztbfpf4LH4vZ8u+przHqhzvDi9eWJ1pV60YhNwWD64eLiVVnma2/wpqjbMDVRQpFcAAAAAXRSTlP9g+pWxwAAAKtJREFUOMuN0NkSgjAUA1BapDGUVZQd9P+/0heKslhvns8kMwmSx1WSICDjUAiZN0JIJoUQkvdQCJnHQkjqQghJz1Vb6LlqD6mbf1Ct+4Ufzre19eyqBY5KmUkpz1WusTLGmE8n08s+bnr+drpHhG0iB1/VVDlXWhzi4KjI57KaAb/hmrY+rJ7CzuI8W1hmgAC2AyCAugcksLSQwHQABFDXgAR2FhKYZpAkegP2fSKc/aQhAQAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_59___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAYFBMVEUAaz/THDDGHC4rKytAPTJ+nipAQECAtZ/////80RYqKSSYLC5+nSqkJS6VjoNqQzeTfCveVGOxHyy2IyyNU6QMWjZ+niveSSncSCiJMjSveRBJSDW8QxS7Tm2HZlu1MmlGHhZsAAAAfUlEQVQoz9XTSRLCUAhFUR5Gk4j8/FYT2/3v0jFYVixnOdPLiAIi7zwed0NP604bGIwX5hTW5yZlEdbpI+ytCCmPVxFEF2i05oXxrIDOLlBncQZqY2R2gQ4WK1DbDZldoMFKCiytgyQXqLcCpNyvIggu/L6evxe+iev58gpvCkQKp08QYFcAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_60___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAWlBMVEX///80V4IzV4HBydPYQFGqucrvr7YALWL////OESaFrYzc3N2MwZvw9OtdbYLyv8XDqKJ3QDOQiYx0e2jDk5hopW2UPkR2rXvRXlettL2ZOTKbhpy9bH/R5dbyk4vSAAAAAXRSTlP9g+pWxwAAAGVJREFUOMvt0LkWgCAMRNEgoiObAu7L//+mfdJQWfnKnNtkqOcZAOgGHv3wY6galsahMbY8IrB0jLE4fiUJgy27fSqgtzlvvgJO9r6WKpjONc0SivdGF4LTikdisA4AjJj3hx/DF+7cINDJhV4uAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_61___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAeCAMAAABpA6zvAAAAQlBMVEXOECH20BjicB3xuhkQhfDqmxrTKx8Af//31hjo0CXaSh6KsH0sjtbIxUNspZo+lcW6wFFdoKiatW9Omraqul/YyzWj+uowAAAAtUlEQVQ4y43Q2xKDIAxF0agoQVC02v//1ZbgBXQSOM9rsmcCumKz6UYoMz81LcAJLcfUB/sBLugmqQo3tOiEagK/OAvVA1o8ZjxTBRj6cHEz5BbFVaFtFkq7IHe2OnZm1QQVPmBeRftvEVxxmo1hq/QQgrsNn9y4qr4gEeW56g21XH1DpvqCXPUB+WoGpWoKxeoNC9UTFqsHLFcjrKhGWFGNsKKaQamaQLl6wVL1hMVqhBVV2g/BwB0JqIxfPwAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_62___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAASFBMVEXcJB8vJQcPDALvuiP2niP3nyNeRg0AAAD/xyblTSCffBf+/v4QEBDr6+vPoR6bm5vWSB7IgRyrq6swMDBbW1uHh4cuLi5xcXHPnTqaAAAAh0lEQVQoz63TyxLCIAyF4dIaflKg1N58/zd1YdVxUcjCrL+ZTA6Hzs+dbXB3tUH68aYmCH4wUADcFJoUAPoxtCjn+KFBgX0lHbgpVCmw5ZLTa32FQioxls/6S0pacozx+ELRy2Ny2R7v1aKVq5czywr7jUfUFLio6QlFTaUQNdVM9J/FtX6FJ3flBuv74gRDAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_63___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAA9lBMVEWyJ0IDTaGAlVD52wqyKESBllD+3AHtHCT/3QADTqJggGbCuyMNVaOCZRddQSCleSiiqmoXW6QmY5rivRy5Jj/z1x59XizfyhM8b5CvjxLjzyzYySPtoybSsQX8wwSoxxiQo0Bwhl5ReWxwpZl2lXNBcXmaK0mpWEyGrH6AqpMfeqZwkIY+hIfJqhTnxQPTvD52WyzIpwerk0A4VH/OwBHqxxa9uEKymkFLRnVlTTe1wxO7ulgxRYd0alugglrGvT1TkUKcqFGlrTVZaZmady9RXW+hk4iBzeO3qZetbGNFfXRmrWSxgH15k45mskDC3ubv9/my090lViSgAAAAAXRSTlP+GuMHfQAAAMhJREFUOMvdzcUOwkAUheGhg4xUoThVghZ3d3fe/2VYlyYd1vzLky/3gjD6qTD4b9jMIhRjw3RCTAw7LVGoMyBEmrAYC+0G6yLsQ01MIxSD/jCeoVm5LC8nvUzcF8Kcsa5UyvmVkYP+r/WN/Hy9jyFT/37NhVxRcro7xDkQ6t45EMCuuMLtWs0/zgXOvQc80C5eqrVa0WZBQrcli5RmlDBgNDndSZI0SEYZkOdT5n5upXjMgFjBeNTFWPFAEPSkqt4NgMiP/RX8AFm1LNtFasN6AAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_64___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAOVBMVEUAAADXu2Dy58ro1qX+/fr48+bv4rzOESb////9/f3hzIf17NXfyHzr3a3NqjbHoBzn1aDOESXDmQkYz2ycAAAAXUlEQVQ4y+3QOQ6AMAxE0Xgle4D7H5YDGMmmocovracpnI5gacOv8HqFJZtU7K1YyCzC7EOGJtKAfTiBAJYLC8M96pqBxV4Vew/AiqpYAxCVaDQfZtGTUOx7dv/2ADMgFMzubFP8AAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_65___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAXCAMAAABODP0nAAAAWlBMVEX//////O//9s/X6rsAR6sBR6v/+d////8/dL////+i0ZWXx4HM5bDp6dqhyLelvrRzvIL7662uxs7v8MKL0Iv/88Krwanv8/pmr6uEtrUtnaR3uGldpqiAzICRExgrAAAACHRSTlP+/////////dElM2YAAABfSURBVCjP7dJJDoAwCAXQQhW1gx2cp/tf071NhL3+JXmLD0FVstTqm7AVRqnuGZgIi2FTQlo8eOQhuZxS1shC6Odow0UsRLPu52aA7+iOPthBsAzoOGoqofiO/z++wRtv/hV0LCDfBAAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_66___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAhFBMVEWOP1wHccTt7e3X0c4Ac874+Pj8/Pz///8+mgDjIRjy5qYojEXz8/P69dr28Mwag3fcIx0Qe9Eyjtjj8Po0lB682vKbOlF/uOY7mAbm5ubSva1mwono2MlCrmlcUYRjT34KeasNe6K8LjYwYafGKi8nZK9Dl9uvr6/IyMh+y5u95MvZ7OBX9KKrAAAAAXRSTlP+GuMHfQAAAKhJREFUOMuN0OkOgjAQBGAou8Uth4iKHOJ9+/7vZwjQmJjKzM/Jl3ayXjTD4vkrENKhBCHNUUgRCqGZHaRjCUJkZg+BmQNcLEObJEmT8CcDpJttjElTY5yQNmPD3Dzf7Ia0HuGrbZt/MB+h3gYaeJHjDsY8uZEV1zWr2AVz2zwCpYK76+vvO+qq0s47FjKVHu4Fg+cMg/5FMFgIBneCwWuGQf8kGPQwJx8qkCM/iEB9nQAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_67___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAP1BMVEXqBDerNnXVFUwsmCzsHDRVeMiAV59Bid0SrSv8qChjbi+ZQzPPGjXwOjH6kinzVS7uKTP3fiv1Zi72cS3/vyb+/BJuAAAArElEQVQoz43Q2wLCIAgGYCo6UAGivv+zhq6Vq+n2X3n4BBWej/vptiNQsgfDnC0MbUZ4NhgC8Ai/GZIxUcR+5WknJWUBjAm716iLTBFUyetK984T9H0SQdAMv5lxnUQDUNJyIsBKCq4Dy6W9eUVahcfD5Ty9hZApxQD2X7Ggq6dOgj+CJaNmW0Uf6C0NFLl1LfpC/0IhSdxBDfT2kbtoAUdoAUfoA7dQhXtQyQsr7xFoxTBegwAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_68___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAZBAMAAACx9nFWAAAAD1BMVEUAAAAAcs7///8AJkVUVFRJK4tKAAAAHklEQVQoz2MQxAIYBqGgMRbAMAiBCxbAoIQFDEJBAGOJKS051BtAAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_69___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAV1BMVEUPR6+FklsaUaFGaojjRhZEnSZ2iGXaEhr83QkHiTAmVp1YdXuipEfOwCgIdlMKZHUVS6qRmlM0X5WzGzaNJVJ4RmN0LGVnL240PJInbm88Y49of3CaoEu2CXfUAAAAnklEQVQoz73Pyw7CIBBG4TODgkJbWnq/vP9zujNSY+vCeBZs/i+ZwP3L+AOsqhir6hxGAIhnULXGBGrVPbxmzWCwgoE5X7i9VgKaRJICZTblsMCKFLYREUtxAC3Y8HyOoQ+b6hb8MSwwyRjbBJPM4ekSkFXsKu+fuWT10CzeLw30+YLLmwDvUabdsIdugLqGwZ1B13bj2LXuHH7o9/ABsVYX6gf7JlYAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_70___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAdBAMAAAAqZzNAAAAAJFBMVEX///9HUpXtKTnf7PcAZb1XTozp8vnQ4vMBZb1+RHbM4fK20+39jzf7AAAAQklEQVQoz2NgAIEUIaWQAgY0MFQFjUFgCVBwszEcMLS4gABQ0AUOPBgEwWCS0kRBBGBQwgJIEMRqJlbbsbpz2EUHAAeHPE2odssQAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_71___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAvVBMVEVps+fyxs2OiqtgdKFhptbTeo3YVmvIEC4BIWnAyNrg5O3kiJVnbpq/yNn7+vtmr+PWS2HZ3efAQhf88fP21drIRVpsrt1voM2buM5mbZrEWQ/YhHzUegjw8PCx3cXijJrJiIbLkXTZvADN49bPLkjTiJD13uN/uOF+uOCo0Mi1FySjyFRgrIHF0NnHUBLIgYjY2NiF1ZrPsHa5iXDYcBHOhgXknQFIt3uZz7HLYFhdyI6P16/Y0M27zb3c8uYVHlLLAAAA20lEQVQoz9XQxxLCIBAGYKIQjEgCKfZuYu+9v/9jGYSMF0a8+h+Anf0YZgG2VcwX0jgYO2IvIdsCuoiGoBLKSguzpoDZJS10KKV8GAYuxm668rSkWog1eTe8nIpngND3D77frE+hejoNd4NQPB2EQy5qCbf1fv/Y3C9hNky+aNmoJIZ5n2pqGNjode1Lr7tTULLseySV8HxrJ8n11FZQss+HCyrh4D4g5PloQfA9MGIsjlkUGeGq02GMNJAJegu3RchmRj0DBGO+JmQ+GQFjylWEqmXwSyoV8E95AQvtEN53dkXyAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_72___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYBAMAAAB6qqLzAAAAFVBMVEUANYC5x9z///8cS444YZwANIC6yN25wbmkAAAAMElEQVQY02NQAgFlBgYWJQRgGISCiYJAIMzAwCwIB2IMYMDKQAJgpaIgVicNkfAEANoyJ4DL1EUnAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_73___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAD1BMVEXtKTkAI5X///+ptNv5t70X6cUbAAAAGElEQVQoz2MQBANhJTBwYICAUcFRQbyCAK7MKQicBg83AAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_74___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAbFBMVEX83AiRuRi+yBJRoSRyrx4VjS3n1gv63AkkkyoLiy/Pzg9fpyEcjyza0Q3v0Qv22wk1mSf32wlGniTSKxn83QkHiTDaEhrxnA4dfC3pZhFjVCayJx6LPiL60An4wwrNGBvvkA7cHRhWWyfgNxaA7xGhAAAAFHRSTlPzv8HPxfLO6eX6wcrrxtTd2+PT9HbczSwAAACWSURBVDjLjc1JEoJAFATRZhJQENTs3wzO3v+OLsAIVnbV+kWWaxsvzVEeRAj7QoRS1AFSdIWUmQghLUTIKRMhpLUI6c7eez8MUbhEp0mAdL2fZwHeRjMzs+sQK/J8mT3e8Wv4mF1qAd5tHO3Yx2EIEIJL6uj1umMlQlwiQthVItxG/8NNNAZxuQh/UQEuUQVC24iQMv8CwB5UlCzbsBIAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_75___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAsVBMVEXOECX/tk+2i43y9PrOESb//v5lhMLaS1r////bTV1wjcbIDyTkkmjr7vb/9+v+8d+IoNH3t2f/yHqqhqH++ff/qzbfoJV4kci3xeTb4u9afL73x4fMo7P/0IzHKTvfnYvoq3yySlTBWmXkmXvdmYjEh4zpm13Who3yx5f//fn/1pw+ZbL/6s2Dh7b/3aqLotG1f5j/oh/AZG7VfHemd3i+oKKak7bywobNamm+ECDt5uYgMvG2AAAACHRSTlP+/////////kgsYtwAAACzSURBVDjL5ZNHEoMwDEVtiA2xIfTeO+m93v9gYR0yNuvkLTVvpBl9CYDZJAD4KVGaT0ICSP4E2bY8Lo5EO2mfr+MO8cSFYyq0cyBcckQnb11Ke8Uw2KJmZpVCqXHOzQVT3MC67rvy/lCgxhQT6DbCwKmCK/boyG0uV0Eos4g5GqnESoubVaRbT2R2RATHFsGHOPQ461H1UMeErLHKS0b08V7HvsiNcFCDQPyS9eTr+cvnegOnuCDbYqL39gAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_76___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAeAgMAAAAjs7ROAAAACVBMVEUAnmA6dcT80RaPCvp4AAAAFUlEQVQY02NgoCtYBQf0YIbCAR2YAPNdY51lSXDNAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_77___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAElBMVEWGjsY6dyjOESYMHIz///+FjcUzsQhvAAAAAXRSTlP+GuMHfQAAAChJREFUKM9jUMICGIaKoAsWwMAaigECGIyxAJoIYrUdqzsFsYChIggAWI9PB/8YOioAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_78___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAALVBMVEX/////AAD/v7//Pz//wMD/8/P/f3//19f/5ub/YWH/nZ3/sLD/Ly//gID/QECpnlCHAAAAk0lEQVQoz2NggAJmQUEDBnSALsjughB0KYAKMokhBBMVIGKsLyWvwwRrJ84LgIgKCgrBBBUFBSFiHLukNGCCTQtXN+A2k4GVFSEYEIDTnS5Q4CMoeATGBlqNCWgiqAQFOoKCh2BsnOGJ1UfY/M6xS9oDJtgCDyVs4clqKZkOEyybOBlqKAu28GRXQQg6FeCLdwxBAHsYKbiOyGOgAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_79___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYAgMAAAD16ldTAAAACVBMVEXdAAAAAAD/zgCNyoGDAAAAFUlEQVQY02MIhQMGqjJpBVbBAVWZAPgZT7HoYeqNAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_80___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJ1BMVEUAaz780RYAaz/OESbOEiUAAACCbAvcthMPDQG1lg+dgg3swxQwKAR6YlIEAAAAAXRSTlP9g+pWxwAAAEtJREFUKM9jcDbGACYMQ0VQEAbEC+FMhKBYIhZBmYMYguJpqWFphegqZ4SGdmJoF2+N2IgpGBqKKSjVOWMhpuBGaYQgkxIGUBgqggBnKVEwiejeOwAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_81___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAArlBMVEX////39/e/U1jPAAn8/PzHAAnjY2raAAzpZm3UAAsAAACbAQXQGAny8vL09PS4AArVRk64GyNVAAHCOAnFfIAbBACiExmvAAaRAQejAATOmp2+io27Jwa9RwbCcnfbxcbTuru5JizFbnLQq63ksbThrrAuAADESE7TuLnCICmnTB13AAR+OQCtMDe6NjvLMjtiAALdIge5bQbDYAjITgq2VwGSP0KTPkS9AAi3cnZPTm/iAAAAy0lEQVQoz53P1xKCMBAF0BQSTAJSpKP0Yhe7/v+P+czABMb7mD2TuwvAn1EAgBBCAJQJl5VbdD6jbZlNSKdFsRARap2J6gpf4jCMLriagLV9irsuOtm1fMW0aN5f23ZeTZHKllSS3LN2lrWzvDyRXqNjRjBjmDCsS7uXjBAWBIwQtpRD7Aqf80/gYjnUCT8IzsWBE2k1RIbhe8ej5xsGgv3ZohdKqWnu96ZJKe1PgDqItnlqw9cRqLprdR58rOZB7T4Trm9zf9xcR+APFrAUctS1tzYAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_82___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAgMAAABzfiX9AAAADFBMVEUMXq////9Kh8PD1+sc/9mlAAAAKklEQVQY02NgYHVggAFcTM5QMMDBBOIYqFLsTIImEHRDKBzgYBIEFJsAALoFJ2TsUBu2AAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_83___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJ1BMVEX////QDDPohpnVIkX87/L54OX0wsvxsr/cSWbfWHPldYzrlabbSGWxUx9nAAAAj0lEQVQoz2NgoBlgTSrFEOM2FBQ0QhNjaRQEglZUQWeQmKBwAIrgRLCg4AFkMXaImKA0siAPVFAYWZARKijogCQYCBNMgIkoYQEMQAUGMAUHoTpAggIwQUMkQTFYAAgiCUpCBbmQBQULIIKJKIImkGAxRBEUBitNFkQRFJQC+sVJEE1QULhpsiCGICqgUBAANkcdSdbxxVsAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_84___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAbFBMVEX80RbUJyIjhlMSgFhKVEn5xBTWMiEAel7OESbPsiL1zhgHfVtlnUHkahyRrDN6pDujsi/WQyHiZR3lcB2FqDeGSziznirdxh7lyRzsyxq/WiihMzDRHCT3vhPtkhnrixlHk0jypxl7fjq9uifbhgG8AAAAx0lEQVQoz5XT2Q6DIBAF0AHFoYor7nbR9v//sdZawIoNvS83GU5CQASuQ4i9l4Dh2OVs6x3k15u9Fazq08/U1Qp9FA0cphHoK4iRaO2sFRGacKZpt2ddGr3WNhDRK8MtC0vvvfIFZ5oYNEy8z1xBNUGaASvyvGCQUTXUkD5GTXsuJe8NZsARIFXTYQKYBrRCCnmmIQEgBxCTO9VbF1IWB1vj92HkwWGcr+evC3f8hK6PwvGZOT/cNUEcB7be/zOM2XsHg8DeS5725xrneLCWvQAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_85___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAh1BMVEUAAAACQwAAIgDdxAsAAAIAI4cAMwAAJIj83QkAAAAQDgCuozBPXV8WM3xfaVgACAAwKgEgHAEAVwAwR2/t0AiOfQU/OAK9ryieiwURaAAAGADt0hB3e0vNuiBfUwOumQbNtAc/U2gAEABPRQJvYQOelzi9qQZqfwMQIQB+lAQoVQF+bwSOjECMgg6qAAAAAXRSTlP+GuMHfQAAAWVJREFUOMt1ktm2gyAMRUVukYAjzrNW7fz/33dptaItPTwkmr0SchbGwXqpt5TCUOWOPceDMYMOdVUx5SqvqLMDe1qpIqUq57TfgGFq02paenK3Tt2lZzU9aJ+GK+iWNeblUqSYT3jpycu0rktXjbbd2rXny1i2w9P3Ck7/LOyWKTd35Ntlyv0yIbeVI9PDWT/sNNyBlv3DR2v10fj7EpPnU4ZhwEtHb44Q+P4YJAN8aAE9k5imDADsnnRddm+TRAsCEkiYZnGBOI6oFI78Qd8RCSEQIXFLF+Gg0YEgyVzk1+uboxHWjoaCEJHnN7yCFGe+DpTTC3HLFEejeGA6EArvcj5tQNpoR7+8LMYteGp+gayZvVnU+r9A8E/dZpk8R4XpaUFgnWp5PktfCUJEA7IhWP1ps4tJkDymriMkPsazNxkwOD5R7egn2Y5xl/nj7OGReD9A+c6SoAmCQP/MdmLAvv6B8Q8o+yuQH5IUZwAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_86___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAVCAMAAAADxFwsAAAAeFBMVEXCHzmW0OxmN2t3w8MNKHaS2/xePXLGIDgAKXvGITmQPGGQTmpsTH6IQGpka51wO2xAocE0qF5ovayF1Oevx+KBW3mahqe8mUjQxGkJh9h/n5iyuXuXtrSJgqiIsbNXmmeSpJZNn9a/h5e7oblqrNiVxsm05P0sdJ7LAldAAAAACHRSTlP9/////////V+qNIUAAABxSURBVCjPzdM3EoAwDARAB8mYDCbnDP//IS9gpJKrt7hREJ7PiieEZUX8C0IcAAvGWgYcqFyea0NDmIrF6RpIqCTOBaIiYYrlXh6YktDIW67XaOiOybk9XUJ3tKbPsibizDEa2pC3mSqEv1/PB+T+zAtTThsh36bO6AAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_87___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAZCAMAAAB0BpxXAAAAXVBMVEX////g59maroTj16m6yaT09/P09PFJl9DC3O/p7+bu4ZOqu5rX382PiGiVon3T2MqYoVjCz7f5+vrM3MSitpGYm3R3k12BnGjKvKzP3bz+++rx5Z306Z/w46vf17vmoc6yAAAAaUlEQVQ4y+3Stw6AMAwE0EsFh4QSev3/z2QNk2Fgy61+OkuWUaQpkaR8jJDhV2jMG9hpNDMaz8JKnE71UXPQSmzuWDGxjRLX7jQNxEAazKJU7SsOQgRtogzErrZ12/Xt+OaOBCvym/0Fb1tLFihEHgDLAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_88___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJFBMVEX////oES353Rb5w8ruTGHwdSH1qhvrNyj40RbtTCTsPVT0nR3fS35zAAAAZUlEQVQoz2NggAJDQUFhBnRAgmBoKBbBInUsgkKKtBV0gYKFQopSMDaDIAhMBGIhRSAhCeZCBFtDQ0ODVIFEBJKgEhwgCbalpaUlqQGJDCTBQmxmCsIEIYB+fscf8tuyKYpiJEEA44Af4yfh9owAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_89___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAFVBMVEXOECXOESb80RYAlGCovC7tjxrskBsC56JSAAAAAXRSTlP9g+pWxwAAACBJREFUKM9jYBQEATElMHA2BgMGiKDoqOCoIEwQNYUAADVVSCfgcZ/QAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_90___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAIVBMVEXOESYAnkn80RbtkBpFbjwEAAC8DiEjAgaQCxqcDBxVBg4bYLCCAAAAOUlEQVQY02NgAANmJWTAQE/BBGyCC7AJRmAKspWGVmCqZA9NYGARRAYgwaUTMAUz2RowBUFgMAkCAEjfH7SkK65IAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_91___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAgVBMVEUAnkkRpVX+8bZYwIgkrGN0ypzB59P80RbOESYJCAGk3L7t+PFAt3caAgSOCxo1BAn8/fX93lf943H+7J781SvZ8OSM063/9s7+6If82UC9nBDcthS1DiFnCBPBDyP/+uUfGgIfGgJ+aQt+aAtPQgb9/O5OQQa9qE5DS0d6uJeAemJ4QqG6AAAAsElEQVQoz42TVxLCMAwFQyiSIRB6h4QS2v0PiLHNRE6Rtd9vZp9sKXq9k0hEqj6jYbcTDuJkfHnGxaDfCwXxfFL3w2yRrdYJH0Q8puoKsNtuuBJo0P49ACzn8bSthA1aP/xoK4F/rN/QWAJLnN9QL0GCxO9KFKQEehB/tQRWoH6vRD2YS4JafROo9TAPb5iseRhqZZ6HWLkHL638FzpraCmsNbhmxipYXOkpiI9Leq5frY4Y/eRr36cAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_92___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAUVBMVEUAIJ/2zdTJ1cJ6e5/K0OtQkEr////SEDTXJkgYNamdqHn3+fC7qsOVwZ3m5c1hmlHJpDHs59z848dQba0QEBDNZmTXh19voHz84Lu0hjjIpTBzGy2qAAAAU0lEQVQoz2NgGAU0AZxQQFAhCxsbrzg3GwsRCvl4mYhSKMQsyMcsgamQHQ0w8jCLiQrzMKKLYypkkhKRFGAirJCLnxUEuAgq5IACggpxgVGFeAEAvUgOmZnoHJcAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_93___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAG1BMVEUAc8////9Vot/g7fnv9vx9t+YSfdPS5fao0O4m4Cd/AAAAQUlEQVQY02NgGFCghAUwCEJAI4iQgHKggsIpINLNEEUQCEQD4UyYoCFIUARVUDwZRJoVogiKgLnijlBBrE4aUAAAhVoQix6fUHcAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_94___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAANlBMVEXeKA/qeGn3yMLmXUz75OL98vHvlIjeKRD////th3n519PkUT3xoZfiQy3oa1nzrqXgNh/jUT0/tP8hAAAAAXRSTlP+GuMHfQAAAJRJREFUOMvd08sNAzEIRdHBBnzxd9J/s6kgHktZJayP0APBdZWjuq5fhbkdwZYYJ/CucNRRCPwJtlKKmyJj5nsH1b11oztgsoGATdasqgLzM6wEXSI8AT02GTE1eWUP8bydOle0D+la76f13BFpubEe4DDQlbTaAwykklNN7GFWYJVp6B6OnlIupTSLw3uMv/mZr+Abp+scdpIFX0UAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_95___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAD1BMVEXNKj5Db03///+Cn4jdcH1rDt86AAAAHklEQVQY02NgGFDgggUwKGEB9BM0xgIYBLEAugkCAA3bITVQzOs7AAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_96___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAdBAMAAAAqZzNAAAAAG1BMVEUBUZz////A1ObcHjUCUpz2xsyBqc3o7/a/0+YtMruUAAAAAXRSTlP+GuMHfQAAADhJREFUKM9jcAEBp2BjMRc4cGAYfoJKIKAebCyuBAcaDIJgEGwsiAQYjLEAEgSxmonFdiWGkRHyAMPXhW+2p/5SAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_97___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJ1BMVEX/////mTMSiAfY2O2pqdeDg8bCwuOPj8tjY7e2tt2entJvb7xlZbj+tLZ3AAAAOUlEQVQoz2MQxAIYhoogXsByNMIBQ9B8smUwhmCZ15J0DMENHi3cxKk0xWYmW2tEAn73KWEBQ0UQAHj7LkjxXc8wAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_98___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAgMAAABzfiX9AAAADFBMVEX/////AAD/f3//AQHNXVckAAAAF0lEQVQY02O4GgoF4QyDgbkKDhgGFwAA0P04aY5rCYgAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_99___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAXCAMAAABODP0nAAAAUVBMVEXaAACe1KvjRUXxmZnaAAAjn0DwkZHfJibsd3f////kSkpduHOo2LRfunQkn0FYtW7jPz/ujIyj1q/0sLCY0ab62dn2v7/zqKhDrVyMy5r97++GuGN/AAAACXRSTlP9/////////f2Mg7y3AAAAiklEQVQoz92PsRKEIAxEg9xFISIII6j//6EXQKuzSO2SzJuwWySwfEVa4FXB3ZEnIu/cDd/AXeEaiHY4ZhWVmtuLF+L/fIAR6iG4lbJJgjrlnJIgmFEXzIJgwsQl2jEE0Y7GnOfT1ZNG1KhXBt7ACu61GxUTjMNgA5e1FTwwqvinG90fAT4iwauCP4TbGUYnV3DMAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_100___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAM1BMVEXOECWl0Lrp9O6/3s///f1/vJ1xtZMAAAD////OESbP5toVhU1Am20/mmyQxapfq4VQo3lSLMJmAAAAAXRSTlP9g+pWxwAAAGNJREFUOMvt0EEOgCAMRFFKmToCAvc/rStXBsSEJX/90kzq3DmVcxuugYFThS70n9A8hWRU8UNokQTJeGF0Ua2oAaRgBGG55dxqlZhSQhlAAwAR9QAUXfisD3/e84LHZBuugTd42CCCgiyR9gAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_101___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAD1BMVEX/iD4Wm2L///+y3sv/176zaFdvAAAAF0lEQVQY02MQBANhJTBwYICAUcHBJAgAHJ0eZQMU55UAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_102___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAilBMVEXPFCvSzsrc3Nz19fXSfIfKHzTNSVnJESjMEinKLEDHSknAOzvHXmvCHDLTo6jMZnPHU1Tkx8vLln3bx6nFOEnHRVO6e3HIkXXKn6TKn5fLUhrIf4i9cCrGUGDPn4q9Sy3Rho7NLUHVzJLd0ovVv8LLHCXSkZnit7vTqq/z5+jOuYvEp3DCnV/t7e074otqAAAAeUlEQVQYGd3BRwKCMBRAwQcE/g+92Bv27v2vpxeQZOXCGf6X8mF3gIgwYJyq3XadoKvZdMR3Mi/DYxtVsF4KQ9JeJHk1IlfDID1B9niaIsxxsbfgHgWHBAe9RGVtzCbGod63Cqo4VeFZ8ZI0+QIvRZDhJZ7gx8b8whv8pgVlegsDCgAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_103___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAdCAMAAADvl95BAAAAM1BMVEX////Cz+5Lcs2OpuBcgNI9Z8n3+f0AOLi3xuu/ze3e5fZ2k9khUsEPQ7ymueYzX8ZCbMvN/KBjAAAAbUlEQVQ4y9WTSw6AIAxES2lBfsL9T6u4104iifEtuppM/0TL2UAognwpTCCvJiaC6ZKqnSh4kcbcRHx4VmqRse9DihqWucZpHGu2kneekTvZjgFy7FeNataId33iVN3azdwtDL2eP7wC/NfLOQC4WhA4gpKDGQAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_104___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAD1BMVEUAkkbOKzf///+q28Hvt7vgJlTcAAAAGUlEQVQoz2NgAANmJTBwFAQDhlHBUUG8ggBRSidzkDNWIwAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_105___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAALVBMVEX+0QAAAAAAmzoSDwD4zwHyxgAZoTSYuxeCawCJcQCSuhgeojMfojMhojPVrwBemeiWAAAAgUlEQVQY023RwQ2AIAwF0H+Aq0lXcAq5MYJbmDiAF4+O4A6u4AiO4DpSoWqxPb6U8PkAbm7V7BHoAaUH4NH1ajft+QXEOokNbAS6dfsa46tjthspZGVbSTDrYwVZ0xQTpJAiu2IKmwrZ6uPWRZ9Ii2AwwlvPtApRJtWZJf++44y4AGk2PZ/nYcIzAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_106___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJ1BMVEX///+8AC355+vIL1Pqr73VX3vegJbyz9fhj6LADznRT27NP2DqsL6WBkFXAAAAXklEQVQoz2NgoDdgOpajgCG2UVBQCl30pCAQTEEVYxcEgwIUQWaIoAGKYCNEUAJFMBAiKIoiaAgRFEYRFIQCbCqlCZuJ1Xas7sTqIwZPLH5nYFqIJZQYmNxSFOgeiQChfg9XF5eK2QAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_107___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAflBMVEX////2zdHqlqD87e776uzWNUj0yc7ODyX//f3RHjPrnKXQHDDXOUvhbXrYP1DgaHXfY3LQGi/zwsjqoKny4qTpk53ekkTpkZvVMkLs3Jfpp6ronTfXRDX//PHjzGfn0XDks6jbfDvirDPqtzbheDb00rrsrI3uvULLWjzhkDGG5NwUAAABCUlEQVQoz42T7ZqCIBCFB1OhtCwh00f7rt26/xvcERYZCrY9PxQY4HWOM8D5ZifA037vz8VuwzmsOOdZTVZVp5TqyNk6wy0rEHKO73U6ravj8XDopmm6xvBcjgdnSxwWW3sHOzdNc7f3bwsMLmc2pvm5mcjrpb98mXGuqYx82MLx5fnRP6WjLvxUDT/BxbpvbjfMTiQe1YmVhi+G63crDLVkEJDhV+lpGE5pFaA66XCRMBajOuUjv9SPHP6Wvgyp8ElJ9q+NGt22n9C/yQhjYRVLxtozHYnYYw0H8psDhrtfOAFCZlIqvJQi5XtlRlV7ZfZOJShXuG+tACE+tsJrc8X4QNslZvDYrj+d2w/y/o7CEAAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_108___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAOVBMVEUAAADzwcY0XzY0BAlAm21AQECfKSzOESb///8Aej3aS1uaDBzRHzL42t2bDBzULkHmh5JkeFpkNDmS7NDKAAAAY0lEQVQoz43QQQ6AIAxE0SLKiIKo9z+sRhqDC+z89UubVjYvXMDqSUhSgKQASQGSoimcU7cPBBY3d1KYTFrhnpM1tUKXCwcTu5o/Rt9zjN0aGIb4k3DshRZTaLMHMuyGHIvxAjjaEhDK4xL+AAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_109___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAM1BMVEUAr8phuIFvuHYQsb0xs6UfsrE/tZpUt4ovs6b+xQx9umyGu2WfvVJKtpHvwxeQu13PwC6ofxUkAAAAmElEQVQoz6WSwQ7DMAhDAwiwm6Td/3/tDrssSdVFGkf0BMa4lO1yjT3wOuoeKEfugXn43ALgd+Ck0VJSciVF+8j1SrL1hZQ2avQ8SVIwgzG2zEGSTBQbQb2+J0LtMzExa9c6gC8JPXnWdF6Pq1tGJDJdmz8eg0C4ewf0hz0wC02HLPbUJRQV0fTmM4tjJWB/hGI7ZtvB3aw3Td0Ecu+54W4AAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_110___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAUVBMVEUAAAC7AQHdgIAmAADl5eXl7+UBZgHZcnIAZgC7AABRAADMQEDBLy9pAAAyczIwMDAQEBBAQgDY3di4UFCjAADQ0NCAgIBgh2CQkJAYWQDmoKBlCIy5AAAAmUlEQVQ4y9WRyw6DIBBFr2Ipw0PFt/7/h7az6IJRA4tuPAmB3JzcDAA8jq47n66Ze8AqoJ8zlcsG65zFtmTEvlFU16S4OaURDJ5FP8gcb8FILNIoc1SUEiYWpyDi6iSqQM5RUFkRlrwnWyQeByn8r7F4xttbF7/jS/D7GZlDm5R1Z3FfRayl2LYmOhd5z4jfFaPROife8QjxAw+XGXSXe9vGAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_111___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAgVBMVEXv5+oYMHD////GzNy+Z3Hkv8PIEBDesLbFd4C5V2Pz8/eLl7dvfqaMmLhEV4s1SoJSZJTFDg740AB+i68nPXncggLvvwDRXQPIGg23v9NgcJzIJQvorwCpssrVaQXQSgfFGQz1zQDKQwnGLwnfkgDgjQDU2OTYxFDi03vu5rZRY5M4CaL6AAAACnRSTlP8////5PL/8Obhjyud7gAAARFJREFUKM+NkImugjAQRaetgrJVpJtsBcT1/z/wtayKCbxJyCnDSe8M4CwrNo8udZN9t+H7NZNctlIKHsfOqhhftb7V57q8boiOozLOy+znwl/RUXGmlHK2RBU3sixlVqkNsZJc5LngcmPGSrcir+tctLpa/z1ciLMpIfi62Nzy2op1zvVC9PaH484F7Lk98ev5eDxfGIO7Ox723kgg2BYpJnqW3kejJyB0Ck4MoZlRmkaWzDRmAkkiRIMLmei/EXr7hFwCiqJkInRJJmokdMRAFh8ARWEY2oiRNAnDhNpRTCOaCH5qJd+faQZlqTlYaaZNGm6feL/jIfaDwLpF6LAQRSwoCCkCZkboF+nJAP2z/gCvnR084pgM9wAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_112___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAJFBMVEUAAAD///8Aej3OESbeX21Vpn5BCxEIKRgAUymNCxoAcjnBDyM+gG8gAAAATUlEQVQY02OoUsIEDAxN2ATZF2ERZODAJshQhU0Qw1iwIHsoKgALMgiiAvoKsrmgArDgZGNUABLLNsYU5DTGFGTbjEVwsjGmYDammDEAor02RGMqg7YAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_113___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYBAMAAAB6qqLzAAAAMFBMVEX/AAD/sAD/UAD/oAD/cAD/QAD/wAD/kAD/8AD/MAD/YAD/4AD/gAD/GAD/0AD//wDINHCxAAAAgklEQVQY02NgoDfg1FK9gCG2xlC4FF30UnZbxkNNNMGFG0+0SGehivHWmZTOWfwmAEWQVUI6MmhjswKqoNgTpxC3xAUogkxi6ubFJYloKi18zn850oxqJufpEvnP7s/RHLpsu6NJtRCaOyfZtWVs00UT5A0XFj41Ad3zvEGLJtA9FgCBRSUPxoTUWgAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_114___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJ1BMVEWbFjXOESabFzf///8AKGgBJ2c0VIfw8vZQa5eAlLSgr8fI0N4gQ3uPvoTKAAAAAXRSTlP+GuMHfQAAAFVJREFUKM9jEMQCGOgmyKSEARQYQlwwgCtc0G31rhQMwcnGxpbogh7GQNCCJugOEixBEzwMErRBE0wGCZphE7QhxkystmN1J3Yfubgi+R1rKA1oxAEA7A9c3kKd8BcAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_115___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUAQMAAADFiO34AAAABlBMVEWeMDn///+ut+dDAAAAEklEQVQI12NgIBH8BwEsJIkAAKwEE+3AWvguAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_116___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAP1BMVEXtGyMvtnEPq1s/vHzyVVv//f0AplHxU1n////tHCQfsWav48jv+vSV2ra/6dN/0qdfx5HW8eNvzZzbXFlPwoebhZrvAAAACHRSTlP9/////////sajZT8AAACUSURBVDjL5dPLDgMhCAVQgXqH4tvO/39rt61OdNbtXbAwJ2gIOve8Fed+Ch6PWzmc1zFR8nSm/gIWgPINmE2YaA8jVQZS28FA1dgq+rZjAhggS2sYTyKGAFbiEuZMDADVaAl9Y2MhAFLKCrYeRADIycMjx6tTaipAUNUQNgNvjGk4VzD3qLWEGY7b8/qoX9vzl5/rDXxKIaya/qD4AAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_117___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAANlBMVEUAlEM/Pz9lZWV/f3/9/v0CAgKPj48AIJ8AlUP///+8vLzPz8/v7+/f398fHx8vLy+fn59PT09zsOZCAAAAAXRSTlP9g+pWxwAAAGFJREFUOMvtzkkOwCAIQFEGpRXn+1+2dk2iHMC/JC8APM7gwi0MyaRqZ8HCoMzDAxOLsA8SiQsORN9pidG1McdVPsPaf9jyESK25TqWA6zUiSbhrMcfi4posT/C6wou3MIPDB8g750ZaJ0AAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_118___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAVCAMAAAADxFwsAAAANlBMVEXfhZhkUX1TH1NMaJXvwszvwssAKGjPR2P///+/CjBqgaZ9kbLO1uIYPHZmaZLp7PGdrMSaZ4i5Qx90AAAAWUlEQVQoz8XQOQ6AMAxEUZPAj7Ox3P+yVGmtoeLVI/nLxpJqyD4NG0DzkAGMDJx7yCBf7mMqp7s7kErIgHv2rDWC1Ci+Z1sei7nIZFVkh0hvLKI/G+XT6vAF+EQWV9KTaOcAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_119___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAG1BMVEUjnkYAAADnABMfHx9xcXHAwMAwMDBFRUXPz8+rn9MXAAAALklEQVQY02NQwgIYaCEoiAUQEDRxxhQUbhYuxBAUcRQOTSRKEKt2rBYRdie9AAAq8R55cd7EcAAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_120___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAV1BMVEUAK3+LdBxaTgkLLm0AKHxxZB+5nCXOESYAJXg/OBMAIWU1Q018by4AHnHpxDRJTzoAHVncujF2cklKQxo3SmBpZDKtlzYPKVWVgSv71DupjiVkWyBpWBVMEWERAAAAXUlEQVQoz+3PRw6AMAxE0TjEwU4Pvd3/nBzBYYOExF+/xYxSTzOm0fmuyVHMK5HsMp6aEb3kYrBWa2tnaSdtcAECBPHJstcj1TSIGydmZh4bjpMrxZF6t76xH34e3uVzD6wKgmdUAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_121___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYAgMAAAD16ldTAAAACVBMVEXBJy0AakT9uRO6V9nyAAAAFUlEQVQY02NYBQcMVGWGwgF1mTQCAF49T7GuEQs4AAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_122___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYAgMAAAD16ldTAAAACVBMVEXtKTkAod7///8YqkgeAAAAFUlEQVQY02NgoBFYBQfUZYbCAVWZAPgZT7EeR7VTAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_123___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAS1BMVEUOdGGGubDD3dglgnA8j3+Vwrqky8QPdWL///9Ll4ktglldopUee1201M5Sk09pqZ3w9/bS5eK0vTY8iVXh7ux4safSyi6zvTely8QsOr8PAAAAAXRSTlP+GuMHfQAAAKlJREFUOMvdk9sKwzAIhqMx05x6btf3f9LZDgaDYQq72v4LJfDxRQNxji/FuR8FU7oGpm0rbXC+M3cd85RaxpnZ+7NZYFEXZ8SsrSsGmKbCsYpU4vJ++YdlIopgbC3jgfwisngCb4ERQt1HNYYaIBpgL5pBjUfPBkj1JIejIlkzrjgKAqCMuFozEkDoA5EWANNI8RWyjM6H2zO7/Tx6pqxsyOpzf/FnvgMfWGQc92vH/soAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_124___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAMFBMVEX51hbOICjzwBjaTiLkeh7gZyDuqRrsnBvVPSTcWSLxtBjRLCf2yxbOHyfmhx3mhh7oX2dPAAAAw0lEQVQY02MwY2CoFgSBA0xgajsDQzKDoBkDkyGIl8AOIoUVGJIFGQSBovwbgVwHFiAh/QEoBhIUnMSwAkhOYAYSXQzKghBBwSAGR0HBBm5BQREGVUGYoGAQW6OgjKLgjQSwGFRQMOio4BVfwRiIGExQMKgivLQdKibIwJXuMrkRyJjKwBAJpCQsXcoWMIABUMacgaEYzscqiFU7VosQTnJEcxLU8RLIjgd5UxbNmygBogkRNGPgQwTdA0jQYQtkbNEBAHgKPmhpzmYhAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_125___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAGFBMVEUAfTn////8PTIAfjp+XTZWqXz9fnepk3lpgAtyAAAAAXRSTlP+GuMHfQAAAB9JREFUKM9jEAQDMSVkwDAqKO6CDKCCosZIwGAkCwIAcRhIc5cNL1IAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_126___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAIVBMVEXOESYAAAAznjUWAQM0nDQ1BAluCBNMBQ1aBg9/CRa3DiHb5SsEAAAAYklEQVQoz2MQxAIYYAzTsvRgdEHzmWlpM4tRBYU7U4tNy2YYogiKzTAOSzXuTEQRbGuOYmBYapGOLCg8w5wBCII7DZEEJTKsQIKL2wqRVRqahgJBsDBU+5AGTkoYQGWoCAIA3CUzq4wFS+cAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_127___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAPFBMVEXZPz9mADPPNjl+ZDPMAAD///8UEF3mf3/zwMAAAGZQQEb/zAA1K1DYrA/wwAaQcyyggCZgTT+wjR+vjCAG8B+KAAAAg0lEQVQoz63ROxLDIBAEUey1Rm7+SPe/qwMFdrCFCfRSpugqCDhejnAdxX7G73B3XMNWByB0Dd+OAGA1gxRtSNN07QCxlBKnN+ZkgFpKqWk2VGpAtpqq5Wn6LADRus3TqHSAnPXveXQUG1p5cKSfn9kc4eFw009H8GyLwv3uT++LltMf2s0Rk/ZL0FMAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_128___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAMFBMVEXSDzMAfjrSEDSeKzWNMzUAfTkyl2D////AGDOQx6lvto+428cEgDwPhUVQpnfv9/JzkBP1AAAAAXRSTlP+GuMHfQAAAExJREFUKM9jYFLCAAoM9BRsNkYCFlBBR0EkIEJYUG5X4lEMwfmJoRgqj1UBCVE0QclaLGaeLiRWJVYzz8xPJNadgoKhBL2JNZQGLuIAYR5H52EZ6mEAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_129___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAElBMVEXOECYUtTr80RbtjxquxyGuyCKjAxX9AAAAHklEQVQoz2MQBANRJTAwYIAAiKDIqOCoIEwQNYUAAPaxJ3WCs2XbAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_130___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAM1BMVEXPEyr23+K/tLTjpK2xrKvTmJ67oaH////PFCvLy8vGmp3gs7bgtLjmtrurmJTBj5PLiY/HwyfHAAAAAXRSTlP+GuMHfQAAAFFJREFUOMvt0DsOgDAMA9AkzQdDP9z/tLCD1AwsSPVovSExxUu2Z4juvsmZgwf2DGy1Q63yFAq0C2BTOFxV3UviRoPzl89EsJUcTA++4IK/gxfabR7af4FUXAAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_131___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAVCAMAAAADxFwsAAAAzFBMVEX////bdAEwRXMgUaAwXadQd7U/aq4AOJPddQAPQ5mQqNDx8/kSPYeaYyywwd6/zuSFXDpfg7sDO5Xg5/L3+fuAnMlykcPeewzFpYXV0tN0WEXp7PLXcwP8/f4aP4IlQnuQXzOlZSTd3OCkuNhIcLKasNRqi8DToGrTehh7WkHdhSLKspvVcgXUllTc4+/j5OnCt7C9k2rLxsfWiDEfQH7w8fO4yOE5ZavHjVHPwbXCfze+qpmKpM2ytcGWh4ByiLAaTJ4jU6LH0+fS3OzDb4x6AAABE0lEQVQoz43T2VbCMBAG4ECTtFlsbaEFWyuKCriALO4bLu//TnaSJqeA1eYqF99J5p9JkNtotU9QM+Z5DWB7z/MsZNT5k5XQwYQTyupZbzzUkPgi4Jjtshawy6s7hAA6NCg2HY432UCz6QFSC+rjHdj5YVUOjoH1+jcIGegyAieKGG+z1VO3VPcjVSMcKYLQBr9VbFze2fXDonoFGY79hFDD9lsQIFNKnBKdUfeROYnJfARsusxBZednkbnFTMayQxNg9voQVcJtjBDYai4K9R1v9aoKZcEWEOAr+dydkYXy4nrykqE8GH38OnNk2eMy141w66FMJ/2hbUQtlOnzfFZpRA2U6eKN0+jf54ve17jRr/kBh1Mh+Hah75sAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_132___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAPFBMVEUgQo26xNxmfbGLnMTI0ONYcaouTZWQocf///8hQo48WZzk6PHV2+p0ibhKZaOClb+suNXy9PjW3OqdrM5Jyi73AAAAAXRSTlP9g+pWxwAAAQNJREFUOMu1lMGOxSAIRasBpAhW7f//6yzaTlVeMm8zLG9O4ILgtu1rMDM7cdtuMAKc5MAUINEIloKIIS3gpR5zxt0UxJc2BVrAfMoHj3zI4nHHCi05EENvtoApaXBgTGeuI0iau2tmp9xhaobiyT2lM8cRlFgvFd+MhMAA2nDKSPFSZfIoiEjOY0HEu3Rywczs1Y2/jH8Av/Z4d02IH96ankk845ESAlzjHkCRV33nSKbmt4dMV7AH/LBmvZZ1zaqGJA4EDQfN4C6m4I9LLMN8XMo5xBU8MudQRhC5wXOHL2icAa47fPaxska0dowgWWCIaC2OpUsFgGMtjb/q0MwfP8UPxHsifYgZVt0AAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_133___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAM1BMVEXNKT1AeiZghx/WtAf/xAB7kRowdCnNKj4AYjMCYTIQaC/vvQOQmRagnxMgbiy/qwxQgSMBUdT8AAAAAXRSTlP9g+pWxwAAAJpJREFUOMvVk9sOwyAIhkV+WD2tff+nnelhqWm13C3jxohfgB/QuZfJnPshGCaThTswRiPovQWMIswi8TmiMsDvYUTaMwO+cVzA/bksS2kcF1B0PWrarUKVHljaukoPVGij6nxtVXM6qdXE3fYQ0lcoJVC/jxmYfVUS/QzkUcMreVgeT4Z4w5ieRyjV1LQ9UzCumXlx78E/+K4fGncfbmVDdvMAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_134___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAHlBMVEUApVH/1QAaIG3qKDm2JkWMejZAsj0bIWz91ADoJzlaCl/hAAAALElEQVQoz2OYbIwBLBnoJuiCBTAUKWEAdfoJhmIBDI2CGECCfoJpWADDgAIAZ5dK6eNZmaUAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_135___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAA51BMVEX////FxcUWFpafn5/Z2dm+vr7u7u7////S0tLf39/JKQ6zs7P319KkpKT0ysOHh4eMjIzRLA8TE5DfYUzniXnKRA398vDJyckVFYr1y8T65OHqlojvsKXHx9uZmZndoZfke2q6urrV1dWVlZXVMRXDw8N8fLKpqamBgYGKir0yMo6pqc+3t7fUiHq3XQfcVD1oaGisrKx9fX2Tk5O2ts/8/PzVkofyvbTso5ZbW1vt7fXj4+PQb1/r6+vgrqffwr3hbluVlbpycnJGRohMTJMUFInSe22+hhe+kRi/libgurOXl8K9kyT0y0IQAAAAAXRSTlP+GuMHfQAAAbRJREFUOMul09dy2zAQBVAJ7S5Egp1UqN4gq1Ddcm/pxfn/78mD8xBJdCZl3zA4MwvM3q1U8EdVqfw9zFx4cDMXbpY3Grnr5W6el8F85I4Qty6bzZ731Fi5Xq8VN8ugF8fxZbzCKkuQNGKg6fW8Mui2kuQqa2UJvOQKCdBye83G/3wGEOrwUokyqPy6VpA303a7fX7efr4BFNV9dQKN1c4EcswiFkUsYmOAO9o6x9Ah0hsJOY/YjLEZi+aA3Ggi5wgOaaAl3coxY+P3H94yNsUtST2g4RH0SQ+kEHIesVm/PWPRHELIgSb/EAobkLbFvXz++OalprgvrLaBFYeQ7NZo4vJb7Wd1wUl3tpYOoeK68APSw4ewloZhWgu7QlPgF5qrwzcqwwvjE78Il1/T9PsyvLAUmII7qmyEHW4fassvafp5GXYtN6Uj7BsLTOzF6KX1aOH4gDX9E9iBAALxuOjeLRZ33U+PYggIdE5gAEBNtFbYa73HXomJArA9gVQHds6v4XF2QJ1OY1asr6uaG9+8OwvWTtDhunq9LsqDS2TM2a5frW443xjSr68rvXr4t1X4LfwBrZs3C5ZPvrUAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_136___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAXCAMAAABODP0nAAAAilBMVEXNECXm5deCXUG7pXHvrrWqzMHIyKX////OESYAaEfu7+TW1LVuQiZkRDKoeVT39fKwtYr169e1zsS6vZXR0redhm9ooKGljINbnp7e387n1cfcrq3T0a2x1NvI6OanbEJ1VEDauXjYup+KubrAkWd8vMe3mH66sKfrubKOoKTOtoSklWRKkI9sWEt0Xo6XAAAAAXRSTlP89O1mUQAAAHdJREFUKM9j4EQGrOxIgIUDCTAwjCqEKBRUkmeSIkKhjKIKHy8PP0GFgozMQHU8ooRN5NZiYlJjUuAioFBYQwRooq66uDABhSJCEprK2qLijGwEFHJxc6lK6IiJcTMScqMkmxwzsywbG2HP8AsISQswjiYz0hQCAOOXHtBwW44mAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_137___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAVBAMAAADGNLEtAAAAG1BMVEV1st3n8vqIvOJ9tt/9/v6y1Ou+2+/T5/Sy1Oyb02ibAAAAP0lEQVQY02NgIB0wKWARDBTFImjijEXQtJmBbMAEoVAdwJgMItUEUARLwFxGd8IqsZpJErAIJtbvWEOJiRyrAdYMBYZuZK7lAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_138___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAkFBMVEUARq7hugF2WC2FXz+qozrPqQJwVSXMCS//0gDujw9pTx58XC3wxQChhg0/MBi/nAWzORRrUhh5XR6DZR+HZiiZdAxgYjlaQiGVGRZQPiatYyrSmgF4SQ6sYwrGpADEkQGFgEqvjgoXQY2Ka0Q2TmR1TCnMNBzDfwdycUJlYSqkKRZtaE6hUAxdVxg9S0+YakKn2tOlAAAAhElEQVQoz83SNxLDMAwEQAYDosWoHJwt5/j/37ll4Rmw1NVb4ObAWJyFirLM4rBZQd9ACvSWn2tVAQnzzmN1cAUJcQwhXEROQa7HV98/pDAEtO47QIMStwQ0w/Nzb48SyRu796097XVJQuGuU71Zk2WU2ZVS2BUkLAO64Glb8/m/2X/4A1rfExgCJ78JAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_139___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAgAQMAAABaY6hDAAAABlBMVEXOESb///9W4q7JAAAAEElEQVQI12NgoDH4DwK0IwHykk+xonqt7gAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_140___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAALVBMVEUAZrPaIDJJTYf/2QDjTyX2qwzwjBTfNyvmXiHqcRztfRj9zgNIT4j4twn0oA8yAhU1AAAAWklEQVQY02MQBAMhBjA4COExoAgqIgQdsQiKR2BTmY5FUGIbFsEyayyCUlmOmIIiGZgqhSNuOTtiCIaGTsYUDJ+ORWV0GhaVccnYtM8g1iJsTsIRngQEodEBABWyIo6noem1AAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_141___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAUVBMVEXEAwjNnTPENBXDCQnKkzDBJBLEQhnTrjvHfSrIii7EFAvEOhfCSBvFVB52c1LDijDHYSLHdymHek7GaCTQoTWXhzaphj+Xf0OpZTG6gjOegEZoMhC2AAAAj0lEQVQoz63SSRIDMQgDQLDBI7zNPln+/9DcU4ntqkTnvghE02BooqH8CP0YjPse+9ARKaBErg09QlhzQEjwTahminWFmmkTJmFkswwW14TBGLetVrCFNhTm7bqezNIps9i81XqbrdOaAhU5Tyl678CcUI6j4DF3oIIWkYWc770wUpK303wdRYx/n9lnOJgXvZ8Hd+ApatsAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_142___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAtFBMVEUBIWnyxs1nbppgdKEAor0AIGfYVmvIEC7AyNoAnrkuZ5M+VYqmPwb8+vu/x9kbN3b22N3g5O3Ueo7TeY3f4+yYRBP88fMsh47Z3OcAmrNldYmAh4ZtgpF9aD1Jg3wJkIsPehwFfzouSIE2XY8AdYkAUV6acFKITyhSaB9AV1e4YwAAiaARWWeqRxRwkI9eV1RwqJM/pIQtSTQgY2xwqXsReisAjWNVIwAwkFZVflocm6FHYRSUXZUeAAAA0klEQVQoz9XQxxKDIBQF0GdFElRMYje9997//78CgzFZGFnnLmAenJk7AKbS0oDFQsjiu9owFSiL2hRUQM48DaCCcljJLMdxIkoDGyGbrREbnVKISiJujDwyWIsxHi0xjut5NUtkB5RXB5RGfBYQ6+P5dqXj+rtcaylmU+WP0TzFbKj5MYP6ZtctoGDv7/miHB5v+wIK9vlwTgvYOXW/qn+EwUe7f5HDYdi5H879MHQl0J0Scu09SduQQEgJWfRmfiJz4Kb+2p9kUgcGDLLEhT/KC0hSDxL08Yr9AAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_143___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAG1BMVEXBJy22KS06TjCHOC6fMS1/Oi5ESzBmQi8rUzDm0+j4AAAAM0lEQVQoz2NgGL6AvQBTTFAsURBD0EOjqQVDkFnZyABTf5IaphiLepEDhiCjAbPA8A1aAE6IBLhFmViXAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_144___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAwFBMVEUAAABISEj+8o/LEDMAAACPwLxLS0v84QAAcWjSEDTVHTDaNSrBEDE3AgxzOEUeAQfRDzPiWyB3CB0HAgDndxrxqQ30uAm5DCxdSEeOCCHqmBCWmJkZZGH3xwY0WFsJbGWIMUX71wLQLESlDCnoixKhCSbUXBnlbB3d2K1sbGyLZQPhqhyBgYHOzcHdRCetITyeKEH98Y/2yX6rCii9c2thBReGbFz10AOvqYJoEBE6NAWnbwmxnQDOwVh0axXq1Sux+eZ8AAAAAXRSTlP+GuMHfQAAANxJREFUOMuN0cd2wjAQQFElIognFwy4m5LQa3qv//9XWTiHrITnre9RmVGXk44oxc1QCNFjISQKhRBuh0KIPxZCdC6E0DCnGnoA0+riRDWMPdC+Ds/cKWDxlK6yIgP6g5YjpaBovX1ugwcAZl0ntOVgu3v/3iVJDOAHzhPtx9em2h9+VvXno67zap1v2tX+8W/yzhOjLHh+PazXuW54I4t++bKcm2XR+GubetArQYdtdwqsrZczvT93d/e/696VOdURzo2RQJsaEbweGRGMjZFAmxgR9EZGBBumcuwXkKYmCRjY5UEAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_145___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAS1BMVEX+ywDM7Mv7+fJAtj/qKDnpKDg0sjI0sjP+ywD////zfonsQ1H719r+21Dm9uZawFn2naTuUF74tLn/7KDk9eOz4rON1IzA57/X8Nerw/7WAAAAAXRSTlP+GuMHfQAAAJxJREFUOMvV0EkOwyAMBVCwIa0ZQpr5/ictHRIVShx2Vf8CIevJ2AhxrYoQfwq9r4TDUAkB6qAn8gXYXPJMRNNXsSlAIAIW4iIfWSlmfV4XLHdESUkkHj49f7qZmzG0G2sDvwyOLzfi2dbvlu3Z94Tt6ZBDrZJ00fR9PExa1zl0BJEYIMdDS84qrbR1ZFloun0Gw8Jb8Vqa8Si/hHf9fxwRdAZrkgAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_146___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAzFBMVEUAlUP+zQEImUn+9fcQPnihlC/UGjwANYDSEDT9/PzSEjb2ztXogpXfUWwIO4XWJEUgSHDaOVb74+fuobASQ4nzvsjXLk3W3+vU7d+GzaY1q2pPdKjo9u4SnVH86+6omSvYthOUjTWf17jm6/NJtHmUqsrf8uc0X5vrk6P42uBAaKDbQ1/wsLzjaoGrvNXhXnZQZVjldYqfs8/6/PyJocTf5u9AsHKU0rDq7vX88PKr3MFebVF3e0TApx84VmSYjzPCqR5+mb9UuIFgb1Ar3ucZAAABMUlEQVQ4y4XS6XKCMBSG4cMSQVGJG9hFFm1VEBRrbWtd297/PTUiJhEjfr/feSaTOaAVrj11Zno6KOyeviJTvx+2p6uMoyFWdzsVX3EdU8+Fmrffe3lOiVlmRmmYIP9w8NEfzw06FutqTjcNVd+TJM9XGfemzFlWai0e5GOIEZLIEMKUM3iu2X0EOInuVpK2rkq5aoXjyoTLwmTtIuSuk7QLB0bjistCTUWbDUrB+mtZxNFQw1g7huGS5yaUO4fZctyYcZdhuAx4Lhgyjg8JNy7RrFItf8ogCkd2MGFZwxh+AAjC+nsxdw5HdrPGXifgTiHhWjyn9GUQhZecZTy/gGj1nwXH6XOl3xN2YDs1nX6y1bnBkUXcucc3OTLu3As4PoxX3z24HxLuF+B+OHOKOYB/YtwoD3EyzHYAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_147___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAJFBMVEUAK3/VrC5Qbaf///8qTpTw8vcQOIegsM9geq/f5O9AYJ9wiLd024YBAAAAMklEQVQY02NgGMpAEAvALggCS7wwTWDZOdsBUzDYFFMwI9i0DUOQqdhcAdNQJSWq+hIAYa8IgTmDXnwAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_148___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAxCAMAAACf+RsMAAAAgVBMVEXcFDwbM4cQRJnv8vhuJme/zeSlHVEAOJP///96I2LP2evKFkPlT23eIkgwXafCF0XgMVTnXXkpMIL3xc/98fOKpM7yp7b74ufuip5JcbJELHgMNY7pbIX509viQGAgUaDwmKrf5vHRFT+0Gkvre5H0tsJcKG9ri8CVH1evwN2EIV7bYgCjAAABm0lEQVQ4y43U6ZaCIBQA4GtWWEKBuOWWrTPN+z/gIIriQnL/3XO+A95F4HLzrALQJrKEATodreDhEaDItYEAh/y6s4JwztDFtYEAv/lKUQrC/Y2+dqqHAHsHRVYQ7ltkLkqHAKJTP64NBPjLNx8rKDt1s4GiU85SpwZISF/UG512JohZzDH9UlQDMQCLm4QJWXSdyq+fGawrYDIJCaRYFRWMi5Inhpi3WVoko05Fk2/kYdJmice08v1M22kJSanSeNwpMX5VVFs1idtvZNOeik5141ftoUWazljXKbnT+mTO+8XI5I+qQz9AprgcR7MWMtoZYrwUfrA5Wi3uFznAdiN8xyA7KCYcYyCVWXYwjqn3qkpsPrODqReKwXiV+fYGUs67pXjx2iTliaxPE2I6U0Lab09NTLULSF5aHj4NsjmRFIlKudqgmWyvDns4zGgiJSyHPB2Wbizl1VT0UQYFrD0uztWdNbxOmFc+PTx+hpyTO4VPAryACoNRDtuDyfyH0eTCa7YsV+Ag12AvV6GSgLLtSogXyG2gTQj5DxajNPKFOVDvAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_149___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAgMAAABzfiX9AAAACVBMVEUhRov///+uHCiDi+U+AAAAFUlEQVQY02NYBQcMtGKGwgHNmLQHACMlWadYLf7+AAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_150___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAS1BMVEUBIWnUeY7g5O0QLnJobZryxs1gdKHIEC7AyNrYVmsfO3rNd4rMTGQyS4X8+vu/x9n22N1SW42dfJr88fPZ3OdBQHjTXnDMiJvNLkbyVu06AAAAmklEQVQoz92QyQ7DIAxESQgxOwRI2///0uKypFGjiksvnQPY+EmDhwg2rySLA3C8l0kwciUcIFrA1n1BEfzAKD1q7pxL3kcLYPOZcuvaTColOwgX6kN1J2PgyTor2ejROnqfsD+tsHX3dWZiWnCZUtXnUP95U/QNa/EcaHhshTT1boMWOKKv0IIh/yVJx7hd632M1HrQ2vwyyycwywbEVirFRwAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_151___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAM1BMVEUAZ8bV48iesrmsuJv17tL2+/zG3br////49OD8+e/u4q/Jzq+92Cqy1TG11DLA2inx6L8SIXR/AAAATUlEQVQYGe3BOwKDMBBDQQG2nzaQz/1Pm17bUjKjxz1oTJlGJDNnmSTCKI6DToQf574vTBBpfq7ve5JEGttam0kivQo8SKLxKNPocYs/5eoIyVduk4wAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_152___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAiBAMAAADfS4Y4AAAAIVBMVEUNsCv////gUgb1xayv5bnofEP87uXvo3riXBXhXBT308Cdj1xZAAAAUUlEQVQoz2NQwgIYhp+gMRbAIAgFYqXhiTA2XNBCSakLXVCsSUlJIxFNUBxkQSGaoChIMJAYQazaxSYpKWmiWyRoqaQ0C8OdKI53wQIYRgYAAF6WO9NsHTxyAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_153___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUAgMAAACCKJcoAAAACVBMVEUAh1H///+q18VeAlDgAAAAFUlEQVQI12NgYGBQDQ2NYICAYcUEAOKRFw2YFuXeAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_154___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAANlBMVEXtHCf+6OrzZGv6uLzxVV3tGiXvLDYCT6Kzssz////1dn381df4pan5srb7x8n1f4XwRk/3mZ5jG2kVAAAAYklEQVQYGaXBixHDIAwFwQME8uNjO/03mxKkSXbxJDwJT+JK4hfDppFQi6rWS8SkhlQGgXPu2ve9J4FS6b2zGwHpQ6eoEViaDJYeAqbRNGsZRGxJOi+xYY/xvysJT8KT8KQv1DYLH0ST+zUAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_155___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAdBAMAAAAqZzNAAAAAJ1BMVEXvKiyvu8/xRkfvKy0AKGj///+6xNahr8fzVFXwPT8BKGj//v54jK6Zgt+rAAAAAXRSTlP+GuMHfQAAAE5JREFUKM9jYDYGgqkpLqXNxjBgwDCkBZVAoBUo2KQEBwxbQ0EAKBgKB9EMgmBwxOWgIAIwLHEBAi8wCQNeDChcvIJYzcRqO1Z3DrvoAADRhJHdGoS+qgAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_156___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAKlBMVEX////bFhsAgADzsbNKXAnmW17naW3hPEDypaf76+v1urvpen7um53tlZfX+7IwAAAAP0lEQVQY02MQBAEGNCAotjsRU1D4zkJMwa6ZHZiCWZPLMQVF0wMxBU0FgwWNUQGDIBZAZ0EXVAARVEIFdBMEABIJJaFkAQecAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_157___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAANlBMVEX///+ctabQ3NViiXLg6OMfVzdQfGMAQRwxZUcQTCoPTClwlH/w9PGwxLjA0Mdvk36AoI5Pe2Ll19D6AAAAjUlEQVQ4y92TzRLDIAiEV0V+qibp+79sDtHkkJZ4bTkx8LkzCwicIW7gd8FsU6AFm1Jk0v7ABxVrzyInD4zIR5IAdcAC6oYK1eCAActoNrvc38E4FEWya+bL6D8p4j0FBoBeM2ABcJkV9eYItK5pyd0MAFpVRBOpu+s6SpUfrmc5Ks2e75G3jfOffK577LpLFTQFgZZfAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_158___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAZBAMAAACx9nFWAAAAG1BMVEUAmf///wCg2V+w309Qua8Qn+/Q7C/w+Q/P7DAG5Io+AAAAVklEQVQoz2NgoDNwamxyQBcLFhQUFA5AFWMtBAoKlqIKMoPEBIVRBR3BgoKopipCBBVQBBMhgg0oghAxQQFsKhMIm4nVdqzuxOojrH4HhlJikgMD3QEAcycN4otQy3cAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_159___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAARVBMVEUAej2lJS6BCheBNy1Vpn5UVFTBEyQAAAD////OESanDR4nZjgnAwdOUjROBg7XPE720tbgaXb88PHRHzLtpa2gSEZbT1DC0kGAAAAAX0lEQVQoz63QRw6AMBAEwcUmDTn//6kITLiZPtDnkka75gqWqWogVN5BKDkKyXyAYP6CUrJl0R6ofihjvVDzAqE0Tv9COk2PWdN498Nb+yp8uzYEvRmBYPaEZPbIM2Y7L4kRqytOrv8AAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_160___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAOVBMVEX///+jrcD28fLsf4SEkqztiY3CydYGI1faEhr////nYGXqdXnaEBffMTjDytdMYIUtRXAVL2D2xsfKG8juAAAAAXRSTlP9g+pWxwAAAGlJREFUOMvF0FkKgDAMRdG0iU3naf+LdQEGfAjq/T70lRCla9GIXoTeg1AEgi7MGRwA+1JdAZl2qg764xAZEOwp9b8OfgfF6DAiNTJG6Gu4NwhzhiC3WBsjL5ZaGZouLRYIsvf5rzs+gSfVcCE9ZTrZmgAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_161___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAeCAMAAABpA6zvAAAAZlBMVEXOESYkAgbGECQTExOpDh8HAAFNBg4AAAD80RaAChfRHCQwMDDiYR7lcR5wcHDXNSLofRw/Pz/5whbUKCPcTSDtkBpQUFCsrKzxoRn19fWQkJDg4ODzrRhgYGDQ0NDnfBx/f3/ZQSGki0rXAAAA+0lEQVQ4y42S1xLCIBBFUVRWQklIb5b//0kxGkJLhuWNOXPP3AV0O6O0IadLIkiu90SQkB29fPtgXC9VHoBRfQ0RMNSXqIOaVyHo6ilTTAHAJEPQ1tPnk8MyXQhivOknMMN9MHu9slXPAJQCL9KA45it+pJWJVviWM4C9dA67elXLxHLwzJ+e8mh1tvcBa32Usd1lQ0WKyTc5VNaV/kG4uLxI/HQt9jW61KIW4lD/0sizSg8fcmpBYqm+e9IH+ft6Rvtl4m9vQtm8057HywKL9T5euRobP0mxuRo+QZs2naOhRq9+Y6PHh/qzYUQcXDVk4RZ9Cngok8Ctf4D1OgYXQgrIwMAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_162___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAWCAMAAACFUC6CAAAAM1BMVEUAOKj6+vrk8dC0u7b1ycbo6OjP0dD////VKx6/zene3t7J5c67yOTwxcK31MKdxKuKvZtVfUrjAAAAUElEQVQoz+2PwRKAIAgFEYIU1Pr/r807THKvPe7szAOoSeCb4eEZI5BwOliEvfUhk5DyPixyId5S9iFNw5kI14lmnJhepWr0TPP0Hkj4eeMBpwIRWct/suEAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_163___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAgMAAABzfiX9AAAACVBMVEXZDyP////yr7XIwwUlAAAAFklEQVQY02NgYGBQDQ2NYICAUSYuJgAGeB8eIlqm5wAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_164___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAb1BMVEUAOKj95Xv/99P+9MT80Rb/+eH+7qfOESb//////PD920j94GH81Sv+65jv8voQRK388fLRHzPF0uz+8bXniJPaTFx/m9NfgsjgandAar6Xrtz+6Ivsn6fzxMkgUbPULkH209f54uTwtbvf5vSvwOSsgxV0AAAAnUlEQVQoz43QxxLCMAxFUTsuekrvCaRS/v8bWYQVw9i66zOyJdXuShb4Xomgy105iSYaBtqbAF69dxlklGMlgIkG8JpiUHuXcZZEvgrA6dymHQAgcCrA+9Rau3gGTFGOAVik1tqlY8AUdU//+3l6bSgAtU+uZbaBKAS/53nMRDEIoO4bksDnQRSBhoFzoFjK5a6eKZ4Crw1J4HaQqA+p8xC4Vz8IHQAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_165___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAABC1BMVEUBIWlnbpoRPkkFKV7yxs1gdKHUeY7IEC7AyNrYVmsQK2QCbsY8TlEKMlVcZkP8+vu/x9ng5O0sZCunoiy3rShRZD8fUDhdiBzf4+wBI2P88fMLLVx/hDT21doxcCMiWTAmXS9DajANW3mDkSd9nkORq1oDJWQeN1ycnCoSOVJDXT0tQlczQWxmbZpBdCXIuyQ1YlZkeDansRVfY3F+emk/iZHY3ej13uPZ2+ZIV00WRkEpIFxNLkVAS3BrckNIUWt6fj1Kfx41Xy/YxyAyU0FseVtScTZEVVWRpRkySk9Jfh1xkzJ4lxhrgD1pbFaMfnUeaH2utBVlWlNJaFSkuoSKf3oge6bt8OxBiYdXl17vAAABKklEQVQoz7WS13LCMBBFFxtjcMcVN0xzqKG3VNJ77///JZHsEM9kGPkp90HS3T2aXe0ICtkSA0h5ls3jPZMrZGGTcAKjMYhdkQEgoBj8i9HiVmLyiqIsF74js6yM1jmyyjonmvt7vyC7QTguGAC91eQAgHJJIKerLvTOpxwIXpmOSiPNZcfHpR1/scQehW06CILL+4szXdPon06ZUraQy+DHMEV02o7bU8uUO32pV7tHA41LsPV4ErR9MqpLjw91U9Sk6GqMJQPHaJS41hvD98lr32wCUd7A4Pnwg69RaocIVswKP3sL+aeR1CKCYpXiG5/hrNZpSURQODW+rLHVqKkVm9zkoXBbfr45Hu7SkCKJuruy+pyRxoEnVMdWW99JBbvoP9jQ5OCf9A3qch0S+mTgLwAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_166___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAZAgMAAAA+toT2AAAACVBMVEXcFDz////tip5hJkzaAAAAFElEQVQY02MIhQOGAWOuggOGQQAAG50ufcR4g+sAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_167___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAA6lBMVEX/AADuTQiivADpbCUrdgDangABYAD/AAAAZgABZQD7PT3tKQCzwQD4AAD8AADonwDjlADmrwD+/v72LADQ2ex1oADV1QDp6AB4pQDjdwD5OzrkjQD1dwCKodDsAADi1ADmJQBonwC6ywCCpACNqwDiMgDuPgK7xQCbtgD4SUf5fHzuWi36bW3qklLseCX2ybmfstgsVqrnZwDOsQDWwQBBhQDyCgDYYiHd4ADcfwDtxADPgQDfzznnrELTjQDUMADofR/0c1Lfjj3fPwDLtkMZbQCEmiqatD35QgDgWkff5fLnfSDu8fhnhMLtoPh4AAAAAXRSTlP+GuMHfQAAANFJREFUOMvl08cOglAQBVDgFZ+PoiKCoIi99957L///O65NdHCtd30ymczNCEH2msD7CMIPQ4oL6hcQS0puFglF/WBcwRSvUmmShGGshGStsNPkUb8LQWpZSKw2GlUREVMFYKZkcq632zp3hrYIwHxZQTXdMPQaCocTAFQkfGt2Hm6nuU6THgBzUtzhd8O4cmcCTszE2CXact3WeTMNQTvScfloF+t10Z57Vgq8oyntK5pWWRCP+DSTxYfTVpYjSf+us/nlF10zxuigqP7fz3yGT1SnLAsv0Hz9AAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_168___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAb1BMVEX////3gIDWCBgRXPH////7wMD2f3/3gIAAUPDuAAAiZ/IwcfPQ3/0KT+lbMZQRSd5rmfdKg/WAqPiauvpFOKre6P7z9/80Pry6ETSUHlpxKn7hBA3zfoK3zfuIabJ5o/fMq8mDJGw2aOaow/o2Z+XRXciaAAAACHRSTlP9/////////sajZT8AAACqSURBVDjLrZTZFoIgFEVJrE6AqeTUaNP/f2OUYTwIXNfqPO917nxZlWxIYsgORxoI5HsiCLQdEQS2CRFEdjmtQhpBQJxTv5gDAmVNBIG+iYGljf+IgEpa0/t1OaUvKFL9iz/Zqjco1WBfWDK/efrIdwarpVNU5Wk4d/0CjigarVQ8R0BLE14M2DNUNR/dPun+ZTJzZk3cHrOPi4DWMzeceDPEK6TeNfVTvACicyGeiMPPMAAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_169___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAQBAMAAACW+SCeAAAAMFBMVEWMGj2NGz3////x4+e/f5KUKUn48fPKlKS4b4WwYnm8eY2pU2ybN1XcuMPq1dvp1NoxFdFrAAAAAXRSTlP7aonz8gAAAD9JREFUGNNjUAIBtRuBggggwAAR9BHEFFQywaZyIjaV6lgElVuxqXyCTWU1sYJKX7CpnEqsk7A73oTYAEELOgCpoyOl1kutCQAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_170___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAflBMVEUyZv+CoZ3q7xpYgtD/AAD//wCZs3+Ur4Z2RKszZv+5y1dOet3yBg83aPqctXthicXM2T9mjL/8/QTPFzx2matskbn1+AxQV9uLqZE+b/FDcuulu3H6AgdGdOfP2ztHW+XCHkuPOIzd5il+QaGGPZdDXerH1UXZEi6vrGSYNIG39pwpAAAACXRSTlP9/////////v4+p77OAAABMUlEQVQ4y42Q15aDIBRFkZZclGVsqLHG9P//waBGI7aZ/cACzvYIIKYsmMHYfMdSDCnGRGpuK2yuU8GYQoUeMTGC08lYEqy7CoSANMxPtsXEZw0BpEV9BMwe6bqYPhhuL9GLkGY+dseQ83HqYj/rKr4igF36fCly/2T3s1EECHFZmGJR4nBIJyJIjqP+1fqXjTCXsCbq/4usjTyv/SwTxSQyRe0Iuxdt4RnBXARpeUAIeJaEmXhIrDByiX0ets6ulO5vZRM3Cq3kgNiIakqRcc3r1Y6ZKBv1S5eN8p3nb7lsnJ0R4ifVPGOA/ctcctqRX3bFOKAjQbwtDnUrpVNxWrconYg3hy5wbguxCugqQWWKV4du4FwnYlXTHepqELfrvqXHTrzX9E/qO0JHh/4D5/gBM/8mwq7UuJMAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_171___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAElBMVEUAK3/OESb80RaomTjtjxrOESXfWuRDAAAAGklEQVQoz2NgAANmJTBwFAQBUYZRwVFBvIIAxOIn30Ew1B8AAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_172___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAgMAAABzfiX9AAAADFBMVEXVKh3///8AOabVKx55q0MDAAAAAXRSTlP+GuMHfQAAABpJREFUGNNjCIUDBloxV8EBzZj2/6HgD62YAHlVrHK7tinsAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_173___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAM1BMVEUfXzwPotA8qKQrprRXfS58uW8dpMIAod760gAgYD1prnistzbTvBF9uW+HslqQs1JWq4oAZWDQAAAAAXRSTlP+GuMHfQAAAFtJREFUOMvd0TkSgEAIRFEWbRRm8f6n9QjTiQbz41cFFBJk8jdUAMpAWLoRUC1HpesSwqq14VhCz2qtnuVoDZ+z0qir04zYMQJQfPWZflJ1ucj2ggeZyE0lW8EXy4wfIcoZkFMAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_174___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAllBMVEUBIWkrPWOynWf8+vvyxs1nbppgdKHIEC7AyNrYVmu/x9kAIGfg5O3Ueo66pmkVN2dVbm7TeY3f4+z88fP21dpbj4/Z3OcXL2QfRX4CNHZbX2UzYXN2e2utu7k2hKWGhm5Oh46/rXz13uNxmrRdhqCqzMyVpqZ+objP3dodTFuYg1Srl25SdXZZcGwQhbmyjlF1k4CbmI4Wf3HSAAAAv0lEQVQoz93Q1w6DIBQG4AMqOBG3ddTRvdv3f7lK1I7EqL3tfwE58IUTDmiyS6CJSqkqdsXSZBiK4rS0hYKZBGCECjjKVF3Xw9r3JEqlZg2bUh+EdCA/QiNCSYIio2/dJJQ8X7T2/DoUdXuDMH4UDKPXm8SVNUcRnyGmrFlKf44YqyrM0Bfrx/NJbc4vGed2B1v2HrigHSzKYFleFzAV+4bvQbCchsYRn9NDakxCyE55vl3DjOz2mxXMShzDX+YJ/VkMBuOm1OEAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_175___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAA4VBMVEUAAAA3LQT2zRXlvRP70BX///8KCADOESYAnkn80Ra6mQ/UJiPQGCUTDwFCOAUQEBDIpxH7+/uLcwzVsRJZSgfvxhTcthMdGAIIoEfxoRnuzhgWo0T7yxbZOSL1sxj4wRbdTiCliQ6Xl5dFrTprWAl5ty8xqD/lbB04ODggICAsJAN2YQrt7e2lpaXcyhwjpUHFxiGcvSnqhxuAagu5wyPnexxXsDfRyB1+fn6WfA26urpYV1OMjIy4uLjk5OTx8fGRuyvlzBqGuC0fHx9NSC+pwCZ8fHzIyMjtkhpwcHCzs7NT4XdnAAABTElEQVQ4y4XSZ3eCMBiG4VdMTKM4UEBa7RBHnV12aK3avf7/D+oboBgiIx/4wn2uc5LzwEHKad3yRg6Ck9LdH5F6ATJD5OyQSwmRWxYgM2x98HxFzgrxYfeFd1ZVgOF/l7Pjwta14EbT4ZcbcHXShniujL+3lI58rsEPS3uhg5yJf6trSuladHPSPmdMDbsXvCg4WMxm9PHXhXENOaaGzjOxzPCmW7zORENOV8MBcs3dkzwJ7uSYeUcKnVdi9eS38zidqeHgIcIBNHecFDp9TYtyPYvc6UwNkau9i0cJuaLMhSFyE1iswf0MOjPKBeHlFa+NAUaGYfhiWeX8sK+RufcalBreCsw8v9GZGiLnzf3N3UzpZvoD5Q4/PWN7B6S5rwz8VOI4EcpznyVxIozMHbnvEosP5bkvSQIXDSu2P6iMEOeezEmhN/eUjv0BCoErISxfBDYAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_176___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAVFBMVEVmzP+46P8rJhLxyBiZ3f950v/T8f/80RYAAACLzsRfX1+/v7/Pz8+egw2r3eHr5riPj4/MqRGkkT7m7O8QDQGJ0eHd6e8QEBCfn58vLy9fTwiCs6AoQUrkAAAAfElEQVQYGb3BSQ7DIBAEwAYGZgJ43+3//zNWZHELoBxShb8gQh3nUMXGaFFDea9QY922FRVoF9kJZe4QORyKbJBbtChRXs5TvELJJJpZy4QC6mfDbOaekOf0wLdBO2TZ0PBHEyxy1MiPUSGn46RDRms4MS2+W65Xci34yRvvSQUaIFkI4gAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_177___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAACRlBMVEW2DhRebHGQn6QAkchbPimqGR5CUVbl9PrU5OnQh40Aksj/////zwDMAADftQAQl8vv7+/vwgBgut0AkcdQs9m/mwBArNYIZy8wpdIgns/mgIDf398AkMafgQAAjsMKhqtwweAYgJMscWmOcwAhdXlDd1jMAADQqAATYCyvr6+fn59Tc0BKWCMNiKxjiU1qZxY9gGvLpADJAAB3cxivjwFCmbvdbQAYfqZLbkJdgUhcUgornci5lQAmhIh2YgMVms3TiYSCJxGjFAjZQEAIlcrODAA1h34hmsgzhaQ9bVFzkkXXTQDUPQC/oQgje4CkmhwxfnXrnQA0mcDZXQB9jTWAyOTTMgBBn8VeZB9iXA+IfxbpiwDstwAXfI+VfANcdDc/ZD9UWBiDbwTZdgCyoRbopQDPz8+9mQAAhbbIOgHEJAXhfADMFAAtdW5mh09qhT8oi5DilQCjoymolRC/pSeWlyY5WjlLf1enhwAveXCYixRQRQPKMAI5dmbRJADQsA5ebStrg1RqklKWmziWhg73xwCJsJZRQB17bQyOIA5umIhUnq9kcy6Pj4+QrZR2kmmzDQbB2cuwkw9pnpjBk4hvb2+jxrEgWil/f3+PZlEtgKDlhAAakacAh7pHj6qyBxvVmwBxgzM5koc/jKtfuty9nwRXh1eLiyMXh5xmbiNCinI5LwFIThgHaz1Rj2kvZFMtUybn9frUJgBFg4x/yOOAlV+fn0TBPQoHaz45RyK/v7/dhQC9qBc1YEffvQwsVCY/TyVfX1/OrkRSAAAACnRSTlPp9e//9ev36On1SIBarwAAAyFJREFUOMt9kgVX3EAQx9NuW9rb+CUnXBJO38EJx3GHO8Xd3bVCX90VqAAtpYW6u7u7fLNOwsF79PV1kjebzP52Zva/SxhfnaGi8Voq/+In3f+MOGGMzQdwMta44q8p/VKQyjMaz+HLxthJYjFo08VsSkjrlfSSkpUqRcDo6NzjZ/GF07nRa7QAIPHdupj92x62gM/MDCyAeNFea4HSzMo2b5WiPAo9s8fYbS99Tvu/M0pZTp897WnWrtZel8+/13WkocW/tMe8SI/ex9nhVpvTl+7os59qkx0NS3edt7Brf5B2D9gCfQ5R3J3tlsUBvyTpigA0/lzQ8bkGxpMkdzCBBr+9FDz5wr9vZ5lPryMuYfwbY48H41Vai9tIcrxqOxBk2W1wmUoarKmBjKwFs+pjwas1Ce8Hw2k9KkcWVau0bcuD7oBelScOyDgMQ5Sqoq1lV6t3TAPtQXC7nZK0uUbTcRpAqD/NAijtVVJDba2bNfAz1KSfBByObFVzgmWxVpyF0ja7vnNL154QbIh00985Tp44so8WG9RTJ75g1mPBQ3GYXa67401wKkGy0nX46IQsxg909Xam7uEqr2k6nscY3jjochmUTu+Krya5nT0hZ1Z6aOxUQvcszXkjZ22BY2YxDOpmqlJFDlo7Gqj5pbh6+rJByWopAnqGsAVU9AxFzV8Kh0iTMk0Ph4c5WiZp2bVwH1VLTAQXOWuX7A7Tblp0iJwYFGXRXaRTNLC/YrC8/mv/gZGVKetSUhRdysHwsQ+HyWPjO7gfM6PD36ZGr18piVlHUG8GZzvaB2uTm4jmpIy6uyXNSSVvM07OvG+um5syZ5ycy6m7YSpOSiKoDRs7mj62H+o/QKAChJhihHLMCBVnIFSQg+AHYjAUENRNaoRKPARNEhAy8I2CCSHhHd9oQLzVygsMMll5IAkqufxWcsXWrfVNAKoGnNmkjo1myMzcMzNamKAKr+7oqK+tLS8EEGYMBt7Km9S0DHzyPBIEZh7ckLxxZH174voKApl4q2AV1LBgMDC8AKsMaD4hmtdRM7U0Y0IRMwuIsZqRmY+AfwCdALIv0wUbWwAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_178___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJ1BMVEUAfC4AJnT80CK9uyRUmCjsyyI/kSqdsCbcxSJ+pigQgS0PgS0fhixRK6rDAAAAbUlEQVQoz2MQBAElOGAAg6Em6KGk1IIuqMyipORghCaoxmCkzJCEJmjAkKTGwIwm6MDA0cDAQoxKNQbzYgwzlVmilmLYruQxgRPDnUqqC7iCMATVGRiKMFVu4MZUqTSBE0soRR/FIqheRK2QBwDQhTJFgRiQewAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_179___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAG1BMVEUAK3/OESYyVJggRY9jfbEQOIeQosfAyt+gsM9en5nHAAAAQElEQVQY02NgAALWABApCAcgHgNbAhZBZgNmDEEnBgYPDEEXBgYjTO0MLAFYBJmxWMSkgEUwvJQYlYJYwJAWBAC4ZRdFtyZb0AAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_180___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAeCAMAAABpA6zvAAABR1BMVEX///+LaxFqdntctOLw8PCSlpOGcS9etuQ1SzNasN5Kk7j8/PzLzcsgOSxAUTosQC5KW0BdflOBYxumeyBpaVKFaCN0goygdh+QdSpfanFxVARqTA1xUxF0uNw/gKE+bXVLh54sUUlSptPo6ujh4+FNm8I0WUVHaUh4hHWbm5v39/fBxsJZdH44UEY1UjyrrqpreWgoR0EvTlNgcl1xc1hbVC+HdUNqbVlQSCFpazFzdTl2nLNrhmp4k6SqjEZ5pr18XRVUX2iXiWe5kiBwjp5cp86mvclapMvfz6vv37qku8g+dIRIhabf39/EuaTa0cGvtq0hLhxFUjR7eV0yPilXY1UiQTa8vLxYVzSogS9xgW0+QyG2tra4jTVFQSp6iYZkXCNic31hZk6KahyHpbWIr3FtZCd8pGp9aTOHr8hSYGhjf5JuYTEiW0ESAAABDElEQVQ4y+XPRXODUBQFYCDII8EJTrRx98a97u7u8v/X7TJZ8Mi207M939wzF0H+ZjbWF4R7uwsxX+bmIuNzdztko99vkDFXiKP6ZKKjuPtJ0rRMU3dlDDK2Nc0eI8UlGMsSl+82alnokKyWGMjDgr/0tPw9/ar7pdQtcIb71ZOaPDCmndFAfuTqzuMx4fhI6jxgvc+PYQ2A1FxJzSQEQF7rYZhqPMvlAhue7eagN3FaVjBDVUd3Up6NUI7Qk2SvBKUril2FAyIMbiV5/rX18ta+LxwkKGf4O354Xmm22s0KzwWhMB6On10T2SLjDXmgkN7EiXQulybwVRoKqbUAHd0ORunACgWHjvmf8AdLZy8UWK2OKgAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_181___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAMFBMVEVWtx//zgASrSvSEDSKSjAAAADYrgDjWCDjVyCzkAB0XQAXEwBrVgCkTiuDaQB3YAAKgYv+AAAAZklEQVQY02NwUsIEDCbYBI2dsAmaYBPEohQoaMuAAYyNjQsF0QBI0BzMEkuEEWBBiFKZgzACIghSKrk1eiKEgApagKRTw2AERLARxPq1DkaABS2w2d6IRRCr452IDRAnYgMZW3QAAIBCN0MOGs4oAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_182___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAMFBMVEUAbDWAtpqgyLMQdUFgo4FwrI1QmnSQv6fA283S5dsgfk5AkWew0cAwh1v3+/mPvqafxqwrAAAAdUlEQVQoz2NgGBzA2ABNYKuQr2tSp2vxnCIkQad2J5+gQ0HCRYVIgkGNtanZVd0lmYJIgqmdk5L8tQ6JFSoiCTKmysrOeCTq5q6JJJjTkfRJYpm7o6ANkuCqzZc3MBvssmb2opP3UbmmgiCg+RSLSmbjwRBdAAOBHQ8vIxWsAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_183___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJFBMVEUAhT/jGyP970LjGyL1pzaoy0GRwj9nsD8dkT7U3kDt6EFOpj/lyas/AAAARUlEQVQoz2NgAANWJTBwFAQBYYYhJ6g5CYugehEWQY0mDEGtDQwM3IvQVaoxMCRham/gwDRTk71gEYagWpJa0tANT0KCAK4xK1LO9A4bAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_184___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAABHVBMVEXGNTvHPkTl39/kwsP9/f4NP3QOQnfGNjz///8MQHbPdSxDRGzMaj7OjyXbz8/evb/GPD/Qkl3JcFPLq7HPXDTBMjf69/f25OVBQmvu0NHlsbPJZCvg09TSfH/KeDLEPjXUlSnLlJXo2drh2dnUt7fRsLDOhIfIUUr129zNnWzCVC3ioqRFRm7NbzjWiCfRalHRb3OuWWKubHjx7+/Fm57KTFHRmjrQi47XkpXTzM3KWlbexsbRj3LAa23x6encmZvLpKTEhYfEdXnVoaLrt7nMiUufRlfcioTil4htSkPSnk2kN0LBXjbOimLGfSbap6q8jJa0XzvQhX7Qd06qdzfaq2PSqDTCmzPUp4vYsbLhzs/t4ODJxMG6cXHIfH+gIrqyAAAAAXRSTlP9g+pWxwAAAQVJREFUOMvFzsdSwmAYheEUkJ+YbopJSCOFJk1CbwIq9t7b/V+GC51hgebLuPFdP3PmYFgmURj2N8hLySB+eswngAXh3CqJJREHoHwgVMv38klZgBbP6BrN0LVqAYL2BeM4DGNAH3n8rtN5dB6uf/mYzn61cdgYjMy2SzfaO9n10ivYVGxr0nsypjoAt1o9WWuZeF7ZBmCOcAN/zydYEPbHXdKN2CEAI48dT7UwItjNeHhFDENdXcxecwDczXPNkPyYTZ5BuAjm5LvPkT/DFPqucmMN3vrzUb2rovVSK1ikDNsjAokSUTxES+r2xeMoqQhBdGSS3GVdQyBEql7ZV1ACGNN/wk/ONTdzPjKb2QAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_185___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAb1BMVEX////cRET20dHdRi8Aej3pjIz//v782FYAP4fWKCjzuE0PSITXLSnszljumEXf7+fkZzitp2X70lQ1lWVObnfaPT2HvaAJfkNeq4S22cj319f1ysrogoKt1MGPxKkRg0lXp35mr4qwj36kj29psIx3kSIwAAAAr0lEQVQoz33N2RaCIBRA0YtToZWRQFk29//fGDLoBcHzvNc6sEU1+81cnVMcYMiQO+xoEvKZnY6UJiEaB9sAsuTWhzy99eA0jmxVAsJxbCuGWwX+OLLVSuWNF1sxZFpNkMW2SDnIl1viKQv1GG9JmUGYG8/bharau3yBGU9bX2nSnQsV6LHdIlW1vbwYYoJxrLekvMaJg3zcGtX2jwixsKlzpRR5d89iJfh+5G+dmP7QIhk7LnKNYwAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_186___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAgMAAABzfiX9AAAADFBMVEUAcsb///8etToftTtamkkBAAAAGElEQVQY02N4tQoKVjPQihkKBzRj0h4AAGLOW/Cjq+5HAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_187___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJ1BMVEXtKTn////2lJzxUV/uNUX1gYryYm7vQlD6ur/+7vD7ys73oaj1jZbd0n4ZAAAAW0lEQVQoz2NgwAFYkjHF2Bcqs2MIVk5msHBAF1wY4GCKYaKgSzMDkwKqIJskQzgDWwKqILMgNhdNLHAqCEMXDFzAYRCKLsgt4YBFf3aPAQMRQAkLYBDEAkayIADytx8PHH3E9QAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_188___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAV1BMVEXuGyTNpbfxPkfIIzr+/v8LTaH7x8kLTqL////uHCXyVFvyjZL1dXsZSpn6rbD+8fL94+QYSps4b7PkdX9hWY9gWpGSlbr4nKCdbpKOa5PFiZ9IernPj6EDTQy6AAAAAXRSTlP+GuMHfQAAAJNJREFUOMvdz9kOhCAMQFEsCtNaQHGb7f+/cyBGfXGKz94QCMkhDap+XKpWN4TB7AURGkwtS95NGbatBBubqxC96TqTHlT2rOaAzN4zlyEweU8MRUghjw5UHr19RobzAWcRfkBr7VzaIIrQfnvrbFrubWUYp/Wc4j+ocI3GfB8Jz1M7RHj1/ROwDBGHAfESlLoX/AFBXSI5QBCfVgAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_189___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAMFBMVEUAXOX/AAD///+/Fzq/1vkoTMF8crqIs/OYjMQQVtavzPcudbsweuqfgbUQZdaPl9PUMJ+YAAAAR0lEQVQY02NQwgIYSBN0L8EU1Ofe0IQhqMv34BKqoIuLi9vxmhQXZMAABKxOKgEM6IAza9kEDEGGiFYGqgJjLIBBEAugmyAAw6IoE6NtAqsAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_190___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAP1BMVEUhWzMaYsH7/P5Kgs7Fsx29sD8/cpEAUbr80RZYeSsub8WkwOY9ecqKr9/D1u/l7Pfu8/pYjNFwndjG1++zyuq3m5y9AAAAkUlEQVQoz43QyQ7CMAxF0RcHuCVDR/7/W1mEqpVo0nhj2TqSBwEOONJFvJ7DIEi5lDnV2eMtFrMVYDVb6kyCcSutcWwwqWwXwtWKJ1Ygfpp8m/0g83zDpPKXlCC0mITP0QP4T/Z1JuHMAkAwc3UmQYwOwMXYYPsxtIb+wwY7wyY74A3b4S0rsINJnUzqZFIn0xe7Ugy2JSfdKQAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_191___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJFBMVEVBid3///+gxO5bmeLN4Pbp8ftMkN+WvuyCsen4+/6vzfG30vJNbQNHAAAAUUlEQVQoz2NgGMSA2QCLINcCLIKsAVgEDYUxhLSVHEWUNqEJpggCgRu60kpBwekY+pkEBRUwBFkEBR0wBBNndIphCJYaMIdjCDYwMHAwDDEAAKAdCNZzMJXoAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_192___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAe1BMVEUAFIm/3dHwshwPfUsAd0n/uBzA3dIAAAD////gPDHeOzGQxK/g6uv47/DP5dyvpCovkGqAu6TiSD4QI5BsTgs/mXbpc2tIVqsgFwMffkP3shq/qCfAihVvkzXQlhbxqaSQmctQiztPizuAXA5/XA4wIwX1wr6wttrfsCKtJwiyAAAAwElEQVQ4y42S2RLCIAwAY1sMYr3aqnU8q/X4/y8URBTKuc87OyEECsGK0kc1CcHgIxbLOZ1tUsRolMFRmeEoA7LfadFz5RUPJEuJMsAm06JTX5SL2PLoVZnr0h0VIoroIv+auTsqRWxPZtSBFBFvRI+ObZSIdz3q4Cea0aCIDSGvFLFPK4oZu4QZe+PVI5v/HruEPQ5/5lKDjfxrPVduwYV1Pc4cZ3CPnhzHvHBfjmOctzfH0XLPGqJiLKfEaA7gDafDHAN8aOvZAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_193___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAe1BMVEX///9/f3+Pj49vb28PDw8/Pz/v7+/NLjoAR6CgoKC/v7/g4OAgICAfHx8VRJbzy862qcGEhIRmOm3Mwsqtra28L0IuR5DVhJBzbp6mMk3mlpzTR1HvvcHssLSTiKykl7bs5uxfX1+UlJT88vKPd53ZYmtTWpWXl5dQUFDfXWhyAAAA+ElEQVQ4y7WTiQ6DIAyGBYfgjdfu+37/J1zL0GVUzZZsPzGR+sEvbfG8/ykOaCyIe0DhR24o8gXleMrS6G3ToIYQJ8aTEMbbnhGGipgY4zCvpzx/xnzB7oWgxixF53wmQRdkg+JIzMPWeCOtNjCp0Dx0/pEb47XstIbpQXCaII7Gqxe4QnM2kPSqpRbw5CPVOVssU1kplyPgvESuyRSoHAVV2chmqoxmI6CG75my0gMQw1N3FCzoP7XN4+4F7nrz2FVm23Lb/srwhCW3BM21Ocq1MrWuIczd7gmZ7R5P673tnmPtds9gPzJSazR3O5waf3NnPr+Fv9IDQ40NIe3u0ysAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_194___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAYFBMVEX///9KbYVZdXr83QkHiTASRaUABhDaEhoAAAAPR68HfUUGIVMLNIMKZXQMWYsGhDhaMnamHz+luuHMFCNBOYl0LGQsXbkeUKSUnFFof3A8Y4+yrjzeyhwJb2ANUpcDEiy4e3zXAAAAc0lEQVQoz63QRxKAIBBEUZQRHXPO4f63FKVYCr3wr1/VNIhcJVCCOVMg5CgDIXN+gVBTBUJ9X2GQeWyFq4cEq6F9E39m4B7O00vrzgXDTcrFTh3+gPBp/DHw97zjiopcWVimRAA8fczA6CBCoGechWVKUDcmdhWS10VBkwAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_195___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAn1BMVEXUOBXxvxW4Zk+qUQj/wwC2Qw/5uQDGCh7VORf/xADzrwfXshjmngfOwpvJrYaiXxTRsb67dgbgtxeOlVTDqi3+yBftvAv6ww6/rD7rnAfOaQ3TsADSjAvopxbFVhTikgywRh2sWRXWeQ+1Yz+5ZwvToh+/elzRpUnMkxzTlEWxLRLMiRexqFmEOzJsU1+5WxTijbSTSRzUs55eaVvNpHBqh5K5AAAAAXRSTlP+GuMHfQAAAJdJREFUOMvl07cSwkAMBNDL4HDBgHO2h5zD/38btDSyathGzRs1K5EZMuSnIJmjQojwUBHfMEHBmNKApggYNoerLOIpqCqviqIoVOEEFGUr5euhVQlDkZrBWnNztRHwxmLT2PvFuYHlMMzZsT8/R9YyBUNf7zjvekm1D8MgW3M+yi7IEhiulot6e9r7n4moEOoafT1/+VxvK0kl3q0nSz4AAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_196___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAe1BMVEWNFTquVivxjA2KFDfZhi6miCzDbg3/vikAU07rdADGaTCyTTJ/EDP5pxy0ZCeFETW8bCjvsCX1tCXSiiffmyWfRCvTlh/CcSj5uCWRMyvAfyCiUifamCTroCTRgCqkXh/gqSXqqSXHfSiGJiqVSCLDix3kliuQIzDXkSbhs4zbAAAA8UlEQVQoz42SSXLDIBBFmxCnMxAGCRAg2Zpt3/+EaZQsXLFw+S1gwavfVfQHfBLA4ZA5fmfwfHrd43Qk8fCeefsgXrAJDu5hVfNf/NKMHpz6MxTfLi0/70QgJ14VCCdltNbmAZzDjkhMtbZmWI1v+2Rkm1N3RV7X0Qc0JlUptr1+IE7ae/R+mVnL5ARlkSmXBhMWRlhWFC9d4k1lAlbbT8ty4rqKm5XUZbH39kYsJ0Ld40jG2CyGpouiqLrZsRa1At5V9oEI7AIgwpX+j2EsjqYVZqPLSa4bE867K2RbKWi8EL+nEHy3FE2IxZo9Xdwn+QGnxBrCNL/vUwAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_197___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAARVBMVEUAAAAiXyxQVDPEFjJAQEDdTGcFZiXSEDT///8AcikAFQcARxmqIjGDNS8AKw8PejUvjFBfp3jv9vHP5Nafyq48Qz7PTmJl4CtHAAAAYElEQVQoz63QNxKAQBADwTm88P7/TyXAZYcCFHfV1C5JWlpDoTWhis6EkpNHkpz8CY38BaVkz6N7oMaliu2FGlYTStP8L3TT7jFhy6K7H97ztdPVWLABBxpZACsL0HiMA+tdEadf53u5AAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_198___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAKlBMVEU2fT67IkGwzLO0Ci3///83fj/syB3+/v7fmSDPZSTEPyfVeyK/LinpvB0xIzJ4AAAAAXRSTlP+GuMHfQAAAGFJREFUKM9jYA3FAAEMtBBUwgIYSlwwgDt2QUEsgMEYBqwWw5kIQevNWARtL2MIWna0ZXRMRlc5LS0tE0O7VVraYgxBm7S0wxiC1pnTNmMIWhy2aYYLYvUR8QGCNTzpFZsAgv2JIjNIFmMAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_199___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAA21BMVEU9XriuCwu+vr6RkZHrpgMAAAD///+xDAs+Xrn/2QAcGxuyOgm4OghBQUFtbW2rCwlOSYUrKyvrpgX92AJPPDnEaQbu6OhJUJKMMzOzKgeEHTLWqpjUmZnVm5vU1NTHbm5nPj+3Pz+pGBiMjIybJiaCXDp2JEBnL1SbYSvDZwN3W09TQniPGSkPDw/BX1+1UA9aPG60KCjr19evr6/v7+/6+vpiYGo4QGtHTo2vZBlwcHDOl12tOAbBcnLEgVe5b1S0TCI7WqNgYGByTT2XNzcPGS84THsbKU8yTYzAGvZjAAAAAXRSTlP9g+pWxwAAAQ1JREFUOMvdk9lWwjAQQDNoqqa2ScDSHShlBwFRwB13/f8vMmlOK6JoXvU+zrmZzJIgtK8FQn9BrBxoUUHlXS3KaG8TaD0lCXwJb4rNBsHpfD6LTn4WPfLGXk8NQbW+RfQPBY/4mblLfiZNI5SRSX3cXBeB+qZpHh1b1st0SaySpBqa13e3N2P6IQJQU3qY2La9WHC+I6kZ4WQVJQCQi9BvD3qO08YFWZWCK6fv9AYXfp6xy1hHHBQZL0VKm/NUZYxFcHTvMppnDM7dQB6QNQpISdUYyRgdulNa1Njpqgk31M0PWdux6jMYjta7LuYoPFL7NEfYuhmM01n8y2ayXXte65tda78e7ff4n37hOy+LLL1mIK03AAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_200___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAZAgMAAAA+toT2AAAACVBMVEUAaqf+zAB/m1N8Q7kSAAAAGklEQVQY02NgYGCYmsAAA7RmhsIBSUy6OhIASfMjv9uXrDcAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_201___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoBAMAAAB+0KVeAAAAFVBMVEX/AAD/////wMD/gID/v7//YGD/8PBls0LNAAAAPElEQVQoz2NgGLwg2NjYFENQUVBQaJALsroAQaKgoBiIDoAKMgsiAQN6C7IqAQHISSA6YIiFJ+7EMHgAACUjEjNIvHDuAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_202___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJ1BMVEUAAADOESb///8Aej3A3s8rkF3f7ubv9/PP5tqq0794uJhPo3kPgUhA53/OAAAAV0lEQVQoz2MQxAIYhoqgEhYAFVSBUE4ogqkQKgxZ0GXxlCQlJTVPKxckwVZj6yIlJfXNxhFIgmrGQSBK1TgJSVAz6jiIqlk6CVmwqANEdagjC6K7cygDAFe0LEzg45X5AAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_203___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJ1BMVEX+AAAAAJV+AEsUFJ2Cgsv///8BAJQwMKmfn9dCQrC6uuLg4PJgYL0ICCqaAAAAWUlEQVQoz2NIFIQBBgTAJSgsXmiIISje4lGILijs6bVkiiG6ypLQUHd0lZIdoaEdE9FVmoSGOmNY1LI12gPDIuMlXsYYFmXWHJ+I6SNhQ2K8qQQHDKMAFwAASRwaKceV/cMAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_204___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAJ1BMVEUAZgDMAAD////aSEhJkkn++N/97bD+88n96aD85pP74YBQlEb/++/JD/WXAAAAUUlEQVQY02MQxAIYaCFojAUwKMGAahCcCRdUSw1LwhAsUi9SxxTUnKSKLqgapJYENxUuGFO1/Ci6oFLFsqx2TNtndCJsd4ECbxeXLTA2A70AAP6jLUlcjKwxAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_205___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAeFBMVEUAAAArIwN3YwrrwhQdGAL2zBUptzcetToAo9380RbnzRxRvDHFpBHxyBUIpddfTwi0lQ8WEgHdzRqjxiNqWAm9nBCOvGw8rq7gyytivi4Rps9Osp+SwybVyjSpjA5TRQfNqhGdv2CzxyGpwVfTyxzNyDp9unovrLjWAwfLAAAAwklEQVQ4y43MWRKCMBAA0WF1hh0FRVTA/f43NBELs5BAf3c92Ng6RtSVMGbZwht5PcDiKHKWUebMI+MKgQNnfgx35OUi5wZg4nyRG+gJq7jgleljrHIJXd6IoHOpwtE+Q22Mt1Sr3AFRHTlXzXHKqHL+xEmjxlXpxIkj4xKJq6mZuP8Ynilwzdw0cs6xcL9xmRvHFdx3VLnco2uL+vigQeIKak44E6zi+ChypYnjo8zdW1wcGReZOHHsbdx/LDsrx/oAkpwc3/6WLokAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_206___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAgMAAABzfiX9AAAADFBMVEWlGTH09fjMh5QtKkoyD257AAAAH0lEQVQY02NgIAGsggOGUDggzPwPBzRjkuIcJF+QAAAjJYF/PyJQ8AAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_207___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAZBAMAAACx9nFWAAAALVBMVEUAak7SEDT/zgD//v+vHjjZLyvWJUXqj6D87/HgW3PaPVr42d/meY31y9PwsbwZZZ5IAAAATUlEQVQoz2MQhAAHBmRAkqA4NsEMbIKHJwoKBikhAQZBcWNj4x50QcEVxtaJGILixpYY2gUlzO0wBbMT12LankihNzEFlbAAmgjSCwAAG7QmPcKBtfcAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_208___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAJFBMVEXBAAD////rq6vwv7/TSkr66OjllJT++vrkkJDFFBTbamrFDw+mCkE3AAAAMUlEQVQY02MQhAIFBiQA5It4YBGU5MIUDLZmMS5EF0wAkoFECWLVjtUi7E7CdPywAwDkmwmBWzMtugAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_209___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAhFBMVEXaGjXcKEEQEBDqfY3eNUwICAj87/EAAAD////+/Pzn5+dDQ0P53OD9+PkdHR3hRFvbIDpsbGyTk5PlY3X19fX0v8bysLkzMzPMzMzV1dXw8PAqKir2yc/75unkWW2hoaG4uLjd3d3iT2RSUlKtra330dbvnqnDw8PtkJ18fHznbn9eXl5tmbTVAAAAyElEQVQoz43SRxaEIBBFUSOCihHMNua4//31AHRYwvgO+HWeYRPhyRc0nWkA70cHS8rWDx1Ixn0dSRlVKIakE/qllO5Ac0ianAXqoxm2IWkUJFUyxRsobZwpOTOeQDKniytl6a/g+AlV6kxR3X+MH1sprR39wPFdo8a7glyQTAp6q0knPsDxBz6VvGkBjr+IcDUbQfvTyKjbiFWhCTzT+jaywI0knM2ajWz4bYQUmo0EjJtwI8PbyMd4VEW6jfhPIwPVbMQTxP4DG9AQs+B16vUAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_210___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAMFBMVEXnABLnABP////zf4jtQE7rLz7qHy/83+H+8PH4qa/6xcj1j5fwYGvxb3noECH84OIlBDrBAAAAAXRSTlP9g+pWxwAAAG1JREFUKM9jYBTEAAIM9BcUDcQUzFRSmoYuKNO0eJfGQTRBp1JRYwsVVEG5isRNSkrqD1EERXRFlLarKzmiCAqrCitdy1IyRBGUVJQsETykNJGwSqxmyv0A2a7/EMOdl9Hdid1HWP2OPZQGJOIAPpI4lSZvLh0AAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_211___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAALVBMVEXjCRbjChf////nKTXrTFblGyf4wsXtZW3+8PHoOELvdHv1o6j84eL2srbxhIofikYmAAAAAXRSTlP+GuMHfQAAAGRJREFUKM9jYBTEAAIMdBYUnogpGN2klIIuKNKkW+m1EE3QQqlQUDAETTBJD8QODkQWFFY6CGKbbJyMJCiidBHEFtdJRBKUU3oIclWSkiMhlXAzjQnZjt2dWH2E1e/YQ2mgIg4A7pA0KOwEES4AAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_212___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAABL1BMVEUAhDwQi0lEdDayUi8pcTowm2HSJjAAhD0Bgzw2cjfHPS+/cDBAo23aRC/gWS3ULy9gSzfaSy7A4c+SOjG1cjCuSC+BQjK9WS+DZTCvaDCdRi9wQjSlUjB7azi6cDDCRi+iPy+iYGBVbjyWVjmFVDtPYzumWDBKWzaPdlFqYDNwupJgsoapLjGVQzEpajl+Njabj3jFVi6hk428Zi+jRy+rXTDELDCIWEuAVk3PUS6NUzGPSDOlaVuLXjCJPDFoUkORYjJ5Rz+7kI3XYi7CezCmdG80WjWAwp5Qqnmw2cOv2MLOOi+Xdz3MPTy1gC+AaEmhbjC+VEprazK3j5KgOj59ZWhZVTZUPzKSZmWUYVqaZTJ1UzI9fD2mfkqaT0zuii1ehEzrgC2Yg1t8WU+tZkZNbMQvAAAAAXRSTlP+GuMHfQAAATJJREFUOMuN0cVyw2AMBGBD7P3jGMPMzBPmhsvMjO//DD316Kg6f7OalTgOgBDyTx8fZi4G2+E4DoDz2Zvb619nSOjoD+5vzcY5AyDtTPS3UtnYhY8BUCFBtYOCSxlkOwkXA1DhDyCV7RK7PTEaULwMksQDgNsG1jPB9FMuGGAAyjwg2UHH3TgZnY2if60P9+1Wj6fpUXouMgA8rx65bcusFdEX6MUZAEgV1fY8QreTz4vJf3wmXIpEzGCN/kykcFNsmB4S1mtXewszRkNnO5wXxXCIhEJcMSw54aUTlVLuuzAf0mWyH8XY10ubTrQK28W2tKLh2npffQ7pgwshJVN8S8TpxOTrz2bZ9NFlLiebVKpZpeFpazk5OzmmoS57/FVZo6GmybJhGTSUdd3QNXkX/AXh7zbhm0h1sQAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_213___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAh1BMVEUAKGjXeorg5e2CgV70x8xncplgeaHOESbAytrcV2VSYGD8zxn8+vu/ydlDVGG2oj/9wDoSNGruxh0AnkkzS2TarhtKWWScrjfuvDnIiw7Mxx53eV3mwCTepg5GfDf98fP31dn88fL21djY3uj13uLZ3OYTNGq+fgv8q5OrVBa7ZBb+qoVPrjjs6fq2AAAAtUlEQVQoz92Q2Q6DIBBFR1HRIoL7vrRq9///vkIJTZsYbV97HoDhnjBhwLNMBwQuxq7cbcOzYAkZSFWJulpRpbiquZTSeTrsfYx9sY6ipIsiXuBHMdk9SXRrwej3g2zdD9Msa5WgomiaNEWvNx3T8gxbfkad9D3iN96eSvSh6fG8q4ifOSmJFnWgBy5VldSEXK5tVMMWWUS6jkTZpnhk1T2uWLgpQpDHcR7AFwSMfeUBhCH8JQ/SlAsDOOEqEAAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_214___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAVFBMVEUAlcjYVmvyxs1Ap5YQmbswo6Ignq/IEC4BIWnAyNr89/jUeY7g5O1dr3+/yzJnbppgdKFwtHCjw0j22N3f1BnPzyV/uWT+3QDZ3OePvldfc6FmbZpuQUo4AAAAzklEQVQoz42S2Q6EIAxFUQoojgvgPv//n9OCxpEY8D6Ukp7QDVaUn71C1UrVdPZNUbInUYDQAPrbEDOCzBHcCQxYVcVcZ9DWqNU5rZXSaFe6xy92LRr1oPt7AhjkQInINAXfp9aYFVNr5+6p+SikMZKFZoZPWTQ9NeO9718zxlcXFLBzPAG9CoTLDdg1cELjrjl7JzFuybCEYy1g2xS4LQTC3Il0PuDWE/P0qjqQkIUkAGuXTMO0ixlrFDZdYEsL4VbeBv4kPnKWhc5PE+sHuscKVSzXnS4AAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_215___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAb1BMVEUAAAB+bgKsNwH////ZAAAAAADqbQF+bgKsNwH83ATZAQD72wONjY1fX1vm5+a4uLbbEBD2v7/pb2/ukJAQEBC2UCDAwMDPW1oiJSLijVjvoZNwcHCcnJzExMTrqKjGNTWurq66mI/77e1FR0XhkJDFkXaHAAAACXRSTlP+/////////v4HKoILAAAAhElEQVQ4y82SSRLCIBQF0VYTwwcyJ45xuv8ZXUeogh328lXvXiu1T0KpjGKxSaJQ+piEzilWu1/a07n1xsoT68aaJ00dFTvsG+iiIoixgCeW2xUDuNlNL4b1XnoXAm5eJqJfC/Iwn7tExX7kJox9Qj0XuZpAPYFntP6zKA6JBOoJUmUUv8WyGwrCEGL4AAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_216___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAgMAAABzfiX9AAAADFBMVEWAmF3/1QAAW7uAmF21ZTA2AAAAAXRSTlP+GuMHfQAAABpJREFUGNNjWAUHDIOBaf8fCv4whMLBYGACAHKYirK4JSjEAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_217___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAElBMVEUAcy8AAAD/AAD///9UVFRVonQ6Np3gAAAAI0lEQVQY02NQAgEGNEBfwVBUABE0RgV0FnRBBRBBQVRAN0EAy7cuKPK5R68AAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_218___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAPFBMVEX////xw8p8jbLnv8pBWY8OLHHw8vfIEC4BIWnWTGKAkLRAWI5LYZXgeIn10tigrMfheYrx2+Htz9hKYJTy9LpmAAAAqUlEQVQoz8XTQRaDIAwFwC8SLBYE9f53LRVCCbJw1yx8koyiMcJOgFH04tBYUkDXBKnZLkldh4Z2kBnAJ2alO6SVqwrtgiSk9iaQ19EPktwL/RYuQ9c/Et45znB467dUyHAvq3AWgHtccJx+Ev+Ej19G53DBAFu0cc/wu/I2HsEVwA1PhSl1eK4NrxluuGTtJ5QUksmhaCkk68dM1SokGwxuoR0b/Qp5zw/L/xHkHUeiPgAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_219___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAVBAMAAADGNLEtAAAALVBMVEXGWWb////YkZo8O27ZkJmyIjRUU4BIR3fsyMzsyM21nbBzcpdgX4mUlLCFhKRMRAwAAAAAiklEQVQY02MwMy5ONjM3Tg5FAgzWZembQdgFCTCYX6+1OX691lgQCTDYmSU/BmEGZGB8vcrmMFAliqCtzeHHIIyi3RhoJkilEhJgsE5L2wzCKE4y25adlrYtOxlFuznYldbFM5EAgx3QEhBG0b4KCjqQAIMgFsAQigUwuGAB2LUTD7BqV8ICsDoJABuIZ60LUleQAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_220___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAflBMVEX////59vXouxDl0aKvehT9+/vR2+////8AOKgCOajHolX59Ozp3c7Gol69iQjPsnzDm0zPrV2tdwm2fwbw59bp2r3o1K7w48HfyZr17d+8iRm0gBnNp03v6OS7kDzXv5LdxYfMqW3QqEbOpkPCkBLBkinUow35zhTBkR/Ong6oZui5AAAAAXRSTlP9g+pWxwAAAJZJREFUOMvt0kcOwjAQBVCXMU7cS3qA0Mv9L4g4QJggkR1//TSaRohcFEK+gqIWXhscVjT0IeyolnJTzOUN6daeAaZIEdg0/pIdDFZVn6GwAE92SyeN9Nip5BhjeVQGGaa/OnZnMB6RirWKCVwGzlukR7rv4DEclMDWYwT3sbX4HqXkgkvzy1svgmWxKOUKcJ0P/089B19MsyEgLwCQwAAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_221___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAIVBMVEUAmbX///8etTqZimSNf5Ifpb5vxNQyrcNOt8qe2ONcvc//sX/oAAAAR0lEQVQY02NgYGBlYAhgQAPsUxkYUhsaUAU5C7Co5AxgaE9NSEAV5ErAopKhqr09IWEBipALFsAgiAXQT9AYC2BQwgLoJggAd5op+8o7j/AAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_222___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAXVBMVEUAAADtwRBeTQXetA8AfzmzDSwPCwEAlUPSEDShgwt/ZwifgQv9zhJ+Zwk/MwMfGQEAMRZGBRG3lQwARx9lBxmPdAoAiz7EDzDOqA4wJwNOPwQAcTKdDCduWgSmDCgachgdAAAAt0lEQVQoz43Qy47CMAxA0WsH7JkkTaDQmVIe//+ZLCpYFZK7s3Qky+Z4++kKo48ig3Hcd0ANfRQ6KQBRRGlQALAoQeH834Ivap8pQB3S0qTARWKUCbCUQ4HzY78RMC5aSq4ANeWx8KmZe2Re1qGmLOPvRkDSavdc2tCmNI1i7dVwCVnXY+YCp+tuoxVOBWyQoHD6883eD//OXrDJVmiDiMJh5/4VapBoDebeydzpY+4Yh6t31Mncnxi9Gc0Ued8IAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_223___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAALVBMVEXPEyr/zAAAJH3PFCv9ygECI3y7xNsbOYrp7PMuSpSotNM8V5tTaqZXbqmFlcDhG/iSAAAAAXRSTlP9g+pWxwAAAFhJREFUKM9jcBTEACIMQ0UwSAkDqMIF1TtnFKELqiWlT1NLQhOseqSkpLccVVBjEYjUakIR1LkEInUPIQtqZkM0bpuEJKgO0aekUYTqJBR3MhtjAIOhIggAAWBSAu+GeDgAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_224___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAIVBMVEXaJR3//wDhShf86gLztwnpexHcMhvvoAzlaRP41gXjWxXelDKJAAAAYUlEQVQoz2NgoDtgS8AiyBqARZDFAYsgowEWwUYJLIKOIugimoJgMAlVtBAkJo6mlMNQUFB4AboBiYKCYhj2LBQUFMIQLBQ2FMcQNHRLEUYXYxJlYAhUQA8OoABTAMOgBQBOLAlBK2IgQgAAAABJRU5ErkJggg=="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_225___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAz1BMVEUBIWkeaiHUeY4+VYnyxs1nbpo9VIrIEC7AyNrYVms+VYoPLXEtcSMAXCVgdKENZCa/x9ng5O37/P378vTf4+weOnj21dqHiYjPu37Z3Odfc6HltDmYlIPKnSG6tIhthiXTrEGhlGf99/iGljx8jSYydT6IqI6Ikyc4cyJ3n4JPg0YtbDUcbz8bYydcgiXL2M3LzsG5y7yYtqH13uNhbYPXrDm7kR6rm26ogRvAqGNJXiTUsE9QfiNcfEEpbSpviinHxbe2zcDi5OBYjGGSrXzI51XpAAAA80lEQVQoz7XQyZKCMBAG4ETQsCQEQQXc930p911ndN7/mSY9kKo5UOTkf0jo9FfpIsjUS1UkYhBiwJ7PmTpKCzSAxhCqooNQBgWYyQzXdaNtxfcI6Yo1EqWbCklK/hp2IYmtgBambHHBnGnJaJHI8ytdQsS6jaBOYAsPOrxFNTncKelmLg8/4xThKzm28AgPV7O+hDGTz/OPWvT22KzvSzlaNuSDA40hG882X3zMNJQdi+Pl+sVGVAW1RR+v/OlTeaM9pfjbm9BBWQGbYY+/f+a9Zmhnul3tcB7O+SRs1ALF6Hr7dG039nXVaEGDYydQs4/nFxTcFD++Tcb9AAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_226___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAABm1BMVEX////bsDX+/v7dsjUUJGP8/Pzjtjb////19fXarjP7+/sWJmfWqzH5+fnPqrX28+qkNlanN1jgx4HjvlYFe7u3bYMAdbTkwmP0xT3tvjnjxnTWs1Pw8fDetD/dsDPm7PDk2rrTqTLgszPr3LXXwoXk6Orn1qbjuUTpuzjhtDbmuTjPpS+TLkxzrMzLozHHnix7rMYpiLvXs0aKsceOuNC9mjiuZG3r4L7gu1PS4eqZvdGty9unw9Sxzt+BtdFFlcCsxa/RxqR1oXwEb6vatlFllWzE08aAqIVOi1fJv5atZnrUtmHc0bLmy3zVrT3x7uXg0aT58+Gvs8LYxZVDTHQ3jLlDRFPiy43dyImix9tBQlLs48pVoMfL2uLOq0TcxH7KuYrN28/B2OTLsnNsoHOYvJ6FqoqJso/WvXrZ4tvKrK/m3cXczJ6+kGbQrlb7+O9zo77m0puSfEaTfkXywzvs4cC4l6C6mKGfXXFcnmUmgbSdn1nj5tiPljjc6d5bkWQ/eUhIi1HN0rJWoMc9dXmzqW1Dh6yquLJMjbLH8TdBAAACKklEQVQ4y7WTV3caMRBGJW20Z0VYUx0wdRdTdum9+FAMmI57t+Peu9N7cZz2s8MaMDzETl48LzrSXH2aGc0A8BDG4Pv3mGmvbHJ8WMH2jvNmXR/JKobHkx2vHdKiTj3VFkKzRl541ZWaUutEGtq7lyYIgTztNjgVEul8qVdLxwqnwSXykJCJ2+cmjRASXtQLrmdSJHq9ruVyugS9KCcUNE72AplWQ+gngkBpZhyz4vMXIueY0VGCQPwQqqf7E0NLYRKgRXpx7lHH5hZb2wAJL6FemhggjFaNvMfiHlp43LGFIbfFwxtXJRV8A6N0Gpl81tGPG+seC73SVVyhKc/6hpQdMPlMN4rLOdl2qLy3v8dZiG3T+/a11/um7t20EQvHsCPSBzxpV5zRWn3Zz6VShTm0kZpqcECpGhhU1YjtcC19ncE9ED+NhlKy/WqhDBSJvLINKvMJBb6OFtdG0C0IlkMhFhwVSgcMuBiLt8H42AWw5i6j2lRPEVi1WYC2dquVMlZT4boE1sOUAbOXkWAQ94O5VsimSvXLwZFZ3jg7VqqOzxrEzJh+B7clf2re0am2VCc0unv1teY/Pw3E4vFY4PTc34z8jPb8fV1Y+CBqEhwhfCzGE8IlNLYff+9fvPPpGzjhIWwYWy1ygn5938F3kFvvWNCUU0kXJW8CX/G97M6hGG1FbTcnk2Y7yGi187J7JwhxBgOHmaC2mP3XsMkkJSYSyfzfbCLwwPYHPCRVSi8V07AAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_227___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAMFBMVEXtKDjtKTkAI5X////vRFLuOknuNkXxWmf5tbv819qptNv7ys5YaLP83N/3oajEtdCITnYQAAAAAXRSTlP9g+pWxwAAAGFJREFUKM9jUFLSMjZuFBRxFIQDAYahKCi3e/dDsOCZM+fv3m13dwcKiqRNtkxzBAmGgkBqaChQhfi0zGmZhSBBRoRZ4pZpaZMxBI0bJYyJU4nNTITtSIIIdyILwn00RAQB9plFeRIwkYUAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_228___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAWlBMVEXEERvxxMa4ExrIIyxVVVVVpn7llpoAAAD///8Aej300tTYYmmeJSbppKj88PDttLefDRV7NyYNczolZjZ6ChANAQElAwVKUjBKBgrPPEX44uPeeH6aSD9cnHcNwNhSAAAAfUlEQVQoz43QSQ6DMBBE0TIE4wEzJCEJ0/2vyWAgC6Sm/tJ6UqmNd5tTAfWHhEh+JASY+Q0y8xES8zgqHnInROdMrAqqN5f+EGmIzhtlRAj4cnkZtE41CxU37UonwfMYpcVjxikTOz78a2/af/tlKdg8LQPvZyMkZjfIzK7NQI0WA0pe9mYAAAAASUVORK5CYII="),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_229___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAgMAAABzfiX9AAAACVBMVEUAAADOESb///9w5v7GAAAAFUlEQVQY02MIhQMGWjFXwQHNmLQHAJQLWadZSURAAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_230___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAP1BMVEUZigAZhQAwgQDFaQC3YQBSawNsJgPvfQDeIBAAAABmgABfZAVeRQGlaAB7bgBNeQCLcwDSawCeagBiVANaewDu6/ERAAAAYElEQVQ4y+3QSQ6AIAxA0Q4girYMev+zWg8gsjDGBS/p7gcKAB+iSAhw2CClZiiFJXPWKlybR6JyKYGZXaaH2zElcc5jx6Koip1Pwvd+ZzX7ZuLlPvSzmRbjghnhCP8UntyWCYNHCcFWAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_URL_IMPORT_231___=new URL(__webpack_require__("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAdVBMVEXUAAAAAACioaDw8PBqAAD/0gD0ngBAgAD///8AZADS0dDCnADaiwPyr6/97+/tk4b41dUQSBAwSjBkaGA5cQChhxDUIhIQEBBmYGBeAAB0aDDnb2/QWzvnuQBoMDBwamCIEBD0v7+rOQDWDw/f39/3qA/dagBgvDPGAAAAh0lEQVQoz42TRxLCMBAEB4nQSA4imWCbDP9/IheulrbPXbW1s7Nym7UJEbZGEb/br8oIwB0WRQRAuNjElPytWuYR4Nse3F15gPenA8I1Lza9FL/S0PjTeT6NoH6NsWoB3HE2iYAhjhUGselifCYoj67h0RaX4Y8lHsAWuP2ExlJYa2YtrvUVfoyrFApCzR7PAAAAAElFTkSuQmCC"),__webpack_require__.b),___CSS_LOADER_EXPORT___=_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1___default()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default()),___CSS_LOADER_URL_REPLACEMENT_0___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_0___),___CSS_LOADER_URL_REPLACEMENT_1___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_1___),___CSS_LOADER_URL_REPLACEMENT_2___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_2___),___CSS_LOADER_URL_REPLACEMENT_3___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_3___),___CSS_LOADER_URL_REPLACEMENT_4___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_4___),___CSS_LOADER_URL_REPLACEMENT_5___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_5___),___CSS_LOADER_URL_REPLACEMENT_6___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_6___),___CSS_LOADER_URL_REPLACEMENT_7___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_7___),___CSS_LOADER_URL_REPLACEMENT_8___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_8___),___CSS_LOADER_URL_REPLACEMENT_9___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_9___),___CSS_LOADER_URL_REPLACEMENT_10___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_10___),___CSS_LOADER_URL_REPLACEMENT_11___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_11___),___CSS_LOADER_URL_REPLACEMENT_12___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_12___),___CSS_LOADER_URL_REPLACEMENT_13___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_13___),___CSS_LOADER_URL_REPLACEMENT_14___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_14___),___CSS_LOADER_URL_REPLACEMENT_15___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_15___),___CSS_LOADER_URL_REPLACEMENT_16___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_16___),___CSS_LOADER_URL_REPLACEMENT_17___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_17___),___CSS_LOADER_URL_REPLACEMENT_18___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_18___),___CSS_LOADER_URL_REPLACEMENT_19___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_19___),___CSS_LOADER_URL_REPLACEMENT_20___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_20___),___CSS_LOADER_URL_REPLACEMENT_21___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_21___),___CSS_LOADER_URL_REPLACEMENT_22___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_22___),___CSS_LOADER_URL_REPLACEMENT_23___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_23___),___CSS_LOADER_URL_REPLACEMENT_24___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_24___),___CSS_LOADER_URL_REPLACEMENT_25___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_25___),___CSS_LOADER_URL_REPLACEMENT_26___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_26___),___CSS_LOADER_URL_REPLACEMENT_27___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_27___),___CSS_LOADER_URL_REPLACEMENT_28___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_28___),___CSS_LOADER_URL_REPLACEMENT_29___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_29___),___CSS_LOADER_URL_REPLACEMENT_30___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_30___),___CSS_LOADER_URL_REPLACEMENT_31___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_31___),___CSS_LOADER_URL_REPLACEMENT_32___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_32___),___CSS_LOADER_URL_REPLACEMENT_33___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_33___),___CSS_LOADER_URL_REPLACEMENT_34___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_34___),___CSS_LOADER_URL_REPLACEMENT_35___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_35___),___CSS_LOADER_URL_REPLACEMENT_36___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_36___),___CSS_LOADER_URL_REPLACEMENT_37___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_37___),___CSS_LOADER_URL_REPLACEMENT_38___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_38___),___CSS_LOADER_URL_REPLACEMENT_39___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_39___),___CSS_LOADER_URL_REPLACEMENT_40___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_40___),___CSS_LOADER_URL_REPLACEMENT_41___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_41___),___CSS_LOADER_URL_REPLACEMENT_42___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_42___),___CSS_LOADER_URL_REPLACEMENT_43___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_43___),___CSS_LOADER_URL_REPLACEMENT_44___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_44___),___CSS_LOADER_URL_REPLACEMENT_45___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_45___),___CSS_LOADER_URL_REPLACEMENT_46___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_46___),___CSS_LOADER_URL_REPLACEMENT_47___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_47___),___CSS_LOADER_URL_REPLACEMENT_48___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_48___),___CSS_LOADER_URL_REPLACEMENT_49___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_49___),___CSS_LOADER_URL_REPLACEMENT_50___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_50___),___CSS_LOADER_URL_REPLACEMENT_51___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_51___),___CSS_LOADER_URL_REPLACEMENT_52___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_52___),___CSS_LOADER_URL_REPLACEMENT_53___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_53___),___CSS_LOADER_URL_REPLACEMENT_54___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_54___),___CSS_LOADER_URL_REPLACEMENT_55___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_55___),___CSS_LOADER_URL_REPLACEMENT_56___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_56___),___CSS_LOADER_URL_REPLACEMENT_57___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_57___),___CSS_LOADER_URL_REPLACEMENT_58___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_58___),___CSS_LOADER_URL_REPLACEMENT_59___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_59___),___CSS_LOADER_URL_REPLACEMENT_60___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_60___),___CSS_LOADER_URL_REPLACEMENT_61___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_61___),___CSS_LOADER_URL_REPLACEMENT_62___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_62___),___CSS_LOADER_URL_REPLACEMENT_63___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_63___),___CSS_LOADER_URL_REPLACEMENT_64___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_64___),___CSS_LOADER_URL_REPLACEMENT_65___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_65___),___CSS_LOADER_URL_REPLACEMENT_66___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_66___),___CSS_LOADER_URL_REPLACEMENT_67___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_67___),___CSS_LOADER_URL_REPLACEMENT_68___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_68___),___CSS_LOADER_URL_REPLACEMENT_69___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_69___),___CSS_LOADER_URL_REPLACEMENT_70___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_70___),___CSS_LOADER_URL_REPLACEMENT_71___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_71___),___CSS_LOADER_URL_REPLACEMENT_72___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_72___),___CSS_LOADER_URL_REPLACEMENT_73___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_73___),___CSS_LOADER_URL_REPLACEMENT_74___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_74___),___CSS_LOADER_URL_REPLACEMENT_75___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_75___),___CSS_LOADER_URL_REPLACEMENT_76___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_76___),___CSS_LOADER_URL_REPLACEMENT_77___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_77___),___CSS_LOADER_URL_REPLACEMENT_78___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_78___),___CSS_LOADER_URL_REPLACEMENT_79___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_79___),___CSS_LOADER_URL_REPLACEMENT_80___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_80___),___CSS_LOADER_URL_REPLACEMENT_81___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_81___),___CSS_LOADER_URL_REPLACEMENT_82___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_82___),___CSS_LOADER_URL_REPLACEMENT_83___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_83___),___CSS_LOADER_URL_REPLACEMENT_84___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_84___),___CSS_LOADER_URL_REPLACEMENT_85___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_85___),___CSS_LOADER_URL_REPLACEMENT_86___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_86___),___CSS_LOADER_URL_REPLACEMENT_87___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_87___),___CSS_LOADER_URL_REPLACEMENT_88___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_88___),___CSS_LOADER_URL_REPLACEMENT_89___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_89___),___CSS_LOADER_URL_REPLACEMENT_90___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_90___),___CSS_LOADER_URL_REPLACEMENT_91___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_91___),___CSS_LOADER_URL_REPLACEMENT_92___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_92___),___CSS_LOADER_URL_REPLACEMENT_93___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_93___),___CSS_LOADER_URL_REPLACEMENT_94___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_94___),___CSS_LOADER_URL_REPLACEMENT_95___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_95___),___CSS_LOADER_URL_REPLACEMENT_96___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_96___),___CSS_LOADER_URL_REPLACEMENT_97___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_97___),___CSS_LOADER_URL_REPLACEMENT_98___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_98___),___CSS_LOADER_URL_REPLACEMENT_99___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_99___),___CSS_LOADER_URL_REPLACEMENT_100___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_100___),___CSS_LOADER_URL_REPLACEMENT_101___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_101___),___CSS_LOADER_URL_REPLACEMENT_102___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_102___),___CSS_LOADER_URL_REPLACEMENT_103___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_103___),___CSS_LOADER_URL_REPLACEMENT_104___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_104___),___CSS_LOADER_URL_REPLACEMENT_105___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_105___),___CSS_LOADER_URL_REPLACEMENT_106___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_106___),___CSS_LOADER_URL_REPLACEMENT_107___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_107___),___CSS_LOADER_URL_REPLACEMENT_108___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_108___),___CSS_LOADER_URL_REPLACEMENT_109___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_109___),___CSS_LOADER_URL_REPLACEMENT_110___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_110___),___CSS_LOADER_URL_REPLACEMENT_111___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_111___),___CSS_LOADER_URL_REPLACEMENT_112___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_112___),___CSS_LOADER_URL_REPLACEMENT_113___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_113___),___CSS_LOADER_URL_REPLACEMENT_114___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_114___),___CSS_LOADER_URL_REPLACEMENT_115___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_115___),___CSS_LOADER_URL_REPLACEMENT_116___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_116___),___CSS_LOADER_URL_REPLACEMENT_117___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_117___),___CSS_LOADER_URL_REPLACEMENT_118___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_118___),___CSS_LOADER_URL_REPLACEMENT_119___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_119___),___CSS_LOADER_URL_REPLACEMENT_120___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_120___),___CSS_LOADER_URL_REPLACEMENT_121___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_121___),___CSS_LOADER_URL_REPLACEMENT_122___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_122___),___CSS_LOADER_URL_REPLACEMENT_123___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_123___),___CSS_LOADER_URL_REPLACEMENT_124___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_124___),___CSS_LOADER_URL_REPLACEMENT_125___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_125___),___CSS_LOADER_URL_REPLACEMENT_126___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_126___),___CSS_LOADER_URL_REPLACEMENT_127___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_127___),___CSS_LOADER_URL_REPLACEMENT_128___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_128___),___CSS_LOADER_URL_REPLACEMENT_129___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_129___),___CSS_LOADER_URL_REPLACEMENT_130___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_130___),___CSS_LOADER_URL_REPLACEMENT_131___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_131___),___CSS_LOADER_URL_REPLACEMENT_132___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_132___),___CSS_LOADER_URL_REPLACEMENT_133___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_133___),___CSS_LOADER_URL_REPLACEMENT_134___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_134___),___CSS_LOADER_URL_REPLACEMENT_135___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_135___),___CSS_LOADER_URL_REPLACEMENT_136___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_136___),___CSS_LOADER_URL_REPLACEMENT_137___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_137___),___CSS_LOADER_URL_REPLACEMENT_138___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_138___),___CSS_LOADER_URL_REPLACEMENT_139___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_139___),___CSS_LOADER_URL_REPLACEMENT_140___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_140___),___CSS_LOADER_URL_REPLACEMENT_141___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_141___),___CSS_LOADER_URL_REPLACEMENT_142___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_142___),___CSS_LOADER_URL_REPLACEMENT_143___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_143___),___CSS_LOADER_URL_REPLACEMENT_144___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_144___),___CSS_LOADER_URL_REPLACEMENT_145___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_145___),___CSS_LOADER_URL_REPLACEMENT_146___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_146___),___CSS_LOADER_URL_REPLACEMENT_147___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_147___),___CSS_LOADER_URL_REPLACEMENT_148___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_148___),___CSS_LOADER_URL_REPLACEMENT_149___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_149___),___CSS_LOADER_URL_REPLACEMENT_150___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_150___),___CSS_LOADER_URL_REPLACEMENT_151___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_151___),___CSS_LOADER_URL_REPLACEMENT_152___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_152___),___CSS_LOADER_URL_REPLACEMENT_153___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_153___),___CSS_LOADER_URL_REPLACEMENT_154___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_154___),___CSS_LOADER_URL_REPLACEMENT_155___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_155___),___CSS_LOADER_URL_REPLACEMENT_156___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_156___),___CSS_LOADER_URL_REPLACEMENT_157___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_157___),___CSS_LOADER_URL_REPLACEMENT_158___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_158___),___CSS_LOADER_URL_REPLACEMENT_159___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_159___),___CSS_LOADER_URL_REPLACEMENT_160___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_160___),___CSS_LOADER_URL_REPLACEMENT_161___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_161___),___CSS_LOADER_URL_REPLACEMENT_162___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_162___),___CSS_LOADER_URL_REPLACEMENT_163___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_163___),___CSS_LOADER_URL_REPLACEMENT_164___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_164___),___CSS_LOADER_URL_REPLACEMENT_165___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_165___),___CSS_LOADER_URL_REPLACEMENT_166___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_166___),___CSS_LOADER_URL_REPLACEMENT_167___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_167___),___CSS_LOADER_URL_REPLACEMENT_168___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_168___),___CSS_LOADER_URL_REPLACEMENT_169___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_169___),___CSS_LOADER_URL_REPLACEMENT_170___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_170___),___CSS_LOADER_URL_REPLACEMENT_171___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_171___),___CSS_LOADER_URL_REPLACEMENT_172___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_172___),___CSS_LOADER_URL_REPLACEMENT_173___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_173___),___CSS_LOADER_URL_REPLACEMENT_174___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_174___),___CSS_LOADER_URL_REPLACEMENT_175___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_175___),___CSS_LOADER_URL_REPLACEMENT_176___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_176___),___CSS_LOADER_URL_REPLACEMENT_177___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_177___),___CSS_LOADER_URL_REPLACEMENT_178___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_178___),___CSS_LOADER_URL_REPLACEMENT_179___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_179___),___CSS_LOADER_URL_REPLACEMENT_180___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_180___),___CSS_LOADER_URL_REPLACEMENT_181___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_181___),___CSS_LOADER_URL_REPLACEMENT_182___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_182___),___CSS_LOADER_URL_REPLACEMENT_183___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_183___),___CSS_LOADER_URL_REPLACEMENT_184___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_184___),___CSS_LOADER_URL_REPLACEMENT_185___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_185___),___CSS_LOADER_URL_REPLACEMENT_186___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_186___),___CSS_LOADER_URL_REPLACEMENT_187___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_187___),___CSS_LOADER_URL_REPLACEMENT_188___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_188___),___CSS_LOADER_URL_REPLACEMENT_189___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_189___),___CSS_LOADER_URL_REPLACEMENT_190___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_190___),___CSS_LOADER_URL_REPLACEMENT_191___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_191___),___CSS_LOADER_URL_REPLACEMENT_192___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_192___),___CSS_LOADER_URL_REPLACEMENT_193___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_193___),___CSS_LOADER_URL_REPLACEMENT_194___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_194___),___CSS_LOADER_URL_REPLACEMENT_195___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_195___),___CSS_LOADER_URL_REPLACEMENT_196___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_196___),___CSS_LOADER_URL_REPLACEMENT_197___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_197___),___CSS_LOADER_URL_REPLACEMENT_198___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_198___),___CSS_LOADER_URL_REPLACEMENT_199___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_199___),___CSS_LOADER_URL_REPLACEMENT_200___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_200___),___CSS_LOADER_URL_REPLACEMENT_201___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_201___),___CSS_LOADER_URL_REPLACEMENT_202___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_202___),___CSS_LOADER_URL_REPLACEMENT_203___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_203___),___CSS_LOADER_URL_REPLACEMENT_204___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_204___),___CSS_LOADER_URL_REPLACEMENT_205___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_205___),___CSS_LOADER_URL_REPLACEMENT_206___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_206___),___CSS_LOADER_URL_REPLACEMENT_207___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_207___),___CSS_LOADER_URL_REPLACEMENT_208___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_208___),___CSS_LOADER_URL_REPLACEMENT_209___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_209___),___CSS_LOADER_URL_REPLACEMENT_210___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_210___),___CSS_LOADER_URL_REPLACEMENT_211___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_211___),___CSS_LOADER_URL_REPLACEMENT_212___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_212___),___CSS_LOADER_URL_REPLACEMENT_213___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_213___),___CSS_LOADER_URL_REPLACEMENT_214___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_214___),___CSS_LOADER_URL_REPLACEMENT_215___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_215___),___CSS_LOADER_URL_REPLACEMENT_216___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_216___),___CSS_LOADER_URL_REPLACEMENT_217___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_217___),___CSS_LOADER_URL_REPLACEMENT_218___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_218___),___CSS_LOADER_URL_REPLACEMENT_219___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_219___),___CSS_LOADER_URL_REPLACEMENT_220___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_220___),___CSS_LOADER_URL_REPLACEMENT_221___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_221___),___CSS_LOADER_URL_REPLACEMENT_222___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_222___),___CSS_LOADER_URL_REPLACEMENT_223___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_223___),___CSS_LOADER_URL_REPLACEMENT_224___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_224___),___CSS_LOADER_URL_REPLACEMENT_225___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_225___),___CSS_LOADER_URL_REPLACEMENT_226___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_226___),___CSS_LOADER_URL_REPLACEMENT_227___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_227___),___CSS_LOADER_URL_REPLACEMENT_228___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_228___),___CSS_LOADER_URL_REPLACEMENT_229___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_229___),___CSS_LOADER_URL_REPLACEMENT_230___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_230___),___CSS_LOADER_URL_REPLACEMENT_231___=_node_modules_css_loader_dist_runtime_getUrl_js__WEBPACK_IMPORTED_MODULE_2___default()(___CSS_LOADER_URL_IMPORT_231___);___CSS_LOADER_EXPORT___.push([module.id,`/*\n * React Fabric\n * @version : 1.0.0\n * @copyright : 2024\n * @author : Adarsh Pastakia\n */\n\n/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer colors, reset, comp, util, var;\n\n@layer reset{\n/*\n ! tailwindcss v3.4.4 | MIT License | https://tailwindcss.com\n *//*\n1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)\n2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)\n*/\n\n*,\n::before,\n::after {\n box-sizing: border-box; /* 1 */\n border-width: 0; /* 2 */\n border-style: solid; /* 2 */\n border-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 65%, color(from var(--tint) srgb r g b / 1)); /* 2 */\n}\n\n::before,\n::after {\n --tw-content: '';\n}\n\n/*\n1. Use a consistent sensible line-height in all browsers.\n2. Prevent adjustments of font size after orientation changes in iOS.\n3. Use a more readable tab size.\n4. Use the user's configured \`sans\` font-family by default.\n5. Use the user's configured \`sans\` font-feature-settings by default.\n6. Use the user's configured \`sans\` font-variation-settings by default.\n7. Disable tap highlights on iOS\n*/\n\nhtml,\n:host {\n line-height: 1.5; /* 1 */\n -webkit-text-size-adjust: 100%; /* 2 */\n -moz-tab-size: 4; /* 3 */\n -o-tab-size: 4;\n tab-size: 4; /* 3 */\n font-family: Avenir Next, Avenir, Noto Sans, Roboto, Helvetica Neue, Segoe UI, Arial, sans-serif, BlinkMacSystemFont, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji; /* 4 */\n font-feature-settings: normal; /* 5 */\n font-variation-settings: normal; /* 6 */\n -webkit-tap-highlight-color: transparent; /* 7 */\n}\n\n/*\n1. Remove the margin in all browsers.\n2. Inherit line-height from \`html\` so users can set them as a class directly on the \`html\` element.\n*/\n\nbody {\n margin: 0; /* 1 */\n line-height: inherit; /* 2 */\n}\n\n/*\n1. Add the correct height in Firefox.\n2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)\n3. Ensure horizontal rules are visible by default.\n*/\n\nhr {\n height: 0; /* 1 */\n color: inherit; /* 2 */\n border-top-width: 1px; /* 3 */\n}\n\n/*\nAdd the correct text decoration in Chrome, Edge, and Safari.\n*/\n\nabbr:where([title]) {\n -webkit-text-decoration: underline dotted;\n text-decoration: underline dotted;\n}\n\n/*\nRemove the default font size and weight for headings.\n*/\n\nh1,\nh2,\nh3,\nh4,\nh5,\nh6 {\n font-size: inherit;\n font-weight: inherit;\n}\n\n/*\nReset links to optimize for opt-in styling instead of opt-out.\n*/\n\na {\n color: inherit;\n text-decoration: inherit;\n}\n\n/*\nAdd the correct font weight in Edge and Safari.\n*/\n\nb,\nstrong {\n font-weight: bolder;\n}\n\n/*\n1. Use the user's configured \`mono\` font-family by default.\n2. Use the user's configured \`mono\` font-feature-settings by default.\n3. Use the user's configured \`mono\` font-variation-settings by default.\n4. Correct the odd \`em\` font sizing in all browsers.\n*/\n\ncode,\nkbd,\nsamp,\npre {\n font-family: Noto Sans Mono, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace; /* 1 */\n font-feature-settings: normal; /* 2 */\n font-variation-settings: normal; /* 3 */\n font-size: 1em; /* 4 */\n}\n\n/*\nAdd the correct font size in all browsers.\n*/\n\nsmall {\n font-size: 80%;\n}\n\n/*\nPrevent \`sub\` and \`sup\` elements from affecting the line height in all browsers.\n*/\n\nsub,\nsup {\n font-size: 75%;\n line-height: 0;\n position: relative;\n vertical-align: baseline;\n}\n\nsub {\n bottom: -0.25em;\n}\n\nsup {\n top: -0.5em;\n}\n\n/*\n1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)\n2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)\n3. Remove gaps between table borders by default.\n*/\n\ntable {\n text-indent: 0; /* 1 */\n border-color: inherit; /* 2 */\n border-collapse: collapse; /* 3 */\n}\n\n/*\n1. Change the font styles in all browsers.\n2. Remove the margin in Firefox and Safari.\n3. Remove default padding in all browsers.\n*/\n\nbutton,\ninput,\noptgroup,\nselect,\ntextarea {\n font-family: inherit; /* 1 */\n font-feature-settings: inherit; /* 1 */\n font-variation-settings: inherit; /* 1 */\n font-size: 100%; /* 1 */\n font-weight: inherit; /* 1 */\n line-height: inherit; /* 1 */\n letter-spacing: inherit; /* 1 */\n color: inherit; /* 1 */\n margin: 0; /* 2 */\n padding: 0; /* 3 */\n}\n\n/*\nRemove the inheritance of text transform in Edge and Firefox.\n*/\n\nbutton,\nselect {\n text-transform: none;\n}\n\n/*\n1. Correct the inability to style clickable types in iOS and Safari.\n2. Remove default button styles.\n*/\n\nbutton,\ninput:where([type='button']),\ninput:where([type='reset']),\ninput:where([type='submit']) {\n -webkit-appearance: button; /* 1 */\n background-color: transparent; /* 2 */\n background-image: none; /* 2 */\n}\n\n/*\nUse the modern Firefox focus style for all focusable elements.\n*/\n\n:-moz-focusring {\n outline: auto;\n}\n\n/*\nRemove the additional \`:invalid\` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)\n*/\n\n:-moz-ui-invalid {\n box-shadow: none;\n}\n\n/*\nAdd the correct vertical alignment in Chrome and Firefox.\n*/\n\nprogress {\n vertical-align: baseline;\n}\n\n/*\nCorrect the cursor style of increment and decrement buttons in Safari.\n*/\n\n::-webkit-inner-spin-button,\n::-webkit-outer-spin-button {\n height: auto;\n}\n\n/*\n1. Correct the odd appearance in Chrome and Safari.\n2. Correct the outline style in Safari.\n*/\n\n[type='search'] {\n -webkit-appearance: textfield; /* 1 */\n outline-offset: -2px; /* 2 */\n}\n\n/*\nRemove the inner padding in Chrome and Safari on macOS.\n*/\n\n::-webkit-search-decoration {\n -webkit-appearance: none;\n}\n\n/*\n1. Correct the inability to style clickable types in iOS and Safari.\n2. Change font properties to \`inherit\` in Safari.\n*/\n\n::-webkit-file-upload-button {\n -webkit-appearance: button; /* 1 */\n font: inherit; /* 2 */\n}\n\n/*\nAdd the correct display in Chrome and Safari.\n*/\n\nsummary {\n display: list-item;\n}\n\n/*\nRemoves the default spacing and border for appropriate elements.\n*/\n\nblockquote,\ndl,\ndd,\nh1,\nh2,\nh3,\nh4,\nh5,\nh6,\nhr,\nfigure,\np,\npre {\n margin: 0;\n}\n\nfieldset {\n margin: 0;\n padding: 0;\n}\n\nlegend {\n padding: 0;\n}\n\nol,\nul,\nmenu {\n list-style: none;\n margin: 0;\n padding: 0;\n}\n\n/*\nReset default styling for dialogs.\n*/\ndialog {\n padding: 0;\n}\n\n/*\nPrevent resizing textareas horizontally by default.\n*/\n\ntextarea {\n resize: vertical;\n}\n\n/*\n1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)\n2. Set the default placeholder color to the user's configured gray 400 color.\n*/\n\ninput::-moz-placeholder, textarea::-moz-placeholder {\n opacity: 1; /* 1 */\n color: #9ca3af; /* 2 */\n}\n\ninput::placeholder,\ntextarea::placeholder {\n opacity: 1; /* 1 */\n color: #9ca3af; /* 2 */\n}\n\n/*\nSet the default cursor for buttons.\n*/\n\nbutton,\n[role="button"] {\n cursor: pointer;\n}\n\n/*\nMake sure disabled buttons don't get the pointer cursor.\n*/\n:disabled {\n cursor: default;\n}\n\n/*\n1. Make replaced elements \`display: block\` by default. (https://github.com/mozdevs/cssremedy/issues/14)\n2. Add \`vertical-align: middle\` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)\n This can trigger a poorly considered lint error in some tools but is included by design.\n*/\n\nimg,\nsvg,\nvideo,\ncanvas,\naudio,\niframe,\nembed,\nobject {\n display: block; /* 1 */\n vertical-align: middle; /* 2 */\n}\n\n/*\nConstrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)\n*/\n\nimg,\nvideo {\n max-width: 100%;\n height: auto;\n}\n\n/* Make elements with the HTML hidden attribute stay hidden by default */\n[hidden] {\n display: none;\n}\n[type='text'],input:where(:not([type])),[type='email'],[type='url'],[type='password'],[type='number'],[type='date'],[type='datetime-local'],[type='month'],[type='search'],[type='tel'],[type='time'],[type='week'],[multiple],textarea,select{\n-webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\nbackground-color: #fff;\nborder-color: #6b7280;\nborder-width: 1px;\nborder-radius: 0px;\npadding-top: 0.5rem;\npadding-right: 0.75rem;\npadding-bottom: 0.5rem;\npadding-left: 0.75rem;\nfont-size: 1rem;\nline-height: 1.5rem;\n--tw-shadow: 0 0 #0000;\n}\n[type='text']:focus, input:where(:not([type])):focus, [type='email']:focus, [type='url']:focus, [type='password']:focus, [type='number']:focus, [type='date']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='week']:focus, [multiple]:focus, textarea:focus, select:focus{\noutline: 2px solid transparent;\noutline-offset: 2px;\n--tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);\n--tw-ring-offset-width: 0px;\n--tw-ring-offset-color: #fff;\n--tw-ring-color: #2563eb;\n--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);\n--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);\nbox-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);\nborder-color: #2563eb;\n}\ninput::-moz-placeholder, textarea::-moz-placeholder{\ncolor: #6b7280;\nopacity: 1;\n}\ninput::placeholder,textarea::placeholder{\ncolor: #6b7280;\nopacity: 1;\n}\n::-webkit-datetime-edit-fields-wrapper{\npadding: 0;\n}\n::-webkit-date-and-time-value{\nmin-height: 1.5em;\ntext-align: inherit;\n}\n::-webkit-datetime-edit{\ndisplay: inline-flex;\n}\n::-webkit-datetime-edit,::-webkit-datetime-edit-year-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute-field,::-webkit-datetime-edit-second-field,::-webkit-datetime-edit-millisecond-field,::-webkit-datetime-edit-meridiem-field{\npadding-top: 0;\npadding-bottom: 0;\n}\nselect{\nbackground-image: url(${___CSS_LOADER_URL_REPLACEMENT_0___});\nbackground-position: right 0.5rem center;\nbackground-repeat: no-repeat;\nbackground-size: 1.5em 1.5em;\npadding-right: 2.5rem;\n-webkit-print-color-adjust: exact;\n print-color-adjust: exact;\n}\n[multiple],[size]:where(select:not([size="1"])){\nbackground-image: initial;\nbackground-position: initial;\nbackground-repeat: unset;\nbackground-size: initial;\npadding-right: 0.75rem;\n-webkit-print-color-adjust: unset;\n print-color-adjust: unset;\n}\n[type='checkbox'],[type='radio']{\n-webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\npadding: 0;\n-webkit-print-color-adjust: exact;\n print-color-adjust: exact;\ndisplay: inline-block;\nvertical-align: middle;\nbackground-origin: border-box;\n-webkit-user-select: none;\n -moz-user-select: none;\n user-select: none;\nflex-shrink: 0;\nheight: 1rem;\nwidth: 1rem;\ncolor: #2563eb;\nbackground-color: #fff;\nborder-color: #6b7280;\nborder-width: 1px;\n--tw-shadow: 0 0 #0000;\n}\n[type='checkbox']{\nborder-radius: 0px;\n}\n[type='radio']{\nborder-radius: 100%;\n}\n[type='checkbox']:focus,[type='radio']:focus{\noutline: 2px solid transparent;\noutline-offset: 2px;\n--tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);\n--tw-ring-offset-width: 2px;\n--tw-ring-offset-color: #fff;\n--tw-ring-color: #2563eb;\n--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);\n--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);\nbox-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);\n}\n[type='checkbox']:checked,[type='radio']:checked{\nborder-color: transparent;\nbackground-color: currentColor;\nbackground-size: 100% 100%;\nbackground-position: center;\nbackground-repeat: no-repeat;\n}\n[type='checkbox']:checked{\nbackground-image: url(${___CSS_LOADER_URL_REPLACEMENT_1___});\n}\n@media (forced-colors: active) {\n\n[type='checkbox']:checked{\n-webkit-appearance: auto;\n -moz-appearance: auto;\n appearance: auto;\n}\n}\n[type='radio']:checked{\nbackground-image: url(${___CSS_LOADER_URL_REPLACEMENT_2___});\n}\n@media (forced-colors: active) {\n\n[type='radio']:checked{\n-webkit-appearance: auto;\n -moz-appearance: auto;\n appearance: auto;\n}\n}\n[type='checkbox']:checked:hover,[type='checkbox']:checked:focus,[type='radio']:checked:hover,[type='radio']:checked:focus{\nborder-color: transparent;\nbackground-color: currentColor;\n}\n[type='checkbox']:indeterminate{\nbackground-image: url(${___CSS_LOADER_URL_REPLACEMENT_3___});\nborder-color: transparent;\nbackground-color: currentColor;\nbackground-size: 100% 100%;\nbackground-position: center;\nbackground-repeat: no-repeat;\n}\n@media (forced-colors: active) {\n\n[type='checkbox']:indeterminate{\n-webkit-appearance: auto;\n -moz-appearance: auto;\n appearance: auto;\n}\n}\n[type='checkbox']:indeterminate:hover,[type='checkbox']:indeterminate:focus{\nborder-color: transparent;\nbackground-color: currentColor;\n}\n[type='file']{\nbackground: unset;\nborder-color: inherit;\nborder-width: 0;\nborder-radius: 0;\npadding: 0;\nfont-size: unset;\nline-height: inherit;\n}\n[type='file']:focus{\noutline: 1px solid ButtonText;\noutline: 1px auto -webkit-focus-ring-color;\n}\n*, ::before, ::after{\n--tw-border-spacing-x: 0;\n--tw-border-spacing-y: 0;\n--tw-translate-x: 0;\n--tw-translate-y: 0;\n--tw-rotate: 0;\n--tw-skew-x: 0;\n--tw-skew-y: 0;\n--tw-scale-x: 1;\n--tw-scale-y: 1;\n--tw-pan-x: ;\n--tw-pan-y: ;\n--tw-pinch-zoom: ;\n--tw-scroll-snap-strictness: proximity;\n--tw-gradient-from-position: ;\n--tw-gradient-via-position: ;\n--tw-gradient-to-position: ;\n--tw-ordinal: ;\n--tw-slashed-zero: ;\n--tw-numeric-figure: ;\n--tw-numeric-spacing: ;\n--tw-numeric-fraction: ;\n--tw-ring-inset: ;\n--tw-ring-offset-width: 0px;\n--tw-ring-offset-color: #fff;\n--tw-ring-color: rgb(59 130 246 / 0.5);\n--tw-ring-offset-shadow: 0 0 #0000;\n--tw-ring-shadow: 0 0 #0000;\n--tw-shadow: 0 0 #0000;\n--tw-shadow-colored: 0 0 #0000;\n--tw-blur: ;\n--tw-brightness: ;\n--tw-contrast: ;\n--tw-grayscale: ;\n--tw-hue-rotate: ;\n--tw-invert: ;\n--tw-saturate: ;\n--tw-sepia: ;\n--tw-drop-shadow: ;\n--tw-backdrop-blur: ;\n--tw-backdrop-brightness: ;\n--tw-backdrop-contrast: ;\n--tw-backdrop-grayscale: ;\n--tw-backdrop-hue-rotate: ;\n--tw-backdrop-invert: ;\n--tw-backdrop-opacity: ;\n--tw-backdrop-saturate: ;\n--tw-backdrop-sepia: ;\n--tw-contain-size: ;\n--tw-contain-layout: ;\n--tw-contain-paint: ;\n--tw-contain-style: ;\n}\n::backdrop{\n--tw-border-spacing-x: 0;\n--tw-border-spacing-y: 0;\n--tw-translate-x: 0;\n--tw-translate-y: 0;\n--tw-rotate: 0;\n--tw-skew-x: 0;\n--tw-skew-y: 0;\n--tw-scale-x: 1;\n--tw-scale-y: 1;\n--tw-pan-x: ;\n--tw-pan-y: ;\n--tw-pinch-zoom: ;\n--tw-scroll-snap-strictness: proximity;\n--tw-gradient-from-position: ;\n--tw-gradient-via-position: ;\n--tw-gradient-to-position: ;\n--tw-ordinal: ;\n--tw-slashed-zero: ;\n--tw-numeric-figure: ;\n--tw-numeric-spacing: ;\n--tw-numeric-fraction: ;\n--tw-ring-inset: ;\n--tw-ring-offset-width: 0px;\n--tw-ring-offset-color: #fff;\n--tw-ring-color: rgb(59 130 246 / 0.5);\n--tw-ring-offset-shadow: 0 0 #0000;\n--tw-ring-shadow: 0 0 #0000;\n--tw-shadow: 0 0 #0000;\n--tw-shadow-colored: 0 0 #0000;\n--tw-blur: ;\n--tw-brightness: ;\n--tw-contrast: ;\n--tw-grayscale: ;\n--tw-hue-rotate: ;\n--tw-invert: ;\n--tw-saturate: ;\n--tw-sepia: ;\n--tw-drop-shadow: ;\n--tw-backdrop-blur: ;\n--tw-backdrop-brightness: ;\n--tw-backdrop-contrast: ;\n--tw-backdrop-grayscale: ;\n--tw-backdrop-hue-rotate: ;\n--tw-backdrop-invert: ;\n--tw-backdrop-opacity: ;\n--tw-backdrop-saturate: ;\n--tw-backdrop-sepia: ;\n--tw-contain-size: ;\n--tw-contain-layout: ;\n--tw-contain-paint: ;\n--tw-contain-style: ;\n}\n}\n\n@layer comp{\n.container{\nwidth: 100%;\n}\n@media (min-width: 320px){\n\n.container{\nmax-width: 320px;\n}\n}\n@media (min-width: 640px){\n\n.container{\nmax-width: 640px;\n}\n}\n@media (min-width: 768px){\n\n.container{\nmax-width: 768px;\n}\n}\n@media (min-width: 1024px){\n\n.container{\nmax-width: 1024px;\n}\n}\n@media (min-width: 1280px){\n\n.container{\nmax-width: 1280px;\n}\n}\n@media (min-width: 1536px){\n\n.container{\nmax-width: 1536px;\n}\n}\n}\n\n@layer util{\n.pointer-events-none{\npointer-events: none;\n}\n.pointer-events-auto{\npointer-events: auto;\n}\n.visible{\nvisibility: visible;\n}\n.invisible{\nvisibility: hidden;\n}\n.collapse{\nvisibility: collapse;\n}\n.static{\nposition: static;\n}\n.fixed{\nposition: fixed;\n}\n.absolute{\nposition: absolute;\n}\n.relative{\nposition: relative;\n}\n.sticky{\nposition: sticky;\n}\n.inset-0{\ninset: 0px;\n}\n.inset-4{\ninset: 1rem;\n}\n.inset-x-0{\nleft: 0px;\nright: 0px;\n}\n.inset-x-px{\nleft: 1px;\nright: 1px;\n}\n.inset-y-0{\ntop: 0px;\nbottom: 0px;\n}\n.-bottom-1{\nbottom: -0.25rem;\n}\n.-bottom-2{\nbottom: -0.5rem;\n}\n.-left-\\[100vw\\]{\nleft: -100vw;\n}\n.-top-5{\ntop: -1.25rem;\n}\n.-top-px{\ntop: -1px;\n}\n.bottom-0{\nbottom: 0px;\n}\n.bottom-2{\nbottom: 0.5rem;\n}\n.bottom-6{\nbottom: 1.5rem;\n}\n.bottom-px{\nbottom: 1px;\n}\n.end-0{\ninset-inline-end: 0px;\n}\n.end-1{\ninset-inline-end: 0.25rem;\n}\n.end-2{\ninset-inline-end: 0.5rem;\n}\n.end-6{\ninset-inline-end: 1.5rem;\n}\n.left-0{\nleft: 0px;\n}\n.left-1\\/2{\nleft: 50%;\n}\n.left-4{\nleft: 1rem;\n}\n.left-\\[2cm\\]{\nleft: 2cm;\n}\n.start-0{\ninset-inline-start: 0px;\n}\n.start-1{\ninset-inline-start: 0.25rem;\n}\n.top-0{\ntop: 0px;\n}\n.top-0\\.5{\ntop: 0.125rem;\n}\n.top-1\\/2{\ntop: 50%;\n}\n.top-2{\ntop: 0.5rem;\n}\n.top-\\[1cm\\]{\ntop: 1cm;\n}\n.\\!z-\\[99\\]{\nz-index: 99 !important;\n}\n.z-0{\nz-index: 0;\n}\n.z-10{\nz-index: 10;\n}\n.z-20{\nz-index: 20;\n}\n.z-50{\nz-index: 50;\n}\n.z-\\[5\\]{\nz-index: 5;\n}\n.z-\\[99\\]{\nz-index: 99;\n}\n.z-\\[var\\(--z-popover\\)\\]{\nz-index: var(--z-popover);\n}\n.order-2{\norder: 2;\n}\n.order-3{\norder: 3;\n}\n.order-9{\norder: 9;\n}\n.col-span-2{\ngrid-column: span 2 / span 2;\n}\n.m-0{\nmargin: 0px;\n}\n.m-1{\nmargin: 0.25rem;\n}\n.m-2{\nmargin: 0.5rem;\n}\n.m-20{\nmargin: 5rem;\n}\n.m-\\[0\\.25em\\]{\nmargin: 0.25em;\n}\n.m-\\[6px\\]{\nmargin: 6px;\n}\n.m-auto{\nmargin: auto;\n}\n.m-px{\nmargin: 1px;\n}\n.mx-1{\nmargin-left: 0.25rem;\nmargin-right: 0.25rem;\n}\n.mx-2{\nmargin-left: 0.5rem;\nmargin-right: 0.5rem;\n}\n.mx-4{\nmargin-left: 1rem;\nmargin-right: 1rem;\n}\n.mx-auto{\nmargin-left: auto;\nmargin-right: auto;\n}\n.mx-px{\nmargin-left: 1px;\nmargin-right: 1px;\n}\n.my-0{\nmargin-top: 0px;\nmargin-bottom: 0px;\n}\n.my-0\\.5{\nmargin-top: 0.125rem;\nmargin-bottom: 0.125rem;\n}\n.my-1{\nmargin-top: 0.25rem;\nmargin-bottom: 0.25rem;\n}\n.my-2{\nmargin-top: 0.5rem;\nmargin-bottom: 0.5rem;\n}\n.my-4{\nmargin-top: 1rem;\nmargin-bottom: 1rem;\n}\n.my-px{\nmargin-top: 1px;\nmargin-bottom: 1px;\n}\n.-ml-0{\nmargin-left: -0px;\n}\n.-ml-0\\.5{\nmargin-left: -0.125rem;\n}\n.-ml-1{\nmargin-left: -0.25rem;\n}\n.-ml-1\\.5{\nmargin-left: -0.375rem;\n}\n.-ms-3{\nmargin-inline-start: -0.75rem;\n}\n.-ms-px{\nmargin-inline-start: -1px;\n}\n.mb-1{\nmargin-bottom: 0.25rem;\n}\n.mb-2{\nmargin-bottom: 0.5rem;\n}\n.mb-4{\nmargin-bottom: 1rem;\n}\n.mb-6{\nmargin-bottom: 1.5rem;\n}\n.me-1{\nmargin-inline-end: 0.25rem;\n}\n.me-10{\nmargin-inline-end: 2.5rem;\n}\n.ms-1{\nmargin-inline-start: 0.25rem;\n}\n.ms-2{\nmargin-inline-start: 0.5rem;\n}\n.ms-3{\nmargin-inline-start: 0.75rem;\n}\n.mt-1{\nmargin-top: 0.25rem;\n}\n.mt-4{\nmargin-top: 1rem;\n}\n.mt-6{\nmargin-top: 1.5rem;\n}\n.mt-8{\nmargin-top: 2rem;\n}\n.box-content{\nbox-sizing: content-box;\n}\n.line-clamp-1{\noverflow: hidden;\ndisplay: -webkit-box;\n-webkit-box-orient: vertical;\n-webkit-line-clamp: 1;\n}\n.line-clamp-4{\noverflow: hidden;\ndisplay: -webkit-box;\n-webkit-box-orient: vertical;\n-webkit-line-clamp: 4;\n}\n.block{\ndisplay: block;\n}\n.inline-block{\ndisplay: inline-block;\n}\n.inline{\ndisplay: inline;\n}\n.\\!flex{\ndisplay: flex !important;\n}\n.flex{\ndisplay: flex;\n}\n.inline-flex{\ndisplay: inline-flex;\n}\n.table{\ndisplay: table;\n}\n.grid{\ndisplay: grid;\n}\n.inline-grid{\ndisplay: inline-grid;\n}\n.contents{\ndisplay: contents;\n}\n.hidden{\ndisplay: none;\n}\n.aspect-square{\naspect-ratio: 1 / 1;\n}\n.aspect-video{\naspect-ratio: 16 / 9;\n}\n.size-6{\nwidth: 1.5rem;\nheight: 1.5rem;\n}\n.size-8{\nwidth: 2rem;\nheight: 2rem;\n}\n.size-full{\nwidth: 100%;\nheight: 100%;\n}\n.h-0{\nheight: 0px;\n}\n.h-0\\.5{\nheight: 0.125rem;\n}\n.h-1{\nheight: 0.25rem;\n}\n.h-12{\nheight: 3rem;\n}\n.h-16{\nheight: 4rem;\n}\n.h-2{\nheight: 0.5rem;\n}\n.h-24{\nheight: 6rem;\n}\n.h-28{\nheight: 7rem;\n}\n.h-3{\nheight: 0.75rem;\n}\n.h-4{\nheight: 1rem;\n}\n.h-48{\nheight: 12rem;\n}\n.h-6{\nheight: 1.5rem;\n}\n.h-7{\nheight: 1.75rem;\n}\n.h-8{\nheight: 2rem;\n}\n.h-96{\nheight: 24rem;\n}\n.h-\\[1\\.5em\\]{\nheight: 1.5em;\n}\n.h-\\[192px\\]{\nheight: 192px;\n}\n.h-\\[200px\\]{\nheight: 200px;\n}\n.h-\\[24rem\\]{\nheight: 24rem;\n}\n.h-\\[3px\\]{\nheight: 3px;\n}\n.h-\\[4em\\]{\nheight: 4em;\n}\n.h-\\[6rem\\]{\nheight: 6rem;\n}\n.h-auto{\nheight: auto;\n}\n.h-full{\nheight: 100%;\n}\n.h-screen{\nheight: 100vh;\n}\n.max-h-48{\nmax-height: 12rem;\n}\n.max-h-96{\nmax-height: 24rem;\n}\n.max-h-\\[24rem\\]{\nmax-height: 24rem;\n}\n.max-h-\\[40vh\\]{\nmax-height: 40vh;\n}\n.max-h-\\[70vh\\]{\nmax-height: 70vh;\n}\n.max-h-full{\nmax-height: 100%;\n}\n.min-h-2{\nmin-height: 0.5rem;\n}\n.min-h-20{\nmin-height: 5rem;\n}\n.min-h-5{\nmin-height: 1.25rem;\n}\n.min-h-6{\nmin-height: 1.5rem;\n}\n.min-h-8{\nmin-height: 2rem;\n}\n.min-h-80{\nmin-height: 20rem;\n}\n.min-h-\\[1\\.5em\\]{\nmin-height: 1.5em;\n}\n.min-h-\\[600px\\]{\nmin-height: 600px;\n}\n.min-h-full{\nmin-height: 100%;\n}\n.min-h-screen{\nmin-height: 100vh;\n}\n.w-0{\nwidth: 0px;\n}\n.w-0\\.5{\nwidth: 0.125rem;\n}\n.w-1{\nwidth: 0.25rem;\n}\n.w-12{\nwidth: 3rem;\n}\n.w-2{\nwidth: 0.5rem;\n}\n.w-24{\nwidth: 6rem;\n}\n.w-3{\nwidth: 0.75rem;\n}\n.w-32{\nwidth: 8rem;\n}\n.w-4{\nwidth: 1rem;\n}\n.w-6{\nwidth: 1.5rem;\n}\n.w-8{\nwidth: 2rem;\n}\n.w-96{\nwidth: 24rem;\n}\n.w-\\[12rem\\]{\nwidth: 12rem;\n}\n.w-\\[20rem\\]{\nwidth: 20rem;\n}\n.w-\\[32rem\\]{\nwidth: 32rem;\n}\n.w-\\[36rem\\]{\nwidth: 36rem;\n}\n.w-\\[40rem\\]{\nwidth: 40rem;\n}\n.w-\\[420px\\]{\nwidth: 420px;\n}\n.w-\\[480px\\]{\nwidth: 480px;\n}\n.w-\\[4em\\]{\nwidth: 4em;\n}\n.w-\\[5px\\]{\nwidth: 5px;\n}\n.w-\\[60vw\\]{\nwidth: 60vw;\n}\n.w-\\[620px\\]{\nwidth: 620px;\n}\n.w-\\[80vw\\]{\nwidth: 80vw;\n}\n.w-full{\nwidth: 100%;\n}\n.w-screen{\nwidth: 100vw;\n}\n.min-w-10{\nmin-width: 2.5rem;\n}\n.min-w-16{\nmin-width: 4rem;\n}\n.min-w-2{\nmin-width: 0.5rem;\n}\n.min-w-24{\nmin-width: 6rem;\n}\n.min-w-72{\nmin-width: 18rem;\n}\n.min-w-\\[1\\.5em\\]{\nmin-width: 1.5em;\n}\n.min-w-\\[24rem\\]{\nmin-width: 24rem;\n}\n.min-w-\\[3\\.5em\\]{\nmin-width: 3.5em;\n}\n.min-w-\\[420px\\]{\nmin-width: 420px;\n}\n.min-w-full{\nmin-width: 100%;\n}\n.\\!max-w-64{\nmax-width: 16rem !important;\n}\n.max-w-2xl{\nmax-width: 42rem;\n}\n.max-w-36{\nmax-width: 9rem;\n}\n.max-w-60{\nmax-width: 15rem;\n}\n.max-w-72{\nmax-width: 18rem;\n}\n.max-w-96{\nmax-width: 24rem;\n}\n.max-w-\\[32rem\\]{\nmax-width: 32rem;\n}\n.max-w-\\[36rem\\]{\nmax-width: 36rem;\n}\n.max-w-\\[48rem\\]{\nmax-width: 48rem;\n}\n.max-w-\\[50vw\\]{\nmax-width: 50vw;\n}\n.max-w-\\[6rem\\]{\nmax-width: 6rem;\n}\n.max-w-full{\nmax-width: 100%;\n}\n.max-w-lg{\nmax-width: 32rem;\n}\n.max-w-md{\nmax-width: 28rem;\n}\n.max-w-screen{\nmax-width: 100vw;\n}\n.max-w-sm{\nmax-width: 24rem;\n}\n.max-w-xl{\nmax-width: 36rem;\n}\n.flex-1{\nflex: 1 1 0%;\n}\n.flex-auto{\nflex: 1 1 auto;\n}\n.flex-content{\nflex: 0 0 auto;\n}\n.flex-full{\nflex: 1 1 100%;\n}\n.flex-initial{\nflex: 0 1 auto;\n}\n.basis-16{\nflex-basis: 4rem;\n}\n.basis-20{\nflex-basis: 5rem;\n}\n.basis-28{\nflex-basis: 7rem;\n}\n.basis-\\[30\\%\\]{\nflex-basis: 30%;\n}\n.basis-\\[60\\%\\]{\nflex-basis: 60%;\n}\n.table-fixed{\ntable-layout: fixed;\n}\n.border-separate{\nborder-collapse: separate;\n}\n.border-spacing-1{\n--tw-border-spacing-x: 0.25rem;\n--tw-border-spacing-y: 0.25rem;\nborder-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);\n}\n.origin-center{\ntransform-origin: center;\n}\n.origin-left{\ntransform-origin: left;\n}\n.-translate-x-1\\/2{\n--tw-translate-x: -50%;\ntransform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));\n}\n.-translate-y-1\\/2{\n--tw-translate-y: -50%;\ntransform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));\n}\n.translate-x-0{\n--tw-translate-x: 0px;\ntransform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));\n}\n.translate-x-\\[100\\%\\]{\n--tw-translate-x: 100%;\ntransform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));\n}\n.translate-y-2{\n--tw-translate-y: 0.5rem;\ntransform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));\n}\n.-rotate-90{\n--tw-rotate: -90deg;\ntransform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));\n}\n.scale-90{\n--tw-scale-x: .9;\n--tw-scale-y: .9;\ntransform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));\n}\n.-scale-y-100{\n--tw-scale-y: -1;\ntransform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));\n}\n.transform{\ntransform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));\n}\n@keyframes bounce{\n\n0%, 100%{\ntransform: translateY(-25%);\nanimation-timing-function: cubic-bezier(0.8,0,1,1);\n}\n\n50%{\ntransform: none;\nanimation-timing-function: cubic-bezier(0,0,0.2,1);\n}\n}\n.animate-bounce{\nanimation: bounce 1s infinite;\n}\n@keyframes bgprogress{\n\n0%{\nbackground-position-x: 0;\n}\n\n100%{\nbackground-position-x: 1rem;\n}\n}\n.animate-progress{\nanimation: bgprogress 750ms linear infinite;\n}\n@keyframes cardpulse{\n\n50%{\nopacity: 0.5;\n}\n}\n.animate-pulse{\nanimation: cardpulse 2s cubic-bezier(.4,0,.6,1) infinite;\n}\n@keyframes spin{\n\nto{\ntransform: rotate(360deg);\n}\n}\n.animate-spin{\nanimation: spin 1s linear infinite;\n}\n.cursor-col-resize{\ncursor: col-resize;\n}\n.cursor-crosshair{\ncursor: crosshair;\n}\n.cursor-default{\ncursor: default;\n}\n.cursor-ew-resize{\ncursor: ew-resize;\n}\n.cursor-grab{\ncursor: grab;\n}\n.cursor-grabbing{\ncursor: grabbing;\n}\n.cursor-not-allowed{\ncursor: not-allowed;\n}\n.cursor-ns-resize{\ncursor: ns-resize;\n}\n.cursor-pointer{\ncursor: pointer;\n}\n.cursor-wait{\ncursor: wait;\n}\n.select-none{\n-webkit-user-select: none;\n -moz-user-select: none;\n user-select: none;\n}\n.resize-none{\nresize: none;\n}\n.resize{\nresize: both;\n}\n.snap-y{\nscroll-snap-type: y var(--tw-scroll-snap-strictness);\n}\n.snap-mandatory{\n--tw-scroll-snap-strictness: mandatory;\n}\n.snap-center{\nscroll-snap-align: center;\n}\n.appearance-none{\n-webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n}\n.grid-cols-2{\ngrid-template-columns: repeat(2, minmax(0, 1fr));\n}\n.grid-cols-3{\ngrid-template-columns: repeat(3, minmax(0, 1fr));\n}\n.grid-cols-4{\ngrid-template-columns: repeat(4, minmax(0, 1fr));\n}\n.grid-cols-8{\ngrid-template-columns: repeat(8, minmax(0, 1fr));\n}\n.grid-rows-1{\ngrid-template-rows: repeat(1, minmax(0, 1fr));\n}\n.flex-row{\nflex-direction: row;\n}\n.flex-row-reverse{\nflex-direction: row-reverse;\n}\n.flex-col{\nflex-direction: column;\n}\n.flex-col-reverse{\nflex-direction: column-reverse;\n}\n.flex-wrap{\nflex-wrap: wrap;\n}\n.flex-nowrap{\nflex-wrap: nowrap;\n}\n.place-content-center{\nplace-content: center;\n}\n.place-content-start{\nplace-content: start;\n}\n.place-items-center{\nplace-items: center;\n}\n.items-start{\nalign-items: flex-start;\n}\n.items-end{\nalign-items: flex-end;\n}\n.items-center{\nalign-items: center;\n}\n.items-stretch{\nalign-items: stretch;\n}\n.justify-start{\njustify-content: flex-start;\n}\n.justify-end{\njustify-content: flex-end;\n}\n.justify-center{\njustify-content: center;\n}\n.justify-between{\njustify-content: space-between;\n}\n.gap-\\[2px\\]{\ngap: 2px;\n}\n.divide-y > :not([hidden]) ~ :not([hidden]){\n--tw-divide-y-reverse: 0;\nborder-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));\nborder-bottom-width: calc(1px * var(--tw-divide-y-reverse));\n}\n.self-start{\nalign-self: flex-start;\n}\n.self-end{\nalign-self: flex-end;\n}\n.self-center{\nalign-self: center;\n}\n.self-stretch{\nalign-self: stretch;\n}\n.overflow-auto{\noverflow: auto;\n}\n.overflow-hidden{\noverflow: hidden;\n}\n.overflow-clip{\noverflow: clip;\n}\n.overflow-visible{\noverflow: visible;\n}\n.overflow-x-auto{\noverflow-x: auto;\n}\n.overflow-y-auto{\noverflow-y: auto;\n}\n.overflow-x-hidden{\noverflow-x: hidden;\n}\n.overflow-x-clip{\noverflow-x: clip;\n}\n.truncate{\noverflow: hidden;\ntext-overflow: ellipsis;\nwhite-space: nowrap;\n}\n.whitespace-nowrap{\nwhite-space: nowrap;\n}\n.whitespace-pre-wrap{\nwhite-space: pre-wrap;\n}\n.whitespace-break-spaces{\nwhite-space: break-spaces;\n}\n.text-wrap{\ntext-wrap: wrap;\n}\n.break-words{\noverflow-wrap: break-word;\n}\n.\\!rounded{\nborder-radius: var(--rounding) !important;\n}\n.\\!rounded-none{\nborder-radius: 0px !important;\n}\n.rounded{\nborder-radius: var(--rounding);\n}\n.rounded-capped{\nborder-radius: var(--rounding-cap);\n}\n.rounded-full{\nborder-radius: 9999px;\n}\n.rounded-none{\nborder-radius: 0px;\n}\n.rounded-sm{\nborder-radius: 0.125rem;\n}\n.rounded-b-none{\nborder-bottom-right-radius: 0px;\nborder-bottom-left-radius: 0px;\n}\n.rounded-e-none{\nborder-start-end-radius: 0px;\nborder-end-end-radius: 0px;\n}\n.rounded-s-none{\nborder-start-start-radius: 0px;\nborder-end-start-radius: 0px;\n}\n.rounded-t{\nborder-top-left-radius: var(--rounding);\nborder-top-right-radius: var(--rounding);\n}\n.rounded-t-full{\nborder-top-left-radius: 9999px;\nborder-top-right-radius: 9999px;\n}\n.rounded-t-none{\nborder-top-left-radius: 0px;\nborder-top-right-radius: 0px;\n}\n.border{\nborder-width: 1px;\n}\n.border-0{\nborder-width: 0px;\n}\n.border-2{\nborder-width: 2px;\n}\n.border-4{\nborder-width: 4px;\n}\n.border-b{\nborder-bottom-width: 1px;\n}\n.border-b-4{\nborder-bottom-width: 4px;\n}\n.border-e{\nborder-inline-end-width: 1px;\n}\n.border-e-2{\nborder-inline-end-width: 2px;\n}\n.border-e-4{\nborder-inline-end-width: 4px;\n}\n.border-s{\nborder-inline-start-width: 1px;\n}\n.border-s-4{\nborder-inline-start-width: 4px;\n}\n.border-t{\nborder-top-width: 1px;\n}\n.border-t-4{\nborder-top-width: 4px;\n}\n.border-dashed{\nborder-style: dashed;\n}\n.border-dotted{\nborder-style: dotted;\n}\n.border-none{\nborder-style: none;\n}\n.border-accent{\nborder-color: var(--accent);\n}\n.border-accent-100{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / var(--tw-border-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-accent-100\\/0{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-accent-100\\/10{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-accent-100\\/100{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-accent-100\\/15{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-accent-100\\/20{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-accent-100\\/25{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-accent-100\\/30{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-accent-100\\/35{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-accent-100\\/40{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-accent-100\\/45{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-accent-100\\/5{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-accent-100\\/50{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-accent-100\\/55{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-accent-100\\/60{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-accent-100\\/65{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-accent-100\\/70{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-accent-100\\/75{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-accent-100\\/80{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-accent-100\\/85{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-accent-100\\/90{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-accent-100\\/95{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-accent-200{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / var(--tw-border-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-accent-200\\/0{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-accent-200\\/10{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-accent-200\\/100{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-accent-200\\/15{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-accent-200\\/20{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-accent-200\\/25{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-accent-200\\/30{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-accent-200\\/35{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-accent-200\\/40{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-accent-200\\/45{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-accent-200\\/5{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-accent-200\\/50{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-accent-200\\/55{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-accent-200\\/60{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-accent-200\\/65{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-accent-200\\/70{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-accent-200\\/75{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-accent-200\\/80{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-accent-200\\/85{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-accent-200\\/90{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-accent-200\\/95{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-accent-300{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / var(--tw-border-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-accent-300\\/0{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-accent-300\\/10{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-accent-300\\/100{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-accent-300\\/15{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-accent-300\\/20{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-accent-300\\/25{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-accent-300\\/30{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-accent-300\\/35{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-accent-300\\/40{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-accent-300\\/45{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-accent-300\\/5{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-accent-300\\/50{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-accent-300\\/55{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-accent-300\\/60{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-accent-300\\/65{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-accent-300\\/70{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-accent-300\\/75{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-accent-300\\/80{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-accent-300\\/85{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-accent-300\\/90{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-accent-300\\/95{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-accent-400{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / var(--tw-border-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-accent-400\\/0{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-accent-400\\/10{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-accent-400\\/100{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-accent-400\\/15{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-accent-400\\/20{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-accent-400\\/25{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-accent-400\\/30{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-accent-400\\/35{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-accent-400\\/40{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-accent-400\\/45{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-accent-400\\/5{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-accent-400\\/50{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-accent-400\\/55{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-accent-400\\/60{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-accent-400\\/65{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-accent-400\\/70{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-accent-400\\/75{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-accent-400\\/80{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-accent-400\\/85{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-accent-400\\/90{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-accent-400\\/95{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-accent-50{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / var(--tw-border-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-accent-50\\/0{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-accent-50\\/10{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-accent-50\\/100{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-accent-50\\/15{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-accent-50\\/20{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-accent-50\\/25{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-accent-50\\/30{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-accent-50\\/35{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-accent-50\\/40{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-accent-50\\/45{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-accent-50\\/5{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-accent-50\\/50{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-accent-50\\/55{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-accent-50\\/60{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-accent-50\\/65{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-accent-50\\/70{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-accent-50\\/75{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-accent-50\\/80{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-accent-50\\/85{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-accent-50\\/90{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-accent-50\\/95{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-accent-500{\n--tw-border-opacity: 1;\nborder-color: color(from var(--accent) srgb r g b / var(--tw-border-opacity));\n}\n.border-accent-500\\/0{\nborder-color: color(from var(--accent) srgb r g b / 0);\n}\n.border-accent-500\\/10{\nborder-color: color(from var(--accent) srgb r g b / 0.1);\n}\n.border-accent-500\\/100{\nborder-color: color(from var(--accent) srgb r g b / 1);\n}\n.border-accent-500\\/15{\nborder-color: color(from var(--accent) srgb r g b / 0.15);\n}\n.border-accent-500\\/20{\nborder-color: color(from var(--accent) srgb r g b / 0.2);\n}\n.border-accent-500\\/25{\nborder-color: color(from var(--accent) srgb r g b / 0.25);\n}\n.border-accent-500\\/30{\nborder-color: color(from var(--accent) srgb r g b / 0.3);\n}\n.border-accent-500\\/35{\nborder-color: color(from var(--accent) srgb r g b / 0.35);\n}\n.border-accent-500\\/40{\nborder-color: color(from var(--accent) srgb r g b / 0.4);\n}\n.border-accent-500\\/45{\nborder-color: color(from var(--accent) srgb r g b / 0.45);\n}\n.border-accent-500\\/5{\nborder-color: color(from var(--accent) srgb r g b / 0.05);\n}\n.border-accent-500\\/50{\nborder-color: color(from var(--accent) srgb r g b / 0.5);\n}\n.border-accent-500\\/55{\nborder-color: color(from var(--accent) srgb r g b / 0.55);\n}\n.border-accent-500\\/60{\nborder-color: color(from var(--accent) srgb r g b / 0.6);\n}\n.border-accent-500\\/65{\nborder-color: color(from var(--accent) srgb r g b / 0.65);\n}\n.border-accent-500\\/70{\nborder-color: color(from var(--accent) srgb r g b / 0.7);\n}\n.border-accent-500\\/75{\nborder-color: color(from var(--accent) srgb r g b / 0.75);\n}\n.border-accent-500\\/80{\nborder-color: color(from var(--accent) srgb r g b / 0.8);\n}\n.border-accent-500\\/85{\nborder-color: color(from var(--accent) srgb r g b / 0.85);\n}\n.border-accent-500\\/90{\nborder-color: color(from var(--accent) srgb r g b / 0.9);\n}\n.border-accent-500\\/95{\nborder-color: color(from var(--accent) srgb r g b / 0.95);\n}\n.border-accent-600{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / var(--tw-border-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-accent-600\\/0{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-accent-600\\/10{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-accent-600\\/100{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-accent-600\\/15{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-accent-600\\/20{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-accent-600\\/25{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-accent-600\\/30{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-accent-600\\/35{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-accent-600\\/40{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-accent-600\\/45{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-accent-600\\/5{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-accent-600\\/50{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-accent-600\\/55{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-accent-600\\/60{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-accent-600\\/65{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-accent-600\\/70{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-accent-600\\/75{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-accent-600\\/80{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-accent-600\\/85{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-accent-600\\/90{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-accent-600\\/95{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-accent-700{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / var(--tw-border-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-accent-700\\/0{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-accent-700\\/10{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-accent-700\\/100{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-accent-700\\/15{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-accent-700\\/20{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-accent-700\\/25{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-accent-700\\/30{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-accent-700\\/35{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-accent-700\\/40{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-accent-700\\/45{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-accent-700\\/5{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-accent-700\\/50{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-accent-700\\/55{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-accent-700\\/60{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-accent-700\\/65{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-accent-700\\/70{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-accent-700\\/75{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-accent-700\\/80{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-accent-700\\/85{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-accent-700\\/90{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-accent-700\\/95{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-accent-800{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / var(--tw-border-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-accent-800\\/0{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-accent-800\\/10{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-accent-800\\/100{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-accent-800\\/15{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-accent-800\\/20{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-accent-800\\/25{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-accent-800\\/30{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-accent-800\\/35{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-accent-800\\/40{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-accent-800\\/45{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-accent-800\\/5{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-accent-800\\/50{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-accent-800\\/55{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-accent-800\\/60{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-accent-800\\/65{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-accent-800\\/70{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-accent-800\\/75{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-accent-800\\/80{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-accent-800\\/85{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-accent-800\\/90{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-accent-800\\/95{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-accent-900{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / var(--tw-border-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-accent-900\\/0{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-accent-900\\/10{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-accent-900\\/100{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-accent-900\\/15{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-accent-900\\/20{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-accent-900\\/25{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-accent-900\\/30{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-accent-900\\/35{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-accent-900\\/40{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-accent-900\\/45{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-accent-900\\/5{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-accent-900\\/50{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-accent-900\\/55{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-accent-900\\/60{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-accent-900\\/65{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-accent-900\\/70{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-accent-900\\/75{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-accent-900\\/80{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-accent-900\\/85{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-accent-900\\/90{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-accent-900\\/95{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-accent-950{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / var(--tw-border-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-accent-950\\/0{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-accent-950\\/10{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-accent-950\\/100{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-accent-950\\/15{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-accent-950\\/20{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-accent-950\\/25{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-accent-950\\/30{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-accent-950\\/35{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-accent-950\\/40{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-accent-950\\/45{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-accent-950\\/5{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-accent-950\\/50{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-accent-950\\/55{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-accent-950\\/60{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-accent-950\\/65{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-accent-950\\/70{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-accent-950\\/75{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-accent-950\\/80{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-accent-950\\/85{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-accent-950\\/90{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-accent-950\\/95{\nborder-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-avacado{\n--tw-border-opacity: 1;\nborder-color: rgb(70 167 88 / var(--tw-border-opacity));\n}\n.border-avacado-100{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / var(--tw-border-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-avacado-100\\/0{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-avacado-100\\/10{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-avacado-100\\/100{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-avacado-100\\/15{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-avacado-100\\/20{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-avacado-100\\/25{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-avacado-100\\/30{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-avacado-100\\/35{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-avacado-100\\/40{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-avacado-100\\/45{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-avacado-100\\/5{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-avacado-100\\/50{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-avacado-100\\/55{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-avacado-100\\/60{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-avacado-100\\/65{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-avacado-100\\/70{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-avacado-100\\/75{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-avacado-100\\/80{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-avacado-100\\/85{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-avacado-100\\/90{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-avacado-100\\/95{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-avacado-200{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / var(--tw-border-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-avacado-200\\/0{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-avacado-200\\/10{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-avacado-200\\/100{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-avacado-200\\/15{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-avacado-200\\/20{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-avacado-200\\/25{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-avacado-200\\/30{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-avacado-200\\/35{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-avacado-200\\/40{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-avacado-200\\/45{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-avacado-200\\/5{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-avacado-200\\/50{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-avacado-200\\/55{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-avacado-200\\/60{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-avacado-200\\/65{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-avacado-200\\/70{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-avacado-200\\/75{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-avacado-200\\/80{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-avacado-200\\/85{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-avacado-200\\/90{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-avacado-200\\/95{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-avacado-300{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / var(--tw-border-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-avacado-300\\/0{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-avacado-300\\/10{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-avacado-300\\/100{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-avacado-300\\/15{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-avacado-300\\/20{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-avacado-300\\/25{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-avacado-300\\/30{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-avacado-300\\/35{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-avacado-300\\/40{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-avacado-300\\/45{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-avacado-300\\/5{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-avacado-300\\/50{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-avacado-300\\/55{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-avacado-300\\/60{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-avacado-300\\/65{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-avacado-300\\/70{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-avacado-300\\/75{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-avacado-300\\/80{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-avacado-300\\/85{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-avacado-300\\/90{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-avacado-300\\/95{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-avacado-400{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / var(--tw-border-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-avacado-400\\/0{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-avacado-400\\/10{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-avacado-400\\/100{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-avacado-400\\/15{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-avacado-400\\/20{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-avacado-400\\/25{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-avacado-400\\/30{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-avacado-400\\/35{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-avacado-400\\/40{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-avacado-400\\/45{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-avacado-400\\/5{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-avacado-400\\/50{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-avacado-400\\/55{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-avacado-400\\/60{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-avacado-400\\/65{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-avacado-400\\/70{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-avacado-400\\/75{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-avacado-400\\/80{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-avacado-400\\/85{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-avacado-400\\/90{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-avacado-400\\/95{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-avacado-50{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / var(--tw-border-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-avacado-50\\/0{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-avacado-50\\/10{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-avacado-50\\/100{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-avacado-50\\/15{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-avacado-50\\/20{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-avacado-50\\/25{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-avacado-50\\/30{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-avacado-50\\/35{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-avacado-50\\/40{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-avacado-50\\/45{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-avacado-50\\/5{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-avacado-50\\/50{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-avacado-50\\/55{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-avacado-50\\/60{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-avacado-50\\/65{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-avacado-50\\/70{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-avacado-50\\/75{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-avacado-50\\/80{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-avacado-50\\/85{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-avacado-50\\/90{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-avacado-50\\/95{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-avacado-500{\n--tw-border-opacity: 1;\nborder-color: color(from #46a758 srgb r g b / var(--tw-border-opacity));\n}\n.border-avacado-500\\/0{\nborder-color: color(from #46a758 srgb r g b / 0);\n}\n.border-avacado-500\\/10{\nborder-color: color(from #46a758 srgb r g b / 0.1);\n}\n.border-avacado-500\\/100{\nborder-color: color(from #46a758 srgb r g b / 1);\n}\n.border-avacado-500\\/15{\nborder-color: color(from #46a758 srgb r g b / 0.15);\n}\n.border-avacado-500\\/20{\nborder-color: color(from #46a758 srgb r g b / 0.2);\n}\n.border-avacado-500\\/25{\nborder-color: color(from #46a758 srgb r g b / 0.25);\n}\n.border-avacado-500\\/30{\nborder-color: color(from #46a758 srgb r g b / 0.3);\n}\n.border-avacado-500\\/35{\nborder-color: color(from #46a758 srgb r g b / 0.35);\n}\n.border-avacado-500\\/40{\nborder-color: color(from #46a758 srgb r g b / 0.4);\n}\n.border-avacado-500\\/45{\nborder-color: color(from #46a758 srgb r g b / 0.45);\n}\n.border-avacado-500\\/5{\nborder-color: color(from #46a758 srgb r g b / 0.05);\n}\n.border-avacado-500\\/50{\nborder-color: color(from #46a758 srgb r g b / 0.5);\n}\n.border-avacado-500\\/55{\nborder-color: color(from #46a758 srgb r g b / 0.55);\n}\n.border-avacado-500\\/60{\nborder-color: color(from #46a758 srgb r g b / 0.6);\n}\n.border-avacado-500\\/65{\nborder-color: color(from #46a758 srgb r g b / 0.65);\n}\n.border-avacado-500\\/70{\nborder-color: color(from #46a758 srgb r g b / 0.7);\n}\n.border-avacado-500\\/75{\nborder-color: color(from #46a758 srgb r g b / 0.75);\n}\n.border-avacado-500\\/80{\nborder-color: color(from #46a758 srgb r g b / 0.8);\n}\n.border-avacado-500\\/85{\nborder-color: color(from #46a758 srgb r g b / 0.85);\n}\n.border-avacado-500\\/90{\nborder-color: color(from #46a758 srgb r g b / 0.9);\n}\n.border-avacado-500\\/95{\nborder-color: color(from #46a758 srgb r g b / 0.95);\n}\n.border-avacado-600{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / var(--tw-border-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-avacado-600\\/0{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-avacado-600\\/10{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-avacado-600\\/100{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-avacado-600\\/15{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-avacado-600\\/20{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-avacado-600\\/25{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-avacado-600\\/30{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-avacado-600\\/35{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-avacado-600\\/40{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-avacado-600\\/45{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-avacado-600\\/5{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-avacado-600\\/50{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-avacado-600\\/55{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-avacado-600\\/60{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-avacado-600\\/65{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-avacado-600\\/70{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-avacado-600\\/75{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-avacado-600\\/80{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-avacado-600\\/85{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-avacado-600\\/90{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-avacado-600\\/95{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-avacado-700{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / var(--tw-border-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-avacado-700\\/0{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-avacado-700\\/10{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-avacado-700\\/100{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-avacado-700\\/15{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-avacado-700\\/20{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-avacado-700\\/25{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-avacado-700\\/30{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-avacado-700\\/35{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-avacado-700\\/40{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-avacado-700\\/45{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-avacado-700\\/5{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-avacado-700\\/50{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-avacado-700\\/55{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-avacado-700\\/60{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-avacado-700\\/65{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-avacado-700\\/70{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-avacado-700\\/75{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-avacado-700\\/80{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-avacado-700\\/85{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-avacado-700\\/90{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-avacado-700\\/95{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-avacado-800{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / var(--tw-border-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-avacado-800\\/0{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-avacado-800\\/10{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-avacado-800\\/100{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-avacado-800\\/15{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-avacado-800\\/20{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-avacado-800\\/25{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-avacado-800\\/30{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-avacado-800\\/35{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-avacado-800\\/40{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-avacado-800\\/45{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-avacado-800\\/5{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-avacado-800\\/50{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-avacado-800\\/55{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-avacado-800\\/60{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-avacado-800\\/65{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-avacado-800\\/70{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-avacado-800\\/75{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-avacado-800\\/80{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-avacado-800\\/85{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-avacado-800\\/90{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-avacado-800\\/95{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-avacado-900{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / var(--tw-border-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-avacado-900\\/0{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-avacado-900\\/10{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-avacado-900\\/100{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-avacado-900\\/15{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-avacado-900\\/20{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-avacado-900\\/25{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-avacado-900\\/30{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-avacado-900\\/35{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-avacado-900\\/40{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-avacado-900\\/45{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-avacado-900\\/5{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-avacado-900\\/50{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-avacado-900\\/55{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-avacado-900\\/60{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-avacado-900\\/65{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-avacado-900\\/70{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-avacado-900\\/75{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-avacado-900\\/80{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-avacado-900\\/85{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-avacado-900\\/90{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-avacado-900\\/95{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-avacado-950{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / var(--tw-border-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-avacado-950\\/0{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-avacado-950\\/10{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-avacado-950\\/100{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-avacado-950\\/15{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-avacado-950\\/20{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-avacado-950\\/25{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-avacado-950\\/30{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-avacado-950\\/35{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-avacado-950\\/40{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-avacado-950\\/45{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-avacado-950\\/5{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-avacado-950\\/50{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-avacado-950\\/55{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-avacado-950\\/60{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-avacado-950\\/65{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-avacado-950\\/70{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-avacado-950\\/75{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-avacado-950\\/80{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-avacado-950\\/85{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-avacado-950\\/90{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-avacado-950\\/95{\nborder-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-avacado\\/0{\nborder-color: rgb(70 167 88 / 0);\n}\n.border-avacado\\/10{\nborder-color: rgb(70 167 88 / 0.1);\n}\n.border-avacado\\/100{\nborder-color: rgb(70 167 88 / 1);\n}\n.border-avacado\\/15{\nborder-color: rgb(70 167 88 / 0.15);\n}\n.border-avacado\\/20{\nborder-color: rgb(70 167 88 / 0.2);\n}\n.border-avacado\\/25{\nborder-color: rgb(70 167 88 / 0.25);\n}\n.border-avacado\\/30{\nborder-color: rgb(70 167 88 / 0.3);\n}\n.border-avacado\\/35{\nborder-color: rgb(70 167 88 / 0.35);\n}\n.border-avacado\\/40{\nborder-color: rgb(70 167 88 / 0.4);\n}\n.border-avacado\\/45{\nborder-color: rgb(70 167 88 / 0.45);\n}\n.border-avacado\\/5{\nborder-color: rgb(70 167 88 / 0.05);\n}\n.border-avacado\\/50{\nborder-color: rgb(70 167 88 / 0.5);\n}\n.border-avacado\\/55{\nborder-color: rgb(70 167 88 / 0.55);\n}\n.border-avacado\\/60{\nborder-color: rgb(70 167 88 / 0.6);\n}\n.border-avacado\\/65{\nborder-color: rgb(70 167 88 / 0.65);\n}\n.border-avacado\\/70{\nborder-color: rgb(70 167 88 / 0.7);\n}\n.border-avacado\\/75{\nborder-color: rgb(70 167 88 / 0.75);\n}\n.border-avacado\\/80{\nborder-color: rgb(70 167 88 / 0.8);\n}\n.border-avacado\\/85{\nborder-color: rgb(70 167 88 / 0.85);\n}\n.border-avacado\\/90{\nborder-color: rgb(70 167 88 / 0.9);\n}\n.border-avacado\\/95{\nborder-color: rgb(70 167 88 / 0.95);\n}\n.border-base{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)) 65%, color(from var(--tint) srgb r g b / var(--tw-border-opacity)));\n}\n.border-base\\/0{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0) 65%, color(from var(--tint) srgb r g b / 0));\n}\n.border-base\\/10{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.1) 65%, color(from var(--tint) srgb r g b / 0.1));\n}\n.border-base\\/100{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 65%, color(from var(--tint) srgb r g b / 1));\n}\n.border-base\\/15{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.15) 65%, color(from var(--tint) srgb r g b / 0.15));\n}\n.border-base\\/20{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.2) 65%, color(from var(--tint) srgb r g b / 0.2));\n}\n.border-base\\/25{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.25) 65%, color(from var(--tint) srgb r g b / 0.25));\n}\n.border-base\\/30{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.3) 65%, color(from var(--tint) srgb r g b / 0.3));\n}\n.border-base\\/35{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.35) 65%, color(from var(--tint) srgb r g b / 0.35));\n}\n.border-base\\/40{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.4) 65%, color(from var(--tint) srgb r g b / 0.4));\n}\n.border-base\\/45{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.45) 65%, color(from var(--tint) srgb r g b / 0.45));\n}\n.border-base\\/5{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.05) 65%, color(from var(--tint) srgb r g b / 0.05));\n}\n.border-base\\/50{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.5) 65%, color(from var(--tint) srgb r g b / 0.5));\n}\n.border-base\\/55{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.55) 65%, color(from var(--tint) srgb r g b / 0.55));\n}\n.border-base\\/60{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.6) 65%, color(from var(--tint) srgb r g b / 0.6));\n}\n.border-base\\/65{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.65) 65%, color(from var(--tint) srgb r g b / 0.65));\n}\n.border-base\\/70{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.7) 65%, color(from var(--tint) srgb r g b / 0.7));\n}\n.border-base\\/75{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.75) 65%, color(from var(--tint) srgb r g b / 0.75));\n}\n.border-base\\/80{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.8) 65%, color(from var(--tint) srgb r g b / 0.8));\n}\n.border-base\\/85{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.85) 65%, color(from var(--tint) srgb r g b / 0.85));\n}\n.border-base\\/90{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.9) 65%, color(from var(--tint) srgb r g b / 0.9));\n}\n.border-base\\/95{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.95) 65%, color(from var(--tint) srgb r g b / 0.95));\n}\n.border-black{\n--tw-border-opacity: 1;\nborder-color: rgb(25 26 27 / var(--tw-border-opacity));\n}\n.border-black\\/0{\nborder-color: rgb(25 26 27 / 0);\n}\n.border-black\\/10{\nborder-color: rgb(25 26 27 / 0.1);\n}\n.border-black\\/100{\nborder-color: rgb(25 26 27 / 1);\n}\n.border-black\\/15{\nborder-color: rgb(25 26 27 / 0.15);\n}\n.border-black\\/20{\nborder-color: rgb(25 26 27 / 0.2);\n}\n.border-black\\/25{\nborder-color: rgb(25 26 27 / 0.25);\n}\n.border-black\\/30{\nborder-color: rgb(25 26 27 / 0.3);\n}\n.border-black\\/35{\nborder-color: rgb(25 26 27 / 0.35);\n}\n.border-black\\/40{\nborder-color: rgb(25 26 27 / 0.4);\n}\n.border-black\\/45{\nborder-color: rgb(25 26 27 / 0.45);\n}\n.border-black\\/5{\nborder-color: rgb(25 26 27 / 0.05);\n}\n.border-black\\/50{\nborder-color: rgb(25 26 27 / 0.5);\n}\n.border-black\\/55{\nborder-color: rgb(25 26 27 / 0.55);\n}\n.border-black\\/60{\nborder-color: rgb(25 26 27 / 0.6);\n}\n.border-black\\/65{\nborder-color: rgb(25 26 27 / 0.65);\n}\n.border-black\\/70{\nborder-color: rgb(25 26 27 / 0.7);\n}\n.border-black\\/75{\nborder-color: rgb(25 26 27 / 0.75);\n}\n.border-black\\/80{\nborder-color: rgb(25 26 27 / 0.8);\n}\n.border-black\\/85{\nborder-color: rgb(25 26 27 / 0.85);\n}\n.border-black\\/90{\nborder-color: rgb(25 26 27 / 0.9);\n}\n.border-black\\/95{\nborder-color: rgb(25 26 27 / 0.95);\n}\n.border-coral{\n--tw-border-opacity: 1;\nborder-color: rgb(233 61 130 / var(--tw-border-opacity));\n}\n.border-coral-100{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / var(--tw-border-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-coral-100\\/0{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-coral-100\\/10{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-coral-100\\/100{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-coral-100\\/15{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-coral-100\\/20{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-coral-100\\/25{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-coral-100\\/30{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-coral-100\\/35{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-coral-100\\/40{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-coral-100\\/45{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-coral-100\\/5{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-coral-100\\/50{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-coral-100\\/55{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-coral-100\\/60{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-coral-100\\/65{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-coral-100\\/70{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-coral-100\\/75{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-coral-100\\/80{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-coral-100\\/85{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-coral-100\\/90{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-coral-100\\/95{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-coral-200{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / var(--tw-border-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-coral-200\\/0{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-coral-200\\/10{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-coral-200\\/100{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-coral-200\\/15{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-coral-200\\/20{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-coral-200\\/25{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-coral-200\\/30{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-coral-200\\/35{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-coral-200\\/40{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-coral-200\\/45{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-coral-200\\/5{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-coral-200\\/50{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-coral-200\\/55{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-coral-200\\/60{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-coral-200\\/65{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-coral-200\\/70{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-coral-200\\/75{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-coral-200\\/80{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-coral-200\\/85{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-coral-200\\/90{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-coral-200\\/95{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-coral-300{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / var(--tw-border-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-coral-300\\/0{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-coral-300\\/10{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-coral-300\\/100{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-coral-300\\/15{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-coral-300\\/20{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-coral-300\\/25{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-coral-300\\/30{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-coral-300\\/35{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-coral-300\\/40{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-coral-300\\/45{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-coral-300\\/5{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-coral-300\\/50{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-coral-300\\/55{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-coral-300\\/60{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-coral-300\\/65{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-coral-300\\/70{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-coral-300\\/75{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-coral-300\\/80{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-coral-300\\/85{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-coral-300\\/90{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-coral-300\\/95{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-coral-400{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / var(--tw-border-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-coral-400\\/0{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-coral-400\\/10{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-coral-400\\/100{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-coral-400\\/15{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-coral-400\\/20{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-coral-400\\/25{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-coral-400\\/30{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-coral-400\\/35{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-coral-400\\/40{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-coral-400\\/45{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-coral-400\\/5{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-coral-400\\/50{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-coral-400\\/55{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-coral-400\\/60{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-coral-400\\/65{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-coral-400\\/70{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-coral-400\\/75{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-coral-400\\/80{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-coral-400\\/85{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-coral-400\\/90{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-coral-400\\/95{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-coral-50{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / var(--tw-border-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-coral-50\\/0{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-coral-50\\/10{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-coral-50\\/100{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-coral-50\\/15{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-coral-50\\/20{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-coral-50\\/25{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-coral-50\\/30{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-coral-50\\/35{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-coral-50\\/40{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-coral-50\\/45{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-coral-50\\/5{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-coral-50\\/50{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-coral-50\\/55{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-coral-50\\/60{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-coral-50\\/65{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-coral-50\\/70{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-coral-50\\/75{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-coral-50\\/80{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-coral-50\\/85{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-coral-50\\/90{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-coral-50\\/95{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-coral-500{\n--tw-border-opacity: 1;\nborder-color: color(from #e93d82 srgb r g b / var(--tw-border-opacity));\n}\n.border-coral-500\\/0{\nborder-color: color(from #e93d82 srgb r g b / 0);\n}\n.border-coral-500\\/10{\nborder-color: color(from #e93d82 srgb r g b / 0.1);\n}\n.border-coral-500\\/100{\nborder-color: color(from #e93d82 srgb r g b / 1);\n}\n.border-coral-500\\/15{\nborder-color: color(from #e93d82 srgb r g b / 0.15);\n}\n.border-coral-500\\/20{\nborder-color: color(from #e93d82 srgb r g b / 0.2);\n}\n.border-coral-500\\/25{\nborder-color: color(from #e93d82 srgb r g b / 0.25);\n}\n.border-coral-500\\/30{\nborder-color: color(from #e93d82 srgb r g b / 0.3);\n}\n.border-coral-500\\/35{\nborder-color: color(from #e93d82 srgb r g b / 0.35);\n}\n.border-coral-500\\/40{\nborder-color: color(from #e93d82 srgb r g b / 0.4);\n}\n.border-coral-500\\/45{\nborder-color: color(from #e93d82 srgb r g b / 0.45);\n}\n.border-coral-500\\/5{\nborder-color: color(from #e93d82 srgb r g b / 0.05);\n}\n.border-coral-500\\/50{\nborder-color: color(from #e93d82 srgb r g b / 0.5);\n}\n.border-coral-500\\/55{\nborder-color: color(from #e93d82 srgb r g b / 0.55);\n}\n.border-coral-500\\/60{\nborder-color: color(from #e93d82 srgb r g b / 0.6);\n}\n.border-coral-500\\/65{\nborder-color: color(from #e93d82 srgb r g b / 0.65);\n}\n.border-coral-500\\/70{\nborder-color: color(from #e93d82 srgb r g b / 0.7);\n}\n.border-coral-500\\/75{\nborder-color: color(from #e93d82 srgb r g b / 0.75);\n}\n.border-coral-500\\/80{\nborder-color: color(from #e93d82 srgb r g b / 0.8);\n}\n.border-coral-500\\/85{\nborder-color: color(from #e93d82 srgb r g b / 0.85);\n}\n.border-coral-500\\/90{\nborder-color: color(from #e93d82 srgb r g b / 0.9);\n}\n.border-coral-500\\/95{\nborder-color: color(from #e93d82 srgb r g b / 0.95);\n}\n.border-coral-600{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / var(--tw-border-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-coral-600\\/0{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-coral-600\\/10{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-coral-600\\/100{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-coral-600\\/15{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-coral-600\\/20{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-coral-600\\/25{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-coral-600\\/30{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-coral-600\\/35{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-coral-600\\/40{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-coral-600\\/45{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-coral-600\\/5{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-coral-600\\/50{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-coral-600\\/55{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-coral-600\\/60{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-coral-600\\/65{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-coral-600\\/70{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-coral-600\\/75{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-coral-600\\/80{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-coral-600\\/85{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-coral-600\\/90{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-coral-600\\/95{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-coral-700{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / var(--tw-border-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-coral-700\\/0{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-coral-700\\/10{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-coral-700\\/100{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-coral-700\\/15{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-coral-700\\/20{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-coral-700\\/25{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-coral-700\\/30{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-coral-700\\/35{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-coral-700\\/40{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-coral-700\\/45{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-coral-700\\/5{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-coral-700\\/50{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-coral-700\\/55{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-coral-700\\/60{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-coral-700\\/65{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-coral-700\\/70{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-coral-700\\/75{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-coral-700\\/80{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-coral-700\\/85{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-coral-700\\/90{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-coral-700\\/95{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-coral-800{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / var(--tw-border-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-coral-800\\/0{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-coral-800\\/10{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-coral-800\\/100{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-coral-800\\/15{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-coral-800\\/20{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-coral-800\\/25{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-coral-800\\/30{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-coral-800\\/35{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-coral-800\\/40{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-coral-800\\/45{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-coral-800\\/5{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-coral-800\\/50{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-coral-800\\/55{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-coral-800\\/60{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-coral-800\\/65{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-coral-800\\/70{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-coral-800\\/75{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-coral-800\\/80{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-coral-800\\/85{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-coral-800\\/90{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-coral-800\\/95{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-coral-900{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / var(--tw-border-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-coral-900\\/0{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-coral-900\\/10{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-coral-900\\/100{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-coral-900\\/15{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-coral-900\\/20{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-coral-900\\/25{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-coral-900\\/30{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-coral-900\\/35{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-coral-900\\/40{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-coral-900\\/45{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-coral-900\\/5{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-coral-900\\/50{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-coral-900\\/55{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-coral-900\\/60{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-coral-900\\/65{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-coral-900\\/70{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-coral-900\\/75{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-coral-900\\/80{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-coral-900\\/85{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-coral-900\\/90{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-coral-900\\/95{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-coral-950{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / var(--tw-border-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-coral-950\\/0{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-coral-950\\/10{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-coral-950\\/100{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-coral-950\\/15{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-coral-950\\/20{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-coral-950\\/25{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-coral-950\\/30{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-coral-950\\/35{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-coral-950\\/40{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-coral-950\\/45{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-coral-950\\/5{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-coral-950\\/50{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-coral-950\\/55{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-coral-950\\/60{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-coral-950\\/65{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-coral-950\\/70{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-coral-950\\/75{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-coral-950\\/80{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-coral-950\\/85{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-coral-950\\/90{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-coral-950\\/95{\nborder-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-coral\\/0{\nborder-color: rgb(233 61 130 / 0);\n}\n.border-coral\\/10{\nborder-color: rgb(233 61 130 / 0.1);\n}\n.border-coral\\/100{\nborder-color: rgb(233 61 130 / 1);\n}\n.border-coral\\/15{\nborder-color: rgb(233 61 130 / 0.15);\n}\n.border-coral\\/20{\nborder-color: rgb(233 61 130 / 0.2);\n}\n.border-coral\\/25{\nborder-color: rgb(233 61 130 / 0.25);\n}\n.border-coral\\/30{\nborder-color: rgb(233 61 130 / 0.3);\n}\n.border-coral\\/35{\nborder-color: rgb(233 61 130 / 0.35);\n}\n.border-coral\\/40{\nborder-color: rgb(233 61 130 / 0.4);\n}\n.border-coral\\/45{\nborder-color: rgb(233 61 130 / 0.45);\n}\n.border-coral\\/5{\nborder-color: rgb(233 61 130 / 0.05);\n}\n.border-coral\\/50{\nborder-color: rgb(233 61 130 / 0.5);\n}\n.border-coral\\/55{\nborder-color: rgb(233 61 130 / 0.55);\n}\n.border-coral\\/60{\nborder-color: rgb(233 61 130 / 0.6);\n}\n.border-coral\\/65{\nborder-color: rgb(233 61 130 / 0.65);\n}\n.border-coral\\/70{\nborder-color: rgb(233 61 130 / 0.7);\n}\n.border-coral\\/75{\nborder-color: rgb(233 61 130 / 0.75);\n}\n.border-coral\\/80{\nborder-color: rgb(233 61 130 / 0.8);\n}\n.border-coral\\/85{\nborder-color: rgb(233 61 130 / 0.85);\n}\n.border-coral\\/90{\nborder-color: rgb(233 61 130 / 0.9);\n}\n.border-coral\\/95{\nborder-color: rgb(233 61 130 / 0.95);\n}\n.border-danger{\n--tw-border-opacity: 1;\nborder-color: rgb(242 76 61 / var(--tw-border-opacity));\n}\n.border-danger-100{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / var(--tw-border-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-danger-100\\/0{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-danger-100\\/10{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-danger-100\\/100{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-danger-100\\/15{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-danger-100\\/20{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-danger-100\\/25{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-danger-100\\/30{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-danger-100\\/35{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-danger-100\\/40{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-danger-100\\/45{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-danger-100\\/5{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-danger-100\\/50{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-danger-100\\/55{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-danger-100\\/60{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-danger-100\\/65{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-danger-100\\/70{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-danger-100\\/75{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-danger-100\\/80{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-danger-100\\/85{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-danger-100\\/90{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-danger-100\\/95{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-danger-200{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / var(--tw-border-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-danger-200\\/0{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-danger-200\\/10{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-danger-200\\/100{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-danger-200\\/15{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-danger-200\\/20{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-danger-200\\/25{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-danger-200\\/30{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-danger-200\\/35{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-danger-200\\/40{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-danger-200\\/45{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-danger-200\\/5{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-danger-200\\/50{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-danger-200\\/55{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-danger-200\\/60{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-danger-200\\/65{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-danger-200\\/70{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-danger-200\\/75{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-danger-200\\/80{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-danger-200\\/85{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-danger-200\\/90{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-danger-200\\/95{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-danger-300{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / var(--tw-border-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-danger-300\\/0{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-danger-300\\/10{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-danger-300\\/100{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-danger-300\\/15{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-danger-300\\/20{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-danger-300\\/25{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-danger-300\\/30{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-danger-300\\/35{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-danger-300\\/40{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-danger-300\\/45{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-danger-300\\/5{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-danger-300\\/50{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-danger-300\\/55{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-danger-300\\/60{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-danger-300\\/65{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-danger-300\\/70{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-danger-300\\/75{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-danger-300\\/80{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-danger-300\\/85{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-danger-300\\/90{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-danger-300\\/95{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-danger-400{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / var(--tw-border-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-danger-400\\/0{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-danger-400\\/10{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-danger-400\\/100{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-danger-400\\/15{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-danger-400\\/20{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-danger-400\\/25{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-danger-400\\/30{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-danger-400\\/35{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-danger-400\\/40{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-danger-400\\/45{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-danger-400\\/5{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-danger-400\\/50{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-danger-400\\/55{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-danger-400\\/60{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-danger-400\\/65{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-danger-400\\/70{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-danger-400\\/75{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-danger-400\\/80{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-danger-400\\/85{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-danger-400\\/90{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-danger-400\\/95{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-danger-50{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / var(--tw-border-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-danger-50\\/0{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-danger-50\\/10{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-danger-50\\/100{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-danger-50\\/15{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-danger-50\\/20{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-danger-50\\/25{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-danger-50\\/30{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-danger-50\\/35{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-danger-50\\/40{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-danger-50\\/45{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-danger-50\\/5{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-danger-50\\/50{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-danger-50\\/55{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-danger-50\\/60{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-danger-50\\/65{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-danger-50\\/70{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-danger-50\\/75{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-danger-50\\/80{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-danger-50\\/85{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-danger-50\\/90{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-danger-50\\/95{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-danger-500{\n--tw-border-opacity: 1;\nborder-color: color(from #f24c3d srgb r g b / var(--tw-border-opacity));\n}\n.border-danger-500\\/0{\nborder-color: color(from #f24c3d srgb r g b / 0);\n}\n.border-danger-500\\/10{\nborder-color: color(from #f24c3d srgb r g b / 0.1);\n}\n.border-danger-500\\/100{\nborder-color: color(from #f24c3d srgb r g b / 1);\n}\n.border-danger-500\\/15{\nborder-color: color(from #f24c3d srgb r g b / 0.15);\n}\n.border-danger-500\\/20{\nborder-color: color(from #f24c3d srgb r g b / 0.2);\n}\n.border-danger-500\\/25{\nborder-color: color(from #f24c3d srgb r g b / 0.25);\n}\n.border-danger-500\\/30{\nborder-color: color(from #f24c3d srgb r g b / 0.3);\n}\n.border-danger-500\\/35{\nborder-color: color(from #f24c3d srgb r g b / 0.35);\n}\n.border-danger-500\\/40{\nborder-color: color(from #f24c3d srgb r g b / 0.4);\n}\n.border-danger-500\\/45{\nborder-color: color(from #f24c3d srgb r g b / 0.45);\n}\n.border-danger-500\\/5{\nborder-color: color(from #f24c3d srgb r g b / 0.05);\n}\n.border-danger-500\\/50{\nborder-color: color(from #f24c3d srgb r g b / 0.5);\n}\n.border-danger-500\\/55{\nborder-color: color(from #f24c3d srgb r g b / 0.55);\n}\n.border-danger-500\\/60{\nborder-color: color(from #f24c3d srgb r g b / 0.6);\n}\n.border-danger-500\\/65{\nborder-color: color(from #f24c3d srgb r g b / 0.65);\n}\n.border-danger-500\\/70{\nborder-color: color(from #f24c3d srgb r g b / 0.7);\n}\n.border-danger-500\\/75{\nborder-color: color(from #f24c3d srgb r g b / 0.75);\n}\n.border-danger-500\\/80{\nborder-color: color(from #f24c3d srgb r g b / 0.8);\n}\n.border-danger-500\\/85{\nborder-color: color(from #f24c3d srgb r g b / 0.85);\n}\n.border-danger-500\\/90{\nborder-color: color(from #f24c3d srgb r g b / 0.9);\n}\n.border-danger-500\\/95{\nborder-color: color(from #f24c3d srgb r g b / 0.95);\n}\n.border-danger-600{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / var(--tw-border-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-danger-600\\/0{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-danger-600\\/10{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-danger-600\\/100{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-danger-600\\/15{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-danger-600\\/20{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-danger-600\\/25{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-danger-600\\/30{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-danger-600\\/35{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-danger-600\\/40{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-danger-600\\/45{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-danger-600\\/5{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-danger-600\\/50{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-danger-600\\/55{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-danger-600\\/60{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-danger-600\\/65{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-danger-600\\/70{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-danger-600\\/75{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-danger-600\\/80{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-danger-600\\/85{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-danger-600\\/90{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-danger-600\\/95{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-danger-700{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / var(--tw-border-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-danger-700\\/0{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-danger-700\\/10{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-danger-700\\/100{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-danger-700\\/15{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-danger-700\\/20{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-danger-700\\/25{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-danger-700\\/30{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-danger-700\\/35{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-danger-700\\/40{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-danger-700\\/45{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-danger-700\\/5{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-danger-700\\/50{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-danger-700\\/55{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-danger-700\\/60{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-danger-700\\/65{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-danger-700\\/70{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-danger-700\\/75{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-danger-700\\/80{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-danger-700\\/85{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-danger-700\\/90{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-danger-700\\/95{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-danger-800{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / var(--tw-border-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-danger-800\\/0{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-danger-800\\/10{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-danger-800\\/100{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-danger-800\\/15{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-danger-800\\/20{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-danger-800\\/25{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-danger-800\\/30{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-danger-800\\/35{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-danger-800\\/40{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-danger-800\\/45{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-danger-800\\/5{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-danger-800\\/50{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-danger-800\\/55{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-danger-800\\/60{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-danger-800\\/65{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-danger-800\\/70{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-danger-800\\/75{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-danger-800\\/80{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-danger-800\\/85{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-danger-800\\/90{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-danger-800\\/95{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-danger-900{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / var(--tw-border-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-danger-900\\/0{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-danger-900\\/10{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-danger-900\\/100{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-danger-900\\/15{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-danger-900\\/20{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-danger-900\\/25{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-danger-900\\/30{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-danger-900\\/35{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-danger-900\\/40{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-danger-900\\/45{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-danger-900\\/5{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-danger-900\\/50{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-danger-900\\/55{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-danger-900\\/60{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-danger-900\\/65{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-danger-900\\/70{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-danger-900\\/75{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-danger-900\\/80{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-danger-900\\/85{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-danger-900\\/90{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-danger-900\\/95{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-danger-950{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / var(--tw-border-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-danger-950\\/0{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-danger-950\\/10{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-danger-950\\/100{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-danger-950\\/15{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-danger-950\\/20{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-danger-950\\/25{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-danger-950\\/30{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-danger-950\\/35{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-danger-950\\/40{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-danger-950\\/45{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-danger-950\\/5{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-danger-950\\/50{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-danger-950\\/55{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-danger-950\\/60{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-danger-950\\/65{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-danger-950\\/70{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-danger-950\\/75{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-danger-950\\/80{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-danger-950\\/85{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-danger-950\\/90{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-danger-950\\/95{\nborder-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-danger\\/0{\nborder-color: rgb(242 76 61 / 0);\n}\n.border-danger\\/10{\nborder-color: rgb(242 76 61 / 0.1);\n}\n.border-danger\\/100{\nborder-color: rgb(242 76 61 / 1);\n}\n.border-danger\\/15{\nborder-color: rgb(242 76 61 / 0.15);\n}\n.border-danger\\/20{\nborder-color: rgb(242 76 61 / 0.2);\n}\n.border-danger\\/25{\nborder-color: rgb(242 76 61 / 0.25);\n}\n.border-danger\\/30{\nborder-color: rgb(242 76 61 / 0.3);\n}\n.border-danger\\/35{\nborder-color: rgb(242 76 61 / 0.35);\n}\n.border-danger\\/40{\nborder-color: rgb(242 76 61 / 0.4);\n}\n.border-danger\\/45{\nborder-color: rgb(242 76 61 / 0.45);\n}\n.border-danger\\/5{\nborder-color: rgb(242 76 61 / 0.05);\n}\n.border-danger\\/50{\nborder-color: rgb(242 76 61 / 0.5);\n}\n.border-danger\\/55{\nborder-color: rgb(242 76 61 / 0.55);\n}\n.border-danger\\/60{\nborder-color: rgb(242 76 61 / 0.6);\n}\n.border-danger\\/65{\nborder-color: rgb(242 76 61 / 0.65);\n}\n.border-danger\\/70{\nborder-color: rgb(242 76 61 / 0.7);\n}\n.border-danger\\/75{\nborder-color: rgb(242 76 61 / 0.75);\n}\n.border-danger\\/80{\nborder-color: rgb(242 76 61 / 0.8);\n}\n.border-danger\\/85{\nborder-color: rgb(242 76 61 / 0.85);\n}\n.border-danger\\/90{\nborder-color: rgb(242 76 61 / 0.9);\n}\n.border-danger\\/95{\nborder-color: rgb(242 76 61 / 0.95);\n}\n.border-dark{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from var(--black) srgb r g b / var(--tw-border-opacity)) 75%, color(from var(--tint) srgb r g b / var(--tw-border-opacity)));\n}\n.border-dark\\/0{\nborder-color: color-mix(in lab, color(from var(--black) srgb r g b / 0) 75%, color(from var(--tint) srgb r g b / 0));\n}\n.border-dark\\/10{\nborder-color: color-mix(in lab, color(from var(--black) srgb r g b / 0.1) 75%, color(from var(--tint) srgb r g b / 0.1));\n}\n.border-dark\\/100{\nborder-color: color-mix(in lab, color(from var(--black) srgb r g b / 1) 75%, color(from var(--tint) srgb r g b / 1));\n}\n.border-dark\\/15{\nborder-color: color-mix(in lab, color(from var(--black) srgb r g b / 0.15) 75%, color(from var(--tint) srgb r g b / 0.15));\n}\n.border-dark\\/20{\nborder-color: color-mix(in lab, color(from var(--black) srgb r g b / 0.2) 75%, color(from var(--tint) srgb r g b / 0.2));\n}\n.border-dark\\/25{\nborder-color: color-mix(in lab, color(from var(--black) srgb r g b / 0.25) 75%, color(from var(--tint) srgb r g b / 0.25));\n}\n.border-dark\\/30{\nborder-color: color-mix(in lab, color(from var(--black) srgb r g b / 0.3) 75%, color(from var(--tint) srgb r g b / 0.3));\n}\n.border-dark\\/35{\nborder-color: color-mix(in lab, color(from var(--black) srgb r g b / 0.35) 75%, color(from var(--tint) srgb r g b / 0.35));\n}\n.border-dark\\/40{\nborder-color: color-mix(in lab, color(from var(--black) srgb r g b / 0.4) 75%, color(from var(--tint) srgb r g b / 0.4));\n}\n.border-dark\\/45{\nborder-color: color-mix(in lab, color(from var(--black) srgb r g b / 0.45) 75%, color(from var(--tint) srgb r g b / 0.45));\n}\n.border-dark\\/5{\nborder-color: color-mix(in lab, color(from var(--black) srgb r g b / 0.05) 75%, color(from var(--tint) srgb r g b / 0.05));\n}\n.border-dark\\/50{\nborder-color: color-mix(in lab, color(from var(--black) srgb r g b / 0.5) 75%, color(from var(--tint) srgb r g b / 0.5));\n}\n.border-dark\\/55{\nborder-color: color-mix(in lab, color(from var(--black) srgb r g b / 0.55) 75%, color(from var(--tint) srgb r g b / 0.55));\n}\n.border-dark\\/60{\nborder-color: color-mix(in lab, color(from var(--black) srgb r g b / 0.6) 75%, color(from var(--tint) srgb r g b / 0.6));\n}\n.border-dark\\/65{\nborder-color: color-mix(in lab, color(from var(--black) srgb r g b / 0.65) 75%, color(from var(--tint) srgb r g b / 0.65));\n}\n.border-dark\\/70{\nborder-color: color-mix(in lab, color(from var(--black) srgb r g b / 0.7) 75%, color(from var(--tint) srgb r g b / 0.7));\n}\n.border-dark\\/75{\nborder-color: color-mix(in lab, color(from var(--black) srgb r g b / 0.75) 75%, color(from var(--tint) srgb r g b / 0.75));\n}\n.border-dark\\/80{\nborder-color: color-mix(in lab, color(from var(--black) srgb r g b / 0.8) 75%, color(from var(--tint) srgb r g b / 0.8));\n}\n.border-dark\\/85{\nborder-color: color-mix(in lab, color(from var(--black) srgb r g b / 0.85) 75%, color(from var(--tint) srgb r g b / 0.85));\n}\n.border-dark\\/90{\nborder-color: color-mix(in lab, color(from var(--black) srgb r g b / 0.9) 75%, color(from var(--tint) srgb r g b / 0.9));\n}\n.border-dark\\/95{\nborder-color: color-mix(in lab, color(from var(--black) srgb r g b / 0.95) 75%, color(from var(--tint) srgb r g b / 0.95));\n}\n.border-denim{\n--tw-border-opacity: 1;\nborder-color: rgb(1 144 255 / var(--tw-border-opacity));\n}\n.border-denim-100{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / var(--tw-border-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-denim-100\\/0{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-denim-100\\/10{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-denim-100\\/100{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-denim-100\\/15{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-denim-100\\/20{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-denim-100\\/25{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-denim-100\\/30{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-denim-100\\/35{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-denim-100\\/40{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-denim-100\\/45{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-denim-100\\/5{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-denim-100\\/50{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-denim-100\\/55{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-denim-100\\/60{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-denim-100\\/65{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-denim-100\\/70{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-denim-100\\/75{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-denim-100\\/80{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-denim-100\\/85{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-denim-100\\/90{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-denim-100\\/95{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-denim-200{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / var(--tw-border-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-denim-200\\/0{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-denim-200\\/10{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-denim-200\\/100{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-denim-200\\/15{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-denim-200\\/20{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-denim-200\\/25{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-denim-200\\/30{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-denim-200\\/35{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-denim-200\\/40{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-denim-200\\/45{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-denim-200\\/5{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-denim-200\\/50{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-denim-200\\/55{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-denim-200\\/60{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-denim-200\\/65{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-denim-200\\/70{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-denim-200\\/75{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-denim-200\\/80{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-denim-200\\/85{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-denim-200\\/90{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-denim-200\\/95{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-denim-300{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / var(--tw-border-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-denim-300\\/0{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-denim-300\\/10{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-denim-300\\/100{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-denim-300\\/15{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-denim-300\\/20{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-denim-300\\/25{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-denim-300\\/30{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-denim-300\\/35{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-denim-300\\/40{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-denim-300\\/45{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-denim-300\\/5{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-denim-300\\/50{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-denim-300\\/55{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-denim-300\\/60{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-denim-300\\/65{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-denim-300\\/70{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-denim-300\\/75{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-denim-300\\/80{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-denim-300\\/85{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-denim-300\\/90{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-denim-300\\/95{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-denim-400{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / var(--tw-border-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-denim-400\\/0{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-denim-400\\/10{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-denim-400\\/100{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-denim-400\\/15{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-denim-400\\/20{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-denim-400\\/25{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-denim-400\\/30{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-denim-400\\/35{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-denim-400\\/40{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-denim-400\\/45{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-denim-400\\/5{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-denim-400\\/50{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-denim-400\\/55{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-denim-400\\/60{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-denim-400\\/65{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-denim-400\\/70{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-denim-400\\/75{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-denim-400\\/80{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-denim-400\\/85{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-denim-400\\/90{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-denim-400\\/95{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-denim-50{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / var(--tw-border-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-denim-50\\/0{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-denim-50\\/10{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-denim-50\\/100{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-denim-50\\/15{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-denim-50\\/20{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-denim-50\\/25{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-denim-50\\/30{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-denim-50\\/35{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-denim-50\\/40{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-denim-50\\/45{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-denim-50\\/5{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-denim-50\\/50{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-denim-50\\/55{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-denim-50\\/60{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-denim-50\\/65{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-denim-50\\/70{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-denim-50\\/75{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-denim-50\\/80{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-denim-50\\/85{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-denim-50\\/90{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-denim-50\\/95{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-denim-500{\n--tw-border-opacity: 1;\nborder-color: color(from #0190ff srgb r g b / var(--tw-border-opacity));\n}\n.border-denim-500\\/0{\nborder-color: color(from #0190ff srgb r g b / 0);\n}\n.border-denim-500\\/10{\nborder-color: color(from #0190ff srgb r g b / 0.1);\n}\n.border-denim-500\\/100{\nborder-color: color(from #0190ff srgb r g b / 1);\n}\n.border-denim-500\\/15{\nborder-color: color(from #0190ff srgb r g b / 0.15);\n}\n.border-denim-500\\/20{\nborder-color: color(from #0190ff srgb r g b / 0.2);\n}\n.border-denim-500\\/25{\nborder-color: color(from #0190ff srgb r g b / 0.25);\n}\n.border-denim-500\\/30{\nborder-color: color(from #0190ff srgb r g b / 0.3);\n}\n.border-denim-500\\/35{\nborder-color: color(from #0190ff srgb r g b / 0.35);\n}\n.border-denim-500\\/40{\nborder-color: color(from #0190ff srgb r g b / 0.4);\n}\n.border-denim-500\\/45{\nborder-color: color(from #0190ff srgb r g b / 0.45);\n}\n.border-denim-500\\/5{\nborder-color: color(from #0190ff srgb r g b / 0.05);\n}\n.border-denim-500\\/50{\nborder-color: color(from #0190ff srgb r g b / 0.5);\n}\n.border-denim-500\\/55{\nborder-color: color(from #0190ff srgb r g b / 0.55);\n}\n.border-denim-500\\/60{\nborder-color: color(from #0190ff srgb r g b / 0.6);\n}\n.border-denim-500\\/65{\nborder-color: color(from #0190ff srgb r g b / 0.65);\n}\n.border-denim-500\\/70{\nborder-color: color(from #0190ff srgb r g b / 0.7);\n}\n.border-denim-500\\/75{\nborder-color: color(from #0190ff srgb r g b / 0.75);\n}\n.border-denim-500\\/80{\nborder-color: color(from #0190ff srgb r g b / 0.8);\n}\n.border-denim-500\\/85{\nborder-color: color(from #0190ff srgb r g b / 0.85);\n}\n.border-denim-500\\/90{\nborder-color: color(from #0190ff srgb r g b / 0.9);\n}\n.border-denim-500\\/95{\nborder-color: color(from #0190ff srgb r g b / 0.95);\n}\n.border-denim-600{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / var(--tw-border-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-denim-600\\/0{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-denim-600\\/10{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-denim-600\\/100{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-denim-600\\/15{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-denim-600\\/20{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-denim-600\\/25{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-denim-600\\/30{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-denim-600\\/35{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-denim-600\\/40{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-denim-600\\/45{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-denim-600\\/5{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-denim-600\\/50{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-denim-600\\/55{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-denim-600\\/60{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-denim-600\\/65{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-denim-600\\/70{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-denim-600\\/75{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-denim-600\\/80{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-denim-600\\/85{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-denim-600\\/90{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-denim-600\\/95{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-denim-700{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / var(--tw-border-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-denim-700\\/0{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-denim-700\\/10{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-denim-700\\/100{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-denim-700\\/15{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-denim-700\\/20{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-denim-700\\/25{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-denim-700\\/30{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-denim-700\\/35{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-denim-700\\/40{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-denim-700\\/45{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-denim-700\\/5{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-denim-700\\/50{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-denim-700\\/55{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-denim-700\\/60{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-denim-700\\/65{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-denim-700\\/70{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-denim-700\\/75{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-denim-700\\/80{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-denim-700\\/85{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-denim-700\\/90{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-denim-700\\/95{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-denim-800{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / var(--tw-border-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-denim-800\\/0{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-denim-800\\/10{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-denim-800\\/100{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-denim-800\\/15{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-denim-800\\/20{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-denim-800\\/25{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-denim-800\\/30{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-denim-800\\/35{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-denim-800\\/40{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-denim-800\\/45{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-denim-800\\/5{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-denim-800\\/50{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-denim-800\\/55{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-denim-800\\/60{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-denim-800\\/65{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-denim-800\\/70{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-denim-800\\/75{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-denim-800\\/80{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-denim-800\\/85{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-denim-800\\/90{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-denim-800\\/95{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-denim-900{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / var(--tw-border-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-denim-900\\/0{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-denim-900\\/10{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-denim-900\\/100{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-denim-900\\/15{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-denim-900\\/20{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-denim-900\\/25{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-denim-900\\/30{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-denim-900\\/35{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-denim-900\\/40{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-denim-900\\/45{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-denim-900\\/5{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-denim-900\\/50{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-denim-900\\/55{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-denim-900\\/60{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-denim-900\\/65{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-denim-900\\/70{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-denim-900\\/75{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-denim-900\\/80{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-denim-900\\/85{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-denim-900\\/90{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-denim-900\\/95{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-denim-950{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / var(--tw-border-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-denim-950\\/0{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-denim-950\\/10{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-denim-950\\/100{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-denim-950\\/15{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-denim-950\\/20{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-denim-950\\/25{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-denim-950\\/30{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-denim-950\\/35{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-denim-950\\/40{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-denim-950\\/45{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-denim-950\\/5{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-denim-950\\/50{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-denim-950\\/55{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-denim-950\\/60{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-denim-950\\/65{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-denim-950\\/70{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-denim-950\\/75{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-denim-950\\/80{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-denim-950\\/85{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-denim-950\\/90{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-denim-950\\/95{\nborder-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-denim\\/0{\nborder-color: rgb(1 144 255 / 0);\n}\n.border-denim\\/10{\nborder-color: rgb(1 144 255 / 0.1);\n}\n.border-denim\\/100{\nborder-color: rgb(1 144 255 / 1);\n}\n.border-denim\\/15{\nborder-color: rgb(1 144 255 / 0.15);\n}\n.border-denim\\/20{\nborder-color: rgb(1 144 255 / 0.2);\n}\n.border-denim\\/25{\nborder-color: rgb(1 144 255 / 0.25);\n}\n.border-denim\\/30{\nborder-color: rgb(1 144 255 / 0.3);\n}\n.border-denim\\/35{\nborder-color: rgb(1 144 255 / 0.35);\n}\n.border-denim\\/40{\nborder-color: rgb(1 144 255 / 0.4);\n}\n.border-denim\\/45{\nborder-color: rgb(1 144 255 / 0.45);\n}\n.border-denim\\/5{\nborder-color: rgb(1 144 255 / 0.05);\n}\n.border-denim\\/50{\nborder-color: rgb(1 144 255 / 0.5);\n}\n.border-denim\\/55{\nborder-color: rgb(1 144 255 / 0.55);\n}\n.border-denim\\/60{\nborder-color: rgb(1 144 255 / 0.6);\n}\n.border-denim\\/65{\nborder-color: rgb(1 144 255 / 0.65);\n}\n.border-denim\\/70{\nborder-color: rgb(1 144 255 / 0.7);\n}\n.border-denim\\/75{\nborder-color: rgb(1 144 255 / 0.75);\n}\n.border-denim\\/80{\nborder-color: rgb(1 144 255 / 0.8);\n}\n.border-denim\\/85{\nborder-color: rgb(1 144 255 / 0.85);\n}\n.border-denim\\/90{\nborder-color: rgb(1 144 255 / 0.9);\n}\n.border-denim\\/95{\nborder-color: rgb(1 144 255 / 0.95);\n}\n.border-dimmed{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)) 72%, color(from var(--tint) srgb r g b / var(--tw-border-opacity)));\n}\n.border-dimmed\\/0{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0) 72%, color(from var(--tint) srgb r g b / 0));\n}\n.border-dimmed\\/10{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.1) 72%, color(from var(--tint) srgb r g b / 0.1));\n}\n.border-dimmed\\/100{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 72%, color(from var(--tint) srgb r g b / 1));\n}\n.border-dimmed\\/15{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.15) 72%, color(from var(--tint) srgb r g b / 0.15));\n}\n.border-dimmed\\/20{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.2) 72%, color(from var(--tint) srgb r g b / 0.2));\n}\n.border-dimmed\\/25{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.25) 72%, color(from var(--tint) srgb r g b / 0.25));\n}\n.border-dimmed\\/30{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.3) 72%, color(from var(--tint) srgb r g b / 0.3));\n}\n.border-dimmed\\/35{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.35) 72%, color(from var(--tint) srgb r g b / 0.35));\n}\n.border-dimmed\\/40{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.4) 72%, color(from var(--tint) srgb r g b / 0.4));\n}\n.border-dimmed\\/45{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.45) 72%, color(from var(--tint) srgb r g b / 0.45));\n}\n.border-dimmed\\/5{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.05) 72%, color(from var(--tint) srgb r g b / 0.05));\n}\n.border-dimmed\\/50{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.5) 72%, color(from var(--tint) srgb r g b / 0.5));\n}\n.border-dimmed\\/55{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.55) 72%, color(from var(--tint) srgb r g b / 0.55));\n}\n.border-dimmed\\/60{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.6) 72%, color(from var(--tint) srgb r g b / 0.6));\n}\n.border-dimmed\\/65{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.65) 72%, color(from var(--tint) srgb r g b / 0.65));\n}\n.border-dimmed\\/70{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.7) 72%, color(from var(--tint) srgb r g b / 0.7));\n}\n.border-dimmed\\/75{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.75) 72%, color(from var(--tint) srgb r g b / 0.75));\n}\n.border-dimmed\\/80{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.8) 72%, color(from var(--tint) srgb r g b / 0.8));\n}\n.border-dimmed\\/85{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.85) 72%, color(from var(--tint) srgb r g b / 0.85));\n}\n.border-dimmed\\/90{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.9) 72%, color(from var(--tint) srgb r g b / 0.9));\n}\n.border-dimmed\\/95{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.95) 72%, color(from var(--tint) srgb r g b / 0.95));\n}\n.border-info{\n--tw-border-opacity: 1;\nborder-color: rgb(0 191 255 / var(--tw-border-opacity));\n}\n.border-info-100{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / var(--tw-border-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-info-100\\/0{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-info-100\\/10{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-info-100\\/100{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-info-100\\/15{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-info-100\\/20{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-info-100\\/25{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-info-100\\/30{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-info-100\\/35{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-info-100\\/40{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-info-100\\/45{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-info-100\\/5{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-info-100\\/50{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-info-100\\/55{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-info-100\\/60{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-info-100\\/65{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-info-100\\/70{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-info-100\\/75{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-info-100\\/80{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-info-100\\/85{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-info-100\\/90{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-info-100\\/95{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-info-200{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / var(--tw-border-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-info-200\\/0{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-info-200\\/10{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-info-200\\/100{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-info-200\\/15{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-info-200\\/20{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-info-200\\/25{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-info-200\\/30{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-info-200\\/35{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-info-200\\/40{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-info-200\\/45{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-info-200\\/5{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-info-200\\/50{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-info-200\\/55{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-info-200\\/60{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-info-200\\/65{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-info-200\\/70{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-info-200\\/75{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-info-200\\/80{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-info-200\\/85{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-info-200\\/90{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-info-200\\/95{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-info-300{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / var(--tw-border-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-info-300\\/0{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-info-300\\/10{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-info-300\\/100{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-info-300\\/15{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-info-300\\/20{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-info-300\\/25{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-info-300\\/30{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-info-300\\/35{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-info-300\\/40{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-info-300\\/45{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-info-300\\/5{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-info-300\\/50{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-info-300\\/55{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-info-300\\/60{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-info-300\\/65{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-info-300\\/70{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-info-300\\/75{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-info-300\\/80{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-info-300\\/85{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-info-300\\/90{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-info-300\\/95{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-info-400{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / var(--tw-border-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-info-400\\/0{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-info-400\\/10{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-info-400\\/100{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-info-400\\/15{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-info-400\\/20{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-info-400\\/25{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-info-400\\/30{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-info-400\\/35{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-info-400\\/40{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-info-400\\/45{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-info-400\\/5{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-info-400\\/50{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-info-400\\/55{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-info-400\\/60{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-info-400\\/65{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-info-400\\/70{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-info-400\\/75{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-info-400\\/80{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-info-400\\/85{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-info-400\\/90{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-info-400\\/95{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-info-50{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / var(--tw-border-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-info-50\\/0{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-info-50\\/10{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-info-50\\/100{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-info-50\\/15{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-info-50\\/20{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-info-50\\/25{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-info-50\\/30{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-info-50\\/35{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-info-50\\/40{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-info-50\\/45{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-info-50\\/5{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-info-50\\/50{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-info-50\\/55{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-info-50\\/60{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-info-50\\/65{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-info-50\\/70{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-info-50\\/75{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-info-50\\/80{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-info-50\\/85{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-info-50\\/90{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-info-50\\/95{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-info-500{\n--tw-border-opacity: 1;\nborder-color: color(from #00bfff srgb r g b / var(--tw-border-opacity));\n}\n.border-info-500\\/0{\nborder-color: color(from #00bfff srgb r g b / 0);\n}\n.border-info-500\\/10{\nborder-color: color(from #00bfff srgb r g b / 0.1);\n}\n.border-info-500\\/100{\nborder-color: color(from #00bfff srgb r g b / 1);\n}\n.border-info-500\\/15{\nborder-color: color(from #00bfff srgb r g b / 0.15);\n}\n.border-info-500\\/20{\nborder-color: color(from #00bfff srgb r g b / 0.2);\n}\n.border-info-500\\/25{\nborder-color: color(from #00bfff srgb r g b / 0.25);\n}\n.border-info-500\\/30{\nborder-color: color(from #00bfff srgb r g b / 0.3);\n}\n.border-info-500\\/35{\nborder-color: color(from #00bfff srgb r g b / 0.35);\n}\n.border-info-500\\/40{\nborder-color: color(from #00bfff srgb r g b / 0.4);\n}\n.border-info-500\\/45{\nborder-color: color(from #00bfff srgb r g b / 0.45);\n}\n.border-info-500\\/5{\nborder-color: color(from #00bfff srgb r g b / 0.05);\n}\n.border-info-500\\/50{\nborder-color: color(from #00bfff srgb r g b / 0.5);\n}\n.border-info-500\\/55{\nborder-color: color(from #00bfff srgb r g b / 0.55);\n}\n.border-info-500\\/60{\nborder-color: color(from #00bfff srgb r g b / 0.6);\n}\n.border-info-500\\/65{\nborder-color: color(from #00bfff srgb r g b / 0.65);\n}\n.border-info-500\\/70{\nborder-color: color(from #00bfff srgb r g b / 0.7);\n}\n.border-info-500\\/75{\nborder-color: color(from #00bfff srgb r g b / 0.75);\n}\n.border-info-500\\/80{\nborder-color: color(from #00bfff srgb r g b / 0.8);\n}\n.border-info-500\\/85{\nborder-color: color(from #00bfff srgb r g b / 0.85);\n}\n.border-info-500\\/90{\nborder-color: color(from #00bfff srgb r g b / 0.9);\n}\n.border-info-500\\/95{\nborder-color: color(from #00bfff srgb r g b / 0.95);\n}\n.border-info-600{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / var(--tw-border-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-info-600\\/0{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-info-600\\/10{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-info-600\\/100{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-info-600\\/15{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-info-600\\/20{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-info-600\\/25{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-info-600\\/30{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-info-600\\/35{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-info-600\\/40{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-info-600\\/45{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-info-600\\/5{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-info-600\\/50{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-info-600\\/55{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-info-600\\/60{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-info-600\\/65{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-info-600\\/70{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-info-600\\/75{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-info-600\\/80{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-info-600\\/85{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-info-600\\/90{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-info-600\\/95{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-info-700{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / var(--tw-border-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-info-700\\/0{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-info-700\\/10{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-info-700\\/100{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-info-700\\/15{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-info-700\\/20{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-info-700\\/25{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-info-700\\/30{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-info-700\\/35{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-info-700\\/40{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-info-700\\/45{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-info-700\\/5{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-info-700\\/50{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-info-700\\/55{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-info-700\\/60{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-info-700\\/65{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-info-700\\/70{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-info-700\\/75{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-info-700\\/80{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-info-700\\/85{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-info-700\\/90{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-info-700\\/95{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-info-800{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / var(--tw-border-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-info-800\\/0{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-info-800\\/10{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-info-800\\/100{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-info-800\\/15{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-info-800\\/20{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-info-800\\/25{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-info-800\\/30{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-info-800\\/35{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-info-800\\/40{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-info-800\\/45{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-info-800\\/5{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-info-800\\/50{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-info-800\\/55{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-info-800\\/60{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-info-800\\/65{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-info-800\\/70{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-info-800\\/75{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-info-800\\/80{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-info-800\\/85{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-info-800\\/90{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-info-800\\/95{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-info-900{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / var(--tw-border-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-info-900\\/0{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-info-900\\/10{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-info-900\\/100{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-info-900\\/15{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-info-900\\/20{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-info-900\\/25{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-info-900\\/30{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-info-900\\/35{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-info-900\\/40{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-info-900\\/45{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-info-900\\/5{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-info-900\\/50{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-info-900\\/55{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-info-900\\/60{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-info-900\\/65{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-info-900\\/70{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-info-900\\/75{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-info-900\\/80{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-info-900\\/85{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-info-900\\/90{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-info-900\\/95{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-info-950{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / var(--tw-border-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-info-950\\/0{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-info-950\\/10{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-info-950\\/100{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-info-950\\/15{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-info-950\\/20{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-info-950\\/25{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-info-950\\/30{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-info-950\\/35{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-info-950\\/40{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-info-950\\/45{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-info-950\\/5{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-info-950\\/50{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-info-950\\/55{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-info-950\\/60{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-info-950\\/65{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-info-950\\/70{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-info-950\\/75{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-info-950\\/80{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-info-950\\/85{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-info-950\\/90{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-info-950\\/95{\nborder-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-info\\/0{\nborder-color: rgb(0 191 255 / 0);\n}\n.border-info\\/10{\nborder-color: rgb(0 191 255 / 0.1);\n}\n.border-info\\/100{\nborder-color: rgb(0 191 255 / 1);\n}\n.border-info\\/15{\nborder-color: rgb(0 191 255 / 0.15);\n}\n.border-info\\/20{\nborder-color: rgb(0 191 255 / 0.2);\n}\n.border-info\\/25{\nborder-color: rgb(0 191 255 / 0.25);\n}\n.border-info\\/30{\nborder-color: rgb(0 191 255 / 0.3);\n}\n.border-info\\/35{\nborder-color: rgb(0 191 255 / 0.35);\n}\n.border-info\\/40{\nborder-color: rgb(0 191 255 / 0.4);\n}\n.border-info\\/45{\nborder-color: rgb(0 191 255 / 0.45);\n}\n.border-info\\/5{\nborder-color: rgb(0 191 255 / 0.05);\n}\n.border-info\\/50{\nborder-color: rgb(0 191 255 / 0.5);\n}\n.border-info\\/55{\nborder-color: rgb(0 191 255 / 0.55);\n}\n.border-info\\/60{\nborder-color: rgb(0 191 255 / 0.6);\n}\n.border-info\\/65{\nborder-color: rgb(0 191 255 / 0.65);\n}\n.border-info\\/70{\nborder-color: rgb(0 191 255 / 0.7);\n}\n.border-info\\/75{\nborder-color: rgb(0 191 255 / 0.75);\n}\n.border-info\\/80{\nborder-color: rgb(0 191 255 / 0.8);\n}\n.border-info\\/85{\nborder-color: rgb(0 191 255 / 0.85);\n}\n.border-info\\/90{\nborder-color: rgb(0 191 255 / 0.9);\n}\n.border-info\\/95{\nborder-color: rgb(0 191 255 / 0.95);\n}\n.border-iris{\n--tw-border-opacity: 1;\nborder-color: rgb(91 91 214 / var(--tw-border-opacity));\n}\n.border-iris-100{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / var(--tw-border-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-iris-100\\/0{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-iris-100\\/10{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-iris-100\\/100{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-iris-100\\/15{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-iris-100\\/20{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-iris-100\\/25{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-iris-100\\/30{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-iris-100\\/35{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-iris-100\\/40{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-iris-100\\/45{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-iris-100\\/5{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-iris-100\\/50{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-iris-100\\/55{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-iris-100\\/60{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-iris-100\\/65{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-iris-100\\/70{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-iris-100\\/75{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-iris-100\\/80{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-iris-100\\/85{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-iris-100\\/90{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-iris-100\\/95{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-iris-200{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / var(--tw-border-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-iris-200\\/0{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-iris-200\\/10{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-iris-200\\/100{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-iris-200\\/15{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-iris-200\\/20{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-iris-200\\/25{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-iris-200\\/30{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-iris-200\\/35{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-iris-200\\/40{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-iris-200\\/45{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-iris-200\\/5{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-iris-200\\/50{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-iris-200\\/55{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-iris-200\\/60{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-iris-200\\/65{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-iris-200\\/70{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-iris-200\\/75{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-iris-200\\/80{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-iris-200\\/85{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-iris-200\\/90{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-iris-200\\/95{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-iris-300{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / var(--tw-border-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-iris-300\\/0{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-iris-300\\/10{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-iris-300\\/100{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-iris-300\\/15{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-iris-300\\/20{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-iris-300\\/25{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-iris-300\\/30{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-iris-300\\/35{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-iris-300\\/40{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-iris-300\\/45{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-iris-300\\/5{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-iris-300\\/50{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-iris-300\\/55{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-iris-300\\/60{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-iris-300\\/65{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-iris-300\\/70{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-iris-300\\/75{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-iris-300\\/80{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-iris-300\\/85{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-iris-300\\/90{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-iris-300\\/95{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-iris-400{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / var(--tw-border-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-iris-400\\/0{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-iris-400\\/10{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-iris-400\\/100{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-iris-400\\/15{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-iris-400\\/20{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-iris-400\\/25{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-iris-400\\/30{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-iris-400\\/35{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-iris-400\\/40{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-iris-400\\/45{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-iris-400\\/5{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-iris-400\\/50{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-iris-400\\/55{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-iris-400\\/60{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-iris-400\\/65{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-iris-400\\/70{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-iris-400\\/75{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-iris-400\\/80{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-iris-400\\/85{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-iris-400\\/90{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-iris-400\\/95{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-iris-50{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / var(--tw-border-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-iris-50\\/0{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-iris-50\\/10{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-iris-50\\/100{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-iris-50\\/15{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-iris-50\\/20{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-iris-50\\/25{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-iris-50\\/30{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-iris-50\\/35{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-iris-50\\/40{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-iris-50\\/45{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-iris-50\\/5{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-iris-50\\/50{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-iris-50\\/55{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-iris-50\\/60{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-iris-50\\/65{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-iris-50\\/70{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-iris-50\\/75{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-iris-50\\/80{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-iris-50\\/85{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-iris-50\\/90{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-iris-50\\/95{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-iris-500{\n--tw-border-opacity: 1;\nborder-color: color(from #5b5bd6 srgb r g b / var(--tw-border-opacity));\n}\n.border-iris-500\\/0{\nborder-color: color(from #5b5bd6 srgb r g b / 0);\n}\n.border-iris-500\\/10{\nborder-color: color(from #5b5bd6 srgb r g b / 0.1);\n}\n.border-iris-500\\/100{\nborder-color: color(from #5b5bd6 srgb r g b / 1);\n}\n.border-iris-500\\/15{\nborder-color: color(from #5b5bd6 srgb r g b / 0.15);\n}\n.border-iris-500\\/20{\nborder-color: color(from #5b5bd6 srgb r g b / 0.2);\n}\n.border-iris-500\\/25{\nborder-color: color(from #5b5bd6 srgb r g b / 0.25);\n}\n.border-iris-500\\/30{\nborder-color: color(from #5b5bd6 srgb r g b / 0.3);\n}\n.border-iris-500\\/35{\nborder-color: color(from #5b5bd6 srgb r g b / 0.35);\n}\n.border-iris-500\\/40{\nborder-color: color(from #5b5bd6 srgb r g b / 0.4);\n}\n.border-iris-500\\/45{\nborder-color: color(from #5b5bd6 srgb r g b / 0.45);\n}\n.border-iris-500\\/5{\nborder-color: color(from #5b5bd6 srgb r g b / 0.05);\n}\n.border-iris-500\\/50{\nborder-color: color(from #5b5bd6 srgb r g b / 0.5);\n}\n.border-iris-500\\/55{\nborder-color: color(from #5b5bd6 srgb r g b / 0.55);\n}\n.border-iris-500\\/60{\nborder-color: color(from #5b5bd6 srgb r g b / 0.6);\n}\n.border-iris-500\\/65{\nborder-color: color(from #5b5bd6 srgb r g b / 0.65);\n}\n.border-iris-500\\/70{\nborder-color: color(from #5b5bd6 srgb r g b / 0.7);\n}\n.border-iris-500\\/75{\nborder-color: color(from #5b5bd6 srgb r g b / 0.75);\n}\n.border-iris-500\\/80{\nborder-color: color(from #5b5bd6 srgb r g b / 0.8);\n}\n.border-iris-500\\/85{\nborder-color: color(from #5b5bd6 srgb r g b / 0.85);\n}\n.border-iris-500\\/90{\nborder-color: color(from #5b5bd6 srgb r g b / 0.9);\n}\n.border-iris-500\\/95{\nborder-color: color(from #5b5bd6 srgb r g b / 0.95);\n}\n.border-iris-600{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / var(--tw-border-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-iris-600\\/0{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-iris-600\\/10{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-iris-600\\/100{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-iris-600\\/15{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-iris-600\\/20{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-iris-600\\/25{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-iris-600\\/30{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-iris-600\\/35{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-iris-600\\/40{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-iris-600\\/45{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-iris-600\\/5{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-iris-600\\/50{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-iris-600\\/55{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-iris-600\\/60{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-iris-600\\/65{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-iris-600\\/70{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-iris-600\\/75{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-iris-600\\/80{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-iris-600\\/85{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-iris-600\\/90{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-iris-600\\/95{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-iris-700{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / var(--tw-border-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-iris-700\\/0{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-iris-700\\/10{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-iris-700\\/100{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-iris-700\\/15{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-iris-700\\/20{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-iris-700\\/25{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-iris-700\\/30{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-iris-700\\/35{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-iris-700\\/40{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-iris-700\\/45{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-iris-700\\/5{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-iris-700\\/50{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-iris-700\\/55{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-iris-700\\/60{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-iris-700\\/65{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-iris-700\\/70{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-iris-700\\/75{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-iris-700\\/80{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-iris-700\\/85{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-iris-700\\/90{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-iris-700\\/95{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-iris-800{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / var(--tw-border-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-iris-800\\/0{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-iris-800\\/10{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-iris-800\\/100{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-iris-800\\/15{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-iris-800\\/20{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-iris-800\\/25{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-iris-800\\/30{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-iris-800\\/35{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-iris-800\\/40{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-iris-800\\/45{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-iris-800\\/5{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-iris-800\\/50{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-iris-800\\/55{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-iris-800\\/60{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-iris-800\\/65{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-iris-800\\/70{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-iris-800\\/75{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-iris-800\\/80{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-iris-800\\/85{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-iris-800\\/90{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-iris-800\\/95{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-iris-900{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / var(--tw-border-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-iris-900\\/0{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-iris-900\\/10{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-iris-900\\/100{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-iris-900\\/15{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-iris-900\\/20{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-iris-900\\/25{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-iris-900\\/30{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-iris-900\\/35{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-iris-900\\/40{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-iris-900\\/45{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-iris-900\\/5{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-iris-900\\/50{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-iris-900\\/55{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-iris-900\\/60{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-iris-900\\/65{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-iris-900\\/70{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-iris-900\\/75{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-iris-900\\/80{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-iris-900\\/85{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-iris-900\\/90{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-iris-900\\/95{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-iris-950{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / var(--tw-border-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-iris-950\\/0{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-iris-950\\/10{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-iris-950\\/100{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-iris-950\\/15{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-iris-950\\/20{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-iris-950\\/25{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-iris-950\\/30{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-iris-950\\/35{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-iris-950\\/40{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-iris-950\\/45{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-iris-950\\/5{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-iris-950\\/50{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-iris-950\\/55{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-iris-950\\/60{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-iris-950\\/65{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-iris-950\\/70{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-iris-950\\/75{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-iris-950\\/80{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-iris-950\\/85{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-iris-950\\/90{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-iris-950\\/95{\nborder-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-iris\\/0{\nborder-color: rgb(91 91 214 / 0);\n}\n.border-iris\\/10{\nborder-color: rgb(91 91 214 / 0.1);\n}\n.border-iris\\/100{\nborder-color: rgb(91 91 214 / 1);\n}\n.border-iris\\/15{\nborder-color: rgb(91 91 214 / 0.15);\n}\n.border-iris\\/20{\nborder-color: rgb(91 91 214 / 0.2);\n}\n.border-iris\\/25{\nborder-color: rgb(91 91 214 / 0.25);\n}\n.border-iris\\/30{\nborder-color: rgb(91 91 214 / 0.3);\n}\n.border-iris\\/35{\nborder-color: rgb(91 91 214 / 0.35);\n}\n.border-iris\\/40{\nborder-color: rgb(91 91 214 / 0.4);\n}\n.border-iris\\/45{\nborder-color: rgb(91 91 214 / 0.45);\n}\n.border-iris\\/5{\nborder-color: rgb(91 91 214 / 0.05);\n}\n.border-iris\\/50{\nborder-color: rgb(91 91 214 / 0.5);\n}\n.border-iris\\/55{\nborder-color: rgb(91 91 214 / 0.55);\n}\n.border-iris\\/60{\nborder-color: rgb(91 91 214 / 0.6);\n}\n.border-iris\\/65{\nborder-color: rgb(91 91 214 / 0.65);\n}\n.border-iris\\/70{\nborder-color: rgb(91 91 214 / 0.7);\n}\n.border-iris\\/75{\nborder-color: rgb(91 91 214 / 0.75);\n}\n.border-iris\\/80{\nborder-color: rgb(91 91 214 / 0.8);\n}\n.border-iris\\/85{\nborder-color: rgb(91 91 214 / 0.85);\n}\n.border-iris\\/90{\nborder-color: rgb(91 91 214 / 0.9);\n}\n.border-iris\\/95{\nborder-color: rgb(91 91 214 / 0.95);\n}\n.border-jade{\n--tw-border-opacity: 1;\nborder-color: rgb(41 163 131 / var(--tw-border-opacity));\n}\n.border-jade-100{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / var(--tw-border-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-jade-100\\/0{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-jade-100\\/10{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-jade-100\\/100{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-jade-100\\/15{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-jade-100\\/20{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-jade-100\\/25{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-jade-100\\/30{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-jade-100\\/35{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-jade-100\\/40{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-jade-100\\/45{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-jade-100\\/5{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-jade-100\\/50{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-jade-100\\/55{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-jade-100\\/60{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-jade-100\\/65{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-jade-100\\/70{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-jade-100\\/75{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-jade-100\\/80{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-jade-100\\/85{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-jade-100\\/90{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-jade-100\\/95{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-jade-200{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / var(--tw-border-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-jade-200\\/0{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-jade-200\\/10{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-jade-200\\/100{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-jade-200\\/15{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-jade-200\\/20{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-jade-200\\/25{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-jade-200\\/30{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-jade-200\\/35{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-jade-200\\/40{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-jade-200\\/45{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-jade-200\\/5{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-jade-200\\/50{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-jade-200\\/55{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-jade-200\\/60{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-jade-200\\/65{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-jade-200\\/70{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-jade-200\\/75{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-jade-200\\/80{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-jade-200\\/85{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-jade-200\\/90{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-jade-200\\/95{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-jade-300{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / var(--tw-border-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-jade-300\\/0{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-jade-300\\/10{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-jade-300\\/100{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-jade-300\\/15{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-jade-300\\/20{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-jade-300\\/25{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-jade-300\\/30{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-jade-300\\/35{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-jade-300\\/40{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-jade-300\\/45{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-jade-300\\/5{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-jade-300\\/50{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-jade-300\\/55{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-jade-300\\/60{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-jade-300\\/65{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-jade-300\\/70{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-jade-300\\/75{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-jade-300\\/80{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-jade-300\\/85{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-jade-300\\/90{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-jade-300\\/95{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-jade-400{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / var(--tw-border-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-jade-400\\/0{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-jade-400\\/10{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-jade-400\\/100{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-jade-400\\/15{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-jade-400\\/20{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-jade-400\\/25{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-jade-400\\/30{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-jade-400\\/35{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-jade-400\\/40{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-jade-400\\/45{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-jade-400\\/5{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-jade-400\\/50{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-jade-400\\/55{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-jade-400\\/60{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-jade-400\\/65{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-jade-400\\/70{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-jade-400\\/75{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-jade-400\\/80{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-jade-400\\/85{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-jade-400\\/90{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-jade-400\\/95{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-jade-50{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / var(--tw-border-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-jade-50\\/0{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-jade-50\\/10{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-jade-50\\/100{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-jade-50\\/15{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-jade-50\\/20{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-jade-50\\/25{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-jade-50\\/30{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-jade-50\\/35{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-jade-50\\/40{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-jade-50\\/45{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-jade-50\\/5{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-jade-50\\/50{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-jade-50\\/55{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-jade-50\\/60{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-jade-50\\/65{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-jade-50\\/70{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-jade-50\\/75{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-jade-50\\/80{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-jade-50\\/85{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-jade-50\\/90{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-jade-50\\/95{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-jade-500{\n--tw-border-opacity: 1;\nborder-color: color(from #29a383 srgb r g b / var(--tw-border-opacity));\n}\n.border-jade-500\\/0{\nborder-color: color(from #29a383 srgb r g b / 0);\n}\n.border-jade-500\\/10{\nborder-color: color(from #29a383 srgb r g b / 0.1);\n}\n.border-jade-500\\/100{\nborder-color: color(from #29a383 srgb r g b / 1);\n}\n.border-jade-500\\/15{\nborder-color: color(from #29a383 srgb r g b / 0.15);\n}\n.border-jade-500\\/20{\nborder-color: color(from #29a383 srgb r g b / 0.2);\n}\n.border-jade-500\\/25{\nborder-color: color(from #29a383 srgb r g b / 0.25);\n}\n.border-jade-500\\/30{\nborder-color: color(from #29a383 srgb r g b / 0.3);\n}\n.border-jade-500\\/35{\nborder-color: color(from #29a383 srgb r g b / 0.35);\n}\n.border-jade-500\\/40{\nborder-color: color(from #29a383 srgb r g b / 0.4);\n}\n.border-jade-500\\/45{\nborder-color: color(from #29a383 srgb r g b / 0.45);\n}\n.border-jade-500\\/5{\nborder-color: color(from #29a383 srgb r g b / 0.05);\n}\n.border-jade-500\\/50{\nborder-color: color(from #29a383 srgb r g b / 0.5);\n}\n.border-jade-500\\/55{\nborder-color: color(from #29a383 srgb r g b / 0.55);\n}\n.border-jade-500\\/60{\nborder-color: color(from #29a383 srgb r g b / 0.6);\n}\n.border-jade-500\\/65{\nborder-color: color(from #29a383 srgb r g b / 0.65);\n}\n.border-jade-500\\/70{\nborder-color: color(from #29a383 srgb r g b / 0.7);\n}\n.border-jade-500\\/75{\nborder-color: color(from #29a383 srgb r g b / 0.75);\n}\n.border-jade-500\\/80{\nborder-color: color(from #29a383 srgb r g b / 0.8);\n}\n.border-jade-500\\/85{\nborder-color: color(from #29a383 srgb r g b / 0.85);\n}\n.border-jade-500\\/90{\nborder-color: color(from #29a383 srgb r g b / 0.9);\n}\n.border-jade-500\\/95{\nborder-color: color(from #29a383 srgb r g b / 0.95);\n}\n.border-jade-600{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / var(--tw-border-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-jade-600\\/0{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-jade-600\\/10{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-jade-600\\/100{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-jade-600\\/15{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-jade-600\\/20{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-jade-600\\/25{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-jade-600\\/30{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-jade-600\\/35{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-jade-600\\/40{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-jade-600\\/45{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-jade-600\\/5{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-jade-600\\/50{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-jade-600\\/55{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-jade-600\\/60{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-jade-600\\/65{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-jade-600\\/70{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-jade-600\\/75{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-jade-600\\/80{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-jade-600\\/85{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-jade-600\\/90{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-jade-600\\/95{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-jade-700{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / var(--tw-border-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-jade-700\\/0{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-jade-700\\/10{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-jade-700\\/100{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-jade-700\\/15{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-jade-700\\/20{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-jade-700\\/25{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-jade-700\\/30{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-jade-700\\/35{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-jade-700\\/40{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-jade-700\\/45{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-jade-700\\/5{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-jade-700\\/50{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-jade-700\\/55{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-jade-700\\/60{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-jade-700\\/65{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-jade-700\\/70{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-jade-700\\/75{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-jade-700\\/80{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-jade-700\\/85{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-jade-700\\/90{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-jade-700\\/95{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-jade-800{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / var(--tw-border-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-jade-800\\/0{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-jade-800\\/10{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-jade-800\\/100{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-jade-800\\/15{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-jade-800\\/20{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-jade-800\\/25{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-jade-800\\/30{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-jade-800\\/35{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-jade-800\\/40{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-jade-800\\/45{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-jade-800\\/5{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-jade-800\\/50{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-jade-800\\/55{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-jade-800\\/60{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-jade-800\\/65{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-jade-800\\/70{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-jade-800\\/75{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-jade-800\\/80{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-jade-800\\/85{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-jade-800\\/90{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-jade-800\\/95{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-jade-900{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / var(--tw-border-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-jade-900\\/0{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-jade-900\\/10{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-jade-900\\/100{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-jade-900\\/15{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-jade-900\\/20{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-jade-900\\/25{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-jade-900\\/30{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-jade-900\\/35{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-jade-900\\/40{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-jade-900\\/45{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-jade-900\\/5{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-jade-900\\/50{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-jade-900\\/55{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-jade-900\\/60{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-jade-900\\/65{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-jade-900\\/70{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-jade-900\\/75{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-jade-900\\/80{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-jade-900\\/85{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-jade-900\\/90{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-jade-900\\/95{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-jade-950{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / var(--tw-border-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-jade-950\\/0{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-jade-950\\/10{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-jade-950\\/100{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-jade-950\\/15{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-jade-950\\/20{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-jade-950\\/25{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-jade-950\\/30{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-jade-950\\/35{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-jade-950\\/40{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-jade-950\\/45{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-jade-950\\/5{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-jade-950\\/50{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-jade-950\\/55{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-jade-950\\/60{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-jade-950\\/65{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-jade-950\\/70{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-jade-950\\/75{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-jade-950\\/80{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-jade-950\\/85{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-jade-950\\/90{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-jade-950\\/95{\nborder-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-jade\\/0{\nborder-color: rgb(41 163 131 / 0);\n}\n.border-jade\\/10{\nborder-color: rgb(41 163 131 / 0.1);\n}\n.border-jade\\/100{\nborder-color: rgb(41 163 131 / 1);\n}\n.border-jade\\/15{\nborder-color: rgb(41 163 131 / 0.15);\n}\n.border-jade\\/20{\nborder-color: rgb(41 163 131 / 0.2);\n}\n.border-jade\\/25{\nborder-color: rgb(41 163 131 / 0.25);\n}\n.border-jade\\/30{\nborder-color: rgb(41 163 131 / 0.3);\n}\n.border-jade\\/35{\nborder-color: rgb(41 163 131 / 0.35);\n}\n.border-jade\\/40{\nborder-color: rgb(41 163 131 / 0.4);\n}\n.border-jade\\/45{\nborder-color: rgb(41 163 131 / 0.45);\n}\n.border-jade\\/5{\nborder-color: rgb(41 163 131 / 0.05);\n}\n.border-jade\\/50{\nborder-color: rgb(41 163 131 / 0.5);\n}\n.border-jade\\/55{\nborder-color: rgb(41 163 131 / 0.55);\n}\n.border-jade\\/60{\nborder-color: rgb(41 163 131 / 0.6);\n}\n.border-jade\\/65{\nborder-color: rgb(41 163 131 / 0.65);\n}\n.border-jade\\/70{\nborder-color: rgb(41 163 131 / 0.7);\n}\n.border-jade\\/75{\nborder-color: rgb(41 163 131 / 0.75);\n}\n.border-jade\\/80{\nborder-color: rgb(41 163 131 / 0.8);\n}\n.border-jade\\/85{\nborder-color: rgb(41 163 131 / 0.85);\n}\n.border-jade\\/90{\nborder-color: rgb(41 163 131 / 0.9);\n}\n.border-jade\\/95{\nborder-color: rgb(41 163 131 / 0.95);\n}\n.border-light{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from var(--white) srgb r g b / var(--tw-border-opacity)) 75%, color(from var(--tint) srgb r g b / var(--tw-border-opacity)));\n}\n.border-light\\/0{\nborder-color: color-mix(in lab, color(from var(--white) srgb r g b / 0) 75%, color(from var(--tint) srgb r g b / 0));\n}\n.border-light\\/10{\nborder-color: color-mix(in lab, color(from var(--white) srgb r g b / 0.1) 75%, color(from var(--tint) srgb r g b / 0.1));\n}\n.border-light\\/100{\nborder-color: color-mix(in lab, color(from var(--white) srgb r g b / 1) 75%, color(from var(--tint) srgb r g b / 1));\n}\n.border-light\\/15{\nborder-color: color-mix(in lab, color(from var(--white) srgb r g b / 0.15) 75%, color(from var(--tint) srgb r g b / 0.15));\n}\n.border-light\\/20{\nborder-color: color-mix(in lab, color(from var(--white) srgb r g b / 0.2) 75%, color(from var(--tint) srgb r g b / 0.2));\n}\n.border-light\\/25{\nborder-color: color-mix(in lab, color(from var(--white) srgb r g b / 0.25) 75%, color(from var(--tint) srgb r g b / 0.25));\n}\n.border-light\\/30{\nborder-color: color-mix(in lab, color(from var(--white) srgb r g b / 0.3) 75%, color(from var(--tint) srgb r g b / 0.3));\n}\n.border-light\\/35{\nborder-color: color-mix(in lab, color(from var(--white) srgb r g b / 0.35) 75%, color(from var(--tint) srgb r g b / 0.35));\n}\n.border-light\\/40{\nborder-color: color-mix(in lab, color(from var(--white) srgb r g b / 0.4) 75%, color(from var(--tint) srgb r g b / 0.4));\n}\n.border-light\\/45{\nborder-color: color-mix(in lab, color(from var(--white) srgb r g b / 0.45) 75%, color(from var(--tint) srgb r g b / 0.45));\n}\n.border-light\\/5{\nborder-color: color-mix(in lab, color(from var(--white) srgb r g b / 0.05) 75%, color(from var(--tint) srgb r g b / 0.05));\n}\n.border-light\\/50{\nborder-color: color-mix(in lab, color(from var(--white) srgb r g b / 0.5) 75%, color(from var(--tint) srgb r g b / 0.5));\n}\n.border-light\\/55{\nborder-color: color-mix(in lab, color(from var(--white) srgb r g b / 0.55) 75%, color(from var(--tint) srgb r g b / 0.55));\n}\n.border-light\\/60{\nborder-color: color-mix(in lab, color(from var(--white) srgb r g b / 0.6) 75%, color(from var(--tint) srgb r g b / 0.6));\n}\n.border-light\\/65{\nborder-color: color-mix(in lab, color(from var(--white) srgb r g b / 0.65) 75%, color(from var(--tint) srgb r g b / 0.65));\n}\n.border-light\\/70{\nborder-color: color-mix(in lab, color(from var(--white) srgb r g b / 0.7) 75%, color(from var(--tint) srgb r g b / 0.7));\n}\n.border-light\\/75{\nborder-color: color-mix(in lab, color(from var(--white) srgb r g b / 0.75) 75%, color(from var(--tint) srgb r g b / 0.75));\n}\n.border-light\\/80{\nborder-color: color-mix(in lab, color(from var(--white) srgb r g b / 0.8) 75%, color(from var(--tint) srgb r g b / 0.8));\n}\n.border-light\\/85{\nborder-color: color-mix(in lab, color(from var(--white) srgb r g b / 0.85) 75%, color(from var(--tint) srgb r g b / 0.85));\n}\n.border-light\\/90{\nborder-color: color-mix(in lab, color(from var(--white) srgb r g b / 0.9) 75%, color(from var(--tint) srgb r g b / 0.9));\n}\n.border-light\\/95{\nborder-color: color-mix(in lab, color(from var(--white) srgb r g b / 0.95) 75%, color(from var(--tint) srgb r g b / 0.95));\n}\n.border-lilac{\n--tw-border-opacity: 1;\nborder-color: rgb(142 78 198 / var(--tw-border-opacity));\n}\n.border-lilac-100{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / var(--tw-border-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-lilac-100\\/0{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-lilac-100\\/10{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-lilac-100\\/100{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-lilac-100\\/15{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-lilac-100\\/20{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-lilac-100\\/25{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-lilac-100\\/30{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-lilac-100\\/35{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-lilac-100\\/40{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-lilac-100\\/45{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-lilac-100\\/5{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-lilac-100\\/50{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-lilac-100\\/55{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-lilac-100\\/60{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-lilac-100\\/65{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-lilac-100\\/70{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-lilac-100\\/75{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-lilac-100\\/80{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-lilac-100\\/85{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-lilac-100\\/90{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-lilac-100\\/95{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-lilac-200{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / var(--tw-border-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-lilac-200\\/0{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-lilac-200\\/10{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-lilac-200\\/100{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-lilac-200\\/15{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-lilac-200\\/20{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-lilac-200\\/25{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-lilac-200\\/30{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-lilac-200\\/35{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-lilac-200\\/40{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-lilac-200\\/45{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-lilac-200\\/5{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-lilac-200\\/50{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-lilac-200\\/55{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-lilac-200\\/60{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-lilac-200\\/65{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-lilac-200\\/70{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-lilac-200\\/75{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-lilac-200\\/80{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-lilac-200\\/85{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-lilac-200\\/90{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-lilac-200\\/95{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-lilac-300{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / var(--tw-border-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-lilac-300\\/0{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-lilac-300\\/10{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-lilac-300\\/100{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-lilac-300\\/15{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-lilac-300\\/20{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-lilac-300\\/25{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-lilac-300\\/30{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-lilac-300\\/35{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-lilac-300\\/40{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-lilac-300\\/45{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-lilac-300\\/5{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-lilac-300\\/50{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-lilac-300\\/55{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-lilac-300\\/60{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-lilac-300\\/65{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-lilac-300\\/70{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-lilac-300\\/75{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-lilac-300\\/80{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-lilac-300\\/85{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-lilac-300\\/90{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-lilac-300\\/95{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-lilac-400{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / var(--tw-border-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-lilac-400\\/0{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-lilac-400\\/10{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-lilac-400\\/100{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-lilac-400\\/15{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-lilac-400\\/20{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-lilac-400\\/25{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-lilac-400\\/30{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-lilac-400\\/35{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-lilac-400\\/40{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-lilac-400\\/45{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-lilac-400\\/5{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-lilac-400\\/50{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-lilac-400\\/55{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-lilac-400\\/60{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-lilac-400\\/65{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-lilac-400\\/70{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-lilac-400\\/75{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-lilac-400\\/80{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-lilac-400\\/85{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-lilac-400\\/90{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-lilac-400\\/95{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-lilac-50{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / var(--tw-border-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-lilac-50\\/0{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-lilac-50\\/10{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-lilac-50\\/100{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-lilac-50\\/15{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-lilac-50\\/20{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-lilac-50\\/25{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-lilac-50\\/30{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-lilac-50\\/35{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-lilac-50\\/40{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-lilac-50\\/45{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-lilac-50\\/5{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-lilac-50\\/50{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-lilac-50\\/55{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-lilac-50\\/60{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-lilac-50\\/65{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-lilac-50\\/70{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-lilac-50\\/75{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-lilac-50\\/80{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-lilac-50\\/85{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-lilac-50\\/90{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-lilac-50\\/95{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-lilac-500{\n--tw-border-opacity: 1;\nborder-color: color(from #8e4ec6 srgb r g b / var(--tw-border-opacity));\n}\n.border-lilac-500\\/0{\nborder-color: color(from #8e4ec6 srgb r g b / 0);\n}\n.border-lilac-500\\/10{\nborder-color: color(from #8e4ec6 srgb r g b / 0.1);\n}\n.border-lilac-500\\/100{\nborder-color: color(from #8e4ec6 srgb r g b / 1);\n}\n.border-lilac-500\\/15{\nborder-color: color(from #8e4ec6 srgb r g b / 0.15);\n}\n.border-lilac-500\\/20{\nborder-color: color(from #8e4ec6 srgb r g b / 0.2);\n}\n.border-lilac-500\\/25{\nborder-color: color(from #8e4ec6 srgb r g b / 0.25);\n}\n.border-lilac-500\\/30{\nborder-color: color(from #8e4ec6 srgb r g b / 0.3);\n}\n.border-lilac-500\\/35{\nborder-color: color(from #8e4ec6 srgb r g b / 0.35);\n}\n.border-lilac-500\\/40{\nborder-color: color(from #8e4ec6 srgb r g b / 0.4);\n}\n.border-lilac-500\\/45{\nborder-color: color(from #8e4ec6 srgb r g b / 0.45);\n}\n.border-lilac-500\\/5{\nborder-color: color(from #8e4ec6 srgb r g b / 0.05);\n}\n.border-lilac-500\\/50{\nborder-color: color(from #8e4ec6 srgb r g b / 0.5);\n}\n.border-lilac-500\\/55{\nborder-color: color(from #8e4ec6 srgb r g b / 0.55);\n}\n.border-lilac-500\\/60{\nborder-color: color(from #8e4ec6 srgb r g b / 0.6);\n}\n.border-lilac-500\\/65{\nborder-color: color(from #8e4ec6 srgb r g b / 0.65);\n}\n.border-lilac-500\\/70{\nborder-color: color(from #8e4ec6 srgb r g b / 0.7);\n}\n.border-lilac-500\\/75{\nborder-color: color(from #8e4ec6 srgb r g b / 0.75);\n}\n.border-lilac-500\\/80{\nborder-color: color(from #8e4ec6 srgb r g b / 0.8);\n}\n.border-lilac-500\\/85{\nborder-color: color(from #8e4ec6 srgb r g b / 0.85);\n}\n.border-lilac-500\\/90{\nborder-color: color(from #8e4ec6 srgb r g b / 0.9);\n}\n.border-lilac-500\\/95{\nborder-color: color(from #8e4ec6 srgb r g b / 0.95);\n}\n.border-lilac-600{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / var(--tw-border-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-lilac-600\\/0{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-lilac-600\\/10{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-lilac-600\\/100{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-lilac-600\\/15{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-lilac-600\\/20{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-lilac-600\\/25{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-lilac-600\\/30{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-lilac-600\\/35{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-lilac-600\\/40{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-lilac-600\\/45{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-lilac-600\\/5{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-lilac-600\\/50{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-lilac-600\\/55{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-lilac-600\\/60{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-lilac-600\\/65{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-lilac-600\\/70{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-lilac-600\\/75{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-lilac-600\\/80{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-lilac-600\\/85{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-lilac-600\\/90{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-lilac-600\\/95{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-lilac-700{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / var(--tw-border-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-lilac-700\\/0{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-lilac-700\\/10{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-lilac-700\\/100{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-lilac-700\\/15{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-lilac-700\\/20{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-lilac-700\\/25{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-lilac-700\\/30{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-lilac-700\\/35{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-lilac-700\\/40{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-lilac-700\\/45{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-lilac-700\\/5{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-lilac-700\\/50{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-lilac-700\\/55{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-lilac-700\\/60{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-lilac-700\\/65{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-lilac-700\\/70{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-lilac-700\\/75{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-lilac-700\\/80{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-lilac-700\\/85{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-lilac-700\\/90{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-lilac-700\\/95{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-lilac-800{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / var(--tw-border-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-lilac-800\\/0{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-lilac-800\\/10{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-lilac-800\\/100{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-lilac-800\\/15{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-lilac-800\\/20{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-lilac-800\\/25{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-lilac-800\\/30{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-lilac-800\\/35{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-lilac-800\\/40{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-lilac-800\\/45{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-lilac-800\\/5{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-lilac-800\\/50{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-lilac-800\\/55{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-lilac-800\\/60{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-lilac-800\\/65{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-lilac-800\\/70{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-lilac-800\\/75{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-lilac-800\\/80{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-lilac-800\\/85{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-lilac-800\\/90{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-lilac-800\\/95{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-lilac-900{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / var(--tw-border-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-lilac-900\\/0{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-lilac-900\\/10{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-lilac-900\\/100{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-lilac-900\\/15{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-lilac-900\\/20{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-lilac-900\\/25{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-lilac-900\\/30{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-lilac-900\\/35{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-lilac-900\\/40{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-lilac-900\\/45{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-lilac-900\\/5{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-lilac-900\\/50{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-lilac-900\\/55{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-lilac-900\\/60{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-lilac-900\\/65{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-lilac-900\\/70{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-lilac-900\\/75{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-lilac-900\\/80{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-lilac-900\\/85{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-lilac-900\\/90{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-lilac-900\\/95{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-lilac-950{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / var(--tw-border-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-lilac-950\\/0{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-lilac-950\\/10{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-lilac-950\\/100{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-lilac-950\\/15{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-lilac-950\\/20{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-lilac-950\\/25{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-lilac-950\\/30{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-lilac-950\\/35{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-lilac-950\\/40{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-lilac-950\\/45{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-lilac-950\\/5{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-lilac-950\\/50{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-lilac-950\\/55{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-lilac-950\\/60{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-lilac-950\\/65{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-lilac-950\\/70{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-lilac-950\\/75{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-lilac-950\\/80{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-lilac-950\\/85{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-lilac-950\\/90{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-lilac-950\\/95{\nborder-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-lilac\\/0{\nborder-color: rgb(142 78 198 / 0);\n}\n.border-lilac\\/10{\nborder-color: rgb(142 78 198 / 0.1);\n}\n.border-lilac\\/100{\nborder-color: rgb(142 78 198 / 1);\n}\n.border-lilac\\/15{\nborder-color: rgb(142 78 198 / 0.15);\n}\n.border-lilac\\/20{\nborder-color: rgb(142 78 198 / 0.2);\n}\n.border-lilac\\/25{\nborder-color: rgb(142 78 198 / 0.25);\n}\n.border-lilac\\/30{\nborder-color: rgb(142 78 198 / 0.3);\n}\n.border-lilac\\/35{\nborder-color: rgb(142 78 198 / 0.35);\n}\n.border-lilac\\/40{\nborder-color: rgb(142 78 198 / 0.4);\n}\n.border-lilac\\/45{\nborder-color: rgb(142 78 198 / 0.45);\n}\n.border-lilac\\/5{\nborder-color: rgb(142 78 198 / 0.05);\n}\n.border-lilac\\/50{\nborder-color: rgb(142 78 198 / 0.5);\n}\n.border-lilac\\/55{\nborder-color: rgb(142 78 198 / 0.55);\n}\n.border-lilac\\/60{\nborder-color: rgb(142 78 198 / 0.6);\n}\n.border-lilac\\/65{\nborder-color: rgb(142 78 198 / 0.65);\n}\n.border-lilac\\/70{\nborder-color: rgb(142 78 198 / 0.7);\n}\n.border-lilac\\/75{\nborder-color: rgb(142 78 198 / 0.75);\n}\n.border-lilac\\/80{\nborder-color: rgb(142 78 198 / 0.8);\n}\n.border-lilac\\/85{\nborder-color: rgb(142 78 198 / 0.85);\n}\n.border-lilac\\/90{\nborder-color: rgb(142 78 198 / 0.9);\n}\n.border-lilac\\/95{\nborder-color: rgb(142 78 198 / 0.95);\n}\n.border-marigold{\n--tw-border-opacity: 1;\nborder-color: rgb(255 193 0 / var(--tw-border-opacity));\n}\n.border-marigold-100{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / var(--tw-border-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-marigold-100\\/0{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-marigold-100\\/10{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-marigold-100\\/100{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-marigold-100\\/15{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-marigold-100\\/20{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-marigold-100\\/25{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-marigold-100\\/30{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-marigold-100\\/35{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-marigold-100\\/40{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-marigold-100\\/45{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-marigold-100\\/5{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-marigold-100\\/50{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-marigold-100\\/55{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-marigold-100\\/60{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-marigold-100\\/65{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-marigold-100\\/70{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-marigold-100\\/75{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-marigold-100\\/80{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-marigold-100\\/85{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-marigold-100\\/90{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-marigold-100\\/95{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-marigold-200{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / var(--tw-border-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-marigold-200\\/0{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-marigold-200\\/10{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-marigold-200\\/100{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-marigold-200\\/15{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-marigold-200\\/20{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-marigold-200\\/25{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-marigold-200\\/30{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-marigold-200\\/35{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-marigold-200\\/40{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-marigold-200\\/45{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-marigold-200\\/5{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-marigold-200\\/50{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-marigold-200\\/55{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-marigold-200\\/60{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-marigold-200\\/65{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-marigold-200\\/70{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-marigold-200\\/75{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-marigold-200\\/80{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-marigold-200\\/85{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-marigold-200\\/90{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-marigold-200\\/95{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-marigold-300{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / var(--tw-border-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-marigold-300\\/0{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-marigold-300\\/10{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-marigold-300\\/100{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-marigold-300\\/15{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-marigold-300\\/20{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-marigold-300\\/25{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-marigold-300\\/30{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-marigold-300\\/35{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-marigold-300\\/40{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-marigold-300\\/45{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-marigold-300\\/5{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-marigold-300\\/50{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-marigold-300\\/55{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-marigold-300\\/60{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-marigold-300\\/65{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-marigold-300\\/70{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-marigold-300\\/75{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-marigold-300\\/80{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-marigold-300\\/85{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-marigold-300\\/90{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-marigold-300\\/95{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-marigold-400{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / var(--tw-border-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-marigold-400\\/0{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-marigold-400\\/10{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-marigold-400\\/100{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-marigold-400\\/15{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-marigold-400\\/20{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-marigold-400\\/25{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-marigold-400\\/30{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-marigold-400\\/35{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-marigold-400\\/40{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-marigold-400\\/45{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-marigold-400\\/5{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-marigold-400\\/50{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-marigold-400\\/55{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-marigold-400\\/60{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-marigold-400\\/65{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-marigold-400\\/70{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-marigold-400\\/75{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-marigold-400\\/80{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-marigold-400\\/85{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-marigold-400\\/90{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-marigold-400\\/95{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-marigold-50{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / var(--tw-border-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-marigold-50\\/0{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-marigold-50\\/10{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-marigold-50\\/100{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-marigold-50\\/15{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-marigold-50\\/20{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-marigold-50\\/25{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-marigold-50\\/30{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-marigold-50\\/35{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-marigold-50\\/40{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-marigold-50\\/45{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-marigold-50\\/5{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-marigold-50\\/50{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-marigold-50\\/55{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-marigold-50\\/60{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-marigold-50\\/65{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-marigold-50\\/70{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-marigold-50\\/75{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-marigold-50\\/80{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-marigold-50\\/85{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-marigold-50\\/90{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-marigold-50\\/95{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-marigold-500{\n--tw-border-opacity: 1;\nborder-color: color(from #ffc100 srgb r g b / var(--tw-border-opacity));\n}\n.border-marigold-500\\/0{\nborder-color: color(from #ffc100 srgb r g b / 0);\n}\n.border-marigold-500\\/10{\nborder-color: color(from #ffc100 srgb r g b / 0.1);\n}\n.border-marigold-500\\/100{\nborder-color: color(from #ffc100 srgb r g b / 1);\n}\n.border-marigold-500\\/15{\nborder-color: color(from #ffc100 srgb r g b / 0.15);\n}\n.border-marigold-500\\/20{\nborder-color: color(from #ffc100 srgb r g b / 0.2);\n}\n.border-marigold-500\\/25{\nborder-color: color(from #ffc100 srgb r g b / 0.25);\n}\n.border-marigold-500\\/30{\nborder-color: color(from #ffc100 srgb r g b / 0.3);\n}\n.border-marigold-500\\/35{\nborder-color: color(from #ffc100 srgb r g b / 0.35);\n}\n.border-marigold-500\\/40{\nborder-color: color(from #ffc100 srgb r g b / 0.4);\n}\n.border-marigold-500\\/45{\nborder-color: color(from #ffc100 srgb r g b / 0.45);\n}\n.border-marigold-500\\/5{\nborder-color: color(from #ffc100 srgb r g b / 0.05);\n}\n.border-marigold-500\\/50{\nborder-color: color(from #ffc100 srgb r g b / 0.5);\n}\n.border-marigold-500\\/55{\nborder-color: color(from #ffc100 srgb r g b / 0.55);\n}\n.border-marigold-500\\/60{\nborder-color: color(from #ffc100 srgb r g b / 0.6);\n}\n.border-marigold-500\\/65{\nborder-color: color(from #ffc100 srgb r g b / 0.65);\n}\n.border-marigold-500\\/70{\nborder-color: color(from #ffc100 srgb r g b / 0.7);\n}\n.border-marigold-500\\/75{\nborder-color: color(from #ffc100 srgb r g b / 0.75);\n}\n.border-marigold-500\\/80{\nborder-color: color(from #ffc100 srgb r g b / 0.8);\n}\n.border-marigold-500\\/85{\nborder-color: color(from #ffc100 srgb r g b / 0.85);\n}\n.border-marigold-500\\/90{\nborder-color: color(from #ffc100 srgb r g b / 0.9);\n}\n.border-marigold-500\\/95{\nborder-color: color(from #ffc100 srgb r g b / 0.95);\n}\n.border-marigold-600{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / var(--tw-border-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-marigold-600\\/0{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-marigold-600\\/10{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-marigold-600\\/100{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-marigold-600\\/15{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-marigold-600\\/20{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-marigold-600\\/25{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-marigold-600\\/30{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-marigold-600\\/35{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-marigold-600\\/40{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-marigold-600\\/45{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-marigold-600\\/5{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-marigold-600\\/50{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-marigold-600\\/55{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-marigold-600\\/60{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-marigold-600\\/65{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-marigold-600\\/70{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-marigold-600\\/75{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-marigold-600\\/80{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-marigold-600\\/85{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-marigold-600\\/90{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-marigold-600\\/95{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-marigold-700{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / var(--tw-border-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-marigold-700\\/0{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-marigold-700\\/10{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-marigold-700\\/100{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-marigold-700\\/15{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-marigold-700\\/20{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-marigold-700\\/25{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-marigold-700\\/30{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-marigold-700\\/35{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-marigold-700\\/40{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-marigold-700\\/45{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-marigold-700\\/5{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-marigold-700\\/50{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-marigold-700\\/55{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-marigold-700\\/60{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-marigold-700\\/65{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-marigold-700\\/70{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-marigold-700\\/75{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-marigold-700\\/80{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-marigold-700\\/85{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-marigold-700\\/90{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-marigold-700\\/95{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-marigold-800{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / var(--tw-border-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-marigold-800\\/0{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-marigold-800\\/10{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-marigold-800\\/100{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-marigold-800\\/15{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-marigold-800\\/20{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-marigold-800\\/25{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-marigold-800\\/30{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-marigold-800\\/35{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-marigold-800\\/40{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-marigold-800\\/45{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-marigold-800\\/5{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-marigold-800\\/50{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-marigold-800\\/55{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-marigold-800\\/60{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-marigold-800\\/65{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-marigold-800\\/70{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-marigold-800\\/75{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-marigold-800\\/80{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-marigold-800\\/85{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-marigold-800\\/90{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-marigold-800\\/95{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-marigold-900{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / var(--tw-border-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-marigold-900\\/0{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-marigold-900\\/10{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-marigold-900\\/100{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-marigold-900\\/15{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-marigold-900\\/20{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-marigold-900\\/25{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-marigold-900\\/30{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-marigold-900\\/35{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-marigold-900\\/40{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-marigold-900\\/45{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-marigold-900\\/5{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-marigold-900\\/50{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-marigold-900\\/55{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-marigold-900\\/60{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-marigold-900\\/65{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-marigold-900\\/70{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-marigold-900\\/75{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-marigold-900\\/80{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-marigold-900\\/85{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-marigold-900\\/90{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-marigold-900\\/95{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-marigold-950{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / var(--tw-border-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-marigold-950\\/0{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-marigold-950\\/10{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-marigold-950\\/100{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-marigold-950\\/15{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-marigold-950\\/20{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-marigold-950\\/25{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-marigold-950\\/30{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-marigold-950\\/35{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-marigold-950\\/40{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-marigold-950\\/45{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-marigold-950\\/5{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-marigold-950\\/50{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-marigold-950\\/55{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-marigold-950\\/60{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-marigold-950\\/65{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-marigold-950\\/70{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-marigold-950\\/75{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-marigold-950\\/80{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-marigold-950\\/85{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-marigold-950\\/90{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-marigold-950\\/95{\nborder-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-marigold\\/0{\nborder-color: rgb(255 193 0 / 0);\n}\n.border-marigold\\/10{\nborder-color: rgb(255 193 0 / 0.1);\n}\n.border-marigold\\/100{\nborder-color: rgb(255 193 0 / 1);\n}\n.border-marigold\\/15{\nborder-color: rgb(255 193 0 / 0.15);\n}\n.border-marigold\\/20{\nborder-color: rgb(255 193 0 / 0.2);\n}\n.border-marigold\\/25{\nborder-color: rgb(255 193 0 / 0.25);\n}\n.border-marigold\\/30{\nborder-color: rgb(255 193 0 / 0.3);\n}\n.border-marigold\\/35{\nborder-color: rgb(255 193 0 / 0.35);\n}\n.border-marigold\\/40{\nborder-color: rgb(255 193 0 / 0.4);\n}\n.border-marigold\\/45{\nborder-color: rgb(255 193 0 / 0.45);\n}\n.border-marigold\\/5{\nborder-color: rgb(255 193 0 / 0.05);\n}\n.border-marigold\\/50{\nborder-color: rgb(255 193 0 / 0.5);\n}\n.border-marigold\\/55{\nborder-color: rgb(255 193 0 / 0.55);\n}\n.border-marigold\\/60{\nborder-color: rgb(255 193 0 / 0.6);\n}\n.border-marigold\\/65{\nborder-color: rgb(255 193 0 / 0.65);\n}\n.border-marigold\\/70{\nborder-color: rgb(255 193 0 / 0.7);\n}\n.border-marigold\\/75{\nborder-color: rgb(255 193 0 / 0.75);\n}\n.border-marigold\\/80{\nborder-color: rgb(255 193 0 / 0.8);\n}\n.border-marigold\\/85{\nborder-color: rgb(255 193 0 / 0.85);\n}\n.border-marigold\\/90{\nborder-color: rgb(255 193 0 / 0.9);\n}\n.border-marigold\\/95{\nborder-color: rgb(255 193 0 / 0.95);\n}\n.border-muted{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)) 80%, color(from var(--tint) srgb r g b / var(--tw-border-opacity)));\n}\n.border-muted\\/0{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0) 80%, color(from var(--tint) srgb r g b / 0));\n}\n.border-muted\\/10{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.1) 80%, color(from var(--tint) srgb r g b / 0.1));\n}\n.border-muted\\/100{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 80%, color(from var(--tint) srgb r g b / 1));\n}\n.border-muted\\/15{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.15) 80%, color(from var(--tint) srgb r g b / 0.15));\n}\n.border-muted\\/20{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.2) 80%, color(from var(--tint) srgb r g b / 0.2));\n}\n.border-muted\\/25{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.25) 80%, color(from var(--tint) srgb r g b / 0.25));\n}\n.border-muted\\/30{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.3) 80%, color(from var(--tint) srgb r g b / 0.3));\n}\n.border-muted\\/35{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.35) 80%, color(from var(--tint) srgb r g b / 0.35));\n}\n.border-muted\\/40{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.4) 80%, color(from var(--tint) srgb r g b / 0.4));\n}\n.border-muted\\/45{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.45) 80%, color(from var(--tint) srgb r g b / 0.45));\n}\n.border-muted\\/5{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.05) 80%, color(from var(--tint) srgb r g b / 0.05));\n}\n.border-muted\\/50{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.5) 80%, color(from var(--tint) srgb r g b / 0.5));\n}\n.border-muted\\/55{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.55) 80%, color(from var(--tint) srgb r g b / 0.55));\n}\n.border-muted\\/60{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.6) 80%, color(from var(--tint) srgb r g b / 0.6));\n}\n.border-muted\\/65{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.65) 80%, color(from var(--tint) srgb r g b / 0.65));\n}\n.border-muted\\/70{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.7) 80%, color(from var(--tint) srgb r g b / 0.7));\n}\n.border-muted\\/75{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.75) 80%, color(from var(--tint) srgb r g b / 0.75));\n}\n.border-muted\\/80{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.8) 80%, color(from var(--tint) srgb r g b / 0.8));\n}\n.border-muted\\/85{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.85) 80%, color(from var(--tint) srgb r g b / 0.85));\n}\n.border-muted\\/90{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.9) 80%, color(from var(--tint) srgb r g b / 0.9));\n}\n.border-muted\\/95{\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.95) 80%, color(from var(--tint) srgb r g b / 0.95));\n}\n.border-olive{\n--tw-border-opacity: 1;\nborder-color: rgb(118 155 141 / var(--tw-border-opacity));\n}\n.border-olive-100{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / var(--tw-border-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-olive-100\\/0{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-olive-100\\/10{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-olive-100\\/100{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-olive-100\\/15{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-olive-100\\/20{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-olive-100\\/25{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-olive-100\\/30{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-olive-100\\/35{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-olive-100\\/40{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-olive-100\\/45{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-olive-100\\/5{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-olive-100\\/50{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-olive-100\\/55{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-olive-100\\/60{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-olive-100\\/65{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-olive-100\\/70{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-olive-100\\/75{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-olive-100\\/80{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-olive-100\\/85{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-olive-100\\/90{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-olive-100\\/95{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-olive-200{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / var(--tw-border-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-olive-200\\/0{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-olive-200\\/10{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-olive-200\\/100{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-olive-200\\/15{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-olive-200\\/20{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-olive-200\\/25{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-olive-200\\/30{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-olive-200\\/35{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-olive-200\\/40{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-olive-200\\/45{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-olive-200\\/5{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-olive-200\\/50{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-olive-200\\/55{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-olive-200\\/60{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-olive-200\\/65{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-olive-200\\/70{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-olive-200\\/75{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-olive-200\\/80{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-olive-200\\/85{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-olive-200\\/90{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-olive-200\\/95{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-olive-300{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / var(--tw-border-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-olive-300\\/0{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-olive-300\\/10{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-olive-300\\/100{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-olive-300\\/15{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-olive-300\\/20{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-olive-300\\/25{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-olive-300\\/30{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-olive-300\\/35{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-olive-300\\/40{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-olive-300\\/45{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-olive-300\\/5{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-olive-300\\/50{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-olive-300\\/55{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-olive-300\\/60{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-olive-300\\/65{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-olive-300\\/70{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-olive-300\\/75{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-olive-300\\/80{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-olive-300\\/85{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-olive-300\\/90{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-olive-300\\/95{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-olive-400{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / var(--tw-border-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-olive-400\\/0{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-olive-400\\/10{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-olive-400\\/100{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-olive-400\\/15{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-olive-400\\/20{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-olive-400\\/25{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-olive-400\\/30{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-olive-400\\/35{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-olive-400\\/40{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-olive-400\\/45{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-olive-400\\/5{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-olive-400\\/50{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-olive-400\\/55{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-olive-400\\/60{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-olive-400\\/65{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-olive-400\\/70{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-olive-400\\/75{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-olive-400\\/80{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-olive-400\\/85{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-olive-400\\/90{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-olive-400\\/95{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-olive-50{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / var(--tw-border-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-olive-50\\/0{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-olive-50\\/10{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-olive-50\\/100{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-olive-50\\/15{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-olive-50\\/20{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-olive-50\\/25{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-olive-50\\/30{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-olive-50\\/35{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-olive-50\\/40{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-olive-50\\/45{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-olive-50\\/5{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-olive-50\\/50{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-olive-50\\/55{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-olive-50\\/60{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-olive-50\\/65{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-olive-50\\/70{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-olive-50\\/75{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-olive-50\\/80{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-olive-50\\/85{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-olive-50\\/90{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-olive-50\\/95{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-olive-500{\n--tw-border-opacity: 1;\nborder-color: color(from #769b8d srgb r g b / var(--tw-border-opacity));\n}\n.border-olive-500\\/0{\nborder-color: color(from #769b8d srgb r g b / 0);\n}\n.border-olive-500\\/10{\nborder-color: color(from #769b8d srgb r g b / 0.1);\n}\n.border-olive-500\\/100{\nborder-color: color(from #769b8d srgb r g b / 1);\n}\n.border-olive-500\\/15{\nborder-color: color(from #769b8d srgb r g b / 0.15);\n}\n.border-olive-500\\/20{\nborder-color: color(from #769b8d srgb r g b / 0.2);\n}\n.border-olive-500\\/25{\nborder-color: color(from #769b8d srgb r g b / 0.25);\n}\n.border-olive-500\\/30{\nborder-color: color(from #769b8d srgb r g b / 0.3);\n}\n.border-olive-500\\/35{\nborder-color: color(from #769b8d srgb r g b / 0.35);\n}\n.border-olive-500\\/40{\nborder-color: color(from #769b8d srgb r g b / 0.4);\n}\n.border-olive-500\\/45{\nborder-color: color(from #769b8d srgb r g b / 0.45);\n}\n.border-olive-500\\/5{\nborder-color: color(from #769b8d srgb r g b / 0.05);\n}\n.border-olive-500\\/50{\nborder-color: color(from #769b8d srgb r g b / 0.5);\n}\n.border-olive-500\\/55{\nborder-color: color(from #769b8d srgb r g b / 0.55);\n}\n.border-olive-500\\/60{\nborder-color: color(from #769b8d srgb r g b / 0.6);\n}\n.border-olive-500\\/65{\nborder-color: color(from #769b8d srgb r g b / 0.65);\n}\n.border-olive-500\\/70{\nborder-color: color(from #769b8d srgb r g b / 0.7);\n}\n.border-olive-500\\/75{\nborder-color: color(from #769b8d srgb r g b / 0.75);\n}\n.border-olive-500\\/80{\nborder-color: color(from #769b8d srgb r g b / 0.8);\n}\n.border-olive-500\\/85{\nborder-color: color(from #769b8d srgb r g b / 0.85);\n}\n.border-olive-500\\/90{\nborder-color: color(from #769b8d srgb r g b / 0.9);\n}\n.border-olive-500\\/95{\nborder-color: color(from #769b8d srgb r g b / 0.95);\n}\n.border-olive-600{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / var(--tw-border-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-olive-600\\/0{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-olive-600\\/10{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-olive-600\\/100{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-olive-600\\/15{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-olive-600\\/20{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-olive-600\\/25{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-olive-600\\/30{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-olive-600\\/35{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-olive-600\\/40{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-olive-600\\/45{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-olive-600\\/5{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-olive-600\\/50{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-olive-600\\/55{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-olive-600\\/60{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-olive-600\\/65{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-olive-600\\/70{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-olive-600\\/75{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-olive-600\\/80{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-olive-600\\/85{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-olive-600\\/90{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-olive-600\\/95{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-olive-700{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / var(--tw-border-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-olive-700\\/0{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-olive-700\\/10{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-olive-700\\/100{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-olive-700\\/15{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-olive-700\\/20{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-olive-700\\/25{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-olive-700\\/30{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-olive-700\\/35{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-olive-700\\/40{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-olive-700\\/45{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-olive-700\\/5{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-olive-700\\/50{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-olive-700\\/55{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-olive-700\\/60{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-olive-700\\/65{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-olive-700\\/70{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-olive-700\\/75{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-olive-700\\/80{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-olive-700\\/85{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-olive-700\\/90{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-olive-700\\/95{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-olive-800{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / var(--tw-border-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-olive-800\\/0{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-olive-800\\/10{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-olive-800\\/100{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-olive-800\\/15{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-olive-800\\/20{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-olive-800\\/25{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-olive-800\\/30{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-olive-800\\/35{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-olive-800\\/40{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-olive-800\\/45{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-olive-800\\/5{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-olive-800\\/50{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-olive-800\\/55{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-olive-800\\/60{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-olive-800\\/65{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-olive-800\\/70{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-olive-800\\/75{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-olive-800\\/80{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-olive-800\\/85{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-olive-800\\/90{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-olive-800\\/95{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-olive-900{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / var(--tw-border-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-olive-900\\/0{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-olive-900\\/10{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-olive-900\\/100{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-olive-900\\/15{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-olive-900\\/20{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-olive-900\\/25{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-olive-900\\/30{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-olive-900\\/35{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-olive-900\\/40{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-olive-900\\/45{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-olive-900\\/5{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-olive-900\\/50{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-olive-900\\/55{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-olive-900\\/60{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-olive-900\\/65{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-olive-900\\/70{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-olive-900\\/75{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-olive-900\\/80{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-olive-900\\/85{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-olive-900\\/90{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-olive-900\\/95{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-olive-950{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / var(--tw-border-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-olive-950\\/0{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-olive-950\\/10{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-olive-950\\/100{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-olive-950\\/15{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-olive-950\\/20{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-olive-950\\/25{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-olive-950\\/30{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-olive-950\\/35{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-olive-950\\/40{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-olive-950\\/45{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-olive-950\\/5{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-olive-950\\/50{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-olive-950\\/55{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-olive-950\\/60{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-olive-950\\/65{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-olive-950\\/70{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-olive-950\\/75{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-olive-950\\/80{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-olive-950\\/85{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-olive-950\\/90{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-olive-950\\/95{\nborder-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-olive\\/0{\nborder-color: rgb(118 155 141 / 0);\n}\n.border-olive\\/10{\nborder-color: rgb(118 155 141 / 0.1);\n}\n.border-olive\\/100{\nborder-color: rgb(118 155 141 / 1);\n}\n.border-olive\\/15{\nborder-color: rgb(118 155 141 / 0.15);\n}\n.border-olive\\/20{\nborder-color: rgb(118 155 141 / 0.2);\n}\n.border-olive\\/25{\nborder-color: rgb(118 155 141 / 0.25);\n}\n.border-olive\\/30{\nborder-color: rgb(118 155 141 / 0.3);\n}\n.border-olive\\/35{\nborder-color: rgb(118 155 141 / 0.35);\n}\n.border-olive\\/40{\nborder-color: rgb(118 155 141 / 0.4);\n}\n.border-olive\\/45{\nborder-color: rgb(118 155 141 / 0.45);\n}\n.border-olive\\/5{\nborder-color: rgb(118 155 141 / 0.05);\n}\n.border-olive\\/50{\nborder-color: rgb(118 155 141 / 0.5);\n}\n.border-olive\\/55{\nborder-color: rgb(118 155 141 / 0.55);\n}\n.border-olive\\/60{\nborder-color: rgb(118 155 141 / 0.6);\n}\n.border-olive\\/65{\nborder-color: rgb(118 155 141 / 0.65);\n}\n.border-olive\\/70{\nborder-color: rgb(118 155 141 / 0.7);\n}\n.border-olive\\/75{\nborder-color: rgb(118 155 141 / 0.75);\n}\n.border-olive\\/80{\nborder-color: rgb(118 155 141 / 0.8);\n}\n.border-olive\\/85{\nborder-color: rgb(118 155 141 / 0.85);\n}\n.border-olive\\/90{\nborder-color: rgb(118 155 141 / 0.9);\n}\n.border-olive\\/95{\nborder-color: rgb(118 155 141 / 0.95);\n}\n.border-primary{\nborder-color: var(--primary);\n}\n.border-primary-100{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-border-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-primary-100\\/0{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-primary-100\\/10{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-primary-100\\/100{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-primary-100\\/15{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-primary-100\\/20{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-primary-100\\/25{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-primary-100\\/30{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-primary-100\\/35{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-primary-100\\/40{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-primary-100\\/45{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-primary-100\\/5{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-primary-100\\/50{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-primary-100\\/55{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-primary-100\\/60{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-primary-100\\/65{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-primary-100\\/70{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-primary-100\\/75{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-primary-100\\/80{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-primary-100\\/85{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-primary-100\\/90{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-primary-100\\/95{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-primary-200{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-border-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-primary-200\\/0{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-primary-200\\/10{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-primary-200\\/100{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-primary-200\\/15{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-primary-200\\/20{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-primary-200\\/25{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-primary-200\\/30{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-primary-200\\/35{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-primary-200\\/40{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-primary-200\\/45{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-primary-200\\/5{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-primary-200\\/50{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-primary-200\\/55{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-primary-200\\/60{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-primary-200\\/65{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-primary-200\\/70{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-primary-200\\/75{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-primary-200\\/80{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-primary-200\\/85{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-primary-200\\/90{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-primary-200\\/95{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-primary-300{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-border-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-primary-300\\/0{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-primary-300\\/10{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-primary-300\\/100{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-primary-300\\/15{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-primary-300\\/20{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-primary-300\\/25{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-primary-300\\/30{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-primary-300\\/35{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-primary-300\\/40{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-primary-300\\/45{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-primary-300\\/5{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-primary-300\\/50{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-primary-300\\/55{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-primary-300\\/60{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-primary-300\\/65{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-primary-300\\/70{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-primary-300\\/75{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-primary-300\\/80{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-primary-300\\/85{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-primary-300\\/90{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-primary-300\\/95{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-primary-400{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-border-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-primary-400\\/0{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-primary-400\\/10{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-primary-400\\/100{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-primary-400\\/15{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-primary-400\\/20{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-primary-400\\/25{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-primary-400\\/30{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-primary-400\\/35{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-primary-400\\/40{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-primary-400\\/45{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-primary-400\\/5{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-primary-400\\/50{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-primary-400\\/55{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-primary-400\\/60{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-primary-400\\/65{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-primary-400\\/70{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-primary-400\\/75{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-primary-400\\/80{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-primary-400\\/85{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-primary-400\\/90{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-primary-400\\/95{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-primary-50{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-border-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-primary-50\\/0{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-primary-50\\/10{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-primary-50\\/100{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-primary-50\\/15{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-primary-50\\/20{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-primary-50\\/25{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-primary-50\\/30{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-primary-50\\/35{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-primary-50\\/40{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-primary-50\\/45{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-primary-50\\/5{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-primary-50\\/50{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-primary-50\\/55{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-primary-50\\/60{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-primary-50\\/65{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-primary-50\\/70{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-primary-50\\/75{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-primary-50\\/80{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-primary-50\\/85{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-primary-50\\/90{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-primary-50\\/95{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-primary-500{\n--tw-border-opacity: 1;\nborder-color: color(from var(--primary) srgb r g b / var(--tw-border-opacity));\n}\n.border-primary-500\\/0{\nborder-color: color(from var(--primary) srgb r g b / 0);\n}\n.border-primary-500\\/10{\nborder-color: color(from var(--primary) srgb r g b / 0.1);\n}\n.border-primary-500\\/100{\nborder-color: color(from var(--primary) srgb r g b / 1);\n}\n.border-primary-500\\/15{\nborder-color: color(from var(--primary) srgb r g b / 0.15);\n}\n.border-primary-500\\/20{\nborder-color: color(from var(--primary) srgb r g b / 0.2);\n}\n.border-primary-500\\/25{\nborder-color: color(from var(--primary) srgb r g b / 0.25);\n}\n.border-primary-500\\/30{\nborder-color: color(from var(--primary) srgb r g b / 0.3);\n}\n.border-primary-500\\/35{\nborder-color: color(from var(--primary) srgb r g b / 0.35);\n}\n.border-primary-500\\/40{\nborder-color: color(from var(--primary) srgb r g b / 0.4);\n}\n.border-primary-500\\/45{\nborder-color: color(from var(--primary) srgb r g b / 0.45);\n}\n.border-primary-500\\/5{\nborder-color: color(from var(--primary) srgb r g b / 0.05);\n}\n.border-primary-500\\/50{\nborder-color: color(from var(--primary) srgb r g b / 0.5);\n}\n.border-primary-500\\/55{\nborder-color: color(from var(--primary) srgb r g b / 0.55);\n}\n.border-primary-500\\/60{\nborder-color: color(from var(--primary) srgb r g b / 0.6);\n}\n.border-primary-500\\/65{\nborder-color: color(from var(--primary) srgb r g b / 0.65);\n}\n.border-primary-500\\/70{\nborder-color: color(from var(--primary) srgb r g b / 0.7);\n}\n.border-primary-500\\/75{\nborder-color: color(from var(--primary) srgb r g b / 0.75);\n}\n.border-primary-500\\/80{\nborder-color: color(from var(--primary) srgb r g b / 0.8);\n}\n.border-primary-500\\/85{\nborder-color: color(from var(--primary) srgb r g b / 0.85);\n}\n.border-primary-500\\/90{\nborder-color: color(from var(--primary) srgb r g b / 0.9);\n}\n.border-primary-500\\/95{\nborder-color: color(from var(--primary) srgb r g b / 0.95);\n}\n.border-primary-600{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-border-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-primary-600\\/0{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-primary-600\\/10{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-primary-600\\/100{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-primary-600\\/15{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-primary-600\\/20{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-primary-600\\/25{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-primary-600\\/30{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-primary-600\\/35{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-primary-600\\/40{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-primary-600\\/45{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-primary-600\\/5{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-primary-600\\/50{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-primary-600\\/55{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-primary-600\\/60{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-primary-600\\/65{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-primary-600\\/70{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-primary-600\\/75{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-primary-600\\/80{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-primary-600\\/85{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-primary-600\\/90{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-primary-600\\/95{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-primary-700{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-border-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-primary-700\\/0{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-primary-700\\/10{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-primary-700\\/100{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-primary-700\\/15{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-primary-700\\/20{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-primary-700\\/25{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-primary-700\\/30{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-primary-700\\/35{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-primary-700\\/40{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-primary-700\\/45{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-primary-700\\/5{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-primary-700\\/50{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-primary-700\\/55{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-primary-700\\/60{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-primary-700\\/65{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-primary-700\\/70{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-primary-700\\/75{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-primary-700\\/80{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-primary-700\\/85{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-primary-700\\/90{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-primary-700\\/95{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-primary-800{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-border-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-primary-800\\/0{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-primary-800\\/10{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-primary-800\\/100{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-primary-800\\/15{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-primary-800\\/20{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-primary-800\\/25{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-primary-800\\/30{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-primary-800\\/35{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-primary-800\\/40{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-primary-800\\/45{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-primary-800\\/5{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-primary-800\\/50{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-primary-800\\/55{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-primary-800\\/60{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-primary-800\\/65{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-primary-800\\/70{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-primary-800\\/75{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-primary-800\\/80{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-primary-800\\/85{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-primary-800\\/90{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-primary-800\\/95{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-primary-900{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-border-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-primary-900\\/0{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-primary-900\\/10{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-primary-900\\/100{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-primary-900\\/15{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-primary-900\\/20{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-primary-900\\/25{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-primary-900\\/30{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-primary-900\\/35{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-primary-900\\/40{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-primary-900\\/45{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-primary-900\\/5{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-primary-900\\/50{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-primary-900\\/55{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-primary-900\\/60{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-primary-900\\/65{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-primary-900\\/70{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-primary-900\\/75{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-primary-900\\/80{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-primary-900\\/85{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-primary-900\\/90{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-primary-900\\/95{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-primary-950{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-border-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-primary-950\\/0{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-primary-950\\/10{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-primary-950\\/100{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-primary-950\\/15{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-primary-950\\/20{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-primary-950\\/25{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-primary-950\\/30{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-primary-950\\/35{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-primary-950\\/40{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-primary-950\\/45{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-primary-950\\/5{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-primary-950\\/50{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-primary-950\\/55{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-primary-950\\/60{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-primary-950\\/65{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-primary-950\\/70{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-primary-950\\/75{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-primary-950\\/80{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-primary-950\\/85{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-primary-950\\/90{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-primary-950\\/95{\nborder-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-pumpkin{\n--tw-border-opacity: 1;\nborder-color: rgb(247 106 21 / var(--tw-border-opacity));\n}\n.border-pumpkin-100{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / var(--tw-border-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-pumpkin-100\\/0{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-pumpkin-100\\/10{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-pumpkin-100\\/100{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-pumpkin-100\\/15{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-pumpkin-100\\/20{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-pumpkin-100\\/25{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-pumpkin-100\\/30{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-pumpkin-100\\/35{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-pumpkin-100\\/40{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-pumpkin-100\\/45{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-pumpkin-100\\/5{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-pumpkin-100\\/50{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-pumpkin-100\\/55{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-pumpkin-100\\/60{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-pumpkin-100\\/65{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-pumpkin-100\\/70{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-pumpkin-100\\/75{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-pumpkin-100\\/80{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-pumpkin-100\\/85{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-pumpkin-100\\/90{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-pumpkin-100\\/95{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-pumpkin-200{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / var(--tw-border-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-pumpkin-200\\/0{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-pumpkin-200\\/10{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-pumpkin-200\\/100{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-pumpkin-200\\/15{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-pumpkin-200\\/20{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-pumpkin-200\\/25{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-pumpkin-200\\/30{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-pumpkin-200\\/35{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-pumpkin-200\\/40{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-pumpkin-200\\/45{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-pumpkin-200\\/5{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-pumpkin-200\\/50{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-pumpkin-200\\/55{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-pumpkin-200\\/60{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-pumpkin-200\\/65{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-pumpkin-200\\/70{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-pumpkin-200\\/75{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-pumpkin-200\\/80{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-pumpkin-200\\/85{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-pumpkin-200\\/90{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-pumpkin-200\\/95{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-pumpkin-300{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / var(--tw-border-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-pumpkin-300\\/0{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-pumpkin-300\\/10{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-pumpkin-300\\/100{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-pumpkin-300\\/15{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-pumpkin-300\\/20{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-pumpkin-300\\/25{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-pumpkin-300\\/30{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-pumpkin-300\\/35{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-pumpkin-300\\/40{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-pumpkin-300\\/45{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-pumpkin-300\\/5{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-pumpkin-300\\/50{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-pumpkin-300\\/55{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-pumpkin-300\\/60{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-pumpkin-300\\/65{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-pumpkin-300\\/70{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-pumpkin-300\\/75{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-pumpkin-300\\/80{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-pumpkin-300\\/85{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-pumpkin-300\\/90{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-pumpkin-300\\/95{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-pumpkin-400{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / var(--tw-border-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-pumpkin-400\\/0{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-pumpkin-400\\/10{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-pumpkin-400\\/100{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-pumpkin-400\\/15{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-pumpkin-400\\/20{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-pumpkin-400\\/25{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-pumpkin-400\\/30{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-pumpkin-400\\/35{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-pumpkin-400\\/40{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-pumpkin-400\\/45{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-pumpkin-400\\/5{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-pumpkin-400\\/50{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-pumpkin-400\\/55{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-pumpkin-400\\/60{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-pumpkin-400\\/65{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-pumpkin-400\\/70{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-pumpkin-400\\/75{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-pumpkin-400\\/80{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-pumpkin-400\\/85{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-pumpkin-400\\/90{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-pumpkin-400\\/95{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-pumpkin-50{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / var(--tw-border-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-pumpkin-50\\/0{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-pumpkin-50\\/10{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-pumpkin-50\\/100{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-pumpkin-50\\/15{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-pumpkin-50\\/20{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-pumpkin-50\\/25{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-pumpkin-50\\/30{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-pumpkin-50\\/35{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-pumpkin-50\\/40{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-pumpkin-50\\/45{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-pumpkin-50\\/5{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-pumpkin-50\\/50{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-pumpkin-50\\/55{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-pumpkin-50\\/60{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-pumpkin-50\\/65{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-pumpkin-50\\/70{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-pumpkin-50\\/75{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-pumpkin-50\\/80{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-pumpkin-50\\/85{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-pumpkin-50\\/90{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-pumpkin-50\\/95{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-pumpkin-500{\n--tw-border-opacity: 1;\nborder-color: color(from #f76a15 srgb r g b / var(--tw-border-opacity));\n}\n.border-pumpkin-500\\/0{\nborder-color: color(from #f76a15 srgb r g b / 0);\n}\n.border-pumpkin-500\\/10{\nborder-color: color(from #f76a15 srgb r g b / 0.1);\n}\n.border-pumpkin-500\\/100{\nborder-color: color(from #f76a15 srgb r g b / 1);\n}\n.border-pumpkin-500\\/15{\nborder-color: color(from #f76a15 srgb r g b / 0.15);\n}\n.border-pumpkin-500\\/20{\nborder-color: color(from #f76a15 srgb r g b / 0.2);\n}\n.border-pumpkin-500\\/25{\nborder-color: color(from #f76a15 srgb r g b / 0.25);\n}\n.border-pumpkin-500\\/30{\nborder-color: color(from #f76a15 srgb r g b / 0.3);\n}\n.border-pumpkin-500\\/35{\nborder-color: color(from #f76a15 srgb r g b / 0.35);\n}\n.border-pumpkin-500\\/40{\nborder-color: color(from #f76a15 srgb r g b / 0.4);\n}\n.border-pumpkin-500\\/45{\nborder-color: color(from #f76a15 srgb r g b / 0.45);\n}\n.border-pumpkin-500\\/5{\nborder-color: color(from #f76a15 srgb r g b / 0.05);\n}\n.border-pumpkin-500\\/50{\nborder-color: color(from #f76a15 srgb r g b / 0.5);\n}\n.border-pumpkin-500\\/55{\nborder-color: color(from #f76a15 srgb r g b / 0.55);\n}\n.border-pumpkin-500\\/60{\nborder-color: color(from #f76a15 srgb r g b / 0.6);\n}\n.border-pumpkin-500\\/65{\nborder-color: color(from #f76a15 srgb r g b / 0.65);\n}\n.border-pumpkin-500\\/70{\nborder-color: color(from #f76a15 srgb r g b / 0.7);\n}\n.border-pumpkin-500\\/75{\nborder-color: color(from #f76a15 srgb r g b / 0.75);\n}\n.border-pumpkin-500\\/80{\nborder-color: color(from #f76a15 srgb r g b / 0.8);\n}\n.border-pumpkin-500\\/85{\nborder-color: color(from #f76a15 srgb r g b / 0.85);\n}\n.border-pumpkin-500\\/90{\nborder-color: color(from #f76a15 srgb r g b / 0.9);\n}\n.border-pumpkin-500\\/95{\nborder-color: color(from #f76a15 srgb r g b / 0.95);\n}\n.border-pumpkin-600{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / var(--tw-border-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-pumpkin-600\\/0{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-pumpkin-600\\/10{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-pumpkin-600\\/100{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-pumpkin-600\\/15{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-pumpkin-600\\/20{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-pumpkin-600\\/25{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-pumpkin-600\\/30{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-pumpkin-600\\/35{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-pumpkin-600\\/40{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-pumpkin-600\\/45{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-pumpkin-600\\/5{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-pumpkin-600\\/50{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-pumpkin-600\\/55{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-pumpkin-600\\/60{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-pumpkin-600\\/65{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-pumpkin-600\\/70{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-pumpkin-600\\/75{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-pumpkin-600\\/80{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-pumpkin-600\\/85{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-pumpkin-600\\/90{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-pumpkin-600\\/95{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-pumpkin-700{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / var(--tw-border-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-pumpkin-700\\/0{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-pumpkin-700\\/10{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-pumpkin-700\\/100{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-pumpkin-700\\/15{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-pumpkin-700\\/20{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-pumpkin-700\\/25{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-pumpkin-700\\/30{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-pumpkin-700\\/35{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-pumpkin-700\\/40{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-pumpkin-700\\/45{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-pumpkin-700\\/5{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-pumpkin-700\\/50{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-pumpkin-700\\/55{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-pumpkin-700\\/60{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-pumpkin-700\\/65{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-pumpkin-700\\/70{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-pumpkin-700\\/75{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-pumpkin-700\\/80{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-pumpkin-700\\/85{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-pumpkin-700\\/90{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-pumpkin-700\\/95{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-pumpkin-800{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / var(--tw-border-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-pumpkin-800\\/0{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-pumpkin-800\\/10{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-pumpkin-800\\/100{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-pumpkin-800\\/15{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-pumpkin-800\\/20{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-pumpkin-800\\/25{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-pumpkin-800\\/30{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-pumpkin-800\\/35{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-pumpkin-800\\/40{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-pumpkin-800\\/45{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-pumpkin-800\\/5{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-pumpkin-800\\/50{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-pumpkin-800\\/55{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-pumpkin-800\\/60{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-pumpkin-800\\/65{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-pumpkin-800\\/70{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-pumpkin-800\\/75{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-pumpkin-800\\/80{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-pumpkin-800\\/85{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-pumpkin-800\\/90{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-pumpkin-800\\/95{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-pumpkin-900{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / var(--tw-border-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-pumpkin-900\\/0{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-pumpkin-900\\/10{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-pumpkin-900\\/100{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-pumpkin-900\\/15{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-pumpkin-900\\/20{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-pumpkin-900\\/25{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-pumpkin-900\\/30{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-pumpkin-900\\/35{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-pumpkin-900\\/40{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-pumpkin-900\\/45{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-pumpkin-900\\/5{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-pumpkin-900\\/50{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-pumpkin-900\\/55{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-pumpkin-900\\/60{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-pumpkin-900\\/65{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-pumpkin-900\\/70{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-pumpkin-900\\/75{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-pumpkin-900\\/80{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-pumpkin-900\\/85{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-pumpkin-900\\/90{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-pumpkin-900\\/95{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-pumpkin-950{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / var(--tw-border-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-pumpkin-950\\/0{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-pumpkin-950\\/10{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-pumpkin-950\\/100{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-pumpkin-950\\/15{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-pumpkin-950\\/20{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-pumpkin-950\\/25{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-pumpkin-950\\/30{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-pumpkin-950\\/35{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-pumpkin-950\\/40{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-pumpkin-950\\/45{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-pumpkin-950\\/5{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-pumpkin-950\\/50{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-pumpkin-950\\/55{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-pumpkin-950\\/60{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-pumpkin-950\\/65{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-pumpkin-950\\/70{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-pumpkin-950\\/75{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-pumpkin-950\\/80{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-pumpkin-950\\/85{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-pumpkin-950\\/90{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-pumpkin-950\\/95{\nborder-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-pumpkin\\/0{\nborder-color: rgb(247 106 21 / 0);\n}\n.border-pumpkin\\/10{\nborder-color: rgb(247 106 21 / 0.1);\n}\n.border-pumpkin\\/100{\nborder-color: rgb(247 106 21 / 1);\n}\n.border-pumpkin\\/15{\nborder-color: rgb(247 106 21 / 0.15);\n}\n.border-pumpkin\\/20{\nborder-color: rgb(247 106 21 / 0.2);\n}\n.border-pumpkin\\/25{\nborder-color: rgb(247 106 21 / 0.25);\n}\n.border-pumpkin\\/30{\nborder-color: rgb(247 106 21 / 0.3);\n}\n.border-pumpkin\\/35{\nborder-color: rgb(247 106 21 / 0.35);\n}\n.border-pumpkin\\/40{\nborder-color: rgb(247 106 21 / 0.4);\n}\n.border-pumpkin\\/45{\nborder-color: rgb(247 106 21 / 0.45);\n}\n.border-pumpkin\\/5{\nborder-color: rgb(247 106 21 / 0.05);\n}\n.border-pumpkin\\/50{\nborder-color: rgb(247 106 21 / 0.5);\n}\n.border-pumpkin\\/55{\nborder-color: rgb(247 106 21 / 0.55);\n}\n.border-pumpkin\\/60{\nborder-color: rgb(247 106 21 / 0.6);\n}\n.border-pumpkin\\/65{\nborder-color: rgb(247 106 21 / 0.65);\n}\n.border-pumpkin\\/70{\nborder-color: rgb(247 106 21 / 0.7);\n}\n.border-pumpkin\\/75{\nborder-color: rgb(247 106 21 / 0.75);\n}\n.border-pumpkin\\/80{\nborder-color: rgb(247 106 21 / 0.8);\n}\n.border-pumpkin\\/85{\nborder-color: rgb(247 106 21 / 0.85);\n}\n.border-pumpkin\\/90{\nborder-color: rgb(247 106 21 / 0.9);\n}\n.border-pumpkin\\/95{\nborder-color: rgb(247 106 21 / 0.95);\n}\n.border-sand{\n--tw-border-opacity: 1;\nborder-color: rgb(155 151 137 / var(--tw-border-opacity));\n}\n.border-sand-100{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / var(--tw-border-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-sand-100\\/0{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-sand-100\\/10{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-sand-100\\/100{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-sand-100\\/15{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-sand-100\\/20{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-sand-100\\/25{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-sand-100\\/30{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-sand-100\\/35{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-sand-100\\/40{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-sand-100\\/45{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-sand-100\\/5{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-sand-100\\/50{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-sand-100\\/55{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-sand-100\\/60{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-sand-100\\/65{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-sand-100\\/70{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-sand-100\\/75{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-sand-100\\/80{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-sand-100\\/85{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-sand-100\\/90{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-sand-100\\/95{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-sand-200{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / var(--tw-border-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-sand-200\\/0{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-sand-200\\/10{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-sand-200\\/100{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-sand-200\\/15{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-sand-200\\/20{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-sand-200\\/25{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-sand-200\\/30{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-sand-200\\/35{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-sand-200\\/40{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-sand-200\\/45{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-sand-200\\/5{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-sand-200\\/50{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-sand-200\\/55{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-sand-200\\/60{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-sand-200\\/65{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-sand-200\\/70{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-sand-200\\/75{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-sand-200\\/80{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-sand-200\\/85{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-sand-200\\/90{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-sand-200\\/95{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-sand-300{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / var(--tw-border-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-sand-300\\/0{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-sand-300\\/10{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-sand-300\\/100{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-sand-300\\/15{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-sand-300\\/20{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-sand-300\\/25{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-sand-300\\/30{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-sand-300\\/35{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-sand-300\\/40{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-sand-300\\/45{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-sand-300\\/5{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-sand-300\\/50{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-sand-300\\/55{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-sand-300\\/60{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-sand-300\\/65{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-sand-300\\/70{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-sand-300\\/75{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-sand-300\\/80{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-sand-300\\/85{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-sand-300\\/90{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-sand-300\\/95{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-sand-400{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / var(--tw-border-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-sand-400\\/0{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-sand-400\\/10{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-sand-400\\/100{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-sand-400\\/15{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-sand-400\\/20{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-sand-400\\/25{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-sand-400\\/30{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-sand-400\\/35{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-sand-400\\/40{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-sand-400\\/45{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-sand-400\\/5{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-sand-400\\/50{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-sand-400\\/55{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-sand-400\\/60{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-sand-400\\/65{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-sand-400\\/70{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-sand-400\\/75{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-sand-400\\/80{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-sand-400\\/85{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-sand-400\\/90{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-sand-400\\/95{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-sand-50{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / var(--tw-border-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-sand-50\\/0{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-sand-50\\/10{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-sand-50\\/100{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-sand-50\\/15{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-sand-50\\/20{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-sand-50\\/25{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-sand-50\\/30{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-sand-50\\/35{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-sand-50\\/40{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-sand-50\\/45{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-sand-50\\/5{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-sand-50\\/50{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-sand-50\\/55{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-sand-50\\/60{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-sand-50\\/65{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-sand-50\\/70{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-sand-50\\/75{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-sand-50\\/80{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-sand-50\\/85{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-sand-50\\/90{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-sand-50\\/95{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-sand-500{\n--tw-border-opacity: 1;\nborder-color: color(from #9b9789 srgb r g b / var(--tw-border-opacity));\n}\n.border-sand-500\\/0{\nborder-color: color(from #9b9789 srgb r g b / 0);\n}\n.border-sand-500\\/10{\nborder-color: color(from #9b9789 srgb r g b / 0.1);\n}\n.border-sand-500\\/100{\nborder-color: color(from #9b9789 srgb r g b / 1);\n}\n.border-sand-500\\/15{\nborder-color: color(from #9b9789 srgb r g b / 0.15);\n}\n.border-sand-500\\/20{\nborder-color: color(from #9b9789 srgb r g b / 0.2);\n}\n.border-sand-500\\/25{\nborder-color: color(from #9b9789 srgb r g b / 0.25);\n}\n.border-sand-500\\/30{\nborder-color: color(from #9b9789 srgb r g b / 0.3);\n}\n.border-sand-500\\/35{\nborder-color: color(from #9b9789 srgb r g b / 0.35);\n}\n.border-sand-500\\/40{\nborder-color: color(from #9b9789 srgb r g b / 0.4);\n}\n.border-sand-500\\/45{\nborder-color: color(from #9b9789 srgb r g b / 0.45);\n}\n.border-sand-500\\/5{\nborder-color: color(from #9b9789 srgb r g b / 0.05);\n}\n.border-sand-500\\/50{\nborder-color: color(from #9b9789 srgb r g b / 0.5);\n}\n.border-sand-500\\/55{\nborder-color: color(from #9b9789 srgb r g b / 0.55);\n}\n.border-sand-500\\/60{\nborder-color: color(from #9b9789 srgb r g b / 0.6);\n}\n.border-sand-500\\/65{\nborder-color: color(from #9b9789 srgb r g b / 0.65);\n}\n.border-sand-500\\/70{\nborder-color: color(from #9b9789 srgb r g b / 0.7);\n}\n.border-sand-500\\/75{\nborder-color: color(from #9b9789 srgb r g b / 0.75);\n}\n.border-sand-500\\/80{\nborder-color: color(from #9b9789 srgb r g b / 0.8);\n}\n.border-sand-500\\/85{\nborder-color: color(from #9b9789 srgb r g b / 0.85);\n}\n.border-sand-500\\/90{\nborder-color: color(from #9b9789 srgb r g b / 0.9);\n}\n.border-sand-500\\/95{\nborder-color: color(from #9b9789 srgb r g b / 0.95);\n}\n.border-sand-600{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / var(--tw-border-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-sand-600\\/0{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-sand-600\\/10{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-sand-600\\/100{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-sand-600\\/15{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-sand-600\\/20{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-sand-600\\/25{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-sand-600\\/30{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-sand-600\\/35{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-sand-600\\/40{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-sand-600\\/45{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-sand-600\\/5{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-sand-600\\/50{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-sand-600\\/55{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-sand-600\\/60{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-sand-600\\/65{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-sand-600\\/70{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-sand-600\\/75{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-sand-600\\/80{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-sand-600\\/85{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-sand-600\\/90{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-sand-600\\/95{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-sand-700{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / var(--tw-border-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-sand-700\\/0{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-sand-700\\/10{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-sand-700\\/100{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-sand-700\\/15{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-sand-700\\/20{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-sand-700\\/25{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-sand-700\\/30{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-sand-700\\/35{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-sand-700\\/40{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-sand-700\\/45{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-sand-700\\/5{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-sand-700\\/50{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-sand-700\\/55{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-sand-700\\/60{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-sand-700\\/65{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-sand-700\\/70{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-sand-700\\/75{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-sand-700\\/80{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-sand-700\\/85{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-sand-700\\/90{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-sand-700\\/95{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-sand-800{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / var(--tw-border-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-sand-800\\/0{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-sand-800\\/10{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-sand-800\\/100{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-sand-800\\/15{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-sand-800\\/20{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-sand-800\\/25{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-sand-800\\/30{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-sand-800\\/35{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-sand-800\\/40{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-sand-800\\/45{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-sand-800\\/5{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-sand-800\\/50{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-sand-800\\/55{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-sand-800\\/60{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-sand-800\\/65{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-sand-800\\/70{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-sand-800\\/75{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-sand-800\\/80{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-sand-800\\/85{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-sand-800\\/90{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-sand-800\\/95{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-sand-900{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / var(--tw-border-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-sand-900\\/0{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-sand-900\\/10{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-sand-900\\/100{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-sand-900\\/15{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-sand-900\\/20{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-sand-900\\/25{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-sand-900\\/30{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-sand-900\\/35{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-sand-900\\/40{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-sand-900\\/45{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-sand-900\\/5{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-sand-900\\/50{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-sand-900\\/55{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-sand-900\\/60{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-sand-900\\/65{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-sand-900\\/70{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-sand-900\\/75{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-sand-900\\/80{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-sand-900\\/85{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-sand-900\\/90{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-sand-900\\/95{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-sand-950{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / var(--tw-border-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-sand-950\\/0{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-sand-950\\/10{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-sand-950\\/100{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-sand-950\\/15{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-sand-950\\/20{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-sand-950\\/25{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-sand-950\\/30{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-sand-950\\/35{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-sand-950\\/40{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-sand-950\\/45{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-sand-950\\/5{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-sand-950\\/50{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-sand-950\\/55{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-sand-950\\/60{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-sand-950\\/65{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-sand-950\\/70{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-sand-950\\/75{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-sand-950\\/80{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-sand-950\\/85{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-sand-950\\/90{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-sand-950\\/95{\nborder-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-sand\\/0{\nborder-color: rgb(155 151 137 / 0);\n}\n.border-sand\\/10{\nborder-color: rgb(155 151 137 / 0.1);\n}\n.border-sand\\/100{\nborder-color: rgb(155 151 137 / 1);\n}\n.border-sand\\/15{\nborder-color: rgb(155 151 137 / 0.15);\n}\n.border-sand\\/20{\nborder-color: rgb(155 151 137 / 0.2);\n}\n.border-sand\\/25{\nborder-color: rgb(155 151 137 / 0.25);\n}\n.border-sand\\/30{\nborder-color: rgb(155 151 137 / 0.3);\n}\n.border-sand\\/35{\nborder-color: rgb(155 151 137 / 0.35);\n}\n.border-sand\\/40{\nborder-color: rgb(155 151 137 / 0.4);\n}\n.border-sand\\/45{\nborder-color: rgb(155 151 137 / 0.45);\n}\n.border-sand\\/5{\nborder-color: rgb(155 151 137 / 0.05);\n}\n.border-sand\\/50{\nborder-color: rgb(155 151 137 / 0.5);\n}\n.border-sand\\/55{\nborder-color: rgb(155 151 137 / 0.55);\n}\n.border-sand\\/60{\nborder-color: rgb(155 151 137 / 0.6);\n}\n.border-sand\\/65{\nborder-color: rgb(155 151 137 / 0.65);\n}\n.border-sand\\/70{\nborder-color: rgb(155 151 137 / 0.7);\n}\n.border-sand\\/75{\nborder-color: rgb(155 151 137 / 0.75);\n}\n.border-sand\\/80{\nborder-color: rgb(155 151 137 / 0.8);\n}\n.border-sand\\/85{\nborder-color: rgb(155 151 137 / 0.85);\n}\n.border-sand\\/90{\nborder-color: rgb(155 151 137 / 0.9);\n}\n.border-sand\\/95{\nborder-color: rgb(155 151 137 / 0.95);\n}\n.border-scarlet{\n--tw-border-opacity: 1;\nborder-color: rgb(229 72 77 / var(--tw-border-opacity));\n}\n.border-scarlet-100{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / var(--tw-border-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-scarlet-100\\/0{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-scarlet-100\\/10{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-scarlet-100\\/100{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-scarlet-100\\/15{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-scarlet-100\\/20{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-scarlet-100\\/25{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-scarlet-100\\/30{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-scarlet-100\\/35{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-scarlet-100\\/40{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-scarlet-100\\/45{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-scarlet-100\\/5{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-scarlet-100\\/50{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-scarlet-100\\/55{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-scarlet-100\\/60{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-scarlet-100\\/65{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-scarlet-100\\/70{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-scarlet-100\\/75{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-scarlet-100\\/80{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-scarlet-100\\/85{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-scarlet-100\\/90{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-scarlet-100\\/95{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-scarlet-200{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / var(--tw-border-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-scarlet-200\\/0{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-scarlet-200\\/10{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-scarlet-200\\/100{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-scarlet-200\\/15{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-scarlet-200\\/20{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-scarlet-200\\/25{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-scarlet-200\\/30{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-scarlet-200\\/35{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-scarlet-200\\/40{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-scarlet-200\\/45{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-scarlet-200\\/5{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-scarlet-200\\/50{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-scarlet-200\\/55{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-scarlet-200\\/60{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-scarlet-200\\/65{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-scarlet-200\\/70{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-scarlet-200\\/75{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-scarlet-200\\/80{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-scarlet-200\\/85{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-scarlet-200\\/90{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-scarlet-200\\/95{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-scarlet-300{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / var(--tw-border-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-scarlet-300\\/0{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-scarlet-300\\/10{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-scarlet-300\\/100{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-scarlet-300\\/15{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-scarlet-300\\/20{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-scarlet-300\\/25{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-scarlet-300\\/30{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-scarlet-300\\/35{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-scarlet-300\\/40{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-scarlet-300\\/45{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-scarlet-300\\/5{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-scarlet-300\\/50{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-scarlet-300\\/55{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-scarlet-300\\/60{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-scarlet-300\\/65{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-scarlet-300\\/70{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-scarlet-300\\/75{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-scarlet-300\\/80{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-scarlet-300\\/85{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-scarlet-300\\/90{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-scarlet-300\\/95{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-scarlet-400{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / var(--tw-border-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-scarlet-400\\/0{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-scarlet-400\\/10{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-scarlet-400\\/100{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-scarlet-400\\/15{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-scarlet-400\\/20{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-scarlet-400\\/25{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-scarlet-400\\/30{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-scarlet-400\\/35{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-scarlet-400\\/40{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-scarlet-400\\/45{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-scarlet-400\\/5{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-scarlet-400\\/50{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-scarlet-400\\/55{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-scarlet-400\\/60{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-scarlet-400\\/65{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-scarlet-400\\/70{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-scarlet-400\\/75{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-scarlet-400\\/80{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-scarlet-400\\/85{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-scarlet-400\\/90{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-scarlet-400\\/95{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-scarlet-50{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / var(--tw-border-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-scarlet-50\\/0{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-scarlet-50\\/10{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-scarlet-50\\/100{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-scarlet-50\\/15{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-scarlet-50\\/20{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-scarlet-50\\/25{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-scarlet-50\\/30{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-scarlet-50\\/35{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-scarlet-50\\/40{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-scarlet-50\\/45{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-scarlet-50\\/5{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-scarlet-50\\/50{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-scarlet-50\\/55{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-scarlet-50\\/60{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-scarlet-50\\/65{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-scarlet-50\\/70{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-scarlet-50\\/75{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-scarlet-50\\/80{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-scarlet-50\\/85{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-scarlet-50\\/90{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-scarlet-50\\/95{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-scarlet-500{\n--tw-border-opacity: 1;\nborder-color: color(from #e5484d srgb r g b / var(--tw-border-opacity));\n}\n.border-scarlet-500\\/0{\nborder-color: color(from #e5484d srgb r g b / 0);\n}\n.border-scarlet-500\\/10{\nborder-color: color(from #e5484d srgb r g b / 0.1);\n}\n.border-scarlet-500\\/100{\nborder-color: color(from #e5484d srgb r g b / 1);\n}\n.border-scarlet-500\\/15{\nborder-color: color(from #e5484d srgb r g b / 0.15);\n}\n.border-scarlet-500\\/20{\nborder-color: color(from #e5484d srgb r g b / 0.2);\n}\n.border-scarlet-500\\/25{\nborder-color: color(from #e5484d srgb r g b / 0.25);\n}\n.border-scarlet-500\\/30{\nborder-color: color(from #e5484d srgb r g b / 0.3);\n}\n.border-scarlet-500\\/35{\nborder-color: color(from #e5484d srgb r g b / 0.35);\n}\n.border-scarlet-500\\/40{\nborder-color: color(from #e5484d srgb r g b / 0.4);\n}\n.border-scarlet-500\\/45{\nborder-color: color(from #e5484d srgb r g b / 0.45);\n}\n.border-scarlet-500\\/5{\nborder-color: color(from #e5484d srgb r g b / 0.05);\n}\n.border-scarlet-500\\/50{\nborder-color: color(from #e5484d srgb r g b / 0.5);\n}\n.border-scarlet-500\\/55{\nborder-color: color(from #e5484d srgb r g b / 0.55);\n}\n.border-scarlet-500\\/60{\nborder-color: color(from #e5484d srgb r g b / 0.6);\n}\n.border-scarlet-500\\/65{\nborder-color: color(from #e5484d srgb r g b / 0.65);\n}\n.border-scarlet-500\\/70{\nborder-color: color(from #e5484d srgb r g b / 0.7);\n}\n.border-scarlet-500\\/75{\nborder-color: color(from #e5484d srgb r g b / 0.75);\n}\n.border-scarlet-500\\/80{\nborder-color: color(from #e5484d srgb r g b / 0.8);\n}\n.border-scarlet-500\\/85{\nborder-color: color(from #e5484d srgb r g b / 0.85);\n}\n.border-scarlet-500\\/90{\nborder-color: color(from #e5484d srgb r g b / 0.9);\n}\n.border-scarlet-500\\/95{\nborder-color: color(from #e5484d srgb r g b / 0.95);\n}\n.border-scarlet-600{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / var(--tw-border-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-scarlet-600\\/0{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-scarlet-600\\/10{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-scarlet-600\\/100{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-scarlet-600\\/15{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-scarlet-600\\/20{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-scarlet-600\\/25{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-scarlet-600\\/30{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-scarlet-600\\/35{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-scarlet-600\\/40{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-scarlet-600\\/45{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-scarlet-600\\/5{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-scarlet-600\\/50{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-scarlet-600\\/55{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-scarlet-600\\/60{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-scarlet-600\\/65{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-scarlet-600\\/70{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-scarlet-600\\/75{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-scarlet-600\\/80{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-scarlet-600\\/85{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-scarlet-600\\/90{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-scarlet-600\\/95{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-scarlet-700{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / var(--tw-border-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-scarlet-700\\/0{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-scarlet-700\\/10{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-scarlet-700\\/100{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-scarlet-700\\/15{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-scarlet-700\\/20{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-scarlet-700\\/25{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-scarlet-700\\/30{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-scarlet-700\\/35{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-scarlet-700\\/40{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-scarlet-700\\/45{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-scarlet-700\\/5{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-scarlet-700\\/50{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-scarlet-700\\/55{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-scarlet-700\\/60{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-scarlet-700\\/65{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-scarlet-700\\/70{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-scarlet-700\\/75{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-scarlet-700\\/80{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-scarlet-700\\/85{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-scarlet-700\\/90{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-scarlet-700\\/95{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-scarlet-800{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / var(--tw-border-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-scarlet-800\\/0{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-scarlet-800\\/10{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-scarlet-800\\/100{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-scarlet-800\\/15{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-scarlet-800\\/20{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-scarlet-800\\/25{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-scarlet-800\\/30{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-scarlet-800\\/35{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-scarlet-800\\/40{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-scarlet-800\\/45{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-scarlet-800\\/5{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-scarlet-800\\/50{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-scarlet-800\\/55{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-scarlet-800\\/60{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-scarlet-800\\/65{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-scarlet-800\\/70{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-scarlet-800\\/75{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-scarlet-800\\/80{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-scarlet-800\\/85{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-scarlet-800\\/90{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-scarlet-800\\/95{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-scarlet-900{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / var(--tw-border-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-scarlet-900\\/0{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-scarlet-900\\/10{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-scarlet-900\\/100{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-scarlet-900\\/15{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-scarlet-900\\/20{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-scarlet-900\\/25{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-scarlet-900\\/30{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-scarlet-900\\/35{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-scarlet-900\\/40{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-scarlet-900\\/45{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-scarlet-900\\/5{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-scarlet-900\\/50{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-scarlet-900\\/55{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-scarlet-900\\/60{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-scarlet-900\\/65{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-scarlet-900\\/70{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-scarlet-900\\/75{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-scarlet-900\\/80{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-scarlet-900\\/85{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-scarlet-900\\/90{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-scarlet-900\\/95{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-scarlet-950{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / var(--tw-border-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-scarlet-950\\/0{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-scarlet-950\\/10{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-scarlet-950\\/100{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-scarlet-950\\/15{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-scarlet-950\\/20{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-scarlet-950\\/25{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-scarlet-950\\/30{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-scarlet-950\\/35{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-scarlet-950\\/40{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-scarlet-950\\/45{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-scarlet-950\\/5{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-scarlet-950\\/50{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-scarlet-950\\/55{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-scarlet-950\\/60{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-scarlet-950\\/65{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-scarlet-950\\/70{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-scarlet-950\\/75{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-scarlet-950\\/80{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-scarlet-950\\/85{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-scarlet-950\\/90{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-scarlet-950\\/95{\nborder-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-scarlet\\/0{\nborder-color: rgb(229 72 77 / 0);\n}\n.border-scarlet\\/10{\nborder-color: rgb(229 72 77 / 0.1);\n}\n.border-scarlet\\/100{\nborder-color: rgb(229 72 77 / 1);\n}\n.border-scarlet\\/15{\nborder-color: rgb(229 72 77 / 0.15);\n}\n.border-scarlet\\/20{\nborder-color: rgb(229 72 77 / 0.2);\n}\n.border-scarlet\\/25{\nborder-color: rgb(229 72 77 / 0.25);\n}\n.border-scarlet\\/30{\nborder-color: rgb(229 72 77 / 0.3);\n}\n.border-scarlet\\/35{\nborder-color: rgb(229 72 77 / 0.35);\n}\n.border-scarlet\\/40{\nborder-color: rgb(229 72 77 / 0.4);\n}\n.border-scarlet\\/45{\nborder-color: rgb(229 72 77 / 0.45);\n}\n.border-scarlet\\/5{\nborder-color: rgb(229 72 77 / 0.05);\n}\n.border-scarlet\\/50{\nborder-color: rgb(229 72 77 / 0.5);\n}\n.border-scarlet\\/55{\nborder-color: rgb(229 72 77 / 0.55);\n}\n.border-scarlet\\/60{\nborder-color: rgb(229 72 77 / 0.6);\n}\n.border-scarlet\\/65{\nborder-color: rgb(229 72 77 / 0.65);\n}\n.border-scarlet\\/70{\nborder-color: rgb(229 72 77 / 0.7);\n}\n.border-scarlet\\/75{\nborder-color: rgb(229 72 77 / 0.75);\n}\n.border-scarlet\\/80{\nborder-color: rgb(229 72 77 / 0.8);\n}\n.border-scarlet\\/85{\nborder-color: rgb(229 72 77 / 0.85);\n}\n.border-scarlet\\/90{\nborder-color: rgb(229 72 77 / 0.9);\n}\n.border-scarlet\\/95{\nborder-color: rgb(229 72 77 / 0.95);\n}\n.border-silver{\n--tw-border-opacity: 1;\nborder-color: rgb(152 157 165 / var(--tw-border-opacity));\n}\n.border-silver-100{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / var(--tw-border-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-silver-100\\/0{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-silver-100\\/10{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-silver-100\\/100{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-silver-100\\/15{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-silver-100\\/20{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-silver-100\\/25{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-silver-100\\/30{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-silver-100\\/35{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-silver-100\\/40{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-silver-100\\/45{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-silver-100\\/5{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-silver-100\\/50{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-silver-100\\/55{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-silver-100\\/60{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-silver-100\\/65{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-silver-100\\/70{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-silver-100\\/75{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-silver-100\\/80{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-silver-100\\/85{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-silver-100\\/90{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-silver-100\\/95{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-silver-200{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / var(--tw-border-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-silver-200\\/0{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-silver-200\\/10{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-silver-200\\/100{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-silver-200\\/15{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-silver-200\\/20{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-silver-200\\/25{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-silver-200\\/30{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-silver-200\\/35{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-silver-200\\/40{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-silver-200\\/45{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-silver-200\\/5{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-silver-200\\/50{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-silver-200\\/55{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-silver-200\\/60{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-silver-200\\/65{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-silver-200\\/70{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-silver-200\\/75{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-silver-200\\/80{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-silver-200\\/85{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-silver-200\\/90{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-silver-200\\/95{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-silver-300{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / var(--tw-border-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-silver-300\\/0{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-silver-300\\/10{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-silver-300\\/100{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-silver-300\\/15{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-silver-300\\/20{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-silver-300\\/25{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-silver-300\\/30{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-silver-300\\/35{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-silver-300\\/40{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-silver-300\\/45{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-silver-300\\/5{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-silver-300\\/50{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-silver-300\\/55{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-silver-300\\/60{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-silver-300\\/65{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-silver-300\\/70{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-silver-300\\/75{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-silver-300\\/80{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-silver-300\\/85{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-silver-300\\/90{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-silver-300\\/95{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-silver-400{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / var(--tw-border-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-silver-400\\/0{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-silver-400\\/10{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-silver-400\\/100{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-silver-400\\/15{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-silver-400\\/20{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-silver-400\\/25{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-silver-400\\/30{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-silver-400\\/35{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-silver-400\\/40{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-silver-400\\/45{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-silver-400\\/5{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-silver-400\\/50{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-silver-400\\/55{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-silver-400\\/60{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-silver-400\\/65{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-silver-400\\/70{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-silver-400\\/75{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-silver-400\\/80{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-silver-400\\/85{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-silver-400\\/90{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-silver-400\\/95{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-silver-50{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / var(--tw-border-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-silver-50\\/0{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-silver-50\\/10{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-silver-50\\/100{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-silver-50\\/15{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-silver-50\\/20{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-silver-50\\/25{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-silver-50\\/30{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-silver-50\\/35{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-silver-50\\/40{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-silver-50\\/45{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-silver-50\\/5{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-silver-50\\/50{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-silver-50\\/55{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-silver-50\\/60{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-silver-50\\/65{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-silver-50\\/70{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-silver-50\\/75{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-silver-50\\/80{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-silver-50\\/85{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-silver-50\\/90{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-silver-50\\/95{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-silver-500{\n--tw-border-opacity: 1;\nborder-color: color(from #989da5 srgb r g b / var(--tw-border-opacity));\n}\n.border-silver-500\\/0{\nborder-color: color(from #989da5 srgb r g b / 0);\n}\n.border-silver-500\\/10{\nborder-color: color(from #989da5 srgb r g b / 0.1);\n}\n.border-silver-500\\/100{\nborder-color: color(from #989da5 srgb r g b / 1);\n}\n.border-silver-500\\/15{\nborder-color: color(from #989da5 srgb r g b / 0.15);\n}\n.border-silver-500\\/20{\nborder-color: color(from #989da5 srgb r g b / 0.2);\n}\n.border-silver-500\\/25{\nborder-color: color(from #989da5 srgb r g b / 0.25);\n}\n.border-silver-500\\/30{\nborder-color: color(from #989da5 srgb r g b / 0.3);\n}\n.border-silver-500\\/35{\nborder-color: color(from #989da5 srgb r g b / 0.35);\n}\n.border-silver-500\\/40{\nborder-color: color(from #989da5 srgb r g b / 0.4);\n}\n.border-silver-500\\/45{\nborder-color: color(from #989da5 srgb r g b / 0.45);\n}\n.border-silver-500\\/5{\nborder-color: color(from #989da5 srgb r g b / 0.05);\n}\n.border-silver-500\\/50{\nborder-color: color(from #989da5 srgb r g b / 0.5);\n}\n.border-silver-500\\/55{\nborder-color: color(from #989da5 srgb r g b / 0.55);\n}\n.border-silver-500\\/60{\nborder-color: color(from #989da5 srgb r g b / 0.6);\n}\n.border-silver-500\\/65{\nborder-color: color(from #989da5 srgb r g b / 0.65);\n}\n.border-silver-500\\/70{\nborder-color: color(from #989da5 srgb r g b / 0.7);\n}\n.border-silver-500\\/75{\nborder-color: color(from #989da5 srgb r g b / 0.75);\n}\n.border-silver-500\\/80{\nborder-color: color(from #989da5 srgb r g b / 0.8);\n}\n.border-silver-500\\/85{\nborder-color: color(from #989da5 srgb r g b / 0.85);\n}\n.border-silver-500\\/90{\nborder-color: color(from #989da5 srgb r g b / 0.9);\n}\n.border-silver-500\\/95{\nborder-color: color(from #989da5 srgb r g b / 0.95);\n}\n.border-silver-600{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / var(--tw-border-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-silver-600\\/0{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-silver-600\\/10{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-silver-600\\/100{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-silver-600\\/15{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-silver-600\\/20{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-silver-600\\/25{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-silver-600\\/30{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-silver-600\\/35{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-silver-600\\/40{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-silver-600\\/45{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-silver-600\\/5{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-silver-600\\/50{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-silver-600\\/55{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-silver-600\\/60{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-silver-600\\/65{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-silver-600\\/70{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-silver-600\\/75{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-silver-600\\/80{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-silver-600\\/85{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-silver-600\\/90{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-silver-600\\/95{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-silver-700{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / var(--tw-border-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-silver-700\\/0{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-silver-700\\/10{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-silver-700\\/100{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-silver-700\\/15{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-silver-700\\/20{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-silver-700\\/25{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-silver-700\\/30{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-silver-700\\/35{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-silver-700\\/40{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-silver-700\\/45{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-silver-700\\/5{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-silver-700\\/50{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-silver-700\\/55{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-silver-700\\/60{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-silver-700\\/65{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-silver-700\\/70{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-silver-700\\/75{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-silver-700\\/80{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-silver-700\\/85{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-silver-700\\/90{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-silver-700\\/95{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-silver-800{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / var(--tw-border-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-silver-800\\/0{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-silver-800\\/10{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-silver-800\\/100{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-silver-800\\/15{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-silver-800\\/20{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-silver-800\\/25{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-silver-800\\/30{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-silver-800\\/35{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-silver-800\\/40{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-silver-800\\/45{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-silver-800\\/5{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-silver-800\\/50{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-silver-800\\/55{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-silver-800\\/60{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-silver-800\\/65{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-silver-800\\/70{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-silver-800\\/75{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-silver-800\\/80{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-silver-800\\/85{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-silver-800\\/90{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-silver-800\\/95{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-silver-900{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / var(--tw-border-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-silver-900\\/0{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-silver-900\\/10{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-silver-900\\/100{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-silver-900\\/15{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-silver-900\\/20{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-silver-900\\/25{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-silver-900\\/30{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-silver-900\\/35{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-silver-900\\/40{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-silver-900\\/45{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-silver-900\\/5{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-silver-900\\/50{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-silver-900\\/55{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-silver-900\\/60{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-silver-900\\/65{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-silver-900\\/70{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-silver-900\\/75{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-silver-900\\/80{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-silver-900\\/85{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-silver-900\\/90{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-silver-900\\/95{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-silver-950{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / var(--tw-border-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-silver-950\\/0{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-silver-950\\/10{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-silver-950\\/100{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-silver-950\\/15{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-silver-950\\/20{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-silver-950\\/25{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-silver-950\\/30{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-silver-950\\/35{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-silver-950\\/40{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-silver-950\\/45{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-silver-950\\/5{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-silver-950\\/50{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-silver-950\\/55{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-silver-950\\/60{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-silver-950\\/65{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-silver-950\\/70{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-silver-950\\/75{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-silver-950\\/80{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-silver-950\\/85{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-silver-950\\/90{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-silver-950\\/95{\nborder-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-silver\\/0{\nborder-color: rgb(152 157 165 / 0);\n}\n.border-silver\\/10{\nborder-color: rgb(152 157 165 / 0.1);\n}\n.border-silver\\/100{\nborder-color: rgb(152 157 165 / 1);\n}\n.border-silver\\/15{\nborder-color: rgb(152 157 165 / 0.15);\n}\n.border-silver\\/20{\nborder-color: rgb(152 157 165 / 0.2);\n}\n.border-silver\\/25{\nborder-color: rgb(152 157 165 / 0.25);\n}\n.border-silver\\/30{\nborder-color: rgb(152 157 165 / 0.3);\n}\n.border-silver\\/35{\nborder-color: rgb(152 157 165 / 0.35);\n}\n.border-silver\\/40{\nborder-color: rgb(152 157 165 / 0.4);\n}\n.border-silver\\/45{\nborder-color: rgb(152 157 165 / 0.45);\n}\n.border-silver\\/5{\nborder-color: rgb(152 157 165 / 0.05);\n}\n.border-silver\\/50{\nborder-color: rgb(152 157 165 / 0.5);\n}\n.border-silver\\/55{\nborder-color: rgb(152 157 165 / 0.55);\n}\n.border-silver\\/60{\nborder-color: rgb(152 157 165 / 0.6);\n}\n.border-silver\\/65{\nborder-color: rgb(152 157 165 / 0.65);\n}\n.border-silver\\/70{\nborder-color: rgb(152 157 165 / 0.7);\n}\n.border-silver\\/75{\nborder-color: rgb(152 157 165 / 0.75);\n}\n.border-silver\\/80{\nborder-color: rgb(152 157 165 / 0.8);\n}\n.border-silver\\/85{\nborder-color: rgb(152 157 165 / 0.85);\n}\n.border-silver\\/90{\nborder-color: rgb(152 157 165 / 0.9);\n}\n.border-silver\\/95{\nborder-color: rgb(152 157 165 / 0.95);\n}\n.border-steel{\n--tw-border-opacity: 1;\nborder-color: rgb(124 153 175 / var(--tw-border-opacity));\n}\n.border-steel-100{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / var(--tw-border-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-steel-100\\/0{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-steel-100\\/10{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-steel-100\\/100{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-steel-100\\/15{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-steel-100\\/20{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-steel-100\\/25{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-steel-100\\/30{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-steel-100\\/35{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-steel-100\\/40{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-steel-100\\/45{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-steel-100\\/5{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-steel-100\\/50{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-steel-100\\/55{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-steel-100\\/60{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-steel-100\\/65{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-steel-100\\/70{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-steel-100\\/75{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-steel-100\\/80{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-steel-100\\/85{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-steel-100\\/90{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-steel-100\\/95{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-steel-200{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / var(--tw-border-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-steel-200\\/0{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-steel-200\\/10{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-steel-200\\/100{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-steel-200\\/15{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-steel-200\\/20{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-steel-200\\/25{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-steel-200\\/30{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-steel-200\\/35{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-steel-200\\/40{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-steel-200\\/45{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-steel-200\\/5{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-steel-200\\/50{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-steel-200\\/55{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-steel-200\\/60{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-steel-200\\/65{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-steel-200\\/70{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-steel-200\\/75{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-steel-200\\/80{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-steel-200\\/85{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-steel-200\\/90{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-steel-200\\/95{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-steel-300{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / var(--tw-border-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-steel-300\\/0{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-steel-300\\/10{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-steel-300\\/100{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-steel-300\\/15{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-steel-300\\/20{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-steel-300\\/25{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-steel-300\\/30{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-steel-300\\/35{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-steel-300\\/40{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-steel-300\\/45{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-steel-300\\/5{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-steel-300\\/50{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-steel-300\\/55{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-steel-300\\/60{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-steel-300\\/65{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-steel-300\\/70{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-steel-300\\/75{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-steel-300\\/80{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-steel-300\\/85{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-steel-300\\/90{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-steel-300\\/95{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-steel-400{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / var(--tw-border-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-steel-400\\/0{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-steel-400\\/10{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-steel-400\\/100{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-steel-400\\/15{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-steel-400\\/20{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-steel-400\\/25{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-steel-400\\/30{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-steel-400\\/35{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-steel-400\\/40{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-steel-400\\/45{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-steel-400\\/5{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-steel-400\\/50{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-steel-400\\/55{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-steel-400\\/60{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-steel-400\\/65{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-steel-400\\/70{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-steel-400\\/75{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-steel-400\\/80{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-steel-400\\/85{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-steel-400\\/90{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-steel-400\\/95{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-steel-50{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / var(--tw-border-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-steel-50\\/0{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-steel-50\\/10{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-steel-50\\/100{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-steel-50\\/15{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-steel-50\\/20{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-steel-50\\/25{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-steel-50\\/30{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-steel-50\\/35{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-steel-50\\/40{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-steel-50\\/45{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-steel-50\\/5{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-steel-50\\/50{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-steel-50\\/55{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-steel-50\\/60{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-steel-50\\/65{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-steel-50\\/70{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-steel-50\\/75{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-steel-50\\/80{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-steel-50\\/85{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-steel-50\\/90{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-steel-50\\/95{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-steel-500{\n--tw-border-opacity: 1;\nborder-color: color(from #7c99af srgb r g b / var(--tw-border-opacity));\n}\n.border-steel-500\\/0{\nborder-color: color(from #7c99af srgb r g b / 0);\n}\n.border-steel-500\\/10{\nborder-color: color(from #7c99af srgb r g b / 0.1);\n}\n.border-steel-500\\/100{\nborder-color: color(from #7c99af srgb r g b / 1);\n}\n.border-steel-500\\/15{\nborder-color: color(from #7c99af srgb r g b / 0.15);\n}\n.border-steel-500\\/20{\nborder-color: color(from #7c99af srgb r g b / 0.2);\n}\n.border-steel-500\\/25{\nborder-color: color(from #7c99af srgb r g b / 0.25);\n}\n.border-steel-500\\/30{\nborder-color: color(from #7c99af srgb r g b / 0.3);\n}\n.border-steel-500\\/35{\nborder-color: color(from #7c99af srgb r g b / 0.35);\n}\n.border-steel-500\\/40{\nborder-color: color(from #7c99af srgb r g b / 0.4);\n}\n.border-steel-500\\/45{\nborder-color: color(from #7c99af srgb r g b / 0.45);\n}\n.border-steel-500\\/5{\nborder-color: color(from #7c99af srgb r g b / 0.05);\n}\n.border-steel-500\\/50{\nborder-color: color(from #7c99af srgb r g b / 0.5);\n}\n.border-steel-500\\/55{\nborder-color: color(from #7c99af srgb r g b / 0.55);\n}\n.border-steel-500\\/60{\nborder-color: color(from #7c99af srgb r g b / 0.6);\n}\n.border-steel-500\\/65{\nborder-color: color(from #7c99af srgb r g b / 0.65);\n}\n.border-steel-500\\/70{\nborder-color: color(from #7c99af srgb r g b / 0.7);\n}\n.border-steel-500\\/75{\nborder-color: color(from #7c99af srgb r g b / 0.75);\n}\n.border-steel-500\\/80{\nborder-color: color(from #7c99af srgb r g b / 0.8);\n}\n.border-steel-500\\/85{\nborder-color: color(from #7c99af srgb r g b / 0.85);\n}\n.border-steel-500\\/90{\nborder-color: color(from #7c99af srgb r g b / 0.9);\n}\n.border-steel-500\\/95{\nborder-color: color(from #7c99af srgb r g b / 0.95);\n}\n.border-steel-600{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / var(--tw-border-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-steel-600\\/0{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-steel-600\\/10{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-steel-600\\/100{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-steel-600\\/15{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-steel-600\\/20{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-steel-600\\/25{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-steel-600\\/30{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-steel-600\\/35{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-steel-600\\/40{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-steel-600\\/45{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-steel-600\\/5{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-steel-600\\/50{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-steel-600\\/55{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-steel-600\\/60{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-steel-600\\/65{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-steel-600\\/70{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-steel-600\\/75{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-steel-600\\/80{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-steel-600\\/85{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-steel-600\\/90{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-steel-600\\/95{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-steel-700{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / var(--tw-border-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-steel-700\\/0{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-steel-700\\/10{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-steel-700\\/100{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-steel-700\\/15{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-steel-700\\/20{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-steel-700\\/25{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-steel-700\\/30{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-steel-700\\/35{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-steel-700\\/40{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-steel-700\\/45{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-steel-700\\/5{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-steel-700\\/50{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-steel-700\\/55{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-steel-700\\/60{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-steel-700\\/65{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-steel-700\\/70{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-steel-700\\/75{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-steel-700\\/80{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-steel-700\\/85{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-steel-700\\/90{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-steel-700\\/95{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-steel-800{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / var(--tw-border-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-steel-800\\/0{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-steel-800\\/10{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-steel-800\\/100{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-steel-800\\/15{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-steel-800\\/20{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-steel-800\\/25{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-steel-800\\/30{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-steel-800\\/35{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-steel-800\\/40{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-steel-800\\/45{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-steel-800\\/5{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-steel-800\\/50{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-steel-800\\/55{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-steel-800\\/60{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-steel-800\\/65{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-steel-800\\/70{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-steel-800\\/75{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-steel-800\\/80{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-steel-800\\/85{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-steel-800\\/90{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-steel-800\\/95{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-steel-900{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / var(--tw-border-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-steel-900\\/0{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-steel-900\\/10{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-steel-900\\/100{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-steel-900\\/15{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-steel-900\\/20{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-steel-900\\/25{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-steel-900\\/30{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-steel-900\\/35{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-steel-900\\/40{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-steel-900\\/45{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-steel-900\\/5{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-steel-900\\/50{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-steel-900\\/55{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-steel-900\\/60{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-steel-900\\/65{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-steel-900\\/70{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-steel-900\\/75{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-steel-900\\/80{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-steel-900\\/85{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-steel-900\\/90{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-steel-900\\/95{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-steel-950{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / var(--tw-border-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-steel-950\\/0{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-steel-950\\/10{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-steel-950\\/100{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-steel-950\\/15{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-steel-950\\/20{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-steel-950\\/25{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-steel-950\\/30{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-steel-950\\/35{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-steel-950\\/40{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-steel-950\\/45{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-steel-950\\/5{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-steel-950\\/50{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-steel-950\\/55{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-steel-950\\/60{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-steel-950\\/65{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-steel-950\\/70{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-steel-950\\/75{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-steel-950\\/80{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-steel-950\\/85{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-steel-950\\/90{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-steel-950\\/95{\nborder-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-steel\\/0{\nborder-color: rgb(124 153 175 / 0);\n}\n.border-steel\\/10{\nborder-color: rgb(124 153 175 / 0.1);\n}\n.border-steel\\/100{\nborder-color: rgb(124 153 175 / 1);\n}\n.border-steel\\/15{\nborder-color: rgb(124 153 175 / 0.15);\n}\n.border-steel\\/20{\nborder-color: rgb(124 153 175 / 0.2);\n}\n.border-steel\\/25{\nborder-color: rgb(124 153 175 / 0.25);\n}\n.border-steel\\/30{\nborder-color: rgb(124 153 175 / 0.3);\n}\n.border-steel\\/35{\nborder-color: rgb(124 153 175 / 0.35);\n}\n.border-steel\\/40{\nborder-color: rgb(124 153 175 / 0.4);\n}\n.border-steel\\/45{\nborder-color: rgb(124 153 175 / 0.45);\n}\n.border-steel\\/5{\nborder-color: rgb(124 153 175 / 0.05);\n}\n.border-steel\\/50{\nborder-color: rgb(124 153 175 / 0.5);\n}\n.border-steel\\/55{\nborder-color: rgb(124 153 175 / 0.55);\n}\n.border-steel\\/60{\nborder-color: rgb(124 153 175 / 0.6);\n}\n.border-steel\\/65{\nborder-color: rgb(124 153 175 / 0.65);\n}\n.border-steel\\/70{\nborder-color: rgb(124 153 175 / 0.7);\n}\n.border-steel\\/75{\nborder-color: rgb(124 153 175 / 0.75);\n}\n.border-steel\\/80{\nborder-color: rgb(124 153 175 / 0.8);\n}\n.border-steel\\/85{\nborder-color: rgb(124 153 175 / 0.85);\n}\n.border-steel\\/90{\nborder-color: rgb(124 153 175 / 0.9);\n}\n.border-steel\\/95{\nborder-color: rgb(124 153 175 / 0.95);\n}\n.border-success{\n--tw-border-opacity: 1;\nborder-color: rgb(68 188 105 / var(--tw-border-opacity));\n}\n.border-success-100{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / var(--tw-border-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-success-100\\/0{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-success-100\\/10{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-success-100\\/100{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-success-100\\/15{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-success-100\\/20{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-success-100\\/25{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-success-100\\/30{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-success-100\\/35{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-success-100\\/40{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-success-100\\/45{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-success-100\\/5{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-success-100\\/50{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-success-100\\/55{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-success-100\\/60{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-success-100\\/65{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-success-100\\/70{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-success-100\\/75{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-success-100\\/80{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-success-100\\/85{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-success-100\\/90{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-success-100\\/95{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-success-200{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / var(--tw-border-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-success-200\\/0{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-success-200\\/10{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-success-200\\/100{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-success-200\\/15{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-success-200\\/20{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-success-200\\/25{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-success-200\\/30{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-success-200\\/35{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-success-200\\/40{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-success-200\\/45{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-success-200\\/5{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-success-200\\/50{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-success-200\\/55{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-success-200\\/60{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-success-200\\/65{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-success-200\\/70{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-success-200\\/75{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-success-200\\/80{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-success-200\\/85{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-success-200\\/90{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-success-200\\/95{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-success-300{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / var(--tw-border-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-success-300\\/0{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-success-300\\/10{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-success-300\\/100{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-success-300\\/15{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-success-300\\/20{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-success-300\\/25{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-success-300\\/30{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-success-300\\/35{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-success-300\\/40{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-success-300\\/45{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-success-300\\/5{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-success-300\\/50{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-success-300\\/55{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-success-300\\/60{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-success-300\\/65{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-success-300\\/70{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-success-300\\/75{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-success-300\\/80{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-success-300\\/85{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-success-300\\/90{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-success-300\\/95{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-success-400{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / var(--tw-border-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-success-400\\/0{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-success-400\\/10{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-success-400\\/100{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-success-400\\/15{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-success-400\\/20{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-success-400\\/25{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-success-400\\/30{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-success-400\\/35{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-success-400\\/40{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-success-400\\/45{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-success-400\\/5{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-success-400\\/50{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-success-400\\/55{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-success-400\\/60{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-success-400\\/65{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-success-400\\/70{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-success-400\\/75{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-success-400\\/80{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-success-400\\/85{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-success-400\\/90{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-success-400\\/95{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-success-50{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / var(--tw-border-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-success-50\\/0{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-success-50\\/10{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-success-50\\/100{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-success-50\\/15{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-success-50\\/20{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-success-50\\/25{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-success-50\\/30{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-success-50\\/35{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-success-50\\/40{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-success-50\\/45{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-success-50\\/5{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-success-50\\/50{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-success-50\\/55{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-success-50\\/60{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-success-50\\/65{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-success-50\\/70{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-success-50\\/75{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-success-50\\/80{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-success-50\\/85{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-success-50\\/90{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-success-50\\/95{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-success-500{\n--tw-border-opacity: 1;\nborder-color: color(from #44bc69 srgb r g b / var(--tw-border-opacity));\n}\n.border-success-500\\/0{\nborder-color: color(from #44bc69 srgb r g b / 0);\n}\n.border-success-500\\/10{\nborder-color: color(from #44bc69 srgb r g b / 0.1);\n}\n.border-success-500\\/100{\nborder-color: color(from #44bc69 srgb r g b / 1);\n}\n.border-success-500\\/15{\nborder-color: color(from #44bc69 srgb r g b / 0.15);\n}\n.border-success-500\\/20{\nborder-color: color(from #44bc69 srgb r g b / 0.2);\n}\n.border-success-500\\/25{\nborder-color: color(from #44bc69 srgb r g b / 0.25);\n}\n.border-success-500\\/30{\nborder-color: color(from #44bc69 srgb r g b / 0.3);\n}\n.border-success-500\\/35{\nborder-color: color(from #44bc69 srgb r g b / 0.35);\n}\n.border-success-500\\/40{\nborder-color: color(from #44bc69 srgb r g b / 0.4);\n}\n.border-success-500\\/45{\nborder-color: color(from #44bc69 srgb r g b / 0.45);\n}\n.border-success-500\\/5{\nborder-color: color(from #44bc69 srgb r g b / 0.05);\n}\n.border-success-500\\/50{\nborder-color: color(from #44bc69 srgb r g b / 0.5);\n}\n.border-success-500\\/55{\nborder-color: color(from #44bc69 srgb r g b / 0.55);\n}\n.border-success-500\\/60{\nborder-color: color(from #44bc69 srgb r g b / 0.6);\n}\n.border-success-500\\/65{\nborder-color: color(from #44bc69 srgb r g b / 0.65);\n}\n.border-success-500\\/70{\nborder-color: color(from #44bc69 srgb r g b / 0.7);\n}\n.border-success-500\\/75{\nborder-color: color(from #44bc69 srgb r g b / 0.75);\n}\n.border-success-500\\/80{\nborder-color: color(from #44bc69 srgb r g b / 0.8);\n}\n.border-success-500\\/85{\nborder-color: color(from #44bc69 srgb r g b / 0.85);\n}\n.border-success-500\\/90{\nborder-color: color(from #44bc69 srgb r g b / 0.9);\n}\n.border-success-500\\/95{\nborder-color: color(from #44bc69 srgb r g b / 0.95);\n}\n.border-success-600{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / var(--tw-border-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-success-600\\/0{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-success-600\\/10{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-success-600\\/100{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-success-600\\/15{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-success-600\\/20{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-success-600\\/25{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-success-600\\/30{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-success-600\\/35{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-success-600\\/40{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-success-600\\/45{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-success-600\\/5{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-success-600\\/50{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-success-600\\/55{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-success-600\\/60{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-success-600\\/65{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-success-600\\/70{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-success-600\\/75{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-success-600\\/80{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-success-600\\/85{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-success-600\\/90{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-success-600\\/95{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-success-700{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / var(--tw-border-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-success-700\\/0{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-success-700\\/10{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-success-700\\/100{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-success-700\\/15{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-success-700\\/20{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-success-700\\/25{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-success-700\\/30{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-success-700\\/35{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-success-700\\/40{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-success-700\\/45{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-success-700\\/5{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-success-700\\/50{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-success-700\\/55{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-success-700\\/60{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-success-700\\/65{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-success-700\\/70{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-success-700\\/75{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-success-700\\/80{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-success-700\\/85{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-success-700\\/90{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-success-700\\/95{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-success-800{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / var(--tw-border-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-success-800\\/0{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-success-800\\/10{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-success-800\\/100{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-success-800\\/15{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-success-800\\/20{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-success-800\\/25{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-success-800\\/30{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-success-800\\/35{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-success-800\\/40{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-success-800\\/45{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-success-800\\/5{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-success-800\\/50{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-success-800\\/55{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-success-800\\/60{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-success-800\\/65{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-success-800\\/70{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-success-800\\/75{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-success-800\\/80{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-success-800\\/85{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-success-800\\/90{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-success-800\\/95{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-success-900{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / var(--tw-border-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-success-900\\/0{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-success-900\\/10{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-success-900\\/100{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-success-900\\/15{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-success-900\\/20{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-success-900\\/25{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-success-900\\/30{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-success-900\\/35{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-success-900\\/40{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-success-900\\/45{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-success-900\\/5{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-success-900\\/50{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-success-900\\/55{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-success-900\\/60{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-success-900\\/65{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-success-900\\/70{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-success-900\\/75{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-success-900\\/80{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-success-900\\/85{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-success-900\\/90{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-success-900\\/95{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-success-950{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / var(--tw-border-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-success-950\\/0{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-success-950\\/10{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-success-950\\/100{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-success-950\\/15{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-success-950\\/20{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-success-950\\/25{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-success-950\\/30{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-success-950\\/35{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-success-950\\/40{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-success-950\\/45{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-success-950\\/5{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-success-950\\/50{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-success-950\\/55{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-success-950\\/60{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-success-950\\/65{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-success-950\\/70{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-success-950\\/75{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-success-950\\/80{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-success-950\\/85{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-success-950\\/90{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-success-950\\/95{\nborder-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-success\\/0{\nborder-color: rgb(68 188 105 / 0);\n}\n.border-success\\/10{\nborder-color: rgb(68 188 105 / 0.1);\n}\n.border-success\\/100{\nborder-color: rgb(68 188 105 / 1);\n}\n.border-success\\/15{\nborder-color: rgb(68 188 105 / 0.15);\n}\n.border-success\\/20{\nborder-color: rgb(68 188 105 / 0.2);\n}\n.border-success\\/25{\nborder-color: rgb(68 188 105 / 0.25);\n}\n.border-success\\/30{\nborder-color: rgb(68 188 105 / 0.3);\n}\n.border-success\\/35{\nborder-color: rgb(68 188 105 / 0.35);\n}\n.border-success\\/40{\nborder-color: rgb(68 188 105 / 0.4);\n}\n.border-success\\/45{\nborder-color: rgb(68 188 105 / 0.45);\n}\n.border-success\\/5{\nborder-color: rgb(68 188 105 / 0.05);\n}\n.border-success\\/50{\nborder-color: rgb(68 188 105 / 0.5);\n}\n.border-success\\/55{\nborder-color: rgb(68 188 105 / 0.55);\n}\n.border-success\\/60{\nborder-color: rgb(68 188 105 / 0.6);\n}\n.border-success\\/65{\nborder-color: rgb(68 188 105 / 0.65);\n}\n.border-success\\/70{\nborder-color: rgb(68 188 105 / 0.7);\n}\n.border-success\\/75{\nborder-color: rgb(68 188 105 / 0.75);\n}\n.border-success\\/80{\nborder-color: rgb(68 188 105 / 0.8);\n}\n.border-success\\/85{\nborder-color: rgb(68 188 105 / 0.85);\n}\n.border-success\\/90{\nborder-color: rgb(68 188 105 / 0.9);\n}\n.border-success\\/95{\nborder-color: rgb(68 188 105 / 0.95);\n}\n.border-tint{\nborder-color: var(--tint);\n}\n.border-tint-100{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-border-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-tint-100\\/0{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-tint-100\\/10{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-tint-100\\/100{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-tint-100\\/15{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-tint-100\\/20{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-tint-100\\/25{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-tint-100\\/30{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-tint-100\\/35{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-tint-100\\/40{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-tint-100\\/45{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-tint-100\\/5{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-tint-100\\/50{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-tint-100\\/55{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-tint-100\\/60{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-tint-100\\/65{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-tint-100\\/70{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-tint-100\\/75{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-tint-100\\/80{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-tint-100\\/85{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-tint-100\\/90{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-tint-100\\/95{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-tint-200{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-border-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-tint-200\\/0{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-tint-200\\/10{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-tint-200\\/100{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-tint-200\\/15{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-tint-200\\/20{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-tint-200\\/25{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-tint-200\\/30{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-tint-200\\/35{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-tint-200\\/40{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-tint-200\\/45{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-tint-200\\/5{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-tint-200\\/50{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-tint-200\\/55{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-tint-200\\/60{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-tint-200\\/65{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-tint-200\\/70{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-tint-200\\/75{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-tint-200\\/80{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-tint-200\\/85{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-tint-200\\/90{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-tint-200\\/95{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-tint-300{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-border-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-tint-300\\/0{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-tint-300\\/10{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-tint-300\\/100{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-tint-300\\/15{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-tint-300\\/20{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-tint-300\\/25{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-tint-300\\/30{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-tint-300\\/35{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-tint-300\\/40{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-tint-300\\/45{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-tint-300\\/5{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-tint-300\\/50{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-tint-300\\/55{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-tint-300\\/60{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-tint-300\\/65{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-tint-300\\/70{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-tint-300\\/75{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-tint-300\\/80{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-tint-300\\/85{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-tint-300\\/90{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-tint-300\\/95{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-tint-400{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-border-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-tint-400\\/0{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-tint-400\\/10{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-tint-400\\/100{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-tint-400\\/15{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-tint-400\\/20{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-tint-400\\/25{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-tint-400\\/30{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-tint-400\\/35{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-tint-400\\/40{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-tint-400\\/45{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-tint-400\\/5{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-tint-400\\/50{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-tint-400\\/55{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-tint-400\\/60{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-tint-400\\/65{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-tint-400\\/70{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-tint-400\\/75{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-tint-400\\/80{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-tint-400\\/85{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-tint-400\\/90{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-tint-400\\/95{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-tint-50{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-border-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-tint-50\\/0{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-tint-50\\/10{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-tint-50\\/100{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-tint-50\\/15{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-tint-50\\/20{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-tint-50\\/25{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-tint-50\\/30{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-tint-50\\/35{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-tint-50\\/40{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-tint-50\\/45{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-tint-50\\/5{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-tint-50\\/50{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-tint-50\\/55{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-tint-50\\/60{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-tint-50\\/65{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-tint-50\\/70{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-tint-50\\/75{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-tint-50\\/80{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-tint-50\\/85{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-tint-50\\/90{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-tint-50\\/95{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-tint-500{\n--tw-border-opacity: 1;\nborder-color: color(from var(--tint) srgb r g b / var(--tw-border-opacity));\n}\n.border-tint-500\\/0{\nborder-color: color(from var(--tint) srgb r g b / 0);\n}\n.border-tint-500\\/10{\nborder-color: color(from var(--tint) srgb r g b / 0.1);\n}\n.border-tint-500\\/100{\nborder-color: color(from var(--tint) srgb r g b / 1);\n}\n.border-tint-500\\/15{\nborder-color: color(from var(--tint) srgb r g b / 0.15);\n}\n.border-tint-500\\/20{\nborder-color: color(from var(--tint) srgb r g b / 0.2);\n}\n.border-tint-500\\/25{\nborder-color: color(from var(--tint) srgb r g b / 0.25);\n}\n.border-tint-500\\/30{\nborder-color: color(from var(--tint) srgb r g b / 0.3);\n}\n.border-tint-500\\/35{\nborder-color: color(from var(--tint) srgb r g b / 0.35);\n}\n.border-tint-500\\/40{\nborder-color: color(from var(--tint) srgb r g b / 0.4);\n}\n.border-tint-500\\/45{\nborder-color: color(from var(--tint) srgb r g b / 0.45);\n}\n.border-tint-500\\/5{\nborder-color: color(from var(--tint) srgb r g b / 0.05);\n}\n.border-tint-500\\/50{\nborder-color: color(from var(--tint) srgb r g b / 0.5);\n}\n.border-tint-500\\/55{\nborder-color: color(from var(--tint) srgb r g b / 0.55);\n}\n.border-tint-500\\/60{\nborder-color: color(from var(--tint) srgb r g b / 0.6);\n}\n.border-tint-500\\/65{\nborder-color: color(from var(--tint) srgb r g b / 0.65);\n}\n.border-tint-500\\/70{\nborder-color: color(from var(--tint) srgb r g b / 0.7);\n}\n.border-tint-500\\/75{\nborder-color: color(from var(--tint) srgb r g b / 0.75);\n}\n.border-tint-500\\/80{\nborder-color: color(from var(--tint) srgb r g b / 0.8);\n}\n.border-tint-500\\/85{\nborder-color: color(from var(--tint) srgb r g b / 0.85);\n}\n.border-tint-500\\/90{\nborder-color: color(from var(--tint) srgb r g b / 0.9);\n}\n.border-tint-500\\/95{\nborder-color: color(from var(--tint) srgb r g b / 0.95);\n}\n.border-tint-600{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-border-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-tint-600\\/0{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-tint-600\\/10{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-tint-600\\/100{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-tint-600\\/15{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-tint-600\\/20{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-tint-600\\/25{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-tint-600\\/30{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-tint-600\\/35{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-tint-600\\/40{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-tint-600\\/45{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-tint-600\\/5{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-tint-600\\/50{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-tint-600\\/55{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-tint-600\\/60{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-tint-600\\/65{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-tint-600\\/70{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-tint-600\\/75{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-tint-600\\/80{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-tint-600\\/85{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-tint-600\\/90{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-tint-600\\/95{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-tint-700{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-border-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-tint-700\\/0{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-tint-700\\/10{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-tint-700\\/100{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-tint-700\\/15{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-tint-700\\/20{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-tint-700\\/25{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-tint-700\\/30{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-tint-700\\/35{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-tint-700\\/40{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-tint-700\\/45{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-tint-700\\/5{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-tint-700\\/50{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-tint-700\\/55{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-tint-700\\/60{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-tint-700\\/65{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-tint-700\\/70{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-tint-700\\/75{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-tint-700\\/80{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-tint-700\\/85{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-tint-700\\/90{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-tint-700\\/95{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-tint-800{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-border-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-tint-800\\/0{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-tint-800\\/10{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-tint-800\\/100{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-tint-800\\/15{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-tint-800\\/20{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-tint-800\\/25{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-tint-800\\/30{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-tint-800\\/35{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-tint-800\\/40{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-tint-800\\/45{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-tint-800\\/5{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-tint-800\\/50{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-tint-800\\/55{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-tint-800\\/60{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-tint-800\\/65{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-tint-800\\/70{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-tint-800\\/75{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-tint-800\\/80{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-tint-800\\/85{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-tint-800\\/90{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-tint-800\\/95{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-tint-900{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-border-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-tint-900\\/0{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-tint-900\\/10{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-tint-900\\/100{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-tint-900\\/15{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-tint-900\\/20{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-tint-900\\/25{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-tint-900\\/30{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-tint-900\\/35{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-tint-900\\/40{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-tint-900\\/45{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-tint-900\\/5{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-tint-900\\/50{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-tint-900\\/55{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-tint-900\\/60{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-tint-900\\/65{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-tint-900\\/70{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-tint-900\\/75{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-tint-900\\/80{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-tint-900\\/85{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-tint-900\\/90{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-tint-900\\/95{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-tint-950{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-border-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-tint-950\\/0{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-tint-950\\/10{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-tint-950\\/100{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-tint-950\\/15{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-tint-950\\/20{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-tint-950\\/25{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-tint-950\\/30{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-tint-950\\/35{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-tint-950\\/40{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-tint-950\\/45{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-tint-950\\/5{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-tint-950\\/50{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-tint-950\\/55{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-tint-950\\/60{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-tint-950\\/65{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-tint-950\\/70{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-tint-950\\/75{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-tint-950\\/80{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-tint-950\\/85{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-tint-950\\/90{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-tint-950\\/95{\nborder-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-transparent{\nborder-color: transparent;\n}\n.border-warning{\n--tw-border-opacity: 1;\nborder-color: rgb(237 170 0 / var(--tw-border-opacity));\n}\n.border-warning-100{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / var(--tw-border-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-warning-100\\/0{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-warning-100\\/10{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-warning-100\\/100{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-warning-100\\/15{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-warning-100\\/20{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-warning-100\\/25{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-warning-100\\/30{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-warning-100\\/35{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-warning-100\\/40{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-warning-100\\/45{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-warning-100\\/5{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-warning-100\\/50{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-warning-100\\/55{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-warning-100\\/60{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-warning-100\\/65{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-warning-100\\/70{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-warning-100\\/75{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-warning-100\\/80{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-warning-100\\/85{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-warning-100\\/90{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-warning-100\\/95{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-warning-200{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / var(--tw-border-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-warning-200\\/0{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-warning-200\\/10{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-warning-200\\/100{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-warning-200\\/15{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-warning-200\\/20{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-warning-200\\/25{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-warning-200\\/30{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-warning-200\\/35{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-warning-200\\/40{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-warning-200\\/45{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-warning-200\\/5{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-warning-200\\/50{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-warning-200\\/55{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-warning-200\\/60{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-warning-200\\/65{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-warning-200\\/70{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-warning-200\\/75{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-warning-200\\/80{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-warning-200\\/85{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-warning-200\\/90{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-warning-200\\/95{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-warning-300{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / var(--tw-border-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-warning-300\\/0{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-warning-300\\/10{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-warning-300\\/100{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-warning-300\\/15{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-warning-300\\/20{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-warning-300\\/25{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-warning-300\\/30{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-warning-300\\/35{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-warning-300\\/40{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-warning-300\\/45{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-warning-300\\/5{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-warning-300\\/50{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-warning-300\\/55{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-warning-300\\/60{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-warning-300\\/65{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-warning-300\\/70{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-warning-300\\/75{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-warning-300\\/80{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-warning-300\\/85{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-warning-300\\/90{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-warning-300\\/95{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-warning-400{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / var(--tw-border-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-warning-400\\/0{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-warning-400\\/10{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-warning-400\\/100{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-warning-400\\/15{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-warning-400\\/20{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-warning-400\\/25{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-warning-400\\/30{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-warning-400\\/35{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-warning-400\\/40{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-warning-400\\/45{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-warning-400\\/5{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-warning-400\\/50{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-warning-400\\/55{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-warning-400\\/60{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-warning-400\\/65{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-warning-400\\/70{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-warning-400\\/75{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-warning-400\\/80{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-warning-400\\/85{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-warning-400\\/90{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-warning-400\\/95{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-warning-50{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / var(--tw-border-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-warning-50\\/0{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-warning-50\\/10{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-warning-50\\/100{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-warning-50\\/15{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-warning-50\\/20{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-warning-50\\/25{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-warning-50\\/30{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-warning-50\\/35{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-warning-50\\/40{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-warning-50\\/45{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-warning-50\\/5{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-warning-50\\/50{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-warning-50\\/55{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-warning-50\\/60{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-warning-50\\/65{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-warning-50\\/70{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-warning-50\\/75{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-warning-50\\/80{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-warning-50\\/85{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-warning-50\\/90{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-warning-50\\/95{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-warning-500{\n--tw-border-opacity: 1;\nborder-color: color(from #edaa00 srgb r g b / var(--tw-border-opacity));\n}\n.border-warning-500\\/0{\nborder-color: color(from #edaa00 srgb r g b / 0);\n}\n.border-warning-500\\/10{\nborder-color: color(from #edaa00 srgb r g b / 0.1);\n}\n.border-warning-500\\/100{\nborder-color: color(from #edaa00 srgb r g b / 1);\n}\n.border-warning-500\\/15{\nborder-color: color(from #edaa00 srgb r g b / 0.15);\n}\n.border-warning-500\\/20{\nborder-color: color(from #edaa00 srgb r g b / 0.2);\n}\n.border-warning-500\\/25{\nborder-color: color(from #edaa00 srgb r g b / 0.25);\n}\n.border-warning-500\\/30{\nborder-color: color(from #edaa00 srgb r g b / 0.3);\n}\n.border-warning-500\\/35{\nborder-color: color(from #edaa00 srgb r g b / 0.35);\n}\n.border-warning-500\\/40{\nborder-color: color(from #edaa00 srgb r g b / 0.4);\n}\n.border-warning-500\\/45{\nborder-color: color(from #edaa00 srgb r g b / 0.45);\n}\n.border-warning-500\\/5{\nborder-color: color(from #edaa00 srgb r g b / 0.05);\n}\n.border-warning-500\\/50{\nborder-color: color(from #edaa00 srgb r g b / 0.5);\n}\n.border-warning-500\\/55{\nborder-color: color(from #edaa00 srgb r g b / 0.55);\n}\n.border-warning-500\\/60{\nborder-color: color(from #edaa00 srgb r g b / 0.6);\n}\n.border-warning-500\\/65{\nborder-color: color(from #edaa00 srgb r g b / 0.65);\n}\n.border-warning-500\\/70{\nborder-color: color(from #edaa00 srgb r g b / 0.7);\n}\n.border-warning-500\\/75{\nborder-color: color(from #edaa00 srgb r g b / 0.75);\n}\n.border-warning-500\\/80{\nborder-color: color(from #edaa00 srgb r g b / 0.8);\n}\n.border-warning-500\\/85{\nborder-color: color(from #edaa00 srgb r g b / 0.85);\n}\n.border-warning-500\\/90{\nborder-color: color(from #edaa00 srgb r g b / 0.9);\n}\n.border-warning-500\\/95{\nborder-color: color(from #edaa00 srgb r g b / 0.95);\n}\n.border-warning-600{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / var(--tw-border-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-warning-600\\/0{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-warning-600\\/10{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-warning-600\\/100{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-warning-600\\/15{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-warning-600\\/20{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-warning-600\\/25{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-warning-600\\/30{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-warning-600\\/35{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-warning-600\\/40{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-warning-600\\/45{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-warning-600\\/5{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-warning-600\\/50{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-warning-600\\/55{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-warning-600\\/60{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-warning-600\\/65{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-warning-600\\/70{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-warning-600\\/75{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-warning-600\\/80{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-warning-600\\/85{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-warning-600\\/90{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-warning-600\\/95{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-warning-700{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / var(--tw-border-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-warning-700\\/0{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-warning-700\\/10{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-warning-700\\/100{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-warning-700\\/15{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-warning-700\\/20{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-warning-700\\/25{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-warning-700\\/30{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-warning-700\\/35{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-warning-700\\/40{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-warning-700\\/45{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-warning-700\\/5{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-warning-700\\/50{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-warning-700\\/55{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-warning-700\\/60{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-warning-700\\/65{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-warning-700\\/70{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-warning-700\\/75{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-warning-700\\/80{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-warning-700\\/85{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-warning-700\\/90{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-warning-700\\/95{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-warning-800{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / var(--tw-border-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-warning-800\\/0{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-warning-800\\/10{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-warning-800\\/100{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-warning-800\\/15{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-warning-800\\/20{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-warning-800\\/25{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-warning-800\\/30{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-warning-800\\/35{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-warning-800\\/40{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-warning-800\\/45{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-warning-800\\/5{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-warning-800\\/50{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-warning-800\\/55{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-warning-800\\/60{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-warning-800\\/65{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-warning-800\\/70{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-warning-800\\/75{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-warning-800\\/80{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-warning-800\\/85{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-warning-800\\/90{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-warning-800\\/95{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-warning-900{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / var(--tw-border-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-warning-900\\/0{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-warning-900\\/10{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-warning-900\\/100{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-warning-900\\/15{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-warning-900\\/20{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-warning-900\\/25{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-warning-900\\/30{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-warning-900\\/35{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-warning-900\\/40{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-warning-900\\/45{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-warning-900\\/5{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-warning-900\\/50{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-warning-900\\/55{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-warning-900\\/60{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-warning-900\\/65{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-warning-900\\/70{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-warning-900\\/75{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-warning-900\\/80{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-warning-900\\/85{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-warning-900\\/90{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-warning-900\\/95{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-warning-950{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / var(--tw-border-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-warning-950\\/0{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-warning-950\\/10{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-warning-950\\/100{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-warning-950\\/15{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-warning-950\\/20{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-warning-950\\/25{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-warning-950\\/30{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-warning-950\\/35{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-warning-950\\/40{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-warning-950\\/45{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-warning-950\\/5{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-warning-950\\/50{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-warning-950\\/55{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-warning-950\\/60{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-warning-950\\/65{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-warning-950\\/70{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-warning-950\\/75{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-warning-950\\/80{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-warning-950\\/85{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-warning-950\\/90{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-warning-950\\/95{\nborder-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-warning\\/0{\nborder-color: rgb(237 170 0 / 0);\n}\n.border-warning\\/10{\nborder-color: rgb(237 170 0 / 0.1);\n}\n.border-warning\\/100{\nborder-color: rgb(237 170 0 / 1);\n}\n.border-warning\\/15{\nborder-color: rgb(237 170 0 / 0.15);\n}\n.border-warning\\/20{\nborder-color: rgb(237 170 0 / 0.2);\n}\n.border-warning\\/25{\nborder-color: rgb(237 170 0 / 0.25);\n}\n.border-warning\\/30{\nborder-color: rgb(237 170 0 / 0.3);\n}\n.border-warning\\/35{\nborder-color: rgb(237 170 0 / 0.35);\n}\n.border-warning\\/40{\nborder-color: rgb(237 170 0 / 0.4);\n}\n.border-warning\\/45{\nborder-color: rgb(237 170 0 / 0.45);\n}\n.border-warning\\/5{\nborder-color: rgb(237 170 0 / 0.05);\n}\n.border-warning\\/50{\nborder-color: rgb(237 170 0 / 0.5);\n}\n.border-warning\\/55{\nborder-color: rgb(237 170 0 / 0.55);\n}\n.border-warning\\/60{\nborder-color: rgb(237 170 0 / 0.6);\n}\n.border-warning\\/65{\nborder-color: rgb(237 170 0 / 0.65);\n}\n.border-warning\\/70{\nborder-color: rgb(237 170 0 / 0.7);\n}\n.border-warning\\/75{\nborder-color: rgb(237 170 0 / 0.75);\n}\n.border-warning\\/80{\nborder-color: rgb(237 170 0 / 0.8);\n}\n.border-warning\\/85{\nborder-color: rgb(237 170 0 / 0.85);\n}\n.border-warning\\/90{\nborder-color: rgb(237 170 0 / 0.9);\n}\n.border-warning\\/95{\nborder-color: rgb(237 170 0 / 0.95);\n}\n.border-white{\n--tw-border-opacity: 1;\nborder-color: rgb(254 253 252 / var(--tw-border-opacity));\n}\n.border-white\\/0{\nborder-color: rgb(254 253 252 / 0);\n}\n.border-white\\/10{\nborder-color: rgb(254 253 252 / 0.1);\n}\n.border-white\\/100{\nborder-color: rgb(254 253 252 / 1);\n}\n.border-white\\/15{\nborder-color: rgb(254 253 252 / 0.15);\n}\n.border-white\\/20{\nborder-color: rgb(254 253 252 / 0.2);\n}\n.border-white\\/25{\nborder-color: rgb(254 253 252 / 0.25);\n}\n.border-white\\/30{\nborder-color: rgb(254 253 252 / 0.3);\n}\n.border-white\\/35{\nborder-color: rgb(254 253 252 / 0.35);\n}\n.border-white\\/40{\nborder-color: rgb(254 253 252 / 0.4);\n}\n.border-white\\/45{\nborder-color: rgb(254 253 252 / 0.45);\n}\n.border-white\\/5{\nborder-color: rgb(254 253 252 / 0.05);\n}\n.border-white\\/50{\nborder-color: rgb(254 253 252 / 0.5);\n}\n.border-white\\/55{\nborder-color: rgb(254 253 252 / 0.55);\n}\n.border-white\\/60{\nborder-color: rgb(254 253 252 / 0.6);\n}\n.border-white\\/65{\nborder-color: rgb(254 253 252 / 0.65);\n}\n.border-white\\/70{\nborder-color: rgb(254 253 252 / 0.7);\n}\n.border-white\\/75{\nborder-color: rgb(254 253 252 / 0.75);\n}\n.border-white\\/80{\nborder-color: rgb(254 253 252 / 0.8);\n}\n.border-white\\/85{\nborder-color: rgb(254 253 252 / 0.85);\n}\n.border-white\\/90{\nborder-color: rgb(254 253 252 / 0.9);\n}\n.border-white\\/95{\nborder-color: rgb(254 253 252 / 0.95);\n}\n.border-wood{\n--tw-border-opacity: 1;\nborder-color: rgb(173 127 88 / var(--tw-border-opacity));\n}\n.border-wood-100{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / var(--tw-border-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-wood-100\\/0{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-wood-100\\/10{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-wood-100\\/100{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-wood-100\\/15{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-wood-100\\/20{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-wood-100\\/25{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-wood-100\\/30{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-wood-100\\/35{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-wood-100\\/40{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-wood-100\\/45{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-wood-100\\/5{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-wood-100\\/50{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-wood-100\\/55{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-wood-100\\/60{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-wood-100\\/65{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-wood-100\\/70{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-wood-100\\/75{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-wood-100\\/80{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-wood-100\\/85{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-wood-100\\/90{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-wood-100\\/95{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-wood-200{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / var(--tw-border-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-wood-200\\/0{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-wood-200\\/10{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-wood-200\\/100{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-wood-200\\/15{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-wood-200\\/20{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-wood-200\\/25{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-wood-200\\/30{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-wood-200\\/35{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-wood-200\\/40{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-wood-200\\/45{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-wood-200\\/5{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-wood-200\\/50{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-wood-200\\/55{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-wood-200\\/60{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-wood-200\\/65{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-wood-200\\/70{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-wood-200\\/75{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-wood-200\\/80{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-wood-200\\/85{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-wood-200\\/90{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-wood-200\\/95{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-wood-300{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / var(--tw-border-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-wood-300\\/0{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-wood-300\\/10{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-wood-300\\/100{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-wood-300\\/15{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-wood-300\\/20{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-wood-300\\/25{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-wood-300\\/30{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-wood-300\\/35{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-wood-300\\/40{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-wood-300\\/45{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-wood-300\\/5{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-wood-300\\/50{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-wood-300\\/55{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-wood-300\\/60{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-wood-300\\/65{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-wood-300\\/70{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-wood-300\\/75{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-wood-300\\/80{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-wood-300\\/85{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-wood-300\\/90{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-wood-300\\/95{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-wood-400{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / var(--tw-border-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-wood-400\\/0{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-wood-400\\/10{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-wood-400\\/100{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-wood-400\\/15{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-wood-400\\/20{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-wood-400\\/25{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-wood-400\\/30{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-wood-400\\/35{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-wood-400\\/40{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-wood-400\\/45{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-wood-400\\/5{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-wood-400\\/50{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-wood-400\\/55{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-wood-400\\/60{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-wood-400\\/65{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-wood-400\\/70{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-wood-400\\/75{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-wood-400\\/80{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-wood-400\\/85{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-wood-400\\/90{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-wood-400\\/95{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-wood-50{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / var(--tw-border-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.border-wood-50\\/0{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.border-wood-50\\/10{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.border-wood-50\\/100{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.border-wood-50\\/15{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.border-wood-50\\/20{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.border-wood-50\\/25{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.border-wood-50\\/30{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.border-wood-50\\/35{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.border-wood-50\\/40{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.border-wood-50\\/45{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.border-wood-50\\/5{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.border-wood-50\\/50{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.border-wood-50\\/55{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.border-wood-50\\/60{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.border-wood-50\\/65{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.border-wood-50\\/70{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.border-wood-50\\/75{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.border-wood-50\\/80{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.border-wood-50\\/85{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.border-wood-50\\/90{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.border-wood-50\\/95{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.border-wood-500{\n--tw-border-opacity: 1;\nborder-color: color(from #ad7f58 srgb r g b / var(--tw-border-opacity));\n}\n.border-wood-500\\/0{\nborder-color: color(from #ad7f58 srgb r g b / 0);\n}\n.border-wood-500\\/10{\nborder-color: color(from #ad7f58 srgb r g b / 0.1);\n}\n.border-wood-500\\/100{\nborder-color: color(from #ad7f58 srgb r g b / 1);\n}\n.border-wood-500\\/15{\nborder-color: color(from #ad7f58 srgb r g b / 0.15);\n}\n.border-wood-500\\/20{\nborder-color: color(from #ad7f58 srgb r g b / 0.2);\n}\n.border-wood-500\\/25{\nborder-color: color(from #ad7f58 srgb r g b / 0.25);\n}\n.border-wood-500\\/30{\nborder-color: color(from #ad7f58 srgb r g b / 0.3);\n}\n.border-wood-500\\/35{\nborder-color: color(from #ad7f58 srgb r g b / 0.35);\n}\n.border-wood-500\\/40{\nborder-color: color(from #ad7f58 srgb r g b / 0.4);\n}\n.border-wood-500\\/45{\nborder-color: color(from #ad7f58 srgb r g b / 0.45);\n}\n.border-wood-500\\/5{\nborder-color: color(from #ad7f58 srgb r g b / 0.05);\n}\n.border-wood-500\\/50{\nborder-color: color(from #ad7f58 srgb r g b / 0.5);\n}\n.border-wood-500\\/55{\nborder-color: color(from #ad7f58 srgb r g b / 0.55);\n}\n.border-wood-500\\/60{\nborder-color: color(from #ad7f58 srgb r g b / 0.6);\n}\n.border-wood-500\\/65{\nborder-color: color(from #ad7f58 srgb r g b / 0.65);\n}\n.border-wood-500\\/70{\nborder-color: color(from #ad7f58 srgb r g b / 0.7);\n}\n.border-wood-500\\/75{\nborder-color: color(from #ad7f58 srgb r g b / 0.75);\n}\n.border-wood-500\\/80{\nborder-color: color(from #ad7f58 srgb r g b / 0.8);\n}\n.border-wood-500\\/85{\nborder-color: color(from #ad7f58 srgb r g b / 0.85);\n}\n.border-wood-500\\/90{\nborder-color: color(from #ad7f58 srgb r g b / 0.9);\n}\n.border-wood-500\\/95{\nborder-color: color(from #ad7f58 srgb r g b / 0.95);\n}\n.border-wood-600{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / var(--tw-border-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-wood-600\\/0{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-wood-600\\/10{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-wood-600\\/100{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-wood-600\\/15{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-wood-600\\/20{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-wood-600\\/25{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-wood-600\\/30{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-wood-600\\/35{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-wood-600\\/40{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-wood-600\\/45{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-wood-600\\/5{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-wood-600\\/50{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-wood-600\\/55{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-wood-600\\/60{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-wood-600\\/65{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-wood-600\\/70{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-wood-600\\/75{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-wood-600\\/80{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-wood-600\\/85{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-wood-600\\/90{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-wood-600\\/95{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-wood-700{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / var(--tw-border-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-wood-700\\/0{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-wood-700\\/10{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-wood-700\\/100{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-wood-700\\/15{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-wood-700\\/20{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-wood-700\\/25{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-wood-700\\/30{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-wood-700\\/35{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-wood-700\\/40{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-wood-700\\/45{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-wood-700\\/5{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-wood-700\\/50{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-wood-700\\/55{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-wood-700\\/60{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-wood-700\\/65{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-wood-700\\/70{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-wood-700\\/75{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-wood-700\\/80{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-wood-700\\/85{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-wood-700\\/90{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-wood-700\\/95{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-wood-800{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / var(--tw-border-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-wood-800\\/0{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-wood-800\\/10{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-wood-800\\/100{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-wood-800\\/15{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-wood-800\\/20{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-wood-800\\/25{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-wood-800\\/30{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-wood-800\\/35{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-wood-800\\/40{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-wood-800\\/45{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-wood-800\\/5{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-wood-800\\/50{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-wood-800\\/55{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-wood-800\\/60{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-wood-800\\/65{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-wood-800\\/70{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-wood-800\\/75{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-wood-800\\/80{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-wood-800\\/85{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-wood-800\\/90{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-wood-800\\/95{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-wood-900{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / var(--tw-border-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-wood-900\\/0{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-wood-900\\/10{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-wood-900\\/100{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-wood-900\\/15{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-wood-900\\/20{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-wood-900\\/25{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-wood-900\\/30{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-wood-900\\/35{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-wood-900\\/40{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-wood-900\\/45{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-wood-900\\/5{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-wood-900\\/50{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-wood-900\\/55{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-wood-900\\/60{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-wood-900\\/65{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-wood-900\\/70{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-wood-900\\/75{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-wood-900\\/80{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-wood-900\\/85{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-wood-900\\/90{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-wood-900\\/95{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-wood-950{\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / var(--tw-border-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-border-opacity)));\n}\n.border-wood-950\\/0{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.border-wood-950\\/10{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.border-wood-950\\/100{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.border-wood-950\\/15{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.border-wood-950\\/20{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.border-wood-950\\/25{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.border-wood-950\\/30{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.border-wood-950\\/35{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.border-wood-950\\/40{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.border-wood-950\\/45{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.border-wood-950\\/5{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.border-wood-950\\/50{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.border-wood-950\\/55{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.border-wood-950\\/60{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.border-wood-950\\/65{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.border-wood-950\\/70{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.border-wood-950\\/75{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.border-wood-950\\/80{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.border-wood-950\\/85{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.border-wood-950\\/90{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.border-wood-950\\/95{\nborder-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.border-wood\\/0{\nborder-color: rgb(173 127 88 / 0);\n}\n.border-wood\\/10{\nborder-color: rgb(173 127 88 / 0.1);\n}\n.border-wood\\/100{\nborder-color: rgb(173 127 88 / 1);\n}\n.border-wood\\/15{\nborder-color: rgb(173 127 88 / 0.15);\n}\n.border-wood\\/20{\nborder-color: rgb(173 127 88 / 0.2);\n}\n.border-wood\\/25{\nborder-color: rgb(173 127 88 / 0.25);\n}\n.border-wood\\/30{\nborder-color: rgb(173 127 88 / 0.3);\n}\n.border-wood\\/35{\nborder-color: rgb(173 127 88 / 0.35);\n}\n.border-wood\\/40{\nborder-color: rgb(173 127 88 / 0.4);\n}\n.border-wood\\/45{\nborder-color: rgb(173 127 88 / 0.45);\n}\n.border-wood\\/5{\nborder-color: rgb(173 127 88 / 0.05);\n}\n.border-wood\\/50{\nborder-color: rgb(173 127 88 / 0.5);\n}\n.border-wood\\/55{\nborder-color: rgb(173 127 88 / 0.55);\n}\n.border-wood\\/60{\nborder-color: rgb(173 127 88 / 0.6);\n}\n.border-wood\\/65{\nborder-color: rgb(173 127 88 / 0.65);\n}\n.border-wood\\/70{\nborder-color: rgb(173 127 88 / 0.7);\n}\n.border-wood\\/75{\nborder-color: rgb(173 127 88 / 0.75);\n}\n.border-wood\\/80{\nborder-color: rgb(173 127 88 / 0.8);\n}\n.border-wood\\/85{\nborder-color: rgb(173 127 88 / 0.85);\n}\n.border-wood\\/90{\nborder-color: rgb(173 127 88 / 0.9);\n}\n.border-wood\\/95{\nborder-color: rgb(173 127 88 / 0.95);\n}\n.border-b-danger-500{\n--tw-border-opacity: 1;\nborder-bottom-color: color(from #f24c3d srgb r g b / var(--tw-border-opacity));\n}\n.border-b-info-500{\n--tw-border-opacity: 1;\nborder-bottom-color: color(from #00bfff srgb r g b / var(--tw-border-opacity));\n}\n.border-b-success-500{\n--tw-border-opacity: 1;\nborder-bottom-color: color(from #44bc69 srgb r g b / var(--tw-border-opacity));\n}\n.border-b-warning-500{\n--tw-border-opacity: 1;\nborder-bottom-color: color(from #edaa00 srgb r g b / var(--tw-border-opacity));\n}\n.border-e-primary-500{\n--tw-border-opacity: 1;\nborder-inline-end-color: color(from var(--primary) srgb r g b / var(--tw-border-opacity));\n}\n.border-s-dimmed{\n--tw-border-opacity: 1;\nborder-inline-start-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)) 72%, color(from var(--tint) srgb r g b / var(--tw-border-opacity)));\n}\n.border-s-primary-500{\n--tw-border-opacity: 1;\nborder-inline-start-color: color(from var(--primary) srgb r g b / var(--tw-border-opacity));\n}\n.border-s-tint-50{\n--tw-border-opacity: 1;\nborder-inline-start-color: color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-border-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)));\n}\n.bg{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)) 99%, color(from var(--tint) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-\\[var\\(--fabric-input\\)\\]{\nbackground-color: var(--fabric-input);\n}\n.bg-accent{\nbackground-color: var(--accent);\n}\n.bg-accent-100{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-accent-100\\/0{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-accent-100\\/10{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-accent-100\\/100{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-accent-100\\/15{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-accent-100\\/20{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-accent-100\\/25{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-accent-100\\/30{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-accent-100\\/35{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-accent-100\\/40{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-accent-100\\/45{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-accent-100\\/5{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-accent-100\\/50{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-accent-100\\/55{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-accent-100\\/60{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-accent-100\\/65{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-accent-100\\/70{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-accent-100\\/75{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-accent-100\\/80{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-accent-100\\/85{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-accent-100\\/90{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-accent-100\\/95{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-accent-200{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-accent-200\\/0{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-accent-200\\/10{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-accent-200\\/100{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-accent-200\\/15{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-accent-200\\/20{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-accent-200\\/25{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-accent-200\\/30{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-accent-200\\/35{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-accent-200\\/40{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-accent-200\\/45{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-accent-200\\/5{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-accent-200\\/50{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-accent-200\\/55{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-accent-200\\/60{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-accent-200\\/65{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-accent-200\\/70{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-accent-200\\/75{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-accent-200\\/80{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-accent-200\\/85{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-accent-200\\/90{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-accent-200\\/95{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-accent-300{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / var(--tw-bg-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-accent-300\\/0{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-accent-300\\/10{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-accent-300\\/100{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-accent-300\\/15{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-accent-300\\/20{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-accent-300\\/25{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-accent-300\\/30{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-accent-300\\/35{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-accent-300\\/40{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-accent-300\\/45{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-accent-300\\/5{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-accent-300\\/50{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-accent-300\\/55{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-accent-300\\/60{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-accent-300\\/65{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-accent-300\\/70{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-accent-300\\/75{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-accent-300\\/80{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-accent-300\\/85{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-accent-300\\/90{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-accent-300\\/95{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-accent-400{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-accent-400\\/0{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-accent-400\\/10{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-accent-400\\/100{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-accent-400\\/15{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-accent-400\\/20{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-accent-400\\/25{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-accent-400\\/30{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-accent-400\\/35{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-accent-400\\/40{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-accent-400\\/45{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-accent-400\\/5{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-accent-400\\/50{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-accent-400\\/55{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-accent-400\\/60{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-accent-400\\/65{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-accent-400\\/70{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-accent-400\\/75{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-accent-400\\/80{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-accent-400\\/85{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-accent-400\\/90{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-accent-400\\/95{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-accent-50{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / var(--tw-bg-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-accent-50\\/0{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-accent-50\\/10{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-accent-50\\/100{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-accent-50\\/15{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-accent-50\\/20{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-accent-50\\/25{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-accent-50\\/30{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-accent-50\\/35{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-accent-50\\/40{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-accent-50\\/45{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-accent-50\\/5{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-accent-50\\/50{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-accent-50\\/55{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-accent-50\\/60{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-accent-50\\/65{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-accent-50\\/70{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-accent-50\\/75{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-accent-50\\/80{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-accent-50\\/85{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-accent-50\\/90{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-accent-50\\/95{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-accent-500{\n--tw-bg-opacity: 1;\nbackground-color: color(from var(--accent) srgb r g b / var(--tw-bg-opacity));\n}\n.bg-accent-500\\/0{\nbackground-color: color(from var(--accent) srgb r g b / 0);\n}\n.bg-accent-500\\/10{\nbackground-color: color(from var(--accent) srgb r g b / 0.1);\n}\n.bg-accent-500\\/100{\nbackground-color: color(from var(--accent) srgb r g b / 1);\n}\n.bg-accent-500\\/15{\nbackground-color: color(from var(--accent) srgb r g b / 0.15);\n}\n.bg-accent-500\\/20{\nbackground-color: color(from var(--accent) srgb r g b / 0.2);\n}\n.bg-accent-500\\/25{\nbackground-color: color(from var(--accent) srgb r g b / 0.25);\n}\n.bg-accent-500\\/30{\nbackground-color: color(from var(--accent) srgb r g b / 0.3);\n}\n.bg-accent-500\\/35{\nbackground-color: color(from var(--accent) srgb r g b / 0.35);\n}\n.bg-accent-500\\/40{\nbackground-color: color(from var(--accent) srgb r g b / 0.4);\n}\n.bg-accent-500\\/45{\nbackground-color: color(from var(--accent) srgb r g b / 0.45);\n}\n.bg-accent-500\\/5{\nbackground-color: color(from var(--accent) srgb r g b / 0.05);\n}\n.bg-accent-500\\/50{\nbackground-color: color(from var(--accent) srgb r g b / 0.5);\n}\n.bg-accent-500\\/55{\nbackground-color: color(from var(--accent) srgb r g b / 0.55);\n}\n.bg-accent-500\\/60{\nbackground-color: color(from var(--accent) srgb r g b / 0.6);\n}\n.bg-accent-500\\/65{\nbackground-color: color(from var(--accent) srgb r g b / 0.65);\n}\n.bg-accent-500\\/70{\nbackground-color: color(from var(--accent) srgb r g b / 0.7);\n}\n.bg-accent-500\\/75{\nbackground-color: color(from var(--accent) srgb r g b / 0.75);\n}\n.bg-accent-500\\/80{\nbackground-color: color(from var(--accent) srgb r g b / 0.8);\n}\n.bg-accent-500\\/85{\nbackground-color: color(from var(--accent) srgb r g b / 0.85);\n}\n.bg-accent-500\\/90{\nbackground-color: color(from var(--accent) srgb r g b / 0.9);\n}\n.bg-accent-500\\/95{\nbackground-color: color(from var(--accent) srgb r g b / 0.95);\n}\n.bg-accent-600{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-accent-600\\/0{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-accent-600\\/10{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-accent-600\\/100{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-accent-600\\/15{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-accent-600\\/20{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-accent-600\\/25{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-accent-600\\/30{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-accent-600\\/35{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-accent-600\\/40{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-accent-600\\/45{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-accent-600\\/5{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-accent-600\\/50{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-accent-600\\/55{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-accent-600\\/60{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-accent-600\\/65{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-accent-600\\/70{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-accent-600\\/75{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-accent-600\\/80{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-accent-600\\/85{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-accent-600\\/90{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-accent-600\\/95{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-accent-700{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / var(--tw-bg-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-accent-700\\/0{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-accent-700\\/10{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-accent-700\\/100{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-accent-700\\/15{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-accent-700\\/20{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-accent-700\\/25{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-accent-700\\/30{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-accent-700\\/35{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-accent-700\\/40{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-accent-700\\/45{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-accent-700\\/5{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-accent-700\\/50{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-accent-700\\/55{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-accent-700\\/60{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-accent-700\\/65{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-accent-700\\/70{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-accent-700\\/75{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-accent-700\\/80{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-accent-700\\/85{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-accent-700\\/90{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-accent-700\\/95{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-accent-800{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-accent-800\\/0{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-accent-800\\/10{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-accent-800\\/100{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-accent-800\\/15{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-accent-800\\/20{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-accent-800\\/25{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-accent-800\\/30{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-accent-800\\/35{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-accent-800\\/40{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-accent-800\\/45{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-accent-800\\/5{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-accent-800\\/50{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-accent-800\\/55{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-accent-800\\/60{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-accent-800\\/65{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-accent-800\\/70{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-accent-800\\/75{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-accent-800\\/80{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-accent-800\\/85{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-accent-800\\/90{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-accent-800\\/95{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-accent-900{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-accent-900\\/0{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-accent-900\\/10{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-accent-900\\/100{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-accent-900\\/15{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-accent-900\\/20{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-accent-900\\/25{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-accent-900\\/30{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-accent-900\\/35{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-accent-900\\/40{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-accent-900\\/45{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-accent-900\\/5{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-accent-900\\/50{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-accent-900\\/55{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-accent-900\\/60{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-accent-900\\/65{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-accent-900\\/70{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-accent-900\\/75{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-accent-900\\/80{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-accent-900\\/85{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-accent-900\\/90{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-accent-900\\/95{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-accent-950{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / var(--tw-bg-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-accent-950\\/0{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-accent-950\\/10{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-accent-950\\/100{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-accent-950\\/15{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-accent-950\\/20{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-accent-950\\/25{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-accent-950\\/30{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-accent-950\\/35{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-accent-950\\/40{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-accent-950\\/45{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-accent-950\\/5{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-accent-950\\/50{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-accent-950\\/55{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-accent-950\\/60{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-accent-950\\/65{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-accent-950\\/70{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-accent-950\\/75{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-accent-950\\/80{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-accent-950\\/85{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-accent-950\\/90{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-accent-950\\/95{\nbackground-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-avacado{\n--tw-bg-opacity: 1;\nbackground-color: rgb(70 167 88 / var(--tw-bg-opacity));\n}\n.bg-avacado-100{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-avacado-100\\/0{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-avacado-100\\/10{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-avacado-100\\/100{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-avacado-100\\/15{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-avacado-100\\/20{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-avacado-100\\/25{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-avacado-100\\/30{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-avacado-100\\/35{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-avacado-100\\/40{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-avacado-100\\/45{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-avacado-100\\/5{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-avacado-100\\/50{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-avacado-100\\/55{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-avacado-100\\/60{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-avacado-100\\/65{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-avacado-100\\/70{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-avacado-100\\/75{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-avacado-100\\/80{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-avacado-100\\/85{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-avacado-100\\/90{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-avacado-100\\/95{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-avacado-200{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-avacado-200\\/0{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-avacado-200\\/10{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-avacado-200\\/100{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-avacado-200\\/15{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-avacado-200\\/20{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-avacado-200\\/25{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-avacado-200\\/30{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-avacado-200\\/35{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-avacado-200\\/40{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-avacado-200\\/45{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-avacado-200\\/5{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-avacado-200\\/50{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-avacado-200\\/55{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-avacado-200\\/60{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-avacado-200\\/65{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-avacado-200\\/70{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-avacado-200\\/75{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-avacado-200\\/80{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-avacado-200\\/85{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-avacado-200\\/90{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-avacado-200\\/95{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-avacado-300{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / var(--tw-bg-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-avacado-300\\/0{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-avacado-300\\/10{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-avacado-300\\/100{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-avacado-300\\/15{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-avacado-300\\/20{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-avacado-300\\/25{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-avacado-300\\/30{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-avacado-300\\/35{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-avacado-300\\/40{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-avacado-300\\/45{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-avacado-300\\/5{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-avacado-300\\/50{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-avacado-300\\/55{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-avacado-300\\/60{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-avacado-300\\/65{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-avacado-300\\/70{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-avacado-300\\/75{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-avacado-300\\/80{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-avacado-300\\/85{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-avacado-300\\/90{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-avacado-300\\/95{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-avacado-400{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-avacado-400\\/0{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-avacado-400\\/10{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-avacado-400\\/100{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-avacado-400\\/15{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-avacado-400\\/20{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-avacado-400\\/25{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-avacado-400\\/30{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-avacado-400\\/35{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-avacado-400\\/40{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-avacado-400\\/45{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-avacado-400\\/5{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-avacado-400\\/50{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-avacado-400\\/55{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-avacado-400\\/60{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-avacado-400\\/65{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-avacado-400\\/70{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-avacado-400\\/75{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-avacado-400\\/80{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-avacado-400\\/85{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-avacado-400\\/90{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-avacado-400\\/95{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-avacado-50{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / var(--tw-bg-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-avacado-50\\/0{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-avacado-50\\/10{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-avacado-50\\/100{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-avacado-50\\/15{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-avacado-50\\/20{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-avacado-50\\/25{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-avacado-50\\/30{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-avacado-50\\/35{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-avacado-50\\/40{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-avacado-50\\/45{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-avacado-50\\/5{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-avacado-50\\/50{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-avacado-50\\/55{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-avacado-50\\/60{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-avacado-50\\/65{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-avacado-50\\/70{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-avacado-50\\/75{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-avacado-50\\/80{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-avacado-50\\/85{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-avacado-50\\/90{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-avacado-50\\/95{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-avacado-500{\n--tw-bg-opacity: 1;\nbackground-color: color(from #46a758 srgb r g b / var(--tw-bg-opacity));\n}\n.bg-avacado-500\\/0{\nbackground-color: color(from #46a758 srgb r g b / 0);\n}\n.bg-avacado-500\\/10{\nbackground-color: color(from #46a758 srgb r g b / 0.1);\n}\n.bg-avacado-500\\/100{\nbackground-color: color(from #46a758 srgb r g b / 1);\n}\n.bg-avacado-500\\/15{\nbackground-color: color(from #46a758 srgb r g b / 0.15);\n}\n.bg-avacado-500\\/20{\nbackground-color: color(from #46a758 srgb r g b / 0.2);\n}\n.bg-avacado-500\\/25{\nbackground-color: color(from #46a758 srgb r g b / 0.25);\n}\n.bg-avacado-500\\/30{\nbackground-color: color(from #46a758 srgb r g b / 0.3);\n}\n.bg-avacado-500\\/35{\nbackground-color: color(from #46a758 srgb r g b / 0.35);\n}\n.bg-avacado-500\\/40{\nbackground-color: color(from #46a758 srgb r g b / 0.4);\n}\n.bg-avacado-500\\/45{\nbackground-color: color(from #46a758 srgb r g b / 0.45);\n}\n.bg-avacado-500\\/5{\nbackground-color: color(from #46a758 srgb r g b / 0.05);\n}\n.bg-avacado-500\\/50{\nbackground-color: color(from #46a758 srgb r g b / 0.5);\n}\n.bg-avacado-500\\/55{\nbackground-color: color(from #46a758 srgb r g b / 0.55);\n}\n.bg-avacado-500\\/60{\nbackground-color: color(from #46a758 srgb r g b / 0.6);\n}\n.bg-avacado-500\\/65{\nbackground-color: color(from #46a758 srgb r g b / 0.65);\n}\n.bg-avacado-500\\/70{\nbackground-color: color(from #46a758 srgb r g b / 0.7);\n}\n.bg-avacado-500\\/75{\nbackground-color: color(from #46a758 srgb r g b / 0.75);\n}\n.bg-avacado-500\\/80{\nbackground-color: color(from #46a758 srgb r g b / 0.8);\n}\n.bg-avacado-500\\/85{\nbackground-color: color(from #46a758 srgb r g b / 0.85);\n}\n.bg-avacado-500\\/90{\nbackground-color: color(from #46a758 srgb r g b / 0.9);\n}\n.bg-avacado-500\\/95{\nbackground-color: color(from #46a758 srgb r g b / 0.95);\n}\n.bg-avacado-600{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-avacado-600\\/0{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-avacado-600\\/10{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-avacado-600\\/100{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-avacado-600\\/15{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-avacado-600\\/20{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-avacado-600\\/25{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-avacado-600\\/30{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-avacado-600\\/35{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-avacado-600\\/40{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-avacado-600\\/45{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-avacado-600\\/5{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-avacado-600\\/50{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-avacado-600\\/55{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-avacado-600\\/60{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-avacado-600\\/65{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-avacado-600\\/70{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-avacado-600\\/75{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-avacado-600\\/80{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-avacado-600\\/85{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-avacado-600\\/90{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-avacado-600\\/95{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-avacado-700{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / var(--tw-bg-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-avacado-700\\/0{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-avacado-700\\/10{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-avacado-700\\/100{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-avacado-700\\/15{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-avacado-700\\/20{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-avacado-700\\/25{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-avacado-700\\/30{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-avacado-700\\/35{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-avacado-700\\/40{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-avacado-700\\/45{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-avacado-700\\/5{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-avacado-700\\/50{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-avacado-700\\/55{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-avacado-700\\/60{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-avacado-700\\/65{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-avacado-700\\/70{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-avacado-700\\/75{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-avacado-700\\/80{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-avacado-700\\/85{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-avacado-700\\/90{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-avacado-700\\/95{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-avacado-800{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-avacado-800\\/0{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-avacado-800\\/10{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-avacado-800\\/100{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-avacado-800\\/15{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-avacado-800\\/20{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-avacado-800\\/25{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-avacado-800\\/30{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-avacado-800\\/35{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-avacado-800\\/40{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-avacado-800\\/45{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-avacado-800\\/5{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-avacado-800\\/50{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-avacado-800\\/55{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-avacado-800\\/60{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-avacado-800\\/65{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-avacado-800\\/70{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-avacado-800\\/75{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-avacado-800\\/80{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-avacado-800\\/85{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-avacado-800\\/90{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-avacado-800\\/95{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-avacado-900{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-avacado-900\\/0{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-avacado-900\\/10{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-avacado-900\\/100{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-avacado-900\\/15{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-avacado-900\\/20{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-avacado-900\\/25{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-avacado-900\\/30{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-avacado-900\\/35{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-avacado-900\\/40{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-avacado-900\\/45{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-avacado-900\\/5{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-avacado-900\\/50{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-avacado-900\\/55{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-avacado-900\\/60{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-avacado-900\\/65{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-avacado-900\\/70{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-avacado-900\\/75{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-avacado-900\\/80{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-avacado-900\\/85{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-avacado-900\\/90{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-avacado-900\\/95{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-avacado-950{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / var(--tw-bg-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-avacado-950\\/0{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-avacado-950\\/10{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-avacado-950\\/100{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-avacado-950\\/15{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-avacado-950\\/20{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-avacado-950\\/25{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-avacado-950\\/30{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-avacado-950\\/35{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-avacado-950\\/40{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-avacado-950\\/45{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-avacado-950\\/5{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-avacado-950\\/50{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-avacado-950\\/55{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-avacado-950\\/60{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-avacado-950\\/65{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-avacado-950\\/70{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-avacado-950\\/75{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-avacado-950\\/80{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-avacado-950\\/85{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-avacado-950\\/90{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-avacado-950\\/95{\nbackground-color: color-mix(in lab, color(from #46a758 srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-avacado\\/0{\nbackground-color: rgb(70 167 88 / 0);\n}\n.bg-avacado\\/10{\nbackground-color: rgb(70 167 88 / 0.1);\n}\n.bg-avacado\\/100{\nbackground-color: rgb(70 167 88 / 1);\n}\n.bg-avacado\\/15{\nbackground-color: rgb(70 167 88 / 0.15);\n}\n.bg-avacado\\/20{\nbackground-color: rgb(70 167 88 / 0.2);\n}\n.bg-avacado\\/25{\nbackground-color: rgb(70 167 88 / 0.25);\n}\n.bg-avacado\\/30{\nbackground-color: rgb(70 167 88 / 0.3);\n}\n.bg-avacado\\/35{\nbackground-color: rgb(70 167 88 / 0.35);\n}\n.bg-avacado\\/40{\nbackground-color: rgb(70 167 88 / 0.4);\n}\n.bg-avacado\\/45{\nbackground-color: rgb(70 167 88 / 0.45);\n}\n.bg-avacado\\/5{\nbackground-color: rgb(70 167 88 / 0.05);\n}\n.bg-avacado\\/50{\nbackground-color: rgb(70 167 88 / 0.5);\n}\n.bg-avacado\\/55{\nbackground-color: rgb(70 167 88 / 0.55);\n}\n.bg-avacado\\/60{\nbackground-color: rgb(70 167 88 / 0.6);\n}\n.bg-avacado\\/65{\nbackground-color: rgb(70 167 88 / 0.65);\n}\n.bg-avacado\\/70{\nbackground-color: rgb(70 167 88 / 0.7);\n}\n.bg-avacado\\/75{\nbackground-color: rgb(70 167 88 / 0.75);\n}\n.bg-avacado\\/80{\nbackground-color: rgb(70 167 88 / 0.8);\n}\n.bg-avacado\\/85{\nbackground-color: rgb(70 167 88 / 0.85);\n}\n.bg-avacado\\/90{\nbackground-color: rgb(70 167 88 / 0.9);\n}\n.bg-avacado\\/95{\nbackground-color: rgb(70 167 88 / 0.95);\n}\n.bg-base{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)) 99%, color(from var(--tint) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-base\\/0{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0) 99%, color(from var(--tint) srgb r g b / 0));\n}\n.bg-base\\/10{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.1) 99%, color(from var(--tint) srgb r g b / 0.1));\n}\n.bg-base\\/100{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 99%, color(from var(--tint) srgb r g b / 1));\n}\n.bg-base\\/15{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.15) 99%, color(from var(--tint) srgb r g b / 0.15));\n}\n.bg-base\\/20{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.2) 99%, color(from var(--tint) srgb r g b / 0.2));\n}\n.bg-base\\/25{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.25) 99%, color(from var(--tint) srgb r g b / 0.25));\n}\n.bg-base\\/30{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.3) 99%, color(from var(--tint) srgb r g b / 0.3));\n}\n.bg-base\\/35{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.35) 99%, color(from var(--tint) srgb r g b / 0.35));\n}\n.bg-base\\/40{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.4) 99%, color(from var(--tint) srgb r g b / 0.4));\n}\n.bg-base\\/45{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.45) 99%, color(from var(--tint) srgb r g b / 0.45));\n}\n.bg-base\\/5{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.05) 99%, color(from var(--tint) srgb r g b / 0.05));\n}\n.bg-base\\/50{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.5) 99%, color(from var(--tint) srgb r g b / 0.5));\n}\n.bg-base\\/55{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.55) 99%, color(from var(--tint) srgb r g b / 0.55));\n}\n.bg-base\\/60{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.6) 99%, color(from var(--tint) srgb r g b / 0.6));\n}\n.bg-base\\/65{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.65) 99%, color(from var(--tint) srgb r g b / 0.65));\n}\n.bg-base\\/70{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.7) 99%, color(from var(--tint) srgb r g b / 0.7));\n}\n.bg-base\\/75{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.75) 99%, color(from var(--tint) srgb r g b / 0.75));\n}\n.bg-base\\/80{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.8) 99%, color(from var(--tint) srgb r g b / 0.8));\n}\n.bg-base\\/85{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.85) 99%, color(from var(--tint) srgb r g b / 0.85));\n}\n.bg-base\\/90{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.9) 99%, color(from var(--tint) srgb r g b / 0.9));\n}\n.bg-base\\/95{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.95) 99%, color(from var(--tint) srgb r g b / 0.95));\n}\n.bg-black{\n--tw-bg-opacity: 1;\nbackground-color: rgb(25 26 27 / var(--tw-bg-opacity));\n}\n.bg-black\\/0{\nbackground-color: rgb(25 26 27 / 0);\n}\n.bg-black\\/10{\nbackground-color: rgb(25 26 27 / 0.1);\n}\n.bg-black\\/100{\nbackground-color: rgb(25 26 27 / 1);\n}\n.bg-black\\/15{\nbackground-color: rgb(25 26 27 / 0.15);\n}\n.bg-black\\/20{\nbackground-color: rgb(25 26 27 / 0.2);\n}\n.bg-black\\/25{\nbackground-color: rgb(25 26 27 / 0.25);\n}\n.bg-black\\/30{\nbackground-color: rgb(25 26 27 / 0.3);\n}\n.bg-black\\/35{\nbackground-color: rgb(25 26 27 / 0.35);\n}\n.bg-black\\/40{\nbackground-color: rgb(25 26 27 / 0.4);\n}\n.bg-black\\/45{\nbackground-color: rgb(25 26 27 / 0.45);\n}\n.bg-black\\/5{\nbackground-color: rgb(25 26 27 / 0.05);\n}\n.bg-black\\/50{\nbackground-color: rgb(25 26 27 / 0.5);\n}\n.bg-black\\/55{\nbackground-color: rgb(25 26 27 / 0.55);\n}\n.bg-black\\/60{\nbackground-color: rgb(25 26 27 / 0.6);\n}\n.bg-black\\/65{\nbackground-color: rgb(25 26 27 / 0.65);\n}\n.bg-black\\/70{\nbackground-color: rgb(25 26 27 / 0.7);\n}\n.bg-black\\/75{\nbackground-color: rgb(25 26 27 / 0.75);\n}\n.bg-black\\/80{\nbackground-color: rgb(25 26 27 / 0.8);\n}\n.bg-black\\/85{\nbackground-color: rgb(25 26 27 / 0.85);\n}\n.bg-black\\/90{\nbackground-color: rgb(25 26 27 / 0.9);\n}\n.bg-black\\/95{\nbackground-color: rgb(25 26 27 / 0.95);\n}\n.bg-coral{\n--tw-bg-opacity: 1;\nbackground-color: rgb(233 61 130 / var(--tw-bg-opacity));\n}\n.bg-coral-100{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-coral-100\\/0{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-coral-100\\/10{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-coral-100\\/100{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-coral-100\\/15{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-coral-100\\/20{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-coral-100\\/25{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-coral-100\\/30{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-coral-100\\/35{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-coral-100\\/40{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-coral-100\\/45{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-coral-100\\/5{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-coral-100\\/50{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-coral-100\\/55{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-coral-100\\/60{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-coral-100\\/65{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-coral-100\\/70{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-coral-100\\/75{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-coral-100\\/80{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-coral-100\\/85{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-coral-100\\/90{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-coral-100\\/95{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-coral-200{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-coral-200\\/0{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-coral-200\\/10{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-coral-200\\/100{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-coral-200\\/15{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-coral-200\\/20{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-coral-200\\/25{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-coral-200\\/30{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-coral-200\\/35{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-coral-200\\/40{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-coral-200\\/45{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-coral-200\\/5{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-coral-200\\/50{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-coral-200\\/55{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-coral-200\\/60{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-coral-200\\/65{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-coral-200\\/70{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-coral-200\\/75{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-coral-200\\/80{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-coral-200\\/85{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-coral-200\\/90{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-coral-200\\/95{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-coral-300{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / var(--tw-bg-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-coral-300\\/0{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-coral-300\\/10{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-coral-300\\/100{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-coral-300\\/15{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-coral-300\\/20{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-coral-300\\/25{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-coral-300\\/30{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-coral-300\\/35{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-coral-300\\/40{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-coral-300\\/45{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-coral-300\\/5{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-coral-300\\/50{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-coral-300\\/55{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-coral-300\\/60{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-coral-300\\/65{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-coral-300\\/70{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-coral-300\\/75{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-coral-300\\/80{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-coral-300\\/85{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-coral-300\\/90{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-coral-300\\/95{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-coral-400{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-coral-400\\/0{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-coral-400\\/10{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-coral-400\\/100{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-coral-400\\/15{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-coral-400\\/20{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-coral-400\\/25{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-coral-400\\/30{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-coral-400\\/35{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-coral-400\\/40{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-coral-400\\/45{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-coral-400\\/5{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-coral-400\\/50{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-coral-400\\/55{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-coral-400\\/60{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-coral-400\\/65{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-coral-400\\/70{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-coral-400\\/75{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-coral-400\\/80{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-coral-400\\/85{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-coral-400\\/90{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-coral-400\\/95{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-coral-50{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / var(--tw-bg-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-coral-50\\/0{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-coral-50\\/10{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-coral-50\\/100{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-coral-50\\/15{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-coral-50\\/20{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-coral-50\\/25{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-coral-50\\/30{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-coral-50\\/35{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-coral-50\\/40{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-coral-50\\/45{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-coral-50\\/5{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-coral-50\\/50{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-coral-50\\/55{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-coral-50\\/60{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-coral-50\\/65{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-coral-50\\/70{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-coral-50\\/75{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-coral-50\\/80{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-coral-50\\/85{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-coral-50\\/90{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-coral-50\\/95{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-coral-500{\n--tw-bg-opacity: 1;\nbackground-color: color(from #e93d82 srgb r g b / var(--tw-bg-opacity));\n}\n.bg-coral-500\\/0{\nbackground-color: color(from #e93d82 srgb r g b / 0);\n}\n.bg-coral-500\\/10{\nbackground-color: color(from #e93d82 srgb r g b / 0.1);\n}\n.bg-coral-500\\/100{\nbackground-color: color(from #e93d82 srgb r g b / 1);\n}\n.bg-coral-500\\/15{\nbackground-color: color(from #e93d82 srgb r g b / 0.15);\n}\n.bg-coral-500\\/20{\nbackground-color: color(from #e93d82 srgb r g b / 0.2);\n}\n.bg-coral-500\\/25{\nbackground-color: color(from #e93d82 srgb r g b / 0.25);\n}\n.bg-coral-500\\/30{\nbackground-color: color(from #e93d82 srgb r g b / 0.3);\n}\n.bg-coral-500\\/35{\nbackground-color: color(from #e93d82 srgb r g b / 0.35);\n}\n.bg-coral-500\\/40{\nbackground-color: color(from #e93d82 srgb r g b / 0.4);\n}\n.bg-coral-500\\/45{\nbackground-color: color(from #e93d82 srgb r g b / 0.45);\n}\n.bg-coral-500\\/5{\nbackground-color: color(from #e93d82 srgb r g b / 0.05);\n}\n.bg-coral-500\\/50{\nbackground-color: color(from #e93d82 srgb r g b / 0.5);\n}\n.bg-coral-500\\/55{\nbackground-color: color(from #e93d82 srgb r g b / 0.55);\n}\n.bg-coral-500\\/60{\nbackground-color: color(from #e93d82 srgb r g b / 0.6);\n}\n.bg-coral-500\\/65{\nbackground-color: color(from #e93d82 srgb r g b / 0.65);\n}\n.bg-coral-500\\/70{\nbackground-color: color(from #e93d82 srgb r g b / 0.7);\n}\n.bg-coral-500\\/75{\nbackground-color: color(from #e93d82 srgb r g b / 0.75);\n}\n.bg-coral-500\\/80{\nbackground-color: color(from #e93d82 srgb r g b / 0.8);\n}\n.bg-coral-500\\/85{\nbackground-color: color(from #e93d82 srgb r g b / 0.85);\n}\n.bg-coral-500\\/90{\nbackground-color: color(from #e93d82 srgb r g b / 0.9);\n}\n.bg-coral-500\\/95{\nbackground-color: color(from #e93d82 srgb r g b / 0.95);\n}\n.bg-coral-600{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-coral-600\\/0{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-coral-600\\/10{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-coral-600\\/100{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-coral-600\\/15{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-coral-600\\/20{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-coral-600\\/25{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-coral-600\\/30{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-coral-600\\/35{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-coral-600\\/40{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-coral-600\\/45{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-coral-600\\/5{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-coral-600\\/50{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-coral-600\\/55{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-coral-600\\/60{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-coral-600\\/65{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-coral-600\\/70{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-coral-600\\/75{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-coral-600\\/80{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-coral-600\\/85{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-coral-600\\/90{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-coral-600\\/95{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-coral-700{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / var(--tw-bg-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-coral-700\\/0{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-coral-700\\/10{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-coral-700\\/100{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-coral-700\\/15{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-coral-700\\/20{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-coral-700\\/25{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-coral-700\\/30{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-coral-700\\/35{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-coral-700\\/40{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-coral-700\\/45{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-coral-700\\/5{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-coral-700\\/50{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-coral-700\\/55{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-coral-700\\/60{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-coral-700\\/65{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-coral-700\\/70{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-coral-700\\/75{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-coral-700\\/80{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-coral-700\\/85{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-coral-700\\/90{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-coral-700\\/95{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-coral-800{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-coral-800\\/0{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-coral-800\\/10{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-coral-800\\/100{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-coral-800\\/15{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-coral-800\\/20{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-coral-800\\/25{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-coral-800\\/30{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-coral-800\\/35{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-coral-800\\/40{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-coral-800\\/45{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-coral-800\\/5{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-coral-800\\/50{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-coral-800\\/55{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-coral-800\\/60{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-coral-800\\/65{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-coral-800\\/70{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-coral-800\\/75{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-coral-800\\/80{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-coral-800\\/85{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-coral-800\\/90{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-coral-800\\/95{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-coral-900{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-coral-900\\/0{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-coral-900\\/10{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-coral-900\\/100{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-coral-900\\/15{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-coral-900\\/20{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-coral-900\\/25{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-coral-900\\/30{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-coral-900\\/35{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-coral-900\\/40{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-coral-900\\/45{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-coral-900\\/5{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-coral-900\\/50{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-coral-900\\/55{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-coral-900\\/60{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-coral-900\\/65{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-coral-900\\/70{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-coral-900\\/75{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-coral-900\\/80{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-coral-900\\/85{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-coral-900\\/90{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-coral-900\\/95{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-coral-950{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / var(--tw-bg-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-coral-950\\/0{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-coral-950\\/10{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-coral-950\\/100{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-coral-950\\/15{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-coral-950\\/20{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-coral-950\\/25{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-coral-950\\/30{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-coral-950\\/35{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-coral-950\\/40{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-coral-950\\/45{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-coral-950\\/5{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-coral-950\\/50{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-coral-950\\/55{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-coral-950\\/60{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-coral-950\\/65{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-coral-950\\/70{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-coral-950\\/75{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-coral-950\\/80{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-coral-950\\/85{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-coral-950\\/90{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-coral-950\\/95{\nbackground-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-coral\\/0{\nbackground-color: rgb(233 61 130 / 0);\n}\n.bg-coral\\/10{\nbackground-color: rgb(233 61 130 / 0.1);\n}\n.bg-coral\\/100{\nbackground-color: rgb(233 61 130 / 1);\n}\n.bg-coral\\/15{\nbackground-color: rgb(233 61 130 / 0.15);\n}\n.bg-coral\\/20{\nbackground-color: rgb(233 61 130 / 0.2);\n}\n.bg-coral\\/25{\nbackground-color: rgb(233 61 130 / 0.25);\n}\n.bg-coral\\/30{\nbackground-color: rgb(233 61 130 / 0.3);\n}\n.bg-coral\\/35{\nbackground-color: rgb(233 61 130 / 0.35);\n}\n.bg-coral\\/40{\nbackground-color: rgb(233 61 130 / 0.4);\n}\n.bg-coral\\/45{\nbackground-color: rgb(233 61 130 / 0.45);\n}\n.bg-coral\\/5{\nbackground-color: rgb(233 61 130 / 0.05);\n}\n.bg-coral\\/50{\nbackground-color: rgb(233 61 130 / 0.5);\n}\n.bg-coral\\/55{\nbackground-color: rgb(233 61 130 / 0.55);\n}\n.bg-coral\\/60{\nbackground-color: rgb(233 61 130 / 0.6);\n}\n.bg-coral\\/65{\nbackground-color: rgb(233 61 130 / 0.65);\n}\n.bg-coral\\/70{\nbackground-color: rgb(233 61 130 / 0.7);\n}\n.bg-coral\\/75{\nbackground-color: rgb(233 61 130 / 0.75);\n}\n.bg-coral\\/80{\nbackground-color: rgb(233 61 130 / 0.8);\n}\n.bg-coral\\/85{\nbackground-color: rgb(233 61 130 / 0.85);\n}\n.bg-coral\\/90{\nbackground-color: rgb(233 61 130 / 0.9);\n}\n.bg-coral\\/95{\nbackground-color: rgb(233 61 130 / 0.95);\n}\n.bg-current{\nbackground-color: currentColor;\n}\n.bg-danger{\n--tw-bg-opacity: 1;\nbackground-color: rgb(242 76 61 / var(--tw-bg-opacity));\n}\n.bg-danger-100{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-danger-100\\/0{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-danger-100\\/10{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-danger-100\\/100{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-danger-100\\/15{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-danger-100\\/20{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-danger-100\\/25{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-danger-100\\/30{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-danger-100\\/35{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-danger-100\\/40{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-danger-100\\/45{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-danger-100\\/5{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-danger-100\\/50{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-danger-100\\/55{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-danger-100\\/60{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-danger-100\\/65{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-danger-100\\/70{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-danger-100\\/75{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-danger-100\\/80{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-danger-100\\/85{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-danger-100\\/90{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-danger-100\\/95{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-danger-200{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-danger-200\\/0{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-danger-200\\/10{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-danger-200\\/100{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-danger-200\\/15{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-danger-200\\/20{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-danger-200\\/25{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-danger-200\\/30{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-danger-200\\/35{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-danger-200\\/40{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-danger-200\\/45{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-danger-200\\/5{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-danger-200\\/50{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-danger-200\\/55{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-danger-200\\/60{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-danger-200\\/65{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-danger-200\\/70{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-danger-200\\/75{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-danger-200\\/80{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-danger-200\\/85{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-danger-200\\/90{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-danger-200\\/95{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-danger-300{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / var(--tw-bg-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-danger-300\\/0{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-danger-300\\/10{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-danger-300\\/100{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-danger-300\\/15{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-danger-300\\/20{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-danger-300\\/25{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-danger-300\\/30{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-danger-300\\/35{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-danger-300\\/40{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-danger-300\\/45{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-danger-300\\/5{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-danger-300\\/50{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-danger-300\\/55{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-danger-300\\/60{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-danger-300\\/65{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-danger-300\\/70{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-danger-300\\/75{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-danger-300\\/80{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-danger-300\\/85{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-danger-300\\/90{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-danger-300\\/95{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-danger-400{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-danger-400\\/0{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-danger-400\\/10{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-danger-400\\/100{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-danger-400\\/15{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-danger-400\\/20{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-danger-400\\/25{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-danger-400\\/30{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-danger-400\\/35{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-danger-400\\/40{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-danger-400\\/45{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-danger-400\\/5{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-danger-400\\/50{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-danger-400\\/55{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-danger-400\\/60{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-danger-400\\/65{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-danger-400\\/70{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-danger-400\\/75{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-danger-400\\/80{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-danger-400\\/85{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-danger-400\\/90{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-danger-400\\/95{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-danger-50{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / var(--tw-bg-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-danger-50\\/0{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-danger-50\\/10{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-danger-50\\/100{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-danger-50\\/15{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-danger-50\\/20{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-danger-50\\/25{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-danger-50\\/30{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-danger-50\\/35{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-danger-50\\/40{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-danger-50\\/45{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-danger-50\\/5{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-danger-50\\/50{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-danger-50\\/55{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-danger-50\\/60{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-danger-50\\/65{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-danger-50\\/70{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-danger-50\\/75{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-danger-50\\/80{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-danger-50\\/85{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-danger-50\\/90{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-danger-50\\/95{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-danger-500{\n--tw-bg-opacity: 1;\nbackground-color: color(from #f24c3d srgb r g b / var(--tw-bg-opacity));\n}\n.bg-danger-500\\/0{\nbackground-color: color(from #f24c3d srgb r g b / 0);\n}\n.bg-danger-500\\/10{\nbackground-color: color(from #f24c3d srgb r g b / 0.1);\n}\n.bg-danger-500\\/100{\nbackground-color: color(from #f24c3d srgb r g b / 1);\n}\n.bg-danger-500\\/15{\nbackground-color: color(from #f24c3d srgb r g b / 0.15);\n}\n.bg-danger-500\\/20{\nbackground-color: color(from #f24c3d srgb r g b / 0.2);\n}\n.bg-danger-500\\/25{\nbackground-color: color(from #f24c3d srgb r g b / 0.25);\n}\n.bg-danger-500\\/30{\nbackground-color: color(from #f24c3d srgb r g b / 0.3);\n}\n.bg-danger-500\\/35{\nbackground-color: color(from #f24c3d srgb r g b / 0.35);\n}\n.bg-danger-500\\/40{\nbackground-color: color(from #f24c3d srgb r g b / 0.4);\n}\n.bg-danger-500\\/45{\nbackground-color: color(from #f24c3d srgb r g b / 0.45);\n}\n.bg-danger-500\\/5{\nbackground-color: color(from #f24c3d srgb r g b / 0.05);\n}\n.bg-danger-500\\/50{\nbackground-color: color(from #f24c3d srgb r g b / 0.5);\n}\n.bg-danger-500\\/55{\nbackground-color: color(from #f24c3d srgb r g b / 0.55);\n}\n.bg-danger-500\\/60{\nbackground-color: color(from #f24c3d srgb r g b / 0.6);\n}\n.bg-danger-500\\/65{\nbackground-color: color(from #f24c3d srgb r g b / 0.65);\n}\n.bg-danger-500\\/70{\nbackground-color: color(from #f24c3d srgb r g b / 0.7);\n}\n.bg-danger-500\\/75{\nbackground-color: color(from #f24c3d srgb r g b / 0.75);\n}\n.bg-danger-500\\/80{\nbackground-color: color(from #f24c3d srgb r g b / 0.8);\n}\n.bg-danger-500\\/85{\nbackground-color: color(from #f24c3d srgb r g b / 0.85);\n}\n.bg-danger-500\\/90{\nbackground-color: color(from #f24c3d srgb r g b / 0.9);\n}\n.bg-danger-500\\/95{\nbackground-color: color(from #f24c3d srgb r g b / 0.95);\n}\n.bg-danger-600{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-danger-600\\/0{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-danger-600\\/10{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-danger-600\\/100{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-danger-600\\/15{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-danger-600\\/20{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-danger-600\\/25{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-danger-600\\/30{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-danger-600\\/35{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-danger-600\\/40{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-danger-600\\/45{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-danger-600\\/5{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-danger-600\\/50{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-danger-600\\/55{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-danger-600\\/60{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-danger-600\\/65{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-danger-600\\/70{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-danger-600\\/75{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-danger-600\\/80{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-danger-600\\/85{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-danger-600\\/90{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-danger-600\\/95{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-danger-700{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / var(--tw-bg-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-danger-700\\/0{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-danger-700\\/10{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-danger-700\\/100{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-danger-700\\/15{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-danger-700\\/20{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-danger-700\\/25{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-danger-700\\/30{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-danger-700\\/35{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-danger-700\\/40{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-danger-700\\/45{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-danger-700\\/5{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-danger-700\\/50{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-danger-700\\/55{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-danger-700\\/60{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-danger-700\\/65{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-danger-700\\/70{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-danger-700\\/75{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-danger-700\\/80{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-danger-700\\/85{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-danger-700\\/90{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-danger-700\\/95{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-danger-800{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-danger-800\\/0{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-danger-800\\/10{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-danger-800\\/100{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-danger-800\\/15{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-danger-800\\/20{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-danger-800\\/25{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-danger-800\\/30{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-danger-800\\/35{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-danger-800\\/40{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-danger-800\\/45{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-danger-800\\/5{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-danger-800\\/50{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-danger-800\\/55{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-danger-800\\/60{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-danger-800\\/65{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-danger-800\\/70{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-danger-800\\/75{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-danger-800\\/80{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-danger-800\\/85{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-danger-800\\/90{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-danger-800\\/95{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-danger-900{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-danger-900\\/0{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-danger-900\\/10{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-danger-900\\/100{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-danger-900\\/15{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-danger-900\\/20{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-danger-900\\/25{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-danger-900\\/30{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-danger-900\\/35{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-danger-900\\/40{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-danger-900\\/45{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-danger-900\\/5{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-danger-900\\/50{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-danger-900\\/55{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-danger-900\\/60{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-danger-900\\/65{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-danger-900\\/70{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-danger-900\\/75{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-danger-900\\/80{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-danger-900\\/85{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-danger-900\\/90{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-danger-900\\/95{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-danger-950{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / var(--tw-bg-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-danger-950\\/0{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-danger-950\\/10{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-danger-950\\/100{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-danger-950\\/15{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-danger-950\\/20{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-danger-950\\/25{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-danger-950\\/30{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-danger-950\\/35{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-danger-950\\/40{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-danger-950\\/45{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-danger-950\\/5{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-danger-950\\/50{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-danger-950\\/55{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-danger-950\\/60{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-danger-950\\/65{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-danger-950\\/70{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-danger-950\\/75{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-danger-950\\/80{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-danger-950\\/85{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-danger-950\\/90{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-danger-950\\/95{\nbackground-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-danger\\/0{\nbackground-color: rgb(242 76 61 / 0);\n}\n.bg-danger\\/10{\nbackground-color: rgb(242 76 61 / 0.1);\n}\n.bg-danger\\/100{\nbackground-color: rgb(242 76 61 / 1);\n}\n.bg-danger\\/15{\nbackground-color: rgb(242 76 61 / 0.15);\n}\n.bg-danger\\/20{\nbackground-color: rgb(242 76 61 / 0.2);\n}\n.bg-danger\\/25{\nbackground-color: rgb(242 76 61 / 0.25);\n}\n.bg-danger\\/30{\nbackground-color: rgb(242 76 61 / 0.3);\n}\n.bg-danger\\/35{\nbackground-color: rgb(242 76 61 / 0.35);\n}\n.bg-danger\\/40{\nbackground-color: rgb(242 76 61 / 0.4);\n}\n.bg-danger\\/45{\nbackground-color: rgb(242 76 61 / 0.45);\n}\n.bg-danger\\/5{\nbackground-color: rgb(242 76 61 / 0.05);\n}\n.bg-danger\\/50{\nbackground-color: rgb(242 76 61 / 0.5);\n}\n.bg-danger\\/55{\nbackground-color: rgb(242 76 61 / 0.55);\n}\n.bg-danger\\/60{\nbackground-color: rgb(242 76 61 / 0.6);\n}\n.bg-danger\\/65{\nbackground-color: rgb(242 76 61 / 0.65);\n}\n.bg-danger\\/70{\nbackground-color: rgb(242 76 61 / 0.7);\n}\n.bg-danger\\/75{\nbackground-color: rgb(242 76 61 / 0.75);\n}\n.bg-danger\\/80{\nbackground-color: rgb(242 76 61 / 0.8);\n}\n.bg-danger\\/85{\nbackground-color: rgb(242 76 61 / 0.85);\n}\n.bg-danger\\/90{\nbackground-color: rgb(242 76 61 / 0.9);\n}\n.bg-danger\\/95{\nbackground-color: rgb(242 76 61 / 0.95);\n}\n.bg-dark{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--black) srgb r g b / var(--tw-bg-opacity)) 90%, color(from var(--tint) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-dark\\/0{\nbackground-color: color-mix(in lab, color(from var(--black) srgb r g b / 0) 90%, color(from var(--tint) srgb r g b / 0));\n}\n.bg-dark\\/10{\nbackground-color: color-mix(in lab, color(from var(--black) srgb r g b / 0.1) 90%, color(from var(--tint) srgb r g b / 0.1));\n}\n.bg-dark\\/100{\nbackground-color: color-mix(in lab, color(from var(--black) srgb r g b / 1) 90%, color(from var(--tint) srgb r g b / 1));\n}\n.bg-dark\\/15{\nbackground-color: color-mix(in lab, color(from var(--black) srgb r g b / 0.15) 90%, color(from var(--tint) srgb r g b / 0.15));\n}\n.bg-dark\\/20{\nbackground-color: color-mix(in lab, color(from var(--black) srgb r g b / 0.2) 90%, color(from var(--tint) srgb r g b / 0.2));\n}\n.bg-dark\\/25{\nbackground-color: color-mix(in lab, color(from var(--black) srgb r g b / 0.25) 90%, color(from var(--tint) srgb r g b / 0.25));\n}\n.bg-dark\\/30{\nbackground-color: color-mix(in lab, color(from var(--black) srgb r g b / 0.3) 90%, color(from var(--tint) srgb r g b / 0.3));\n}\n.bg-dark\\/35{\nbackground-color: color-mix(in lab, color(from var(--black) srgb r g b / 0.35) 90%, color(from var(--tint) srgb r g b / 0.35));\n}\n.bg-dark\\/40{\nbackground-color: color-mix(in lab, color(from var(--black) srgb r g b / 0.4) 90%, color(from var(--tint) srgb r g b / 0.4));\n}\n.bg-dark\\/45{\nbackground-color: color-mix(in lab, color(from var(--black) srgb r g b / 0.45) 90%, color(from var(--tint) srgb r g b / 0.45));\n}\n.bg-dark\\/5{\nbackground-color: color-mix(in lab, color(from var(--black) srgb r g b / 0.05) 90%, color(from var(--tint) srgb r g b / 0.05));\n}\n.bg-dark\\/50{\nbackground-color: color-mix(in lab, color(from var(--black) srgb r g b / 0.5) 90%, color(from var(--tint) srgb r g b / 0.5));\n}\n.bg-dark\\/55{\nbackground-color: color-mix(in lab, color(from var(--black) srgb r g b / 0.55) 90%, color(from var(--tint) srgb r g b / 0.55));\n}\n.bg-dark\\/60{\nbackground-color: color-mix(in lab, color(from var(--black) srgb r g b / 0.6) 90%, color(from var(--tint) srgb r g b / 0.6));\n}\n.bg-dark\\/65{\nbackground-color: color-mix(in lab, color(from var(--black) srgb r g b / 0.65) 90%, color(from var(--tint) srgb r g b / 0.65));\n}\n.bg-dark\\/70{\nbackground-color: color-mix(in lab, color(from var(--black) srgb r g b / 0.7) 90%, color(from var(--tint) srgb r g b / 0.7));\n}\n.bg-dark\\/75{\nbackground-color: color-mix(in lab, color(from var(--black) srgb r g b / 0.75) 90%, color(from var(--tint) srgb r g b / 0.75));\n}\n.bg-dark\\/80{\nbackground-color: color-mix(in lab, color(from var(--black) srgb r g b / 0.8) 90%, color(from var(--tint) srgb r g b / 0.8));\n}\n.bg-dark\\/85{\nbackground-color: color-mix(in lab, color(from var(--black) srgb r g b / 0.85) 90%, color(from var(--tint) srgb r g b / 0.85));\n}\n.bg-dark\\/90{\nbackground-color: color-mix(in lab, color(from var(--black) srgb r g b / 0.9) 90%, color(from var(--tint) srgb r g b / 0.9));\n}\n.bg-dark\\/95{\nbackground-color: color-mix(in lab, color(from var(--black) srgb r g b / 0.95) 90%, color(from var(--tint) srgb r g b / 0.95));\n}\n.bg-denim{\n--tw-bg-opacity: 1;\nbackground-color: rgb(1 144 255 / var(--tw-bg-opacity));\n}\n.bg-denim-100{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-denim-100\\/0{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-denim-100\\/10{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-denim-100\\/100{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-denim-100\\/15{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-denim-100\\/20{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-denim-100\\/25{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-denim-100\\/30{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-denim-100\\/35{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-denim-100\\/40{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-denim-100\\/45{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-denim-100\\/5{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-denim-100\\/50{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-denim-100\\/55{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-denim-100\\/60{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-denim-100\\/65{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-denim-100\\/70{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-denim-100\\/75{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-denim-100\\/80{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-denim-100\\/85{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-denim-100\\/90{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-denim-100\\/95{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-denim-200{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-denim-200\\/0{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-denim-200\\/10{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-denim-200\\/100{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-denim-200\\/15{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-denim-200\\/20{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-denim-200\\/25{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-denim-200\\/30{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-denim-200\\/35{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-denim-200\\/40{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-denim-200\\/45{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-denim-200\\/5{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-denim-200\\/50{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-denim-200\\/55{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-denim-200\\/60{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-denim-200\\/65{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-denim-200\\/70{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-denim-200\\/75{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-denim-200\\/80{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-denim-200\\/85{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-denim-200\\/90{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-denim-200\\/95{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-denim-300{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / var(--tw-bg-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-denim-300\\/0{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-denim-300\\/10{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-denim-300\\/100{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-denim-300\\/15{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-denim-300\\/20{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-denim-300\\/25{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-denim-300\\/30{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-denim-300\\/35{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-denim-300\\/40{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-denim-300\\/45{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-denim-300\\/5{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-denim-300\\/50{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-denim-300\\/55{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-denim-300\\/60{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-denim-300\\/65{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-denim-300\\/70{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-denim-300\\/75{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-denim-300\\/80{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-denim-300\\/85{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-denim-300\\/90{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-denim-300\\/95{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-denim-400{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-denim-400\\/0{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-denim-400\\/10{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-denim-400\\/100{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-denim-400\\/15{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-denim-400\\/20{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-denim-400\\/25{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-denim-400\\/30{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-denim-400\\/35{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-denim-400\\/40{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-denim-400\\/45{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-denim-400\\/5{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-denim-400\\/50{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-denim-400\\/55{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-denim-400\\/60{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-denim-400\\/65{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-denim-400\\/70{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-denim-400\\/75{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-denim-400\\/80{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-denim-400\\/85{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-denim-400\\/90{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-denim-400\\/95{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-denim-50{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / var(--tw-bg-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-denim-50\\/0{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-denim-50\\/10{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-denim-50\\/100{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-denim-50\\/15{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-denim-50\\/20{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-denim-50\\/25{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-denim-50\\/30{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-denim-50\\/35{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-denim-50\\/40{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-denim-50\\/45{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-denim-50\\/5{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-denim-50\\/50{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-denim-50\\/55{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-denim-50\\/60{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-denim-50\\/65{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-denim-50\\/70{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-denim-50\\/75{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-denim-50\\/80{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-denim-50\\/85{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-denim-50\\/90{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-denim-50\\/95{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-denim-500{\n--tw-bg-opacity: 1;\nbackground-color: color(from #0190ff srgb r g b / var(--tw-bg-opacity));\n}\n.bg-denim-500\\/0{\nbackground-color: color(from #0190ff srgb r g b / 0);\n}\n.bg-denim-500\\/10{\nbackground-color: color(from #0190ff srgb r g b / 0.1);\n}\n.bg-denim-500\\/100{\nbackground-color: color(from #0190ff srgb r g b / 1);\n}\n.bg-denim-500\\/15{\nbackground-color: color(from #0190ff srgb r g b / 0.15);\n}\n.bg-denim-500\\/20{\nbackground-color: color(from #0190ff srgb r g b / 0.2);\n}\n.bg-denim-500\\/25{\nbackground-color: color(from #0190ff srgb r g b / 0.25);\n}\n.bg-denim-500\\/30{\nbackground-color: color(from #0190ff srgb r g b / 0.3);\n}\n.bg-denim-500\\/35{\nbackground-color: color(from #0190ff srgb r g b / 0.35);\n}\n.bg-denim-500\\/40{\nbackground-color: color(from #0190ff srgb r g b / 0.4);\n}\n.bg-denim-500\\/45{\nbackground-color: color(from #0190ff srgb r g b / 0.45);\n}\n.bg-denim-500\\/5{\nbackground-color: color(from #0190ff srgb r g b / 0.05);\n}\n.bg-denim-500\\/50{\nbackground-color: color(from #0190ff srgb r g b / 0.5);\n}\n.bg-denim-500\\/55{\nbackground-color: color(from #0190ff srgb r g b / 0.55);\n}\n.bg-denim-500\\/60{\nbackground-color: color(from #0190ff srgb r g b / 0.6);\n}\n.bg-denim-500\\/65{\nbackground-color: color(from #0190ff srgb r g b / 0.65);\n}\n.bg-denim-500\\/70{\nbackground-color: color(from #0190ff srgb r g b / 0.7);\n}\n.bg-denim-500\\/75{\nbackground-color: color(from #0190ff srgb r g b / 0.75);\n}\n.bg-denim-500\\/80{\nbackground-color: color(from #0190ff srgb r g b / 0.8);\n}\n.bg-denim-500\\/85{\nbackground-color: color(from #0190ff srgb r g b / 0.85);\n}\n.bg-denim-500\\/90{\nbackground-color: color(from #0190ff srgb r g b / 0.9);\n}\n.bg-denim-500\\/95{\nbackground-color: color(from #0190ff srgb r g b / 0.95);\n}\n.bg-denim-600{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-denim-600\\/0{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-denim-600\\/10{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-denim-600\\/100{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-denim-600\\/15{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-denim-600\\/20{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-denim-600\\/25{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-denim-600\\/30{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-denim-600\\/35{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-denim-600\\/40{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-denim-600\\/45{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-denim-600\\/5{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-denim-600\\/50{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-denim-600\\/55{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-denim-600\\/60{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-denim-600\\/65{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-denim-600\\/70{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-denim-600\\/75{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-denim-600\\/80{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-denim-600\\/85{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-denim-600\\/90{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-denim-600\\/95{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-denim-700{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / var(--tw-bg-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-denim-700\\/0{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-denim-700\\/10{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-denim-700\\/100{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-denim-700\\/15{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-denim-700\\/20{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-denim-700\\/25{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-denim-700\\/30{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-denim-700\\/35{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-denim-700\\/40{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-denim-700\\/45{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-denim-700\\/5{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-denim-700\\/50{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-denim-700\\/55{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-denim-700\\/60{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-denim-700\\/65{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-denim-700\\/70{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-denim-700\\/75{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-denim-700\\/80{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-denim-700\\/85{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-denim-700\\/90{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-denim-700\\/95{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-denim-800{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-denim-800\\/0{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-denim-800\\/10{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-denim-800\\/100{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-denim-800\\/15{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-denim-800\\/20{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-denim-800\\/25{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-denim-800\\/30{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-denim-800\\/35{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-denim-800\\/40{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-denim-800\\/45{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-denim-800\\/5{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-denim-800\\/50{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-denim-800\\/55{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-denim-800\\/60{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-denim-800\\/65{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-denim-800\\/70{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-denim-800\\/75{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-denim-800\\/80{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-denim-800\\/85{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-denim-800\\/90{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-denim-800\\/95{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-denim-900{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-denim-900\\/0{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-denim-900\\/10{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-denim-900\\/100{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-denim-900\\/15{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-denim-900\\/20{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-denim-900\\/25{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-denim-900\\/30{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-denim-900\\/35{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-denim-900\\/40{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-denim-900\\/45{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-denim-900\\/5{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-denim-900\\/50{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-denim-900\\/55{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-denim-900\\/60{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-denim-900\\/65{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-denim-900\\/70{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-denim-900\\/75{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-denim-900\\/80{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-denim-900\\/85{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-denim-900\\/90{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-denim-900\\/95{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-denim-950{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / var(--tw-bg-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-denim-950\\/0{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-denim-950\\/10{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-denim-950\\/100{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-denim-950\\/15{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-denim-950\\/20{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-denim-950\\/25{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-denim-950\\/30{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-denim-950\\/35{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-denim-950\\/40{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-denim-950\\/45{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-denim-950\\/5{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-denim-950\\/50{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-denim-950\\/55{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-denim-950\\/60{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-denim-950\\/65{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-denim-950\\/70{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-denim-950\\/75{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-denim-950\\/80{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-denim-950\\/85{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-denim-950\\/90{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-denim-950\\/95{\nbackground-color: color-mix(in lab, color(from #0190ff srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-denim\\/0{\nbackground-color: rgb(1 144 255 / 0);\n}\n.bg-denim\\/10{\nbackground-color: rgb(1 144 255 / 0.1);\n}\n.bg-denim\\/100{\nbackground-color: rgb(1 144 255 / 1);\n}\n.bg-denim\\/15{\nbackground-color: rgb(1 144 255 / 0.15);\n}\n.bg-denim\\/20{\nbackground-color: rgb(1 144 255 / 0.2);\n}\n.bg-denim\\/25{\nbackground-color: rgb(1 144 255 / 0.25);\n}\n.bg-denim\\/30{\nbackground-color: rgb(1 144 255 / 0.3);\n}\n.bg-denim\\/35{\nbackground-color: rgb(1 144 255 / 0.35);\n}\n.bg-denim\\/40{\nbackground-color: rgb(1 144 255 / 0.4);\n}\n.bg-denim\\/45{\nbackground-color: rgb(1 144 255 / 0.45);\n}\n.bg-denim\\/5{\nbackground-color: rgb(1 144 255 / 0.05);\n}\n.bg-denim\\/50{\nbackground-color: rgb(1 144 255 / 0.5);\n}\n.bg-denim\\/55{\nbackground-color: rgb(1 144 255 / 0.55);\n}\n.bg-denim\\/60{\nbackground-color: rgb(1 144 255 / 0.6);\n}\n.bg-denim\\/65{\nbackground-color: rgb(1 144 255 / 0.65);\n}\n.bg-denim\\/70{\nbackground-color: rgb(1 144 255 / 0.7);\n}\n.bg-denim\\/75{\nbackground-color: rgb(1 144 255 / 0.75);\n}\n.bg-denim\\/80{\nbackground-color: rgb(1 144 255 / 0.8);\n}\n.bg-denim\\/85{\nbackground-color: rgb(1 144 255 / 0.85);\n}\n.bg-denim\\/90{\nbackground-color: rgb(1 144 255 / 0.9);\n}\n.bg-denim\\/95{\nbackground-color: rgb(1 144 255 / 0.95);\n}\n.bg-dimmed{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)) 90%, color(from var(--tint) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-dimmed\\/0{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0) 90%, color(from var(--tint) srgb r g b / 0));\n}\n.bg-dimmed\\/10{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.1) 90%, color(from var(--tint) srgb r g b / 0.1));\n}\n.bg-dimmed\\/100{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 90%, color(from var(--tint) srgb r g b / 1));\n}\n.bg-dimmed\\/15{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.15) 90%, color(from var(--tint) srgb r g b / 0.15));\n}\n.bg-dimmed\\/20{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.2) 90%, color(from var(--tint) srgb r g b / 0.2));\n}\n.bg-dimmed\\/25{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.25) 90%, color(from var(--tint) srgb r g b / 0.25));\n}\n.bg-dimmed\\/30{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.3) 90%, color(from var(--tint) srgb r g b / 0.3));\n}\n.bg-dimmed\\/35{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.35) 90%, color(from var(--tint) srgb r g b / 0.35));\n}\n.bg-dimmed\\/40{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.4) 90%, color(from var(--tint) srgb r g b / 0.4));\n}\n.bg-dimmed\\/45{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.45) 90%, color(from var(--tint) srgb r g b / 0.45));\n}\n.bg-dimmed\\/5{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.05) 90%, color(from var(--tint) srgb r g b / 0.05));\n}\n.bg-dimmed\\/50{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.5) 90%, color(from var(--tint) srgb r g b / 0.5));\n}\n.bg-dimmed\\/55{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.55) 90%, color(from var(--tint) srgb r g b / 0.55));\n}\n.bg-dimmed\\/60{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.6) 90%, color(from var(--tint) srgb r g b / 0.6));\n}\n.bg-dimmed\\/65{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.65) 90%, color(from var(--tint) srgb r g b / 0.65));\n}\n.bg-dimmed\\/70{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.7) 90%, color(from var(--tint) srgb r g b / 0.7));\n}\n.bg-dimmed\\/75{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.75) 90%, color(from var(--tint) srgb r g b / 0.75));\n}\n.bg-dimmed\\/80{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.8) 90%, color(from var(--tint) srgb r g b / 0.8));\n}\n.bg-dimmed\\/85{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.85) 90%, color(from var(--tint) srgb r g b / 0.85));\n}\n.bg-dimmed\\/90{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.9) 90%, color(from var(--tint) srgb r g b / 0.9));\n}\n.bg-dimmed\\/95{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.95) 90%, color(from var(--tint) srgb r g b / 0.95));\n}\n.bg-gray{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)) 50%, color(from var(--tint) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-info{\n--tw-bg-opacity: 1;\nbackground-color: rgb(0 191 255 / var(--tw-bg-opacity));\n}\n.bg-info-100{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-info-100\\/0{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-info-100\\/10{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-info-100\\/100{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-info-100\\/15{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-info-100\\/20{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-info-100\\/25{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-info-100\\/30{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-info-100\\/35{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-info-100\\/40{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-info-100\\/45{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-info-100\\/5{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-info-100\\/50{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-info-100\\/55{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-info-100\\/60{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-info-100\\/65{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-info-100\\/70{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-info-100\\/75{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-info-100\\/80{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-info-100\\/85{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-info-100\\/90{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-info-100\\/95{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-info-200{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-info-200\\/0{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-info-200\\/10{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-info-200\\/100{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-info-200\\/15{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-info-200\\/20{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-info-200\\/25{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-info-200\\/30{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-info-200\\/35{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-info-200\\/40{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-info-200\\/45{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-info-200\\/5{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-info-200\\/50{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-info-200\\/55{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-info-200\\/60{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-info-200\\/65{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-info-200\\/70{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-info-200\\/75{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-info-200\\/80{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-info-200\\/85{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-info-200\\/90{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-info-200\\/95{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-info-300{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / var(--tw-bg-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-info-300\\/0{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-info-300\\/10{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-info-300\\/100{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-info-300\\/15{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-info-300\\/20{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-info-300\\/25{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-info-300\\/30{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-info-300\\/35{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-info-300\\/40{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-info-300\\/45{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-info-300\\/5{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-info-300\\/50{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-info-300\\/55{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-info-300\\/60{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-info-300\\/65{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-info-300\\/70{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-info-300\\/75{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-info-300\\/80{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-info-300\\/85{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-info-300\\/90{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-info-300\\/95{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-info-400{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-info-400\\/0{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-info-400\\/10{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-info-400\\/100{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-info-400\\/15{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-info-400\\/20{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-info-400\\/25{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-info-400\\/30{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-info-400\\/35{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-info-400\\/40{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-info-400\\/45{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-info-400\\/5{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-info-400\\/50{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-info-400\\/55{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-info-400\\/60{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-info-400\\/65{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-info-400\\/70{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-info-400\\/75{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-info-400\\/80{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-info-400\\/85{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-info-400\\/90{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-info-400\\/95{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-info-50{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / var(--tw-bg-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-info-50\\/0{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-info-50\\/10{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-info-50\\/100{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-info-50\\/15{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-info-50\\/20{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-info-50\\/25{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-info-50\\/30{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-info-50\\/35{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-info-50\\/40{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-info-50\\/45{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-info-50\\/5{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-info-50\\/50{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-info-50\\/55{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-info-50\\/60{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-info-50\\/65{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-info-50\\/70{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-info-50\\/75{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-info-50\\/80{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-info-50\\/85{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-info-50\\/90{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-info-50\\/95{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-info-500{\n--tw-bg-opacity: 1;\nbackground-color: color(from #00bfff srgb r g b / var(--tw-bg-opacity));\n}\n.bg-info-500\\/0{\nbackground-color: color(from #00bfff srgb r g b / 0);\n}\n.bg-info-500\\/10{\nbackground-color: color(from #00bfff srgb r g b / 0.1);\n}\n.bg-info-500\\/100{\nbackground-color: color(from #00bfff srgb r g b / 1);\n}\n.bg-info-500\\/15{\nbackground-color: color(from #00bfff srgb r g b / 0.15);\n}\n.bg-info-500\\/20{\nbackground-color: color(from #00bfff srgb r g b / 0.2);\n}\n.bg-info-500\\/25{\nbackground-color: color(from #00bfff srgb r g b / 0.25);\n}\n.bg-info-500\\/30{\nbackground-color: color(from #00bfff srgb r g b / 0.3);\n}\n.bg-info-500\\/35{\nbackground-color: color(from #00bfff srgb r g b / 0.35);\n}\n.bg-info-500\\/40{\nbackground-color: color(from #00bfff srgb r g b / 0.4);\n}\n.bg-info-500\\/45{\nbackground-color: color(from #00bfff srgb r g b / 0.45);\n}\n.bg-info-500\\/5{\nbackground-color: color(from #00bfff srgb r g b / 0.05);\n}\n.bg-info-500\\/50{\nbackground-color: color(from #00bfff srgb r g b / 0.5);\n}\n.bg-info-500\\/55{\nbackground-color: color(from #00bfff srgb r g b / 0.55);\n}\n.bg-info-500\\/60{\nbackground-color: color(from #00bfff srgb r g b / 0.6);\n}\n.bg-info-500\\/65{\nbackground-color: color(from #00bfff srgb r g b / 0.65);\n}\n.bg-info-500\\/70{\nbackground-color: color(from #00bfff srgb r g b / 0.7);\n}\n.bg-info-500\\/75{\nbackground-color: color(from #00bfff srgb r g b / 0.75);\n}\n.bg-info-500\\/80{\nbackground-color: color(from #00bfff srgb r g b / 0.8);\n}\n.bg-info-500\\/85{\nbackground-color: color(from #00bfff srgb r g b / 0.85);\n}\n.bg-info-500\\/90{\nbackground-color: color(from #00bfff srgb r g b / 0.9);\n}\n.bg-info-500\\/95{\nbackground-color: color(from #00bfff srgb r g b / 0.95);\n}\n.bg-info-600{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-info-600\\/0{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-info-600\\/10{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-info-600\\/100{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-info-600\\/15{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-info-600\\/20{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-info-600\\/25{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-info-600\\/30{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-info-600\\/35{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-info-600\\/40{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-info-600\\/45{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-info-600\\/5{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-info-600\\/50{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-info-600\\/55{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-info-600\\/60{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-info-600\\/65{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-info-600\\/70{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-info-600\\/75{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-info-600\\/80{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-info-600\\/85{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-info-600\\/90{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-info-600\\/95{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-info-700{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / var(--tw-bg-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-info-700\\/0{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-info-700\\/10{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-info-700\\/100{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-info-700\\/15{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-info-700\\/20{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-info-700\\/25{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-info-700\\/30{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-info-700\\/35{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-info-700\\/40{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-info-700\\/45{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-info-700\\/5{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-info-700\\/50{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-info-700\\/55{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-info-700\\/60{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-info-700\\/65{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-info-700\\/70{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-info-700\\/75{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-info-700\\/80{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-info-700\\/85{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-info-700\\/90{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-info-700\\/95{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-info-800{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-info-800\\/0{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-info-800\\/10{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-info-800\\/100{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-info-800\\/15{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-info-800\\/20{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-info-800\\/25{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-info-800\\/30{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-info-800\\/35{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-info-800\\/40{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-info-800\\/45{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-info-800\\/5{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-info-800\\/50{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-info-800\\/55{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-info-800\\/60{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-info-800\\/65{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-info-800\\/70{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-info-800\\/75{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-info-800\\/80{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-info-800\\/85{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-info-800\\/90{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-info-800\\/95{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-info-900{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-info-900\\/0{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-info-900\\/10{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-info-900\\/100{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-info-900\\/15{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-info-900\\/20{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-info-900\\/25{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-info-900\\/30{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-info-900\\/35{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-info-900\\/40{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-info-900\\/45{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-info-900\\/5{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-info-900\\/50{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-info-900\\/55{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-info-900\\/60{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-info-900\\/65{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-info-900\\/70{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-info-900\\/75{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-info-900\\/80{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-info-900\\/85{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-info-900\\/90{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-info-900\\/95{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-info-950{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / var(--tw-bg-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-info-950\\/0{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-info-950\\/10{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-info-950\\/100{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-info-950\\/15{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-info-950\\/20{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-info-950\\/25{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-info-950\\/30{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-info-950\\/35{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-info-950\\/40{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-info-950\\/45{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-info-950\\/5{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-info-950\\/50{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-info-950\\/55{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-info-950\\/60{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-info-950\\/65{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-info-950\\/70{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-info-950\\/75{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-info-950\\/80{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-info-950\\/85{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-info-950\\/90{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-info-950\\/95{\nbackground-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-info\\/0{\nbackground-color: rgb(0 191 255 / 0);\n}\n.bg-info\\/10{\nbackground-color: rgb(0 191 255 / 0.1);\n}\n.bg-info\\/100{\nbackground-color: rgb(0 191 255 / 1);\n}\n.bg-info\\/15{\nbackground-color: rgb(0 191 255 / 0.15);\n}\n.bg-info\\/20{\nbackground-color: rgb(0 191 255 / 0.2);\n}\n.bg-info\\/25{\nbackground-color: rgb(0 191 255 / 0.25);\n}\n.bg-info\\/30{\nbackground-color: rgb(0 191 255 / 0.3);\n}\n.bg-info\\/35{\nbackground-color: rgb(0 191 255 / 0.35);\n}\n.bg-info\\/40{\nbackground-color: rgb(0 191 255 / 0.4);\n}\n.bg-info\\/45{\nbackground-color: rgb(0 191 255 / 0.45);\n}\n.bg-info\\/5{\nbackground-color: rgb(0 191 255 / 0.05);\n}\n.bg-info\\/50{\nbackground-color: rgb(0 191 255 / 0.5);\n}\n.bg-info\\/55{\nbackground-color: rgb(0 191 255 / 0.55);\n}\n.bg-info\\/60{\nbackground-color: rgb(0 191 255 / 0.6);\n}\n.bg-info\\/65{\nbackground-color: rgb(0 191 255 / 0.65);\n}\n.bg-info\\/70{\nbackground-color: rgb(0 191 255 / 0.7);\n}\n.bg-info\\/75{\nbackground-color: rgb(0 191 255 / 0.75);\n}\n.bg-info\\/80{\nbackground-color: rgb(0 191 255 / 0.8);\n}\n.bg-info\\/85{\nbackground-color: rgb(0 191 255 / 0.85);\n}\n.bg-info\\/90{\nbackground-color: rgb(0 191 255 / 0.9);\n}\n.bg-info\\/95{\nbackground-color: rgb(0 191 255 / 0.95);\n}\n.bg-inherit{\nbackground-color: inherit;\n}\n.bg-invert{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)) 5%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-invert\\/0{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0) 5%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-invert\\/10{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.1) 5%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-invert\\/100{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 5%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-invert\\/15{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.15) 5%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-invert\\/20{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.2) 5%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-invert\\/25{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.25) 5%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-invert\\/30{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.3) 5%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-invert\\/35{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.35) 5%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-invert\\/40{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.4) 5%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-invert\\/45{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.45) 5%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-invert\\/5{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.05) 5%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-invert\\/50{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.5) 5%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-invert\\/55{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.55) 5%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-invert\\/60{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.6) 5%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-invert\\/65{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.65) 5%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-invert\\/70{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.7) 5%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-invert\\/75{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.75) 5%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-invert\\/80{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.8) 5%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-invert\\/85{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.85) 5%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-invert\\/90{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.9) 5%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-invert\\/95{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.95) 5%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-iris{\n--tw-bg-opacity: 1;\nbackground-color: rgb(91 91 214 / var(--tw-bg-opacity));\n}\n.bg-iris-100{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-iris-100\\/0{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-iris-100\\/10{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-iris-100\\/100{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-iris-100\\/15{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-iris-100\\/20{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-iris-100\\/25{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-iris-100\\/30{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-iris-100\\/35{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-iris-100\\/40{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-iris-100\\/45{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-iris-100\\/5{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-iris-100\\/50{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-iris-100\\/55{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-iris-100\\/60{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-iris-100\\/65{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-iris-100\\/70{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-iris-100\\/75{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-iris-100\\/80{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-iris-100\\/85{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-iris-100\\/90{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-iris-100\\/95{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-iris-200{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-iris-200\\/0{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-iris-200\\/10{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-iris-200\\/100{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-iris-200\\/15{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-iris-200\\/20{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-iris-200\\/25{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-iris-200\\/30{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-iris-200\\/35{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-iris-200\\/40{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-iris-200\\/45{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-iris-200\\/5{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-iris-200\\/50{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-iris-200\\/55{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-iris-200\\/60{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-iris-200\\/65{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-iris-200\\/70{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-iris-200\\/75{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-iris-200\\/80{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-iris-200\\/85{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-iris-200\\/90{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-iris-200\\/95{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-iris-300{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / var(--tw-bg-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-iris-300\\/0{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-iris-300\\/10{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-iris-300\\/100{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-iris-300\\/15{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-iris-300\\/20{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-iris-300\\/25{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-iris-300\\/30{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-iris-300\\/35{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-iris-300\\/40{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-iris-300\\/45{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-iris-300\\/5{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-iris-300\\/50{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-iris-300\\/55{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-iris-300\\/60{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-iris-300\\/65{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-iris-300\\/70{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-iris-300\\/75{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-iris-300\\/80{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-iris-300\\/85{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-iris-300\\/90{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-iris-300\\/95{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-iris-400{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-iris-400\\/0{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-iris-400\\/10{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-iris-400\\/100{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-iris-400\\/15{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-iris-400\\/20{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-iris-400\\/25{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-iris-400\\/30{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-iris-400\\/35{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-iris-400\\/40{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-iris-400\\/45{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-iris-400\\/5{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-iris-400\\/50{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-iris-400\\/55{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-iris-400\\/60{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-iris-400\\/65{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-iris-400\\/70{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-iris-400\\/75{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-iris-400\\/80{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-iris-400\\/85{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-iris-400\\/90{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-iris-400\\/95{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-iris-50{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / var(--tw-bg-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-iris-50\\/0{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-iris-50\\/10{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-iris-50\\/100{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-iris-50\\/15{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-iris-50\\/20{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-iris-50\\/25{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-iris-50\\/30{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-iris-50\\/35{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-iris-50\\/40{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-iris-50\\/45{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-iris-50\\/5{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-iris-50\\/50{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-iris-50\\/55{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-iris-50\\/60{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-iris-50\\/65{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-iris-50\\/70{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-iris-50\\/75{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-iris-50\\/80{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-iris-50\\/85{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-iris-50\\/90{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-iris-50\\/95{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-iris-500{\n--tw-bg-opacity: 1;\nbackground-color: color(from #5b5bd6 srgb r g b / var(--tw-bg-opacity));\n}\n.bg-iris-500\\/0{\nbackground-color: color(from #5b5bd6 srgb r g b / 0);\n}\n.bg-iris-500\\/10{\nbackground-color: color(from #5b5bd6 srgb r g b / 0.1);\n}\n.bg-iris-500\\/100{\nbackground-color: color(from #5b5bd6 srgb r g b / 1);\n}\n.bg-iris-500\\/15{\nbackground-color: color(from #5b5bd6 srgb r g b / 0.15);\n}\n.bg-iris-500\\/20{\nbackground-color: color(from #5b5bd6 srgb r g b / 0.2);\n}\n.bg-iris-500\\/25{\nbackground-color: color(from #5b5bd6 srgb r g b / 0.25);\n}\n.bg-iris-500\\/30{\nbackground-color: color(from #5b5bd6 srgb r g b / 0.3);\n}\n.bg-iris-500\\/35{\nbackground-color: color(from #5b5bd6 srgb r g b / 0.35);\n}\n.bg-iris-500\\/40{\nbackground-color: color(from #5b5bd6 srgb r g b / 0.4);\n}\n.bg-iris-500\\/45{\nbackground-color: color(from #5b5bd6 srgb r g b / 0.45);\n}\n.bg-iris-500\\/5{\nbackground-color: color(from #5b5bd6 srgb r g b / 0.05);\n}\n.bg-iris-500\\/50{\nbackground-color: color(from #5b5bd6 srgb r g b / 0.5);\n}\n.bg-iris-500\\/55{\nbackground-color: color(from #5b5bd6 srgb r g b / 0.55);\n}\n.bg-iris-500\\/60{\nbackground-color: color(from #5b5bd6 srgb r g b / 0.6);\n}\n.bg-iris-500\\/65{\nbackground-color: color(from #5b5bd6 srgb r g b / 0.65);\n}\n.bg-iris-500\\/70{\nbackground-color: color(from #5b5bd6 srgb r g b / 0.7);\n}\n.bg-iris-500\\/75{\nbackground-color: color(from #5b5bd6 srgb r g b / 0.75);\n}\n.bg-iris-500\\/80{\nbackground-color: color(from #5b5bd6 srgb r g b / 0.8);\n}\n.bg-iris-500\\/85{\nbackground-color: color(from #5b5bd6 srgb r g b / 0.85);\n}\n.bg-iris-500\\/90{\nbackground-color: color(from #5b5bd6 srgb r g b / 0.9);\n}\n.bg-iris-500\\/95{\nbackground-color: color(from #5b5bd6 srgb r g b / 0.95);\n}\n.bg-iris-600{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-iris-600\\/0{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-iris-600\\/10{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-iris-600\\/100{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-iris-600\\/15{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-iris-600\\/20{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-iris-600\\/25{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-iris-600\\/30{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-iris-600\\/35{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-iris-600\\/40{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-iris-600\\/45{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-iris-600\\/5{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-iris-600\\/50{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-iris-600\\/55{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-iris-600\\/60{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-iris-600\\/65{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-iris-600\\/70{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-iris-600\\/75{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-iris-600\\/80{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-iris-600\\/85{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-iris-600\\/90{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-iris-600\\/95{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-iris-700{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / var(--tw-bg-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-iris-700\\/0{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-iris-700\\/10{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-iris-700\\/100{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-iris-700\\/15{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-iris-700\\/20{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-iris-700\\/25{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-iris-700\\/30{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-iris-700\\/35{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-iris-700\\/40{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-iris-700\\/45{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-iris-700\\/5{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-iris-700\\/50{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-iris-700\\/55{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-iris-700\\/60{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-iris-700\\/65{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-iris-700\\/70{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-iris-700\\/75{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-iris-700\\/80{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-iris-700\\/85{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-iris-700\\/90{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-iris-700\\/95{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-iris-800{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-iris-800\\/0{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-iris-800\\/10{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-iris-800\\/100{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-iris-800\\/15{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-iris-800\\/20{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-iris-800\\/25{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-iris-800\\/30{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-iris-800\\/35{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-iris-800\\/40{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-iris-800\\/45{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-iris-800\\/5{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-iris-800\\/50{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-iris-800\\/55{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-iris-800\\/60{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-iris-800\\/65{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-iris-800\\/70{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-iris-800\\/75{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-iris-800\\/80{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-iris-800\\/85{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-iris-800\\/90{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-iris-800\\/95{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-iris-900{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-iris-900\\/0{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-iris-900\\/10{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-iris-900\\/100{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-iris-900\\/15{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-iris-900\\/20{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-iris-900\\/25{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-iris-900\\/30{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-iris-900\\/35{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-iris-900\\/40{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-iris-900\\/45{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-iris-900\\/5{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-iris-900\\/50{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-iris-900\\/55{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-iris-900\\/60{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-iris-900\\/65{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-iris-900\\/70{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-iris-900\\/75{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-iris-900\\/80{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-iris-900\\/85{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-iris-900\\/90{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-iris-900\\/95{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-iris-950{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / var(--tw-bg-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-iris-950\\/0{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-iris-950\\/10{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-iris-950\\/100{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-iris-950\\/15{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-iris-950\\/20{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-iris-950\\/25{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-iris-950\\/30{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-iris-950\\/35{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-iris-950\\/40{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-iris-950\\/45{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-iris-950\\/5{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-iris-950\\/50{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-iris-950\\/55{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-iris-950\\/60{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-iris-950\\/65{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-iris-950\\/70{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-iris-950\\/75{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-iris-950\\/80{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-iris-950\\/85{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-iris-950\\/90{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-iris-950\\/95{\nbackground-color: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-iris\\/0{\nbackground-color: rgb(91 91 214 / 0);\n}\n.bg-iris\\/10{\nbackground-color: rgb(91 91 214 / 0.1);\n}\n.bg-iris\\/100{\nbackground-color: rgb(91 91 214 / 1);\n}\n.bg-iris\\/15{\nbackground-color: rgb(91 91 214 / 0.15);\n}\n.bg-iris\\/20{\nbackground-color: rgb(91 91 214 / 0.2);\n}\n.bg-iris\\/25{\nbackground-color: rgb(91 91 214 / 0.25);\n}\n.bg-iris\\/30{\nbackground-color: rgb(91 91 214 / 0.3);\n}\n.bg-iris\\/35{\nbackground-color: rgb(91 91 214 / 0.35);\n}\n.bg-iris\\/40{\nbackground-color: rgb(91 91 214 / 0.4);\n}\n.bg-iris\\/45{\nbackground-color: rgb(91 91 214 / 0.45);\n}\n.bg-iris\\/5{\nbackground-color: rgb(91 91 214 / 0.05);\n}\n.bg-iris\\/50{\nbackground-color: rgb(91 91 214 / 0.5);\n}\n.bg-iris\\/55{\nbackground-color: rgb(91 91 214 / 0.55);\n}\n.bg-iris\\/60{\nbackground-color: rgb(91 91 214 / 0.6);\n}\n.bg-iris\\/65{\nbackground-color: rgb(91 91 214 / 0.65);\n}\n.bg-iris\\/70{\nbackground-color: rgb(91 91 214 / 0.7);\n}\n.bg-iris\\/75{\nbackground-color: rgb(91 91 214 / 0.75);\n}\n.bg-iris\\/80{\nbackground-color: rgb(91 91 214 / 0.8);\n}\n.bg-iris\\/85{\nbackground-color: rgb(91 91 214 / 0.85);\n}\n.bg-iris\\/90{\nbackground-color: rgb(91 91 214 / 0.9);\n}\n.bg-iris\\/95{\nbackground-color: rgb(91 91 214 / 0.95);\n}\n.bg-jade{\n--tw-bg-opacity: 1;\nbackground-color: rgb(41 163 131 / var(--tw-bg-opacity));\n}\n.bg-jade-100{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-jade-100\\/0{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-jade-100\\/10{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-jade-100\\/100{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-jade-100\\/15{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-jade-100\\/20{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-jade-100\\/25{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-jade-100\\/30{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-jade-100\\/35{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-jade-100\\/40{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-jade-100\\/45{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-jade-100\\/5{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-jade-100\\/50{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-jade-100\\/55{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-jade-100\\/60{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-jade-100\\/65{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-jade-100\\/70{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-jade-100\\/75{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-jade-100\\/80{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-jade-100\\/85{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-jade-100\\/90{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-jade-100\\/95{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-jade-200{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-jade-200\\/0{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-jade-200\\/10{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-jade-200\\/100{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-jade-200\\/15{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-jade-200\\/20{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-jade-200\\/25{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-jade-200\\/30{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-jade-200\\/35{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-jade-200\\/40{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-jade-200\\/45{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-jade-200\\/5{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-jade-200\\/50{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-jade-200\\/55{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-jade-200\\/60{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-jade-200\\/65{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-jade-200\\/70{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-jade-200\\/75{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-jade-200\\/80{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-jade-200\\/85{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-jade-200\\/90{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-jade-200\\/95{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-jade-300{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / var(--tw-bg-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-jade-300\\/0{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-jade-300\\/10{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-jade-300\\/100{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-jade-300\\/15{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-jade-300\\/20{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-jade-300\\/25{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-jade-300\\/30{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-jade-300\\/35{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-jade-300\\/40{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-jade-300\\/45{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-jade-300\\/5{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-jade-300\\/50{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-jade-300\\/55{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-jade-300\\/60{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-jade-300\\/65{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-jade-300\\/70{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-jade-300\\/75{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-jade-300\\/80{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-jade-300\\/85{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-jade-300\\/90{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-jade-300\\/95{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-jade-400{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-jade-400\\/0{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-jade-400\\/10{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-jade-400\\/100{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-jade-400\\/15{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-jade-400\\/20{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-jade-400\\/25{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-jade-400\\/30{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-jade-400\\/35{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-jade-400\\/40{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-jade-400\\/45{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-jade-400\\/5{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-jade-400\\/50{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-jade-400\\/55{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-jade-400\\/60{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-jade-400\\/65{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-jade-400\\/70{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-jade-400\\/75{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-jade-400\\/80{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-jade-400\\/85{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-jade-400\\/90{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-jade-400\\/95{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-jade-50{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / var(--tw-bg-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-jade-50\\/0{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-jade-50\\/10{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-jade-50\\/100{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-jade-50\\/15{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-jade-50\\/20{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-jade-50\\/25{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-jade-50\\/30{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-jade-50\\/35{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-jade-50\\/40{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-jade-50\\/45{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-jade-50\\/5{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-jade-50\\/50{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-jade-50\\/55{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-jade-50\\/60{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-jade-50\\/65{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-jade-50\\/70{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-jade-50\\/75{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-jade-50\\/80{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-jade-50\\/85{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-jade-50\\/90{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-jade-50\\/95{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-jade-500{\n--tw-bg-opacity: 1;\nbackground-color: color(from #29a383 srgb r g b / var(--tw-bg-opacity));\n}\n.bg-jade-500\\/0{\nbackground-color: color(from #29a383 srgb r g b / 0);\n}\n.bg-jade-500\\/10{\nbackground-color: color(from #29a383 srgb r g b / 0.1);\n}\n.bg-jade-500\\/100{\nbackground-color: color(from #29a383 srgb r g b / 1);\n}\n.bg-jade-500\\/15{\nbackground-color: color(from #29a383 srgb r g b / 0.15);\n}\n.bg-jade-500\\/20{\nbackground-color: color(from #29a383 srgb r g b / 0.2);\n}\n.bg-jade-500\\/25{\nbackground-color: color(from #29a383 srgb r g b / 0.25);\n}\n.bg-jade-500\\/30{\nbackground-color: color(from #29a383 srgb r g b / 0.3);\n}\n.bg-jade-500\\/35{\nbackground-color: color(from #29a383 srgb r g b / 0.35);\n}\n.bg-jade-500\\/40{\nbackground-color: color(from #29a383 srgb r g b / 0.4);\n}\n.bg-jade-500\\/45{\nbackground-color: color(from #29a383 srgb r g b / 0.45);\n}\n.bg-jade-500\\/5{\nbackground-color: color(from #29a383 srgb r g b / 0.05);\n}\n.bg-jade-500\\/50{\nbackground-color: color(from #29a383 srgb r g b / 0.5);\n}\n.bg-jade-500\\/55{\nbackground-color: color(from #29a383 srgb r g b / 0.55);\n}\n.bg-jade-500\\/60{\nbackground-color: color(from #29a383 srgb r g b / 0.6);\n}\n.bg-jade-500\\/65{\nbackground-color: color(from #29a383 srgb r g b / 0.65);\n}\n.bg-jade-500\\/70{\nbackground-color: color(from #29a383 srgb r g b / 0.7);\n}\n.bg-jade-500\\/75{\nbackground-color: color(from #29a383 srgb r g b / 0.75);\n}\n.bg-jade-500\\/80{\nbackground-color: color(from #29a383 srgb r g b / 0.8);\n}\n.bg-jade-500\\/85{\nbackground-color: color(from #29a383 srgb r g b / 0.85);\n}\n.bg-jade-500\\/90{\nbackground-color: color(from #29a383 srgb r g b / 0.9);\n}\n.bg-jade-500\\/95{\nbackground-color: color(from #29a383 srgb r g b / 0.95);\n}\n.bg-jade-600{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-jade-600\\/0{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-jade-600\\/10{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-jade-600\\/100{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-jade-600\\/15{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-jade-600\\/20{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-jade-600\\/25{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-jade-600\\/30{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-jade-600\\/35{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-jade-600\\/40{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-jade-600\\/45{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-jade-600\\/5{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-jade-600\\/50{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-jade-600\\/55{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-jade-600\\/60{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-jade-600\\/65{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-jade-600\\/70{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-jade-600\\/75{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-jade-600\\/80{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-jade-600\\/85{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-jade-600\\/90{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-jade-600\\/95{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-jade-700{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / var(--tw-bg-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-jade-700\\/0{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-jade-700\\/10{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-jade-700\\/100{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-jade-700\\/15{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-jade-700\\/20{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-jade-700\\/25{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-jade-700\\/30{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-jade-700\\/35{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-jade-700\\/40{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-jade-700\\/45{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-jade-700\\/5{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-jade-700\\/50{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-jade-700\\/55{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-jade-700\\/60{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-jade-700\\/65{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-jade-700\\/70{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-jade-700\\/75{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-jade-700\\/80{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-jade-700\\/85{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-jade-700\\/90{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-jade-700\\/95{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-jade-800{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-jade-800\\/0{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-jade-800\\/10{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-jade-800\\/100{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-jade-800\\/15{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-jade-800\\/20{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-jade-800\\/25{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-jade-800\\/30{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-jade-800\\/35{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-jade-800\\/40{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-jade-800\\/45{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-jade-800\\/5{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-jade-800\\/50{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-jade-800\\/55{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-jade-800\\/60{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-jade-800\\/65{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-jade-800\\/70{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-jade-800\\/75{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-jade-800\\/80{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-jade-800\\/85{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-jade-800\\/90{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-jade-800\\/95{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-jade-900{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-jade-900\\/0{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-jade-900\\/10{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-jade-900\\/100{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-jade-900\\/15{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-jade-900\\/20{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-jade-900\\/25{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-jade-900\\/30{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-jade-900\\/35{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-jade-900\\/40{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-jade-900\\/45{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-jade-900\\/5{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-jade-900\\/50{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-jade-900\\/55{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-jade-900\\/60{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-jade-900\\/65{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-jade-900\\/70{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-jade-900\\/75{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-jade-900\\/80{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-jade-900\\/85{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-jade-900\\/90{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-jade-900\\/95{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-jade-950{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / var(--tw-bg-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-jade-950\\/0{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-jade-950\\/10{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-jade-950\\/100{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-jade-950\\/15{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-jade-950\\/20{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-jade-950\\/25{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-jade-950\\/30{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-jade-950\\/35{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-jade-950\\/40{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-jade-950\\/45{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-jade-950\\/5{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-jade-950\\/50{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-jade-950\\/55{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-jade-950\\/60{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-jade-950\\/65{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-jade-950\\/70{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-jade-950\\/75{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-jade-950\\/80{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-jade-950\\/85{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-jade-950\\/90{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-jade-950\\/95{\nbackground-color: color-mix(in lab, color(from #29a383 srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-jade\\/0{\nbackground-color: rgb(41 163 131 / 0);\n}\n.bg-jade\\/10{\nbackground-color: rgb(41 163 131 / 0.1);\n}\n.bg-jade\\/100{\nbackground-color: rgb(41 163 131 / 1);\n}\n.bg-jade\\/15{\nbackground-color: rgb(41 163 131 / 0.15);\n}\n.bg-jade\\/20{\nbackground-color: rgb(41 163 131 / 0.2);\n}\n.bg-jade\\/25{\nbackground-color: rgb(41 163 131 / 0.25);\n}\n.bg-jade\\/30{\nbackground-color: rgb(41 163 131 / 0.3);\n}\n.bg-jade\\/35{\nbackground-color: rgb(41 163 131 / 0.35);\n}\n.bg-jade\\/40{\nbackground-color: rgb(41 163 131 / 0.4);\n}\n.bg-jade\\/45{\nbackground-color: rgb(41 163 131 / 0.45);\n}\n.bg-jade\\/5{\nbackground-color: rgb(41 163 131 / 0.05);\n}\n.bg-jade\\/50{\nbackground-color: rgb(41 163 131 / 0.5);\n}\n.bg-jade\\/55{\nbackground-color: rgb(41 163 131 / 0.55);\n}\n.bg-jade\\/60{\nbackground-color: rgb(41 163 131 / 0.6);\n}\n.bg-jade\\/65{\nbackground-color: rgb(41 163 131 / 0.65);\n}\n.bg-jade\\/70{\nbackground-color: rgb(41 163 131 / 0.7);\n}\n.bg-jade\\/75{\nbackground-color: rgb(41 163 131 / 0.75);\n}\n.bg-jade\\/80{\nbackground-color: rgb(41 163 131 / 0.8);\n}\n.bg-jade\\/85{\nbackground-color: rgb(41 163 131 / 0.85);\n}\n.bg-jade\\/90{\nbackground-color: rgb(41 163 131 / 0.9);\n}\n.bg-jade\\/95{\nbackground-color: rgb(41 163 131 / 0.95);\n}\n.bg-light{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--white) srgb r g b / var(--tw-bg-opacity)) 90%, color(from var(--tint) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-light\\/0{\nbackground-color: color-mix(in lab, color(from var(--white) srgb r g b / 0) 90%, color(from var(--tint) srgb r g b / 0));\n}\n.bg-light\\/10{\nbackground-color: color-mix(in lab, color(from var(--white) srgb r g b / 0.1) 90%, color(from var(--tint) srgb r g b / 0.1));\n}\n.bg-light\\/100{\nbackground-color: color-mix(in lab, color(from var(--white) srgb r g b / 1) 90%, color(from var(--tint) srgb r g b / 1));\n}\n.bg-light\\/15{\nbackground-color: color-mix(in lab, color(from var(--white) srgb r g b / 0.15) 90%, color(from var(--tint) srgb r g b / 0.15));\n}\n.bg-light\\/20{\nbackground-color: color-mix(in lab, color(from var(--white) srgb r g b / 0.2) 90%, color(from var(--tint) srgb r g b / 0.2));\n}\n.bg-light\\/25{\nbackground-color: color-mix(in lab, color(from var(--white) srgb r g b / 0.25) 90%, color(from var(--tint) srgb r g b / 0.25));\n}\n.bg-light\\/30{\nbackground-color: color-mix(in lab, color(from var(--white) srgb r g b / 0.3) 90%, color(from var(--tint) srgb r g b / 0.3));\n}\n.bg-light\\/35{\nbackground-color: color-mix(in lab, color(from var(--white) srgb r g b / 0.35) 90%, color(from var(--tint) srgb r g b / 0.35));\n}\n.bg-light\\/40{\nbackground-color: color-mix(in lab, color(from var(--white) srgb r g b / 0.4) 90%, color(from var(--tint) srgb r g b / 0.4));\n}\n.bg-light\\/45{\nbackground-color: color-mix(in lab, color(from var(--white) srgb r g b / 0.45) 90%, color(from var(--tint) srgb r g b / 0.45));\n}\n.bg-light\\/5{\nbackground-color: color-mix(in lab, color(from var(--white) srgb r g b / 0.05) 90%, color(from var(--tint) srgb r g b / 0.05));\n}\n.bg-light\\/50{\nbackground-color: color-mix(in lab, color(from var(--white) srgb r g b / 0.5) 90%, color(from var(--tint) srgb r g b / 0.5));\n}\n.bg-light\\/55{\nbackground-color: color-mix(in lab, color(from var(--white) srgb r g b / 0.55) 90%, color(from var(--tint) srgb r g b / 0.55));\n}\n.bg-light\\/60{\nbackground-color: color-mix(in lab, color(from var(--white) srgb r g b / 0.6) 90%, color(from var(--tint) srgb r g b / 0.6));\n}\n.bg-light\\/65{\nbackground-color: color-mix(in lab, color(from var(--white) srgb r g b / 0.65) 90%, color(from var(--tint) srgb r g b / 0.65));\n}\n.bg-light\\/70{\nbackground-color: color-mix(in lab, color(from var(--white) srgb r g b / 0.7) 90%, color(from var(--tint) srgb r g b / 0.7));\n}\n.bg-light\\/75{\nbackground-color: color-mix(in lab, color(from var(--white) srgb r g b / 0.75) 90%, color(from var(--tint) srgb r g b / 0.75));\n}\n.bg-light\\/80{\nbackground-color: color-mix(in lab, color(from var(--white) srgb r g b / 0.8) 90%, color(from var(--tint) srgb r g b / 0.8));\n}\n.bg-light\\/85{\nbackground-color: color-mix(in lab, color(from var(--white) srgb r g b / 0.85) 90%, color(from var(--tint) srgb r g b / 0.85));\n}\n.bg-light\\/90{\nbackground-color: color-mix(in lab, color(from var(--white) srgb r g b / 0.9) 90%, color(from var(--tint) srgb r g b / 0.9));\n}\n.bg-light\\/95{\nbackground-color: color-mix(in lab, color(from var(--white) srgb r g b / 0.95) 90%, color(from var(--tint) srgb r g b / 0.95));\n}\n.bg-lilac{\n--tw-bg-opacity: 1;\nbackground-color: rgb(142 78 198 / var(--tw-bg-opacity));\n}\n.bg-lilac-100{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-lilac-100\\/0{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-lilac-100\\/10{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-lilac-100\\/100{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-lilac-100\\/15{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-lilac-100\\/20{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-lilac-100\\/25{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-lilac-100\\/30{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-lilac-100\\/35{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-lilac-100\\/40{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-lilac-100\\/45{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-lilac-100\\/5{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-lilac-100\\/50{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-lilac-100\\/55{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-lilac-100\\/60{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-lilac-100\\/65{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-lilac-100\\/70{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-lilac-100\\/75{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-lilac-100\\/80{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-lilac-100\\/85{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-lilac-100\\/90{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-lilac-100\\/95{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-lilac-200{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-lilac-200\\/0{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-lilac-200\\/10{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-lilac-200\\/100{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-lilac-200\\/15{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-lilac-200\\/20{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-lilac-200\\/25{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-lilac-200\\/30{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-lilac-200\\/35{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-lilac-200\\/40{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-lilac-200\\/45{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-lilac-200\\/5{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-lilac-200\\/50{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-lilac-200\\/55{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-lilac-200\\/60{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-lilac-200\\/65{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-lilac-200\\/70{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-lilac-200\\/75{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-lilac-200\\/80{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-lilac-200\\/85{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-lilac-200\\/90{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-lilac-200\\/95{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-lilac-300{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / var(--tw-bg-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-lilac-300\\/0{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-lilac-300\\/10{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-lilac-300\\/100{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-lilac-300\\/15{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-lilac-300\\/20{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-lilac-300\\/25{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-lilac-300\\/30{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-lilac-300\\/35{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-lilac-300\\/40{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-lilac-300\\/45{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-lilac-300\\/5{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-lilac-300\\/50{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-lilac-300\\/55{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-lilac-300\\/60{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-lilac-300\\/65{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-lilac-300\\/70{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-lilac-300\\/75{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-lilac-300\\/80{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-lilac-300\\/85{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-lilac-300\\/90{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-lilac-300\\/95{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-lilac-400{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-lilac-400\\/0{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-lilac-400\\/10{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-lilac-400\\/100{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-lilac-400\\/15{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-lilac-400\\/20{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-lilac-400\\/25{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-lilac-400\\/30{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-lilac-400\\/35{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-lilac-400\\/40{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-lilac-400\\/45{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-lilac-400\\/5{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-lilac-400\\/50{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-lilac-400\\/55{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-lilac-400\\/60{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-lilac-400\\/65{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-lilac-400\\/70{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-lilac-400\\/75{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-lilac-400\\/80{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-lilac-400\\/85{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-lilac-400\\/90{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-lilac-400\\/95{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-lilac-50{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / var(--tw-bg-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-lilac-50\\/0{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-lilac-50\\/10{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-lilac-50\\/100{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-lilac-50\\/15{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-lilac-50\\/20{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-lilac-50\\/25{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-lilac-50\\/30{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-lilac-50\\/35{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-lilac-50\\/40{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-lilac-50\\/45{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-lilac-50\\/5{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-lilac-50\\/50{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-lilac-50\\/55{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-lilac-50\\/60{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-lilac-50\\/65{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-lilac-50\\/70{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-lilac-50\\/75{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-lilac-50\\/80{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-lilac-50\\/85{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-lilac-50\\/90{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-lilac-50\\/95{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-lilac-500{\n--tw-bg-opacity: 1;\nbackground-color: color(from #8e4ec6 srgb r g b / var(--tw-bg-opacity));\n}\n.bg-lilac-500\\/0{\nbackground-color: color(from #8e4ec6 srgb r g b / 0);\n}\n.bg-lilac-500\\/10{\nbackground-color: color(from #8e4ec6 srgb r g b / 0.1);\n}\n.bg-lilac-500\\/100{\nbackground-color: color(from #8e4ec6 srgb r g b / 1);\n}\n.bg-lilac-500\\/15{\nbackground-color: color(from #8e4ec6 srgb r g b / 0.15);\n}\n.bg-lilac-500\\/20{\nbackground-color: color(from #8e4ec6 srgb r g b / 0.2);\n}\n.bg-lilac-500\\/25{\nbackground-color: color(from #8e4ec6 srgb r g b / 0.25);\n}\n.bg-lilac-500\\/30{\nbackground-color: color(from #8e4ec6 srgb r g b / 0.3);\n}\n.bg-lilac-500\\/35{\nbackground-color: color(from #8e4ec6 srgb r g b / 0.35);\n}\n.bg-lilac-500\\/40{\nbackground-color: color(from #8e4ec6 srgb r g b / 0.4);\n}\n.bg-lilac-500\\/45{\nbackground-color: color(from #8e4ec6 srgb r g b / 0.45);\n}\n.bg-lilac-500\\/5{\nbackground-color: color(from #8e4ec6 srgb r g b / 0.05);\n}\n.bg-lilac-500\\/50{\nbackground-color: color(from #8e4ec6 srgb r g b / 0.5);\n}\n.bg-lilac-500\\/55{\nbackground-color: color(from #8e4ec6 srgb r g b / 0.55);\n}\n.bg-lilac-500\\/60{\nbackground-color: color(from #8e4ec6 srgb r g b / 0.6);\n}\n.bg-lilac-500\\/65{\nbackground-color: color(from #8e4ec6 srgb r g b / 0.65);\n}\n.bg-lilac-500\\/70{\nbackground-color: color(from #8e4ec6 srgb r g b / 0.7);\n}\n.bg-lilac-500\\/75{\nbackground-color: color(from #8e4ec6 srgb r g b / 0.75);\n}\n.bg-lilac-500\\/80{\nbackground-color: color(from #8e4ec6 srgb r g b / 0.8);\n}\n.bg-lilac-500\\/85{\nbackground-color: color(from #8e4ec6 srgb r g b / 0.85);\n}\n.bg-lilac-500\\/90{\nbackground-color: color(from #8e4ec6 srgb r g b / 0.9);\n}\n.bg-lilac-500\\/95{\nbackground-color: color(from #8e4ec6 srgb r g b / 0.95);\n}\n.bg-lilac-600{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-lilac-600\\/0{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-lilac-600\\/10{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-lilac-600\\/100{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-lilac-600\\/15{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-lilac-600\\/20{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-lilac-600\\/25{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-lilac-600\\/30{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-lilac-600\\/35{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-lilac-600\\/40{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-lilac-600\\/45{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-lilac-600\\/5{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-lilac-600\\/50{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-lilac-600\\/55{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-lilac-600\\/60{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-lilac-600\\/65{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-lilac-600\\/70{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-lilac-600\\/75{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-lilac-600\\/80{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-lilac-600\\/85{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-lilac-600\\/90{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-lilac-600\\/95{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-lilac-700{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / var(--tw-bg-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-lilac-700\\/0{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-lilac-700\\/10{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-lilac-700\\/100{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-lilac-700\\/15{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-lilac-700\\/20{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-lilac-700\\/25{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-lilac-700\\/30{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-lilac-700\\/35{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-lilac-700\\/40{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-lilac-700\\/45{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-lilac-700\\/5{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-lilac-700\\/50{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-lilac-700\\/55{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-lilac-700\\/60{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-lilac-700\\/65{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-lilac-700\\/70{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-lilac-700\\/75{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-lilac-700\\/80{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-lilac-700\\/85{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-lilac-700\\/90{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-lilac-700\\/95{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-lilac-800{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-lilac-800\\/0{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-lilac-800\\/10{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-lilac-800\\/100{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-lilac-800\\/15{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-lilac-800\\/20{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-lilac-800\\/25{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-lilac-800\\/30{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-lilac-800\\/35{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-lilac-800\\/40{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-lilac-800\\/45{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-lilac-800\\/5{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-lilac-800\\/50{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-lilac-800\\/55{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-lilac-800\\/60{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-lilac-800\\/65{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-lilac-800\\/70{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-lilac-800\\/75{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-lilac-800\\/80{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-lilac-800\\/85{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-lilac-800\\/90{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-lilac-800\\/95{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-lilac-900{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-lilac-900\\/0{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-lilac-900\\/10{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-lilac-900\\/100{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-lilac-900\\/15{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-lilac-900\\/20{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-lilac-900\\/25{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-lilac-900\\/30{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-lilac-900\\/35{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-lilac-900\\/40{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-lilac-900\\/45{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-lilac-900\\/5{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-lilac-900\\/50{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-lilac-900\\/55{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-lilac-900\\/60{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-lilac-900\\/65{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-lilac-900\\/70{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-lilac-900\\/75{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-lilac-900\\/80{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-lilac-900\\/85{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-lilac-900\\/90{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-lilac-900\\/95{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-lilac-950{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / var(--tw-bg-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-lilac-950\\/0{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-lilac-950\\/10{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-lilac-950\\/100{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-lilac-950\\/15{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-lilac-950\\/20{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-lilac-950\\/25{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-lilac-950\\/30{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-lilac-950\\/35{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-lilac-950\\/40{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-lilac-950\\/45{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-lilac-950\\/5{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-lilac-950\\/50{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-lilac-950\\/55{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-lilac-950\\/60{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-lilac-950\\/65{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-lilac-950\\/70{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-lilac-950\\/75{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-lilac-950\\/80{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-lilac-950\\/85{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-lilac-950\\/90{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-lilac-950\\/95{\nbackground-color: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-lilac\\/0{\nbackground-color: rgb(142 78 198 / 0);\n}\n.bg-lilac\\/10{\nbackground-color: rgb(142 78 198 / 0.1);\n}\n.bg-lilac\\/100{\nbackground-color: rgb(142 78 198 / 1);\n}\n.bg-lilac\\/15{\nbackground-color: rgb(142 78 198 / 0.15);\n}\n.bg-lilac\\/20{\nbackground-color: rgb(142 78 198 / 0.2);\n}\n.bg-lilac\\/25{\nbackground-color: rgb(142 78 198 / 0.25);\n}\n.bg-lilac\\/30{\nbackground-color: rgb(142 78 198 / 0.3);\n}\n.bg-lilac\\/35{\nbackground-color: rgb(142 78 198 / 0.35);\n}\n.bg-lilac\\/40{\nbackground-color: rgb(142 78 198 / 0.4);\n}\n.bg-lilac\\/45{\nbackground-color: rgb(142 78 198 / 0.45);\n}\n.bg-lilac\\/5{\nbackground-color: rgb(142 78 198 / 0.05);\n}\n.bg-lilac\\/50{\nbackground-color: rgb(142 78 198 / 0.5);\n}\n.bg-lilac\\/55{\nbackground-color: rgb(142 78 198 / 0.55);\n}\n.bg-lilac\\/60{\nbackground-color: rgb(142 78 198 / 0.6);\n}\n.bg-lilac\\/65{\nbackground-color: rgb(142 78 198 / 0.65);\n}\n.bg-lilac\\/70{\nbackground-color: rgb(142 78 198 / 0.7);\n}\n.bg-lilac\\/75{\nbackground-color: rgb(142 78 198 / 0.75);\n}\n.bg-lilac\\/80{\nbackground-color: rgb(142 78 198 / 0.8);\n}\n.bg-lilac\\/85{\nbackground-color: rgb(142 78 198 / 0.85);\n}\n.bg-lilac\\/90{\nbackground-color: rgb(142 78 198 / 0.9);\n}\n.bg-lilac\\/95{\nbackground-color: rgb(142 78 198 / 0.95);\n}\n.bg-marigold{\n--tw-bg-opacity: 1;\nbackground-color: rgb(255 193 0 / var(--tw-bg-opacity));\n}\n.bg-marigold-100{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-marigold-100\\/0{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-marigold-100\\/10{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-marigold-100\\/100{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-marigold-100\\/15{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-marigold-100\\/20{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-marigold-100\\/25{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-marigold-100\\/30{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-marigold-100\\/35{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-marigold-100\\/40{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-marigold-100\\/45{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-marigold-100\\/5{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-marigold-100\\/50{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-marigold-100\\/55{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-marigold-100\\/60{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-marigold-100\\/65{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-marigold-100\\/70{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-marigold-100\\/75{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-marigold-100\\/80{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-marigold-100\\/85{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-marigold-100\\/90{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-marigold-100\\/95{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-marigold-200{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-marigold-200\\/0{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-marigold-200\\/10{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-marigold-200\\/100{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-marigold-200\\/15{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-marigold-200\\/20{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-marigold-200\\/25{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-marigold-200\\/30{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-marigold-200\\/35{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-marigold-200\\/40{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-marigold-200\\/45{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-marigold-200\\/5{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-marigold-200\\/50{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-marigold-200\\/55{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-marigold-200\\/60{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-marigold-200\\/65{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-marigold-200\\/70{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-marigold-200\\/75{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-marigold-200\\/80{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-marigold-200\\/85{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-marigold-200\\/90{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-marigold-200\\/95{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-marigold-300{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / var(--tw-bg-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-marigold-300\\/0{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-marigold-300\\/10{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-marigold-300\\/100{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-marigold-300\\/15{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-marigold-300\\/20{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-marigold-300\\/25{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-marigold-300\\/30{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-marigold-300\\/35{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-marigold-300\\/40{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-marigold-300\\/45{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-marigold-300\\/5{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-marigold-300\\/50{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-marigold-300\\/55{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-marigold-300\\/60{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-marigold-300\\/65{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-marigold-300\\/70{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-marigold-300\\/75{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-marigold-300\\/80{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-marigold-300\\/85{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-marigold-300\\/90{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-marigold-300\\/95{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-marigold-400{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-marigold-400\\/0{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-marigold-400\\/10{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-marigold-400\\/100{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-marigold-400\\/15{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-marigold-400\\/20{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-marigold-400\\/25{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-marigold-400\\/30{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-marigold-400\\/35{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-marigold-400\\/40{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-marigold-400\\/45{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-marigold-400\\/5{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-marigold-400\\/50{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-marigold-400\\/55{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-marigold-400\\/60{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-marigold-400\\/65{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-marigold-400\\/70{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-marigold-400\\/75{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-marigold-400\\/80{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-marigold-400\\/85{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-marigold-400\\/90{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-marigold-400\\/95{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-marigold-50{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / var(--tw-bg-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-marigold-50\\/0{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-marigold-50\\/10{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-marigold-50\\/100{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-marigold-50\\/15{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-marigold-50\\/20{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-marigold-50\\/25{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-marigold-50\\/30{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-marigold-50\\/35{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-marigold-50\\/40{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-marigold-50\\/45{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-marigold-50\\/5{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-marigold-50\\/50{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-marigold-50\\/55{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-marigold-50\\/60{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-marigold-50\\/65{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-marigold-50\\/70{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-marigold-50\\/75{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-marigold-50\\/80{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-marigold-50\\/85{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-marigold-50\\/90{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-marigold-50\\/95{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-marigold-500{\n--tw-bg-opacity: 1;\nbackground-color: color(from #ffc100 srgb r g b / var(--tw-bg-opacity));\n}\n.bg-marigold-500\\/0{\nbackground-color: color(from #ffc100 srgb r g b / 0);\n}\n.bg-marigold-500\\/10{\nbackground-color: color(from #ffc100 srgb r g b / 0.1);\n}\n.bg-marigold-500\\/100{\nbackground-color: color(from #ffc100 srgb r g b / 1);\n}\n.bg-marigold-500\\/15{\nbackground-color: color(from #ffc100 srgb r g b / 0.15);\n}\n.bg-marigold-500\\/20{\nbackground-color: color(from #ffc100 srgb r g b / 0.2);\n}\n.bg-marigold-500\\/25{\nbackground-color: color(from #ffc100 srgb r g b / 0.25);\n}\n.bg-marigold-500\\/30{\nbackground-color: color(from #ffc100 srgb r g b / 0.3);\n}\n.bg-marigold-500\\/35{\nbackground-color: color(from #ffc100 srgb r g b / 0.35);\n}\n.bg-marigold-500\\/40{\nbackground-color: color(from #ffc100 srgb r g b / 0.4);\n}\n.bg-marigold-500\\/45{\nbackground-color: color(from #ffc100 srgb r g b / 0.45);\n}\n.bg-marigold-500\\/5{\nbackground-color: color(from #ffc100 srgb r g b / 0.05);\n}\n.bg-marigold-500\\/50{\nbackground-color: color(from #ffc100 srgb r g b / 0.5);\n}\n.bg-marigold-500\\/55{\nbackground-color: color(from #ffc100 srgb r g b / 0.55);\n}\n.bg-marigold-500\\/60{\nbackground-color: color(from #ffc100 srgb r g b / 0.6);\n}\n.bg-marigold-500\\/65{\nbackground-color: color(from #ffc100 srgb r g b / 0.65);\n}\n.bg-marigold-500\\/70{\nbackground-color: color(from #ffc100 srgb r g b / 0.7);\n}\n.bg-marigold-500\\/75{\nbackground-color: color(from #ffc100 srgb r g b / 0.75);\n}\n.bg-marigold-500\\/80{\nbackground-color: color(from #ffc100 srgb r g b / 0.8);\n}\n.bg-marigold-500\\/85{\nbackground-color: color(from #ffc100 srgb r g b / 0.85);\n}\n.bg-marigold-500\\/90{\nbackground-color: color(from #ffc100 srgb r g b / 0.9);\n}\n.bg-marigold-500\\/95{\nbackground-color: color(from #ffc100 srgb r g b / 0.95);\n}\n.bg-marigold-600{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-marigold-600\\/0{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-marigold-600\\/10{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-marigold-600\\/100{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-marigold-600\\/15{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-marigold-600\\/20{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-marigold-600\\/25{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-marigold-600\\/30{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-marigold-600\\/35{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-marigold-600\\/40{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-marigold-600\\/45{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-marigold-600\\/5{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-marigold-600\\/50{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-marigold-600\\/55{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-marigold-600\\/60{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-marigold-600\\/65{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-marigold-600\\/70{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-marigold-600\\/75{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-marigold-600\\/80{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-marigold-600\\/85{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-marigold-600\\/90{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-marigold-600\\/95{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-marigold-700{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / var(--tw-bg-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-marigold-700\\/0{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-marigold-700\\/10{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-marigold-700\\/100{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-marigold-700\\/15{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-marigold-700\\/20{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-marigold-700\\/25{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-marigold-700\\/30{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-marigold-700\\/35{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-marigold-700\\/40{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-marigold-700\\/45{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-marigold-700\\/5{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-marigold-700\\/50{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-marigold-700\\/55{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-marigold-700\\/60{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-marigold-700\\/65{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-marigold-700\\/70{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-marigold-700\\/75{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-marigold-700\\/80{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-marigold-700\\/85{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-marigold-700\\/90{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-marigold-700\\/95{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-marigold-800{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-marigold-800\\/0{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-marigold-800\\/10{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-marigold-800\\/100{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-marigold-800\\/15{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-marigold-800\\/20{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-marigold-800\\/25{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-marigold-800\\/30{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-marigold-800\\/35{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-marigold-800\\/40{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-marigold-800\\/45{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-marigold-800\\/5{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-marigold-800\\/50{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-marigold-800\\/55{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-marigold-800\\/60{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-marigold-800\\/65{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-marigold-800\\/70{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-marigold-800\\/75{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-marigold-800\\/80{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-marigold-800\\/85{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-marigold-800\\/90{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-marigold-800\\/95{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-marigold-900{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-marigold-900\\/0{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-marigold-900\\/10{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-marigold-900\\/100{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-marigold-900\\/15{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-marigold-900\\/20{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-marigold-900\\/25{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-marigold-900\\/30{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-marigold-900\\/35{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-marigold-900\\/40{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-marigold-900\\/45{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-marigold-900\\/5{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-marigold-900\\/50{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-marigold-900\\/55{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-marigold-900\\/60{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-marigold-900\\/65{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-marigold-900\\/70{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-marigold-900\\/75{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-marigold-900\\/80{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-marigold-900\\/85{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-marigold-900\\/90{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-marigold-900\\/95{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-marigold-950{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / var(--tw-bg-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-marigold-950\\/0{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-marigold-950\\/10{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-marigold-950\\/100{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-marigold-950\\/15{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-marigold-950\\/20{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-marigold-950\\/25{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-marigold-950\\/30{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-marigold-950\\/35{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-marigold-950\\/40{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-marigold-950\\/45{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-marigold-950\\/5{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-marigold-950\\/50{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-marigold-950\\/55{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-marigold-950\\/60{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-marigold-950\\/65{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-marigold-950\\/70{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-marigold-950\\/75{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-marigold-950\\/80{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-marigold-950\\/85{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-marigold-950\\/90{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-marigold-950\\/95{\nbackground-color: color-mix(in lab, color(from #ffc100 srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-marigold\\/0{\nbackground-color: rgb(255 193 0 / 0);\n}\n.bg-marigold\\/10{\nbackground-color: rgb(255 193 0 / 0.1);\n}\n.bg-marigold\\/100{\nbackground-color: rgb(255 193 0 / 1);\n}\n.bg-marigold\\/15{\nbackground-color: rgb(255 193 0 / 0.15);\n}\n.bg-marigold\\/20{\nbackground-color: rgb(255 193 0 / 0.2);\n}\n.bg-marigold\\/25{\nbackground-color: rgb(255 193 0 / 0.25);\n}\n.bg-marigold\\/30{\nbackground-color: rgb(255 193 0 / 0.3);\n}\n.bg-marigold\\/35{\nbackground-color: rgb(255 193 0 / 0.35);\n}\n.bg-marigold\\/40{\nbackground-color: rgb(255 193 0 / 0.4);\n}\n.bg-marigold\\/45{\nbackground-color: rgb(255 193 0 / 0.45);\n}\n.bg-marigold\\/5{\nbackground-color: rgb(255 193 0 / 0.05);\n}\n.bg-marigold\\/50{\nbackground-color: rgb(255 193 0 / 0.5);\n}\n.bg-marigold\\/55{\nbackground-color: rgb(255 193 0 / 0.55);\n}\n.bg-marigold\\/60{\nbackground-color: rgb(255 193 0 / 0.6);\n}\n.bg-marigold\\/65{\nbackground-color: rgb(255 193 0 / 0.65);\n}\n.bg-marigold\\/70{\nbackground-color: rgb(255 193 0 / 0.7);\n}\n.bg-marigold\\/75{\nbackground-color: rgb(255 193 0 / 0.75);\n}\n.bg-marigold\\/80{\nbackground-color: rgb(255 193 0 / 0.8);\n}\n.bg-marigold\\/85{\nbackground-color: rgb(255 193 0 / 0.85);\n}\n.bg-marigold\\/90{\nbackground-color: rgb(255 193 0 / 0.9);\n}\n.bg-marigold\\/95{\nbackground-color: rgb(255 193 0 / 0.95);\n}\n.bg-muted{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--tint) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-muted\\/0{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0) 80%, color(from var(--tint) srgb r g b / 0));\n}\n.bg-muted\\/10{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.1) 80%, color(from var(--tint) srgb r g b / 0.1));\n}\n.bg-muted\\/100{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 80%, color(from var(--tint) srgb r g b / 1));\n}\n.bg-muted\\/15{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.15) 80%, color(from var(--tint) srgb r g b / 0.15));\n}\n.bg-muted\\/20{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.2) 80%, color(from var(--tint) srgb r g b / 0.2));\n}\n.bg-muted\\/25{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.25) 80%, color(from var(--tint) srgb r g b / 0.25));\n}\n.bg-muted\\/30{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.3) 80%, color(from var(--tint) srgb r g b / 0.3));\n}\n.bg-muted\\/35{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.35) 80%, color(from var(--tint) srgb r g b / 0.35));\n}\n.bg-muted\\/40{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.4) 80%, color(from var(--tint) srgb r g b / 0.4));\n}\n.bg-muted\\/45{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.45) 80%, color(from var(--tint) srgb r g b / 0.45));\n}\n.bg-muted\\/5{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.05) 80%, color(from var(--tint) srgb r g b / 0.05));\n}\n.bg-muted\\/50{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.5) 80%, color(from var(--tint) srgb r g b / 0.5));\n}\n.bg-muted\\/55{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.55) 80%, color(from var(--tint) srgb r g b / 0.55));\n}\n.bg-muted\\/60{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.6) 80%, color(from var(--tint) srgb r g b / 0.6));\n}\n.bg-muted\\/65{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.65) 80%, color(from var(--tint) srgb r g b / 0.65));\n}\n.bg-muted\\/70{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.7) 80%, color(from var(--tint) srgb r g b / 0.7));\n}\n.bg-muted\\/75{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.75) 80%, color(from var(--tint) srgb r g b / 0.75));\n}\n.bg-muted\\/80{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.8) 80%, color(from var(--tint) srgb r g b / 0.8));\n}\n.bg-muted\\/85{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.85) 80%, color(from var(--tint) srgb r g b / 0.85));\n}\n.bg-muted\\/90{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.9) 80%, color(from var(--tint) srgb r g b / 0.9));\n}\n.bg-muted\\/95{\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 0.95) 80%, color(from var(--tint) srgb r g b / 0.95));\n}\n.bg-olive{\n--tw-bg-opacity: 1;\nbackground-color: rgb(118 155 141 / var(--tw-bg-opacity));\n}\n.bg-olive-100{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-olive-100\\/0{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-olive-100\\/10{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-olive-100\\/100{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-olive-100\\/15{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-olive-100\\/20{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-olive-100\\/25{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-olive-100\\/30{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-olive-100\\/35{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-olive-100\\/40{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-olive-100\\/45{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-olive-100\\/5{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-olive-100\\/50{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-olive-100\\/55{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-olive-100\\/60{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-olive-100\\/65{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-olive-100\\/70{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-olive-100\\/75{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-olive-100\\/80{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-olive-100\\/85{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-olive-100\\/90{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-olive-100\\/95{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-olive-200{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-olive-200\\/0{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-olive-200\\/10{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-olive-200\\/100{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-olive-200\\/15{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-olive-200\\/20{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-olive-200\\/25{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-olive-200\\/30{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-olive-200\\/35{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-olive-200\\/40{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-olive-200\\/45{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-olive-200\\/5{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-olive-200\\/50{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-olive-200\\/55{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-olive-200\\/60{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-olive-200\\/65{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-olive-200\\/70{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-olive-200\\/75{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-olive-200\\/80{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-olive-200\\/85{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-olive-200\\/90{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-olive-200\\/95{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-olive-300{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / var(--tw-bg-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-olive-300\\/0{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-olive-300\\/10{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-olive-300\\/100{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-olive-300\\/15{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-olive-300\\/20{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-olive-300\\/25{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-olive-300\\/30{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-olive-300\\/35{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-olive-300\\/40{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-olive-300\\/45{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-olive-300\\/5{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-olive-300\\/50{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-olive-300\\/55{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-olive-300\\/60{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-olive-300\\/65{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-olive-300\\/70{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-olive-300\\/75{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-olive-300\\/80{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-olive-300\\/85{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-olive-300\\/90{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-olive-300\\/95{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-olive-400{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-olive-400\\/0{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-olive-400\\/10{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-olive-400\\/100{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-olive-400\\/15{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-olive-400\\/20{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-olive-400\\/25{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-olive-400\\/30{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-olive-400\\/35{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-olive-400\\/40{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-olive-400\\/45{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-olive-400\\/5{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-olive-400\\/50{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-olive-400\\/55{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-olive-400\\/60{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-olive-400\\/65{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-olive-400\\/70{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-olive-400\\/75{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-olive-400\\/80{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-olive-400\\/85{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-olive-400\\/90{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-olive-400\\/95{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-olive-50{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / var(--tw-bg-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-olive-50\\/0{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-olive-50\\/10{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-olive-50\\/100{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-olive-50\\/15{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-olive-50\\/20{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-olive-50\\/25{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-olive-50\\/30{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-olive-50\\/35{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-olive-50\\/40{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-olive-50\\/45{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-olive-50\\/5{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-olive-50\\/50{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-olive-50\\/55{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-olive-50\\/60{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-olive-50\\/65{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-olive-50\\/70{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-olive-50\\/75{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-olive-50\\/80{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-olive-50\\/85{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-olive-50\\/90{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-olive-50\\/95{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-olive-500{\n--tw-bg-opacity: 1;\nbackground-color: color(from #769b8d srgb r g b / var(--tw-bg-opacity));\n}\n.bg-olive-500\\/0{\nbackground-color: color(from #769b8d srgb r g b / 0);\n}\n.bg-olive-500\\/10{\nbackground-color: color(from #769b8d srgb r g b / 0.1);\n}\n.bg-olive-500\\/100{\nbackground-color: color(from #769b8d srgb r g b / 1);\n}\n.bg-olive-500\\/15{\nbackground-color: color(from #769b8d srgb r g b / 0.15);\n}\n.bg-olive-500\\/20{\nbackground-color: color(from #769b8d srgb r g b / 0.2);\n}\n.bg-olive-500\\/25{\nbackground-color: color(from #769b8d srgb r g b / 0.25);\n}\n.bg-olive-500\\/30{\nbackground-color: color(from #769b8d srgb r g b / 0.3);\n}\n.bg-olive-500\\/35{\nbackground-color: color(from #769b8d srgb r g b / 0.35);\n}\n.bg-olive-500\\/40{\nbackground-color: color(from #769b8d srgb r g b / 0.4);\n}\n.bg-olive-500\\/45{\nbackground-color: color(from #769b8d srgb r g b / 0.45);\n}\n.bg-olive-500\\/5{\nbackground-color: color(from #769b8d srgb r g b / 0.05);\n}\n.bg-olive-500\\/50{\nbackground-color: color(from #769b8d srgb r g b / 0.5);\n}\n.bg-olive-500\\/55{\nbackground-color: color(from #769b8d srgb r g b / 0.55);\n}\n.bg-olive-500\\/60{\nbackground-color: color(from #769b8d srgb r g b / 0.6);\n}\n.bg-olive-500\\/65{\nbackground-color: color(from #769b8d srgb r g b / 0.65);\n}\n.bg-olive-500\\/70{\nbackground-color: color(from #769b8d srgb r g b / 0.7);\n}\n.bg-olive-500\\/75{\nbackground-color: color(from #769b8d srgb r g b / 0.75);\n}\n.bg-olive-500\\/80{\nbackground-color: color(from #769b8d srgb r g b / 0.8);\n}\n.bg-olive-500\\/85{\nbackground-color: color(from #769b8d srgb r g b / 0.85);\n}\n.bg-olive-500\\/90{\nbackground-color: color(from #769b8d srgb r g b / 0.9);\n}\n.bg-olive-500\\/95{\nbackground-color: color(from #769b8d srgb r g b / 0.95);\n}\n.bg-olive-600{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-olive-600\\/0{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-olive-600\\/10{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-olive-600\\/100{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-olive-600\\/15{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-olive-600\\/20{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-olive-600\\/25{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-olive-600\\/30{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-olive-600\\/35{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-olive-600\\/40{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-olive-600\\/45{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-olive-600\\/5{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-olive-600\\/50{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-olive-600\\/55{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-olive-600\\/60{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-olive-600\\/65{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-olive-600\\/70{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-olive-600\\/75{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-olive-600\\/80{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-olive-600\\/85{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-olive-600\\/90{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-olive-600\\/95{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-olive-700{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / var(--tw-bg-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-olive-700\\/0{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-olive-700\\/10{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-olive-700\\/100{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-olive-700\\/15{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-olive-700\\/20{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-olive-700\\/25{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-olive-700\\/30{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-olive-700\\/35{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-olive-700\\/40{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-olive-700\\/45{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-olive-700\\/5{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-olive-700\\/50{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-olive-700\\/55{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-olive-700\\/60{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-olive-700\\/65{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-olive-700\\/70{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-olive-700\\/75{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-olive-700\\/80{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-olive-700\\/85{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-olive-700\\/90{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-olive-700\\/95{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-olive-800{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-olive-800\\/0{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-olive-800\\/10{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-olive-800\\/100{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-olive-800\\/15{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-olive-800\\/20{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-olive-800\\/25{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-olive-800\\/30{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-olive-800\\/35{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-olive-800\\/40{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-olive-800\\/45{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-olive-800\\/5{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-olive-800\\/50{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-olive-800\\/55{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-olive-800\\/60{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-olive-800\\/65{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-olive-800\\/70{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-olive-800\\/75{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-olive-800\\/80{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-olive-800\\/85{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-olive-800\\/90{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-olive-800\\/95{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-olive-900{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-olive-900\\/0{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-olive-900\\/10{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-olive-900\\/100{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-olive-900\\/15{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-olive-900\\/20{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-olive-900\\/25{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-olive-900\\/30{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-olive-900\\/35{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-olive-900\\/40{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-olive-900\\/45{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-olive-900\\/5{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-olive-900\\/50{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-olive-900\\/55{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-olive-900\\/60{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-olive-900\\/65{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-olive-900\\/70{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-olive-900\\/75{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-olive-900\\/80{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-olive-900\\/85{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-olive-900\\/90{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-olive-900\\/95{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-olive-950{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / var(--tw-bg-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-olive-950\\/0{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-olive-950\\/10{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-olive-950\\/100{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-olive-950\\/15{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-olive-950\\/20{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-olive-950\\/25{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-olive-950\\/30{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-olive-950\\/35{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-olive-950\\/40{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-olive-950\\/45{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-olive-950\\/5{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-olive-950\\/50{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-olive-950\\/55{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-olive-950\\/60{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-olive-950\\/65{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-olive-950\\/70{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-olive-950\\/75{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-olive-950\\/80{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-olive-950\\/85{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-olive-950\\/90{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-olive-950\\/95{\nbackground-color: color-mix(in lab, color(from #769b8d srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-olive\\/0{\nbackground-color: rgb(118 155 141 / 0);\n}\n.bg-olive\\/10{\nbackground-color: rgb(118 155 141 / 0.1);\n}\n.bg-olive\\/100{\nbackground-color: rgb(118 155 141 / 1);\n}\n.bg-olive\\/15{\nbackground-color: rgb(118 155 141 / 0.15);\n}\n.bg-olive\\/20{\nbackground-color: rgb(118 155 141 / 0.2);\n}\n.bg-olive\\/25{\nbackground-color: rgb(118 155 141 / 0.25);\n}\n.bg-olive\\/30{\nbackground-color: rgb(118 155 141 / 0.3);\n}\n.bg-olive\\/35{\nbackground-color: rgb(118 155 141 / 0.35);\n}\n.bg-olive\\/40{\nbackground-color: rgb(118 155 141 / 0.4);\n}\n.bg-olive\\/45{\nbackground-color: rgb(118 155 141 / 0.45);\n}\n.bg-olive\\/5{\nbackground-color: rgb(118 155 141 / 0.05);\n}\n.bg-olive\\/50{\nbackground-color: rgb(118 155 141 / 0.5);\n}\n.bg-olive\\/55{\nbackground-color: rgb(118 155 141 / 0.55);\n}\n.bg-olive\\/60{\nbackground-color: rgb(118 155 141 / 0.6);\n}\n.bg-olive\\/65{\nbackground-color: rgb(118 155 141 / 0.65);\n}\n.bg-olive\\/70{\nbackground-color: rgb(118 155 141 / 0.7);\n}\n.bg-olive\\/75{\nbackground-color: rgb(118 155 141 / 0.75);\n}\n.bg-olive\\/80{\nbackground-color: rgb(118 155 141 / 0.8);\n}\n.bg-olive\\/85{\nbackground-color: rgb(118 155 141 / 0.85);\n}\n.bg-olive\\/90{\nbackground-color: rgb(118 155 141 / 0.9);\n}\n.bg-olive\\/95{\nbackground-color: rgb(118 155 141 / 0.95);\n}\n.bg-primary{\nbackground-color: var(--primary);\n}\n.bg-primary-100{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-primary-100\\/0{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-primary-100\\/10{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-primary-100\\/100{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-primary-100\\/15{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-primary-100\\/20{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-primary-100\\/25{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-primary-100\\/30{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-primary-100\\/35{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-primary-100\\/40{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-primary-100\\/45{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-primary-100\\/5{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-primary-100\\/50{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-primary-100\\/55{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-primary-100\\/60{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-primary-100\\/65{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-primary-100\\/70{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-primary-100\\/75{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-primary-100\\/80{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-primary-100\\/85{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-primary-100\\/90{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-primary-100\\/95{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-primary-200{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-primary-200\\/0{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-primary-200\\/10{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-primary-200\\/100{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-primary-200\\/15{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-primary-200\\/20{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-primary-200\\/25{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-primary-200\\/30{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-primary-200\\/35{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-primary-200\\/40{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-primary-200\\/45{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-primary-200\\/5{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-primary-200\\/50{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-primary-200\\/55{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-primary-200\\/60{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-primary-200\\/65{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-primary-200\\/70{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-primary-200\\/75{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-primary-200\\/80{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-primary-200\\/85{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-primary-200\\/90{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-primary-200\\/95{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-primary-300{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-bg-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-primary-300\\/0{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-primary-300\\/10{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-primary-300\\/100{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-primary-300\\/15{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-primary-300\\/20{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-primary-300\\/25{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-primary-300\\/30{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-primary-300\\/35{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-primary-300\\/40{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-primary-300\\/45{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-primary-300\\/5{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-primary-300\\/50{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-primary-300\\/55{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-primary-300\\/60{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-primary-300\\/65{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-primary-300\\/70{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-primary-300\\/75{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-primary-300\\/80{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-primary-300\\/85{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-primary-300\\/90{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-primary-300\\/95{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-primary-400{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-primary-400\\/0{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-primary-400\\/10{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-primary-400\\/100{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-primary-400\\/15{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-primary-400\\/20{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-primary-400\\/25{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-primary-400\\/30{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-primary-400\\/35{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-primary-400\\/40{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-primary-400\\/45{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-primary-400\\/5{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-primary-400\\/50{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-primary-400\\/55{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-primary-400\\/60{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-primary-400\\/65{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-primary-400\\/70{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-primary-400\\/75{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-primary-400\\/80{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-primary-400\\/85{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-primary-400\\/90{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-primary-400\\/95{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-primary-50{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-bg-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-primary-50\\/0{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-primary-50\\/10{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-primary-50\\/100{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-primary-50\\/15{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-primary-50\\/20{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-primary-50\\/25{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-primary-50\\/30{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-primary-50\\/35{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-primary-50\\/40{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-primary-50\\/45{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-primary-50\\/5{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-primary-50\\/50{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-primary-50\\/55{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-primary-50\\/60{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-primary-50\\/65{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-primary-50\\/70{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-primary-50\\/75{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-primary-50\\/80{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-primary-50\\/85{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-primary-50\\/90{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-primary-50\\/95{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-primary-500{\n--tw-bg-opacity: 1;\nbackground-color: color(from var(--primary) srgb r g b / var(--tw-bg-opacity));\n}\n.bg-primary-500\\/0{\nbackground-color: color(from var(--primary) srgb r g b / 0);\n}\n.bg-primary-500\\/10{\nbackground-color: color(from var(--primary) srgb r g b / 0.1);\n}\n.bg-primary-500\\/100{\nbackground-color: color(from var(--primary) srgb r g b / 1);\n}\n.bg-primary-500\\/15{\nbackground-color: color(from var(--primary) srgb r g b / 0.15);\n}\n.bg-primary-500\\/20{\nbackground-color: color(from var(--primary) srgb r g b / 0.2);\n}\n.bg-primary-500\\/25{\nbackground-color: color(from var(--primary) srgb r g b / 0.25);\n}\n.bg-primary-500\\/30{\nbackground-color: color(from var(--primary) srgb r g b / 0.3);\n}\n.bg-primary-500\\/35{\nbackground-color: color(from var(--primary) srgb r g b / 0.35);\n}\n.bg-primary-500\\/40{\nbackground-color: color(from var(--primary) srgb r g b / 0.4);\n}\n.bg-primary-500\\/45{\nbackground-color: color(from var(--primary) srgb r g b / 0.45);\n}\n.bg-primary-500\\/5{\nbackground-color: color(from var(--primary) srgb r g b / 0.05);\n}\n.bg-primary-500\\/50{\nbackground-color: color(from var(--primary) srgb r g b / 0.5);\n}\n.bg-primary-500\\/55{\nbackground-color: color(from var(--primary) srgb r g b / 0.55);\n}\n.bg-primary-500\\/60{\nbackground-color: color(from var(--primary) srgb r g b / 0.6);\n}\n.bg-primary-500\\/65{\nbackground-color: color(from var(--primary) srgb r g b / 0.65);\n}\n.bg-primary-500\\/70{\nbackground-color: color(from var(--primary) srgb r g b / 0.7);\n}\n.bg-primary-500\\/75{\nbackground-color: color(from var(--primary) srgb r g b / 0.75);\n}\n.bg-primary-500\\/80{\nbackground-color: color(from var(--primary) srgb r g b / 0.8);\n}\n.bg-primary-500\\/85{\nbackground-color: color(from var(--primary) srgb r g b / 0.85);\n}\n.bg-primary-500\\/90{\nbackground-color: color(from var(--primary) srgb r g b / 0.9);\n}\n.bg-primary-500\\/95{\nbackground-color: color(from var(--primary) srgb r g b / 0.95);\n}\n.bg-primary-600{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-primary-600\\/0{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-primary-600\\/10{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-primary-600\\/100{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-primary-600\\/15{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-primary-600\\/20{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-primary-600\\/25{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-primary-600\\/30{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-primary-600\\/35{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-primary-600\\/40{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-primary-600\\/45{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-primary-600\\/5{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-primary-600\\/50{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-primary-600\\/55{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-primary-600\\/60{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-primary-600\\/65{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-primary-600\\/70{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-primary-600\\/75{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-primary-600\\/80{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-primary-600\\/85{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-primary-600\\/90{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-primary-600\\/95{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-primary-700{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-bg-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-primary-700\\/0{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-primary-700\\/10{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-primary-700\\/100{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-primary-700\\/15{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-primary-700\\/20{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-primary-700\\/25{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-primary-700\\/30{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-primary-700\\/35{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-primary-700\\/40{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-primary-700\\/45{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-primary-700\\/5{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-primary-700\\/50{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-primary-700\\/55{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-primary-700\\/60{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-primary-700\\/65{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-primary-700\\/70{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-primary-700\\/75{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-primary-700\\/80{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-primary-700\\/85{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-primary-700\\/90{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-primary-700\\/95{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-primary-800{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-primary-800\\/0{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-primary-800\\/10{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-primary-800\\/100{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-primary-800\\/15{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-primary-800\\/20{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-primary-800\\/25{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-primary-800\\/30{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-primary-800\\/35{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-primary-800\\/40{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-primary-800\\/45{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-primary-800\\/5{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-primary-800\\/50{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-primary-800\\/55{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-primary-800\\/60{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-primary-800\\/65{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-primary-800\\/70{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-primary-800\\/75{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-primary-800\\/80{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-primary-800\\/85{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-primary-800\\/90{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-primary-800\\/95{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-primary-900{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-primary-900\\/0{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-primary-900\\/10{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-primary-900\\/100{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-primary-900\\/15{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-primary-900\\/20{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-primary-900\\/25{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-primary-900\\/30{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-primary-900\\/35{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-primary-900\\/40{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-primary-900\\/45{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-primary-900\\/5{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-primary-900\\/50{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-primary-900\\/55{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-primary-900\\/60{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-primary-900\\/65{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-primary-900\\/70{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-primary-900\\/75{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-primary-900\\/80{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-primary-900\\/85{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-primary-900\\/90{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-primary-900\\/95{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-primary-950{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-bg-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-primary-950\\/0{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-primary-950\\/10{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-primary-950\\/100{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-primary-950\\/15{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-primary-950\\/20{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-primary-950\\/25{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-primary-950\\/30{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-primary-950\\/35{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-primary-950\\/40{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-primary-950\\/45{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-primary-950\\/5{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-primary-950\\/50{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-primary-950\\/55{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-primary-950\\/60{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-primary-950\\/65{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-primary-950\\/70{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-primary-950\\/75{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-primary-950\\/80{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-primary-950\\/85{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-primary-950\\/90{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-primary-950\\/95{\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-pumpkin{\n--tw-bg-opacity: 1;\nbackground-color: rgb(247 106 21 / var(--tw-bg-opacity));\n}\n.bg-pumpkin-100{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-pumpkin-100\\/0{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-pumpkin-100\\/10{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-pumpkin-100\\/100{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-pumpkin-100\\/15{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-pumpkin-100\\/20{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-pumpkin-100\\/25{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-pumpkin-100\\/30{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-pumpkin-100\\/35{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-pumpkin-100\\/40{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-pumpkin-100\\/45{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-pumpkin-100\\/5{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-pumpkin-100\\/50{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-pumpkin-100\\/55{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-pumpkin-100\\/60{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-pumpkin-100\\/65{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-pumpkin-100\\/70{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-pumpkin-100\\/75{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-pumpkin-100\\/80{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-pumpkin-100\\/85{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-pumpkin-100\\/90{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-pumpkin-100\\/95{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-pumpkin-200{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-pumpkin-200\\/0{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-pumpkin-200\\/10{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-pumpkin-200\\/100{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-pumpkin-200\\/15{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-pumpkin-200\\/20{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-pumpkin-200\\/25{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-pumpkin-200\\/30{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-pumpkin-200\\/35{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-pumpkin-200\\/40{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-pumpkin-200\\/45{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-pumpkin-200\\/5{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-pumpkin-200\\/50{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-pumpkin-200\\/55{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-pumpkin-200\\/60{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-pumpkin-200\\/65{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-pumpkin-200\\/70{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-pumpkin-200\\/75{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-pumpkin-200\\/80{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-pumpkin-200\\/85{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-pumpkin-200\\/90{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-pumpkin-200\\/95{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-pumpkin-300{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / var(--tw-bg-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-pumpkin-300\\/0{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-pumpkin-300\\/10{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-pumpkin-300\\/100{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-pumpkin-300\\/15{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-pumpkin-300\\/20{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-pumpkin-300\\/25{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-pumpkin-300\\/30{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-pumpkin-300\\/35{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-pumpkin-300\\/40{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-pumpkin-300\\/45{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-pumpkin-300\\/5{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-pumpkin-300\\/50{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-pumpkin-300\\/55{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-pumpkin-300\\/60{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-pumpkin-300\\/65{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-pumpkin-300\\/70{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-pumpkin-300\\/75{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-pumpkin-300\\/80{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-pumpkin-300\\/85{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-pumpkin-300\\/90{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-pumpkin-300\\/95{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-pumpkin-400{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-pumpkin-400\\/0{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-pumpkin-400\\/10{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-pumpkin-400\\/100{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-pumpkin-400\\/15{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-pumpkin-400\\/20{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-pumpkin-400\\/25{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-pumpkin-400\\/30{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-pumpkin-400\\/35{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-pumpkin-400\\/40{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-pumpkin-400\\/45{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-pumpkin-400\\/5{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-pumpkin-400\\/50{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-pumpkin-400\\/55{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-pumpkin-400\\/60{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-pumpkin-400\\/65{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-pumpkin-400\\/70{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-pumpkin-400\\/75{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-pumpkin-400\\/80{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-pumpkin-400\\/85{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-pumpkin-400\\/90{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-pumpkin-400\\/95{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-pumpkin-50{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / var(--tw-bg-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-pumpkin-50\\/0{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-pumpkin-50\\/10{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-pumpkin-50\\/100{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-pumpkin-50\\/15{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-pumpkin-50\\/20{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-pumpkin-50\\/25{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-pumpkin-50\\/30{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-pumpkin-50\\/35{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-pumpkin-50\\/40{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-pumpkin-50\\/45{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-pumpkin-50\\/5{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-pumpkin-50\\/50{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-pumpkin-50\\/55{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-pumpkin-50\\/60{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-pumpkin-50\\/65{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-pumpkin-50\\/70{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-pumpkin-50\\/75{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-pumpkin-50\\/80{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-pumpkin-50\\/85{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-pumpkin-50\\/90{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-pumpkin-50\\/95{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-pumpkin-500{\n--tw-bg-opacity: 1;\nbackground-color: color(from #f76a15 srgb r g b / var(--tw-bg-opacity));\n}\n.bg-pumpkin-500\\/0{\nbackground-color: color(from #f76a15 srgb r g b / 0);\n}\n.bg-pumpkin-500\\/10{\nbackground-color: color(from #f76a15 srgb r g b / 0.1);\n}\n.bg-pumpkin-500\\/100{\nbackground-color: color(from #f76a15 srgb r g b / 1);\n}\n.bg-pumpkin-500\\/15{\nbackground-color: color(from #f76a15 srgb r g b / 0.15);\n}\n.bg-pumpkin-500\\/20{\nbackground-color: color(from #f76a15 srgb r g b / 0.2);\n}\n.bg-pumpkin-500\\/25{\nbackground-color: color(from #f76a15 srgb r g b / 0.25);\n}\n.bg-pumpkin-500\\/30{\nbackground-color: color(from #f76a15 srgb r g b / 0.3);\n}\n.bg-pumpkin-500\\/35{\nbackground-color: color(from #f76a15 srgb r g b / 0.35);\n}\n.bg-pumpkin-500\\/40{\nbackground-color: color(from #f76a15 srgb r g b / 0.4);\n}\n.bg-pumpkin-500\\/45{\nbackground-color: color(from #f76a15 srgb r g b / 0.45);\n}\n.bg-pumpkin-500\\/5{\nbackground-color: color(from #f76a15 srgb r g b / 0.05);\n}\n.bg-pumpkin-500\\/50{\nbackground-color: color(from #f76a15 srgb r g b / 0.5);\n}\n.bg-pumpkin-500\\/55{\nbackground-color: color(from #f76a15 srgb r g b / 0.55);\n}\n.bg-pumpkin-500\\/60{\nbackground-color: color(from #f76a15 srgb r g b / 0.6);\n}\n.bg-pumpkin-500\\/65{\nbackground-color: color(from #f76a15 srgb r g b / 0.65);\n}\n.bg-pumpkin-500\\/70{\nbackground-color: color(from #f76a15 srgb r g b / 0.7);\n}\n.bg-pumpkin-500\\/75{\nbackground-color: color(from #f76a15 srgb r g b / 0.75);\n}\n.bg-pumpkin-500\\/80{\nbackground-color: color(from #f76a15 srgb r g b / 0.8);\n}\n.bg-pumpkin-500\\/85{\nbackground-color: color(from #f76a15 srgb r g b / 0.85);\n}\n.bg-pumpkin-500\\/90{\nbackground-color: color(from #f76a15 srgb r g b / 0.9);\n}\n.bg-pumpkin-500\\/95{\nbackground-color: color(from #f76a15 srgb r g b / 0.95);\n}\n.bg-pumpkin-600{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-pumpkin-600\\/0{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-pumpkin-600\\/10{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-pumpkin-600\\/100{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-pumpkin-600\\/15{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-pumpkin-600\\/20{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-pumpkin-600\\/25{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-pumpkin-600\\/30{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-pumpkin-600\\/35{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-pumpkin-600\\/40{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-pumpkin-600\\/45{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-pumpkin-600\\/5{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-pumpkin-600\\/50{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-pumpkin-600\\/55{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-pumpkin-600\\/60{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-pumpkin-600\\/65{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-pumpkin-600\\/70{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-pumpkin-600\\/75{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-pumpkin-600\\/80{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-pumpkin-600\\/85{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-pumpkin-600\\/90{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-pumpkin-600\\/95{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-pumpkin-700{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / var(--tw-bg-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-pumpkin-700\\/0{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-pumpkin-700\\/10{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-pumpkin-700\\/100{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-pumpkin-700\\/15{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-pumpkin-700\\/20{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-pumpkin-700\\/25{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-pumpkin-700\\/30{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-pumpkin-700\\/35{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-pumpkin-700\\/40{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-pumpkin-700\\/45{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-pumpkin-700\\/5{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-pumpkin-700\\/50{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-pumpkin-700\\/55{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-pumpkin-700\\/60{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-pumpkin-700\\/65{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-pumpkin-700\\/70{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-pumpkin-700\\/75{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-pumpkin-700\\/80{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-pumpkin-700\\/85{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-pumpkin-700\\/90{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-pumpkin-700\\/95{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-pumpkin-800{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-pumpkin-800\\/0{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-pumpkin-800\\/10{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-pumpkin-800\\/100{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-pumpkin-800\\/15{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-pumpkin-800\\/20{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-pumpkin-800\\/25{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-pumpkin-800\\/30{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-pumpkin-800\\/35{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-pumpkin-800\\/40{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-pumpkin-800\\/45{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-pumpkin-800\\/5{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-pumpkin-800\\/50{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-pumpkin-800\\/55{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-pumpkin-800\\/60{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-pumpkin-800\\/65{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-pumpkin-800\\/70{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-pumpkin-800\\/75{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-pumpkin-800\\/80{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-pumpkin-800\\/85{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-pumpkin-800\\/90{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-pumpkin-800\\/95{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-pumpkin-900{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-pumpkin-900\\/0{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-pumpkin-900\\/10{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-pumpkin-900\\/100{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-pumpkin-900\\/15{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-pumpkin-900\\/20{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-pumpkin-900\\/25{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-pumpkin-900\\/30{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-pumpkin-900\\/35{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-pumpkin-900\\/40{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-pumpkin-900\\/45{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-pumpkin-900\\/5{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-pumpkin-900\\/50{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-pumpkin-900\\/55{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-pumpkin-900\\/60{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-pumpkin-900\\/65{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-pumpkin-900\\/70{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-pumpkin-900\\/75{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-pumpkin-900\\/80{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-pumpkin-900\\/85{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-pumpkin-900\\/90{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-pumpkin-900\\/95{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-pumpkin-950{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / var(--tw-bg-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-pumpkin-950\\/0{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-pumpkin-950\\/10{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-pumpkin-950\\/100{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-pumpkin-950\\/15{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-pumpkin-950\\/20{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-pumpkin-950\\/25{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-pumpkin-950\\/30{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-pumpkin-950\\/35{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-pumpkin-950\\/40{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-pumpkin-950\\/45{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-pumpkin-950\\/5{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-pumpkin-950\\/50{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-pumpkin-950\\/55{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-pumpkin-950\\/60{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-pumpkin-950\\/65{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-pumpkin-950\\/70{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-pumpkin-950\\/75{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-pumpkin-950\\/80{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-pumpkin-950\\/85{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-pumpkin-950\\/90{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-pumpkin-950\\/95{\nbackground-color: color-mix(in lab, color(from #f76a15 srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-pumpkin\\/0{\nbackground-color: rgb(247 106 21 / 0);\n}\n.bg-pumpkin\\/10{\nbackground-color: rgb(247 106 21 / 0.1);\n}\n.bg-pumpkin\\/100{\nbackground-color: rgb(247 106 21 / 1);\n}\n.bg-pumpkin\\/15{\nbackground-color: rgb(247 106 21 / 0.15);\n}\n.bg-pumpkin\\/20{\nbackground-color: rgb(247 106 21 / 0.2);\n}\n.bg-pumpkin\\/25{\nbackground-color: rgb(247 106 21 / 0.25);\n}\n.bg-pumpkin\\/30{\nbackground-color: rgb(247 106 21 / 0.3);\n}\n.bg-pumpkin\\/35{\nbackground-color: rgb(247 106 21 / 0.35);\n}\n.bg-pumpkin\\/40{\nbackground-color: rgb(247 106 21 / 0.4);\n}\n.bg-pumpkin\\/45{\nbackground-color: rgb(247 106 21 / 0.45);\n}\n.bg-pumpkin\\/5{\nbackground-color: rgb(247 106 21 / 0.05);\n}\n.bg-pumpkin\\/50{\nbackground-color: rgb(247 106 21 / 0.5);\n}\n.bg-pumpkin\\/55{\nbackground-color: rgb(247 106 21 / 0.55);\n}\n.bg-pumpkin\\/60{\nbackground-color: rgb(247 106 21 / 0.6);\n}\n.bg-pumpkin\\/65{\nbackground-color: rgb(247 106 21 / 0.65);\n}\n.bg-pumpkin\\/70{\nbackground-color: rgb(247 106 21 / 0.7);\n}\n.bg-pumpkin\\/75{\nbackground-color: rgb(247 106 21 / 0.75);\n}\n.bg-pumpkin\\/80{\nbackground-color: rgb(247 106 21 / 0.8);\n}\n.bg-pumpkin\\/85{\nbackground-color: rgb(247 106 21 / 0.85);\n}\n.bg-pumpkin\\/90{\nbackground-color: rgb(247 106 21 / 0.9);\n}\n.bg-pumpkin\\/95{\nbackground-color: rgb(247 106 21 / 0.95);\n}\n.bg-sand{\n--tw-bg-opacity: 1;\nbackground-color: rgb(155 151 137 / var(--tw-bg-opacity));\n}\n.bg-sand-100{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-sand-100\\/0{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-sand-100\\/10{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-sand-100\\/100{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-sand-100\\/15{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-sand-100\\/20{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-sand-100\\/25{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-sand-100\\/30{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-sand-100\\/35{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-sand-100\\/40{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-sand-100\\/45{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-sand-100\\/5{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-sand-100\\/50{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-sand-100\\/55{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-sand-100\\/60{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-sand-100\\/65{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-sand-100\\/70{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-sand-100\\/75{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-sand-100\\/80{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-sand-100\\/85{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-sand-100\\/90{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-sand-100\\/95{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-sand-200{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-sand-200\\/0{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-sand-200\\/10{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-sand-200\\/100{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-sand-200\\/15{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-sand-200\\/20{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-sand-200\\/25{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-sand-200\\/30{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-sand-200\\/35{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-sand-200\\/40{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-sand-200\\/45{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-sand-200\\/5{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-sand-200\\/50{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-sand-200\\/55{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-sand-200\\/60{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-sand-200\\/65{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-sand-200\\/70{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-sand-200\\/75{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-sand-200\\/80{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-sand-200\\/85{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-sand-200\\/90{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-sand-200\\/95{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-sand-300{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / var(--tw-bg-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-sand-300\\/0{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-sand-300\\/10{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-sand-300\\/100{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-sand-300\\/15{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-sand-300\\/20{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-sand-300\\/25{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-sand-300\\/30{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-sand-300\\/35{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-sand-300\\/40{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-sand-300\\/45{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-sand-300\\/5{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-sand-300\\/50{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-sand-300\\/55{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-sand-300\\/60{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-sand-300\\/65{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-sand-300\\/70{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-sand-300\\/75{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-sand-300\\/80{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-sand-300\\/85{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-sand-300\\/90{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-sand-300\\/95{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-sand-400{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-sand-400\\/0{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-sand-400\\/10{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-sand-400\\/100{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-sand-400\\/15{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-sand-400\\/20{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-sand-400\\/25{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-sand-400\\/30{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-sand-400\\/35{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-sand-400\\/40{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-sand-400\\/45{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-sand-400\\/5{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-sand-400\\/50{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-sand-400\\/55{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-sand-400\\/60{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-sand-400\\/65{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-sand-400\\/70{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-sand-400\\/75{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-sand-400\\/80{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-sand-400\\/85{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-sand-400\\/90{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-sand-400\\/95{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-sand-50{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / var(--tw-bg-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-sand-50\\/0{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-sand-50\\/10{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-sand-50\\/100{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-sand-50\\/15{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-sand-50\\/20{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-sand-50\\/25{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-sand-50\\/30{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-sand-50\\/35{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-sand-50\\/40{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-sand-50\\/45{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-sand-50\\/5{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-sand-50\\/50{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-sand-50\\/55{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-sand-50\\/60{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-sand-50\\/65{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-sand-50\\/70{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-sand-50\\/75{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-sand-50\\/80{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-sand-50\\/85{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-sand-50\\/90{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-sand-50\\/95{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-sand-500{\n--tw-bg-opacity: 1;\nbackground-color: color(from #9b9789 srgb r g b / var(--tw-bg-opacity));\n}\n.bg-sand-500\\/0{\nbackground-color: color(from #9b9789 srgb r g b / 0);\n}\n.bg-sand-500\\/10{\nbackground-color: color(from #9b9789 srgb r g b / 0.1);\n}\n.bg-sand-500\\/100{\nbackground-color: color(from #9b9789 srgb r g b / 1);\n}\n.bg-sand-500\\/15{\nbackground-color: color(from #9b9789 srgb r g b / 0.15);\n}\n.bg-sand-500\\/20{\nbackground-color: color(from #9b9789 srgb r g b / 0.2);\n}\n.bg-sand-500\\/25{\nbackground-color: color(from #9b9789 srgb r g b / 0.25);\n}\n.bg-sand-500\\/30{\nbackground-color: color(from #9b9789 srgb r g b / 0.3);\n}\n.bg-sand-500\\/35{\nbackground-color: color(from #9b9789 srgb r g b / 0.35);\n}\n.bg-sand-500\\/40{\nbackground-color: color(from #9b9789 srgb r g b / 0.4);\n}\n.bg-sand-500\\/45{\nbackground-color: color(from #9b9789 srgb r g b / 0.45);\n}\n.bg-sand-500\\/5{\nbackground-color: color(from #9b9789 srgb r g b / 0.05);\n}\n.bg-sand-500\\/50{\nbackground-color: color(from #9b9789 srgb r g b / 0.5);\n}\n.bg-sand-500\\/55{\nbackground-color: color(from #9b9789 srgb r g b / 0.55);\n}\n.bg-sand-500\\/60{\nbackground-color: color(from #9b9789 srgb r g b / 0.6);\n}\n.bg-sand-500\\/65{\nbackground-color: color(from #9b9789 srgb r g b / 0.65);\n}\n.bg-sand-500\\/70{\nbackground-color: color(from #9b9789 srgb r g b / 0.7);\n}\n.bg-sand-500\\/75{\nbackground-color: color(from #9b9789 srgb r g b / 0.75);\n}\n.bg-sand-500\\/80{\nbackground-color: color(from #9b9789 srgb r g b / 0.8);\n}\n.bg-sand-500\\/85{\nbackground-color: color(from #9b9789 srgb r g b / 0.85);\n}\n.bg-sand-500\\/90{\nbackground-color: color(from #9b9789 srgb r g b / 0.9);\n}\n.bg-sand-500\\/95{\nbackground-color: color(from #9b9789 srgb r g b / 0.95);\n}\n.bg-sand-600{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-sand-600\\/0{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-sand-600\\/10{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-sand-600\\/100{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-sand-600\\/15{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-sand-600\\/20{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-sand-600\\/25{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-sand-600\\/30{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-sand-600\\/35{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-sand-600\\/40{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-sand-600\\/45{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-sand-600\\/5{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-sand-600\\/50{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-sand-600\\/55{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-sand-600\\/60{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-sand-600\\/65{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-sand-600\\/70{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-sand-600\\/75{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-sand-600\\/80{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-sand-600\\/85{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-sand-600\\/90{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-sand-600\\/95{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-sand-700{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / var(--tw-bg-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-sand-700\\/0{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-sand-700\\/10{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-sand-700\\/100{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-sand-700\\/15{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-sand-700\\/20{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-sand-700\\/25{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-sand-700\\/30{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-sand-700\\/35{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-sand-700\\/40{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-sand-700\\/45{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-sand-700\\/5{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-sand-700\\/50{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-sand-700\\/55{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-sand-700\\/60{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-sand-700\\/65{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-sand-700\\/70{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-sand-700\\/75{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-sand-700\\/80{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-sand-700\\/85{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-sand-700\\/90{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-sand-700\\/95{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-sand-800{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-sand-800\\/0{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-sand-800\\/10{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-sand-800\\/100{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-sand-800\\/15{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-sand-800\\/20{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-sand-800\\/25{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-sand-800\\/30{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-sand-800\\/35{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-sand-800\\/40{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-sand-800\\/45{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-sand-800\\/5{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-sand-800\\/50{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-sand-800\\/55{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-sand-800\\/60{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-sand-800\\/65{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-sand-800\\/70{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-sand-800\\/75{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-sand-800\\/80{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-sand-800\\/85{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-sand-800\\/90{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-sand-800\\/95{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-sand-900{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-sand-900\\/0{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-sand-900\\/10{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-sand-900\\/100{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-sand-900\\/15{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-sand-900\\/20{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-sand-900\\/25{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-sand-900\\/30{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-sand-900\\/35{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-sand-900\\/40{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-sand-900\\/45{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-sand-900\\/5{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-sand-900\\/50{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-sand-900\\/55{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-sand-900\\/60{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-sand-900\\/65{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-sand-900\\/70{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-sand-900\\/75{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-sand-900\\/80{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-sand-900\\/85{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-sand-900\\/90{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-sand-900\\/95{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-sand-950{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / var(--tw-bg-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-sand-950\\/0{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-sand-950\\/10{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-sand-950\\/100{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-sand-950\\/15{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-sand-950\\/20{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-sand-950\\/25{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-sand-950\\/30{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-sand-950\\/35{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-sand-950\\/40{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-sand-950\\/45{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-sand-950\\/5{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-sand-950\\/50{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-sand-950\\/55{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-sand-950\\/60{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-sand-950\\/65{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-sand-950\\/70{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-sand-950\\/75{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-sand-950\\/80{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-sand-950\\/85{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-sand-950\\/90{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-sand-950\\/95{\nbackground-color: color-mix(in lab, color(from #9b9789 srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-sand\\/0{\nbackground-color: rgb(155 151 137 / 0);\n}\n.bg-sand\\/10{\nbackground-color: rgb(155 151 137 / 0.1);\n}\n.bg-sand\\/100{\nbackground-color: rgb(155 151 137 / 1);\n}\n.bg-sand\\/15{\nbackground-color: rgb(155 151 137 / 0.15);\n}\n.bg-sand\\/20{\nbackground-color: rgb(155 151 137 / 0.2);\n}\n.bg-sand\\/25{\nbackground-color: rgb(155 151 137 / 0.25);\n}\n.bg-sand\\/30{\nbackground-color: rgb(155 151 137 / 0.3);\n}\n.bg-sand\\/35{\nbackground-color: rgb(155 151 137 / 0.35);\n}\n.bg-sand\\/40{\nbackground-color: rgb(155 151 137 / 0.4);\n}\n.bg-sand\\/45{\nbackground-color: rgb(155 151 137 / 0.45);\n}\n.bg-sand\\/5{\nbackground-color: rgb(155 151 137 / 0.05);\n}\n.bg-sand\\/50{\nbackground-color: rgb(155 151 137 / 0.5);\n}\n.bg-sand\\/55{\nbackground-color: rgb(155 151 137 / 0.55);\n}\n.bg-sand\\/60{\nbackground-color: rgb(155 151 137 / 0.6);\n}\n.bg-sand\\/65{\nbackground-color: rgb(155 151 137 / 0.65);\n}\n.bg-sand\\/70{\nbackground-color: rgb(155 151 137 / 0.7);\n}\n.bg-sand\\/75{\nbackground-color: rgb(155 151 137 / 0.75);\n}\n.bg-sand\\/80{\nbackground-color: rgb(155 151 137 / 0.8);\n}\n.bg-sand\\/85{\nbackground-color: rgb(155 151 137 / 0.85);\n}\n.bg-sand\\/90{\nbackground-color: rgb(155 151 137 / 0.9);\n}\n.bg-sand\\/95{\nbackground-color: rgb(155 151 137 / 0.95);\n}\n.bg-scarlet{\n--tw-bg-opacity: 1;\nbackground-color: rgb(229 72 77 / var(--tw-bg-opacity));\n}\n.bg-scarlet-100{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-scarlet-100\\/0{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-scarlet-100\\/10{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-scarlet-100\\/100{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-scarlet-100\\/15{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-scarlet-100\\/20{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-scarlet-100\\/25{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-scarlet-100\\/30{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-scarlet-100\\/35{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-scarlet-100\\/40{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-scarlet-100\\/45{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-scarlet-100\\/5{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-scarlet-100\\/50{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-scarlet-100\\/55{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-scarlet-100\\/60{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-scarlet-100\\/65{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-scarlet-100\\/70{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-scarlet-100\\/75{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-scarlet-100\\/80{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-scarlet-100\\/85{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-scarlet-100\\/90{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-scarlet-100\\/95{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-scarlet-200{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-scarlet-200\\/0{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-scarlet-200\\/10{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-scarlet-200\\/100{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-scarlet-200\\/15{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-scarlet-200\\/20{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-scarlet-200\\/25{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-scarlet-200\\/30{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-scarlet-200\\/35{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-scarlet-200\\/40{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-scarlet-200\\/45{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-scarlet-200\\/5{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-scarlet-200\\/50{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-scarlet-200\\/55{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-scarlet-200\\/60{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-scarlet-200\\/65{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-scarlet-200\\/70{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-scarlet-200\\/75{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-scarlet-200\\/80{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-scarlet-200\\/85{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-scarlet-200\\/90{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-scarlet-200\\/95{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-scarlet-300{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / var(--tw-bg-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-scarlet-300\\/0{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-scarlet-300\\/10{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-scarlet-300\\/100{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-scarlet-300\\/15{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-scarlet-300\\/20{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-scarlet-300\\/25{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-scarlet-300\\/30{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-scarlet-300\\/35{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-scarlet-300\\/40{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-scarlet-300\\/45{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-scarlet-300\\/5{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-scarlet-300\\/50{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-scarlet-300\\/55{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-scarlet-300\\/60{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-scarlet-300\\/65{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-scarlet-300\\/70{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-scarlet-300\\/75{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-scarlet-300\\/80{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-scarlet-300\\/85{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-scarlet-300\\/90{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-scarlet-300\\/95{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-scarlet-400{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-scarlet-400\\/0{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-scarlet-400\\/10{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-scarlet-400\\/100{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-scarlet-400\\/15{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-scarlet-400\\/20{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-scarlet-400\\/25{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-scarlet-400\\/30{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-scarlet-400\\/35{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-scarlet-400\\/40{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-scarlet-400\\/45{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-scarlet-400\\/5{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-scarlet-400\\/50{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-scarlet-400\\/55{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-scarlet-400\\/60{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-scarlet-400\\/65{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-scarlet-400\\/70{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-scarlet-400\\/75{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-scarlet-400\\/80{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-scarlet-400\\/85{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-scarlet-400\\/90{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-scarlet-400\\/95{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-scarlet-50{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / var(--tw-bg-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-scarlet-50\\/0{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-scarlet-50\\/10{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-scarlet-50\\/100{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-scarlet-50\\/15{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-scarlet-50\\/20{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-scarlet-50\\/25{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-scarlet-50\\/30{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-scarlet-50\\/35{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-scarlet-50\\/40{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-scarlet-50\\/45{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-scarlet-50\\/5{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-scarlet-50\\/50{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-scarlet-50\\/55{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-scarlet-50\\/60{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-scarlet-50\\/65{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-scarlet-50\\/70{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-scarlet-50\\/75{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-scarlet-50\\/80{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-scarlet-50\\/85{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-scarlet-50\\/90{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-scarlet-50\\/95{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-scarlet-500{\n--tw-bg-opacity: 1;\nbackground-color: color(from #e5484d srgb r g b / var(--tw-bg-opacity));\n}\n.bg-scarlet-500\\/0{\nbackground-color: color(from #e5484d srgb r g b / 0);\n}\n.bg-scarlet-500\\/10{\nbackground-color: color(from #e5484d srgb r g b / 0.1);\n}\n.bg-scarlet-500\\/100{\nbackground-color: color(from #e5484d srgb r g b / 1);\n}\n.bg-scarlet-500\\/15{\nbackground-color: color(from #e5484d srgb r g b / 0.15);\n}\n.bg-scarlet-500\\/20{\nbackground-color: color(from #e5484d srgb r g b / 0.2);\n}\n.bg-scarlet-500\\/25{\nbackground-color: color(from #e5484d srgb r g b / 0.25);\n}\n.bg-scarlet-500\\/30{\nbackground-color: color(from #e5484d srgb r g b / 0.3);\n}\n.bg-scarlet-500\\/35{\nbackground-color: color(from #e5484d srgb r g b / 0.35);\n}\n.bg-scarlet-500\\/40{\nbackground-color: color(from #e5484d srgb r g b / 0.4);\n}\n.bg-scarlet-500\\/45{\nbackground-color: color(from #e5484d srgb r g b / 0.45);\n}\n.bg-scarlet-500\\/5{\nbackground-color: color(from #e5484d srgb r g b / 0.05);\n}\n.bg-scarlet-500\\/50{\nbackground-color: color(from #e5484d srgb r g b / 0.5);\n}\n.bg-scarlet-500\\/55{\nbackground-color: color(from #e5484d srgb r g b / 0.55);\n}\n.bg-scarlet-500\\/60{\nbackground-color: color(from #e5484d srgb r g b / 0.6);\n}\n.bg-scarlet-500\\/65{\nbackground-color: color(from #e5484d srgb r g b / 0.65);\n}\n.bg-scarlet-500\\/70{\nbackground-color: color(from #e5484d srgb r g b / 0.7);\n}\n.bg-scarlet-500\\/75{\nbackground-color: color(from #e5484d srgb r g b / 0.75);\n}\n.bg-scarlet-500\\/80{\nbackground-color: color(from #e5484d srgb r g b / 0.8);\n}\n.bg-scarlet-500\\/85{\nbackground-color: color(from #e5484d srgb r g b / 0.85);\n}\n.bg-scarlet-500\\/90{\nbackground-color: color(from #e5484d srgb r g b / 0.9);\n}\n.bg-scarlet-500\\/95{\nbackground-color: color(from #e5484d srgb r g b / 0.95);\n}\n.bg-scarlet-600{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-scarlet-600\\/0{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-scarlet-600\\/10{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-scarlet-600\\/100{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-scarlet-600\\/15{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-scarlet-600\\/20{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-scarlet-600\\/25{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-scarlet-600\\/30{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-scarlet-600\\/35{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-scarlet-600\\/40{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-scarlet-600\\/45{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-scarlet-600\\/5{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-scarlet-600\\/50{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-scarlet-600\\/55{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-scarlet-600\\/60{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-scarlet-600\\/65{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-scarlet-600\\/70{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-scarlet-600\\/75{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-scarlet-600\\/80{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-scarlet-600\\/85{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-scarlet-600\\/90{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-scarlet-600\\/95{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-scarlet-700{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / var(--tw-bg-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-scarlet-700\\/0{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-scarlet-700\\/10{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-scarlet-700\\/100{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-scarlet-700\\/15{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-scarlet-700\\/20{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-scarlet-700\\/25{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-scarlet-700\\/30{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-scarlet-700\\/35{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-scarlet-700\\/40{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-scarlet-700\\/45{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-scarlet-700\\/5{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-scarlet-700\\/50{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-scarlet-700\\/55{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-scarlet-700\\/60{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-scarlet-700\\/65{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-scarlet-700\\/70{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-scarlet-700\\/75{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-scarlet-700\\/80{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-scarlet-700\\/85{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-scarlet-700\\/90{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-scarlet-700\\/95{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-scarlet-800{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-scarlet-800\\/0{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-scarlet-800\\/10{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-scarlet-800\\/100{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-scarlet-800\\/15{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-scarlet-800\\/20{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-scarlet-800\\/25{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-scarlet-800\\/30{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-scarlet-800\\/35{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-scarlet-800\\/40{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-scarlet-800\\/45{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-scarlet-800\\/5{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-scarlet-800\\/50{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-scarlet-800\\/55{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-scarlet-800\\/60{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-scarlet-800\\/65{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-scarlet-800\\/70{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-scarlet-800\\/75{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-scarlet-800\\/80{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-scarlet-800\\/85{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-scarlet-800\\/90{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-scarlet-800\\/95{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-scarlet-900{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-scarlet-900\\/0{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-scarlet-900\\/10{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-scarlet-900\\/100{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-scarlet-900\\/15{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-scarlet-900\\/20{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-scarlet-900\\/25{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-scarlet-900\\/30{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-scarlet-900\\/35{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-scarlet-900\\/40{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-scarlet-900\\/45{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-scarlet-900\\/5{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-scarlet-900\\/50{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-scarlet-900\\/55{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-scarlet-900\\/60{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-scarlet-900\\/65{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-scarlet-900\\/70{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-scarlet-900\\/75{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-scarlet-900\\/80{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-scarlet-900\\/85{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-scarlet-900\\/90{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-scarlet-900\\/95{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-scarlet-950{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / var(--tw-bg-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-scarlet-950\\/0{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-scarlet-950\\/10{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-scarlet-950\\/100{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-scarlet-950\\/15{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-scarlet-950\\/20{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-scarlet-950\\/25{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-scarlet-950\\/30{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-scarlet-950\\/35{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-scarlet-950\\/40{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-scarlet-950\\/45{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-scarlet-950\\/5{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-scarlet-950\\/50{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-scarlet-950\\/55{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-scarlet-950\\/60{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-scarlet-950\\/65{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-scarlet-950\\/70{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-scarlet-950\\/75{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-scarlet-950\\/80{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-scarlet-950\\/85{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-scarlet-950\\/90{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-scarlet-950\\/95{\nbackground-color: color-mix(in lab, color(from #e5484d srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-scarlet\\/0{\nbackground-color: rgb(229 72 77 / 0);\n}\n.bg-scarlet\\/10{\nbackground-color: rgb(229 72 77 / 0.1);\n}\n.bg-scarlet\\/100{\nbackground-color: rgb(229 72 77 / 1);\n}\n.bg-scarlet\\/15{\nbackground-color: rgb(229 72 77 / 0.15);\n}\n.bg-scarlet\\/20{\nbackground-color: rgb(229 72 77 / 0.2);\n}\n.bg-scarlet\\/25{\nbackground-color: rgb(229 72 77 / 0.25);\n}\n.bg-scarlet\\/30{\nbackground-color: rgb(229 72 77 / 0.3);\n}\n.bg-scarlet\\/35{\nbackground-color: rgb(229 72 77 / 0.35);\n}\n.bg-scarlet\\/40{\nbackground-color: rgb(229 72 77 / 0.4);\n}\n.bg-scarlet\\/45{\nbackground-color: rgb(229 72 77 / 0.45);\n}\n.bg-scarlet\\/5{\nbackground-color: rgb(229 72 77 / 0.05);\n}\n.bg-scarlet\\/50{\nbackground-color: rgb(229 72 77 / 0.5);\n}\n.bg-scarlet\\/55{\nbackground-color: rgb(229 72 77 / 0.55);\n}\n.bg-scarlet\\/60{\nbackground-color: rgb(229 72 77 / 0.6);\n}\n.bg-scarlet\\/65{\nbackground-color: rgb(229 72 77 / 0.65);\n}\n.bg-scarlet\\/70{\nbackground-color: rgb(229 72 77 / 0.7);\n}\n.bg-scarlet\\/75{\nbackground-color: rgb(229 72 77 / 0.75);\n}\n.bg-scarlet\\/80{\nbackground-color: rgb(229 72 77 / 0.8);\n}\n.bg-scarlet\\/85{\nbackground-color: rgb(229 72 77 / 0.85);\n}\n.bg-scarlet\\/90{\nbackground-color: rgb(229 72 77 / 0.9);\n}\n.bg-scarlet\\/95{\nbackground-color: rgb(229 72 77 / 0.95);\n}\n.bg-silver{\n--tw-bg-opacity: 1;\nbackground-color: rgb(152 157 165 / var(--tw-bg-opacity));\n}\n.bg-silver-100{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-silver-100\\/0{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-silver-100\\/10{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-silver-100\\/100{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-silver-100\\/15{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-silver-100\\/20{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-silver-100\\/25{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-silver-100\\/30{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-silver-100\\/35{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-silver-100\\/40{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-silver-100\\/45{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-silver-100\\/5{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-silver-100\\/50{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-silver-100\\/55{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-silver-100\\/60{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-silver-100\\/65{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-silver-100\\/70{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-silver-100\\/75{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-silver-100\\/80{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-silver-100\\/85{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-silver-100\\/90{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-silver-100\\/95{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-silver-200{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-silver-200\\/0{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-silver-200\\/10{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-silver-200\\/100{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-silver-200\\/15{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-silver-200\\/20{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-silver-200\\/25{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-silver-200\\/30{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-silver-200\\/35{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-silver-200\\/40{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-silver-200\\/45{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-silver-200\\/5{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-silver-200\\/50{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-silver-200\\/55{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-silver-200\\/60{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-silver-200\\/65{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-silver-200\\/70{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-silver-200\\/75{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-silver-200\\/80{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-silver-200\\/85{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-silver-200\\/90{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-silver-200\\/95{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-silver-300{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / var(--tw-bg-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-silver-300\\/0{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-silver-300\\/10{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-silver-300\\/100{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-silver-300\\/15{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-silver-300\\/20{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-silver-300\\/25{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-silver-300\\/30{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-silver-300\\/35{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-silver-300\\/40{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-silver-300\\/45{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-silver-300\\/5{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-silver-300\\/50{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-silver-300\\/55{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-silver-300\\/60{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-silver-300\\/65{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-silver-300\\/70{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-silver-300\\/75{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-silver-300\\/80{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-silver-300\\/85{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-silver-300\\/90{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-silver-300\\/95{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-silver-400{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-silver-400\\/0{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-silver-400\\/10{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-silver-400\\/100{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-silver-400\\/15{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-silver-400\\/20{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-silver-400\\/25{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-silver-400\\/30{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-silver-400\\/35{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-silver-400\\/40{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-silver-400\\/45{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-silver-400\\/5{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-silver-400\\/50{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-silver-400\\/55{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-silver-400\\/60{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-silver-400\\/65{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-silver-400\\/70{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-silver-400\\/75{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-silver-400\\/80{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-silver-400\\/85{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-silver-400\\/90{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-silver-400\\/95{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-silver-50{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / var(--tw-bg-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-silver-50\\/0{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-silver-50\\/10{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-silver-50\\/100{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-silver-50\\/15{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-silver-50\\/20{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-silver-50\\/25{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-silver-50\\/30{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-silver-50\\/35{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-silver-50\\/40{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-silver-50\\/45{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-silver-50\\/5{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-silver-50\\/50{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-silver-50\\/55{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-silver-50\\/60{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-silver-50\\/65{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-silver-50\\/70{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-silver-50\\/75{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-silver-50\\/80{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-silver-50\\/85{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-silver-50\\/90{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-silver-50\\/95{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-silver-500{\n--tw-bg-opacity: 1;\nbackground-color: color(from #989da5 srgb r g b / var(--tw-bg-opacity));\n}\n.bg-silver-500\\/0{\nbackground-color: color(from #989da5 srgb r g b / 0);\n}\n.bg-silver-500\\/10{\nbackground-color: color(from #989da5 srgb r g b / 0.1);\n}\n.bg-silver-500\\/100{\nbackground-color: color(from #989da5 srgb r g b / 1);\n}\n.bg-silver-500\\/15{\nbackground-color: color(from #989da5 srgb r g b / 0.15);\n}\n.bg-silver-500\\/20{\nbackground-color: color(from #989da5 srgb r g b / 0.2);\n}\n.bg-silver-500\\/25{\nbackground-color: color(from #989da5 srgb r g b / 0.25);\n}\n.bg-silver-500\\/30{\nbackground-color: color(from #989da5 srgb r g b / 0.3);\n}\n.bg-silver-500\\/35{\nbackground-color: color(from #989da5 srgb r g b / 0.35);\n}\n.bg-silver-500\\/40{\nbackground-color: color(from #989da5 srgb r g b / 0.4);\n}\n.bg-silver-500\\/45{\nbackground-color: color(from #989da5 srgb r g b / 0.45);\n}\n.bg-silver-500\\/5{\nbackground-color: color(from #989da5 srgb r g b / 0.05);\n}\n.bg-silver-500\\/50{\nbackground-color: color(from #989da5 srgb r g b / 0.5);\n}\n.bg-silver-500\\/55{\nbackground-color: color(from #989da5 srgb r g b / 0.55);\n}\n.bg-silver-500\\/60{\nbackground-color: color(from #989da5 srgb r g b / 0.6);\n}\n.bg-silver-500\\/65{\nbackground-color: color(from #989da5 srgb r g b / 0.65);\n}\n.bg-silver-500\\/70{\nbackground-color: color(from #989da5 srgb r g b / 0.7);\n}\n.bg-silver-500\\/75{\nbackground-color: color(from #989da5 srgb r g b / 0.75);\n}\n.bg-silver-500\\/80{\nbackground-color: color(from #989da5 srgb r g b / 0.8);\n}\n.bg-silver-500\\/85{\nbackground-color: color(from #989da5 srgb r g b / 0.85);\n}\n.bg-silver-500\\/90{\nbackground-color: color(from #989da5 srgb r g b / 0.9);\n}\n.bg-silver-500\\/95{\nbackground-color: color(from #989da5 srgb r g b / 0.95);\n}\n.bg-silver-600{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-silver-600\\/0{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-silver-600\\/10{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-silver-600\\/100{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-silver-600\\/15{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-silver-600\\/20{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-silver-600\\/25{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-silver-600\\/30{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-silver-600\\/35{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-silver-600\\/40{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-silver-600\\/45{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-silver-600\\/5{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-silver-600\\/50{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-silver-600\\/55{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-silver-600\\/60{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-silver-600\\/65{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-silver-600\\/70{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-silver-600\\/75{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-silver-600\\/80{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-silver-600\\/85{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-silver-600\\/90{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-silver-600\\/95{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-silver-700{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / var(--tw-bg-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-silver-700\\/0{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-silver-700\\/10{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-silver-700\\/100{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-silver-700\\/15{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-silver-700\\/20{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-silver-700\\/25{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-silver-700\\/30{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-silver-700\\/35{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-silver-700\\/40{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-silver-700\\/45{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-silver-700\\/5{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-silver-700\\/50{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-silver-700\\/55{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-silver-700\\/60{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-silver-700\\/65{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-silver-700\\/70{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-silver-700\\/75{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-silver-700\\/80{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-silver-700\\/85{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-silver-700\\/90{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-silver-700\\/95{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-silver-800{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-silver-800\\/0{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-silver-800\\/10{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-silver-800\\/100{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-silver-800\\/15{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-silver-800\\/20{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-silver-800\\/25{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-silver-800\\/30{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-silver-800\\/35{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-silver-800\\/40{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-silver-800\\/45{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-silver-800\\/5{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-silver-800\\/50{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-silver-800\\/55{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-silver-800\\/60{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-silver-800\\/65{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-silver-800\\/70{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-silver-800\\/75{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-silver-800\\/80{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-silver-800\\/85{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-silver-800\\/90{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-silver-800\\/95{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-silver-900{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-silver-900\\/0{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-silver-900\\/10{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-silver-900\\/100{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-silver-900\\/15{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-silver-900\\/20{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-silver-900\\/25{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-silver-900\\/30{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-silver-900\\/35{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-silver-900\\/40{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-silver-900\\/45{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-silver-900\\/5{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-silver-900\\/50{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-silver-900\\/55{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-silver-900\\/60{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-silver-900\\/65{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-silver-900\\/70{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-silver-900\\/75{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-silver-900\\/80{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-silver-900\\/85{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-silver-900\\/90{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-silver-900\\/95{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-silver-950{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / var(--tw-bg-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-silver-950\\/0{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-silver-950\\/10{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-silver-950\\/100{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-silver-950\\/15{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-silver-950\\/20{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-silver-950\\/25{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-silver-950\\/30{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-silver-950\\/35{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-silver-950\\/40{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-silver-950\\/45{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-silver-950\\/5{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-silver-950\\/50{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-silver-950\\/55{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-silver-950\\/60{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-silver-950\\/65{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-silver-950\\/70{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-silver-950\\/75{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-silver-950\\/80{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-silver-950\\/85{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-silver-950\\/90{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-silver-950\\/95{\nbackground-color: color-mix(in lab, color(from #989da5 srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-silver\\/0{\nbackground-color: rgb(152 157 165 / 0);\n}\n.bg-silver\\/10{\nbackground-color: rgb(152 157 165 / 0.1);\n}\n.bg-silver\\/100{\nbackground-color: rgb(152 157 165 / 1);\n}\n.bg-silver\\/15{\nbackground-color: rgb(152 157 165 / 0.15);\n}\n.bg-silver\\/20{\nbackground-color: rgb(152 157 165 / 0.2);\n}\n.bg-silver\\/25{\nbackground-color: rgb(152 157 165 / 0.25);\n}\n.bg-silver\\/30{\nbackground-color: rgb(152 157 165 / 0.3);\n}\n.bg-silver\\/35{\nbackground-color: rgb(152 157 165 / 0.35);\n}\n.bg-silver\\/40{\nbackground-color: rgb(152 157 165 / 0.4);\n}\n.bg-silver\\/45{\nbackground-color: rgb(152 157 165 / 0.45);\n}\n.bg-silver\\/5{\nbackground-color: rgb(152 157 165 / 0.05);\n}\n.bg-silver\\/50{\nbackground-color: rgb(152 157 165 / 0.5);\n}\n.bg-silver\\/55{\nbackground-color: rgb(152 157 165 / 0.55);\n}\n.bg-silver\\/60{\nbackground-color: rgb(152 157 165 / 0.6);\n}\n.bg-silver\\/65{\nbackground-color: rgb(152 157 165 / 0.65);\n}\n.bg-silver\\/70{\nbackground-color: rgb(152 157 165 / 0.7);\n}\n.bg-silver\\/75{\nbackground-color: rgb(152 157 165 / 0.75);\n}\n.bg-silver\\/80{\nbackground-color: rgb(152 157 165 / 0.8);\n}\n.bg-silver\\/85{\nbackground-color: rgb(152 157 165 / 0.85);\n}\n.bg-silver\\/90{\nbackground-color: rgb(152 157 165 / 0.9);\n}\n.bg-silver\\/95{\nbackground-color: rgb(152 157 165 / 0.95);\n}\n.bg-steel{\n--tw-bg-opacity: 1;\nbackground-color: rgb(124 153 175 / var(--tw-bg-opacity));\n}\n.bg-steel-100{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-steel-100\\/0{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-steel-100\\/10{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-steel-100\\/100{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-steel-100\\/15{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-steel-100\\/20{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-steel-100\\/25{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-steel-100\\/30{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-steel-100\\/35{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-steel-100\\/40{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-steel-100\\/45{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-steel-100\\/5{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-steel-100\\/50{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-steel-100\\/55{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-steel-100\\/60{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-steel-100\\/65{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-steel-100\\/70{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-steel-100\\/75{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-steel-100\\/80{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-steel-100\\/85{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-steel-100\\/90{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-steel-100\\/95{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-steel-200{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-steel-200\\/0{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-steel-200\\/10{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-steel-200\\/100{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-steel-200\\/15{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-steel-200\\/20{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-steel-200\\/25{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-steel-200\\/30{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-steel-200\\/35{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-steel-200\\/40{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-steel-200\\/45{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-steel-200\\/5{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-steel-200\\/50{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-steel-200\\/55{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-steel-200\\/60{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-steel-200\\/65{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-steel-200\\/70{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-steel-200\\/75{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-steel-200\\/80{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-steel-200\\/85{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-steel-200\\/90{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-steel-200\\/95{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-steel-300{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / var(--tw-bg-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-steel-300\\/0{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-steel-300\\/10{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-steel-300\\/100{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-steel-300\\/15{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-steel-300\\/20{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-steel-300\\/25{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-steel-300\\/30{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-steel-300\\/35{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-steel-300\\/40{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-steel-300\\/45{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-steel-300\\/5{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-steel-300\\/50{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-steel-300\\/55{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-steel-300\\/60{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-steel-300\\/65{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-steel-300\\/70{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-steel-300\\/75{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-steel-300\\/80{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-steel-300\\/85{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-steel-300\\/90{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-steel-300\\/95{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-steel-400{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-steel-400\\/0{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-steel-400\\/10{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-steel-400\\/100{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-steel-400\\/15{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-steel-400\\/20{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-steel-400\\/25{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-steel-400\\/30{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-steel-400\\/35{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-steel-400\\/40{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-steel-400\\/45{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-steel-400\\/5{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-steel-400\\/50{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-steel-400\\/55{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-steel-400\\/60{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-steel-400\\/65{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-steel-400\\/70{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-steel-400\\/75{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-steel-400\\/80{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-steel-400\\/85{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-steel-400\\/90{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-steel-400\\/95{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-steel-50{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / var(--tw-bg-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-steel-50\\/0{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-steel-50\\/10{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-steel-50\\/100{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-steel-50\\/15{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-steel-50\\/20{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-steel-50\\/25{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-steel-50\\/30{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-steel-50\\/35{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-steel-50\\/40{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-steel-50\\/45{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-steel-50\\/5{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-steel-50\\/50{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-steel-50\\/55{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-steel-50\\/60{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-steel-50\\/65{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-steel-50\\/70{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-steel-50\\/75{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-steel-50\\/80{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-steel-50\\/85{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-steel-50\\/90{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-steel-50\\/95{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-steel-500{\n--tw-bg-opacity: 1;\nbackground-color: color(from #7c99af srgb r g b / var(--tw-bg-opacity));\n}\n.bg-steel-500\\/0{\nbackground-color: color(from #7c99af srgb r g b / 0);\n}\n.bg-steel-500\\/10{\nbackground-color: color(from #7c99af srgb r g b / 0.1);\n}\n.bg-steel-500\\/100{\nbackground-color: color(from #7c99af srgb r g b / 1);\n}\n.bg-steel-500\\/15{\nbackground-color: color(from #7c99af srgb r g b / 0.15);\n}\n.bg-steel-500\\/20{\nbackground-color: color(from #7c99af srgb r g b / 0.2);\n}\n.bg-steel-500\\/25{\nbackground-color: color(from #7c99af srgb r g b / 0.25);\n}\n.bg-steel-500\\/30{\nbackground-color: color(from #7c99af srgb r g b / 0.3);\n}\n.bg-steel-500\\/35{\nbackground-color: color(from #7c99af srgb r g b / 0.35);\n}\n.bg-steel-500\\/40{\nbackground-color: color(from #7c99af srgb r g b / 0.4);\n}\n.bg-steel-500\\/45{\nbackground-color: color(from #7c99af srgb r g b / 0.45);\n}\n.bg-steel-500\\/5{\nbackground-color: color(from #7c99af srgb r g b / 0.05);\n}\n.bg-steel-500\\/50{\nbackground-color: color(from #7c99af srgb r g b / 0.5);\n}\n.bg-steel-500\\/55{\nbackground-color: color(from #7c99af srgb r g b / 0.55);\n}\n.bg-steel-500\\/60{\nbackground-color: color(from #7c99af srgb r g b / 0.6);\n}\n.bg-steel-500\\/65{\nbackground-color: color(from #7c99af srgb r g b / 0.65);\n}\n.bg-steel-500\\/70{\nbackground-color: color(from #7c99af srgb r g b / 0.7);\n}\n.bg-steel-500\\/75{\nbackground-color: color(from #7c99af srgb r g b / 0.75);\n}\n.bg-steel-500\\/80{\nbackground-color: color(from #7c99af srgb r g b / 0.8);\n}\n.bg-steel-500\\/85{\nbackground-color: color(from #7c99af srgb r g b / 0.85);\n}\n.bg-steel-500\\/90{\nbackground-color: color(from #7c99af srgb r g b / 0.9);\n}\n.bg-steel-500\\/95{\nbackground-color: color(from #7c99af srgb r g b / 0.95);\n}\n.bg-steel-600{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-steel-600\\/0{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-steel-600\\/10{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-steel-600\\/100{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-steel-600\\/15{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-steel-600\\/20{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-steel-600\\/25{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-steel-600\\/30{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-steel-600\\/35{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-steel-600\\/40{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-steel-600\\/45{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-steel-600\\/5{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-steel-600\\/50{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-steel-600\\/55{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-steel-600\\/60{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-steel-600\\/65{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-steel-600\\/70{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-steel-600\\/75{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-steel-600\\/80{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-steel-600\\/85{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-steel-600\\/90{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-steel-600\\/95{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-steel-700{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / var(--tw-bg-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-steel-700\\/0{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-steel-700\\/10{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-steel-700\\/100{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-steel-700\\/15{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-steel-700\\/20{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-steel-700\\/25{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-steel-700\\/30{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-steel-700\\/35{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-steel-700\\/40{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-steel-700\\/45{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-steel-700\\/5{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-steel-700\\/50{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-steel-700\\/55{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-steel-700\\/60{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-steel-700\\/65{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-steel-700\\/70{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-steel-700\\/75{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-steel-700\\/80{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-steel-700\\/85{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-steel-700\\/90{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-steel-700\\/95{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-steel-800{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-steel-800\\/0{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-steel-800\\/10{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-steel-800\\/100{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-steel-800\\/15{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-steel-800\\/20{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-steel-800\\/25{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-steel-800\\/30{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-steel-800\\/35{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-steel-800\\/40{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-steel-800\\/45{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-steel-800\\/5{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-steel-800\\/50{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-steel-800\\/55{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-steel-800\\/60{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-steel-800\\/65{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-steel-800\\/70{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-steel-800\\/75{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-steel-800\\/80{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-steel-800\\/85{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-steel-800\\/90{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-steel-800\\/95{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-steel-900{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-steel-900\\/0{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-steel-900\\/10{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-steel-900\\/100{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-steel-900\\/15{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-steel-900\\/20{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-steel-900\\/25{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-steel-900\\/30{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-steel-900\\/35{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-steel-900\\/40{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-steel-900\\/45{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-steel-900\\/5{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-steel-900\\/50{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-steel-900\\/55{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-steel-900\\/60{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-steel-900\\/65{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-steel-900\\/70{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-steel-900\\/75{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-steel-900\\/80{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-steel-900\\/85{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-steel-900\\/90{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-steel-900\\/95{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-steel-950{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / var(--tw-bg-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-steel-950\\/0{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-steel-950\\/10{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-steel-950\\/100{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-steel-950\\/15{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-steel-950\\/20{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-steel-950\\/25{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-steel-950\\/30{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-steel-950\\/35{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-steel-950\\/40{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-steel-950\\/45{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-steel-950\\/5{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-steel-950\\/50{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-steel-950\\/55{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-steel-950\\/60{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-steel-950\\/65{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-steel-950\\/70{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-steel-950\\/75{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-steel-950\\/80{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-steel-950\\/85{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-steel-950\\/90{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-steel-950\\/95{\nbackground-color: color-mix(in lab, color(from #7c99af srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-steel\\/0{\nbackground-color: rgb(124 153 175 / 0);\n}\n.bg-steel\\/10{\nbackground-color: rgb(124 153 175 / 0.1);\n}\n.bg-steel\\/100{\nbackground-color: rgb(124 153 175 / 1);\n}\n.bg-steel\\/15{\nbackground-color: rgb(124 153 175 / 0.15);\n}\n.bg-steel\\/20{\nbackground-color: rgb(124 153 175 / 0.2);\n}\n.bg-steel\\/25{\nbackground-color: rgb(124 153 175 / 0.25);\n}\n.bg-steel\\/30{\nbackground-color: rgb(124 153 175 / 0.3);\n}\n.bg-steel\\/35{\nbackground-color: rgb(124 153 175 / 0.35);\n}\n.bg-steel\\/40{\nbackground-color: rgb(124 153 175 / 0.4);\n}\n.bg-steel\\/45{\nbackground-color: rgb(124 153 175 / 0.45);\n}\n.bg-steel\\/5{\nbackground-color: rgb(124 153 175 / 0.05);\n}\n.bg-steel\\/50{\nbackground-color: rgb(124 153 175 / 0.5);\n}\n.bg-steel\\/55{\nbackground-color: rgb(124 153 175 / 0.55);\n}\n.bg-steel\\/60{\nbackground-color: rgb(124 153 175 / 0.6);\n}\n.bg-steel\\/65{\nbackground-color: rgb(124 153 175 / 0.65);\n}\n.bg-steel\\/70{\nbackground-color: rgb(124 153 175 / 0.7);\n}\n.bg-steel\\/75{\nbackground-color: rgb(124 153 175 / 0.75);\n}\n.bg-steel\\/80{\nbackground-color: rgb(124 153 175 / 0.8);\n}\n.bg-steel\\/85{\nbackground-color: rgb(124 153 175 / 0.85);\n}\n.bg-steel\\/90{\nbackground-color: rgb(124 153 175 / 0.9);\n}\n.bg-steel\\/95{\nbackground-color: rgb(124 153 175 / 0.95);\n}\n.bg-success{\n--tw-bg-opacity: 1;\nbackground-color: rgb(68 188 105 / var(--tw-bg-opacity));\n}\n.bg-success-100{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-success-100\\/0{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-success-100\\/10{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-success-100\\/100{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-success-100\\/15{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-success-100\\/20{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-success-100\\/25{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-success-100\\/30{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-success-100\\/35{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-success-100\\/40{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-success-100\\/45{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-success-100\\/5{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-success-100\\/50{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-success-100\\/55{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-success-100\\/60{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-success-100\\/65{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-success-100\\/70{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-success-100\\/75{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-success-100\\/80{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-success-100\\/85{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-success-100\\/90{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-success-100\\/95{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-success-200{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-success-200\\/0{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-success-200\\/10{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-success-200\\/100{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-success-200\\/15{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-success-200\\/20{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-success-200\\/25{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-success-200\\/30{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-success-200\\/35{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-success-200\\/40{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-success-200\\/45{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-success-200\\/5{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-success-200\\/50{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-success-200\\/55{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-success-200\\/60{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-success-200\\/65{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-success-200\\/70{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-success-200\\/75{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-success-200\\/80{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-success-200\\/85{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-success-200\\/90{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-success-200\\/95{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-success-300{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / var(--tw-bg-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-success-300\\/0{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-success-300\\/10{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-success-300\\/100{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-success-300\\/15{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-success-300\\/20{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-success-300\\/25{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-success-300\\/30{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-success-300\\/35{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-success-300\\/40{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-success-300\\/45{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-success-300\\/5{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-success-300\\/50{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-success-300\\/55{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-success-300\\/60{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-success-300\\/65{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-success-300\\/70{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-success-300\\/75{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-success-300\\/80{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-success-300\\/85{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-success-300\\/90{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-success-300\\/95{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-success-400{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-success-400\\/0{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-success-400\\/10{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-success-400\\/100{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-success-400\\/15{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-success-400\\/20{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-success-400\\/25{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-success-400\\/30{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-success-400\\/35{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-success-400\\/40{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-success-400\\/45{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-success-400\\/5{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-success-400\\/50{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-success-400\\/55{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-success-400\\/60{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-success-400\\/65{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-success-400\\/70{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-success-400\\/75{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-success-400\\/80{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-success-400\\/85{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-success-400\\/90{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-success-400\\/95{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-success-50{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / var(--tw-bg-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-success-50\\/0{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-success-50\\/10{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-success-50\\/100{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-success-50\\/15{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-success-50\\/20{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-success-50\\/25{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-success-50\\/30{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-success-50\\/35{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-success-50\\/40{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-success-50\\/45{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-success-50\\/5{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-success-50\\/50{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-success-50\\/55{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-success-50\\/60{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-success-50\\/65{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-success-50\\/70{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-success-50\\/75{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-success-50\\/80{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-success-50\\/85{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-success-50\\/90{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-success-50\\/95{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-success-500{\n--tw-bg-opacity: 1;\nbackground-color: color(from #44bc69 srgb r g b / var(--tw-bg-opacity));\n}\n.bg-success-500\\/0{\nbackground-color: color(from #44bc69 srgb r g b / 0);\n}\n.bg-success-500\\/10{\nbackground-color: color(from #44bc69 srgb r g b / 0.1);\n}\n.bg-success-500\\/100{\nbackground-color: color(from #44bc69 srgb r g b / 1);\n}\n.bg-success-500\\/15{\nbackground-color: color(from #44bc69 srgb r g b / 0.15);\n}\n.bg-success-500\\/20{\nbackground-color: color(from #44bc69 srgb r g b / 0.2);\n}\n.bg-success-500\\/25{\nbackground-color: color(from #44bc69 srgb r g b / 0.25);\n}\n.bg-success-500\\/30{\nbackground-color: color(from #44bc69 srgb r g b / 0.3);\n}\n.bg-success-500\\/35{\nbackground-color: color(from #44bc69 srgb r g b / 0.35);\n}\n.bg-success-500\\/40{\nbackground-color: color(from #44bc69 srgb r g b / 0.4);\n}\n.bg-success-500\\/45{\nbackground-color: color(from #44bc69 srgb r g b / 0.45);\n}\n.bg-success-500\\/5{\nbackground-color: color(from #44bc69 srgb r g b / 0.05);\n}\n.bg-success-500\\/50{\nbackground-color: color(from #44bc69 srgb r g b / 0.5);\n}\n.bg-success-500\\/55{\nbackground-color: color(from #44bc69 srgb r g b / 0.55);\n}\n.bg-success-500\\/60{\nbackground-color: color(from #44bc69 srgb r g b / 0.6);\n}\n.bg-success-500\\/65{\nbackground-color: color(from #44bc69 srgb r g b / 0.65);\n}\n.bg-success-500\\/70{\nbackground-color: color(from #44bc69 srgb r g b / 0.7);\n}\n.bg-success-500\\/75{\nbackground-color: color(from #44bc69 srgb r g b / 0.75);\n}\n.bg-success-500\\/80{\nbackground-color: color(from #44bc69 srgb r g b / 0.8);\n}\n.bg-success-500\\/85{\nbackground-color: color(from #44bc69 srgb r g b / 0.85);\n}\n.bg-success-500\\/90{\nbackground-color: color(from #44bc69 srgb r g b / 0.9);\n}\n.bg-success-500\\/95{\nbackground-color: color(from #44bc69 srgb r g b / 0.95);\n}\n.bg-success-600{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-success-600\\/0{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-success-600\\/10{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-success-600\\/100{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-success-600\\/15{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-success-600\\/20{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-success-600\\/25{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-success-600\\/30{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-success-600\\/35{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-success-600\\/40{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-success-600\\/45{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-success-600\\/5{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-success-600\\/50{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-success-600\\/55{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-success-600\\/60{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-success-600\\/65{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-success-600\\/70{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-success-600\\/75{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-success-600\\/80{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-success-600\\/85{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-success-600\\/90{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-success-600\\/95{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-success-700{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / var(--tw-bg-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-success-700\\/0{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-success-700\\/10{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-success-700\\/100{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-success-700\\/15{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-success-700\\/20{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-success-700\\/25{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-success-700\\/30{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-success-700\\/35{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-success-700\\/40{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-success-700\\/45{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-success-700\\/5{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-success-700\\/50{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-success-700\\/55{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-success-700\\/60{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-success-700\\/65{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-success-700\\/70{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-success-700\\/75{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-success-700\\/80{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-success-700\\/85{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-success-700\\/90{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-success-700\\/95{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-success-800{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-success-800\\/0{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-success-800\\/10{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-success-800\\/100{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-success-800\\/15{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-success-800\\/20{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-success-800\\/25{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-success-800\\/30{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-success-800\\/35{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-success-800\\/40{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-success-800\\/45{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-success-800\\/5{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-success-800\\/50{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-success-800\\/55{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-success-800\\/60{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-success-800\\/65{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-success-800\\/70{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-success-800\\/75{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-success-800\\/80{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-success-800\\/85{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-success-800\\/90{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-success-800\\/95{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-success-900{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-success-900\\/0{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-success-900\\/10{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-success-900\\/100{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-success-900\\/15{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-success-900\\/20{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-success-900\\/25{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-success-900\\/30{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-success-900\\/35{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-success-900\\/40{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-success-900\\/45{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-success-900\\/5{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-success-900\\/50{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-success-900\\/55{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-success-900\\/60{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-success-900\\/65{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-success-900\\/70{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-success-900\\/75{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-success-900\\/80{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-success-900\\/85{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-success-900\\/90{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-success-900\\/95{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-success-950{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / var(--tw-bg-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-success-950\\/0{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-success-950\\/10{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-success-950\\/100{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-success-950\\/15{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-success-950\\/20{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-success-950\\/25{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-success-950\\/30{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-success-950\\/35{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-success-950\\/40{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-success-950\\/45{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-success-950\\/5{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-success-950\\/50{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-success-950\\/55{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-success-950\\/60{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-success-950\\/65{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-success-950\\/70{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-success-950\\/75{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-success-950\\/80{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-success-950\\/85{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-success-950\\/90{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-success-950\\/95{\nbackground-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-success\\/0{\nbackground-color: rgb(68 188 105 / 0);\n}\n.bg-success\\/10{\nbackground-color: rgb(68 188 105 / 0.1);\n}\n.bg-success\\/100{\nbackground-color: rgb(68 188 105 / 1);\n}\n.bg-success\\/15{\nbackground-color: rgb(68 188 105 / 0.15);\n}\n.bg-success\\/20{\nbackground-color: rgb(68 188 105 / 0.2);\n}\n.bg-success\\/25{\nbackground-color: rgb(68 188 105 / 0.25);\n}\n.bg-success\\/30{\nbackground-color: rgb(68 188 105 / 0.3);\n}\n.bg-success\\/35{\nbackground-color: rgb(68 188 105 / 0.35);\n}\n.bg-success\\/40{\nbackground-color: rgb(68 188 105 / 0.4);\n}\n.bg-success\\/45{\nbackground-color: rgb(68 188 105 / 0.45);\n}\n.bg-success\\/5{\nbackground-color: rgb(68 188 105 / 0.05);\n}\n.bg-success\\/50{\nbackground-color: rgb(68 188 105 / 0.5);\n}\n.bg-success\\/55{\nbackground-color: rgb(68 188 105 / 0.55);\n}\n.bg-success\\/60{\nbackground-color: rgb(68 188 105 / 0.6);\n}\n.bg-success\\/65{\nbackground-color: rgb(68 188 105 / 0.65);\n}\n.bg-success\\/70{\nbackground-color: rgb(68 188 105 / 0.7);\n}\n.bg-success\\/75{\nbackground-color: rgb(68 188 105 / 0.75);\n}\n.bg-success\\/80{\nbackground-color: rgb(68 188 105 / 0.8);\n}\n.bg-success\\/85{\nbackground-color: rgb(68 188 105 / 0.85);\n}\n.bg-success\\/90{\nbackground-color: rgb(68 188 105 / 0.9);\n}\n.bg-success\\/95{\nbackground-color: rgb(68 188 105 / 0.95);\n}\n.bg-tint{\nbackground-color: var(--tint);\n}\n.bg-tint-100{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-tint-100\\/0{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-tint-100\\/10{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-tint-100\\/100{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-tint-100\\/15{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-tint-100\\/20{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-tint-100\\/25{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-tint-100\\/30{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-tint-100\\/35{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-tint-100\\/40{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-tint-100\\/45{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-tint-100\\/5{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-tint-100\\/50{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-tint-100\\/55{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-tint-100\\/60{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-tint-100\\/65{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-tint-100\\/70{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-tint-100\\/75{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-tint-100\\/80{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-tint-100\\/85{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-tint-100\\/90{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-tint-100\\/95{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-tint-200{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-tint-200\\/0{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-tint-200\\/10{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-tint-200\\/100{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-tint-200\\/15{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-tint-200\\/20{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-tint-200\\/25{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-tint-200\\/30{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-tint-200\\/35{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-tint-200\\/40{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-tint-200\\/45{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-tint-200\\/5{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-tint-200\\/50{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-tint-200\\/55{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-tint-200\\/60{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-tint-200\\/65{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-tint-200\\/70{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-tint-200\\/75{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-tint-200\\/80{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-tint-200\\/85{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-tint-200\\/90{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-tint-200\\/95{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-tint-300{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-bg-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-tint-300\\/0{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-tint-300\\/10{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-tint-300\\/100{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-tint-300\\/15{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-tint-300\\/20{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-tint-300\\/25{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-tint-300\\/30{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-tint-300\\/35{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-tint-300\\/40{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-tint-300\\/45{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-tint-300\\/5{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-tint-300\\/50{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-tint-300\\/55{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-tint-300\\/60{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-tint-300\\/65{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-tint-300\\/70{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-tint-300\\/75{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-tint-300\\/80{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-tint-300\\/85{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-tint-300\\/90{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-tint-300\\/95{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-tint-400{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-tint-400\\/0{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-tint-400\\/10{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-tint-400\\/100{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-tint-400\\/15{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-tint-400\\/20{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-tint-400\\/25{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-tint-400\\/30{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-tint-400\\/35{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-tint-400\\/40{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-tint-400\\/45{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-tint-400\\/5{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-tint-400\\/50{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-tint-400\\/55{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-tint-400\\/60{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-tint-400\\/65{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-tint-400\\/70{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-tint-400\\/75{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-tint-400\\/80{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-tint-400\\/85{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-tint-400\\/90{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-tint-400\\/95{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-tint-50{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-bg-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-tint-50\\/0{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-tint-50\\/10{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-tint-50\\/100{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-tint-50\\/15{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-tint-50\\/20{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-tint-50\\/25{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-tint-50\\/30{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-tint-50\\/35{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-tint-50\\/40{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-tint-50\\/45{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-tint-50\\/5{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-tint-50\\/50{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-tint-50\\/55{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-tint-50\\/60{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-tint-50\\/65{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-tint-50\\/70{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-tint-50\\/75{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-tint-50\\/80{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-tint-50\\/85{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-tint-50\\/90{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-tint-50\\/95{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-tint-500{\n--tw-bg-opacity: 1;\nbackground-color: color(from var(--tint) srgb r g b / var(--tw-bg-opacity));\n}\n.bg-tint-500\\/0{\nbackground-color: color(from var(--tint) srgb r g b / 0);\n}\n.bg-tint-500\\/10{\nbackground-color: color(from var(--tint) srgb r g b / 0.1);\n}\n.bg-tint-500\\/100{\nbackground-color: color(from var(--tint) srgb r g b / 1);\n}\n.bg-tint-500\\/15{\nbackground-color: color(from var(--tint) srgb r g b / 0.15);\n}\n.bg-tint-500\\/20{\nbackground-color: color(from var(--tint) srgb r g b / 0.2);\n}\n.bg-tint-500\\/25{\nbackground-color: color(from var(--tint) srgb r g b / 0.25);\n}\n.bg-tint-500\\/30{\nbackground-color: color(from var(--tint) srgb r g b / 0.3);\n}\n.bg-tint-500\\/35{\nbackground-color: color(from var(--tint) srgb r g b / 0.35);\n}\n.bg-tint-500\\/40{\nbackground-color: color(from var(--tint) srgb r g b / 0.4);\n}\n.bg-tint-500\\/45{\nbackground-color: color(from var(--tint) srgb r g b / 0.45);\n}\n.bg-tint-500\\/5{\nbackground-color: color(from var(--tint) srgb r g b / 0.05);\n}\n.bg-tint-500\\/50{\nbackground-color: color(from var(--tint) srgb r g b / 0.5);\n}\n.bg-tint-500\\/55{\nbackground-color: color(from var(--tint) srgb r g b / 0.55);\n}\n.bg-tint-500\\/60{\nbackground-color: color(from var(--tint) srgb r g b / 0.6);\n}\n.bg-tint-500\\/65{\nbackground-color: color(from var(--tint) srgb r g b / 0.65);\n}\n.bg-tint-500\\/70{\nbackground-color: color(from var(--tint) srgb r g b / 0.7);\n}\n.bg-tint-500\\/75{\nbackground-color: color(from var(--tint) srgb r g b / 0.75);\n}\n.bg-tint-500\\/80{\nbackground-color: color(from var(--tint) srgb r g b / 0.8);\n}\n.bg-tint-500\\/85{\nbackground-color: color(from var(--tint) srgb r g b / 0.85);\n}\n.bg-tint-500\\/90{\nbackground-color: color(from var(--tint) srgb r g b / 0.9);\n}\n.bg-tint-500\\/95{\nbackground-color: color(from var(--tint) srgb r g b / 0.95);\n}\n.bg-tint-600{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-tint-600\\/0{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-tint-600\\/10{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-tint-600\\/100{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-tint-600\\/15{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-tint-600\\/20{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-tint-600\\/25{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-tint-600\\/30{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-tint-600\\/35{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-tint-600\\/40{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-tint-600\\/45{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-tint-600\\/5{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-tint-600\\/50{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-tint-600\\/55{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-tint-600\\/60{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-tint-600\\/65{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-tint-600\\/70{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-tint-600\\/75{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-tint-600\\/80{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-tint-600\\/85{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-tint-600\\/90{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-tint-600\\/95{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-tint-700{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-bg-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-tint-700\\/0{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-tint-700\\/10{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-tint-700\\/100{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-tint-700\\/15{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-tint-700\\/20{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-tint-700\\/25{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-tint-700\\/30{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-tint-700\\/35{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-tint-700\\/40{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-tint-700\\/45{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-tint-700\\/5{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-tint-700\\/50{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-tint-700\\/55{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-tint-700\\/60{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-tint-700\\/65{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-tint-700\\/70{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-tint-700\\/75{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-tint-700\\/80{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-tint-700\\/85{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-tint-700\\/90{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-tint-700\\/95{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-tint-800{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-tint-800\\/0{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-tint-800\\/10{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-tint-800\\/100{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-tint-800\\/15{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-tint-800\\/20{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-tint-800\\/25{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-tint-800\\/30{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-tint-800\\/35{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-tint-800\\/40{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-tint-800\\/45{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-tint-800\\/5{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-tint-800\\/50{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-tint-800\\/55{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-tint-800\\/60{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-tint-800\\/65{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-tint-800\\/70{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-tint-800\\/75{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-tint-800\\/80{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-tint-800\\/85{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-tint-800\\/90{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-tint-800\\/95{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-tint-900{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-tint-900\\/0{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-tint-900\\/10{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-tint-900\\/100{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-tint-900\\/15{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-tint-900\\/20{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-tint-900\\/25{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-tint-900\\/30{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-tint-900\\/35{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-tint-900\\/40{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-tint-900\\/45{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-tint-900\\/5{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-tint-900\\/50{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-tint-900\\/55{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-tint-900\\/60{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-tint-900\\/65{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-tint-900\\/70{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-tint-900\\/75{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-tint-900\\/80{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-tint-900\\/85{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-tint-900\\/90{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-tint-900\\/95{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-tint-950{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-bg-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-tint-950\\/0{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-tint-950\\/10{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-tint-950\\/100{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-tint-950\\/15{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-tint-950\\/20{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-tint-950\\/25{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-tint-950\\/30{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-tint-950\\/35{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-tint-950\\/40{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-tint-950\\/45{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-tint-950\\/5{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-tint-950\\/50{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-tint-950\\/55{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-tint-950\\/60{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-tint-950\\/65{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-tint-950\\/70{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-tint-950\\/75{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-tint-950\\/80{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-tint-950\\/85{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-tint-950\\/90{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-tint-950\\/95{\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-transparent{\nbackground-color: transparent;\n}\n.bg-warning{\n--tw-bg-opacity: 1;\nbackground-color: rgb(237 170 0 / var(--tw-bg-opacity));\n}\n.bg-warning-100{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-warning-100\\/0{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-warning-100\\/10{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-warning-100\\/100{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-warning-100\\/15{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-warning-100\\/20{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-warning-100\\/25{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-warning-100\\/30{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-warning-100\\/35{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-warning-100\\/40{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-warning-100\\/45{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-warning-100\\/5{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-warning-100\\/50{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-warning-100\\/55{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-warning-100\\/60{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-warning-100\\/65{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-warning-100\\/70{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-warning-100\\/75{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-warning-100\\/80{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-warning-100\\/85{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-warning-100\\/90{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-warning-100\\/95{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-warning-200{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-warning-200\\/0{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-warning-200\\/10{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-warning-200\\/100{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-warning-200\\/15{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-warning-200\\/20{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-warning-200\\/25{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-warning-200\\/30{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-warning-200\\/35{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-warning-200\\/40{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-warning-200\\/45{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-warning-200\\/5{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-warning-200\\/50{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-warning-200\\/55{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-warning-200\\/60{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-warning-200\\/65{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-warning-200\\/70{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-warning-200\\/75{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-warning-200\\/80{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-warning-200\\/85{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-warning-200\\/90{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-warning-200\\/95{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-warning-300{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / var(--tw-bg-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-warning-300\\/0{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-warning-300\\/10{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-warning-300\\/100{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-warning-300\\/15{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-warning-300\\/20{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-warning-300\\/25{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-warning-300\\/30{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-warning-300\\/35{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-warning-300\\/40{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-warning-300\\/45{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-warning-300\\/5{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-warning-300\\/50{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-warning-300\\/55{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-warning-300\\/60{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-warning-300\\/65{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-warning-300\\/70{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-warning-300\\/75{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-warning-300\\/80{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-warning-300\\/85{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-warning-300\\/90{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-warning-300\\/95{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-warning-400{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-warning-400\\/0{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-warning-400\\/10{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-warning-400\\/100{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-warning-400\\/15{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-warning-400\\/20{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-warning-400\\/25{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-warning-400\\/30{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-warning-400\\/35{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-warning-400\\/40{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-warning-400\\/45{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-warning-400\\/5{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-warning-400\\/50{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-warning-400\\/55{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-warning-400\\/60{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-warning-400\\/65{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-warning-400\\/70{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-warning-400\\/75{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-warning-400\\/80{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-warning-400\\/85{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-warning-400\\/90{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-warning-400\\/95{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-warning-50{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / var(--tw-bg-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-warning-50\\/0{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-warning-50\\/10{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-warning-50\\/100{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-warning-50\\/15{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-warning-50\\/20{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-warning-50\\/25{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-warning-50\\/30{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-warning-50\\/35{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-warning-50\\/40{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-warning-50\\/45{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-warning-50\\/5{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-warning-50\\/50{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-warning-50\\/55{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-warning-50\\/60{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-warning-50\\/65{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-warning-50\\/70{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-warning-50\\/75{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-warning-50\\/80{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-warning-50\\/85{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-warning-50\\/90{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-warning-50\\/95{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-warning-500{\n--tw-bg-opacity: 1;\nbackground-color: color(from #edaa00 srgb r g b / var(--tw-bg-opacity));\n}\n.bg-warning-500\\/0{\nbackground-color: color(from #edaa00 srgb r g b / 0);\n}\n.bg-warning-500\\/10{\nbackground-color: color(from #edaa00 srgb r g b / 0.1);\n}\n.bg-warning-500\\/100{\nbackground-color: color(from #edaa00 srgb r g b / 1);\n}\n.bg-warning-500\\/15{\nbackground-color: color(from #edaa00 srgb r g b / 0.15);\n}\n.bg-warning-500\\/20{\nbackground-color: color(from #edaa00 srgb r g b / 0.2);\n}\n.bg-warning-500\\/25{\nbackground-color: color(from #edaa00 srgb r g b / 0.25);\n}\n.bg-warning-500\\/30{\nbackground-color: color(from #edaa00 srgb r g b / 0.3);\n}\n.bg-warning-500\\/35{\nbackground-color: color(from #edaa00 srgb r g b / 0.35);\n}\n.bg-warning-500\\/40{\nbackground-color: color(from #edaa00 srgb r g b / 0.4);\n}\n.bg-warning-500\\/45{\nbackground-color: color(from #edaa00 srgb r g b / 0.45);\n}\n.bg-warning-500\\/5{\nbackground-color: color(from #edaa00 srgb r g b / 0.05);\n}\n.bg-warning-500\\/50{\nbackground-color: color(from #edaa00 srgb r g b / 0.5);\n}\n.bg-warning-500\\/55{\nbackground-color: color(from #edaa00 srgb r g b / 0.55);\n}\n.bg-warning-500\\/60{\nbackground-color: color(from #edaa00 srgb r g b / 0.6);\n}\n.bg-warning-500\\/65{\nbackground-color: color(from #edaa00 srgb r g b / 0.65);\n}\n.bg-warning-500\\/70{\nbackground-color: color(from #edaa00 srgb r g b / 0.7);\n}\n.bg-warning-500\\/75{\nbackground-color: color(from #edaa00 srgb r g b / 0.75);\n}\n.bg-warning-500\\/80{\nbackground-color: color(from #edaa00 srgb r g b / 0.8);\n}\n.bg-warning-500\\/85{\nbackground-color: color(from #edaa00 srgb r g b / 0.85);\n}\n.bg-warning-500\\/90{\nbackground-color: color(from #edaa00 srgb r g b / 0.9);\n}\n.bg-warning-500\\/95{\nbackground-color: color(from #edaa00 srgb r g b / 0.95);\n}\n.bg-warning-600{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-warning-600\\/0{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-warning-600\\/10{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-warning-600\\/100{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-warning-600\\/15{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-warning-600\\/20{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-warning-600\\/25{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-warning-600\\/30{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-warning-600\\/35{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-warning-600\\/40{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-warning-600\\/45{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-warning-600\\/5{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-warning-600\\/50{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-warning-600\\/55{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-warning-600\\/60{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-warning-600\\/65{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-warning-600\\/70{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-warning-600\\/75{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-warning-600\\/80{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-warning-600\\/85{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-warning-600\\/90{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-warning-600\\/95{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-warning-700{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / var(--tw-bg-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-warning-700\\/0{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-warning-700\\/10{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-warning-700\\/100{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-warning-700\\/15{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-warning-700\\/20{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-warning-700\\/25{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-warning-700\\/30{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-warning-700\\/35{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-warning-700\\/40{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-warning-700\\/45{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-warning-700\\/5{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-warning-700\\/50{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-warning-700\\/55{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-warning-700\\/60{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-warning-700\\/65{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-warning-700\\/70{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-warning-700\\/75{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-warning-700\\/80{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-warning-700\\/85{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-warning-700\\/90{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-warning-700\\/95{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-warning-800{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-warning-800\\/0{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-warning-800\\/10{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-warning-800\\/100{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-warning-800\\/15{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-warning-800\\/20{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-warning-800\\/25{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-warning-800\\/30{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-warning-800\\/35{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-warning-800\\/40{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-warning-800\\/45{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-warning-800\\/5{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-warning-800\\/50{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-warning-800\\/55{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-warning-800\\/60{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-warning-800\\/65{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-warning-800\\/70{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-warning-800\\/75{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-warning-800\\/80{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-warning-800\\/85{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-warning-800\\/90{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-warning-800\\/95{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-warning-900{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-warning-900\\/0{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-warning-900\\/10{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-warning-900\\/100{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-warning-900\\/15{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-warning-900\\/20{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-warning-900\\/25{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-warning-900\\/30{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-warning-900\\/35{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-warning-900\\/40{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-warning-900\\/45{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-warning-900\\/5{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-warning-900\\/50{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-warning-900\\/55{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-warning-900\\/60{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-warning-900\\/65{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-warning-900\\/70{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-warning-900\\/75{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-warning-900\\/80{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-warning-900\\/85{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-warning-900\\/90{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-warning-900\\/95{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-warning-950{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / var(--tw-bg-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-warning-950\\/0{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-warning-950\\/10{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-warning-950\\/100{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-warning-950\\/15{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-warning-950\\/20{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-warning-950\\/25{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-warning-950\\/30{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-warning-950\\/35{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-warning-950\\/40{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-warning-950\\/45{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-warning-950\\/5{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-warning-950\\/50{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-warning-950\\/55{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-warning-950\\/60{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-warning-950\\/65{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-warning-950\\/70{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-warning-950\\/75{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-warning-950\\/80{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-warning-950\\/85{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-warning-950\\/90{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-warning-950\\/95{\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-warning\\/0{\nbackground-color: rgb(237 170 0 / 0);\n}\n.bg-warning\\/10{\nbackground-color: rgb(237 170 0 / 0.1);\n}\n.bg-warning\\/100{\nbackground-color: rgb(237 170 0 / 1);\n}\n.bg-warning\\/15{\nbackground-color: rgb(237 170 0 / 0.15);\n}\n.bg-warning\\/20{\nbackground-color: rgb(237 170 0 / 0.2);\n}\n.bg-warning\\/25{\nbackground-color: rgb(237 170 0 / 0.25);\n}\n.bg-warning\\/30{\nbackground-color: rgb(237 170 0 / 0.3);\n}\n.bg-warning\\/35{\nbackground-color: rgb(237 170 0 / 0.35);\n}\n.bg-warning\\/40{\nbackground-color: rgb(237 170 0 / 0.4);\n}\n.bg-warning\\/45{\nbackground-color: rgb(237 170 0 / 0.45);\n}\n.bg-warning\\/5{\nbackground-color: rgb(237 170 0 / 0.05);\n}\n.bg-warning\\/50{\nbackground-color: rgb(237 170 0 / 0.5);\n}\n.bg-warning\\/55{\nbackground-color: rgb(237 170 0 / 0.55);\n}\n.bg-warning\\/60{\nbackground-color: rgb(237 170 0 / 0.6);\n}\n.bg-warning\\/65{\nbackground-color: rgb(237 170 0 / 0.65);\n}\n.bg-warning\\/70{\nbackground-color: rgb(237 170 0 / 0.7);\n}\n.bg-warning\\/75{\nbackground-color: rgb(237 170 0 / 0.75);\n}\n.bg-warning\\/80{\nbackground-color: rgb(237 170 0 / 0.8);\n}\n.bg-warning\\/85{\nbackground-color: rgb(237 170 0 / 0.85);\n}\n.bg-warning\\/90{\nbackground-color: rgb(237 170 0 / 0.9);\n}\n.bg-warning\\/95{\nbackground-color: rgb(237 170 0 / 0.95);\n}\n.bg-white{\n--tw-bg-opacity: 1;\nbackground-color: rgb(254 253 252 / var(--tw-bg-opacity));\n}\n.bg-white\\/0{\nbackground-color: rgb(254 253 252 / 0);\n}\n.bg-white\\/10{\nbackground-color: rgb(254 253 252 / 0.1);\n}\n.bg-white\\/100{\nbackground-color: rgb(254 253 252 / 1);\n}\n.bg-white\\/15{\nbackground-color: rgb(254 253 252 / 0.15);\n}\n.bg-white\\/20{\nbackground-color: rgb(254 253 252 / 0.2);\n}\n.bg-white\\/25{\nbackground-color: rgb(254 253 252 / 0.25);\n}\n.bg-white\\/30{\nbackground-color: rgb(254 253 252 / 0.3);\n}\n.bg-white\\/35{\nbackground-color: rgb(254 253 252 / 0.35);\n}\n.bg-white\\/40{\nbackground-color: rgb(254 253 252 / 0.4);\n}\n.bg-white\\/45{\nbackground-color: rgb(254 253 252 / 0.45);\n}\n.bg-white\\/5{\nbackground-color: rgb(254 253 252 / 0.05);\n}\n.bg-white\\/50{\nbackground-color: rgb(254 253 252 / 0.5);\n}\n.bg-white\\/55{\nbackground-color: rgb(254 253 252 / 0.55);\n}\n.bg-white\\/60{\nbackground-color: rgb(254 253 252 / 0.6);\n}\n.bg-white\\/65{\nbackground-color: rgb(254 253 252 / 0.65);\n}\n.bg-white\\/70{\nbackground-color: rgb(254 253 252 / 0.7);\n}\n.bg-white\\/75{\nbackground-color: rgb(254 253 252 / 0.75);\n}\n.bg-white\\/80{\nbackground-color: rgb(254 253 252 / 0.8);\n}\n.bg-white\\/85{\nbackground-color: rgb(254 253 252 / 0.85);\n}\n.bg-white\\/90{\nbackground-color: rgb(254 253 252 / 0.9);\n}\n.bg-white\\/95{\nbackground-color: rgb(254 253 252 / 0.95);\n}\n.bg-wood{\n--tw-bg-opacity: 1;\nbackground-color: rgb(173 127 88 / var(--tw-bg-opacity));\n}\n.bg-wood-100{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-wood-100\\/0{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-wood-100\\/10{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-wood-100\\/100{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-wood-100\\/15{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-wood-100\\/20{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-wood-100\\/25{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-wood-100\\/30{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-wood-100\\/35{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-wood-100\\/40{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-wood-100\\/45{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-wood-100\\/5{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-wood-100\\/50{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-wood-100\\/55{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-wood-100\\/60{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-wood-100\\/65{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-wood-100\\/70{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-wood-100\\/75{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-wood-100\\/80{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-wood-100\\/85{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-wood-100\\/90{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-wood-100\\/95{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-wood-200{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-wood-200\\/0{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-wood-200\\/10{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-wood-200\\/100{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-wood-200\\/15{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-wood-200\\/20{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-wood-200\\/25{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-wood-200\\/30{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-wood-200\\/35{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-wood-200\\/40{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-wood-200\\/45{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-wood-200\\/5{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-wood-200\\/50{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-wood-200\\/55{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-wood-200\\/60{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-wood-200\\/65{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-wood-200\\/70{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-wood-200\\/75{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-wood-200\\/80{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-wood-200\\/85{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-wood-200\\/90{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-wood-200\\/95{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-wood-300{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / var(--tw-bg-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-wood-300\\/0{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-wood-300\\/10{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-wood-300\\/100{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-wood-300\\/15{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-wood-300\\/20{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-wood-300\\/25{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-wood-300\\/30{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-wood-300\\/35{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-wood-300\\/40{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-wood-300\\/45{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-wood-300\\/5{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-wood-300\\/50{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-wood-300\\/55{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-wood-300\\/60{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-wood-300\\/65{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-wood-300\\/70{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-wood-300\\/75{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-wood-300\\/80{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-wood-300\\/85{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-wood-300\\/90{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-wood-300\\/95{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-wood-400{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-wood-400\\/0{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-wood-400\\/10{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-wood-400\\/100{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-wood-400\\/15{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-wood-400\\/20{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-wood-400\\/25{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-wood-400\\/30{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-wood-400\\/35{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-wood-400\\/40{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-wood-400\\/45{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-wood-400\\/5{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-wood-400\\/50{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-wood-400\\/55{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-wood-400\\/60{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-wood-400\\/65{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-wood-400\\/70{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-wood-400\\/75{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-wood-400\\/80{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-wood-400\\/85{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-wood-400\\/90{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-wood-400\\/95{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-wood-50{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / var(--tw-bg-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-wood-50\\/0{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.bg-wood-50\\/10{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.bg-wood-50\\/100{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.bg-wood-50\\/15{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.bg-wood-50\\/20{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.bg-wood-50\\/25{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.bg-wood-50\\/30{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.bg-wood-50\\/35{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.bg-wood-50\\/40{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.bg-wood-50\\/45{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.bg-wood-50\\/5{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.bg-wood-50\\/50{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.bg-wood-50\\/55{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.bg-wood-50\\/60{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.bg-wood-50\\/65{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.bg-wood-50\\/70{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.bg-wood-50\\/75{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.bg-wood-50\\/80{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.bg-wood-50\\/85{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.bg-wood-50\\/90{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.bg-wood-50\\/95{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.bg-wood-500{\n--tw-bg-opacity: 1;\nbackground-color: color(from #ad7f58 srgb r g b / var(--tw-bg-opacity));\n}\n.bg-wood-500\\/0{\nbackground-color: color(from #ad7f58 srgb r g b / 0);\n}\n.bg-wood-500\\/10{\nbackground-color: color(from #ad7f58 srgb r g b / 0.1);\n}\n.bg-wood-500\\/100{\nbackground-color: color(from #ad7f58 srgb r g b / 1);\n}\n.bg-wood-500\\/15{\nbackground-color: color(from #ad7f58 srgb r g b / 0.15);\n}\n.bg-wood-500\\/20{\nbackground-color: color(from #ad7f58 srgb r g b / 0.2);\n}\n.bg-wood-500\\/25{\nbackground-color: color(from #ad7f58 srgb r g b / 0.25);\n}\n.bg-wood-500\\/30{\nbackground-color: color(from #ad7f58 srgb r g b / 0.3);\n}\n.bg-wood-500\\/35{\nbackground-color: color(from #ad7f58 srgb r g b / 0.35);\n}\n.bg-wood-500\\/40{\nbackground-color: color(from #ad7f58 srgb r g b / 0.4);\n}\n.bg-wood-500\\/45{\nbackground-color: color(from #ad7f58 srgb r g b / 0.45);\n}\n.bg-wood-500\\/5{\nbackground-color: color(from #ad7f58 srgb r g b / 0.05);\n}\n.bg-wood-500\\/50{\nbackground-color: color(from #ad7f58 srgb r g b / 0.5);\n}\n.bg-wood-500\\/55{\nbackground-color: color(from #ad7f58 srgb r g b / 0.55);\n}\n.bg-wood-500\\/60{\nbackground-color: color(from #ad7f58 srgb r g b / 0.6);\n}\n.bg-wood-500\\/65{\nbackground-color: color(from #ad7f58 srgb r g b / 0.65);\n}\n.bg-wood-500\\/70{\nbackground-color: color(from #ad7f58 srgb r g b / 0.7);\n}\n.bg-wood-500\\/75{\nbackground-color: color(from #ad7f58 srgb r g b / 0.75);\n}\n.bg-wood-500\\/80{\nbackground-color: color(from #ad7f58 srgb r g b / 0.8);\n}\n.bg-wood-500\\/85{\nbackground-color: color(from #ad7f58 srgb r g b / 0.85);\n}\n.bg-wood-500\\/90{\nbackground-color: color(from #ad7f58 srgb r g b / 0.9);\n}\n.bg-wood-500\\/95{\nbackground-color: color(from #ad7f58 srgb r g b / 0.95);\n}\n.bg-wood-600{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-wood-600\\/0{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-wood-600\\/10{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-wood-600\\/100{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-wood-600\\/15{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-wood-600\\/20{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-wood-600\\/25{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-wood-600\\/30{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-wood-600\\/35{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-wood-600\\/40{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-wood-600\\/45{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-wood-600\\/5{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-wood-600\\/50{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-wood-600\\/55{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-wood-600\\/60{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-wood-600\\/65{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-wood-600\\/70{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-wood-600\\/75{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-wood-600\\/80{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-wood-600\\/85{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-wood-600\\/90{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-wood-600\\/95{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-wood-700{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / var(--tw-bg-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-wood-700\\/0{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-wood-700\\/10{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-wood-700\\/100{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-wood-700\\/15{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-wood-700\\/20{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-wood-700\\/25{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-wood-700\\/30{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-wood-700\\/35{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-wood-700\\/40{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-wood-700\\/45{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-wood-700\\/5{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-wood-700\\/50{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-wood-700\\/55{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-wood-700\\/60{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-wood-700\\/65{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-wood-700\\/70{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-wood-700\\/75{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-wood-700\\/80{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-wood-700\\/85{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-wood-700\\/90{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-wood-700\\/95{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-wood-800{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-wood-800\\/0{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-wood-800\\/10{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-wood-800\\/100{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-wood-800\\/15{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-wood-800\\/20{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-wood-800\\/25{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-wood-800\\/30{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-wood-800\\/35{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-wood-800\\/40{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-wood-800\\/45{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-wood-800\\/5{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-wood-800\\/50{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-wood-800\\/55{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-wood-800\\/60{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-wood-800\\/65{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-wood-800\\/70{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-wood-800\\/75{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-wood-800\\/80{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-wood-800\\/85{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-wood-800\\/90{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-wood-800\\/95{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-wood-900{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-wood-900\\/0{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-wood-900\\/10{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-wood-900\\/100{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-wood-900\\/15{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-wood-900\\/20{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-wood-900\\/25{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-wood-900\\/30{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-wood-900\\/35{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-wood-900\\/40{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-wood-900\\/45{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-wood-900\\/5{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-wood-900\\/50{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-wood-900\\/55{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-wood-900\\/60{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-wood-900\\/65{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-wood-900\\/70{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-wood-900\\/75{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-wood-900\\/80{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-wood-900\\/85{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-wood-900\\/90{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-wood-900\\/95{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-wood-950{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / var(--tw-bg-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.bg-wood-950\\/0{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.bg-wood-950\\/10{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.bg-wood-950\\/100{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.bg-wood-950\\/15{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.bg-wood-950\\/20{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.bg-wood-950\\/25{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.bg-wood-950\\/30{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.bg-wood-950\\/35{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.bg-wood-950\\/40{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.bg-wood-950\\/45{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.bg-wood-950\\/5{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.bg-wood-950\\/50{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.bg-wood-950\\/55{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.bg-wood-950\\/60{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.bg-wood-950\\/65{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.bg-wood-950\\/70{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.bg-wood-950\\/75{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.bg-wood-950\\/80{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.bg-wood-950\\/85{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.bg-wood-950\\/90{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.bg-wood-950\\/95{\nbackground-color: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.bg-wood\\/0{\nbackground-color: rgb(173 127 88 / 0);\n}\n.bg-wood\\/10{\nbackground-color: rgb(173 127 88 / 0.1);\n}\n.bg-wood\\/100{\nbackground-color: rgb(173 127 88 / 1);\n}\n.bg-wood\\/15{\nbackground-color: rgb(173 127 88 / 0.15);\n}\n.bg-wood\\/20{\nbackground-color: rgb(173 127 88 / 0.2);\n}\n.bg-wood\\/25{\nbackground-color: rgb(173 127 88 / 0.25);\n}\n.bg-wood\\/30{\nbackground-color: rgb(173 127 88 / 0.3);\n}\n.bg-wood\\/35{\nbackground-color: rgb(173 127 88 / 0.35);\n}\n.bg-wood\\/40{\nbackground-color: rgb(173 127 88 / 0.4);\n}\n.bg-wood\\/45{\nbackground-color: rgb(173 127 88 / 0.45);\n}\n.bg-wood\\/5{\nbackground-color: rgb(173 127 88 / 0.05);\n}\n.bg-wood\\/50{\nbackground-color: rgb(173 127 88 / 0.5);\n}\n.bg-wood\\/55{\nbackground-color: rgb(173 127 88 / 0.55);\n}\n.bg-wood\\/60{\nbackground-color: rgb(173 127 88 / 0.6);\n}\n.bg-wood\\/65{\nbackground-color: rgb(173 127 88 / 0.65);\n}\n.bg-wood\\/70{\nbackground-color: rgb(173 127 88 / 0.7);\n}\n.bg-wood\\/75{\nbackground-color: rgb(173 127 88 / 0.75);\n}\n.bg-wood\\/80{\nbackground-color: rgb(173 127 88 / 0.8);\n}\n.bg-wood\\/85{\nbackground-color: rgb(173 127 88 / 0.85);\n}\n.bg-wood\\/90{\nbackground-color: rgb(173 127 88 / 0.9);\n}\n.bg-wood\\/95{\nbackground-color: rgb(173 127 88 / 0.95);\n}\n.bg-opacity-20{\n--tw-bg-opacity: 0.2;\n}\n.bg-opacity-50{\n--tw-bg-opacity: 0.5;\n}\n.from-danger-500{\n--tw-gradient-from: color(from #f24c3d srgb r g b / 1) var(--tw-gradient-from-position);\n--tw-gradient-to: color(from #f24c3d srgb r g b / 0) var(--tw-gradient-to-position);\n--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);\n}\n.from-0\\%{\n--tw-gradient-from-position: 0%;\n}\n.via-marigold-500{\n--tw-gradient-to: color(from #ffc100 srgb r g b / 0) var(--tw-gradient-to-position);\n--tw-gradient-stops: var(--tw-gradient-from), color(from #ffc100 srgb r g b / 1) var(--tw-gradient-via-position), var(--tw-gradient-to);\n}\n.to-jade-500{\n--tw-gradient-to: color(from #29a383 srgb r g b / 1) var(--tw-gradient-to-position);\n}\n.to-100\\%{\n--tw-gradient-to-position: 100%;\n}\n.\\!fill{\nfill: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 99%, color(from var(--tint) srgb r g b / 1)) !important;\n}\n.fill{\nfill: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 99%, color(from var(--tint) srgb r g b / 1));\n}\n.fill-base{\nfill: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 99%, color(from var(--tint) srgb r g b / 1));\n}\n.fill-tint-200{\nfill: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.stroke{\nstroke: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 65%, color(from var(--tint) srgb r g b / 1));\n}\n.stroke-dimmed{\nstroke: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 72%, color(from var(--tint) srgb r g b / 1));\n}\n.stroke-muted{\nstroke: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 80%, color(from var(--tint) srgb r g b / 1));\n}\n.object-contain{\n-o-object-fit: contain;\n object-fit: contain;\n}\n.object-cover{\n-o-object-fit: cover;\n object-fit: cover;\n}\n.object-fill{\n-o-object-fit: fill;\n object-fit: fill;\n}\n.p-0{\npadding: 0px;\n}\n.p-0\\.5{\npadding: 0.125rem;\n}\n.p-1{\npadding: 0.25rem;\n}\n.p-2{\npadding: 0.5rem;\n}\n.p-4{\npadding: 1rem;\n}\n.p-6{\npadding: 1.5rem;\n}\n.p-\\[0\\.25em\\]{\npadding: 0.25em;\n}\n.p-\\[2px\\]{\npadding: 2px;\n}\n.p-\\[8px\\]{\npadding: 8px;\n}\n.p-px{\npadding: 1px;\n}\n.px-0{\npadding-left: 0px;\npadding-right: 0px;\n}\n.px-0\\.5{\npadding-left: 0.125rem;\npadding-right: 0.125rem;\n}\n.px-1{\npadding-left: 0.25rem;\npadding-right: 0.25rem;\n}\n.px-2{\npadding-left: 0.5rem;\npadding-right: 0.5rem;\n}\n.px-2\\.5{\npadding-left: 0.625rem;\npadding-right: 0.625rem;\n}\n.px-4{\npadding-left: 1rem;\npadding-right: 1rem;\n}\n.px-6{\npadding-left: 1.5rem;\npadding-right: 1.5rem;\n}\n.px-8{\npadding-left: 2rem;\npadding-right: 2rem;\n}\n.px-\\[2cm\\]{\npadding-left: 2cm;\npadding-right: 2cm;\n}\n.px-\\[2px\\]{\npadding-left: 2px;\npadding-right: 2px;\n}\n.py-0{\npadding-top: 0px;\npadding-bottom: 0px;\n}\n.py-0\\.5{\npadding-top: 0.125rem;\npadding-bottom: 0.125rem;\n}\n.py-1{\npadding-top: 0.25rem;\npadding-bottom: 0.25rem;\n}\n.py-1\\.5{\npadding-top: 0.375rem;\npadding-bottom: 0.375rem;\n}\n.py-2{\npadding-top: 0.5rem;\npadding-bottom: 0.5rem;\n}\n.py-3{\npadding-top: 0.75rem;\npadding-bottom: 0.75rem;\n}\n.py-4{\npadding-top: 1rem;\npadding-bottom: 1rem;\n}\n.py-\\[0\\.375em\\]{\npadding-top: 0.375em;\npadding-bottom: 0.375em;\n}\n.py-\\[1cm\\]{\npadding-top: 1cm;\npadding-bottom: 1cm;\n}\n.py-px{\npadding-top: 1px;\npadding-bottom: 1px;\n}\n.pb-4{\npadding-bottom: 1rem;\n}\n.pe-1{\npadding-inline-end: 0.25rem;\n}\n.pe-2{\npadding-inline-end: 0.5rem;\n}\n.pe-4{\npadding-inline-end: 1rem;\n}\n.ps-1{\npadding-inline-start: 0.25rem;\n}\n.ps-2{\npadding-inline-start: 0.5rem;\n}\n.pt-2{\npadding-top: 0.5rem;\n}\n.pt-4{\npadding-top: 1rem;\n}\n.pt-6{\npadding-top: 1.5rem;\n}\n.text-center{\ntext-align: center;\n}\n.text-start{\ntext-align: start;\n}\n.text-end{\ntext-align: end;\n}\n.align-baseline{\nvertical-align: baseline;\n}\n.align-top{\nvertical-align: top;\n}\n.align-middle{\nvertical-align: middle;\n}\n.align-bottom{\nvertical-align: bottom;\n}\n.align-text-top{\nvertical-align: text-top;\n}\n.font-mono{\nfont-family: Noto Sans Mono, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace;\n}\n.font-sans{\nfont-family: Avenir Next, Avenir, Noto Sans, Roboto, Helvetica Neue, Segoe UI, Arial, sans-serif, BlinkMacSystemFont, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;\n}\n.font-serif{\nfont-family: Noto Serif, Georgia, Cambria, Times New Roman, Times, serif;\n}\n.text-2xl{\nfont-size: 1.75rem;\nline-height: 2.25rem;\n}\n.text-4xl{\nfont-size: 2.25rem;\nline-height: 2.5rem;\n}\n.text-5xl{\nfont-size: 3rem;\nline-height: 1;\n}\n.text-\\[0\\.5rem\\]{\nfont-size: 0.5rem;\n}\n.text-\\[0\\.625em\\]{\nfont-size: 0.625em;\n}\n.text-\\[0\\.625rem\\]{\nfont-size: 0.625rem;\n}\n.text-\\[0\\.75em\\]{\nfont-size: 0.75em;\n}\n.text-\\[10px\\]{\nfont-size: 10px;\n}\n.text-\\[1em\\]{\nfont-size: 1em;\n}\n.text-lg{\nfont-size: 1.25rem;\nline-height: 1.75rem;\n}\n.text-md{\nfont-size: 1.125rem;\nline-height: 1.5rem;\n}\n.text-reset{\nfont-size: 1rem;\nline-height: 1.5rem;\n}\n.text-sm{\nfont-size: 0.875rem;\nline-height: 1.25rem;\n}\n.text-xl{\nfont-size: 1.5rem;\nline-height: 2rem;\n}\n.text-xs{\nfont-size: 0.75rem;\nline-height: 1rem;\n}\n.font-bold{\nfont-weight: 700;\n}\n.font-light{\nfont-weight: 300;\n}\n.font-medium{\nfont-weight: 500;\n}\n.font-semibold{\nfont-weight: 600;\n}\n.uppercase{\ntext-transform: uppercase;\n}\n.lowercase{\ntext-transform: lowercase;\n}\n.capitalize{\ntext-transform: capitalize;\n}\n.italic{\nfont-style: italic;\n}\n.not-italic{\nfont-style: normal;\n}\n.tabular-nums{\n--tw-numeric-spacing: tabular-nums;\nfont-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction);\n}\n.leading-4{\nline-height: 1rem;\n}\n.leading-5{\nline-height: 1.25rem;\n}\n.leading-\\[0\\]{\nline-height: 0;\n}\n.leading-none{\nline-height: 1;\n}\n.leading-normal{\nline-height: 1.5;\n}\n.\\!text{\n--tw-text-opacity: 1 !important;\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)) 95%, color(from var(--tint) srgb r g b / var(--tw-text-opacity))) !important;\n}\n.text{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)) 95%, color(from var(--tint) srgb r g b / var(--tw-text-opacity)));\n}\n.text-\\[var\\(--fabric-bg\\)\\]{\ncolor: var(--fabric-bg);\n}\n.text-accent{\ncolor: var(--accent);\n}\n.text-accent-100{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / var(--tw-text-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-accent-100\\/0{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-accent-100\\/10{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-accent-100\\/100{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-accent-100\\/15{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-accent-100\\/20{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-accent-100\\/25{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-accent-100\\/30{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-accent-100\\/35{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-accent-100\\/40{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-accent-100\\/45{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-accent-100\\/5{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-accent-100\\/50{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-accent-100\\/55{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-accent-100\\/60{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-accent-100\\/65{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-accent-100\\/70{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-accent-100\\/75{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-accent-100\\/80{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-accent-100\\/85{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-accent-100\\/90{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-accent-100\\/95{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-accent-200{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / var(--tw-text-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-accent-200\\/0{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-accent-200\\/10{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-accent-200\\/100{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-accent-200\\/15{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-accent-200\\/20{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-accent-200\\/25{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-accent-200\\/30{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-accent-200\\/35{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-accent-200\\/40{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-accent-200\\/45{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-accent-200\\/5{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-accent-200\\/50{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-accent-200\\/55{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-accent-200\\/60{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-accent-200\\/65{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-accent-200\\/70{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-accent-200\\/75{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-accent-200\\/80{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-accent-200\\/85{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-accent-200\\/90{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-accent-200\\/95{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-accent-300{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / var(--tw-text-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-accent-300\\/0{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-accent-300\\/10{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-accent-300\\/100{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-accent-300\\/15{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-accent-300\\/20{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-accent-300\\/25{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-accent-300\\/30{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-accent-300\\/35{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-accent-300\\/40{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-accent-300\\/45{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-accent-300\\/5{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-accent-300\\/50{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-accent-300\\/55{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-accent-300\\/60{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-accent-300\\/65{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-accent-300\\/70{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-accent-300\\/75{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-accent-300\\/80{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-accent-300\\/85{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-accent-300\\/90{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-accent-300\\/95{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-accent-400{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / var(--tw-text-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-accent-400\\/0{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-accent-400\\/10{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-accent-400\\/100{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-accent-400\\/15{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-accent-400\\/20{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-accent-400\\/25{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-accent-400\\/30{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-accent-400\\/35{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-accent-400\\/40{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-accent-400\\/45{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-accent-400\\/5{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-accent-400\\/50{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-accent-400\\/55{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-accent-400\\/60{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-accent-400\\/65{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-accent-400\\/70{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-accent-400\\/75{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-accent-400\\/80{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-accent-400\\/85{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-accent-400\\/90{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-accent-400\\/95{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-accent-50{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / var(--tw-text-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-accent-50\\/0{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-accent-50\\/10{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-accent-50\\/100{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-accent-50\\/15{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-accent-50\\/20{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-accent-50\\/25{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-accent-50\\/30{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-accent-50\\/35{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-accent-50\\/40{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-accent-50\\/45{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-accent-50\\/5{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-accent-50\\/50{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-accent-50\\/55{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-accent-50\\/60{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-accent-50\\/65{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-accent-50\\/70{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-accent-50\\/75{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-accent-50\\/80{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-accent-50\\/85{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-accent-50\\/90{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-accent-50\\/95{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-accent-500{\n--tw-text-opacity: 1;\ncolor: color(from var(--accent) srgb r g b / var(--tw-text-opacity));\n}\n.text-accent-500\\/0{\ncolor: color(from var(--accent) srgb r g b / 0);\n}\n.text-accent-500\\/10{\ncolor: color(from var(--accent) srgb r g b / 0.1);\n}\n.text-accent-500\\/100{\ncolor: color(from var(--accent) srgb r g b / 1);\n}\n.text-accent-500\\/15{\ncolor: color(from var(--accent) srgb r g b / 0.15);\n}\n.text-accent-500\\/20{\ncolor: color(from var(--accent) srgb r g b / 0.2);\n}\n.text-accent-500\\/25{\ncolor: color(from var(--accent) srgb r g b / 0.25);\n}\n.text-accent-500\\/30{\ncolor: color(from var(--accent) srgb r g b / 0.3);\n}\n.text-accent-500\\/35{\ncolor: color(from var(--accent) srgb r g b / 0.35);\n}\n.text-accent-500\\/40{\ncolor: color(from var(--accent) srgb r g b / 0.4);\n}\n.text-accent-500\\/45{\ncolor: color(from var(--accent) srgb r g b / 0.45);\n}\n.text-accent-500\\/5{\ncolor: color(from var(--accent) srgb r g b / 0.05);\n}\n.text-accent-500\\/50{\ncolor: color(from var(--accent) srgb r g b / 0.5);\n}\n.text-accent-500\\/55{\ncolor: color(from var(--accent) srgb r g b / 0.55);\n}\n.text-accent-500\\/60{\ncolor: color(from var(--accent) srgb r g b / 0.6);\n}\n.text-accent-500\\/65{\ncolor: color(from var(--accent) srgb r g b / 0.65);\n}\n.text-accent-500\\/70{\ncolor: color(from var(--accent) srgb r g b / 0.7);\n}\n.text-accent-500\\/75{\ncolor: color(from var(--accent) srgb r g b / 0.75);\n}\n.text-accent-500\\/80{\ncolor: color(from var(--accent) srgb r g b / 0.8);\n}\n.text-accent-500\\/85{\ncolor: color(from var(--accent) srgb r g b / 0.85);\n}\n.text-accent-500\\/90{\ncolor: color(from var(--accent) srgb r g b / 0.9);\n}\n.text-accent-500\\/95{\ncolor: color(from var(--accent) srgb r g b / 0.95);\n}\n.text-accent-600{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / var(--tw-text-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-accent-600\\/0{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-accent-600\\/10{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-accent-600\\/100{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-accent-600\\/15{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-accent-600\\/20{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-accent-600\\/25{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-accent-600\\/30{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-accent-600\\/35{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-accent-600\\/40{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-accent-600\\/45{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-accent-600\\/5{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-accent-600\\/50{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-accent-600\\/55{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-accent-600\\/60{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-accent-600\\/65{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-accent-600\\/70{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-accent-600\\/75{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-accent-600\\/80{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-accent-600\\/85{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-accent-600\\/90{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-accent-600\\/95{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-accent-700{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / var(--tw-text-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-accent-700\\/0{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-accent-700\\/10{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-accent-700\\/100{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-accent-700\\/15{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-accent-700\\/20{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-accent-700\\/25{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-accent-700\\/30{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-accent-700\\/35{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-accent-700\\/40{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-accent-700\\/45{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-accent-700\\/5{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-accent-700\\/50{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-accent-700\\/55{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-accent-700\\/60{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-accent-700\\/65{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-accent-700\\/70{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-accent-700\\/75{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-accent-700\\/80{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-accent-700\\/85{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-accent-700\\/90{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-accent-700\\/95{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-accent-800{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / var(--tw-text-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-accent-800\\/0{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-accent-800\\/10{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-accent-800\\/100{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-accent-800\\/15{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-accent-800\\/20{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-accent-800\\/25{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-accent-800\\/30{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-accent-800\\/35{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-accent-800\\/40{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-accent-800\\/45{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-accent-800\\/5{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-accent-800\\/50{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-accent-800\\/55{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-accent-800\\/60{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-accent-800\\/65{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-accent-800\\/70{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-accent-800\\/75{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-accent-800\\/80{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-accent-800\\/85{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-accent-800\\/90{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-accent-800\\/95{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-accent-900{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / var(--tw-text-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-accent-900\\/0{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-accent-900\\/10{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-accent-900\\/100{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-accent-900\\/15{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-accent-900\\/20{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-accent-900\\/25{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-accent-900\\/30{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-accent-900\\/35{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-accent-900\\/40{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-accent-900\\/45{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-accent-900\\/5{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-accent-900\\/50{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-accent-900\\/55{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-accent-900\\/60{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-accent-900\\/65{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-accent-900\\/70{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-accent-900\\/75{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-accent-900\\/80{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-accent-900\\/85{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-accent-900\\/90{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-accent-900\\/95{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-accent-950{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / var(--tw-text-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-accent-950\\/0{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-accent-950\\/10{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-accent-950\\/100{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-accent-950\\/15{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-accent-950\\/20{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-accent-950\\/25{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-accent-950\\/30{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-accent-950\\/35{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-accent-950\\/40{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-accent-950\\/45{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-accent-950\\/5{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-accent-950\\/50{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-accent-950\\/55{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-accent-950\\/60{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-accent-950\\/65{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-accent-950\\/70{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-accent-950\\/75{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-accent-950\\/80{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-accent-950\\/85{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-accent-950\\/90{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-accent-950\\/95{\ncolor: color-mix(in lab, color(from var(--accent) srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-avacado{\n--tw-text-opacity: 1;\ncolor: rgb(70 167 88 / var(--tw-text-opacity));\n}\n.text-avacado-100{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / var(--tw-text-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-avacado-100\\/0{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-avacado-100\\/10{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-avacado-100\\/100{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-avacado-100\\/15{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-avacado-100\\/20{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-avacado-100\\/25{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-avacado-100\\/30{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-avacado-100\\/35{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-avacado-100\\/40{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-avacado-100\\/45{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-avacado-100\\/5{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-avacado-100\\/50{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-avacado-100\\/55{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-avacado-100\\/60{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-avacado-100\\/65{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-avacado-100\\/70{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-avacado-100\\/75{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-avacado-100\\/80{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-avacado-100\\/85{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-avacado-100\\/90{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-avacado-100\\/95{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-avacado-200{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / var(--tw-text-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-avacado-200\\/0{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-avacado-200\\/10{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-avacado-200\\/100{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-avacado-200\\/15{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-avacado-200\\/20{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-avacado-200\\/25{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-avacado-200\\/30{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-avacado-200\\/35{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-avacado-200\\/40{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-avacado-200\\/45{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-avacado-200\\/5{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-avacado-200\\/50{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-avacado-200\\/55{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-avacado-200\\/60{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-avacado-200\\/65{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-avacado-200\\/70{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-avacado-200\\/75{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-avacado-200\\/80{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-avacado-200\\/85{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-avacado-200\\/90{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-avacado-200\\/95{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-avacado-300{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / var(--tw-text-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-avacado-300\\/0{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-avacado-300\\/10{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-avacado-300\\/100{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-avacado-300\\/15{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-avacado-300\\/20{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-avacado-300\\/25{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-avacado-300\\/30{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-avacado-300\\/35{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-avacado-300\\/40{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-avacado-300\\/45{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-avacado-300\\/5{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-avacado-300\\/50{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-avacado-300\\/55{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-avacado-300\\/60{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-avacado-300\\/65{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-avacado-300\\/70{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-avacado-300\\/75{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-avacado-300\\/80{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-avacado-300\\/85{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-avacado-300\\/90{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-avacado-300\\/95{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-avacado-400{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / var(--tw-text-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-avacado-400\\/0{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-avacado-400\\/10{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-avacado-400\\/100{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-avacado-400\\/15{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-avacado-400\\/20{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-avacado-400\\/25{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-avacado-400\\/30{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-avacado-400\\/35{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-avacado-400\\/40{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-avacado-400\\/45{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-avacado-400\\/5{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-avacado-400\\/50{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-avacado-400\\/55{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-avacado-400\\/60{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-avacado-400\\/65{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-avacado-400\\/70{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-avacado-400\\/75{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-avacado-400\\/80{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-avacado-400\\/85{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-avacado-400\\/90{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-avacado-400\\/95{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-avacado-50{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / var(--tw-text-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-avacado-50\\/0{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-avacado-50\\/10{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-avacado-50\\/100{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-avacado-50\\/15{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-avacado-50\\/20{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-avacado-50\\/25{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-avacado-50\\/30{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-avacado-50\\/35{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-avacado-50\\/40{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-avacado-50\\/45{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-avacado-50\\/5{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-avacado-50\\/50{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-avacado-50\\/55{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-avacado-50\\/60{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-avacado-50\\/65{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-avacado-50\\/70{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-avacado-50\\/75{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-avacado-50\\/80{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-avacado-50\\/85{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-avacado-50\\/90{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-avacado-50\\/95{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-avacado-500{\n--tw-text-opacity: 1;\ncolor: color(from #46a758 srgb r g b / var(--tw-text-opacity));\n}\n.text-avacado-500\\/0{\ncolor: color(from #46a758 srgb r g b / 0);\n}\n.text-avacado-500\\/10{\ncolor: color(from #46a758 srgb r g b / 0.1);\n}\n.text-avacado-500\\/100{\ncolor: color(from #46a758 srgb r g b / 1);\n}\n.text-avacado-500\\/15{\ncolor: color(from #46a758 srgb r g b / 0.15);\n}\n.text-avacado-500\\/20{\ncolor: color(from #46a758 srgb r g b / 0.2);\n}\n.text-avacado-500\\/25{\ncolor: color(from #46a758 srgb r g b / 0.25);\n}\n.text-avacado-500\\/30{\ncolor: color(from #46a758 srgb r g b / 0.3);\n}\n.text-avacado-500\\/35{\ncolor: color(from #46a758 srgb r g b / 0.35);\n}\n.text-avacado-500\\/40{\ncolor: color(from #46a758 srgb r g b / 0.4);\n}\n.text-avacado-500\\/45{\ncolor: color(from #46a758 srgb r g b / 0.45);\n}\n.text-avacado-500\\/5{\ncolor: color(from #46a758 srgb r g b / 0.05);\n}\n.text-avacado-500\\/50{\ncolor: color(from #46a758 srgb r g b / 0.5);\n}\n.text-avacado-500\\/55{\ncolor: color(from #46a758 srgb r g b / 0.55);\n}\n.text-avacado-500\\/60{\ncolor: color(from #46a758 srgb r g b / 0.6);\n}\n.text-avacado-500\\/65{\ncolor: color(from #46a758 srgb r g b / 0.65);\n}\n.text-avacado-500\\/70{\ncolor: color(from #46a758 srgb r g b / 0.7);\n}\n.text-avacado-500\\/75{\ncolor: color(from #46a758 srgb r g b / 0.75);\n}\n.text-avacado-500\\/80{\ncolor: color(from #46a758 srgb r g b / 0.8);\n}\n.text-avacado-500\\/85{\ncolor: color(from #46a758 srgb r g b / 0.85);\n}\n.text-avacado-500\\/90{\ncolor: color(from #46a758 srgb r g b / 0.9);\n}\n.text-avacado-500\\/95{\ncolor: color(from #46a758 srgb r g b / 0.95);\n}\n.text-avacado-600{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / var(--tw-text-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-avacado-600\\/0{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-avacado-600\\/10{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-avacado-600\\/100{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-avacado-600\\/15{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-avacado-600\\/20{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-avacado-600\\/25{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-avacado-600\\/30{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-avacado-600\\/35{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-avacado-600\\/40{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-avacado-600\\/45{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-avacado-600\\/5{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-avacado-600\\/50{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-avacado-600\\/55{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-avacado-600\\/60{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-avacado-600\\/65{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-avacado-600\\/70{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-avacado-600\\/75{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-avacado-600\\/80{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-avacado-600\\/85{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-avacado-600\\/90{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-avacado-600\\/95{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-avacado-700{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / var(--tw-text-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-avacado-700\\/0{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-avacado-700\\/10{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-avacado-700\\/100{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-avacado-700\\/15{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-avacado-700\\/20{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-avacado-700\\/25{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-avacado-700\\/30{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-avacado-700\\/35{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-avacado-700\\/40{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-avacado-700\\/45{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-avacado-700\\/5{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-avacado-700\\/50{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-avacado-700\\/55{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-avacado-700\\/60{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-avacado-700\\/65{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-avacado-700\\/70{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-avacado-700\\/75{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-avacado-700\\/80{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-avacado-700\\/85{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-avacado-700\\/90{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-avacado-700\\/95{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-avacado-800{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / var(--tw-text-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-avacado-800\\/0{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-avacado-800\\/10{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-avacado-800\\/100{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-avacado-800\\/15{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-avacado-800\\/20{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-avacado-800\\/25{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-avacado-800\\/30{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-avacado-800\\/35{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-avacado-800\\/40{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-avacado-800\\/45{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-avacado-800\\/5{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-avacado-800\\/50{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-avacado-800\\/55{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-avacado-800\\/60{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-avacado-800\\/65{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-avacado-800\\/70{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-avacado-800\\/75{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-avacado-800\\/80{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-avacado-800\\/85{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-avacado-800\\/90{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-avacado-800\\/95{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-avacado-900{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / var(--tw-text-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-avacado-900\\/0{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-avacado-900\\/10{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-avacado-900\\/100{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-avacado-900\\/15{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-avacado-900\\/20{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-avacado-900\\/25{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-avacado-900\\/30{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-avacado-900\\/35{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-avacado-900\\/40{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-avacado-900\\/45{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-avacado-900\\/5{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-avacado-900\\/50{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-avacado-900\\/55{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-avacado-900\\/60{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-avacado-900\\/65{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-avacado-900\\/70{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-avacado-900\\/75{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-avacado-900\\/80{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-avacado-900\\/85{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-avacado-900\\/90{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-avacado-900\\/95{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-avacado-950{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / var(--tw-text-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-avacado-950\\/0{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-avacado-950\\/10{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-avacado-950\\/100{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-avacado-950\\/15{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-avacado-950\\/20{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-avacado-950\\/25{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-avacado-950\\/30{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-avacado-950\\/35{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-avacado-950\\/40{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-avacado-950\\/45{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-avacado-950\\/5{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-avacado-950\\/50{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-avacado-950\\/55{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-avacado-950\\/60{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-avacado-950\\/65{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-avacado-950\\/70{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-avacado-950\\/75{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-avacado-950\\/80{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-avacado-950\\/85{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-avacado-950\\/90{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-avacado-950\\/95{\ncolor: color-mix(in lab, color(from #46a758 srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-avacado\\/0{\ncolor: rgb(70 167 88 / 0);\n}\n.text-avacado\\/10{\ncolor: rgb(70 167 88 / 0.1);\n}\n.text-avacado\\/100{\ncolor: rgb(70 167 88 / 1);\n}\n.text-avacado\\/15{\ncolor: rgb(70 167 88 / 0.15);\n}\n.text-avacado\\/20{\ncolor: rgb(70 167 88 / 0.2);\n}\n.text-avacado\\/25{\ncolor: rgb(70 167 88 / 0.25);\n}\n.text-avacado\\/30{\ncolor: rgb(70 167 88 / 0.3);\n}\n.text-avacado\\/35{\ncolor: rgb(70 167 88 / 0.35);\n}\n.text-avacado\\/40{\ncolor: rgb(70 167 88 / 0.4);\n}\n.text-avacado\\/45{\ncolor: rgb(70 167 88 / 0.45);\n}\n.text-avacado\\/5{\ncolor: rgb(70 167 88 / 0.05);\n}\n.text-avacado\\/50{\ncolor: rgb(70 167 88 / 0.5);\n}\n.text-avacado\\/55{\ncolor: rgb(70 167 88 / 0.55);\n}\n.text-avacado\\/60{\ncolor: rgb(70 167 88 / 0.6);\n}\n.text-avacado\\/65{\ncolor: rgb(70 167 88 / 0.65);\n}\n.text-avacado\\/70{\ncolor: rgb(70 167 88 / 0.7);\n}\n.text-avacado\\/75{\ncolor: rgb(70 167 88 / 0.75);\n}\n.text-avacado\\/80{\ncolor: rgb(70 167 88 / 0.8);\n}\n.text-avacado\\/85{\ncolor: rgb(70 167 88 / 0.85);\n}\n.text-avacado\\/90{\ncolor: rgb(70 167 88 / 0.9);\n}\n.text-avacado\\/95{\ncolor: rgb(70 167 88 / 0.95);\n}\n.text-base{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)) 95%, color(from var(--tint) srgb r g b / var(--tw-text-opacity)));\n}\n.text-base\\/0{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0) 95%, color(from var(--tint) srgb r g b / 0));\n}\n.text-base\\/10{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.1) 95%, color(from var(--tint) srgb r g b / 0.1));\n}\n.text-base\\/100{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 1) 95%, color(from var(--tint) srgb r g b / 1));\n}\n.text-base\\/15{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.15) 95%, color(from var(--tint) srgb r g b / 0.15));\n}\n.text-base\\/20{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.2) 95%, color(from var(--tint) srgb r g b / 0.2));\n}\n.text-base\\/25{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.25) 95%, color(from var(--tint) srgb r g b / 0.25));\n}\n.text-base\\/30{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.3) 95%, color(from var(--tint) srgb r g b / 0.3));\n}\n.text-base\\/35{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.35) 95%, color(from var(--tint) srgb r g b / 0.35));\n}\n.text-base\\/40{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.4) 95%, color(from var(--tint) srgb r g b / 0.4));\n}\n.text-base\\/45{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.45) 95%, color(from var(--tint) srgb r g b / 0.45));\n}\n.text-base\\/5{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.05) 95%, color(from var(--tint) srgb r g b / 0.05));\n}\n.text-base\\/50{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.5) 95%, color(from var(--tint) srgb r g b / 0.5));\n}\n.text-base\\/55{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.55) 95%, color(from var(--tint) srgb r g b / 0.55));\n}\n.text-base\\/60{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.6) 95%, color(from var(--tint) srgb r g b / 0.6));\n}\n.text-base\\/65{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.65) 95%, color(from var(--tint) srgb r g b / 0.65));\n}\n.text-base\\/70{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.7) 95%, color(from var(--tint) srgb r g b / 0.7));\n}\n.text-base\\/75{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.75) 95%, color(from var(--tint) srgb r g b / 0.75));\n}\n.text-base\\/80{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.8) 95%, color(from var(--tint) srgb r g b / 0.8));\n}\n.text-base\\/85{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.85) 95%, color(from var(--tint) srgb r g b / 0.85));\n}\n.text-base\\/90{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.9) 95%, color(from var(--tint) srgb r g b / 0.9));\n}\n.text-base\\/95{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.95) 95%, color(from var(--tint) srgb r g b / 0.95));\n}\n.text-black{\n--tw-text-opacity: 1;\ncolor: rgb(25 26 27 / var(--tw-text-opacity));\n}\n.text-black\\/0{\ncolor: rgb(25 26 27 / 0);\n}\n.text-black\\/10{\ncolor: rgb(25 26 27 / 0.1);\n}\n.text-black\\/100{\ncolor: rgb(25 26 27 / 1);\n}\n.text-black\\/15{\ncolor: rgb(25 26 27 / 0.15);\n}\n.text-black\\/20{\ncolor: rgb(25 26 27 / 0.2);\n}\n.text-black\\/25{\ncolor: rgb(25 26 27 / 0.25);\n}\n.text-black\\/30{\ncolor: rgb(25 26 27 / 0.3);\n}\n.text-black\\/35{\ncolor: rgb(25 26 27 / 0.35);\n}\n.text-black\\/40{\ncolor: rgb(25 26 27 / 0.4);\n}\n.text-black\\/45{\ncolor: rgb(25 26 27 / 0.45);\n}\n.text-black\\/5{\ncolor: rgb(25 26 27 / 0.05);\n}\n.text-black\\/50{\ncolor: rgb(25 26 27 / 0.5);\n}\n.text-black\\/55{\ncolor: rgb(25 26 27 / 0.55);\n}\n.text-black\\/60{\ncolor: rgb(25 26 27 / 0.6);\n}\n.text-black\\/65{\ncolor: rgb(25 26 27 / 0.65);\n}\n.text-black\\/70{\ncolor: rgb(25 26 27 / 0.7);\n}\n.text-black\\/75{\ncolor: rgb(25 26 27 / 0.75);\n}\n.text-black\\/80{\ncolor: rgb(25 26 27 / 0.8);\n}\n.text-black\\/85{\ncolor: rgb(25 26 27 / 0.85);\n}\n.text-black\\/90{\ncolor: rgb(25 26 27 / 0.9);\n}\n.text-black\\/95{\ncolor: rgb(25 26 27 / 0.95);\n}\n.text-coral{\n--tw-text-opacity: 1;\ncolor: rgb(233 61 130 / var(--tw-text-opacity));\n}\n.text-coral-100{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / var(--tw-text-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-coral-100\\/0{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-coral-100\\/10{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-coral-100\\/100{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-coral-100\\/15{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-coral-100\\/20{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-coral-100\\/25{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-coral-100\\/30{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-coral-100\\/35{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-coral-100\\/40{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-coral-100\\/45{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-coral-100\\/5{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-coral-100\\/50{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-coral-100\\/55{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-coral-100\\/60{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-coral-100\\/65{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-coral-100\\/70{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-coral-100\\/75{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-coral-100\\/80{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-coral-100\\/85{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-coral-100\\/90{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-coral-100\\/95{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-coral-200{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / var(--tw-text-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-coral-200\\/0{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-coral-200\\/10{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-coral-200\\/100{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-coral-200\\/15{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-coral-200\\/20{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-coral-200\\/25{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-coral-200\\/30{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-coral-200\\/35{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-coral-200\\/40{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-coral-200\\/45{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-coral-200\\/5{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-coral-200\\/50{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-coral-200\\/55{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-coral-200\\/60{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-coral-200\\/65{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-coral-200\\/70{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-coral-200\\/75{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-coral-200\\/80{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-coral-200\\/85{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-coral-200\\/90{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-coral-200\\/95{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-coral-300{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / var(--tw-text-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-coral-300\\/0{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-coral-300\\/10{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-coral-300\\/100{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-coral-300\\/15{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-coral-300\\/20{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-coral-300\\/25{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-coral-300\\/30{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-coral-300\\/35{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-coral-300\\/40{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-coral-300\\/45{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-coral-300\\/5{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-coral-300\\/50{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-coral-300\\/55{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-coral-300\\/60{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-coral-300\\/65{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-coral-300\\/70{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-coral-300\\/75{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-coral-300\\/80{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-coral-300\\/85{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-coral-300\\/90{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-coral-300\\/95{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-coral-400{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / var(--tw-text-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-coral-400\\/0{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-coral-400\\/10{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-coral-400\\/100{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-coral-400\\/15{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-coral-400\\/20{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-coral-400\\/25{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-coral-400\\/30{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-coral-400\\/35{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-coral-400\\/40{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-coral-400\\/45{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-coral-400\\/5{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-coral-400\\/50{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-coral-400\\/55{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-coral-400\\/60{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-coral-400\\/65{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-coral-400\\/70{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-coral-400\\/75{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-coral-400\\/80{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-coral-400\\/85{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-coral-400\\/90{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-coral-400\\/95{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-coral-50{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / var(--tw-text-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-coral-50\\/0{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-coral-50\\/10{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-coral-50\\/100{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-coral-50\\/15{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-coral-50\\/20{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-coral-50\\/25{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-coral-50\\/30{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-coral-50\\/35{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-coral-50\\/40{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-coral-50\\/45{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-coral-50\\/5{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-coral-50\\/50{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-coral-50\\/55{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-coral-50\\/60{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-coral-50\\/65{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-coral-50\\/70{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-coral-50\\/75{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-coral-50\\/80{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-coral-50\\/85{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-coral-50\\/90{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-coral-50\\/95{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-coral-500{\n--tw-text-opacity: 1;\ncolor: color(from #e93d82 srgb r g b / var(--tw-text-opacity));\n}\n.text-coral-500\\/0{\ncolor: color(from #e93d82 srgb r g b / 0);\n}\n.text-coral-500\\/10{\ncolor: color(from #e93d82 srgb r g b / 0.1);\n}\n.text-coral-500\\/100{\ncolor: color(from #e93d82 srgb r g b / 1);\n}\n.text-coral-500\\/15{\ncolor: color(from #e93d82 srgb r g b / 0.15);\n}\n.text-coral-500\\/20{\ncolor: color(from #e93d82 srgb r g b / 0.2);\n}\n.text-coral-500\\/25{\ncolor: color(from #e93d82 srgb r g b / 0.25);\n}\n.text-coral-500\\/30{\ncolor: color(from #e93d82 srgb r g b / 0.3);\n}\n.text-coral-500\\/35{\ncolor: color(from #e93d82 srgb r g b / 0.35);\n}\n.text-coral-500\\/40{\ncolor: color(from #e93d82 srgb r g b / 0.4);\n}\n.text-coral-500\\/45{\ncolor: color(from #e93d82 srgb r g b / 0.45);\n}\n.text-coral-500\\/5{\ncolor: color(from #e93d82 srgb r g b / 0.05);\n}\n.text-coral-500\\/50{\ncolor: color(from #e93d82 srgb r g b / 0.5);\n}\n.text-coral-500\\/55{\ncolor: color(from #e93d82 srgb r g b / 0.55);\n}\n.text-coral-500\\/60{\ncolor: color(from #e93d82 srgb r g b / 0.6);\n}\n.text-coral-500\\/65{\ncolor: color(from #e93d82 srgb r g b / 0.65);\n}\n.text-coral-500\\/70{\ncolor: color(from #e93d82 srgb r g b / 0.7);\n}\n.text-coral-500\\/75{\ncolor: color(from #e93d82 srgb r g b / 0.75);\n}\n.text-coral-500\\/80{\ncolor: color(from #e93d82 srgb r g b / 0.8);\n}\n.text-coral-500\\/85{\ncolor: color(from #e93d82 srgb r g b / 0.85);\n}\n.text-coral-500\\/90{\ncolor: color(from #e93d82 srgb r g b / 0.9);\n}\n.text-coral-500\\/95{\ncolor: color(from #e93d82 srgb r g b / 0.95);\n}\n.text-coral-600{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / var(--tw-text-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-coral-600\\/0{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-coral-600\\/10{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-coral-600\\/100{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-coral-600\\/15{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-coral-600\\/20{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-coral-600\\/25{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-coral-600\\/30{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-coral-600\\/35{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-coral-600\\/40{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-coral-600\\/45{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-coral-600\\/5{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-coral-600\\/50{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-coral-600\\/55{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-coral-600\\/60{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-coral-600\\/65{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-coral-600\\/70{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-coral-600\\/75{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-coral-600\\/80{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-coral-600\\/85{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-coral-600\\/90{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-coral-600\\/95{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-coral-700{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / var(--tw-text-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-coral-700\\/0{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-coral-700\\/10{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-coral-700\\/100{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-coral-700\\/15{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-coral-700\\/20{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-coral-700\\/25{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-coral-700\\/30{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-coral-700\\/35{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-coral-700\\/40{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-coral-700\\/45{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-coral-700\\/5{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-coral-700\\/50{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-coral-700\\/55{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-coral-700\\/60{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-coral-700\\/65{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-coral-700\\/70{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-coral-700\\/75{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-coral-700\\/80{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-coral-700\\/85{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-coral-700\\/90{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-coral-700\\/95{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-coral-800{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / var(--tw-text-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-coral-800\\/0{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-coral-800\\/10{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-coral-800\\/100{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-coral-800\\/15{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-coral-800\\/20{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-coral-800\\/25{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-coral-800\\/30{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-coral-800\\/35{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-coral-800\\/40{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-coral-800\\/45{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-coral-800\\/5{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-coral-800\\/50{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-coral-800\\/55{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-coral-800\\/60{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-coral-800\\/65{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-coral-800\\/70{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-coral-800\\/75{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-coral-800\\/80{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-coral-800\\/85{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-coral-800\\/90{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-coral-800\\/95{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-coral-900{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / var(--tw-text-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-coral-900\\/0{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-coral-900\\/10{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-coral-900\\/100{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-coral-900\\/15{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-coral-900\\/20{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-coral-900\\/25{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-coral-900\\/30{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-coral-900\\/35{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-coral-900\\/40{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-coral-900\\/45{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-coral-900\\/5{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-coral-900\\/50{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-coral-900\\/55{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-coral-900\\/60{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-coral-900\\/65{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-coral-900\\/70{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-coral-900\\/75{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-coral-900\\/80{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-coral-900\\/85{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-coral-900\\/90{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-coral-900\\/95{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-coral-950{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / var(--tw-text-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-coral-950\\/0{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-coral-950\\/10{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-coral-950\\/100{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-coral-950\\/15{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-coral-950\\/20{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-coral-950\\/25{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-coral-950\\/30{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-coral-950\\/35{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-coral-950\\/40{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-coral-950\\/45{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-coral-950\\/5{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-coral-950\\/50{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-coral-950\\/55{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-coral-950\\/60{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-coral-950\\/65{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-coral-950\\/70{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-coral-950\\/75{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-coral-950\\/80{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-coral-950\\/85{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-coral-950\\/90{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-coral-950\\/95{\ncolor: color-mix(in lab, color(from #e93d82 srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-coral\\/0{\ncolor: rgb(233 61 130 / 0);\n}\n.text-coral\\/10{\ncolor: rgb(233 61 130 / 0.1);\n}\n.text-coral\\/100{\ncolor: rgb(233 61 130 / 1);\n}\n.text-coral\\/15{\ncolor: rgb(233 61 130 / 0.15);\n}\n.text-coral\\/20{\ncolor: rgb(233 61 130 / 0.2);\n}\n.text-coral\\/25{\ncolor: rgb(233 61 130 / 0.25);\n}\n.text-coral\\/30{\ncolor: rgb(233 61 130 / 0.3);\n}\n.text-coral\\/35{\ncolor: rgb(233 61 130 / 0.35);\n}\n.text-coral\\/40{\ncolor: rgb(233 61 130 / 0.4);\n}\n.text-coral\\/45{\ncolor: rgb(233 61 130 / 0.45);\n}\n.text-coral\\/5{\ncolor: rgb(233 61 130 / 0.05);\n}\n.text-coral\\/50{\ncolor: rgb(233 61 130 / 0.5);\n}\n.text-coral\\/55{\ncolor: rgb(233 61 130 / 0.55);\n}\n.text-coral\\/60{\ncolor: rgb(233 61 130 / 0.6);\n}\n.text-coral\\/65{\ncolor: rgb(233 61 130 / 0.65);\n}\n.text-coral\\/70{\ncolor: rgb(233 61 130 / 0.7);\n}\n.text-coral\\/75{\ncolor: rgb(233 61 130 / 0.75);\n}\n.text-coral\\/80{\ncolor: rgb(233 61 130 / 0.8);\n}\n.text-coral\\/85{\ncolor: rgb(233 61 130 / 0.85);\n}\n.text-coral\\/90{\ncolor: rgb(233 61 130 / 0.9);\n}\n.text-coral\\/95{\ncolor: rgb(233 61 130 / 0.95);\n}\n.text-danger{\n--tw-text-opacity: 1;\ncolor: rgb(242 76 61 / var(--tw-text-opacity));\n}\n.text-danger-100{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / var(--tw-text-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-danger-100\\/0{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-danger-100\\/10{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-danger-100\\/100{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-danger-100\\/15{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-danger-100\\/20{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-danger-100\\/25{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-danger-100\\/30{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-danger-100\\/35{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-danger-100\\/40{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-danger-100\\/45{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-danger-100\\/5{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-danger-100\\/50{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-danger-100\\/55{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-danger-100\\/60{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-danger-100\\/65{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-danger-100\\/70{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-danger-100\\/75{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-danger-100\\/80{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-danger-100\\/85{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-danger-100\\/90{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-danger-100\\/95{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-danger-200{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / var(--tw-text-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-danger-200\\/0{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-danger-200\\/10{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-danger-200\\/100{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-danger-200\\/15{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-danger-200\\/20{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-danger-200\\/25{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-danger-200\\/30{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-danger-200\\/35{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-danger-200\\/40{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-danger-200\\/45{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-danger-200\\/5{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-danger-200\\/50{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-danger-200\\/55{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-danger-200\\/60{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-danger-200\\/65{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-danger-200\\/70{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-danger-200\\/75{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-danger-200\\/80{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-danger-200\\/85{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-danger-200\\/90{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-danger-200\\/95{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-danger-300{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / var(--tw-text-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-danger-300\\/0{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-danger-300\\/10{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-danger-300\\/100{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-danger-300\\/15{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-danger-300\\/20{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-danger-300\\/25{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-danger-300\\/30{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-danger-300\\/35{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-danger-300\\/40{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-danger-300\\/45{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-danger-300\\/5{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-danger-300\\/50{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-danger-300\\/55{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-danger-300\\/60{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-danger-300\\/65{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-danger-300\\/70{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-danger-300\\/75{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-danger-300\\/80{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-danger-300\\/85{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-danger-300\\/90{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-danger-300\\/95{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-danger-400{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / var(--tw-text-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-danger-400\\/0{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-danger-400\\/10{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-danger-400\\/100{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-danger-400\\/15{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-danger-400\\/20{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-danger-400\\/25{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-danger-400\\/30{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-danger-400\\/35{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-danger-400\\/40{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-danger-400\\/45{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-danger-400\\/5{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-danger-400\\/50{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-danger-400\\/55{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-danger-400\\/60{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-danger-400\\/65{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-danger-400\\/70{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-danger-400\\/75{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-danger-400\\/80{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-danger-400\\/85{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-danger-400\\/90{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-danger-400\\/95{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-danger-50{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / var(--tw-text-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-danger-50\\/0{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-danger-50\\/10{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-danger-50\\/100{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-danger-50\\/15{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-danger-50\\/20{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-danger-50\\/25{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-danger-50\\/30{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-danger-50\\/35{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-danger-50\\/40{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-danger-50\\/45{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-danger-50\\/5{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-danger-50\\/50{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-danger-50\\/55{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-danger-50\\/60{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-danger-50\\/65{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-danger-50\\/70{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-danger-50\\/75{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-danger-50\\/80{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-danger-50\\/85{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-danger-50\\/90{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-danger-50\\/95{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-danger-500{\n--tw-text-opacity: 1;\ncolor: color(from #f24c3d srgb r g b / var(--tw-text-opacity));\n}\n.text-danger-500\\/0{\ncolor: color(from #f24c3d srgb r g b / 0);\n}\n.text-danger-500\\/10{\ncolor: color(from #f24c3d srgb r g b / 0.1);\n}\n.text-danger-500\\/100{\ncolor: color(from #f24c3d srgb r g b / 1);\n}\n.text-danger-500\\/15{\ncolor: color(from #f24c3d srgb r g b / 0.15);\n}\n.text-danger-500\\/20{\ncolor: color(from #f24c3d srgb r g b / 0.2);\n}\n.text-danger-500\\/25{\ncolor: color(from #f24c3d srgb r g b / 0.25);\n}\n.text-danger-500\\/30{\ncolor: color(from #f24c3d srgb r g b / 0.3);\n}\n.text-danger-500\\/35{\ncolor: color(from #f24c3d srgb r g b / 0.35);\n}\n.text-danger-500\\/40{\ncolor: color(from #f24c3d srgb r g b / 0.4);\n}\n.text-danger-500\\/45{\ncolor: color(from #f24c3d srgb r g b / 0.45);\n}\n.text-danger-500\\/5{\ncolor: color(from #f24c3d srgb r g b / 0.05);\n}\n.text-danger-500\\/50{\ncolor: color(from #f24c3d srgb r g b / 0.5);\n}\n.text-danger-500\\/55{\ncolor: color(from #f24c3d srgb r g b / 0.55);\n}\n.text-danger-500\\/60{\ncolor: color(from #f24c3d srgb r g b / 0.6);\n}\n.text-danger-500\\/65{\ncolor: color(from #f24c3d srgb r g b / 0.65);\n}\n.text-danger-500\\/70{\ncolor: color(from #f24c3d srgb r g b / 0.7);\n}\n.text-danger-500\\/75{\ncolor: color(from #f24c3d srgb r g b / 0.75);\n}\n.text-danger-500\\/80{\ncolor: color(from #f24c3d srgb r g b / 0.8);\n}\n.text-danger-500\\/85{\ncolor: color(from #f24c3d srgb r g b / 0.85);\n}\n.text-danger-500\\/90{\ncolor: color(from #f24c3d srgb r g b / 0.9);\n}\n.text-danger-500\\/95{\ncolor: color(from #f24c3d srgb r g b / 0.95);\n}\n.text-danger-600{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / var(--tw-text-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-danger-600\\/0{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-danger-600\\/10{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-danger-600\\/100{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-danger-600\\/15{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-danger-600\\/20{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-danger-600\\/25{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-danger-600\\/30{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-danger-600\\/35{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-danger-600\\/40{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-danger-600\\/45{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-danger-600\\/5{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-danger-600\\/50{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-danger-600\\/55{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-danger-600\\/60{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-danger-600\\/65{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-danger-600\\/70{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-danger-600\\/75{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-danger-600\\/80{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-danger-600\\/85{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-danger-600\\/90{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-danger-600\\/95{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-danger-700{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / var(--tw-text-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-danger-700\\/0{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-danger-700\\/10{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-danger-700\\/100{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-danger-700\\/15{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-danger-700\\/20{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-danger-700\\/25{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-danger-700\\/30{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-danger-700\\/35{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-danger-700\\/40{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-danger-700\\/45{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-danger-700\\/5{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-danger-700\\/50{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-danger-700\\/55{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-danger-700\\/60{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-danger-700\\/65{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-danger-700\\/70{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-danger-700\\/75{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-danger-700\\/80{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-danger-700\\/85{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-danger-700\\/90{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-danger-700\\/95{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-danger-800{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / var(--tw-text-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-danger-800\\/0{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-danger-800\\/10{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-danger-800\\/100{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-danger-800\\/15{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-danger-800\\/20{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-danger-800\\/25{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-danger-800\\/30{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-danger-800\\/35{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-danger-800\\/40{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-danger-800\\/45{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-danger-800\\/5{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-danger-800\\/50{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-danger-800\\/55{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-danger-800\\/60{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-danger-800\\/65{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-danger-800\\/70{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-danger-800\\/75{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-danger-800\\/80{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-danger-800\\/85{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-danger-800\\/90{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-danger-800\\/95{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-danger-900{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / var(--tw-text-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-danger-900\\/0{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-danger-900\\/10{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-danger-900\\/100{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-danger-900\\/15{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-danger-900\\/20{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-danger-900\\/25{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-danger-900\\/30{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-danger-900\\/35{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-danger-900\\/40{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-danger-900\\/45{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-danger-900\\/5{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-danger-900\\/50{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-danger-900\\/55{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-danger-900\\/60{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-danger-900\\/65{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-danger-900\\/70{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-danger-900\\/75{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-danger-900\\/80{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-danger-900\\/85{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-danger-900\\/90{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-danger-900\\/95{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-danger-950{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / var(--tw-text-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-danger-950\\/0{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-danger-950\\/10{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-danger-950\\/100{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-danger-950\\/15{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-danger-950\\/20{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-danger-950\\/25{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-danger-950\\/30{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-danger-950\\/35{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-danger-950\\/40{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-danger-950\\/45{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-danger-950\\/5{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-danger-950\\/50{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-danger-950\\/55{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-danger-950\\/60{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-danger-950\\/65{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-danger-950\\/70{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-danger-950\\/75{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-danger-950\\/80{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-danger-950\\/85{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-danger-950\\/90{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-danger-950\\/95{\ncolor: color-mix(in lab, color(from #f24c3d srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-danger\\/0{\ncolor: rgb(242 76 61 / 0);\n}\n.text-danger\\/10{\ncolor: rgb(242 76 61 / 0.1);\n}\n.text-danger\\/100{\ncolor: rgb(242 76 61 / 1);\n}\n.text-danger\\/15{\ncolor: rgb(242 76 61 / 0.15);\n}\n.text-danger\\/20{\ncolor: rgb(242 76 61 / 0.2);\n}\n.text-danger\\/25{\ncolor: rgb(242 76 61 / 0.25);\n}\n.text-danger\\/30{\ncolor: rgb(242 76 61 / 0.3);\n}\n.text-danger\\/35{\ncolor: rgb(242 76 61 / 0.35);\n}\n.text-danger\\/40{\ncolor: rgb(242 76 61 / 0.4);\n}\n.text-danger\\/45{\ncolor: rgb(242 76 61 / 0.45);\n}\n.text-danger\\/5{\ncolor: rgb(242 76 61 / 0.05);\n}\n.text-danger\\/50{\ncolor: rgb(242 76 61 / 0.5);\n}\n.text-danger\\/55{\ncolor: rgb(242 76 61 / 0.55);\n}\n.text-danger\\/60{\ncolor: rgb(242 76 61 / 0.6);\n}\n.text-danger\\/65{\ncolor: rgb(242 76 61 / 0.65);\n}\n.text-danger\\/70{\ncolor: rgb(242 76 61 / 0.7);\n}\n.text-danger\\/75{\ncolor: rgb(242 76 61 / 0.75);\n}\n.text-danger\\/80{\ncolor: rgb(242 76 61 / 0.8);\n}\n.text-danger\\/85{\ncolor: rgb(242 76 61 / 0.85);\n}\n.text-danger\\/90{\ncolor: rgb(242 76 61 / 0.9);\n}\n.text-danger\\/95{\ncolor: rgb(242 76 61 / 0.95);\n}\n.text-dark{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from var(--black) srgb r g b / var(--tw-text-opacity)) 75%, color(from var(--tint) srgb r g b / var(--tw-text-opacity)));\n}\n.text-dark\\/0{\ncolor: color-mix(in lab, color(from var(--black) srgb r g b / 0) 75%, color(from var(--tint) srgb r g b / 0));\n}\n.text-dark\\/10{\ncolor: color-mix(in lab, color(from var(--black) srgb r g b / 0.1) 75%, color(from var(--tint) srgb r g b / 0.1));\n}\n.text-dark\\/100{\ncolor: color-mix(in lab, color(from var(--black) srgb r g b / 1) 75%, color(from var(--tint) srgb r g b / 1));\n}\n.text-dark\\/15{\ncolor: color-mix(in lab, color(from var(--black) srgb r g b / 0.15) 75%, color(from var(--tint) srgb r g b / 0.15));\n}\n.text-dark\\/20{\ncolor: color-mix(in lab, color(from var(--black) srgb r g b / 0.2) 75%, color(from var(--tint) srgb r g b / 0.2));\n}\n.text-dark\\/25{\ncolor: color-mix(in lab, color(from var(--black) srgb r g b / 0.25) 75%, color(from var(--tint) srgb r g b / 0.25));\n}\n.text-dark\\/30{\ncolor: color-mix(in lab, color(from var(--black) srgb r g b / 0.3) 75%, color(from var(--tint) srgb r g b / 0.3));\n}\n.text-dark\\/35{\ncolor: color-mix(in lab, color(from var(--black) srgb r g b / 0.35) 75%, color(from var(--tint) srgb r g b / 0.35));\n}\n.text-dark\\/40{\ncolor: color-mix(in lab, color(from var(--black) srgb r g b / 0.4) 75%, color(from var(--tint) srgb r g b / 0.4));\n}\n.text-dark\\/45{\ncolor: color-mix(in lab, color(from var(--black) srgb r g b / 0.45) 75%, color(from var(--tint) srgb r g b / 0.45));\n}\n.text-dark\\/5{\ncolor: color-mix(in lab, color(from var(--black) srgb r g b / 0.05) 75%, color(from var(--tint) srgb r g b / 0.05));\n}\n.text-dark\\/50{\ncolor: color-mix(in lab, color(from var(--black) srgb r g b / 0.5) 75%, color(from var(--tint) srgb r g b / 0.5));\n}\n.text-dark\\/55{\ncolor: color-mix(in lab, color(from var(--black) srgb r g b / 0.55) 75%, color(from var(--tint) srgb r g b / 0.55));\n}\n.text-dark\\/60{\ncolor: color-mix(in lab, color(from var(--black) srgb r g b / 0.6) 75%, color(from var(--tint) srgb r g b / 0.6));\n}\n.text-dark\\/65{\ncolor: color-mix(in lab, color(from var(--black) srgb r g b / 0.65) 75%, color(from var(--tint) srgb r g b / 0.65));\n}\n.text-dark\\/70{\ncolor: color-mix(in lab, color(from var(--black) srgb r g b / 0.7) 75%, color(from var(--tint) srgb r g b / 0.7));\n}\n.text-dark\\/75{\ncolor: color-mix(in lab, color(from var(--black) srgb r g b / 0.75) 75%, color(from var(--tint) srgb r g b / 0.75));\n}\n.text-dark\\/80{\ncolor: color-mix(in lab, color(from var(--black) srgb r g b / 0.8) 75%, color(from var(--tint) srgb r g b / 0.8));\n}\n.text-dark\\/85{\ncolor: color-mix(in lab, color(from var(--black) srgb r g b / 0.85) 75%, color(from var(--tint) srgb r g b / 0.85));\n}\n.text-dark\\/90{\ncolor: color-mix(in lab, color(from var(--black) srgb r g b / 0.9) 75%, color(from var(--tint) srgb r g b / 0.9));\n}\n.text-dark\\/95{\ncolor: color-mix(in lab, color(from var(--black) srgb r g b / 0.95) 75%, color(from var(--tint) srgb r g b / 0.95));\n}\n.text-denim{\n--tw-text-opacity: 1;\ncolor: rgb(1 144 255 / var(--tw-text-opacity));\n}\n.text-denim-100{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / var(--tw-text-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-denim-100\\/0{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-denim-100\\/10{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-denim-100\\/100{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-denim-100\\/15{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-denim-100\\/20{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-denim-100\\/25{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-denim-100\\/30{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-denim-100\\/35{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-denim-100\\/40{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-denim-100\\/45{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-denim-100\\/5{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-denim-100\\/50{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-denim-100\\/55{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-denim-100\\/60{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-denim-100\\/65{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-denim-100\\/70{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-denim-100\\/75{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-denim-100\\/80{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-denim-100\\/85{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-denim-100\\/90{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-denim-100\\/95{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-denim-200{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / var(--tw-text-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-denim-200\\/0{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-denim-200\\/10{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-denim-200\\/100{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-denim-200\\/15{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-denim-200\\/20{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-denim-200\\/25{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-denim-200\\/30{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-denim-200\\/35{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-denim-200\\/40{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-denim-200\\/45{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-denim-200\\/5{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-denim-200\\/50{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-denim-200\\/55{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-denim-200\\/60{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-denim-200\\/65{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-denim-200\\/70{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-denim-200\\/75{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-denim-200\\/80{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-denim-200\\/85{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-denim-200\\/90{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-denim-200\\/95{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-denim-300{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / var(--tw-text-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-denim-300\\/0{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-denim-300\\/10{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-denim-300\\/100{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-denim-300\\/15{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-denim-300\\/20{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-denim-300\\/25{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-denim-300\\/30{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-denim-300\\/35{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-denim-300\\/40{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-denim-300\\/45{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-denim-300\\/5{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-denim-300\\/50{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-denim-300\\/55{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-denim-300\\/60{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-denim-300\\/65{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-denim-300\\/70{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-denim-300\\/75{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-denim-300\\/80{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-denim-300\\/85{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-denim-300\\/90{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-denim-300\\/95{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-denim-400{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / var(--tw-text-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-denim-400\\/0{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-denim-400\\/10{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-denim-400\\/100{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-denim-400\\/15{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-denim-400\\/20{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-denim-400\\/25{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-denim-400\\/30{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-denim-400\\/35{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-denim-400\\/40{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-denim-400\\/45{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-denim-400\\/5{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-denim-400\\/50{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-denim-400\\/55{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-denim-400\\/60{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-denim-400\\/65{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-denim-400\\/70{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-denim-400\\/75{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-denim-400\\/80{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-denim-400\\/85{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-denim-400\\/90{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-denim-400\\/95{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-denim-50{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / var(--tw-text-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-denim-50\\/0{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-denim-50\\/10{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-denim-50\\/100{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-denim-50\\/15{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-denim-50\\/20{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-denim-50\\/25{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-denim-50\\/30{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-denim-50\\/35{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-denim-50\\/40{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-denim-50\\/45{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-denim-50\\/5{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-denim-50\\/50{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-denim-50\\/55{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-denim-50\\/60{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-denim-50\\/65{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-denim-50\\/70{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-denim-50\\/75{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-denim-50\\/80{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-denim-50\\/85{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-denim-50\\/90{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-denim-50\\/95{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-denim-500{\n--tw-text-opacity: 1;\ncolor: color(from #0190ff srgb r g b / var(--tw-text-opacity));\n}\n.text-denim-500\\/0{\ncolor: color(from #0190ff srgb r g b / 0);\n}\n.text-denim-500\\/10{\ncolor: color(from #0190ff srgb r g b / 0.1);\n}\n.text-denim-500\\/100{\ncolor: color(from #0190ff srgb r g b / 1);\n}\n.text-denim-500\\/15{\ncolor: color(from #0190ff srgb r g b / 0.15);\n}\n.text-denim-500\\/20{\ncolor: color(from #0190ff srgb r g b / 0.2);\n}\n.text-denim-500\\/25{\ncolor: color(from #0190ff srgb r g b / 0.25);\n}\n.text-denim-500\\/30{\ncolor: color(from #0190ff srgb r g b / 0.3);\n}\n.text-denim-500\\/35{\ncolor: color(from #0190ff srgb r g b / 0.35);\n}\n.text-denim-500\\/40{\ncolor: color(from #0190ff srgb r g b / 0.4);\n}\n.text-denim-500\\/45{\ncolor: color(from #0190ff srgb r g b / 0.45);\n}\n.text-denim-500\\/5{\ncolor: color(from #0190ff srgb r g b / 0.05);\n}\n.text-denim-500\\/50{\ncolor: color(from #0190ff srgb r g b / 0.5);\n}\n.text-denim-500\\/55{\ncolor: color(from #0190ff srgb r g b / 0.55);\n}\n.text-denim-500\\/60{\ncolor: color(from #0190ff srgb r g b / 0.6);\n}\n.text-denim-500\\/65{\ncolor: color(from #0190ff srgb r g b / 0.65);\n}\n.text-denim-500\\/70{\ncolor: color(from #0190ff srgb r g b / 0.7);\n}\n.text-denim-500\\/75{\ncolor: color(from #0190ff srgb r g b / 0.75);\n}\n.text-denim-500\\/80{\ncolor: color(from #0190ff srgb r g b / 0.8);\n}\n.text-denim-500\\/85{\ncolor: color(from #0190ff srgb r g b / 0.85);\n}\n.text-denim-500\\/90{\ncolor: color(from #0190ff srgb r g b / 0.9);\n}\n.text-denim-500\\/95{\ncolor: color(from #0190ff srgb r g b / 0.95);\n}\n.text-denim-600{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / var(--tw-text-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-denim-600\\/0{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-denim-600\\/10{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-denim-600\\/100{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-denim-600\\/15{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-denim-600\\/20{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-denim-600\\/25{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-denim-600\\/30{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-denim-600\\/35{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-denim-600\\/40{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-denim-600\\/45{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-denim-600\\/5{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-denim-600\\/50{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-denim-600\\/55{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-denim-600\\/60{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-denim-600\\/65{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-denim-600\\/70{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-denim-600\\/75{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-denim-600\\/80{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-denim-600\\/85{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-denim-600\\/90{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-denim-600\\/95{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-denim-700{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / var(--tw-text-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-denim-700\\/0{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-denim-700\\/10{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-denim-700\\/100{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-denim-700\\/15{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-denim-700\\/20{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-denim-700\\/25{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-denim-700\\/30{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-denim-700\\/35{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-denim-700\\/40{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-denim-700\\/45{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-denim-700\\/5{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-denim-700\\/50{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-denim-700\\/55{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-denim-700\\/60{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-denim-700\\/65{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-denim-700\\/70{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-denim-700\\/75{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-denim-700\\/80{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-denim-700\\/85{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-denim-700\\/90{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-denim-700\\/95{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-denim-800{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / var(--tw-text-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-denim-800\\/0{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-denim-800\\/10{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-denim-800\\/100{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-denim-800\\/15{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-denim-800\\/20{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-denim-800\\/25{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-denim-800\\/30{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-denim-800\\/35{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-denim-800\\/40{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-denim-800\\/45{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-denim-800\\/5{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-denim-800\\/50{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-denim-800\\/55{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-denim-800\\/60{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-denim-800\\/65{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-denim-800\\/70{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-denim-800\\/75{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-denim-800\\/80{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-denim-800\\/85{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-denim-800\\/90{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-denim-800\\/95{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-denim-900{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / var(--tw-text-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-denim-900\\/0{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-denim-900\\/10{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-denim-900\\/100{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-denim-900\\/15{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-denim-900\\/20{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-denim-900\\/25{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-denim-900\\/30{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-denim-900\\/35{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-denim-900\\/40{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-denim-900\\/45{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-denim-900\\/5{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-denim-900\\/50{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-denim-900\\/55{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-denim-900\\/60{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-denim-900\\/65{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-denim-900\\/70{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-denim-900\\/75{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-denim-900\\/80{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-denim-900\\/85{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-denim-900\\/90{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-denim-900\\/95{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-denim-950{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / var(--tw-text-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-denim-950\\/0{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-denim-950\\/10{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-denim-950\\/100{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-denim-950\\/15{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-denim-950\\/20{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-denim-950\\/25{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-denim-950\\/30{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-denim-950\\/35{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-denim-950\\/40{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-denim-950\\/45{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-denim-950\\/5{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-denim-950\\/50{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-denim-950\\/55{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-denim-950\\/60{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-denim-950\\/65{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-denim-950\\/70{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-denim-950\\/75{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-denim-950\\/80{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-denim-950\\/85{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-denim-950\\/90{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-denim-950\\/95{\ncolor: color-mix(in lab, color(from #0190ff srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-denim\\/0{\ncolor: rgb(1 144 255 / 0);\n}\n.text-denim\\/10{\ncolor: rgb(1 144 255 / 0.1);\n}\n.text-denim\\/100{\ncolor: rgb(1 144 255 / 1);\n}\n.text-denim\\/15{\ncolor: rgb(1 144 255 / 0.15);\n}\n.text-denim\\/20{\ncolor: rgb(1 144 255 / 0.2);\n}\n.text-denim\\/25{\ncolor: rgb(1 144 255 / 0.25);\n}\n.text-denim\\/30{\ncolor: rgb(1 144 255 / 0.3);\n}\n.text-denim\\/35{\ncolor: rgb(1 144 255 / 0.35);\n}\n.text-denim\\/40{\ncolor: rgb(1 144 255 / 0.4);\n}\n.text-denim\\/45{\ncolor: rgb(1 144 255 / 0.45);\n}\n.text-denim\\/5{\ncolor: rgb(1 144 255 / 0.05);\n}\n.text-denim\\/50{\ncolor: rgb(1 144 255 / 0.5);\n}\n.text-denim\\/55{\ncolor: rgb(1 144 255 / 0.55);\n}\n.text-denim\\/60{\ncolor: rgb(1 144 255 / 0.6);\n}\n.text-denim\\/65{\ncolor: rgb(1 144 255 / 0.65);\n}\n.text-denim\\/70{\ncolor: rgb(1 144 255 / 0.7);\n}\n.text-denim\\/75{\ncolor: rgb(1 144 255 / 0.75);\n}\n.text-denim\\/80{\ncolor: rgb(1 144 255 / 0.8);\n}\n.text-denim\\/85{\ncolor: rgb(1 144 255 / 0.85);\n}\n.text-denim\\/90{\ncolor: rgb(1 144 255 / 0.9);\n}\n.text-denim\\/95{\ncolor: rgb(1 144 255 / 0.95);\n}\n.text-dimmed{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)) 65%, color(from var(--tint) srgb r g b / var(--tw-text-opacity)));\n}\n.text-dimmed\\/0{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0) 65%, color(from var(--tint) srgb r g b / 0));\n}\n.text-dimmed\\/10{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.1) 65%, color(from var(--tint) srgb r g b / 0.1));\n}\n.text-dimmed\\/100{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 1) 65%, color(from var(--tint) srgb r g b / 1));\n}\n.text-dimmed\\/15{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.15) 65%, color(from var(--tint) srgb r g b / 0.15));\n}\n.text-dimmed\\/20{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.2) 65%, color(from var(--tint) srgb r g b / 0.2));\n}\n.text-dimmed\\/25{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.25) 65%, color(from var(--tint) srgb r g b / 0.25));\n}\n.text-dimmed\\/30{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.3) 65%, color(from var(--tint) srgb r g b / 0.3));\n}\n.text-dimmed\\/35{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.35) 65%, color(from var(--tint) srgb r g b / 0.35));\n}\n.text-dimmed\\/40{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.4) 65%, color(from var(--tint) srgb r g b / 0.4));\n}\n.text-dimmed\\/45{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.45) 65%, color(from var(--tint) srgb r g b / 0.45));\n}\n.text-dimmed\\/5{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.05) 65%, color(from var(--tint) srgb r g b / 0.05));\n}\n.text-dimmed\\/50{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.5) 65%, color(from var(--tint) srgb r g b / 0.5));\n}\n.text-dimmed\\/55{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.55) 65%, color(from var(--tint) srgb r g b / 0.55));\n}\n.text-dimmed\\/60{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.6) 65%, color(from var(--tint) srgb r g b / 0.6));\n}\n.text-dimmed\\/65{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.65) 65%, color(from var(--tint) srgb r g b / 0.65));\n}\n.text-dimmed\\/70{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.7) 65%, color(from var(--tint) srgb r g b / 0.7));\n}\n.text-dimmed\\/75{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.75) 65%, color(from var(--tint) srgb r g b / 0.75));\n}\n.text-dimmed\\/80{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.8) 65%, color(from var(--tint) srgb r g b / 0.8));\n}\n.text-dimmed\\/85{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.85) 65%, color(from var(--tint) srgb r g b / 0.85));\n}\n.text-dimmed\\/90{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.9) 65%, color(from var(--tint) srgb r g b / 0.9));\n}\n.text-dimmed\\/95{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.95) 65%, color(from var(--tint) srgb r g b / 0.95));\n}\n.text-gray{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)) 50%, color(from var(--tint) srgb r g b / var(--tw-text-opacity)));\n}\n.text-info{\n--tw-text-opacity: 1;\ncolor: rgb(0 191 255 / var(--tw-text-opacity));\n}\n.text-info-100{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / var(--tw-text-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-info-100\\/0{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-info-100\\/10{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-info-100\\/100{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-info-100\\/15{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-info-100\\/20{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-info-100\\/25{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-info-100\\/30{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-info-100\\/35{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-info-100\\/40{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-info-100\\/45{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-info-100\\/5{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-info-100\\/50{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-info-100\\/55{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-info-100\\/60{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-info-100\\/65{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-info-100\\/70{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-info-100\\/75{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-info-100\\/80{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-info-100\\/85{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-info-100\\/90{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-info-100\\/95{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-info-200{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / var(--tw-text-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-info-200\\/0{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-info-200\\/10{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-info-200\\/100{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-info-200\\/15{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-info-200\\/20{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-info-200\\/25{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-info-200\\/30{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-info-200\\/35{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-info-200\\/40{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-info-200\\/45{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-info-200\\/5{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-info-200\\/50{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-info-200\\/55{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-info-200\\/60{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-info-200\\/65{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-info-200\\/70{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-info-200\\/75{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-info-200\\/80{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-info-200\\/85{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-info-200\\/90{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-info-200\\/95{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-info-300{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / var(--tw-text-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-info-300\\/0{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-info-300\\/10{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-info-300\\/100{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-info-300\\/15{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-info-300\\/20{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-info-300\\/25{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-info-300\\/30{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-info-300\\/35{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-info-300\\/40{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-info-300\\/45{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-info-300\\/5{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-info-300\\/50{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-info-300\\/55{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-info-300\\/60{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-info-300\\/65{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-info-300\\/70{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-info-300\\/75{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-info-300\\/80{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-info-300\\/85{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-info-300\\/90{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-info-300\\/95{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-info-400{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / var(--tw-text-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-info-400\\/0{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-info-400\\/10{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-info-400\\/100{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-info-400\\/15{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-info-400\\/20{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-info-400\\/25{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-info-400\\/30{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-info-400\\/35{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-info-400\\/40{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-info-400\\/45{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-info-400\\/5{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-info-400\\/50{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-info-400\\/55{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-info-400\\/60{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-info-400\\/65{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-info-400\\/70{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-info-400\\/75{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-info-400\\/80{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-info-400\\/85{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-info-400\\/90{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-info-400\\/95{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-info-50{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / var(--tw-text-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-info-50\\/0{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-info-50\\/10{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-info-50\\/100{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-info-50\\/15{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-info-50\\/20{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-info-50\\/25{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-info-50\\/30{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-info-50\\/35{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-info-50\\/40{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-info-50\\/45{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-info-50\\/5{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-info-50\\/50{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-info-50\\/55{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-info-50\\/60{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-info-50\\/65{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-info-50\\/70{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-info-50\\/75{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-info-50\\/80{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-info-50\\/85{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-info-50\\/90{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-info-50\\/95{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-info-500{\n--tw-text-opacity: 1;\ncolor: color(from #00bfff srgb r g b / var(--tw-text-opacity));\n}\n.text-info-500\\/0{\ncolor: color(from #00bfff srgb r g b / 0);\n}\n.text-info-500\\/10{\ncolor: color(from #00bfff srgb r g b / 0.1);\n}\n.text-info-500\\/100{\ncolor: color(from #00bfff srgb r g b / 1);\n}\n.text-info-500\\/15{\ncolor: color(from #00bfff srgb r g b / 0.15);\n}\n.text-info-500\\/20{\ncolor: color(from #00bfff srgb r g b / 0.2);\n}\n.text-info-500\\/25{\ncolor: color(from #00bfff srgb r g b / 0.25);\n}\n.text-info-500\\/30{\ncolor: color(from #00bfff srgb r g b / 0.3);\n}\n.text-info-500\\/35{\ncolor: color(from #00bfff srgb r g b / 0.35);\n}\n.text-info-500\\/40{\ncolor: color(from #00bfff srgb r g b / 0.4);\n}\n.text-info-500\\/45{\ncolor: color(from #00bfff srgb r g b / 0.45);\n}\n.text-info-500\\/5{\ncolor: color(from #00bfff srgb r g b / 0.05);\n}\n.text-info-500\\/50{\ncolor: color(from #00bfff srgb r g b / 0.5);\n}\n.text-info-500\\/55{\ncolor: color(from #00bfff srgb r g b / 0.55);\n}\n.text-info-500\\/60{\ncolor: color(from #00bfff srgb r g b / 0.6);\n}\n.text-info-500\\/65{\ncolor: color(from #00bfff srgb r g b / 0.65);\n}\n.text-info-500\\/70{\ncolor: color(from #00bfff srgb r g b / 0.7);\n}\n.text-info-500\\/75{\ncolor: color(from #00bfff srgb r g b / 0.75);\n}\n.text-info-500\\/80{\ncolor: color(from #00bfff srgb r g b / 0.8);\n}\n.text-info-500\\/85{\ncolor: color(from #00bfff srgb r g b / 0.85);\n}\n.text-info-500\\/90{\ncolor: color(from #00bfff srgb r g b / 0.9);\n}\n.text-info-500\\/95{\ncolor: color(from #00bfff srgb r g b / 0.95);\n}\n.text-info-600{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / var(--tw-text-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-info-600\\/0{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-info-600\\/10{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-info-600\\/100{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-info-600\\/15{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-info-600\\/20{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-info-600\\/25{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-info-600\\/30{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-info-600\\/35{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-info-600\\/40{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-info-600\\/45{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-info-600\\/5{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-info-600\\/50{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-info-600\\/55{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-info-600\\/60{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-info-600\\/65{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-info-600\\/70{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-info-600\\/75{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-info-600\\/80{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-info-600\\/85{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-info-600\\/90{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-info-600\\/95{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-info-700{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / var(--tw-text-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-info-700\\/0{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-info-700\\/10{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-info-700\\/100{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-info-700\\/15{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-info-700\\/20{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-info-700\\/25{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-info-700\\/30{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-info-700\\/35{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-info-700\\/40{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-info-700\\/45{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-info-700\\/5{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-info-700\\/50{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-info-700\\/55{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-info-700\\/60{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-info-700\\/65{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-info-700\\/70{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-info-700\\/75{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-info-700\\/80{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-info-700\\/85{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-info-700\\/90{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-info-700\\/95{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-info-800{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / var(--tw-text-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-info-800\\/0{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-info-800\\/10{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-info-800\\/100{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-info-800\\/15{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-info-800\\/20{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-info-800\\/25{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-info-800\\/30{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-info-800\\/35{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-info-800\\/40{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-info-800\\/45{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-info-800\\/5{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-info-800\\/50{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-info-800\\/55{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-info-800\\/60{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-info-800\\/65{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-info-800\\/70{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-info-800\\/75{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-info-800\\/80{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-info-800\\/85{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-info-800\\/90{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-info-800\\/95{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-info-900{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / var(--tw-text-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-info-900\\/0{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-info-900\\/10{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-info-900\\/100{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-info-900\\/15{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-info-900\\/20{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-info-900\\/25{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-info-900\\/30{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-info-900\\/35{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-info-900\\/40{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-info-900\\/45{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-info-900\\/5{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-info-900\\/50{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-info-900\\/55{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-info-900\\/60{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-info-900\\/65{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-info-900\\/70{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-info-900\\/75{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-info-900\\/80{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-info-900\\/85{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-info-900\\/90{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-info-900\\/95{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-info-950{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / var(--tw-text-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-info-950\\/0{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-info-950\\/10{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-info-950\\/100{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-info-950\\/15{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-info-950\\/20{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-info-950\\/25{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-info-950\\/30{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-info-950\\/35{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-info-950\\/40{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-info-950\\/45{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-info-950\\/5{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-info-950\\/50{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-info-950\\/55{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-info-950\\/60{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-info-950\\/65{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-info-950\\/70{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-info-950\\/75{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-info-950\\/80{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-info-950\\/85{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-info-950\\/90{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-info-950\\/95{\ncolor: color-mix(in lab, color(from #00bfff srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-info\\/0{\ncolor: rgb(0 191 255 / 0);\n}\n.text-info\\/10{\ncolor: rgb(0 191 255 / 0.1);\n}\n.text-info\\/100{\ncolor: rgb(0 191 255 / 1);\n}\n.text-info\\/15{\ncolor: rgb(0 191 255 / 0.15);\n}\n.text-info\\/20{\ncolor: rgb(0 191 255 / 0.2);\n}\n.text-info\\/25{\ncolor: rgb(0 191 255 / 0.25);\n}\n.text-info\\/30{\ncolor: rgb(0 191 255 / 0.3);\n}\n.text-info\\/35{\ncolor: rgb(0 191 255 / 0.35);\n}\n.text-info\\/40{\ncolor: rgb(0 191 255 / 0.4);\n}\n.text-info\\/45{\ncolor: rgb(0 191 255 / 0.45);\n}\n.text-info\\/5{\ncolor: rgb(0 191 255 / 0.05);\n}\n.text-info\\/50{\ncolor: rgb(0 191 255 / 0.5);\n}\n.text-info\\/55{\ncolor: rgb(0 191 255 / 0.55);\n}\n.text-info\\/60{\ncolor: rgb(0 191 255 / 0.6);\n}\n.text-info\\/65{\ncolor: rgb(0 191 255 / 0.65);\n}\n.text-info\\/70{\ncolor: rgb(0 191 255 / 0.7);\n}\n.text-info\\/75{\ncolor: rgb(0 191 255 / 0.75);\n}\n.text-info\\/80{\ncolor: rgb(0 191 255 / 0.8);\n}\n.text-info\\/85{\ncolor: rgb(0 191 255 / 0.85);\n}\n.text-info\\/90{\ncolor: rgb(0 191 255 / 0.9);\n}\n.text-info\\/95{\ncolor: rgb(0 191 255 / 0.95);\n}\n.text-invert{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)) 5%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-invert\\/0{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0) 5%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-invert\\/10{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.1) 5%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-invert\\/100{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 1) 5%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-invert\\/15{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.15) 5%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-invert\\/20{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.2) 5%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-invert\\/25{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.25) 5%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-invert\\/30{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.3) 5%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-invert\\/35{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.35) 5%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-invert\\/40{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.4) 5%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-invert\\/45{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.45) 5%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-invert\\/5{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.05) 5%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-invert\\/50{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.5) 5%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-invert\\/55{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.55) 5%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-invert\\/60{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.6) 5%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-invert\\/65{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.65) 5%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-invert\\/70{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.7) 5%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-invert\\/75{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.75) 5%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-invert\\/80{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.8) 5%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-invert\\/85{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.85) 5%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-invert\\/90{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.9) 5%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-invert\\/95{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.95) 5%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-iris{\n--tw-text-opacity: 1;\ncolor: rgb(91 91 214 / var(--tw-text-opacity));\n}\n.text-iris-100{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / var(--tw-text-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-iris-100\\/0{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-iris-100\\/10{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-iris-100\\/100{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-iris-100\\/15{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-iris-100\\/20{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-iris-100\\/25{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-iris-100\\/30{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-iris-100\\/35{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-iris-100\\/40{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-iris-100\\/45{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-iris-100\\/5{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-iris-100\\/50{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-iris-100\\/55{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-iris-100\\/60{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-iris-100\\/65{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-iris-100\\/70{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-iris-100\\/75{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-iris-100\\/80{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-iris-100\\/85{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-iris-100\\/90{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-iris-100\\/95{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-iris-200{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / var(--tw-text-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-iris-200\\/0{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-iris-200\\/10{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-iris-200\\/100{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-iris-200\\/15{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-iris-200\\/20{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-iris-200\\/25{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-iris-200\\/30{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-iris-200\\/35{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-iris-200\\/40{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-iris-200\\/45{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-iris-200\\/5{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-iris-200\\/50{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-iris-200\\/55{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-iris-200\\/60{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-iris-200\\/65{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-iris-200\\/70{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-iris-200\\/75{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-iris-200\\/80{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-iris-200\\/85{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-iris-200\\/90{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-iris-200\\/95{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-iris-300{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / var(--tw-text-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-iris-300\\/0{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-iris-300\\/10{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-iris-300\\/100{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-iris-300\\/15{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-iris-300\\/20{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-iris-300\\/25{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-iris-300\\/30{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-iris-300\\/35{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-iris-300\\/40{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-iris-300\\/45{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-iris-300\\/5{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-iris-300\\/50{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-iris-300\\/55{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-iris-300\\/60{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-iris-300\\/65{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-iris-300\\/70{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-iris-300\\/75{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-iris-300\\/80{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-iris-300\\/85{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-iris-300\\/90{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-iris-300\\/95{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-iris-400{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / var(--tw-text-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-iris-400\\/0{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-iris-400\\/10{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-iris-400\\/100{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-iris-400\\/15{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-iris-400\\/20{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-iris-400\\/25{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-iris-400\\/30{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-iris-400\\/35{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-iris-400\\/40{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-iris-400\\/45{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-iris-400\\/5{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-iris-400\\/50{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-iris-400\\/55{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-iris-400\\/60{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-iris-400\\/65{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-iris-400\\/70{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-iris-400\\/75{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-iris-400\\/80{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-iris-400\\/85{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-iris-400\\/90{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-iris-400\\/95{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-iris-50{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / var(--tw-text-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-iris-50\\/0{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-iris-50\\/10{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-iris-50\\/100{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-iris-50\\/15{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-iris-50\\/20{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-iris-50\\/25{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-iris-50\\/30{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-iris-50\\/35{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-iris-50\\/40{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-iris-50\\/45{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-iris-50\\/5{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-iris-50\\/50{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-iris-50\\/55{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-iris-50\\/60{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-iris-50\\/65{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-iris-50\\/70{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-iris-50\\/75{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-iris-50\\/80{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-iris-50\\/85{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-iris-50\\/90{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-iris-50\\/95{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-iris-500{\n--tw-text-opacity: 1;\ncolor: color(from #5b5bd6 srgb r g b / var(--tw-text-opacity));\n}\n.text-iris-500\\/0{\ncolor: color(from #5b5bd6 srgb r g b / 0);\n}\n.text-iris-500\\/10{\ncolor: color(from #5b5bd6 srgb r g b / 0.1);\n}\n.text-iris-500\\/100{\ncolor: color(from #5b5bd6 srgb r g b / 1);\n}\n.text-iris-500\\/15{\ncolor: color(from #5b5bd6 srgb r g b / 0.15);\n}\n.text-iris-500\\/20{\ncolor: color(from #5b5bd6 srgb r g b / 0.2);\n}\n.text-iris-500\\/25{\ncolor: color(from #5b5bd6 srgb r g b / 0.25);\n}\n.text-iris-500\\/30{\ncolor: color(from #5b5bd6 srgb r g b / 0.3);\n}\n.text-iris-500\\/35{\ncolor: color(from #5b5bd6 srgb r g b / 0.35);\n}\n.text-iris-500\\/40{\ncolor: color(from #5b5bd6 srgb r g b / 0.4);\n}\n.text-iris-500\\/45{\ncolor: color(from #5b5bd6 srgb r g b / 0.45);\n}\n.text-iris-500\\/5{\ncolor: color(from #5b5bd6 srgb r g b / 0.05);\n}\n.text-iris-500\\/50{\ncolor: color(from #5b5bd6 srgb r g b / 0.5);\n}\n.text-iris-500\\/55{\ncolor: color(from #5b5bd6 srgb r g b / 0.55);\n}\n.text-iris-500\\/60{\ncolor: color(from #5b5bd6 srgb r g b / 0.6);\n}\n.text-iris-500\\/65{\ncolor: color(from #5b5bd6 srgb r g b / 0.65);\n}\n.text-iris-500\\/70{\ncolor: color(from #5b5bd6 srgb r g b / 0.7);\n}\n.text-iris-500\\/75{\ncolor: color(from #5b5bd6 srgb r g b / 0.75);\n}\n.text-iris-500\\/80{\ncolor: color(from #5b5bd6 srgb r g b / 0.8);\n}\n.text-iris-500\\/85{\ncolor: color(from #5b5bd6 srgb r g b / 0.85);\n}\n.text-iris-500\\/90{\ncolor: color(from #5b5bd6 srgb r g b / 0.9);\n}\n.text-iris-500\\/95{\ncolor: color(from #5b5bd6 srgb r g b / 0.95);\n}\n.text-iris-600{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / var(--tw-text-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-iris-600\\/0{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-iris-600\\/10{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-iris-600\\/100{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-iris-600\\/15{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-iris-600\\/20{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-iris-600\\/25{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-iris-600\\/30{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-iris-600\\/35{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-iris-600\\/40{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-iris-600\\/45{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-iris-600\\/5{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-iris-600\\/50{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-iris-600\\/55{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-iris-600\\/60{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-iris-600\\/65{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-iris-600\\/70{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-iris-600\\/75{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-iris-600\\/80{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-iris-600\\/85{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-iris-600\\/90{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-iris-600\\/95{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-iris-700{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / var(--tw-text-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-iris-700\\/0{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-iris-700\\/10{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-iris-700\\/100{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-iris-700\\/15{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-iris-700\\/20{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-iris-700\\/25{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-iris-700\\/30{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-iris-700\\/35{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-iris-700\\/40{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-iris-700\\/45{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-iris-700\\/5{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-iris-700\\/50{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-iris-700\\/55{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-iris-700\\/60{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-iris-700\\/65{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-iris-700\\/70{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-iris-700\\/75{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-iris-700\\/80{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-iris-700\\/85{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-iris-700\\/90{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-iris-700\\/95{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-iris-800{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / var(--tw-text-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-iris-800\\/0{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-iris-800\\/10{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-iris-800\\/100{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-iris-800\\/15{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-iris-800\\/20{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-iris-800\\/25{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-iris-800\\/30{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-iris-800\\/35{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-iris-800\\/40{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-iris-800\\/45{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-iris-800\\/5{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-iris-800\\/50{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-iris-800\\/55{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-iris-800\\/60{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-iris-800\\/65{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-iris-800\\/70{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-iris-800\\/75{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-iris-800\\/80{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-iris-800\\/85{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-iris-800\\/90{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-iris-800\\/95{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-iris-900{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / var(--tw-text-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-iris-900\\/0{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-iris-900\\/10{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-iris-900\\/100{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-iris-900\\/15{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-iris-900\\/20{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-iris-900\\/25{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-iris-900\\/30{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-iris-900\\/35{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-iris-900\\/40{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-iris-900\\/45{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-iris-900\\/5{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-iris-900\\/50{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-iris-900\\/55{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-iris-900\\/60{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-iris-900\\/65{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-iris-900\\/70{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-iris-900\\/75{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-iris-900\\/80{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-iris-900\\/85{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-iris-900\\/90{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-iris-900\\/95{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-iris-950{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / var(--tw-text-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-iris-950\\/0{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-iris-950\\/10{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-iris-950\\/100{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-iris-950\\/15{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-iris-950\\/20{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-iris-950\\/25{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-iris-950\\/30{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-iris-950\\/35{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-iris-950\\/40{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-iris-950\\/45{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-iris-950\\/5{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-iris-950\\/50{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-iris-950\\/55{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-iris-950\\/60{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-iris-950\\/65{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-iris-950\\/70{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-iris-950\\/75{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-iris-950\\/80{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-iris-950\\/85{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-iris-950\\/90{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-iris-950\\/95{\ncolor: color-mix(in lab, color(from #5b5bd6 srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-iris\\/0{\ncolor: rgb(91 91 214 / 0);\n}\n.text-iris\\/10{\ncolor: rgb(91 91 214 / 0.1);\n}\n.text-iris\\/100{\ncolor: rgb(91 91 214 / 1);\n}\n.text-iris\\/15{\ncolor: rgb(91 91 214 / 0.15);\n}\n.text-iris\\/20{\ncolor: rgb(91 91 214 / 0.2);\n}\n.text-iris\\/25{\ncolor: rgb(91 91 214 / 0.25);\n}\n.text-iris\\/30{\ncolor: rgb(91 91 214 / 0.3);\n}\n.text-iris\\/35{\ncolor: rgb(91 91 214 / 0.35);\n}\n.text-iris\\/40{\ncolor: rgb(91 91 214 / 0.4);\n}\n.text-iris\\/45{\ncolor: rgb(91 91 214 / 0.45);\n}\n.text-iris\\/5{\ncolor: rgb(91 91 214 / 0.05);\n}\n.text-iris\\/50{\ncolor: rgb(91 91 214 / 0.5);\n}\n.text-iris\\/55{\ncolor: rgb(91 91 214 / 0.55);\n}\n.text-iris\\/60{\ncolor: rgb(91 91 214 / 0.6);\n}\n.text-iris\\/65{\ncolor: rgb(91 91 214 / 0.65);\n}\n.text-iris\\/70{\ncolor: rgb(91 91 214 / 0.7);\n}\n.text-iris\\/75{\ncolor: rgb(91 91 214 / 0.75);\n}\n.text-iris\\/80{\ncolor: rgb(91 91 214 / 0.8);\n}\n.text-iris\\/85{\ncolor: rgb(91 91 214 / 0.85);\n}\n.text-iris\\/90{\ncolor: rgb(91 91 214 / 0.9);\n}\n.text-iris\\/95{\ncolor: rgb(91 91 214 / 0.95);\n}\n.text-jade{\n--tw-text-opacity: 1;\ncolor: rgb(41 163 131 / var(--tw-text-opacity));\n}\n.text-jade-100{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / var(--tw-text-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-jade-100\\/0{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-jade-100\\/10{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-jade-100\\/100{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-jade-100\\/15{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-jade-100\\/20{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-jade-100\\/25{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-jade-100\\/30{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-jade-100\\/35{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-jade-100\\/40{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-jade-100\\/45{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-jade-100\\/5{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-jade-100\\/50{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-jade-100\\/55{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-jade-100\\/60{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-jade-100\\/65{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-jade-100\\/70{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-jade-100\\/75{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-jade-100\\/80{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-jade-100\\/85{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-jade-100\\/90{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-jade-100\\/95{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-jade-200{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / var(--tw-text-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-jade-200\\/0{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-jade-200\\/10{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-jade-200\\/100{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-jade-200\\/15{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-jade-200\\/20{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-jade-200\\/25{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-jade-200\\/30{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-jade-200\\/35{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-jade-200\\/40{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-jade-200\\/45{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-jade-200\\/5{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-jade-200\\/50{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-jade-200\\/55{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-jade-200\\/60{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-jade-200\\/65{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-jade-200\\/70{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-jade-200\\/75{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-jade-200\\/80{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-jade-200\\/85{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-jade-200\\/90{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-jade-200\\/95{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-jade-300{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / var(--tw-text-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-jade-300\\/0{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-jade-300\\/10{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-jade-300\\/100{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-jade-300\\/15{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-jade-300\\/20{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-jade-300\\/25{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-jade-300\\/30{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-jade-300\\/35{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-jade-300\\/40{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-jade-300\\/45{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-jade-300\\/5{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-jade-300\\/50{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-jade-300\\/55{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-jade-300\\/60{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-jade-300\\/65{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-jade-300\\/70{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-jade-300\\/75{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-jade-300\\/80{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-jade-300\\/85{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-jade-300\\/90{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-jade-300\\/95{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-jade-400{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / var(--tw-text-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-jade-400\\/0{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-jade-400\\/10{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-jade-400\\/100{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-jade-400\\/15{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-jade-400\\/20{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-jade-400\\/25{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-jade-400\\/30{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-jade-400\\/35{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-jade-400\\/40{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-jade-400\\/45{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-jade-400\\/5{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-jade-400\\/50{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-jade-400\\/55{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-jade-400\\/60{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-jade-400\\/65{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-jade-400\\/70{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-jade-400\\/75{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-jade-400\\/80{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-jade-400\\/85{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-jade-400\\/90{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-jade-400\\/95{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-jade-50{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / var(--tw-text-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-jade-50\\/0{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-jade-50\\/10{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-jade-50\\/100{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-jade-50\\/15{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-jade-50\\/20{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-jade-50\\/25{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-jade-50\\/30{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-jade-50\\/35{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-jade-50\\/40{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-jade-50\\/45{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-jade-50\\/5{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-jade-50\\/50{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-jade-50\\/55{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-jade-50\\/60{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-jade-50\\/65{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-jade-50\\/70{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-jade-50\\/75{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-jade-50\\/80{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-jade-50\\/85{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-jade-50\\/90{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-jade-50\\/95{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-jade-500{\n--tw-text-opacity: 1;\ncolor: color(from #29a383 srgb r g b / var(--tw-text-opacity));\n}\n.text-jade-500\\/0{\ncolor: color(from #29a383 srgb r g b / 0);\n}\n.text-jade-500\\/10{\ncolor: color(from #29a383 srgb r g b / 0.1);\n}\n.text-jade-500\\/100{\ncolor: color(from #29a383 srgb r g b / 1);\n}\n.text-jade-500\\/15{\ncolor: color(from #29a383 srgb r g b / 0.15);\n}\n.text-jade-500\\/20{\ncolor: color(from #29a383 srgb r g b / 0.2);\n}\n.text-jade-500\\/25{\ncolor: color(from #29a383 srgb r g b / 0.25);\n}\n.text-jade-500\\/30{\ncolor: color(from #29a383 srgb r g b / 0.3);\n}\n.text-jade-500\\/35{\ncolor: color(from #29a383 srgb r g b / 0.35);\n}\n.text-jade-500\\/40{\ncolor: color(from #29a383 srgb r g b / 0.4);\n}\n.text-jade-500\\/45{\ncolor: color(from #29a383 srgb r g b / 0.45);\n}\n.text-jade-500\\/5{\ncolor: color(from #29a383 srgb r g b / 0.05);\n}\n.text-jade-500\\/50{\ncolor: color(from #29a383 srgb r g b / 0.5);\n}\n.text-jade-500\\/55{\ncolor: color(from #29a383 srgb r g b / 0.55);\n}\n.text-jade-500\\/60{\ncolor: color(from #29a383 srgb r g b / 0.6);\n}\n.text-jade-500\\/65{\ncolor: color(from #29a383 srgb r g b / 0.65);\n}\n.text-jade-500\\/70{\ncolor: color(from #29a383 srgb r g b / 0.7);\n}\n.text-jade-500\\/75{\ncolor: color(from #29a383 srgb r g b / 0.75);\n}\n.text-jade-500\\/80{\ncolor: color(from #29a383 srgb r g b / 0.8);\n}\n.text-jade-500\\/85{\ncolor: color(from #29a383 srgb r g b / 0.85);\n}\n.text-jade-500\\/90{\ncolor: color(from #29a383 srgb r g b / 0.9);\n}\n.text-jade-500\\/95{\ncolor: color(from #29a383 srgb r g b / 0.95);\n}\n.text-jade-600{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / var(--tw-text-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-jade-600\\/0{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-jade-600\\/10{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-jade-600\\/100{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-jade-600\\/15{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-jade-600\\/20{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-jade-600\\/25{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-jade-600\\/30{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-jade-600\\/35{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-jade-600\\/40{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-jade-600\\/45{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-jade-600\\/5{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-jade-600\\/50{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-jade-600\\/55{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-jade-600\\/60{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-jade-600\\/65{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-jade-600\\/70{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-jade-600\\/75{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-jade-600\\/80{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-jade-600\\/85{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-jade-600\\/90{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-jade-600\\/95{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-jade-700{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / var(--tw-text-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-jade-700\\/0{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-jade-700\\/10{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-jade-700\\/100{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-jade-700\\/15{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-jade-700\\/20{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-jade-700\\/25{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-jade-700\\/30{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-jade-700\\/35{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-jade-700\\/40{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-jade-700\\/45{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-jade-700\\/5{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-jade-700\\/50{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-jade-700\\/55{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-jade-700\\/60{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-jade-700\\/65{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-jade-700\\/70{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-jade-700\\/75{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-jade-700\\/80{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-jade-700\\/85{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-jade-700\\/90{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-jade-700\\/95{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-jade-800{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / var(--tw-text-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-jade-800\\/0{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-jade-800\\/10{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-jade-800\\/100{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-jade-800\\/15{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-jade-800\\/20{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-jade-800\\/25{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-jade-800\\/30{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-jade-800\\/35{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-jade-800\\/40{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-jade-800\\/45{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-jade-800\\/5{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-jade-800\\/50{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-jade-800\\/55{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-jade-800\\/60{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-jade-800\\/65{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-jade-800\\/70{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-jade-800\\/75{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-jade-800\\/80{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-jade-800\\/85{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-jade-800\\/90{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-jade-800\\/95{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-jade-900{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / var(--tw-text-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-jade-900\\/0{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-jade-900\\/10{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-jade-900\\/100{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-jade-900\\/15{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-jade-900\\/20{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-jade-900\\/25{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-jade-900\\/30{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-jade-900\\/35{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-jade-900\\/40{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-jade-900\\/45{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-jade-900\\/5{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-jade-900\\/50{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-jade-900\\/55{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-jade-900\\/60{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-jade-900\\/65{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-jade-900\\/70{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-jade-900\\/75{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-jade-900\\/80{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-jade-900\\/85{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-jade-900\\/90{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-jade-900\\/95{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-jade-950{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / var(--tw-text-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-jade-950\\/0{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-jade-950\\/10{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-jade-950\\/100{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-jade-950\\/15{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-jade-950\\/20{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-jade-950\\/25{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-jade-950\\/30{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-jade-950\\/35{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-jade-950\\/40{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-jade-950\\/45{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-jade-950\\/5{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-jade-950\\/50{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-jade-950\\/55{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-jade-950\\/60{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-jade-950\\/65{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-jade-950\\/70{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-jade-950\\/75{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-jade-950\\/80{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-jade-950\\/85{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-jade-950\\/90{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-jade-950\\/95{\ncolor: color-mix(in lab, color(from #29a383 srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-jade\\/0{\ncolor: rgb(41 163 131 / 0);\n}\n.text-jade\\/10{\ncolor: rgb(41 163 131 / 0.1);\n}\n.text-jade\\/100{\ncolor: rgb(41 163 131 / 1);\n}\n.text-jade\\/15{\ncolor: rgb(41 163 131 / 0.15);\n}\n.text-jade\\/20{\ncolor: rgb(41 163 131 / 0.2);\n}\n.text-jade\\/25{\ncolor: rgb(41 163 131 / 0.25);\n}\n.text-jade\\/30{\ncolor: rgb(41 163 131 / 0.3);\n}\n.text-jade\\/35{\ncolor: rgb(41 163 131 / 0.35);\n}\n.text-jade\\/40{\ncolor: rgb(41 163 131 / 0.4);\n}\n.text-jade\\/45{\ncolor: rgb(41 163 131 / 0.45);\n}\n.text-jade\\/5{\ncolor: rgb(41 163 131 / 0.05);\n}\n.text-jade\\/50{\ncolor: rgb(41 163 131 / 0.5);\n}\n.text-jade\\/55{\ncolor: rgb(41 163 131 / 0.55);\n}\n.text-jade\\/60{\ncolor: rgb(41 163 131 / 0.6);\n}\n.text-jade\\/65{\ncolor: rgb(41 163 131 / 0.65);\n}\n.text-jade\\/70{\ncolor: rgb(41 163 131 / 0.7);\n}\n.text-jade\\/75{\ncolor: rgb(41 163 131 / 0.75);\n}\n.text-jade\\/80{\ncolor: rgb(41 163 131 / 0.8);\n}\n.text-jade\\/85{\ncolor: rgb(41 163 131 / 0.85);\n}\n.text-jade\\/90{\ncolor: rgb(41 163 131 / 0.9);\n}\n.text-jade\\/95{\ncolor: rgb(41 163 131 / 0.95);\n}\n.text-light{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from var(--white) srgb r g b / var(--tw-text-opacity)) 75%, color(from var(--tint) srgb r g b / var(--tw-text-opacity)));\n}\n.text-light\\/0{\ncolor: color-mix(in lab, color(from var(--white) srgb r g b / 0) 75%, color(from var(--tint) srgb r g b / 0));\n}\n.text-light\\/10{\ncolor: color-mix(in lab, color(from var(--white) srgb r g b / 0.1) 75%, color(from var(--tint) srgb r g b / 0.1));\n}\n.text-light\\/100{\ncolor: color-mix(in lab, color(from var(--white) srgb r g b / 1) 75%, color(from var(--tint) srgb r g b / 1));\n}\n.text-light\\/15{\ncolor: color-mix(in lab, color(from var(--white) srgb r g b / 0.15) 75%, color(from var(--tint) srgb r g b / 0.15));\n}\n.text-light\\/20{\ncolor: color-mix(in lab, color(from var(--white) srgb r g b / 0.2) 75%, color(from var(--tint) srgb r g b / 0.2));\n}\n.text-light\\/25{\ncolor: color-mix(in lab, color(from var(--white) srgb r g b / 0.25) 75%, color(from var(--tint) srgb r g b / 0.25));\n}\n.text-light\\/30{\ncolor: color-mix(in lab, color(from var(--white) srgb r g b / 0.3) 75%, color(from var(--tint) srgb r g b / 0.3));\n}\n.text-light\\/35{\ncolor: color-mix(in lab, color(from var(--white) srgb r g b / 0.35) 75%, color(from var(--tint) srgb r g b / 0.35));\n}\n.text-light\\/40{\ncolor: color-mix(in lab, color(from var(--white) srgb r g b / 0.4) 75%, color(from var(--tint) srgb r g b / 0.4));\n}\n.text-light\\/45{\ncolor: color-mix(in lab, color(from var(--white) srgb r g b / 0.45) 75%, color(from var(--tint) srgb r g b / 0.45));\n}\n.text-light\\/5{\ncolor: color-mix(in lab, color(from var(--white) srgb r g b / 0.05) 75%, color(from var(--tint) srgb r g b / 0.05));\n}\n.text-light\\/50{\ncolor: color-mix(in lab, color(from var(--white) srgb r g b / 0.5) 75%, color(from var(--tint) srgb r g b / 0.5));\n}\n.text-light\\/55{\ncolor: color-mix(in lab, color(from var(--white) srgb r g b / 0.55) 75%, color(from var(--tint) srgb r g b / 0.55));\n}\n.text-light\\/60{\ncolor: color-mix(in lab, color(from var(--white) srgb r g b / 0.6) 75%, color(from var(--tint) srgb r g b / 0.6));\n}\n.text-light\\/65{\ncolor: color-mix(in lab, color(from var(--white) srgb r g b / 0.65) 75%, color(from var(--tint) srgb r g b / 0.65));\n}\n.text-light\\/70{\ncolor: color-mix(in lab, color(from var(--white) srgb r g b / 0.7) 75%, color(from var(--tint) srgb r g b / 0.7));\n}\n.text-light\\/75{\ncolor: color-mix(in lab, color(from var(--white) srgb r g b / 0.75) 75%, color(from var(--tint) srgb r g b / 0.75));\n}\n.text-light\\/80{\ncolor: color-mix(in lab, color(from var(--white) srgb r g b / 0.8) 75%, color(from var(--tint) srgb r g b / 0.8));\n}\n.text-light\\/85{\ncolor: color-mix(in lab, color(from var(--white) srgb r g b / 0.85) 75%, color(from var(--tint) srgb r g b / 0.85));\n}\n.text-light\\/90{\ncolor: color-mix(in lab, color(from var(--white) srgb r g b / 0.9) 75%, color(from var(--tint) srgb r g b / 0.9));\n}\n.text-light\\/95{\ncolor: color-mix(in lab, color(from var(--white) srgb r g b / 0.95) 75%, color(from var(--tint) srgb r g b / 0.95));\n}\n.text-lilac{\n--tw-text-opacity: 1;\ncolor: rgb(142 78 198 / var(--tw-text-opacity));\n}\n.text-lilac-100{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / var(--tw-text-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-lilac-100\\/0{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-lilac-100\\/10{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-lilac-100\\/100{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-lilac-100\\/15{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-lilac-100\\/20{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-lilac-100\\/25{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-lilac-100\\/30{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-lilac-100\\/35{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-lilac-100\\/40{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-lilac-100\\/45{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-lilac-100\\/5{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-lilac-100\\/50{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-lilac-100\\/55{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-lilac-100\\/60{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-lilac-100\\/65{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-lilac-100\\/70{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-lilac-100\\/75{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-lilac-100\\/80{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-lilac-100\\/85{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-lilac-100\\/90{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-lilac-100\\/95{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-lilac-200{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / var(--tw-text-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-lilac-200\\/0{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-lilac-200\\/10{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-lilac-200\\/100{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-lilac-200\\/15{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-lilac-200\\/20{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-lilac-200\\/25{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-lilac-200\\/30{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-lilac-200\\/35{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-lilac-200\\/40{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-lilac-200\\/45{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-lilac-200\\/5{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-lilac-200\\/50{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-lilac-200\\/55{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-lilac-200\\/60{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-lilac-200\\/65{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-lilac-200\\/70{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-lilac-200\\/75{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-lilac-200\\/80{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-lilac-200\\/85{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-lilac-200\\/90{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-lilac-200\\/95{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-lilac-300{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / var(--tw-text-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-lilac-300\\/0{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-lilac-300\\/10{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-lilac-300\\/100{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-lilac-300\\/15{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-lilac-300\\/20{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-lilac-300\\/25{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-lilac-300\\/30{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-lilac-300\\/35{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-lilac-300\\/40{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-lilac-300\\/45{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-lilac-300\\/5{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-lilac-300\\/50{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-lilac-300\\/55{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-lilac-300\\/60{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-lilac-300\\/65{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-lilac-300\\/70{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-lilac-300\\/75{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-lilac-300\\/80{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-lilac-300\\/85{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-lilac-300\\/90{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-lilac-300\\/95{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-lilac-400{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / var(--tw-text-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-lilac-400\\/0{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-lilac-400\\/10{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-lilac-400\\/100{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-lilac-400\\/15{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-lilac-400\\/20{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-lilac-400\\/25{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-lilac-400\\/30{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-lilac-400\\/35{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-lilac-400\\/40{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-lilac-400\\/45{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-lilac-400\\/5{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-lilac-400\\/50{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-lilac-400\\/55{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-lilac-400\\/60{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-lilac-400\\/65{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-lilac-400\\/70{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-lilac-400\\/75{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-lilac-400\\/80{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-lilac-400\\/85{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-lilac-400\\/90{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-lilac-400\\/95{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-lilac-50{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / var(--tw-text-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-lilac-50\\/0{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-lilac-50\\/10{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-lilac-50\\/100{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-lilac-50\\/15{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-lilac-50\\/20{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-lilac-50\\/25{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-lilac-50\\/30{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-lilac-50\\/35{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-lilac-50\\/40{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-lilac-50\\/45{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-lilac-50\\/5{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-lilac-50\\/50{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-lilac-50\\/55{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-lilac-50\\/60{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-lilac-50\\/65{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-lilac-50\\/70{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-lilac-50\\/75{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-lilac-50\\/80{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-lilac-50\\/85{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-lilac-50\\/90{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-lilac-50\\/95{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-lilac-500{\n--tw-text-opacity: 1;\ncolor: color(from #8e4ec6 srgb r g b / var(--tw-text-opacity));\n}\n.text-lilac-500\\/0{\ncolor: color(from #8e4ec6 srgb r g b / 0);\n}\n.text-lilac-500\\/10{\ncolor: color(from #8e4ec6 srgb r g b / 0.1);\n}\n.text-lilac-500\\/100{\ncolor: color(from #8e4ec6 srgb r g b / 1);\n}\n.text-lilac-500\\/15{\ncolor: color(from #8e4ec6 srgb r g b / 0.15);\n}\n.text-lilac-500\\/20{\ncolor: color(from #8e4ec6 srgb r g b / 0.2);\n}\n.text-lilac-500\\/25{\ncolor: color(from #8e4ec6 srgb r g b / 0.25);\n}\n.text-lilac-500\\/30{\ncolor: color(from #8e4ec6 srgb r g b / 0.3);\n}\n.text-lilac-500\\/35{\ncolor: color(from #8e4ec6 srgb r g b / 0.35);\n}\n.text-lilac-500\\/40{\ncolor: color(from #8e4ec6 srgb r g b / 0.4);\n}\n.text-lilac-500\\/45{\ncolor: color(from #8e4ec6 srgb r g b / 0.45);\n}\n.text-lilac-500\\/5{\ncolor: color(from #8e4ec6 srgb r g b / 0.05);\n}\n.text-lilac-500\\/50{\ncolor: color(from #8e4ec6 srgb r g b / 0.5);\n}\n.text-lilac-500\\/55{\ncolor: color(from #8e4ec6 srgb r g b / 0.55);\n}\n.text-lilac-500\\/60{\ncolor: color(from #8e4ec6 srgb r g b / 0.6);\n}\n.text-lilac-500\\/65{\ncolor: color(from #8e4ec6 srgb r g b / 0.65);\n}\n.text-lilac-500\\/70{\ncolor: color(from #8e4ec6 srgb r g b / 0.7);\n}\n.text-lilac-500\\/75{\ncolor: color(from #8e4ec6 srgb r g b / 0.75);\n}\n.text-lilac-500\\/80{\ncolor: color(from #8e4ec6 srgb r g b / 0.8);\n}\n.text-lilac-500\\/85{\ncolor: color(from #8e4ec6 srgb r g b / 0.85);\n}\n.text-lilac-500\\/90{\ncolor: color(from #8e4ec6 srgb r g b / 0.9);\n}\n.text-lilac-500\\/95{\ncolor: color(from #8e4ec6 srgb r g b / 0.95);\n}\n.text-lilac-600{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / var(--tw-text-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-lilac-600\\/0{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-lilac-600\\/10{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-lilac-600\\/100{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-lilac-600\\/15{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-lilac-600\\/20{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-lilac-600\\/25{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-lilac-600\\/30{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-lilac-600\\/35{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-lilac-600\\/40{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-lilac-600\\/45{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-lilac-600\\/5{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-lilac-600\\/50{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-lilac-600\\/55{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-lilac-600\\/60{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-lilac-600\\/65{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-lilac-600\\/70{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-lilac-600\\/75{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-lilac-600\\/80{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-lilac-600\\/85{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-lilac-600\\/90{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-lilac-600\\/95{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-lilac-700{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / var(--tw-text-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-lilac-700\\/0{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-lilac-700\\/10{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-lilac-700\\/100{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-lilac-700\\/15{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-lilac-700\\/20{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-lilac-700\\/25{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-lilac-700\\/30{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-lilac-700\\/35{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-lilac-700\\/40{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-lilac-700\\/45{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-lilac-700\\/5{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-lilac-700\\/50{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-lilac-700\\/55{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-lilac-700\\/60{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-lilac-700\\/65{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-lilac-700\\/70{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-lilac-700\\/75{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-lilac-700\\/80{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-lilac-700\\/85{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-lilac-700\\/90{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-lilac-700\\/95{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-lilac-800{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / var(--tw-text-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-lilac-800\\/0{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-lilac-800\\/10{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-lilac-800\\/100{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-lilac-800\\/15{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-lilac-800\\/20{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-lilac-800\\/25{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-lilac-800\\/30{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-lilac-800\\/35{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-lilac-800\\/40{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-lilac-800\\/45{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-lilac-800\\/5{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-lilac-800\\/50{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-lilac-800\\/55{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-lilac-800\\/60{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-lilac-800\\/65{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-lilac-800\\/70{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-lilac-800\\/75{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-lilac-800\\/80{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-lilac-800\\/85{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-lilac-800\\/90{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-lilac-800\\/95{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-lilac-900{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / var(--tw-text-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-lilac-900\\/0{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-lilac-900\\/10{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-lilac-900\\/100{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-lilac-900\\/15{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-lilac-900\\/20{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-lilac-900\\/25{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-lilac-900\\/30{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-lilac-900\\/35{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-lilac-900\\/40{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-lilac-900\\/45{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-lilac-900\\/5{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-lilac-900\\/50{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-lilac-900\\/55{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-lilac-900\\/60{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-lilac-900\\/65{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-lilac-900\\/70{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-lilac-900\\/75{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-lilac-900\\/80{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-lilac-900\\/85{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-lilac-900\\/90{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-lilac-900\\/95{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-lilac-950{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / var(--tw-text-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-lilac-950\\/0{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-lilac-950\\/10{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-lilac-950\\/100{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-lilac-950\\/15{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-lilac-950\\/20{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-lilac-950\\/25{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-lilac-950\\/30{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-lilac-950\\/35{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-lilac-950\\/40{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-lilac-950\\/45{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-lilac-950\\/5{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-lilac-950\\/50{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-lilac-950\\/55{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-lilac-950\\/60{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-lilac-950\\/65{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-lilac-950\\/70{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-lilac-950\\/75{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-lilac-950\\/80{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-lilac-950\\/85{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-lilac-950\\/90{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-lilac-950\\/95{\ncolor: color-mix(in lab, color(from #8e4ec6 srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-lilac\\/0{\ncolor: rgb(142 78 198 / 0);\n}\n.text-lilac\\/10{\ncolor: rgb(142 78 198 / 0.1);\n}\n.text-lilac\\/100{\ncolor: rgb(142 78 198 / 1);\n}\n.text-lilac\\/15{\ncolor: rgb(142 78 198 / 0.15);\n}\n.text-lilac\\/20{\ncolor: rgb(142 78 198 / 0.2);\n}\n.text-lilac\\/25{\ncolor: rgb(142 78 198 / 0.25);\n}\n.text-lilac\\/30{\ncolor: rgb(142 78 198 / 0.3);\n}\n.text-lilac\\/35{\ncolor: rgb(142 78 198 / 0.35);\n}\n.text-lilac\\/40{\ncolor: rgb(142 78 198 / 0.4);\n}\n.text-lilac\\/45{\ncolor: rgb(142 78 198 / 0.45);\n}\n.text-lilac\\/5{\ncolor: rgb(142 78 198 / 0.05);\n}\n.text-lilac\\/50{\ncolor: rgb(142 78 198 / 0.5);\n}\n.text-lilac\\/55{\ncolor: rgb(142 78 198 / 0.55);\n}\n.text-lilac\\/60{\ncolor: rgb(142 78 198 / 0.6);\n}\n.text-lilac\\/65{\ncolor: rgb(142 78 198 / 0.65);\n}\n.text-lilac\\/70{\ncolor: rgb(142 78 198 / 0.7);\n}\n.text-lilac\\/75{\ncolor: rgb(142 78 198 / 0.75);\n}\n.text-lilac\\/80{\ncolor: rgb(142 78 198 / 0.8);\n}\n.text-lilac\\/85{\ncolor: rgb(142 78 198 / 0.85);\n}\n.text-lilac\\/90{\ncolor: rgb(142 78 198 / 0.9);\n}\n.text-lilac\\/95{\ncolor: rgb(142 78 198 / 0.95);\n}\n.text-marigold{\n--tw-text-opacity: 1;\ncolor: rgb(255 193 0 / var(--tw-text-opacity));\n}\n.text-marigold-100{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / var(--tw-text-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-marigold-100\\/0{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-marigold-100\\/10{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-marigold-100\\/100{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-marigold-100\\/15{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-marigold-100\\/20{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-marigold-100\\/25{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-marigold-100\\/30{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-marigold-100\\/35{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-marigold-100\\/40{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-marigold-100\\/45{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-marigold-100\\/5{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-marigold-100\\/50{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-marigold-100\\/55{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-marigold-100\\/60{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-marigold-100\\/65{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-marigold-100\\/70{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-marigold-100\\/75{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-marigold-100\\/80{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-marigold-100\\/85{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-marigold-100\\/90{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-marigold-100\\/95{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-marigold-200{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / var(--tw-text-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-marigold-200\\/0{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-marigold-200\\/10{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-marigold-200\\/100{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-marigold-200\\/15{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-marigold-200\\/20{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-marigold-200\\/25{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-marigold-200\\/30{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-marigold-200\\/35{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-marigold-200\\/40{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-marigold-200\\/45{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-marigold-200\\/5{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-marigold-200\\/50{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-marigold-200\\/55{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-marigold-200\\/60{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-marigold-200\\/65{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-marigold-200\\/70{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-marigold-200\\/75{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-marigold-200\\/80{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-marigold-200\\/85{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-marigold-200\\/90{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-marigold-200\\/95{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-marigold-300{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / var(--tw-text-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-marigold-300\\/0{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-marigold-300\\/10{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-marigold-300\\/100{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-marigold-300\\/15{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-marigold-300\\/20{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-marigold-300\\/25{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-marigold-300\\/30{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-marigold-300\\/35{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-marigold-300\\/40{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-marigold-300\\/45{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-marigold-300\\/5{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-marigold-300\\/50{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-marigold-300\\/55{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-marigold-300\\/60{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-marigold-300\\/65{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-marigold-300\\/70{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-marigold-300\\/75{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-marigold-300\\/80{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-marigold-300\\/85{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-marigold-300\\/90{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-marigold-300\\/95{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-marigold-400{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / var(--tw-text-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-marigold-400\\/0{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-marigold-400\\/10{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-marigold-400\\/100{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-marigold-400\\/15{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-marigold-400\\/20{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-marigold-400\\/25{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-marigold-400\\/30{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-marigold-400\\/35{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-marigold-400\\/40{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-marigold-400\\/45{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-marigold-400\\/5{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-marigold-400\\/50{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-marigold-400\\/55{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-marigold-400\\/60{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-marigold-400\\/65{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-marigold-400\\/70{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-marigold-400\\/75{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-marigold-400\\/80{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-marigold-400\\/85{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-marigold-400\\/90{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-marigold-400\\/95{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-marigold-50{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / var(--tw-text-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-marigold-50\\/0{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-marigold-50\\/10{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-marigold-50\\/100{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-marigold-50\\/15{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-marigold-50\\/20{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-marigold-50\\/25{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-marigold-50\\/30{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-marigold-50\\/35{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-marigold-50\\/40{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-marigold-50\\/45{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-marigold-50\\/5{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-marigold-50\\/50{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-marigold-50\\/55{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-marigold-50\\/60{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-marigold-50\\/65{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-marigold-50\\/70{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-marigold-50\\/75{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-marigold-50\\/80{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-marigold-50\\/85{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-marigold-50\\/90{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-marigold-50\\/95{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-marigold-500{\n--tw-text-opacity: 1;\ncolor: color(from #ffc100 srgb r g b / var(--tw-text-opacity));\n}\n.text-marigold-500\\/0{\ncolor: color(from #ffc100 srgb r g b / 0);\n}\n.text-marigold-500\\/10{\ncolor: color(from #ffc100 srgb r g b / 0.1);\n}\n.text-marigold-500\\/100{\ncolor: color(from #ffc100 srgb r g b / 1);\n}\n.text-marigold-500\\/15{\ncolor: color(from #ffc100 srgb r g b / 0.15);\n}\n.text-marigold-500\\/20{\ncolor: color(from #ffc100 srgb r g b / 0.2);\n}\n.text-marigold-500\\/25{\ncolor: color(from #ffc100 srgb r g b / 0.25);\n}\n.text-marigold-500\\/30{\ncolor: color(from #ffc100 srgb r g b / 0.3);\n}\n.text-marigold-500\\/35{\ncolor: color(from #ffc100 srgb r g b / 0.35);\n}\n.text-marigold-500\\/40{\ncolor: color(from #ffc100 srgb r g b / 0.4);\n}\n.text-marigold-500\\/45{\ncolor: color(from #ffc100 srgb r g b / 0.45);\n}\n.text-marigold-500\\/5{\ncolor: color(from #ffc100 srgb r g b / 0.05);\n}\n.text-marigold-500\\/50{\ncolor: color(from #ffc100 srgb r g b / 0.5);\n}\n.text-marigold-500\\/55{\ncolor: color(from #ffc100 srgb r g b / 0.55);\n}\n.text-marigold-500\\/60{\ncolor: color(from #ffc100 srgb r g b / 0.6);\n}\n.text-marigold-500\\/65{\ncolor: color(from #ffc100 srgb r g b / 0.65);\n}\n.text-marigold-500\\/70{\ncolor: color(from #ffc100 srgb r g b / 0.7);\n}\n.text-marigold-500\\/75{\ncolor: color(from #ffc100 srgb r g b / 0.75);\n}\n.text-marigold-500\\/80{\ncolor: color(from #ffc100 srgb r g b / 0.8);\n}\n.text-marigold-500\\/85{\ncolor: color(from #ffc100 srgb r g b / 0.85);\n}\n.text-marigold-500\\/90{\ncolor: color(from #ffc100 srgb r g b / 0.9);\n}\n.text-marigold-500\\/95{\ncolor: color(from #ffc100 srgb r g b / 0.95);\n}\n.text-marigold-600{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / var(--tw-text-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-marigold-600\\/0{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-marigold-600\\/10{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-marigold-600\\/100{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-marigold-600\\/15{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-marigold-600\\/20{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-marigold-600\\/25{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-marigold-600\\/30{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-marigold-600\\/35{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-marigold-600\\/40{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-marigold-600\\/45{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-marigold-600\\/5{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-marigold-600\\/50{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-marigold-600\\/55{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-marigold-600\\/60{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-marigold-600\\/65{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-marigold-600\\/70{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-marigold-600\\/75{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-marigold-600\\/80{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-marigold-600\\/85{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-marigold-600\\/90{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-marigold-600\\/95{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-marigold-700{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / var(--tw-text-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-marigold-700\\/0{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-marigold-700\\/10{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-marigold-700\\/100{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-marigold-700\\/15{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-marigold-700\\/20{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-marigold-700\\/25{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-marigold-700\\/30{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-marigold-700\\/35{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-marigold-700\\/40{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-marigold-700\\/45{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-marigold-700\\/5{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-marigold-700\\/50{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-marigold-700\\/55{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-marigold-700\\/60{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-marigold-700\\/65{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-marigold-700\\/70{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-marigold-700\\/75{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-marigold-700\\/80{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-marigold-700\\/85{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-marigold-700\\/90{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-marigold-700\\/95{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-marigold-800{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / var(--tw-text-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-marigold-800\\/0{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-marigold-800\\/10{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-marigold-800\\/100{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-marigold-800\\/15{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-marigold-800\\/20{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-marigold-800\\/25{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-marigold-800\\/30{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-marigold-800\\/35{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-marigold-800\\/40{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-marigold-800\\/45{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-marigold-800\\/5{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-marigold-800\\/50{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-marigold-800\\/55{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-marigold-800\\/60{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-marigold-800\\/65{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-marigold-800\\/70{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-marigold-800\\/75{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-marigold-800\\/80{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-marigold-800\\/85{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-marigold-800\\/90{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-marigold-800\\/95{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-marigold-900{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / var(--tw-text-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-marigold-900\\/0{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-marigold-900\\/10{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-marigold-900\\/100{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-marigold-900\\/15{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-marigold-900\\/20{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-marigold-900\\/25{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-marigold-900\\/30{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-marigold-900\\/35{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-marigold-900\\/40{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-marigold-900\\/45{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-marigold-900\\/5{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-marigold-900\\/50{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-marigold-900\\/55{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-marigold-900\\/60{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-marigold-900\\/65{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-marigold-900\\/70{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-marigold-900\\/75{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-marigold-900\\/80{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-marigold-900\\/85{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-marigold-900\\/90{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-marigold-900\\/95{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-marigold-950{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / var(--tw-text-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-marigold-950\\/0{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-marigold-950\\/10{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-marigold-950\\/100{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-marigold-950\\/15{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-marigold-950\\/20{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-marigold-950\\/25{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-marigold-950\\/30{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-marigold-950\\/35{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-marigold-950\\/40{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-marigold-950\\/45{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-marigold-950\\/5{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-marigold-950\\/50{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-marigold-950\\/55{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-marigold-950\\/60{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-marigold-950\\/65{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-marigold-950\\/70{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-marigold-950\\/75{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-marigold-950\\/80{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-marigold-950\\/85{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-marigold-950\\/90{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-marigold-950\\/95{\ncolor: color-mix(in lab, color(from #ffc100 srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-marigold\\/0{\ncolor: rgb(255 193 0 / 0);\n}\n.text-marigold\\/10{\ncolor: rgb(255 193 0 / 0.1);\n}\n.text-marigold\\/100{\ncolor: rgb(255 193 0 / 1);\n}\n.text-marigold\\/15{\ncolor: rgb(255 193 0 / 0.15);\n}\n.text-marigold\\/20{\ncolor: rgb(255 193 0 / 0.2);\n}\n.text-marigold\\/25{\ncolor: rgb(255 193 0 / 0.25);\n}\n.text-marigold\\/30{\ncolor: rgb(255 193 0 / 0.3);\n}\n.text-marigold\\/35{\ncolor: rgb(255 193 0 / 0.35);\n}\n.text-marigold\\/40{\ncolor: rgb(255 193 0 / 0.4);\n}\n.text-marigold\\/45{\ncolor: rgb(255 193 0 / 0.45);\n}\n.text-marigold\\/5{\ncolor: rgb(255 193 0 / 0.05);\n}\n.text-marigold\\/50{\ncolor: rgb(255 193 0 / 0.5);\n}\n.text-marigold\\/55{\ncolor: rgb(255 193 0 / 0.55);\n}\n.text-marigold\\/60{\ncolor: rgb(255 193 0 / 0.6);\n}\n.text-marigold\\/65{\ncolor: rgb(255 193 0 / 0.65);\n}\n.text-marigold\\/70{\ncolor: rgb(255 193 0 / 0.7);\n}\n.text-marigold\\/75{\ncolor: rgb(255 193 0 / 0.75);\n}\n.text-marigold\\/80{\ncolor: rgb(255 193 0 / 0.8);\n}\n.text-marigold\\/85{\ncolor: rgb(255 193 0 / 0.85);\n}\n.text-marigold\\/90{\ncolor: rgb(255 193 0 / 0.9);\n}\n.text-marigold\\/95{\ncolor: rgb(255 193 0 / 0.95);\n}\n.text-muted{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)) 45%, color(from var(--tint) srgb r g b / var(--tw-text-opacity)));\n}\n.text-muted\\/0{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0) 45%, color(from var(--tint) srgb r g b / 0));\n}\n.text-muted\\/10{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.1) 45%, color(from var(--tint) srgb r g b / 0.1));\n}\n.text-muted\\/100{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 1) 45%, color(from var(--tint) srgb r g b / 1));\n}\n.text-muted\\/15{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.15) 45%, color(from var(--tint) srgb r g b / 0.15));\n}\n.text-muted\\/20{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.2) 45%, color(from var(--tint) srgb r g b / 0.2));\n}\n.text-muted\\/25{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.25) 45%, color(from var(--tint) srgb r g b / 0.25));\n}\n.text-muted\\/30{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.3) 45%, color(from var(--tint) srgb r g b / 0.3));\n}\n.text-muted\\/35{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.35) 45%, color(from var(--tint) srgb r g b / 0.35));\n}\n.text-muted\\/40{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.4) 45%, color(from var(--tint) srgb r g b / 0.4));\n}\n.text-muted\\/45{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.45) 45%, color(from var(--tint) srgb r g b / 0.45));\n}\n.text-muted\\/5{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.05) 45%, color(from var(--tint) srgb r g b / 0.05));\n}\n.text-muted\\/50{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.5) 45%, color(from var(--tint) srgb r g b / 0.5));\n}\n.text-muted\\/55{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.55) 45%, color(from var(--tint) srgb r g b / 0.55));\n}\n.text-muted\\/60{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.6) 45%, color(from var(--tint) srgb r g b / 0.6));\n}\n.text-muted\\/65{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.65) 45%, color(from var(--tint) srgb r g b / 0.65));\n}\n.text-muted\\/70{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.7) 45%, color(from var(--tint) srgb r g b / 0.7));\n}\n.text-muted\\/75{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.75) 45%, color(from var(--tint) srgb r g b / 0.75));\n}\n.text-muted\\/80{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.8) 45%, color(from var(--tint) srgb r g b / 0.8));\n}\n.text-muted\\/85{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.85) 45%, color(from var(--tint) srgb r g b / 0.85));\n}\n.text-muted\\/90{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.9) 45%, color(from var(--tint) srgb r g b / 0.9));\n}\n.text-muted\\/95{\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 0.95) 45%, color(from var(--tint) srgb r g b / 0.95));\n}\n.text-olive{\n--tw-text-opacity: 1;\ncolor: rgb(118 155 141 / var(--tw-text-opacity));\n}\n.text-olive-100{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / var(--tw-text-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-olive-100\\/0{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-olive-100\\/10{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-olive-100\\/100{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-olive-100\\/15{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-olive-100\\/20{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-olive-100\\/25{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-olive-100\\/30{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-olive-100\\/35{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-olive-100\\/40{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-olive-100\\/45{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-olive-100\\/5{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-olive-100\\/50{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-olive-100\\/55{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-olive-100\\/60{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-olive-100\\/65{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-olive-100\\/70{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-olive-100\\/75{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-olive-100\\/80{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-olive-100\\/85{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-olive-100\\/90{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-olive-100\\/95{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-olive-200{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / var(--tw-text-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-olive-200\\/0{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-olive-200\\/10{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-olive-200\\/100{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-olive-200\\/15{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-olive-200\\/20{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-olive-200\\/25{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-olive-200\\/30{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-olive-200\\/35{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-olive-200\\/40{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-olive-200\\/45{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-olive-200\\/5{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-olive-200\\/50{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-olive-200\\/55{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-olive-200\\/60{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-olive-200\\/65{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-olive-200\\/70{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-olive-200\\/75{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-olive-200\\/80{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-olive-200\\/85{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-olive-200\\/90{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-olive-200\\/95{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-olive-300{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / var(--tw-text-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-olive-300\\/0{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-olive-300\\/10{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-olive-300\\/100{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-olive-300\\/15{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-olive-300\\/20{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-olive-300\\/25{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-olive-300\\/30{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-olive-300\\/35{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-olive-300\\/40{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-olive-300\\/45{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-olive-300\\/5{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-olive-300\\/50{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-olive-300\\/55{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-olive-300\\/60{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-olive-300\\/65{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-olive-300\\/70{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-olive-300\\/75{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-olive-300\\/80{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-olive-300\\/85{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-olive-300\\/90{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-olive-300\\/95{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-olive-400{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / var(--tw-text-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-olive-400\\/0{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-olive-400\\/10{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-olive-400\\/100{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-olive-400\\/15{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-olive-400\\/20{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-olive-400\\/25{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-olive-400\\/30{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-olive-400\\/35{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-olive-400\\/40{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-olive-400\\/45{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-olive-400\\/5{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-olive-400\\/50{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-olive-400\\/55{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-olive-400\\/60{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-olive-400\\/65{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-olive-400\\/70{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-olive-400\\/75{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-olive-400\\/80{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-olive-400\\/85{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-olive-400\\/90{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-olive-400\\/95{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-olive-50{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / var(--tw-text-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-olive-50\\/0{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-olive-50\\/10{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-olive-50\\/100{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-olive-50\\/15{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-olive-50\\/20{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-olive-50\\/25{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-olive-50\\/30{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-olive-50\\/35{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-olive-50\\/40{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-olive-50\\/45{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-olive-50\\/5{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-olive-50\\/50{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-olive-50\\/55{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-olive-50\\/60{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-olive-50\\/65{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-olive-50\\/70{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-olive-50\\/75{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-olive-50\\/80{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-olive-50\\/85{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-olive-50\\/90{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-olive-50\\/95{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-olive-500{\n--tw-text-opacity: 1;\ncolor: color(from #769b8d srgb r g b / var(--tw-text-opacity));\n}\n.text-olive-500\\/0{\ncolor: color(from #769b8d srgb r g b / 0);\n}\n.text-olive-500\\/10{\ncolor: color(from #769b8d srgb r g b / 0.1);\n}\n.text-olive-500\\/100{\ncolor: color(from #769b8d srgb r g b / 1);\n}\n.text-olive-500\\/15{\ncolor: color(from #769b8d srgb r g b / 0.15);\n}\n.text-olive-500\\/20{\ncolor: color(from #769b8d srgb r g b / 0.2);\n}\n.text-olive-500\\/25{\ncolor: color(from #769b8d srgb r g b / 0.25);\n}\n.text-olive-500\\/30{\ncolor: color(from #769b8d srgb r g b / 0.3);\n}\n.text-olive-500\\/35{\ncolor: color(from #769b8d srgb r g b / 0.35);\n}\n.text-olive-500\\/40{\ncolor: color(from #769b8d srgb r g b / 0.4);\n}\n.text-olive-500\\/45{\ncolor: color(from #769b8d srgb r g b / 0.45);\n}\n.text-olive-500\\/5{\ncolor: color(from #769b8d srgb r g b / 0.05);\n}\n.text-olive-500\\/50{\ncolor: color(from #769b8d srgb r g b / 0.5);\n}\n.text-olive-500\\/55{\ncolor: color(from #769b8d srgb r g b / 0.55);\n}\n.text-olive-500\\/60{\ncolor: color(from #769b8d srgb r g b / 0.6);\n}\n.text-olive-500\\/65{\ncolor: color(from #769b8d srgb r g b / 0.65);\n}\n.text-olive-500\\/70{\ncolor: color(from #769b8d srgb r g b / 0.7);\n}\n.text-olive-500\\/75{\ncolor: color(from #769b8d srgb r g b / 0.75);\n}\n.text-olive-500\\/80{\ncolor: color(from #769b8d srgb r g b / 0.8);\n}\n.text-olive-500\\/85{\ncolor: color(from #769b8d srgb r g b / 0.85);\n}\n.text-olive-500\\/90{\ncolor: color(from #769b8d srgb r g b / 0.9);\n}\n.text-olive-500\\/95{\ncolor: color(from #769b8d srgb r g b / 0.95);\n}\n.text-olive-600{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / var(--tw-text-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-olive-600\\/0{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-olive-600\\/10{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-olive-600\\/100{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-olive-600\\/15{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-olive-600\\/20{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-olive-600\\/25{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-olive-600\\/30{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-olive-600\\/35{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-olive-600\\/40{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-olive-600\\/45{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-olive-600\\/5{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-olive-600\\/50{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-olive-600\\/55{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-olive-600\\/60{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-olive-600\\/65{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-olive-600\\/70{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-olive-600\\/75{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-olive-600\\/80{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-olive-600\\/85{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-olive-600\\/90{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-olive-600\\/95{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-olive-700{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / var(--tw-text-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-olive-700\\/0{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-olive-700\\/10{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-olive-700\\/100{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-olive-700\\/15{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-olive-700\\/20{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-olive-700\\/25{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-olive-700\\/30{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-olive-700\\/35{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-olive-700\\/40{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-olive-700\\/45{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-olive-700\\/5{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-olive-700\\/50{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-olive-700\\/55{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-olive-700\\/60{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-olive-700\\/65{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-olive-700\\/70{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-olive-700\\/75{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-olive-700\\/80{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-olive-700\\/85{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-olive-700\\/90{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-olive-700\\/95{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-olive-800{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / var(--tw-text-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-olive-800\\/0{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-olive-800\\/10{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-olive-800\\/100{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-olive-800\\/15{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-olive-800\\/20{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-olive-800\\/25{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-olive-800\\/30{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-olive-800\\/35{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-olive-800\\/40{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-olive-800\\/45{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-olive-800\\/5{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-olive-800\\/50{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-olive-800\\/55{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-olive-800\\/60{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-olive-800\\/65{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-olive-800\\/70{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-olive-800\\/75{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-olive-800\\/80{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-olive-800\\/85{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-olive-800\\/90{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-olive-800\\/95{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-olive-900{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / var(--tw-text-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-olive-900\\/0{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-olive-900\\/10{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-olive-900\\/100{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-olive-900\\/15{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-olive-900\\/20{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-olive-900\\/25{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-olive-900\\/30{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-olive-900\\/35{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-olive-900\\/40{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-olive-900\\/45{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-olive-900\\/5{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-olive-900\\/50{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-olive-900\\/55{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-olive-900\\/60{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-olive-900\\/65{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-olive-900\\/70{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-olive-900\\/75{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-olive-900\\/80{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-olive-900\\/85{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-olive-900\\/90{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-olive-900\\/95{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-olive-950{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / var(--tw-text-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-olive-950\\/0{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-olive-950\\/10{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-olive-950\\/100{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-olive-950\\/15{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-olive-950\\/20{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-olive-950\\/25{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-olive-950\\/30{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-olive-950\\/35{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-olive-950\\/40{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-olive-950\\/45{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-olive-950\\/5{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-olive-950\\/50{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-olive-950\\/55{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-olive-950\\/60{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-olive-950\\/65{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-olive-950\\/70{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-olive-950\\/75{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-olive-950\\/80{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-olive-950\\/85{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-olive-950\\/90{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-olive-950\\/95{\ncolor: color-mix(in lab, color(from #769b8d srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-olive\\/0{\ncolor: rgb(118 155 141 / 0);\n}\n.text-olive\\/10{\ncolor: rgb(118 155 141 / 0.1);\n}\n.text-olive\\/100{\ncolor: rgb(118 155 141 / 1);\n}\n.text-olive\\/15{\ncolor: rgb(118 155 141 / 0.15);\n}\n.text-olive\\/20{\ncolor: rgb(118 155 141 / 0.2);\n}\n.text-olive\\/25{\ncolor: rgb(118 155 141 / 0.25);\n}\n.text-olive\\/30{\ncolor: rgb(118 155 141 / 0.3);\n}\n.text-olive\\/35{\ncolor: rgb(118 155 141 / 0.35);\n}\n.text-olive\\/40{\ncolor: rgb(118 155 141 / 0.4);\n}\n.text-olive\\/45{\ncolor: rgb(118 155 141 / 0.45);\n}\n.text-olive\\/5{\ncolor: rgb(118 155 141 / 0.05);\n}\n.text-olive\\/50{\ncolor: rgb(118 155 141 / 0.5);\n}\n.text-olive\\/55{\ncolor: rgb(118 155 141 / 0.55);\n}\n.text-olive\\/60{\ncolor: rgb(118 155 141 / 0.6);\n}\n.text-olive\\/65{\ncolor: rgb(118 155 141 / 0.65);\n}\n.text-olive\\/70{\ncolor: rgb(118 155 141 / 0.7);\n}\n.text-olive\\/75{\ncolor: rgb(118 155 141 / 0.75);\n}\n.text-olive\\/80{\ncolor: rgb(118 155 141 / 0.8);\n}\n.text-olive\\/85{\ncolor: rgb(118 155 141 / 0.85);\n}\n.text-olive\\/90{\ncolor: rgb(118 155 141 / 0.9);\n}\n.text-olive\\/95{\ncolor: rgb(118 155 141 / 0.95);\n}\n.text-primary{\ncolor: var(--primary);\n}\n.text-primary-100{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-text-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-primary-100\\/0{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-primary-100\\/10{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-primary-100\\/100{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-primary-100\\/15{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-primary-100\\/20{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-primary-100\\/25{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-primary-100\\/30{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-primary-100\\/35{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-primary-100\\/40{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-primary-100\\/45{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-primary-100\\/5{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-primary-100\\/50{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-primary-100\\/55{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-primary-100\\/60{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-primary-100\\/65{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-primary-100\\/70{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-primary-100\\/75{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-primary-100\\/80{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-primary-100\\/85{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-primary-100\\/90{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-primary-100\\/95{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-primary-200{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-text-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-primary-200\\/0{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-primary-200\\/10{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-primary-200\\/100{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-primary-200\\/15{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-primary-200\\/20{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-primary-200\\/25{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-primary-200\\/30{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-primary-200\\/35{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-primary-200\\/40{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-primary-200\\/45{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-primary-200\\/5{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-primary-200\\/50{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-primary-200\\/55{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-primary-200\\/60{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-primary-200\\/65{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-primary-200\\/70{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-primary-200\\/75{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-primary-200\\/80{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-primary-200\\/85{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-primary-200\\/90{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-primary-200\\/95{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-primary-300{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-text-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-primary-300\\/0{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-primary-300\\/10{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-primary-300\\/100{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-primary-300\\/15{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-primary-300\\/20{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-primary-300\\/25{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-primary-300\\/30{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-primary-300\\/35{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-primary-300\\/40{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-primary-300\\/45{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-primary-300\\/5{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-primary-300\\/50{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-primary-300\\/55{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-primary-300\\/60{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-primary-300\\/65{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-primary-300\\/70{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-primary-300\\/75{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-primary-300\\/80{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-primary-300\\/85{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-primary-300\\/90{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-primary-300\\/95{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-primary-400{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-text-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-primary-400\\/0{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-primary-400\\/10{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-primary-400\\/100{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-primary-400\\/15{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-primary-400\\/20{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-primary-400\\/25{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-primary-400\\/30{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-primary-400\\/35{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-primary-400\\/40{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-primary-400\\/45{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-primary-400\\/5{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-primary-400\\/50{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-primary-400\\/55{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-primary-400\\/60{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-primary-400\\/65{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-primary-400\\/70{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-primary-400\\/75{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-primary-400\\/80{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-primary-400\\/85{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-primary-400\\/90{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-primary-400\\/95{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-primary-50{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-text-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-primary-50\\/0{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-primary-50\\/10{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-primary-50\\/100{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-primary-50\\/15{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-primary-50\\/20{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-primary-50\\/25{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-primary-50\\/30{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-primary-50\\/35{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-primary-50\\/40{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-primary-50\\/45{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-primary-50\\/5{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-primary-50\\/50{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-primary-50\\/55{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-primary-50\\/60{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-primary-50\\/65{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-primary-50\\/70{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-primary-50\\/75{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-primary-50\\/80{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-primary-50\\/85{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-primary-50\\/90{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-primary-50\\/95{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-primary-500{\n--tw-text-opacity: 1;\ncolor: color(from var(--primary) srgb r g b / var(--tw-text-opacity));\n}\n.text-primary-500\\/0{\ncolor: color(from var(--primary) srgb r g b / 0);\n}\n.text-primary-500\\/10{\ncolor: color(from var(--primary) srgb r g b / 0.1);\n}\n.text-primary-500\\/100{\ncolor: color(from var(--primary) srgb r g b / 1);\n}\n.text-primary-500\\/15{\ncolor: color(from var(--primary) srgb r g b / 0.15);\n}\n.text-primary-500\\/20{\ncolor: color(from var(--primary) srgb r g b / 0.2);\n}\n.text-primary-500\\/25{\ncolor: color(from var(--primary) srgb r g b / 0.25);\n}\n.text-primary-500\\/30{\ncolor: color(from var(--primary) srgb r g b / 0.3);\n}\n.text-primary-500\\/35{\ncolor: color(from var(--primary) srgb r g b / 0.35);\n}\n.text-primary-500\\/40{\ncolor: color(from var(--primary) srgb r g b / 0.4);\n}\n.text-primary-500\\/45{\ncolor: color(from var(--primary) srgb r g b / 0.45);\n}\n.text-primary-500\\/5{\ncolor: color(from var(--primary) srgb r g b / 0.05);\n}\n.text-primary-500\\/50{\ncolor: color(from var(--primary) srgb r g b / 0.5);\n}\n.text-primary-500\\/55{\ncolor: color(from var(--primary) srgb r g b / 0.55);\n}\n.text-primary-500\\/60{\ncolor: color(from var(--primary) srgb r g b / 0.6);\n}\n.text-primary-500\\/65{\ncolor: color(from var(--primary) srgb r g b / 0.65);\n}\n.text-primary-500\\/70{\ncolor: color(from var(--primary) srgb r g b / 0.7);\n}\n.text-primary-500\\/75{\ncolor: color(from var(--primary) srgb r g b / 0.75);\n}\n.text-primary-500\\/80{\ncolor: color(from var(--primary) srgb r g b / 0.8);\n}\n.text-primary-500\\/85{\ncolor: color(from var(--primary) srgb r g b / 0.85);\n}\n.text-primary-500\\/90{\ncolor: color(from var(--primary) srgb r g b / 0.9);\n}\n.text-primary-500\\/95{\ncolor: color(from var(--primary) srgb r g b / 0.95);\n}\n.text-primary-600{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-text-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-primary-600\\/0{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-primary-600\\/10{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-primary-600\\/100{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-primary-600\\/15{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-primary-600\\/20{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-primary-600\\/25{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-primary-600\\/30{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-primary-600\\/35{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-primary-600\\/40{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-primary-600\\/45{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-primary-600\\/5{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-primary-600\\/50{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-primary-600\\/55{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-primary-600\\/60{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-primary-600\\/65{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-primary-600\\/70{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-primary-600\\/75{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-primary-600\\/80{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-primary-600\\/85{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-primary-600\\/90{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-primary-600\\/95{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-primary-700{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-text-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-primary-700\\/0{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-primary-700\\/10{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-primary-700\\/100{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-primary-700\\/15{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-primary-700\\/20{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-primary-700\\/25{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-primary-700\\/30{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-primary-700\\/35{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-primary-700\\/40{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-primary-700\\/45{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-primary-700\\/5{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-primary-700\\/50{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-primary-700\\/55{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-primary-700\\/60{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-primary-700\\/65{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-primary-700\\/70{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-primary-700\\/75{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-primary-700\\/80{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-primary-700\\/85{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-primary-700\\/90{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-primary-700\\/95{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-primary-800{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-text-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-primary-800\\/0{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-primary-800\\/10{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-primary-800\\/100{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-primary-800\\/15{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-primary-800\\/20{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-primary-800\\/25{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-primary-800\\/30{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-primary-800\\/35{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-primary-800\\/40{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-primary-800\\/45{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-primary-800\\/5{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-primary-800\\/50{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-primary-800\\/55{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-primary-800\\/60{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-primary-800\\/65{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-primary-800\\/70{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-primary-800\\/75{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-primary-800\\/80{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-primary-800\\/85{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-primary-800\\/90{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-primary-800\\/95{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-primary-900{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-text-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-primary-900\\/0{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-primary-900\\/10{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-primary-900\\/100{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-primary-900\\/15{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-primary-900\\/20{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-primary-900\\/25{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-primary-900\\/30{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-primary-900\\/35{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-primary-900\\/40{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-primary-900\\/45{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-primary-900\\/5{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-primary-900\\/50{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-primary-900\\/55{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-primary-900\\/60{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-primary-900\\/65{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-primary-900\\/70{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-primary-900\\/75{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-primary-900\\/80{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-primary-900\\/85{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-primary-900\\/90{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-primary-900\\/95{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-primary-950{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-text-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-primary-950\\/0{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-primary-950\\/10{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-primary-950\\/100{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-primary-950\\/15{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-primary-950\\/20{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-primary-950\\/25{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-primary-950\\/30{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-primary-950\\/35{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-primary-950\\/40{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-primary-950\\/45{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-primary-950\\/5{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-primary-950\\/50{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-primary-950\\/55{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-primary-950\\/60{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-primary-950\\/65{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-primary-950\\/70{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-primary-950\\/75{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-primary-950\\/80{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-primary-950\\/85{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-primary-950\\/90{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-primary-950\\/95{\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-pumpkin{\n--tw-text-opacity: 1;\ncolor: rgb(247 106 21 / var(--tw-text-opacity));\n}\n.text-pumpkin-100{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / var(--tw-text-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-pumpkin-100\\/0{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-pumpkin-100\\/10{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-pumpkin-100\\/100{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-pumpkin-100\\/15{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-pumpkin-100\\/20{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-pumpkin-100\\/25{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-pumpkin-100\\/30{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-pumpkin-100\\/35{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-pumpkin-100\\/40{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-pumpkin-100\\/45{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-pumpkin-100\\/5{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-pumpkin-100\\/50{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-pumpkin-100\\/55{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-pumpkin-100\\/60{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-pumpkin-100\\/65{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-pumpkin-100\\/70{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-pumpkin-100\\/75{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-pumpkin-100\\/80{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-pumpkin-100\\/85{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-pumpkin-100\\/90{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-pumpkin-100\\/95{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-pumpkin-200{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / var(--tw-text-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-pumpkin-200\\/0{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-pumpkin-200\\/10{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-pumpkin-200\\/100{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-pumpkin-200\\/15{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-pumpkin-200\\/20{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-pumpkin-200\\/25{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-pumpkin-200\\/30{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-pumpkin-200\\/35{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-pumpkin-200\\/40{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-pumpkin-200\\/45{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-pumpkin-200\\/5{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-pumpkin-200\\/50{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-pumpkin-200\\/55{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-pumpkin-200\\/60{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-pumpkin-200\\/65{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-pumpkin-200\\/70{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-pumpkin-200\\/75{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-pumpkin-200\\/80{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-pumpkin-200\\/85{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-pumpkin-200\\/90{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-pumpkin-200\\/95{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-pumpkin-300{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / var(--tw-text-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-pumpkin-300\\/0{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-pumpkin-300\\/10{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-pumpkin-300\\/100{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-pumpkin-300\\/15{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-pumpkin-300\\/20{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-pumpkin-300\\/25{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-pumpkin-300\\/30{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-pumpkin-300\\/35{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-pumpkin-300\\/40{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-pumpkin-300\\/45{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-pumpkin-300\\/5{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-pumpkin-300\\/50{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-pumpkin-300\\/55{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-pumpkin-300\\/60{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-pumpkin-300\\/65{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-pumpkin-300\\/70{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-pumpkin-300\\/75{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-pumpkin-300\\/80{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-pumpkin-300\\/85{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-pumpkin-300\\/90{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-pumpkin-300\\/95{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-pumpkin-400{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / var(--tw-text-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-pumpkin-400\\/0{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-pumpkin-400\\/10{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-pumpkin-400\\/100{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-pumpkin-400\\/15{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-pumpkin-400\\/20{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-pumpkin-400\\/25{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-pumpkin-400\\/30{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-pumpkin-400\\/35{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-pumpkin-400\\/40{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-pumpkin-400\\/45{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-pumpkin-400\\/5{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-pumpkin-400\\/50{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-pumpkin-400\\/55{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-pumpkin-400\\/60{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-pumpkin-400\\/65{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-pumpkin-400\\/70{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-pumpkin-400\\/75{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-pumpkin-400\\/80{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-pumpkin-400\\/85{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-pumpkin-400\\/90{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-pumpkin-400\\/95{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-pumpkin-50{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / var(--tw-text-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-pumpkin-50\\/0{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-pumpkin-50\\/10{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-pumpkin-50\\/100{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-pumpkin-50\\/15{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-pumpkin-50\\/20{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-pumpkin-50\\/25{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-pumpkin-50\\/30{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-pumpkin-50\\/35{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-pumpkin-50\\/40{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-pumpkin-50\\/45{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-pumpkin-50\\/5{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-pumpkin-50\\/50{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-pumpkin-50\\/55{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-pumpkin-50\\/60{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-pumpkin-50\\/65{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-pumpkin-50\\/70{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-pumpkin-50\\/75{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-pumpkin-50\\/80{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-pumpkin-50\\/85{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-pumpkin-50\\/90{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-pumpkin-50\\/95{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-pumpkin-500{\n--tw-text-opacity: 1;\ncolor: color(from #f76a15 srgb r g b / var(--tw-text-opacity));\n}\n.text-pumpkin-500\\/0{\ncolor: color(from #f76a15 srgb r g b / 0);\n}\n.text-pumpkin-500\\/10{\ncolor: color(from #f76a15 srgb r g b / 0.1);\n}\n.text-pumpkin-500\\/100{\ncolor: color(from #f76a15 srgb r g b / 1);\n}\n.text-pumpkin-500\\/15{\ncolor: color(from #f76a15 srgb r g b / 0.15);\n}\n.text-pumpkin-500\\/20{\ncolor: color(from #f76a15 srgb r g b / 0.2);\n}\n.text-pumpkin-500\\/25{\ncolor: color(from #f76a15 srgb r g b / 0.25);\n}\n.text-pumpkin-500\\/30{\ncolor: color(from #f76a15 srgb r g b / 0.3);\n}\n.text-pumpkin-500\\/35{\ncolor: color(from #f76a15 srgb r g b / 0.35);\n}\n.text-pumpkin-500\\/40{\ncolor: color(from #f76a15 srgb r g b / 0.4);\n}\n.text-pumpkin-500\\/45{\ncolor: color(from #f76a15 srgb r g b / 0.45);\n}\n.text-pumpkin-500\\/5{\ncolor: color(from #f76a15 srgb r g b / 0.05);\n}\n.text-pumpkin-500\\/50{\ncolor: color(from #f76a15 srgb r g b / 0.5);\n}\n.text-pumpkin-500\\/55{\ncolor: color(from #f76a15 srgb r g b / 0.55);\n}\n.text-pumpkin-500\\/60{\ncolor: color(from #f76a15 srgb r g b / 0.6);\n}\n.text-pumpkin-500\\/65{\ncolor: color(from #f76a15 srgb r g b / 0.65);\n}\n.text-pumpkin-500\\/70{\ncolor: color(from #f76a15 srgb r g b / 0.7);\n}\n.text-pumpkin-500\\/75{\ncolor: color(from #f76a15 srgb r g b / 0.75);\n}\n.text-pumpkin-500\\/80{\ncolor: color(from #f76a15 srgb r g b / 0.8);\n}\n.text-pumpkin-500\\/85{\ncolor: color(from #f76a15 srgb r g b / 0.85);\n}\n.text-pumpkin-500\\/90{\ncolor: color(from #f76a15 srgb r g b / 0.9);\n}\n.text-pumpkin-500\\/95{\ncolor: color(from #f76a15 srgb r g b / 0.95);\n}\n.text-pumpkin-600{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / var(--tw-text-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-pumpkin-600\\/0{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-pumpkin-600\\/10{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-pumpkin-600\\/100{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-pumpkin-600\\/15{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-pumpkin-600\\/20{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-pumpkin-600\\/25{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-pumpkin-600\\/30{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-pumpkin-600\\/35{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-pumpkin-600\\/40{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-pumpkin-600\\/45{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-pumpkin-600\\/5{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-pumpkin-600\\/50{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-pumpkin-600\\/55{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-pumpkin-600\\/60{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-pumpkin-600\\/65{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-pumpkin-600\\/70{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-pumpkin-600\\/75{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-pumpkin-600\\/80{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-pumpkin-600\\/85{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-pumpkin-600\\/90{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-pumpkin-600\\/95{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-pumpkin-700{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / var(--tw-text-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-pumpkin-700\\/0{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-pumpkin-700\\/10{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-pumpkin-700\\/100{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-pumpkin-700\\/15{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-pumpkin-700\\/20{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-pumpkin-700\\/25{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-pumpkin-700\\/30{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-pumpkin-700\\/35{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-pumpkin-700\\/40{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-pumpkin-700\\/45{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-pumpkin-700\\/5{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-pumpkin-700\\/50{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-pumpkin-700\\/55{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-pumpkin-700\\/60{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-pumpkin-700\\/65{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-pumpkin-700\\/70{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-pumpkin-700\\/75{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-pumpkin-700\\/80{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-pumpkin-700\\/85{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-pumpkin-700\\/90{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-pumpkin-700\\/95{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-pumpkin-800{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / var(--tw-text-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-pumpkin-800\\/0{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-pumpkin-800\\/10{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-pumpkin-800\\/100{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-pumpkin-800\\/15{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-pumpkin-800\\/20{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-pumpkin-800\\/25{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-pumpkin-800\\/30{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-pumpkin-800\\/35{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-pumpkin-800\\/40{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-pumpkin-800\\/45{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-pumpkin-800\\/5{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-pumpkin-800\\/50{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-pumpkin-800\\/55{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-pumpkin-800\\/60{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-pumpkin-800\\/65{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-pumpkin-800\\/70{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-pumpkin-800\\/75{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-pumpkin-800\\/80{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-pumpkin-800\\/85{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-pumpkin-800\\/90{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-pumpkin-800\\/95{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-pumpkin-900{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / var(--tw-text-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-pumpkin-900\\/0{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-pumpkin-900\\/10{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-pumpkin-900\\/100{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-pumpkin-900\\/15{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-pumpkin-900\\/20{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-pumpkin-900\\/25{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-pumpkin-900\\/30{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-pumpkin-900\\/35{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-pumpkin-900\\/40{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-pumpkin-900\\/45{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-pumpkin-900\\/5{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-pumpkin-900\\/50{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-pumpkin-900\\/55{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-pumpkin-900\\/60{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-pumpkin-900\\/65{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-pumpkin-900\\/70{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-pumpkin-900\\/75{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-pumpkin-900\\/80{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-pumpkin-900\\/85{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-pumpkin-900\\/90{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-pumpkin-900\\/95{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-pumpkin-950{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / var(--tw-text-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-pumpkin-950\\/0{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-pumpkin-950\\/10{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-pumpkin-950\\/100{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-pumpkin-950\\/15{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-pumpkin-950\\/20{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-pumpkin-950\\/25{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-pumpkin-950\\/30{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-pumpkin-950\\/35{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-pumpkin-950\\/40{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-pumpkin-950\\/45{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-pumpkin-950\\/5{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-pumpkin-950\\/50{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-pumpkin-950\\/55{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-pumpkin-950\\/60{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-pumpkin-950\\/65{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-pumpkin-950\\/70{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-pumpkin-950\\/75{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-pumpkin-950\\/80{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-pumpkin-950\\/85{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-pumpkin-950\\/90{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-pumpkin-950\\/95{\ncolor: color-mix(in lab, color(from #f76a15 srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-pumpkin\\/0{\ncolor: rgb(247 106 21 / 0);\n}\n.text-pumpkin\\/10{\ncolor: rgb(247 106 21 / 0.1);\n}\n.text-pumpkin\\/100{\ncolor: rgb(247 106 21 / 1);\n}\n.text-pumpkin\\/15{\ncolor: rgb(247 106 21 / 0.15);\n}\n.text-pumpkin\\/20{\ncolor: rgb(247 106 21 / 0.2);\n}\n.text-pumpkin\\/25{\ncolor: rgb(247 106 21 / 0.25);\n}\n.text-pumpkin\\/30{\ncolor: rgb(247 106 21 / 0.3);\n}\n.text-pumpkin\\/35{\ncolor: rgb(247 106 21 / 0.35);\n}\n.text-pumpkin\\/40{\ncolor: rgb(247 106 21 / 0.4);\n}\n.text-pumpkin\\/45{\ncolor: rgb(247 106 21 / 0.45);\n}\n.text-pumpkin\\/5{\ncolor: rgb(247 106 21 / 0.05);\n}\n.text-pumpkin\\/50{\ncolor: rgb(247 106 21 / 0.5);\n}\n.text-pumpkin\\/55{\ncolor: rgb(247 106 21 / 0.55);\n}\n.text-pumpkin\\/60{\ncolor: rgb(247 106 21 / 0.6);\n}\n.text-pumpkin\\/65{\ncolor: rgb(247 106 21 / 0.65);\n}\n.text-pumpkin\\/70{\ncolor: rgb(247 106 21 / 0.7);\n}\n.text-pumpkin\\/75{\ncolor: rgb(247 106 21 / 0.75);\n}\n.text-pumpkin\\/80{\ncolor: rgb(247 106 21 / 0.8);\n}\n.text-pumpkin\\/85{\ncolor: rgb(247 106 21 / 0.85);\n}\n.text-pumpkin\\/90{\ncolor: rgb(247 106 21 / 0.9);\n}\n.text-pumpkin\\/95{\ncolor: rgb(247 106 21 / 0.95);\n}\n.text-sand{\n--tw-text-opacity: 1;\ncolor: rgb(155 151 137 / var(--tw-text-opacity));\n}\n.text-sand-100{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / var(--tw-text-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-sand-100\\/0{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-sand-100\\/10{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-sand-100\\/100{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-sand-100\\/15{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-sand-100\\/20{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-sand-100\\/25{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-sand-100\\/30{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-sand-100\\/35{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-sand-100\\/40{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-sand-100\\/45{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-sand-100\\/5{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-sand-100\\/50{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-sand-100\\/55{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-sand-100\\/60{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-sand-100\\/65{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-sand-100\\/70{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-sand-100\\/75{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-sand-100\\/80{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-sand-100\\/85{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-sand-100\\/90{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-sand-100\\/95{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-sand-200{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / var(--tw-text-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-sand-200\\/0{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-sand-200\\/10{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-sand-200\\/100{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-sand-200\\/15{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-sand-200\\/20{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-sand-200\\/25{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-sand-200\\/30{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-sand-200\\/35{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-sand-200\\/40{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-sand-200\\/45{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-sand-200\\/5{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-sand-200\\/50{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-sand-200\\/55{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-sand-200\\/60{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-sand-200\\/65{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-sand-200\\/70{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-sand-200\\/75{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-sand-200\\/80{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-sand-200\\/85{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-sand-200\\/90{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-sand-200\\/95{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-sand-300{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / var(--tw-text-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-sand-300\\/0{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-sand-300\\/10{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-sand-300\\/100{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-sand-300\\/15{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-sand-300\\/20{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-sand-300\\/25{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-sand-300\\/30{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-sand-300\\/35{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-sand-300\\/40{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-sand-300\\/45{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-sand-300\\/5{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-sand-300\\/50{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-sand-300\\/55{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-sand-300\\/60{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-sand-300\\/65{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-sand-300\\/70{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-sand-300\\/75{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-sand-300\\/80{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-sand-300\\/85{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-sand-300\\/90{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-sand-300\\/95{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-sand-400{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / var(--tw-text-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-sand-400\\/0{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-sand-400\\/10{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-sand-400\\/100{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-sand-400\\/15{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-sand-400\\/20{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-sand-400\\/25{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-sand-400\\/30{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-sand-400\\/35{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-sand-400\\/40{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-sand-400\\/45{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-sand-400\\/5{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-sand-400\\/50{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-sand-400\\/55{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-sand-400\\/60{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-sand-400\\/65{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-sand-400\\/70{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-sand-400\\/75{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-sand-400\\/80{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-sand-400\\/85{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-sand-400\\/90{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-sand-400\\/95{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-sand-50{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / var(--tw-text-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-sand-50\\/0{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-sand-50\\/10{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-sand-50\\/100{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-sand-50\\/15{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-sand-50\\/20{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-sand-50\\/25{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-sand-50\\/30{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-sand-50\\/35{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-sand-50\\/40{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-sand-50\\/45{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-sand-50\\/5{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-sand-50\\/50{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-sand-50\\/55{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-sand-50\\/60{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-sand-50\\/65{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-sand-50\\/70{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-sand-50\\/75{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-sand-50\\/80{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-sand-50\\/85{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-sand-50\\/90{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-sand-50\\/95{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-sand-500{\n--tw-text-opacity: 1;\ncolor: color(from #9b9789 srgb r g b / var(--tw-text-opacity));\n}\n.text-sand-500\\/0{\ncolor: color(from #9b9789 srgb r g b / 0);\n}\n.text-sand-500\\/10{\ncolor: color(from #9b9789 srgb r g b / 0.1);\n}\n.text-sand-500\\/100{\ncolor: color(from #9b9789 srgb r g b / 1);\n}\n.text-sand-500\\/15{\ncolor: color(from #9b9789 srgb r g b / 0.15);\n}\n.text-sand-500\\/20{\ncolor: color(from #9b9789 srgb r g b / 0.2);\n}\n.text-sand-500\\/25{\ncolor: color(from #9b9789 srgb r g b / 0.25);\n}\n.text-sand-500\\/30{\ncolor: color(from #9b9789 srgb r g b / 0.3);\n}\n.text-sand-500\\/35{\ncolor: color(from #9b9789 srgb r g b / 0.35);\n}\n.text-sand-500\\/40{\ncolor: color(from #9b9789 srgb r g b / 0.4);\n}\n.text-sand-500\\/45{\ncolor: color(from #9b9789 srgb r g b / 0.45);\n}\n.text-sand-500\\/5{\ncolor: color(from #9b9789 srgb r g b / 0.05);\n}\n.text-sand-500\\/50{\ncolor: color(from #9b9789 srgb r g b / 0.5);\n}\n.text-sand-500\\/55{\ncolor: color(from #9b9789 srgb r g b / 0.55);\n}\n.text-sand-500\\/60{\ncolor: color(from #9b9789 srgb r g b / 0.6);\n}\n.text-sand-500\\/65{\ncolor: color(from #9b9789 srgb r g b / 0.65);\n}\n.text-sand-500\\/70{\ncolor: color(from #9b9789 srgb r g b / 0.7);\n}\n.text-sand-500\\/75{\ncolor: color(from #9b9789 srgb r g b / 0.75);\n}\n.text-sand-500\\/80{\ncolor: color(from #9b9789 srgb r g b / 0.8);\n}\n.text-sand-500\\/85{\ncolor: color(from #9b9789 srgb r g b / 0.85);\n}\n.text-sand-500\\/90{\ncolor: color(from #9b9789 srgb r g b / 0.9);\n}\n.text-sand-500\\/95{\ncolor: color(from #9b9789 srgb r g b / 0.95);\n}\n.text-sand-600{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / var(--tw-text-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-sand-600\\/0{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-sand-600\\/10{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-sand-600\\/100{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-sand-600\\/15{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-sand-600\\/20{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-sand-600\\/25{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-sand-600\\/30{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-sand-600\\/35{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-sand-600\\/40{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-sand-600\\/45{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-sand-600\\/5{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-sand-600\\/50{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-sand-600\\/55{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-sand-600\\/60{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-sand-600\\/65{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-sand-600\\/70{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-sand-600\\/75{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-sand-600\\/80{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-sand-600\\/85{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-sand-600\\/90{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-sand-600\\/95{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-sand-700{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / var(--tw-text-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-sand-700\\/0{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-sand-700\\/10{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-sand-700\\/100{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-sand-700\\/15{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-sand-700\\/20{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-sand-700\\/25{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-sand-700\\/30{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-sand-700\\/35{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-sand-700\\/40{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-sand-700\\/45{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-sand-700\\/5{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-sand-700\\/50{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-sand-700\\/55{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-sand-700\\/60{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-sand-700\\/65{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-sand-700\\/70{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-sand-700\\/75{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-sand-700\\/80{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-sand-700\\/85{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-sand-700\\/90{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-sand-700\\/95{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-sand-800{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / var(--tw-text-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-sand-800\\/0{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-sand-800\\/10{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-sand-800\\/100{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-sand-800\\/15{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-sand-800\\/20{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-sand-800\\/25{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-sand-800\\/30{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-sand-800\\/35{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-sand-800\\/40{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-sand-800\\/45{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-sand-800\\/5{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-sand-800\\/50{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-sand-800\\/55{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-sand-800\\/60{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-sand-800\\/65{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-sand-800\\/70{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-sand-800\\/75{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-sand-800\\/80{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-sand-800\\/85{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-sand-800\\/90{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-sand-800\\/95{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-sand-900{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / var(--tw-text-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-sand-900\\/0{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-sand-900\\/10{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-sand-900\\/100{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-sand-900\\/15{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-sand-900\\/20{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-sand-900\\/25{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-sand-900\\/30{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-sand-900\\/35{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-sand-900\\/40{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-sand-900\\/45{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-sand-900\\/5{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-sand-900\\/50{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-sand-900\\/55{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-sand-900\\/60{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-sand-900\\/65{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-sand-900\\/70{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-sand-900\\/75{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-sand-900\\/80{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-sand-900\\/85{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-sand-900\\/90{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-sand-900\\/95{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-sand-950{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / var(--tw-text-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-sand-950\\/0{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-sand-950\\/10{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-sand-950\\/100{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-sand-950\\/15{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-sand-950\\/20{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-sand-950\\/25{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-sand-950\\/30{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-sand-950\\/35{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-sand-950\\/40{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-sand-950\\/45{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-sand-950\\/5{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-sand-950\\/50{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-sand-950\\/55{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-sand-950\\/60{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-sand-950\\/65{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-sand-950\\/70{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-sand-950\\/75{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-sand-950\\/80{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-sand-950\\/85{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-sand-950\\/90{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-sand-950\\/95{\ncolor: color-mix(in lab, color(from #9b9789 srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-sand\\/0{\ncolor: rgb(155 151 137 / 0);\n}\n.text-sand\\/10{\ncolor: rgb(155 151 137 / 0.1);\n}\n.text-sand\\/100{\ncolor: rgb(155 151 137 / 1);\n}\n.text-sand\\/15{\ncolor: rgb(155 151 137 / 0.15);\n}\n.text-sand\\/20{\ncolor: rgb(155 151 137 / 0.2);\n}\n.text-sand\\/25{\ncolor: rgb(155 151 137 / 0.25);\n}\n.text-sand\\/30{\ncolor: rgb(155 151 137 / 0.3);\n}\n.text-sand\\/35{\ncolor: rgb(155 151 137 / 0.35);\n}\n.text-sand\\/40{\ncolor: rgb(155 151 137 / 0.4);\n}\n.text-sand\\/45{\ncolor: rgb(155 151 137 / 0.45);\n}\n.text-sand\\/5{\ncolor: rgb(155 151 137 / 0.05);\n}\n.text-sand\\/50{\ncolor: rgb(155 151 137 / 0.5);\n}\n.text-sand\\/55{\ncolor: rgb(155 151 137 / 0.55);\n}\n.text-sand\\/60{\ncolor: rgb(155 151 137 / 0.6);\n}\n.text-sand\\/65{\ncolor: rgb(155 151 137 / 0.65);\n}\n.text-sand\\/70{\ncolor: rgb(155 151 137 / 0.7);\n}\n.text-sand\\/75{\ncolor: rgb(155 151 137 / 0.75);\n}\n.text-sand\\/80{\ncolor: rgb(155 151 137 / 0.8);\n}\n.text-sand\\/85{\ncolor: rgb(155 151 137 / 0.85);\n}\n.text-sand\\/90{\ncolor: rgb(155 151 137 / 0.9);\n}\n.text-sand\\/95{\ncolor: rgb(155 151 137 / 0.95);\n}\n.text-scarlet{\n--tw-text-opacity: 1;\ncolor: rgb(229 72 77 / var(--tw-text-opacity));\n}\n.text-scarlet-100{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / var(--tw-text-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-scarlet-100\\/0{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-scarlet-100\\/10{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-scarlet-100\\/100{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-scarlet-100\\/15{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-scarlet-100\\/20{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-scarlet-100\\/25{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-scarlet-100\\/30{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-scarlet-100\\/35{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-scarlet-100\\/40{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-scarlet-100\\/45{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-scarlet-100\\/5{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-scarlet-100\\/50{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-scarlet-100\\/55{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-scarlet-100\\/60{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-scarlet-100\\/65{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-scarlet-100\\/70{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-scarlet-100\\/75{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-scarlet-100\\/80{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-scarlet-100\\/85{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-scarlet-100\\/90{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-scarlet-100\\/95{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-scarlet-200{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / var(--tw-text-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-scarlet-200\\/0{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-scarlet-200\\/10{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-scarlet-200\\/100{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-scarlet-200\\/15{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-scarlet-200\\/20{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-scarlet-200\\/25{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-scarlet-200\\/30{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-scarlet-200\\/35{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-scarlet-200\\/40{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-scarlet-200\\/45{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-scarlet-200\\/5{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-scarlet-200\\/50{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-scarlet-200\\/55{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-scarlet-200\\/60{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-scarlet-200\\/65{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-scarlet-200\\/70{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-scarlet-200\\/75{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-scarlet-200\\/80{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-scarlet-200\\/85{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-scarlet-200\\/90{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-scarlet-200\\/95{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-scarlet-300{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / var(--tw-text-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-scarlet-300\\/0{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-scarlet-300\\/10{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-scarlet-300\\/100{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-scarlet-300\\/15{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-scarlet-300\\/20{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-scarlet-300\\/25{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-scarlet-300\\/30{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-scarlet-300\\/35{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-scarlet-300\\/40{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-scarlet-300\\/45{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-scarlet-300\\/5{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-scarlet-300\\/50{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-scarlet-300\\/55{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-scarlet-300\\/60{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-scarlet-300\\/65{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-scarlet-300\\/70{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-scarlet-300\\/75{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-scarlet-300\\/80{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-scarlet-300\\/85{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-scarlet-300\\/90{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-scarlet-300\\/95{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-scarlet-400{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / var(--tw-text-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-scarlet-400\\/0{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-scarlet-400\\/10{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-scarlet-400\\/100{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-scarlet-400\\/15{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-scarlet-400\\/20{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-scarlet-400\\/25{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-scarlet-400\\/30{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-scarlet-400\\/35{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-scarlet-400\\/40{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-scarlet-400\\/45{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-scarlet-400\\/5{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-scarlet-400\\/50{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-scarlet-400\\/55{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-scarlet-400\\/60{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-scarlet-400\\/65{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-scarlet-400\\/70{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-scarlet-400\\/75{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-scarlet-400\\/80{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-scarlet-400\\/85{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-scarlet-400\\/90{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-scarlet-400\\/95{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-scarlet-50{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / var(--tw-text-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-scarlet-50\\/0{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-scarlet-50\\/10{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-scarlet-50\\/100{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-scarlet-50\\/15{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-scarlet-50\\/20{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-scarlet-50\\/25{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-scarlet-50\\/30{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-scarlet-50\\/35{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-scarlet-50\\/40{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-scarlet-50\\/45{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-scarlet-50\\/5{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-scarlet-50\\/50{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-scarlet-50\\/55{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-scarlet-50\\/60{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-scarlet-50\\/65{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-scarlet-50\\/70{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-scarlet-50\\/75{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-scarlet-50\\/80{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-scarlet-50\\/85{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-scarlet-50\\/90{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-scarlet-50\\/95{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-scarlet-500{\n--tw-text-opacity: 1;\ncolor: color(from #e5484d srgb r g b / var(--tw-text-opacity));\n}\n.text-scarlet-500\\/0{\ncolor: color(from #e5484d srgb r g b / 0);\n}\n.text-scarlet-500\\/10{\ncolor: color(from #e5484d srgb r g b / 0.1);\n}\n.text-scarlet-500\\/100{\ncolor: color(from #e5484d srgb r g b / 1);\n}\n.text-scarlet-500\\/15{\ncolor: color(from #e5484d srgb r g b / 0.15);\n}\n.text-scarlet-500\\/20{\ncolor: color(from #e5484d srgb r g b / 0.2);\n}\n.text-scarlet-500\\/25{\ncolor: color(from #e5484d srgb r g b / 0.25);\n}\n.text-scarlet-500\\/30{\ncolor: color(from #e5484d srgb r g b / 0.3);\n}\n.text-scarlet-500\\/35{\ncolor: color(from #e5484d srgb r g b / 0.35);\n}\n.text-scarlet-500\\/40{\ncolor: color(from #e5484d srgb r g b / 0.4);\n}\n.text-scarlet-500\\/45{\ncolor: color(from #e5484d srgb r g b / 0.45);\n}\n.text-scarlet-500\\/5{\ncolor: color(from #e5484d srgb r g b / 0.05);\n}\n.text-scarlet-500\\/50{\ncolor: color(from #e5484d srgb r g b / 0.5);\n}\n.text-scarlet-500\\/55{\ncolor: color(from #e5484d srgb r g b / 0.55);\n}\n.text-scarlet-500\\/60{\ncolor: color(from #e5484d srgb r g b / 0.6);\n}\n.text-scarlet-500\\/65{\ncolor: color(from #e5484d srgb r g b / 0.65);\n}\n.text-scarlet-500\\/70{\ncolor: color(from #e5484d srgb r g b / 0.7);\n}\n.text-scarlet-500\\/75{\ncolor: color(from #e5484d srgb r g b / 0.75);\n}\n.text-scarlet-500\\/80{\ncolor: color(from #e5484d srgb r g b / 0.8);\n}\n.text-scarlet-500\\/85{\ncolor: color(from #e5484d srgb r g b / 0.85);\n}\n.text-scarlet-500\\/90{\ncolor: color(from #e5484d srgb r g b / 0.9);\n}\n.text-scarlet-500\\/95{\ncolor: color(from #e5484d srgb r g b / 0.95);\n}\n.text-scarlet-600{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / var(--tw-text-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-scarlet-600\\/0{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-scarlet-600\\/10{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-scarlet-600\\/100{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-scarlet-600\\/15{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-scarlet-600\\/20{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-scarlet-600\\/25{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-scarlet-600\\/30{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-scarlet-600\\/35{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-scarlet-600\\/40{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-scarlet-600\\/45{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-scarlet-600\\/5{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-scarlet-600\\/50{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-scarlet-600\\/55{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-scarlet-600\\/60{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-scarlet-600\\/65{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-scarlet-600\\/70{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-scarlet-600\\/75{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-scarlet-600\\/80{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-scarlet-600\\/85{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-scarlet-600\\/90{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-scarlet-600\\/95{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-scarlet-700{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / var(--tw-text-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-scarlet-700\\/0{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-scarlet-700\\/10{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-scarlet-700\\/100{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-scarlet-700\\/15{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-scarlet-700\\/20{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-scarlet-700\\/25{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-scarlet-700\\/30{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-scarlet-700\\/35{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-scarlet-700\\/40{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-scarlet-700\\/45{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-scarlet-700\\/5{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-scarlet-700\\/50{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-scarlet-700\\/55{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-scarlet-700\\/60{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-scarlet-700\\/65{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-scarlet-700\\/70{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-scarlet-700\\/75{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-scarlet-700\\/80{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-scarlet-700\\/85{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-scarlet-700\\/90{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-scarlet-700\\/95{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-scarlet-800{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / var(--tw-text-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-scarlet-800\\/0{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-scarlet-800\\/10{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-scarlet-800\\/100{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-scarlet-800\\/15{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-scarlet-800\\/20{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-scarlet-800\\/25{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-scarlet-800\\/30{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-scarlet-800\\/35{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-scarlet-800\\/40{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-scarlet-800\\/45{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-scarlet-800\\/5{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-scarlet-800\\/50{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-scarlet-800\\/55{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-scarlet-800\\/60{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-scarlet-800\\/65{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-scarlet-800\\/70{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-scarlet-800\\/75{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-scarlet-800\\/80{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-scarlet-800\\/85{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-scarlet-800\\/90{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-scarlet-800\\/95{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-scarlet-900{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / var(--tw-text-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-scarlet-900\\/0{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-scarlet-900\\/10{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-scarlet-900\\/100{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-scarlet-900\\/15{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-scarlet-900\\/20{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-scarlet-900\\/25{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-scarlet-900\\/30{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-scarlet-900\\/35{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-scarlet-900\\/40{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-scarlet-900\\/45{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-scarlet-900\\/5{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-scarlet-900\\/50{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-scarlet-900\\/55{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-scarlet-900\\/60{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-scarlet-900\\/65{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-scarlet-900\\/70{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-scarlet-900\\/75{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-scarlet-900\\/80{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-scarlet-900\\/85{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-scarlet-900\\/90{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-scarlet-900\\/95{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-scarlet-950{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / var(--tw-text-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-scarlet-950\\/0{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-scarlet-950\\/10{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-scarlet-950\\/100{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-scarlet-950\\/15{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-scarlet-950\\/20{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-scarlet-950\\/25{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-scarlet-950\\/30{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-scarlet-950\\/35{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-scarlet-950\\/40{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-scarlet-950\\/45{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-scarlet-950\\/5{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-scarlet-950\\/50{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-scarlet-950\\/55{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-scarlet-950\\/60{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-scarlet-950\\/65{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-scarlet-950\\/70{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-scarlet-950\\/75{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-scarlet-950\\/80{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-scarlet-950\\/85{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-scarlet-950\\/90{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-scarlet-950\\/95{\ncolor: color-mix(in lab, color(from #e5484d srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-scarlet\\/0{\ncolor: rgb(229 72 77 / 0);\n}\n.text-scarlet\\/10{\ncolor: rgb(229 72 77 / 0.1);\n}\n.text-scarlet\\/100{\ncolor: rgb(229 72 77 / 1);\n}\n.text-scarlet\\/15{\ncolor: rgb(229 72 77 / 0.15);\n}\n.text-scarlet\\/20{\ncolor: rgb(229 72 77 / 0.2);\n}\n.text-scarlet\\/25{\ncolor: rgb(229 72 77 / 0.25);\n}\n.text-scarlet\\/30{\ncolor: rgb(229 72 77 / 0.3);\n}\n.text-scarlet\\/35{\ncolor: rgb(229 72 77 / 0.35);\n}\n.text-scarlet\\/40{\ncolor: rgb(229 72 77 / 0.4);\n}\n.text-scarlet\\/45{\ncolor: rgb(229 72 77 / 0.45);\n}\n.text-scarlet\\/5{\ncolor: rgb(229 72 77 / 0.05);\n}\n.text-scarlet\\/50{\ncolor: rgb(229 72 77 / 0.5);\n}\n.text-scarlet\\/55{\ncolor: rgb(229 72 77 / 0.55);\n}\n.text-scarlet\\/60{\ncolor: rgb(229 72 77 / 0.6);\n}\n.text-scarlet\\/65{\ncolor: rgb(229 72 77 / 0.65);\n}\n.text-scarlet\\/70{\ncolor: rgb(229 72 77 / 0.7);\n}\n.text-scarlet\\/75{\ncolor: rgb(229 72 77 / 0.75);\n}\n.text-scarlet\\/80{\ncolor: rgb(229 72 77 / 0.8);\n}\n.text-scarlet\\/85{\ncolor: rgb(229 72 77 / 0.85);\n}\n.text-scarlet\\/90{\ncolor: rgb(229 72 77 / 0.9);\n}\n.text-scarlet\\/95{\ncolor: rgb(229 72 77 / 0.95);\n}\n.text-silver{\n--tw-text-opacity: 1;\ncolor: rgb(152 157 165 / var(--tw-text-opacity));\n}\n.text-silver-100{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / var(--tw-text-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-silver-100\\/0{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-silver-100\\/10{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-silver-100\\/100{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-silver-100\\/15{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-silver-100\\/20{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-silver-100\\/25{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-silver-100\\/30{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-silver-100\\/35{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-silver-100\\/40{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-silver-100\\/45{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-silver-100\\/5{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-silver-100\\/50{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-silver-100\\/55{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-silver-100\\/60{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-silver-100\\/65{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-silver-100\\/70{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-silver-100\\/75{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-silver-100\\/80{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-silver-100\\/85{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-silver-100\\/90{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-silver-100\\/95{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-silver-200{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / var(--tw-text-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-silver-200\\/0{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-silver-200\\/10{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-silver-200\\/100{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-silver-200\\/15{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-silver-200\\/20{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-silver-200\\/25{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-silver-200\\/30{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-silver-200\\/35{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-silver-200\\/40{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-silver-200\\/45{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-silver-200\\/5{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-silver-200\\/50{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-silver-200\\/55{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-silver-200\\/60{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-silver-200\\/65{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-silver-200\\/70{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-silver-200\\/75{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-silver-200\\/80{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-silver-200\\/85{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-silver-200\\/90{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-silver-200\\/95{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-silver-300{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / var(--tw-text-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-silver-300\\/0{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-silver-300\\/10{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-silver-300\\/100{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-silver-300\\/15{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-silver-300\\/20{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-silver-300\\/25{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-silver-300\\/30{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-silver-300\\/35{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-silver-300\\/40{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-silver-300\\/45{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-silver-300\\/5{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-silver-300\\/50{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-silver-300\\/55{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-silver-300\\/60{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-silver-300\\/65{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-silver-300\\/70{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-silver-300\\/75{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-silver-300\\/80{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-silver-300\\/85{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-silver-300\\/90{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-silver-300\\/95{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-silver-400{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / var(--tw-text-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-silver-400\\/0{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-silver-400\\/10{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-silver-400\\/100{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-silver-400\\/15{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-silver-400\\/20{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-silver-400\\/25{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-silver-400\\/30{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-silver-400\\/35{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-silver-400\\/40{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-silver-400\\/45{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-silver-400\\/5{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-silver-400\\/50{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-silver-400\\/55{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-silver-400\\/60{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-silver-400\\/65{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-silver-400\\/70{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-silver-400\\/75{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-silver-400\\/80{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-silver-400\\/85{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-silver-400\\/90{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-silver-400\\/95{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-silver-50{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / var(--tw-text-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-silver-50\\/0{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-silver-50\\/10{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-silver-50\\/100{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-silver-50\\/15{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-silver-50\\/20{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-silver-50\\/25{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-silver-50\\/30{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-silver-50\\/35{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-silver-50\\/40{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-silver-50\\/45{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-silver-50\\/5{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-silver-50\\/50{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-silver-50\\/55{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-silver-50\\/60{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-silver-50\\/65{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-silver-50\\/70{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-silver-50\\/75{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-silver-50\\/80{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-silver-50\\/85{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-silver-50\\/90{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-silver-50\\/95{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-silver-500{\n--tw-text-opacity: 1;\ncolor: color(from #989da5 srgb r g b / var(--tw-text-opacity));\n}\n.text-silver-500\\/0{\ncolor: color(from #989da5 srgb r g b / 0);\n}\n.text-silver-500\\/10{\ncolor: color(from #989da5 srgb r g b / 0.1);\n}\n.text-silver-500\\/100{\ncolor: color(from #989da5 srgb r g b / 1);\n}\n.text-silver-500\\/15{\ncolor: color(from #989da5 srgb r g b / 0.15);\n}\n.text-silver-500\\/20{\ncolor: color(from #989da5 srgb r g b / 0.2);\n}\n.text-silver-500\\/25{\ncolor: color(from #989da5 srgb r g b / 0.25);\n}\n.text-silver-500\\/30{\ncolor: color(from #989da5 srgb r g b / 0.3);\n}\n.text-silver-500\\/35{\ncolor: color(from #989da5 srgb r g b / 0.35);\n}\n.text-silver-500\\/40{\ncolor: color(from #989da5 srgb r g b / 0.4);\n}\n.text-silver-500\\/45{\ncolor: color(from #989da5 srgb r g b / 0.45);\n}\n.text-silver-500\\/5{\ncolor: color(from #989da5 srgb r g b / 0.05);\n}\n.text-silver-500\\/50{\ncolor: color(from #989da5 srgb r g b / 0.5);\n}\n.text-silver-500\\/55{\ncolor: color(from #989da5 srgb r g b / 0.55);\n}\n.text-silver-500\\/60{\ncolor: color(from #989da5 srgb r g b / 0.6);\n}\n.text-silver-500\\/65{\ncolor: color(from #989da5 srgb r g b / 0.65);\n}\n.text-silver-500\\/70{\ncolor: color(from #989da5 srgb r g b / 0.7);\n}\n.text-silver-500\\/75{\ncolor: color(from #989da5 srgb r g b / 0.75);\n}\n.text-silver-500\\/80{\ncolor: color(from #989da5 srgb r g b / 0.8);\n}\n.text-silver-500\\/85{\ncolor: color(from #989da5 srgb r g b / 0.85);\n}\n.text-silver-500\\/90{\ncolor: color(from #989da5 srgb r g b / 0.9);\n}\n.text-silver-500\\/95{\ncolor: color(from #989da5 srgb r g b / 0.95);\n}\n.text-silver-600{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / var(--tw-text-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-silver-600\\/0{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-silver-600\\/10{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-silver-600\\/100{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-silver-600\\/15{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-silver-600\\/20{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-silver-600\\/25{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-silver-600\\/30{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-silver-600\\/35{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-silver-600\\/40{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-silver-600\\/45{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-silver-600\\/5{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-silver-600\\/50{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-silver-600\\/55{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-silver-600\\/60{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-silver-600\\/65{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-silver-600\\/70{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-silver-600\\/75{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-silver-600\\/80{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-silver-600\\/85{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-silver-600\\/90{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-silver-600\\/95{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-silver-700{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / var(--tw-text-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-silver-700\\/0{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-silver-700\\/10{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-silver-700\\/100{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-silver-700\\/15{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-silver-700\\/20{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-silver-700\\/25{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-silver-700\\/30{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-silver-700\\/35{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-silver-700\\/40{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-silver-700\\/45{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-silver-700\\/5{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-silver-700\\/50{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-silver-700\\/55{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-silver-700\\/60{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-silver-700\\/65{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-silver-700\\/70{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-silver-700\\/75{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-silver-700\\/80{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-silver-700\\/85{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-silver-700\\/90{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-silver-700\\/95{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-silver-800{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / var(--tw-text-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-silver-800\\/0{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-silver-800\\/10{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-silver-800\\/100{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-silver-800\\/15{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-silver-800\\/20{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-silver-800\\/25{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-silver-800\\/30{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-silver-800\\/35{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-silver-800\\/40{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-silver-800\\/45{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-silver-800\\/5{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-silver-800\\/50{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-silver-800\\/55{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-silver-800\\/60{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-silver-800\\/65{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-silver-800\\/70{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-silver-800\\/75{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-silver-800\\/80{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-silver-800\\/85{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-silver-800\\/90{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-silver-800\\/95{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-silver-900{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / var(--tw-text-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-silver-900\\/0{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-silver-900\\/10{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-silver-900\\/100{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-silver-900\\/15{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-silver-900\\/20{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-silver-900\\/25{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-silver-900\\/30{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-silver-900\\/35{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-silver-900\\/40{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-silver-900\\/45{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-silver-900\\/5{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-silver-900\\/50{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-silver-900\\/55{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-silver-900\\/60{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-silver-900\\/65{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-silver-900\\/70{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-silver-900\\/75{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-silver-900\\/80{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-silver-900\\/85{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-silver-900\\/90{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-silver-900\\/95{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-silver-950{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / var(--tw-text-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-silver-950\\/0{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-silver-950\\/10{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-silver-950\\/100{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-silver-950\\/15{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-silver-950\\/20{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-silver-950\\/25{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-silver-950\\/30{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-silver-950\\/35{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-silver-950\\/40{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-silver-950\\/45{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-silver-950\\/5{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-silver-950\\/50{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-silver-950\\/55{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-silver-950\\/60{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-silver-950\\/65{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-silver-950\\/70{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-silver-950\\/75{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-silver-950\\/80{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-silver-950\\/85{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-silver-950\\/90{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-silver-950\\/95{\ncolor: color-mix(in lab, color(from #989da5 srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-silver\\/0{\ncolor: rgb(152 157 165 / 0);\n}\n.text-silver\\/10{\ncolor: rgb(152 157 165 / 0.1);\n}\n.text-silver\\/100{\ncolor: rgb(152 157 165 / 1);\n}\n.text-silver\\/15{\ncolor: rgb(152 157 165 / 0.15);\n}\n.text-silver\\/20{\ncolor: rgb(152 157 165 / 0.2);\n}\n.text-silver\\/25{\ncolor: rgb(152 157 165 / 0.25);\n}\n.text-silver\\/30{\ncolor: rgb(152 157 165 / 0.3);\n}\n.text-silver\\/35{\ncolor: rgb(152 157 165 / 0.35);\n}\n.text-silver\\/40{\ncolor: rgb(152 157 165 / 0.4);\n}\n.text-silver\\/45{\ncolor: rgb(152 157 165 / 0.45);\n}\n.text-silver\\/5{\ncolor: rgb(152 157 165 / 0.05);\n}\n.text-silver\\/50{\ncolor: rgb(152 157 165 / 0.5);\n}\n.text-silver\\/55{\ncolor: rgb(152 157 165 / 0.55);\n}\n.text-silver\\/60{\ncolor: rgb(152 157 165 / 0.6);\n}\n.text-silver\\/65{\ncolor: rgb(152 157 165 / 0.65);\n}\n.text-silver\\/70{\ncolor: rgb(152 157 165 / 0.7);\n}\n.text-silver\\/75{\ncolor: rgb(152 157 165 / 0.75);\n}\n.text-silver\\/80{\ncolor: rgb(152 157 165 / 0.8);\n}\n.text-silver\\/85{\ncolor: rgb(152 157 165 / 0.85);\n}\n.text-silver\\/90{\ncolor: rgb(152 157 165 / 0.9);\n}\n.text-silver\\/95{\ncolor: rgb(152 157 165 / 0.95);\n}\n.text-steel{\n--tw-text-opacity: 1;\ncolor: rgb(124 153 175 / var(--tw-text-opacity));\n}\n.text-steel-100{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / var(--tw-text-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-steel-100\\/0{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-steel-100\\/10{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-steel-100\\/100{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-steel-100\\/15{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-steel-100\\/20{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-steel-100\\/25{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-steel-100\\/30{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-steel-100\\/35{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-steel-100\\/40{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-steel-100\\/45{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-steel-100\\/5{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-steel-100\\/50{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-steel-100\\/55{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-steel-100\\/60{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-steel-100\\/65{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-steel-100\\/70{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-steel-100\\/75{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-steel-100\\/80{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-steel-100\\/85{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-steel-100\\/90{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-steel-100\\/95{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-steel-200{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / var(--tw-text-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-steel-200\\/0{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-steel-200\\/10{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-steel-200\\/100{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-steel-200\\/15{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-steel-200\\/20{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-steel-200\\/25{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-steel-200\\/30{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-steel-200\\/35{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-steel-200\\/40{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-steel-200\\/45{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-steel-200\\/5{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-steel-200\\/50{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-steel-200\\/55{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-steel-200\\/60{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-steel-200\\/65{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-steel-200\\/70{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-steel-200\\/75{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-steel-200\\/80{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-steel-200\\/85{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-steel-200\\/90{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-steel-200\\/95{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-steel-300{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / var(--tw-text-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-steel-300\\/0{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-steel-300\\/10{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-steel-300\\/100{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-steel-300\\/15{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-steel-300\\/20{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-steel-300\\/25{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-steel-300\\/30{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-steel-300\\/35{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-steel-300\\/40{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-steel-300\\/45{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-steel-300\\/5{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-steel-300\\/50{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-steel-300\\/55{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-steel-300\\/60{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-steel-300\\/65{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-steel-300\\/70{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-steel-300\\/75{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-steel-300\\/80{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-steel-300\\/85{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-steel-300\\/90{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-steel-300\\/95{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-steel-400{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / var(--tw-text-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-steel-400\\/0{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-steel-400\\/10{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-steel-400\\/100{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-steel-400\\/15{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-steel-400\\/20{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-steel-400\\/25{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-steel-400\\/30{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-steel-400\\/35{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-steel-400\\/40{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-steel-400\\/45{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-steel-400\\/5{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-steel-400\\/50{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-steel-400\\/55{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-steel-400\\/60{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-steel-400\\/65{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-steel-400\\/70{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-steel-400\\/75{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-steel-400\\/80{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-steel-400\\/85{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-steel-400\\/90{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-steel-400\\/95{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-steel-50{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / var(--tw-text-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-steel-50\\/0{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-steel-50\\/10{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-steel-50\\/100{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-steel-50\\/15{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-steel-50\\/20{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-steel-50\\/25{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-steel-50\\/30{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-steel-50\\/35{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-steel-50\\/40{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-steel-50\\/45{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-steel-50\\/5{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-steel-50\\/50{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-steel-50\\/55{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-steel-50\\/60{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-steel-50\\/65{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-steel-50\\/70{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-steel-50\\/75{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-steel-50\\/80{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-steel-50\\/85{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-steel-50\\/90{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-steel-50\\/95{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-steel-500{\n--tw-text-opacity: 1;\ncolor: color(from #7c99af srgb r g b / var(--tw-text-opacity));\n}\n.text-steel-500\\/0{\ncolor: color(from #7c99af srgb r g b / 0);\n}\n.text-steel-500\\/10{\ncolor: color(from #7c99af srgb r g b / 0.1);\n}\n.text-steel-500\\/100{\ncolor: color(from #7c99af srgb r g b / 1);\n}\n.text-steel-500\\/15{\ncolor: color(from #7c99af srgb r g b / 0.15);\n}\n.text-steel-500\\/20{\ncolor: color(from #7c99af srgb r g b / 0.2);\n}\n.text-steel-500\\/25{\ncolor: color(from #7c99af srgb r g b / 0.25);\n}\n.text-steel-500\\/30{\ncolor: color(from #7c99af srgb r g b / 0.3);\n}\n.text-steel-500\\/35{\ncolor: color(from #7c99af srgb r g b / 0.35);\n}\n.text-steel-500\\/40{\ncolor: color(from #7c99af srgb r g b / 0.4);\n}\n.text-steel-500\\/45{\ncolor: color(from #7c99af srgb r g b / 0.45);\n}\n.text-steel-500\\/5{\ncolor: color(from #7c99af srgb r g b / 0.05);\n}\n.text-steel-500\\/50{\ncolor: color(from #7c99af srgb r g b / 0.5);\n}\n.text-steel-500\\/55{\ncolor: color(from #7c99af srgb r g b / 0.55);\n}\n.text-steel-500\\/60{\ncolor: color(from #7c99af srgb r g b / 0.6);\n}\n.text-steel-500\\/65{\ncolor: color(from #7c99af srgb r g b / 0.65);\n}\n.text-steel-500\\/70{\ncolor: color(from #7c99af srgb r g b / 0.7);\n}\n.text-steel-500\\/75{\ncolor: color(from #7c99af srgb r g b / 0.75);\n}\n.text-steel-500\\/80{\ncolor: color(from #7c99af srgb r g b / 0.8);\n}\n.text-steel-500\\/85{\ncolor: color(from #7c99af srgb r g b / 0.85);\n}\n.text-steel-500\\/90{\ncolor: color(from #7c99af srgb r g b / 0.9);\n}\n.text-steel-500\\/95{\ncolor: color(from #7c99af srgb r g b / 0.95);\n}\n.text-steel-600{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / var(--tw-text-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-steel-600\\/0{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-steel-600\\/10{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-steel-600\\/100{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-steel-600\\/15{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-steel-600\\/20{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-steel-600\\/25{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-steel-600\\/30{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-steel-600\\/35{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-steel-600\\/40{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-steel-600\\/45{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-steel-600\\/5{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-steel-600\\/50{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-steel-600\\/55{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-steel-600\\/60{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-steel-600\\/65{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-steel-600\\/70{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-steel-600\\/75{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-steel-600\\/80{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-steel-600\\/85{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-steel-600\\/90{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-steel-600\\/95{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-steel-700{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / var(--tw-text-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-steel-700\\/0{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-steel-700\\/10{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-steel-700\\/100{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-steel-700\\/15{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-steel-700\\/20{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-steel-700\\/25{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-steel-700\\/30{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-steel-700\\/35{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-steel-700\\/40{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-steel-700\\/45{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-steel-700\\/5{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-steel-700\\/50{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-steel-700\\/55{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-steel-700\\/60{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-steel-700\\/65{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-steel-700\\/70{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-steel-700\\/75{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-steel-700\\/80{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-steel-700\\/85{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-steel-700\\/90{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-steel-700\\/95{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-steel-800{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / var(--tw-text-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-steel-800\\/0{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-steel-800\\/10{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-steel-800\\/100{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-steel-800\\/15{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-steel-800\\/20{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-steel-800\\/25{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-steel-800\\/30{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-steel-800\\/35{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-steel-800\\/40{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-steel-800\\/45{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-steel-800\\/5{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-steel-800\\/50{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-steel-800\\/55{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-steel-800\\/60{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-steel-800\\/65{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-steel-800\\/70{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-steel-800\\/75{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-steel-800\\/80{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-steel-800\\/85{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-steel-800\\/90{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-steel-800\\/95{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-steel-900{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / var(--tw-text-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-steel-900\\/0{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-steel-900\\/10{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-steel-900\\/100{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-steel-900\\/15{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-steel-900\\/20{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-steel-900\\/25{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-steel-900\\/30{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-steel-900\\/35{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-steel-900\\/40{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-steel-900\\/45{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-steel-900\\/5{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-steel-900\\/50{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-steel-900\\/55{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-steel-900\\/60{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-steel-900\\/65{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-steel-900\\/70{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-steel-900\\/75{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-steel-900\\/80{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-steel-900\\/85{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-steel-900\\/90{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-steel-900\\/95{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-steel-950{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / var(--tw-text-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-steel-950\\/0{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-steel-950\\/10{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-steel-950\\/100{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-steel-950\\/15{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-steel-950\\/20{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-steel-950\\/25{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-steel-950\\/30{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-steel-950\\/35{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-steel-950\\/40{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-steel-950\\/45{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-steel-950\\/5{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-steel-950\\/50{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-steel-950\\/55{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-steel-950\\/60{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-steel-950\\/65{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-steel-950\\/70{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-steel-950\\/75{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-steel-950\\/80{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-steel-950\\/85{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-steel-950\\/90{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-steel-950\\/95{\ncolor: color-mix(in lab, color(from #7c99af srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-steel\\/0{\ncolor: rgb(124 153 175 / 0);\n}\n.text-steel\\/10{\ncolor: rgb(124 153 175 / 0.1);\n}\n.text-steel\\/100{\ncolor: rgb(124 153 175 / 1);\n}\n.text-steel\\/15{\ncolor: rgb(124 153 175 / 0.15);\n}\n.text-steel\\/20{\ncolor: rgb(124 153 175 / 0.2);\n}\n.text-steel\\/25{\ncolor: rgb(124 153 175 / 0.25);\n}\n.text-steel\\/30{\ncolor: rgb(124 153 175 / 0.3);\n}\n.text-steel\\/35{\ncolor: rgb(124 153 175 / 0.35);\n}\n.text-steel\\/40{\ncolor: rgb(124 153 175 / 0.4);\n}\n.text-steel\\/45{\ncolor: rgb(124 153 175 / 0.45);\n}\n.text-steel\\/5{\ncolor: rgb(124 153 175 / 0.05);\n}\n.text-steel\\/50{\ncolor: rgb(124 153 175 / 0.5);\n}\n.text-steel\\/55{\ncolor: rgb(124 153 175 / 0.55);\n}\n.text-steel\\/60{\ncolor: rgb(124 153 175 / 0.6);\n}\n.text-steel\\/65{\ncolor: rgb(124 153 175 / 0.65);\n}\n.text-steel\\/70{\ncolor: rgb(124 153 175 / 0.7);\n}\n.text-steel\\/75{\ncolor: rgb(124 153 175 / 0.75);\n}\n.text-steel\\/80{\ncolor: rgb(124 153 175 / 0.8);\n}\n.text-steel\\/85{\ncolor: rgb(124 153 175 / 0.85);\n}\n.text-steel\\/90{\ncolor: rgb(124 153 175 / 0.9);\n}\n.text-steel\\/95{\ncolor: rgb(124 153 175 / 0.95);\n}\n.text-success{\n--tw-text-opacity: 1;\ncolor: rgb(68 188 105 / var(--tw-text-opacity));\n}\n.text-success-100{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / var(--tw-text-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-success-100\\/0{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-success-100\\/10{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-success-100\\/100{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-success-100\\/15{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-success-100\\/20{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-success-100\\/25{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-success-100\\/30{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-success-100\\/35{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-success-100\\/40{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-success-100\\/45{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-success-100\\/5{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-success-100\\/50{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-success-100\\/55{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-success-100\\/60{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-success-100\\/65{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-success-100\\/70{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-success-100\\/75{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-success-100\\/80{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-success-100\\/85{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-success-100\\/90{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-success-100\\/95{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-success-200{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / var(--tw-text-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-success-200\\/0{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-success-200\\/10{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-success-200\\/100{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-success-200\\/15{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-success-200\\/20{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-success-200\\/25{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-success-200\\/30{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-success-200\\/35{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-success-200\\/40{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-success-200\\/45{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-success-200\\/5{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-success-200\\/50{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-success-200\\/55{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-success-200\\/60{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-success-200\\/65{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-success-200\\/70{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-success-200\\/75{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-success-200\\/80{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-success-200\\/85{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-success-200\\/90{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-success-200\\/95{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-success-300{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / var(--tw-text-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-success-300\\/0{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-success-300\\/10{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-success-300\\/100{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-success-300\\/15{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-success-300\\/20{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-success-300\\/25{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-success-300\\/30{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-success-300\\/35{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-success-300\\/40{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-success-300\\/45{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-success-300\\/5{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-success-300\\/50{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-success-300\\/55{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-success-300\\/60{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-success-300\\/65{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-success-300\\/70{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-success-300\\/75{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-success-300\\/80{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-success-300\\/85{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-success-300\\/90{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-success-300\\/95{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-success-400{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / var(--tw-text-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-success-400\\/0{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-success-400\\/10{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-success-400\\/100{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-success-400\\/15{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-success-400\\/20{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-success-400\\/25{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-success-400\\/30{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-success-400\\/35{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-success-400\\/40{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-success-400\\/45{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-success-400\\/5{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-success-400\\/50{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-success-400\\/55{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-success-400\\/60{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-success-400\\/65{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-success-400\\/70{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-success-400\\/75{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-success-400\\/80{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-success-400\\/85{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-success-400\\/90{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-success-400\\/95{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-success-50{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / var(--tw-text-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-success-50\\/0{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-success-50\\/10{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-success-50\\/100{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-success-50\\/15{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-success-50\\/20{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-success-50\\/25{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-success-50\\/30{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-success-50\\/35{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-success-50\\/40{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-success-50\\/45{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-success-50\\/5{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-success-50\\/50{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-success-50\\/55{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-success-50\\/60{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-success-50\\/65{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-success-50\\/70{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-success-50\\/75{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-success-50\\/80{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-success-50\\/85{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-success-50\\/90{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-success-50\\/95{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-success-500{\n--tw-text-opacity: 1;\ncolor: color(from #44bc69 srgb r g b / var(--tw-text-opacity));\n}\n.text-success-500\\/0{\ncolor: color(from #44bc69 srgb r g b / 0);\n}\n.text-success-500\\/10{\ncolor: color(from #44bc69 srgb r g b / 0.1);\n}\n.text-success-500\\/100{\ncolor: color(from #44bc69 srgb r g b / 1);\n}\n.text-success-500\\/15{\ncolor: color(from #44bc69 srgb r g b / 0.15);\n}\n.text-success-500\\/20{\ncolor: color(from #44bc69 srgb r g b / 0.2);\n}\n.text-success-500\\/25{\ncolor: color(from #44bc69 srgb r g b / 0.25);\n}\n.text-success-500\\/30{\ncolor: color(from #44bc69 srgb r g b / 0.3);\n}\n.text-success-500\\/35{\ncolor: color(from #44bc69 srgb r g b / 0.35);\n}\n.text-success-500\\/40{\ncolor: color(from #44bc69 srgb r g b / 0.4);\n}\n.text-success-500\\/45{\ncolor: color(from #44bc69 srgb r g b / 0.45);\n}\n.text-success-500\\/5{\ncolor: color(from #44bc69 srgb r g b / 0.05);\n}\n.text-success-500\\/50{\ncolor: color(from #44bc69 srgb r g b / 0.5);\n}\n.text-success-500\\/55{\ncolor: color(from #44bc69 srgb r g b / 0.55);\n}\n.text-success-500\\/60{\ncolor: color(from #44bc69 srgb r g b / 0.6);\n}\n.text-success-500\\/65{\ncolor: color(from #44bc69 srgb r g b / 0.65);\n}\n.text-success-500\\/70{\ncolor: color(from #44bc69 srgb r g b / 0.7);\n}\n.text-success-500\\/75{\ncolor: color(from #44bc69 srgb r g b / 0.75);\n}\n.text-success-500\\/80{\ncolor: color(from #44bc69 srgb r g b / 0.8);\n}\n.text-success-500\\/85{\ncolor: color(from #44bc69 srgb r g b / 0.85);\n}\n.text-success-500\\/90{\ncolor: color(from #44bc69 srgb r g b / 0.9);\n}\n.text-success-500\\/95{\ncolor: color(from #44bc69 srgb r g b / 0.95);\n}\n.text-success-600{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / var(--tw-text-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-success-600\\/0{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-success-600\\/10{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-success-600\\/100{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-success-600\\/15{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-success-600\\/20{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-success-600\\/25{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-success-600\\/30{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-success-600\\/35{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-success-600\\/40{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-success-600\\/45{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-success-600\\/5{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-success-600\\/50{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-success-600\\/55{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-success-600\\/60{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-success-600\\/65{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-success-600\\/70{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-success-600\\/75{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-success-600\\/80{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-success-600\\/85{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-success-600\\/90{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-success-600\\/95{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-success-700{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / var(--tw-text-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-success-700\\/0{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-success-700\\/10{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-success-700\\/100{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-success-700\\/15{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-success-700\\/20{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-success-700\\/25{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-success-700\\/30{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-success-700\\/35{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-success-700\\/40{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-success-700\\/45{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-success-700\\/5{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-success-700\\/50{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-success-700\\/55{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-success-700\\/60{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-success-700\\/65{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-success-700\\/70{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-success-700\\/75{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-success-700\\/80{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-success-700\\/85{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-success-700\\/90{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-success-700\\/95{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-success-800{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / var(--tw-text-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-success-800\\/0{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-success-800\\/10{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-success-800\\/100{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-success-800\\/15{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-success-800\\/20{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-success-800\\/25{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-success-800\\/30{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-success-800\\/35{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-success-800\\/40{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-success-800\\/45{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-success-800\\/5{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-success-800\\/50{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-success-800\\/55{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-success-800\\/60{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-success-800\\/65{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-success-800\\/70{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-success-800\\/75{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-success-800\\/80{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-success-800\\/85{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-success-800\\/90{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-success-800\\/95{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-success-900{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / var(--tw-text-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-success-900\\/0{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-success-900\\/10{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-success-900\\/100{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-success-900\\/15{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-success-900\\/20{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-success-900\\/25{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-success-900\\/30{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-success-900\\/35{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-success-900\\/40{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-success-900\\/45{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-success-900\\/5{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-success-900\\/50{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-success-900\\/55{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-success-900\\/60{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-success-900\\/65{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-success-900\\/70{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-success-900\\/75{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-success-900\\/80{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-success-900\\/85{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-success-900\\/90{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-success-900\\/95{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-success-950{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / var(--tw-text-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-success-950\\/0{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-success-950\\/10{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-success-950\\/100{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-success-950\\/15{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-success-950\\/20{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-success-950\\/25{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-success-950\\/30{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-success-950\\/35{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-success-950\\/40{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-success-950\\/45{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-success-950\\/5{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-success-950\\/50{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-success-950\\/55{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-success-950\\/60{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-success-950\\/65{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-success-950\\/70{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-success-950\\/75{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-success-950\\/80{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-success-950\\/85{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-success-950\\/90{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-success-950\\/95{\ncolor: color-mix(in lab, color(from #44bc69 srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-success\\/0{\ncolor: rgb(68 188 105 / 0);\n}\n.text-success\\/10{\ncolor: rgb(68 188 105 / 0.1);\n}\n.text-success\\/100{\ncolor: rgb(68 188 105 / 1);\n}\n.text-success\\/15{\ncolor: rgb(68 188 105 / 0.15);\n}\n.text-success\\/20{\ncolor: rgb(68 188 105 / 0.2);\n}\n.text-success\\/25{\ncolor: rgb(68 188 105 / 0.25);\n}\n.text-success\\/30{\ncolor: rgb(68 188 105 / 0.3);\n}\n.text-success\\/35{\ncolor: rgb(68 188 105 / 0.35);\n}\n.text-success\\/40{\ncolor: rgb(68 188 105 / 0.4);\n}\n.text-success\\/45{\ncolor: rgb(68 188 105 / 0.45);\n}\n.text-success\\/5{\ncolor: rgb(68 188 105 / 0.05);\n}\n.text-success\\/50{\ncolor: rgb(68 188 105 / 0.5);\n}\n.text-success\\/55{\ncolor: rgb(68 188 105 / 0.55);\n}\n.text-success\\/60{\ncolor: rgb(68 188 105 / 0.6);\n}\n.text-success\\/65{\ncolor: rgb(68 188 105 / 0.65);\n}\n.text-success\\/70{\ncolor: rgb(68 188 105 / 0.7);\n}\n.text-success\\/75{\ncolor: rgb(68 188 105 / 0.75);\n}\n.text-success\\/80{\ncolor: rgb(68 188 105 / 0.8);\n}\n.text-success\\/85{\ncolor: rgb(68 188 105 / 0.85);\n}\n.text-success\\/90{\ncolor: rgb(68 188 105 / 0.9);\n}\n.text-success\\/95{\ncolor: rgb(68 188 105 / 0.95);\n}\n.text-tint{\ncolor: var(--tint);\n}\n.text-tint-100{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-text-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-tint-100\\/0{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-tint-100\\/10{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-tint-100\\/100{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-tint-100\\/15{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-tint-100\\/20{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-tint-100\\/25{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-tint-100\\/30{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-tint-100\\/35{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-tint-100\\/40{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-tint-100\\/45{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-tint-100\\/5{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-tint-100\\/50{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-tint-100\\/55{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-tint-100\\/60{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-tint-100\\/65{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-tint-100\\/70{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-tint-100\\/75{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-tint-100\\/80{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-tint-100\\/85{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-tint-100\\/90{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-tint-100\\/95{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-tint-200{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-text-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-tint-200\\/0{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-tint-200\\/10{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-tint-200\\/100{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-tint-200\\/15{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-tint-200\\/20{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-tint-200\\/25{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-tint-200\\/30{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-tint-200\\/35{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-tint-200\\/40{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-tint-200\\/45{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-tint-200\\/5{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-tint-200\\/50{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-tint-200\\/55{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-tint-200\\/60{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-tint-200\\/65{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-tint-200\\/70{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-tint-200\\/75{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-tint-200\\/80{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-tint-200\\/85{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-tint-200\\/90{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-tint-200\\/95{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-tint-300{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-text-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-tint-300\\/0{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-tint-300\\/10{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-tint-300\\/100{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-tint-300\\/15{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-tint-300\\/20{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-tint-300\\/25{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-tint-300\\/30{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-tint-300\\/35{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-tint-300\\/40{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-tint-300\\/45{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-tint-300\\/5{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-tint-300\\/50{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-tint-300\\/55{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-tint-300\\/60{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-tint-300\\/65{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-tint-300\\/70{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-tint-300\\/75{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-tint-300\\/80{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-tint-300\\/85{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-tint-300\\/90{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-tint-300\\/95{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-tint-400{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-text-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-tint-400\\/0{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-tint-400\\/10{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-tint-400\\/100{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-tint-400\\/15{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-tint-400\\/20{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-tint-400\\/25{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-tint-400\\/30{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-tint-400\\/35{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-tint-400\\/40{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-tint-400\\/45{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-tint-400\\/5{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-tint-400\\/50{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-tint-400\\/55{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-tint-400\\/60{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-tint-400\\/65{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-tint-400\\/70{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-tint-400\\/75{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-tint-400\\/80{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-tint-400\\/85{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-tint-400\\/90{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-tint-400\\/95{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-tint-50{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-text-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-tint-50\\/0{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-tint-50\\/10{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-tint-50\\/100{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-tint-50\\/15{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-tint-50\\/20{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-tint-50\\/25{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-tint-50\\/30{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-tint-50\\/35{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-tint-50\\/40{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-tint-50\\/45{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-tint-50\\/5{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-tint-50\\/50{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-tint-50\\/55{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-tint-50\\/60{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-tint-50\\/65{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-tint-50\\/70{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-tint-50\\/75{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-tint-50\\/80{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-tint-50\\/85{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-tint-50\\/90{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-tint-50\\/95{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-tint-500{\n--tw-text-opacity: 1;\ncolor: color(from var(--tint) srgb r g b / var(--tw-text-opacity));\n}\n.text-tint-500\\/0{\ncolor: color(from var(--tint) srgb r g b / 0);\n}\n.text-tint-500\\/10{\ncolor: color(from var(--tint) srgb r g b / 0.1);\n}\n.text-tint-500\\/100{\ncolor: color(from var(--tint) srgb r g b / 1);\n}\n.text-tint-500\\/15{\ncolor: color(from var(--tint) srgb r g b / 0.15);\n}\n.text-tint-500\\/20{\ncolor: color(from var(--tint) srgb r g b / 0.2);\n}\n.text-tint-500\\/25{\ncolor: color(from var(--tint) srgb r g b / 0.25);\n}\n.text-tint-500\\/30{\ncolor: color(from var(--tint) srgb r g b / 0.3);\n}\n.text-tint-500\\/35{\ncolor: color(from var(--tint) srgb r g b / 0.35);\n}\n.text-tint-500\\/40{\ncolor: color(from var(--tint) srgb r g b / 0.4);\n}\n.text-tint-500\\/45{\ncolor: color(from var(--tint) srgb r g b / 0.45);\n}\n.text-tint-500\\/5{\ncolor: color(from var(--tint) srgb r g b / 0.05);\n}\n.text-tint-500\\/50{\ncolor: color(from var(--tint) srgb r g b / 0.5);\n}\n.text-tint-500\\/55{\ncolor: color(from var(--tint) srgb r g b / 0.55);\n}\n.text-tint-500\\/60{\ncolor: color(from var(--tint) srgb r g b / 0.6);\n}\n.text-tint-500\\/65{\ncolor: color(from var(--tint) srgb r g b / 0.65);\n}\n.text-tint-500\\/70{\ncolor: color(from var(--tint) srgb r g b / 0.7);\n}\n.text-tint-500\\/75{\ncolor: color(from var(--tint) srgb r g b / 0.75);\n}\n.text-tint-500\\/80{\ncolor: color(from var(--tint) srgb r g b / 0.8);\n}\n.text-tint-500\\/85{\ncolor: color(from var(--tint) srgb r g b / 0.85);\n}\n.text-tint-500\\/90{\ncolor: color(from var(--tint) srgb r g b / 0.9);\n}\n.text-tint-500\\/95{\ncolor: color(from var(--tint) srgb r g b / 0.95);\n}\n.text-tint-600{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-text-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-tint-600\\/0{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-tint-600\\/10{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-tint-600\\/100{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-tint-600\\/15{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-tint-600\\/20{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-tint-600\\/25{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-tint-600\\/30{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-tint-600\\/35{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-tint-600\\/40{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-tint-600\\/45{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-tint-600\\/5{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-tint-600\\/50{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-tint-600\\/55{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-tint-600\\/60{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-tint-600\\/65{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-tint-600\\/70{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-tint-600\\/75{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-tint-600\\/80{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-tint-600\\/85{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-tint-600\\/90{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-tint-600\\/95{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-tint-700{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-text-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-tint-700\\/0{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-tint-700\\/10{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-tint-700\\/100{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-tint-700\\/15{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-tint-700\\/20{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-tint-700\\/25{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-tint-700\\/30{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-tint-700\\/35{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-tint-700\\/40{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-tint-700\\/45{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-tint-700\\/5{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-tint-700\\/50{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-tint-700\\/55{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-tint-700\\/60{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-tint-700\\/65{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-tint-700\\/70{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-tint-700\\/75{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-tint-700\\/80{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-tint-700\\/85{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-tint-700\\/90{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-tint-700\\/95{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-tint-800{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-text-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-tint-800\\/0{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-tint-800\\/10{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-tint-800\\/100{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-tint-800\\/15{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-tint-800\\/20{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-tint-800\\/25{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-tint-800\\/30{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-tint-800\\/35{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-tint-800\\/40{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-tint-800\\/45{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-tint-800\\/5{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-tint-800\\/50{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-tint-800\\/55{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-tint-800\\/60{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-tint-800\\/65{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-tint-800\\/70{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-tint-800\\/75{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-tint-800\\/80{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-tint-800\\/85{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-tint-800\\/90{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-tint-800\\/95{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-tint-900{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-text-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-tint-900\\/0{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-tint-900\\/10{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-tint-900\\/100{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-tint-900\\/15{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-tint-900\\/20{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-tint-900\\/25{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-tint-900\\/30{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-tint-900\\/35{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-tint-900\\/40{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-tint-900\\/45{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-tint-900\\/5{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-tint-900\\/50{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-tint-900\\/55{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-tint-900\\/60{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-tint-900\\/65{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-tint-900\\/70{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-tint-900\\/75{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-tint-900\\/80{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-tint-900\\/85{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-tint-900\\/90{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-tint-900\\/95{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-tint-950{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-text-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-tint-950\\/0{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-tint-950\\/10{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-tint-950\\/100{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-tint-950\\/15{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-tint-950\\/20{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-tint-950\\/25{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-tint-950\\/30{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-tint-950\\/35{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-tint-950\\/40{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-tint-950\\/45{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-tint-950\\/5{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-tint-950\\/50{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-tint-950\\/55{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-tint-950\\/60{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-tint-950\\/65{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-tint-950\\/70{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-tint-950\\/75{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-tint-950\\/80{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-tint-950\\/85{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-tint-950\\/90{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-tint-950\\/95{\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-transparent{\ncolor: transparent;\n}\n.text-warning{\n--tw-text-opacity: 1;\ncolor: rgb(237 170 0 / var(--tw-text-opacity));\n}\n.text-warning-100{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / var(--tw-text-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-warning-100\\/0{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-warning-100\\/10{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-warning-100\\/100{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-warning-100\\/15{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-warning-100\\/20{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-warning-100\\/25{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-warning-100\\/30{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-warning-100\\/35{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-warning-100\\/40{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-warning-100\\/45{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-warning-100\\/5{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-warning-100\\/50{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-warning-100\\/55{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-warning-100\\/60{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-warning-100\\/65{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-warning-100\\/70{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-warning-100\\/75{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-warning-100\\/80{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-warning-100\\/85{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-warning-100\\/90{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-warning-100\\/95{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-warning-200{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / var(--tw-text-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-warning-200\\/0{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-warning-200\\/10{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-warning-200\\/100{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-warning-200\\/15{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-warning-200\\/20{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-warning-200\\/25{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-warning-200\\/30{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-warning-200\\/35{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-warning-200\\/40{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-warning-200\\/45{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-warning-200\\/5{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-warning-200\\/50{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-warning-200\\/55{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-warning-200\\/60{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-warning-200\\/65{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-warning-200\\/70{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-warning-200\\/75{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-warning-200\\/80{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-warning-200\\/85{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-warning-200\\/90{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-warning-200\\/95{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-warning-300{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / var(--tw-text-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-warning-300\\/0{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-warning-300\\/10{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-warning-300\\/100{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-warning-300\\/15{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-warning-300\\/20{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-warning-300\\/25{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-warning-300\\/30{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-warning-300\\/35{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-warning-300\\/40{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-warning-300\\/45{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-warning-300\\/5{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-warning-300\\/50{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-warning-300\\/55{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-warning-300\\/60{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-warning-300\\/65{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-warning-300\\/70{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-warning-300\\/75{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-warning-300\\/80{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-warning-300\\/85{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-warning-300\\/90{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-warning-300\\/95{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-warning-400{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / var(--tw-text-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-warning-400\\/0{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-warning-400\\/10{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-warning-400\\/100{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-warning-400\\/15{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-warning-400\\/20{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-warning-400\\/25{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-warning-400\\/30{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-warning-400\\/35{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-warning-400\\/40{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-warning-400\\/45{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-warning-400\\/5{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-warning-400\\/50{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-warning-400\\/55{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-warning-400\\/60{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-warning-400\\/65{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-warning-400\\/70{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-warning-400\\/75{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-warning-400\\/80{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-warning-400\\/85{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-warning-400\\/90{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-warning-400\\/95{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-warning-50{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / var(--tw-text-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-warning-50\\/0{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-warning-50\\/10{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-warning-50\\/100{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-warning-50\\/15{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-warning-50\\/20{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-warning-50\\/25{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-warning-50\\/30{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-warning-50\\/35{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-warning-50\\/40{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-warning-50\\/45{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-warning-50\\/5{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-warning-50\\/50{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-warning-50\\/55{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-warning-50\\/60{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-warning-50\\/65{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-warning-50\\/70{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-warning-50\\/75{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-warning-50\\/80{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-warning-50\\/85{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-warning-50\\/90{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-warning-50\\/95{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-warning-500{\n--tw-text-opacity: 1;\ncolor: color(from #edaa00 srgb r g b / var(--tw-text-opacity));\n}\n.text-warning-500\\/0{\ncolor: color(from #edaa00 srgb r g b / 0);\n}\n.text-warning-500\\/10{\ncolor: color(from #edaa00 srgb r g b / 0.1);\n}\n.text-warning-500\\/100{\ncolor: color(from #edaa00 srgb r g b / 1);\n}\n.text-warning-500\\/15{\ncolor: color(from #edaa00 srgb r g b / 0.15);\n}\n.text-warning-500\\/20{\ncolor: color(from #edaa00 srgb r g b / 0.2);\n}\n.text-warning-500\\/25{\ncolor: color(from #edaa00 srgb r g b / 0.25);\n}\n.text-warning-500\\/30{\ncolor: color(from #edaa00 srgb r g b / 0.3);\n}\n.text-warning-500\\/35{\ncolor: color(from #edaa00 srgb r g b / 0.35);\n}\n.text-warning-500\\/40{\ncolor: color(from #edaa00 srgb r g b / 0.4);\n}\n.text-warning-500\\/45{\ncolor: color(from #edaa00 srgb r g b / 0.45);\n}\n.text-warning-500\\/5{\ncolor: color(from #edaa00 srgb r g b / 0.05);\n}\n.text-warning-500\\/50{\ncolor: color(from #edaa00 srgb r g b / 0.5);\n}\n.text-warning-500\\/55{\ncolor: color(from #edaa00 srgb r g b / 0.55);\n}\n.text-warning-500\\/60{\ncolor: color(from #edaa00 srgb r g b / 0.6);\n}\n.text-warning-500\\/65{\ncolor: color(from #edaa00 srgb r g b / 0.65);\n}\n.text-warning-500\\/70{\ncolor: color(from #edaa00 srgb r g b / 0.7);\n}\n.text-warning-500\\/75{\ncolor: color(from #edaa00 srgb r g b / 0.75);\n}\n.text-warning-500\\/80{\ncolor: color(from #edaa00 srgb r g b / 0.8);\n}\n.text-warning-500\\/85{\ncolor: color(from #edaa00 srgb r g b / 0.85);\n}\n.text-warning-500\\/90{\ncolor: color(from #edaa00 srgb r g b / 0.9);\n}\n.text-warning-500\\/95{\ncolor: color(from #edaa00 srgb r g b / 0.95);\n}\n.text-warning-600{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / var(--tw-text-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-warning-600\\/0{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-warning-600\\/10{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-warning-600\\/100{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-warning-600\\/15{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-warning-600\\/20{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-warning-600\\/25{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-warning-600\\/30{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-warning-600\\/35{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-warning-600\\/40{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-warning-600\\/45{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-warning-600\\/5{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-warning-600\\/50{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-warning-600\\/55{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-warning-600\\/60{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-warning-600\\/65{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-warning-600\\/70{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-warning-600\\/75{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-warning-600\\/80{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-warning-600\\/85{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-warning-600\\/90{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-warning-600\\/95{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-warning-700{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / var(--tw-text-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-warning-700\\/0{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-warning-700\\/10{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-warning-700\\/100{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-warning-700\\/15{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-warning-700\\/20{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-warning-700\\/25{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-warning-700\\/30{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-warning-700\\/35{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-warning-700\\/40{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-warning-700\\/45{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-warning-700\\/5{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-warning-700\\/50{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-warning-700\\/55{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-warning-700\\/60{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-warning-700\\/65{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-warning-700\\/70{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-warning-700\\/75{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-warning-700\\/80{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-warning-700\\/85{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-warning-700\\/90{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-warning-700\\/95{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-warning-800{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / var(--tw-text-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-warning-800\\/0{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-warning-800\\/10{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-warning-800\\/100{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-warning-800\\/15{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-warning-800\\/20{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-warning-800\\/25{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-warning-800\\/30{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-warning-800\\/35{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-warning-800\\/40{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-warning-800\\/45{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-warning-800\\/5{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-warning-800\\/50{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-warning-800\\/55{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-warning-800\\/60{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-warning-800\\/65{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-warning-800\\/70{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-warning-800\\/75{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-warning-800\\/80{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-warning-800\\/85{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-warning-800\\/90{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-warning-800\\/95{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-warning-900{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / var(--tw-text-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-warning-900\\/0{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-warning-900\\/10{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-warning-900\\/100{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-warning-900\\/15{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-warning-900\\/20{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-warning-900\\/25{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-warning-900\\/30{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-warning-900\\/35{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-warning-900\\/40{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-warning-900\\/45{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-warning-900\\/5{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-warning-900\\/50{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-warning-900\\/55{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-warning-900\\/60{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-warning-900\\/65{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-warning-900\\/70{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-warning-900\\/75{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-warning-900\\/80{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-warning-900\\/85{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-warning-900\\/90{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-warning-900\\/95{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-warning-950{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / var(--tw-text-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-warning-950\\/0{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-warning-950\\/10{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-warning-950\\/100{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-warning-950\\/15{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-warning-950\\/20{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-warning-950\\/25{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-warning-950\\/30{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-warning-950\\/35{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-warning-950\\/40{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-warning-950\\/45{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-warning-950\\/5{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-warning-950\\/50{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-warning-950\\/55{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-warning-950\\/60{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-warning-950\\/65{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-warning-950\\/70{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-warning-950\\/75{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-warning-950\\/80{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-warning-950\\/85{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-warning-950\\/90{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-warning-950\\/95{\ncolor: color-mix(in lab, color(from #edaa00 srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-warning\\/0{\ncolor: rgb(237 170 0 / 0);\n}\n.text-warning\\/10{\ncolor: rgb(237 170 0 / 0.1);\n}\n.text-warning\\/100{\ncolor: rgb(237 170 0 / 1);\n}\n.text-warning\\/15{\ncolor: rgb(237 170 0 / 0.15);\n}\n.text-warning\\/20{\ncolor: rgb(237 170 0 / 0.2);\n}\n.text-warning\\/25{\ncolor: rgb(237 170 0 / 0.25);\n}\n.text-warning\\/30{\ncolor: rgb(237 170 0 / 0.3);\n}\n.text-warning\\/35{\ncolor: rgb(237 170 0 / 0.35);\n}\n.text-warning\\/40{\ncolor: rgb(237 170 0 / 0.4);\n}\n.text-warning\\/45{\ncolor: rgb(237 170 0 / 0.45);\n}\n.text-warning\\/5{\ncolor: rgb(237 170 0 / 0.05);\n}\n.text-warning\\/50{\ncolor: rgb(237 170 0 / 0.5);\n}\n.text-warning\\/55{\ncolor: rgb(237 170 0 / 0.55);\n}\n.text-warning\\/60{\ncolor: rgb(237 170 0 / 0.6);\n}\n.text-warning\\/65{\ncolor: rgb(237 170 0 / 0.65);\n}\n.text-warning\\/70{\ncolor: rgb(237 170 0 / 0.7);\n}\n.text-warning\\/75{\ncolor: rgb(237 170 0 / 0.75);\n}\n.text-warning\\/80{\ncolor: rgb(237 170 0 / 0.8);\n}\n.text-warning\\/85{\ncolor: rgb(237 170 0 / 0.85);\n}\n.text-warning\\/90{\ncolor: rgb(237 170 0 / 0.9);\n}\n.text-warning\\/95{\ncolor: rgb(237 170 0 / 0.95);\n}\n.text-white{\n--tw-text-opacity: 1;\ncolor: rgb(254 253 252 / var(--tw-text-opacity));\n}\n.text-white\\/0{\ncolor: rgb(254 253 252 / 0);\n}\n.text-white\\/10{\ncolor: rgb(254 253 252 / 0.1);\n}\n.text-white\\/100{\ncolor: rgb(254 253 252 / 1);\n}\n.text-white\\/15{\ncolor: rgb(254 253 252 / 0.15);\n}\n.text-white\\/20{\ncolor: rgb(254 253 252 / 0.2);\n}\n.text-white\\/25{\ncolor: rgb(254 253 252 / 0.25);\n}\n.text-white\\/30{\ncolor: rgb(254 253 252 / 0.3);\n}\n.text-white\\/35{\ncolor: rgb(254 253 252 / 0.35);\n}\n.text-white\\/40{\ncolor: rgb(254 253 252 / 0.4);\n}\n.text-white\\/45{\ncolor: rgb(254 253 252 / 0.45);\n}\n.text-white\\/5{\ncolor: rgb(254 253 252 / 0.05);\n}\n.text-white\\/50{\ncolor: rgb(254 253 252 / 0.5);\n}\n.text-white\\/55{\ncolor: rgb(254 253 252 / 0.55);\n}\n.text-white\\/60{\ncolor: rgb(254 253 252 / 0.6);\n}\n.text-white\\/65{\ncolor: rgb(254 253 252 / 0.65);\n}\n.text-white\\/70{\ncolor: rgb(254 253 252 / 0.7);\n}\n.text-white\\/75{\ncolor: rgb(254 253 252 / 0.75);\n}\n.text-white\\/80{\ncolor: rgb(254 253 252 / 0.8);\n}\n.text-white\\/85{\ncolor: rgb(254 253 252 / 0.85);\n}\n.text-white\\/90{\ncolor: rgb(254 253 252 / 0.9);\n}\n.text-white\\/95{\ncolor: rgb(254 253 252 / 0.95);\n}\n.text-wood{\n--tw-text-opacity: 1;\ncolor: rgb(173 127 88 / var(--tw-text-opacity));\n}\n.text-wood-100{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / var(--tw-text-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-wood-100\\/0{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-wood-100\\/10{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-wood-100\\/100{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-wood-100\\/15{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-wood-100\\/20{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-wood-100\\/25{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-wood-100\\/30{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-wood-100\\/35{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-wood-100\\/40{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-wood-100\\/45{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-wood-100\\/5{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-wood-100\\/50{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-wood-100\\/55{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-wood-100\\/60{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-wood-100\\/65{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-wood-100\\/70{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-wood-100\\/75{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-wood-100\\/80{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-wood-100\\/85{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-wood-100\\/90{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-wood-100\\/95{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-wood-200{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / var(--tw-text-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-wood-200\\/0{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-wood-200\\/10{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-wood-200\\/100{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-wood-200\\/15{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-wood-200\\/20{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-wood-200\\/25{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-wood-200\\/30{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-wood-200\\/35{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-wood-200\\/40{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-wood-200\\/45{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-wood-200\\/5{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-wood-200\\/50{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-wood-200\\/55{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-wood-200\\/60{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-wood-200\\/65{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-wood-200\\/70{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-wood-200\\/75{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-wood-200\\/80{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-wood-200\\/85{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-wood-200\\/90{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-wood-200\\/95{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-wood-300{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / var(--tw-text-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-wood-300\\/0{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-wood-300\\/10{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-wood-300\\/100{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-wood-300\\/15{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-wood-300\\/20{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-wood-300\\/25{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-wood-300\\/30{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-wood-300\\/35{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-wood-300\\/40{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-wood-300\\/45{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-wood-300\\/5{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-wood-300\\/50{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-wood-300\\/55{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-wood-300\\/60{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-wood-300\\/65{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-wood-300\\/70{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-wood-300\\/75{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-wood-300\\/80{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-wood-300\\/85{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-wood-300\\/90{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-wood-300\\/95{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-wood-400{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / var(--tw-text-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-wood-400\\/0{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-wood-400\\/10{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-wood-400\\/100{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-wood-400\\/15{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-wood-400\\/20{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-wood-400\\/25{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-wood-400\\/30{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-wood-400\\/35{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-wood-400\\/40{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-wood-400\\/45{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-wood-400\\/5{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-wood-400\\/50{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-wood-400\\/55{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-wood-400\\/60{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-wood-400\\/65{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-wood-400\\/70{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-wood-400\\/75{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-wood-400\\/80{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-wood-400\\/85{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-wood-400\\/90{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-wood-400\\/95{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-wood-50{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / var(--tw-text-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n.text-wood-50\\/0{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.text-wood-50\\/10{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.text-wood-50\\/100{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.text-wood-50\\/15{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.text-wood-50\\/20{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.text-wood-50\\/25{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.text-wood-50\\/30{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.text-wood-50\\/35{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.text-wood-50\\/40{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.text-wood-50\\/45{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.text-wood-50\\/5{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.text-wood-50\\/50{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.text-wood-50\\/55{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.text-wood-50\\/60{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.text-wood-50\\/65{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.text-wood-50\\/70{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.text-wood-50\\/75{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.text-wood-50\\/80{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.text-wood-50\\/85{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.text-wood-50\\/90{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.text-wood-50\\/95{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.text-wood-500{\n--tw-text-opacity: 1;\ncolor: color(from #ad7f58 srgb r g b / var(--tw-text-opacity));\n}\n.text-wood-500\\/0{\ncolor: color(from #ad7f58 srgb r g b / 0);\n}\n.text-wood-500\\/10{\ncolor: color(from #ad7f58 srgb r g b / 0.1);\n}\n.text-wood-500\\/100{\ncolor: color(from #ad7f58 srgb r g b / 1);\n}\n.text-wood-500\\/15{\ncolor: color(from #ad7f58 srgb r g b / 0.15);\n}\n.text-wood-500\\/20{\ncolor: color(from #ad7f58 srgb r g b / 0.2);\n}\n.text-wood-500\\/25{\ncolor: color(from #ad7f58 srgb r g b / 0.25);\n}\n.text-wood-500\\/30{\ncolor: color(from #ad7f58 srgb r g b / 0.3);\n}\n.text-wood-500\\/35{\ncolor: color(from #ad7f58 srgb r g b / 0.35);\n}\n.text-wood-500\\/40{\ncolor: color(from #ad7f58 srgb r g b / 0.4);\n}\n.text-wood-500\\/45{\ncolor: color(from #ad7f58 srgb r g b / 0.45);\n}\n.text-wood-500\\/5{\ncolor: color(from #ad7f58 srgb r g b / 0.05);\n}\n.text-wood-500\\/50{\ncolor: color(from #ad7f58 srgb r g b / 0.5);\n}\n.text-wood-500\\/55{\ncolor: color(from #ad7f58 srgb r g b / 0.55);\n}\n.text-wood-500\\/60{\ncolor: color(from #ad7f58 srgb r g b / 0.6);\n}\n.text-wood-500\\/65{\ncolor: color(from #ad7f58 srgb r g b / 0.65);\n}\n.text-wood-500\\/70{\ncolor: color(from #ad7f58 srgb r g b / 0.7);\n}\n.text-wood-500\\/75{\ncolor: color(from #ad7f58 srgb r g b / 0.75);\n}\n.text-wood-500\\/80{\ncolor: color(from #ad7f58 srgb r g b / 0.8);\n}\n.text-wood-500\\/85{\ncolor: color(from #ad7f58 srgb r g b / 0.85);\n}\n.text-wood-500\\/90{\ncolor: color(from #ad7f58 srgb r g b / 0.9);\n}\n.text-wood-500\\/95{\ncolor: color(from #ad7f58 srgb r g b / 0.95);\n}\n.text-wood-600{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / var(--tw-text-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-wood-600\\/0{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-wood-600\\/10{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-wood-600\\/100{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-wood-600\\/15{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-wood-600\\/20{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-wood-600\\/25{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-wood-600\\/30{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-wood-600\\/35{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-wood-600\\/40{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-wood-600\\/45{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-wood-600\\/5{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-wood-600\\/50{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-wood-600\\/55{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-wood-600\\/60{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-wood-600\\/65{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-wood-600\\/70{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-wood-600\\/75{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-wood-600\\/80{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-wood-600\\/85{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-wood-600\\/90{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-wood-600\\/95{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-wood-700{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / var(--tw-text-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-wood-700\\/0{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-wood-700\\/10{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-wood-700\\/100{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-wood-700\\/15{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-wood-700\\/20{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-wood-700\\/25{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-wood-700\\/30{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-wood-700\\/35{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-wood-700\\/40{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-wood-700\\/45{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-wood-700\\/5{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-wood-700\\/50{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-wood-700\\/55{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-wood-700\\/60{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-wood-700\\/65{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-wood-700\\/70{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-wood-700\\/75{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-wood-700\\/80{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-wood-700\\/85{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-wood-700\\/90{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-wood-700\\/95{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-wood-800{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / var(--tw-text-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-wood-800\\/0{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-wood-800\\/10{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-wood-800\\/100{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-wood-800\\/15{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-wood-800\\/20{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-wood-800\\/25{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-wood-800\\/30{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-wood-800\\/35{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-wood-800\\/40{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-wood-800\\/45{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-wood-800\\/5{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-wood-800\\/50{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-wood-800\\/55{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-wood-800\\/60{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-wood-800\\/65{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-wood-800\\/70{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-wood-800\\/75{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-wood-800\\/80{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-wood-800\\/85{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-wood-800\\/90{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-wood-800\\/95{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-wood-900{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / var(--tw-text-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-wood-900\\/0{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-wood-900\\/10{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-wood-900\\/100{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-wood-900\\/15{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-wood-900\\/20{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-wood-900\\/25{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-wood-900\\/30{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-wood-900\\/35{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-wood-900\\/40{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-wood-900\\/45{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-wood-900\\/5{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-wood-900\\/50{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-wood-900\\/55{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-wood-900\\/60{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-wood-900\\/65{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-wood-900\\/70{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-wood-900\\/75{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-wood-900\\/80{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-wood-900\\/85{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-wood-900\\/90{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-wood-900\\/95{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-wood-950{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / var(--tw-text-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.text-wood-950\\/0{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.text-wood-950\\/10{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.text-wood-950\\/100{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.text-wood-950\\/15{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.text-wood-950\\/20{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.text-wood-950\\/25{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.text-wood-950\\/30{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.text-wood-950\\/35{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.text-wood-950\\/40{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.text-wood-950\\/45{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.text-wood-950\\/5{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.text-wood-950\\/50{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.text-wood-950\\/55{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.text-wood-950\\/60{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.text-wood-950\\/65{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.text-wood-950\\/70{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.text-wood-950\\/75{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.text-wood-950\\/80{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.text-wood-950\\/85{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.text-wood-950\\/90{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.text-wood-950\\/95{\ncolor: color-mix(in lab, color(from #ad7f58 srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.text-wood\\/0{\ncolor: rgb(173 127 88 / 0);\n}\n.text-wood\\/10{\ncolor: rgb(173 127 88 / 0.1);\n}\n.text-wood\\/100{\ncolor: rgb(173 127 88 / 1);\n}\n.text-wood\\/15{\ncolor: rgb(173 127 88 / 0.15);\n}\n.text-wood\\/20{\ncolor: rgb(173 127 88 / 0.2);\n}\n.text-wood\\/25{\ncolor: rgb(173 127 88 / 0.25);\n}\n.text-wood\\/30{\ncolor: rgb(173 127 88 / 0.3);\n}\n.text-wood\\/35{\ncolor: rgb(173 127 88 / 0.35);\n}\n.text-wood\\/40{\ncolor: rgb(173 127 88 / 0.4);\n}\n.text-wood\\/45{\ncolor: rgb(173 127 88 / 0.45);\n}\n.text-wood\\/5{\ncolor: rgb(173 127 88 / 0.05);\n}\n.text-wood\\/50{\ncolor: rgb(173 127 88 / 0.5);\n}\n.text-wood\\/55{\ncolor: rgb(173 127 88 / 0.55);\n}\n.text-wood\\/60{\ncolor: rgb(173 127 88 / 0.6);\n}\n.text-wood\\/65{\ncolor: rgb(173 127 88 / 0.65);\n}\n.text-wood\\/70{\ncolor: rgb(173 127 88 / 0.7);\n}\n.text-wood\\/75{\ncolor: rgb(173 127 88 / 0.75);\n}\n.text-wood\\/80{\ncolor: rgb(173 127 88 / 0.8);\n}\n.text-wood\\/85{\ncolor: rgb(173 127 88 / 0.85);\n}\n.text-wood\\/90{\ncolor: rgb(173 127 88 / 0.9);\n}\n.text-wood\\/95{\ncolor: rgb(173 127 88 / 0.95);\n}\n.underline{\ntext-decoration-line: underline;\n}\n.line-through{\ntext-decoration-line: line-through;\n}\n.underline-offset-4{\ntext-underline-offset: 4px;\n}\n.opacity-0{\nopacity: 0;\n}\n.opacity-30{\nopacity: 0.3;\n}\n.opacity-35{\nopacity: 0.35;\n}\n.opacity-5{\nopacity: 0.05;\n}\n.opacity-50{\nopacity: 0.5;\n}\n.opacity-65{\nopacity: 0.65;\n}\n.opacity-75{\nopacity: 0.75;\n}\n.opacity-85{\nopacity: 0.85;\n}\n.opacity-90{\nopacity: 0.9;\n}\n.mix-blend-color-dodge{\nmix-blend-mode: color-dodge;\n}\n.shadow{\n--tw-shadow: 0 1px 3px 0 var(--fabric-shadow), 0 1px 2px -1px var(--fabric-shadow);\n--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);\nbox-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);\n}\n.shadow-inner{\n--tw-shadow: inset 0 2px 4px 0 var(--fabric-shadow);\n--tw-shadow-colored: inset 0 2px 4px 0 var(--tw-shadow-color);\nbox-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);\n}\n.shadow-inset{\n--tw-shadow: inset 0 0 2px var(--fabric-shadow);\n--tw-shadow-colored: inset 0 0 2px var(--tw-shadow-color);\nbox-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);\n}\n.shadow-lg{\n--tw-shadow: 0 10px 15px -3px var(--fabric-shadow), 0 4px 6px -4px var(--fabric-shadow);\n--tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);\nbox-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);\n}\n.shadow-md{\n--tw-shadow: 0 4px 6px -1px var(--fabric-shadow), 0 2px 4px -2px var(--fabric-shadow);\n--tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);\nbox-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);\n}\n.shadow-paper{\n--tw-shadow: 0 1px 3px 0 var(--fabric-shadow);\n--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color);\nbox-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);\n}\n.shadow-sm{\n--tw-shadow: 0 1px 2px 0 var(--fabric-shadow);\n--tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);\nbox-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);\n}\n.shadow-xl{\n--tw-shadow: 0 20px 25px -5px var(--fabric-shadow), 0 8px 10px -6px var(--fabric-shadow);\n--tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);\nbox-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);\n}\n.shadow{\n--tw-shadow-color: var(--fabric-shadow);\n--tw-shadow: var(--tw-shadow-colored);\n}\n.outline-none{\noutline: 2px solid transparent;\noutline-offset: 2px;\n}\n.outline{\noutline-style: solid;\n}\n.\\!outline-dashed{\noutline-style: dashed !important;\n}\n.outline-0{\noutline-width: 0px;\n}\n.outline-1{\noutline-width: 1px;\n}\n.outline-2{\noutline-width: 2px;\n}\n.-outline-offset-1{\noutline-offset: -1px;\n}\n.-outline-offset-2{\noutline-offset: -2px;\n}\n.outline-offset-2{\noutline-offset: 2px;\n}\n.\\!outline-tint-400{\noutline-color: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1)) !important;\n}\n.outline{\noutline-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 65%, color(from var(--tint) srgb r g b / 1));\n}\n.outline-accent-500{\noutline-color: color(from var(--accent) srgb r g b / 1);\n}\n.outline-accent-700{\noutline-color: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.outline-black{\noutline-color: #191a1b;\n}\n.outline-muted{\noutline-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 80%, color(from var(--tint) srgb r g b / 1));\n}\n.outline-primary-500{\noutline-color: color(from var(--primary) srgb r g b / 1);\n}\n.outline-tint-100{\noutline-color: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.outline-tint-200{\noutline-color: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.outline-tint-500\\/20{\noutline-color: color(from var(--tint) srgb r g b / 0.2);\n}\n.ring{\n--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);\n--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);\nbox-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);\n}\n.ring-0{\n--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);\n--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);\nbox-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);\n}\n.ring-1{\n--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);\n--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);\nbox-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);\n}\n.ring-accent{\n--tw-ring-color: var(--accent);\n}\n.ring-accent-100{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / var(--tw-ring-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-accent-100\\/0{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.ring-accent-100\\/10{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.ring-accent-100\\/100{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.ring-accent-100\\/15{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.ring-accent-100\\/20{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.ring-accent-100\\/25{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.ring-accent-100\\/30{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.ring-accent-100\\/35{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.ring-accent-100\\/40{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.ring-accent-100\\/45{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.ring-accent-100\\/5{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.ring-accent-100\\/50{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.ring-accent-100\\/55{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.ring-accent-100\\/60{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.ring-accent-100\\/65{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.ring-accent-100\\/70{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.ring-accent-100\\/75{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.ring-accent-100\\/80{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.ring-accent-100\\/85{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.ring-accent-100\\/90{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.ring-accent-100\\/95{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.ring-accent-200{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / var(--tw-ring-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-accent-200\\/0{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.ring-accent-200\\/10{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.ring-accent-200\\/100{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.ring-accent-200\\/15{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.ring-accent-200\\/20{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.ring-accent-200\\/25{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.ring-accent-200\\/30{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.ring-accent-200\\/35{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.ring-accent-200\\/40{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.ring-accent-200\\/45{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.ring-accent-200\\/5{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.ring-accent-200\\/50{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.ring-accent-200\\/55{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.ring-accent-200\\/60{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.ring-accent-200\\/65{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.ring-accent-200\\/70{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.ring-accent-200\\/75{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.ring-accent-200\\/80{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.ring-accent-200\\/85{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.ring-accent-200\\/90{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.ring-accent-200\\/95{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.ring-accent-300{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / var(--tw-ring-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-accent-300\\/0{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.ring-accent-300\\/10{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.ring-accent-300\\/100{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.ring-accent-300\\/15{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.ring-accent-300\\/20{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.ring-accent-300\\/25{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.ring-accent-300\\/30{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.ring-accent-300\\/35{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.ring-accent-300\\/40{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.ring-accent-300\\/45{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.ring-accent-300\\/5{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.ring-accent-300\\/50{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.ring-accent-300\\/55{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.ring-accent-300\\/60{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.ring-accent-300\\/65{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.ring-accent-300\\/70{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.ring-accent-300\\/75{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.ring-accent-300\\/80{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.ring-accent-300\\/85{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.ring-accent-300\\/90{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.ring-accent-300\\/95{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.ring-accent-400{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / var(--tw-ring-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-accent-400\\/0{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.ring-accent-400\\/10{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.ring-accent-400\\/100{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.ring-accent-400\\/15{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.ring-accent-400\\/20{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.ring-accent-400\\/25{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.ring-accent-400\\/30{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.ring-accent-400\\/35{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.ring-accent-400\\/40{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.ring-accent-400\\/45{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.ring-accent-400\\/5{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.ring-accent-400\\/50{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.ring-accent-400\\/55{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.ring-accent-400\\/60{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.ring-accent-400\\/65{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.ring-accent-400\\/70{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.ring-accent-400\\/75{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.ring-accent-400\\/80{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.ring-accent-400\\/85{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.ring-accent-400\\/90{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.ring-accent-400\\/95{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.ring-accent-50{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / var(--tw-ring-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-accent-50\\/0{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.ring-accent-50\\/10{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.ring-accent-50\\/100{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.ring-accent-50\\/15{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.ring-accent-50\\/20{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.ring-accent-50\\/25{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.ring-accent-50\\/30{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.ring-accent-50\\/35{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.ring-accent-50\\/40{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.ring-accent-50\\/45{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.ring-accent-50\\/5{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.ring-accent-50\\/50{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.ring-accent-50\\/55{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.ring-accent-50\\/60{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.ring-accent-50\\/65{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.ring-accent-50\\/70{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.ring-accent-50\\/75{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.ring-accent-50\\/80{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.ring-accent-50\\/85{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.ring-accent-50\\/90{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.ring-accent-50\\/95{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.ring-accent-500{\n--tw-ring-opacity: 1;\n--tw-ring-color: color(from var(--accent) srgb r g b / var(--tw-ring-opacity));\n}\n.ring-accent-500\\/0{\n--tw-ring-color: color(from var(--accent) srgb r g b / 0);\n}\n.ring-accent-500\\/10{\n--tw-ring-color: color(from var(--accent) srgb r g b / 0.1);\n}\n.ring-accent-500\\/100{\n--tw-ring-color: color(from var(--accent) srgb r g b / 1);\n}\n.ring-accent-500\\/15{\n--tw-ring-color: color(from var(--accent) srgb r g b / 0.15);\n}\n.ring-accent-500\\/20{\n--tw-ring-color: color(from var(--accent) srgb r g b / 0.2);\n}\n.ring-accent-500\\/25{\n--tw-ring-color: color(from var(--accent) srgb r g b / 0.25);\n}\n.ring-accent-500\\/30{\n--tw-ring-color: color(from var(--accent) srgb r g b / 0.3);\n}\n.ring-accent-500\\/35{\n--tw-ring-color: color(from var(--accent) srgb r g b / 0.35);\n}\n.ring-accent-500\\/40{\n--tw-ring-color: color(from var(--accent) srgb r g b / 0.4);\n}\n.ring-accent-500\\/45{\n--tw-ring-color: color(from var(--accent) srgb r g b / 0.45);\n}\n.ring-accent-500\\/5{\n--tw-ring-color: color(from var(--accent) srgb r g b / 0.05);\n}\n.ring-accent-500\\/50{\n--tw-ring-color: color(from var(--accent) srgb r g b / 0.5);\n}\n.ring-accent-500\\/55{\n--tw-ring-color: color(from var(--accent) srgb r g b / 0.55);\n}\n.ring-accent-500\\/60{\n--tw-ring-color: color(from var(--accent) srgb r g b / 0.6);\n}\n.ring-accent-500\\/65{\n--tw-ring-color: color(from var(--accent) srgb r g b / 0.65);\n}\n.ring-accent-500\\/70{\n--tw-ring-color: color(from var(--accent) srgb r g b / 0.7);\n}\n.ring-accent-500\\/75{\n--tw-ring-color: color(from var(--accent) srgb r g b / 0.75);\n}\n.ring-accent-500\\/80{\n--tw-ring-color: color(from var(--accent) srgb r g b / 0.8);\n}\n.ring-accent-500\\/85{\n--tw-ring-color: color(from var(--accent) srgb r g b / 0.85);\n}\n.ring-accent-500\\/90{\n--tw-ring-color: color(from var(--accent) srgb r g b / 0.9);\n}\n.ring-accent-500\\/95{\n--tw-ring-color: color(from var(--accent) srgb r g b / 0.95);\n}\n.ring-accent-600{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / var(--tw-ring-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-accent-600\\/0{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.ring-accent-600\\/10{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.ring-accent-600\\/100{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.ring-accent-600\\/15{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.ring-accent-600\\/20{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.ring-accent-600\\/25{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.ring-accent-600\\/30{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.ring-accent-600\\/35{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.ring-accent-600\\/40{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.ring-accent-600\\/45{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.ring-accent-600\\/5{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.ring-accent-600\\/50{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.ring-accent-600\\/55{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.ring-accent-600\\/60{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.ring-accent-600\\/65{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.ring-accent-600\\/70{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.ring-accent-600\\/75{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.ring-accent-600\\/80{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.ring-accent-600\\/85{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.ring-accent-600\\/90{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.ring-accent-600\\/95{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.ring-accent-700{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / var(--tw-ring-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-accent-700\\/0{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.ring-accent-700\\/10{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.ring-accent-700\\/100{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.ring-accent-700\\/15{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.ring-accent-700\\/20{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.ring-accent-700\\/25{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.ring-accent-700\\/30{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.ring-accent-700\\/35{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.ring-accent-700\\/40{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.ring-accent-700\\/45{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.ring-accent-700\\/5{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.ring-accent-700\\/50{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.ring-accent-700\\/55{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.ring-accent-700\\/60{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.ring-accent-700\\/65{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.ring-accent-700\\/70{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.ring-accent-700\\/75{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.ring-accent-700\\/80{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.ring-accent-700\\/85{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.ring-accent-700\\/90{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.ring-accent-700\\/95{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.ring-accent-800{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / var(--tw-ring-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-accent-800\\/0{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.ring-accent-800\\/10{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.ring-accent-800\\/100{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.ring-accent-800\\/15{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.ring-accent-800\\/20{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.ring-accent-800\\/25{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.ring-accent-800\\/30{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.ring-accent-800\\/35{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.ring-accent-800\\/40{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.ring-accent-800\\/45{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.ring-accent-800\\/5{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.ring-accent-800\\/50{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.ring-accent-800\\/55{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.ring-accent-800\\/60{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.ring-accent-800\\/65{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.ring-accent-800\\/70{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.ring-accent-800\\/75{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.ring-accent-800\\/80{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.ring-accent-800\\/85{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.ring-accent-800\\/90{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.ring-accent-800\\/95{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.ring-accent-900{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / var(--tw-ring-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-accent-900\\/0{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.ring-accent-900\\/10{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.ring-accent-900\\/100{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.ring-accent-900\\/15{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.ring-accent-900\\/20{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.ring-accent-900\\/25{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.ring-accent-900\\/30{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.ring-accent-900\\/35{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.ring-accent-900\\/40{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.ring-accent-900\\/45{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.ring-accent-900\\/5{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.ring-accent-900\\/50{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.ring-accent-900\\/55{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.ring-accent-900\\/60{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.ring-accent-900\\/65{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.ring-accent-900\\/70{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.ring-accent-900\\/75{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.ring-accent-900\\/80{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.ring-accent-900\\/85{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.ring-accent-900\\/90{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.ring-accent-900\\/95{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.ring-accent-950{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / var(--tw-ring-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-accent-950\\/0{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.ring-accent-950\\/10{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.ring-accent-950\\/100{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.ring-accent-950\\/15{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.ring-accent-950\\/20{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.ring-accent-950\\/25{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.ring-accent-950\\/30{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.ring-accent-950\\/35{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.ring-accent-950\\/40{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.ring-accent-950\\/45{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.ring-accent-950\\/5{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.ring-accent-950\\/50{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.ring-accent-950\\/55{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.ring-accent-950\\/60{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.ring-accent-950\\/65{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.ring-accent-950\\/70{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.ring-accent-950\\/75{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.ring-accent-950\\/80{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.ring-accent-950\\/85{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.ring-accent-950\\/90{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.ring-accent-950\\/95{\n--tw-ring-color: color-mix(in lab, color(from var(--accent) srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.ring-danger{\n--tw-ring-opacity: 1;\n--tw-ring-color: rgb(242 76 61 / var(--tw-ring-opacity));\n}\n.ring-danger-100{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / var(--tw-ring-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-danger-100\\/0{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.ring-danger-100\\/10{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.ring-danger-100\\/100{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.ring-danger-100\\/15{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.ring-danger-100\\/20{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.ring-danger-100\\/25{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.ring-danger-100\\/30{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.ring-danger-100\\/35{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.ring-danger-100\\/40{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.ring-danger-100\\/45{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.ring-danger-100\\/5{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.ring-danger-100\\/50{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.ring-danger-100\\/55{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.ring-danger-100\\/60{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.ring-danger-100\\/65{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.ring-danger-100\\/70{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.ring-danger-100\\/75{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.ring-danger-100\\/80{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.ring-danger-100\\/85{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.ring-danger-100\\/90{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.ring-danger-100\\/95{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.ring-danger-200{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / var(--tw-ring-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-danger-200\\/0{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.ring-danger-200\\/10{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.ring-danger-200\\/100{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.ring-danger-200\\/15{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.ring-danger-200\\/20{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.ring-danger-200\\/25{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.ring-danger-200\\/30{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.ring-danger-200\\/35{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.ring-danger-200\\/40{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.ring-danger-200\\/45{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.ring-danger-200\\/5{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.ring-danger-200\\/50{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.ring-danger-200\\/55{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.ring-danger-200\\/60{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.ring-danger-200\\/65{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.ring-danger-200\\/70{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.ring-danger-200\\/75{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.ring-danger-200\\/80{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.ring-danger-200\\/85{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.ring-danger-200\\/90{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.ring-danger-200\\/95{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.ring-danger-300{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / var(--tw-ring-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-danger-300\\/0{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.ring-danger-300\\/10{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.ring-danger-300\\/100{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.ring-danger-300\\/15{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.ring-danger-300\\/20{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.ring-danger-300\\/25{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.ring-danger-300\\/30{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.ring-danger-300\\/35{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.ring-danger-300\\/40{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.ring-danger-300\\/45{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.ring-danger-300\\/5{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.ring-danger-300\\/50{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.ring-danger-300\\/55{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.ring-danger-300\\/60{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.ring-danger-300\\/65{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.ring-danger-300\\/70{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.ring-danger-300\\/75{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.ring-danger-300\\/80{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.ring-danger-300\\/85{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.ring-danger-300\\/90{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.ring-danger-300\\/95{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.ring-danger-400{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / var(--tw-ring-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-danger-400\\/0{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.ring-danger-400\\/10{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.ring-danger-400\\/100{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.ring-danger-400\\/15{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.ring-danger-400\\/20{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.ring-danger-400\\/25{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.ring-danger-400\\/30{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.ring-danger-400\\/35{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.ring-danger-400\\/40{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.ring-danger-400\\/45{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.ring-danger-400\\/5{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.ring-danger-400\\/50{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.ring-danger-400\\/55{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.ring-danger-400\\/60{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.ring-danger-400\\/65{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.ring-danger-400\\/70{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.ring-danger-400\\/75{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.ring-danger-400\\/80{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.ring-danger-400\\/85{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.ring-danger-400\\/90{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.ring-danger-400\\/95{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.ring-danger-50{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / var(--tw-ring-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-danger-50\\/0{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.ring-danger-50\\/10{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.ring-danger-50\\/100{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.ring-danger-50\\/15{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.ring-danger-50\\/20{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.ring-danger-50\\/25{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.ring-danger-50\\/30{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.ring-danger-50\\/35{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.ring-danger-50\\/40{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.ring-danger-50\\/45{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.ring-danger-50\\/5{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.ring-danger-50\\/50{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.ring-danger-50\\/55{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.ring-danger-50\\/60{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.ring-danger-50\\/65{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.ring-danger-50\\/70{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.ring-danger-50\\/75{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.ring-danger-50\\/80{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.ring-danger-50\\/85{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.ring-danger-50\\/90{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.ring-danger-50\\/95{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.ring-danger-500{\n--tw-ring-opacity: 1;\n--tw-ring-color: color(from #f24c3d srgb r g b / var(--tw-ring-opacity));\n}\n.ring-danger-500\\/0{\n--tw-ring-color: color(from #f24c3d srgb r g b / 0);\n}\n.ring-danger-500\\/10{\n--tw-ring-color: color(from #f24c3d srgb r g b / 0.1);\n}\n.ring-danger-500\\/100{\n--tw-ring-color: color(from #f24c3d srgb r g b / 1);\n}\n.ring-danger-500\\/15{\n--tw-ring-color: color(from #f24c3d srgb r g b / 0.15);\n}\n.ring-danger-500\\/20{\n--tw-ring-color: color(from #f24c3d srgb r g b / 0.2);\n}\n.ring-danger-500\\/25{\n--tw-ring-color: color(from #f24c3d srgb r g b / 0.25);\n}\n.ring-danger-500\\/30{\n--tw-ring-color: color(from #f24c3d srgb r g b / 0.3);\n}\n.ring-danger-500\\/35{\n--tw-ring-color: color(from #f24c3d srgb r g b / 0.35);\n}\n.ring-danger-500\\/40{\n--tw-ring-color: color(from #f24c3d srgb r g b / 0.4);\n}\n.ring-danger-500\\/45{\n--tw-ring-color: color(from #f24c3d srgb r g b / 0.45);\n}\n.ring-danger-500\\/5{\n--tw-ring-color: color(from #f24c3d srgb r g b / 0.05);\n}\n.ring-danger-500\\/50{\n--tw-ring-color: color(from #f24c3d srgb r g b / 0.5);\n}\n.ring-danger-500\\/55{\n--tw-ring-color: color(from #f24c3d srgb r g b / 0.55);\n}\n.ring-danger-500\\/60{\n--tw-ring-color: color(from #f24c3d srgb r g b / 0.6);\n}\n.ring-danger-500\\/65{\n--tw-ring-color: color(from #f24c3d srgb r g b / 0.65);\n}\n.ring-danger-500\\/70{\n--tw-ring-color: color(from #f24c3d srgb r g b / 0.7);\n}\n.ring-danger-500\\/75{\n--tw-ring-color: color(from #f24c3d srgb r g b / 0.75);\n}\n.ring-danger-500\\/80{\n--tw-ring-color: color(from #f24c3d srgb r g b / 0.8);\n}\n.ring-danger-500\\/85{\n--tw-ring-color: color(from #f24c3d srgb r g b / 0.85);\n}\n.ring-danger-500\\/90{\n--tw-ring-color: color(from #f24c3d srgb r g b / 0.9);\n}\n.ring-danger-500\\/95{\n--tw-ring-color: color(from #f24c3d srgb r g b / 0.95);\n}\n.ring-danger-600{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / var(--tw-ring-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-danger-600\\/0{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.ring-danger-600\\/10{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.ring-danger-600\\/100{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.ring-danger-600\\/15{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.ring-danger-600\\/20{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.ring-danger-600\\/25{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.ring-danger-600\\/30{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.ring-danger-600\\/35{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.ring-danger-600\\/40{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.ring-danger-600\\/45{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.ring-danger-600\\/5{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.ring-danger-600\\/50{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.ring-danger-600\\/55{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.ring-danger-600\\/60{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.ring-danger-600\\/65{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.ring-danger-600\\/70{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.ring-danger-600\\/75{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.ring-danger-600\\/80{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.ring-danger-600\\/85{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.ring-danger-600\\/90{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.ring-danger-600\\/95{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.ring-danger-700{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / var(--tw-ring-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-danger-700\\/0{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.ring-danger-700\\/10{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.ring-danger-700\\/100{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.ring-danger-700\\/15{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.ring-danger-700\\/20{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.ring-danger-700\\/25{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.ring-danger-700\\/30{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.ring-danger-700\\/35{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.ring-danger-700\\/40{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.ring-danger-700\\/45{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.ring-danger-700\\/5{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.ring-danger-700\\/50{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.ring-danger-700\\/55{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.ring-danger-700\\/60{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.ring-danger-700\\/65{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.ring-danger-700\\/70{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.ring-danger-700\\/75{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.ring-danger-700\\/80{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.ring-danger-700\\/85{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.ring-danger-700\\/90{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.ring-danger-700\\/95{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.ring-danger-800{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / var(--tw-ring-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-danger-800\\/0{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.ring-danger-800\\/10{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.ring-danger-800\\/100{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.ring-danger-800\\/15{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.ring-danger-800\\/20{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.ring-danger-800\\/25{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.ring-danger-800\\/30{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.ring-danger-800\\/35{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.ring-danger-800\\/40{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.ring-danger-800\\/45{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.ring-danger-800\\/5{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.ring-danger-800\\/50{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.ring-danger-800\\/55{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.ring-danger-800\\/60{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.ring-danger-800\\/65{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.ring-danger-800\\/70{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.ring-danger-800\\/75{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.ring-danger-800\\/80{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.ring-danger-800\\/85{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.ring-danger-800\\/90{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.ring-danger-800\\/95{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.ring-danger-900{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / var(--tw-ring-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-danger-900\\/0{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.ring-danger-900\\/10{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.ring-danger-900\\/100{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.ring-danger-900\\/15{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.ring-danger-900\\/20{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.ring-danger-900\\/25{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.ring-danger-900\\/30{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.ring-danger-900\\/35{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.ring-danger-900\\/40{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.ring-danger-900\\/45{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.ring-danger-900\\/5{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.ring-danger-900\\/50{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.ring-danger-900\\/55{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.ring-danger-900\\/60{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.ring-danger-900\\/65{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.ring-danger-900\\/70{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.ring-danger-900\\/75{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.ring-danger-900\\/80{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.ring-danger-900\\/85{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.ring-danger-900\\/90{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.ring-danger-900\\/95{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.ring-danger-950{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / var(--tw-ring-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-danger-950\\/0{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.ring-danger-950\\/10{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.ring-danger-950\\/100{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.ring-danger-950\\/15{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.ring-danger-950\\/20{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.ring-danger-950\\/25{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.ring-danger-950\\/30{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.ring-danger-950\\/35{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.ring-danger-950\\/40{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.ring-danger-950\\/45{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.ring-danger-950\\/5{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.ring-danger-950\\/50{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.ring-danger-950\\/55{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.ring-danger-950\\/60{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.ring-danger-950\\/65{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.ring-danger-950\\/70{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.ring-danger-950\\/75{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.ring-danger-950\\/80{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.ring-danger-950\\/85{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.ring-danger-950\\/90{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.ring-danger-950\\/95{\n--tw-ring-color: color-mix(in lab, color(from #f24c3d srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.ring-danger\\/0{\n--tw-ring-color: rgb(242 76 61 / 0);\n}\n.ring-danger\\/10{\n--tw-ring-color: rgb(242 76 61 / 0.1);\n}\n.ring-danger\\/100{\n--tw-ring-color: rgb(242 76 61 / 1);\n}\n.ring-danger\\/15{\n--tw-ring-color: rgb(242 76 61 / 0.15);\n}\n.ring-danger\\/20{\n--tw-ring-color: rgb(242 76 61 / 0.2);\n}\n.ring-danger\\/25{\n--tw-ring-color: rgb(242 76 61 / 0.25);\n}\n.ring-danger\\/30{\n--tw-ring-color: rgb(242 76 61 / 0.3);\n}\n.ring-danger\\/35{\n--tw-ring-color: rgb(242 76 61 / 0.35);\n}\n.ring-danger\\/40{\n--tw-ring-color: rgb(242 76 61 / 0.4);\n}\n.ring-danger\\/45{\n--tw-ring-color: rgb(242 76 61 / 0.45);\n}\n.ring-danger\\/5{\n--tw-ring-color: rgb(242 76 61 / 0.05);\n}\n.ring-danger\\/50{\n--tw-ring-color: rgb(242 76 61 / 0.5);\n}\n.ring-danger\\/55{\n--tw-ring-color: rgb(242 76 61 / 0.55);\n}\n.ring-danger\\/60{\n--tw-ring-color: rgb(242 76 61 / 0.6);\n}\n.ring-danger\\/65{\n--tw-ring-color: rgb(242 76 61 / 0.65);\n}\n.ring-danger\\/70{\n--tw-ring-color: rgb(242 76 61 / 0.7);\n}\n.ring-danger\\/75{\n--tw-ring-color: rgb(242 76 61 / 0.75);\n}\n.ring-danger\\/80{\n--tw-ring-color: rgb(242 76 61 / 0.8);\n}\n.ring-danger\\/85{\n--tw-ring-color: rgb(242 76 61 / 0.85);\n}\n.ring-danger\\/90{\n--tw-ring-color: rgb(242 76 61 / 0.9);\n}\n.ring-danger\\/95{\n--tw-ring-color: rgb(242 76 61 / 0.95);\n}\n.ring-info{\n--tw-ring-opacity: 1;\n--tw-ring-color: rgb(0 191 255 / var(--tw-ring-opacity));\n}\n.ring-info-100{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / var(--tw-ring-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-info-100\\/0{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.ring-info-100\\/10{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.ring-info-100\\/100{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.ring-info-100\\/15{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.ring-info-100\\/20{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.ring-info-100\\/25{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.ring-info-100\\/30{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.ring-info-100\\/35{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.ring-info-100\\/40{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.ring-info-100\\/45{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.ring-info-100\\/5{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.ring-info-100\\/50{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.ring-info-100\\/55{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.ring-info-100\\/60{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.ring-info-100\\/65{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.ring-info-100\\/70{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.ring-info-100\\/75{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.ring-info-100\\/80{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.ring-info-100\\/85{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.ring-info-100\\/90{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.ring-info-100\\/95{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.ring-info-200{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / var(--tw-ring-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-info-200\\/0{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.ring-info-200\\/10{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.ring-info-200\\/100{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.ring-info-200\\/15{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.ring-info-200\\/20{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.ring-info-200\\/25{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.ring-info-200\\/30{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.ring-info-200\\/35{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.ring-info-200\\/40{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.ring-info-200\\/45{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.ring-info-200\\/5{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.ring-info-200\\/50{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.ring-info-200\\/55{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.ring-info-200\\/60{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.ring-info-200\\/65{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.ring-info-200\\/70{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.ring-info-200\\/75{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.ring-info-200\\/80{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.ring-info-200\\/85{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.ring-info-200\\/90{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.ring-info-200\\/95{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.ring-info-300{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / var(--tw-ring-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-info-300\\/0{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.ring-info-300\\/10{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.ring-info-300\\/100{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.ring-info-300\\/15{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.ring-info-300\\/20{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.ring-info-300\\/25{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.ring-info-300\\/30{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.ring-info-300\\/35{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.ring-info-300\\/40{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.ring-info-300\\/45{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.ring-info-300\\/5{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.ring-info-300\\/50{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.ring-info-300\\/55{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.ring-info-300\\/60{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.ring-info-300\\/65{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.ring-info-300\\/70{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.ring-info-300\\/75{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.ring-info-300\\/80{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.ring-info-300\\/85{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.ring-info-300\\/90{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.ring-info-300\\/95{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.ring-info-400{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / var(--tw-ring-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-info-400\\/0{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.ring-info-400\\/10{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.ring-info-400\\/100{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.ring-info-400\\/15{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.ring-info-400\\/20{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.ring-info-400\\/25{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.ring-info-400\\/30{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.ring-info-400\\/35{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.ring-info-400\\/40{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.ring-info-400\\/45{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.ring-info-400\\/5{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.ring-info-400\\/50{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.ring-info-400\\/55{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.ring-info-400\\/60{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.ring-info-400\\/65{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.ring-info-400\\/70{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.ring-info-400\\/75{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.ring-info-400\\/80{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.ring-info-400\\/85{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.ring-info-400\\/90{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.ring-info-400\\/95{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.ring-info-50{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / var(--tw-ring-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-info-50\\/0{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.ring-info-50\\/10{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.ring-info-50\\/100{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.ring-info-50\\/15{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.ring-info-50\\/20{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.ring-info-50\\/25{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.ring-info-50\\/30{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.ring-info-50\\/35{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.ring-info-50\\/40{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.ring-info-50\\/45{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.ring-info-50\\/5{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.ring-info-50\\/50{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.ring-info-50\\/55{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.ring-info-50\\/60{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.ring-info-50\\/65{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.ring-info-50\\/70{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.ring-info-50\\/75{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.ring-info-50\\/80{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.ring-info-50\\/85{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.ring-info-50\\/90{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.ring-info-50\\/95{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.ring-info-500{\n--tw-ring-opacity: 1;\n--tw-ring-color: color(from #00bfff srgb r g b / var(--tw-ring-opacity));\n}\n.ring-info-500\\/0{\n--tw-ring-color: color(from #00bfff srgb r g b / 0);\n}\n.ring-info-500\\/10{\n--tw-ring-color: color(from #00bfff srgb r g b / 0.1);\n}\n.ring-info-500\\/100{\n--tw-ring-color: color(from #00bfff srgb r g b / 1);\n}\n.ring-info-500\\/15{\n--tw-ring-color: color(from #00bfff srgb r g b / 0.15);\n}\n.ring-info-500\\/20{\n--tw-ring-color: color(from #00bfff srgb r g b / 0.2);\n}\n.ring-info-500\\/25{\n--tw-ring-color: color(from #00bfff srgb r g b / 0.25);\n}\n.ring-info-500\\/30{\n--tw-ring-color: color(from #00bfff srgb r g b / 0.3);\n}\n.ring-info-500\\/35{\n--tw-ring-color: color(from #00bfff srgb r g b / 0.35);\n}\n.ring-info-500\\/40{\n--tw-ring-color: color(from #00bfff srgb r g b / 0.4);\n}\n.ring-info-500\\/45{\n--tw-ring-color: color(from #00bfff srgb r g b / 0.45);\n}\n.ring-info-500\\/5{\n--tw-ring-color: color(from #00bfff srgb r g b / 0.05);\n}\n.ring-info-500\\/50{\n--tw-ring-color: color(from #00bfff srgb r g b / 0.5);\n}\n.ring-info-500\\/55{\n--tw-ring-color: color(from #00bfff srgb r g b / 0.55);\n}\n.ring-info-500\\/60{\n--tw-ring-color: color(from #00bfff srgb r g b / 0.6);\n}\n.ring-info-500\\/65{\n--tw-ring-color: color(from #00bfff srgb r g b / 0.65);\n}\n.ring-info-500\\/70{\n--tw-ring-color: color(from #00bfff srgb r g b / 0.7);\n}\n.ring-info-500\\/75{\n--tw-ring-color: color(from #00bfff srgb r g b / 0.75);\n}\n.ring-info-500\\/80{\n--tw-ring-color: color(from #00bfff srgb r g b / 0.8);\n}\n.ring-info-500\\/85{\n--tw-ring-color: color(from #00bfff srgb r g b / 0.85);\n}\n.ring-info-500\\/90{\n--tw-ring-color: color(from #00bfff srgb r g b / 0.9);\n}\n.ring-info-500\\/95{\n--tw-ring-color: color(from #00bfff srgb r g b / 0.95);\n}\n.ring-info-600{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / var(--tw-ring-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-info-600\\/0{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.ring-info-600\\/10{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.ring-info-600\\/100{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.ring-info-600\\/15{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.ring-info-600\\/20{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.ring-info-600\\/25{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.ring-info-600\\/30{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.ring-info-600\\/35{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.ring-info-600\\/40{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.ring-info-600\\/45{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.ring-info-600\\/5{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.ring-info-600\\/50{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.ring-info-600\\/55{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.ring-info-600\\/60{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.ring-info-600\\/65{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.ring-info-600\\/70{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.ring-info-600\\/75{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.ring-info-600\\/80{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.ring-info-600\\/85{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.ring-info-600\\/90{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.ring-info-600\\/95{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.ring-info-700{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / var(--tw-ring-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-info-700\\/0{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.ring-info-700\\/10{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.ring-info-700\\/100{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.ring-info-700\\/15{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.ring-info-700\\/20{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.ring-info-700\\/25{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.ring-info-700\\/30{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.ring-info-700\\/35{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.ring-info-700\\/40{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.ring-info-700\\/45{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.ring-info-700\\/5{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.ring-info-700\\/50{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.ring-info-700\\/55{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.ring-info-700\\/60{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.ring-info-700\\/65{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.ring-info-700\\/70{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.ring-info-700\\/75{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.ring-info-700\\/80{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.ring-info-700\\/85{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.ring-info-700\\/90{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.ring-info-700\\/95{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.ring-info-800{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / var(--tw-ring-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-info-800\\/0{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.ring-info-800\\/10{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.ring-info-800\\/100{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.ring-info-800\\/15{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.ring-info-800\\/20{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.ring-info-800\\/25{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.ring-info-800\\/30{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.ring-info-800\\/35{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.ring-info-800\\/40{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.ring-info-800\\/45{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.ring-info-800\\/5{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.ring-info-800\\/50{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.ring-info-800\\/55{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.ring-info-800\\/60{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.ring-info-800\\/65{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.ring-info-800\\/70{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.ring-info-800\\/75{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.ring-info-800\\/80{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.ring-info-800\\/85{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.ring-info-800\\/90{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.ring-info-800\\/95{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.ring-info-900{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / var(--tw-ring-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-info-900\\/0{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.ring-info-900\\/10{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.ring-info-900\\/100{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.ring-info-900\\/15{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.ring-info-900\\/20{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.ring-info-900\\/25{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.ring-info-900\\/30{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.ring-info-900\\/35{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.ring-info-900\\/40{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.ring-info-900\\/45{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.ring-info-900\\/5{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.ring-info-900\\/50{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.ring-info-900\\/55{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.ring-info-900\\/60{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.ring-info-900\\/65{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.ring-info-900\\/70{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.ring-info-900\\/75{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.ring-info-900\\/80{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.ring-info-900\\/85{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.ring-info-900\\/90{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.ring-info-900\\/95{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.ring-info-950{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / var(--tw-ring-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-info-950\\/0{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.ring-info-950\\/10{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.ring-info-950\\/100{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.ring-info-950\\/15{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.ring-info-950\\/20{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.ring-info-950\\/25{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.ring-info-950\\/30{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.ring-info-950\\/35{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.ring-info-950\\/40{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.ring-info-950\\/45{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.ring-info-950\\/5{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.ring-info-950\\/50{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.ring-info-950\\/55{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.ring-info-950\\/60{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.ring-info-950\\/65{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.ring-info-950\\/70{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.ring-info-950\\/75{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.ring-info-950\\/80{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.ring-info-950\\/85{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.ring-info-950\\/90{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.ring-info-950\\/95{\n--tw-ring-color: color-mix(in lab, color(from #00bfff srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.ring-info\\/0{\n--tw-ring-color: rgb(0 191 255 / 0);\n}\n.ring-info\\/10{\n--tw-ring-color: rgb(0 191 255 / 0.1);\n}\n.ring-info\\/100{\n--tw-ring-color: rgb(0 191 255 / 1);\n}\n.ring-info\\/15{\n--tw-ring-color: rgb(0 191 255 / 0.15);\n}\n.ring-info\\/20{\n--tw-ring-color: rgb(0 191 255 / 0.2);\n}\n.ring-info\\/25{\n--tw-ring-color: rgb(0 191 255 / 0.25);\n}\n.ring-info\\/30{\n--tw-ring-color: rgb(0 191 255 / 0.3);\n}\n.ring-info\\/35{\n--tw-ring-color: rgb(0 191 255 / 0.35);\n}\n.ring-info\\/40{\n--tw-ring-color: rgb(0 191 255 / 0.4);\n}\n.ring-info\\/45{\n--tw-ring-color: rgb(0 191 255 / 0.45);\n}\n.ring-info\\/5{\n--tw-ring-color: rgb(0 191 255 / 0.05);\n}\n.ring-info\\/50{\n--tw-ring-color: rgb(0 191 255 / 0.5);\n}\n.ring-info\\/55{\n--tw-ring-color: rgb(0 191 255 / 0.55);\n}\n.ring-info\\/60{\n--tw-ring-color: rgb(0 191 255 / 0.6);\n}\n.ring-info\\/65{\n--tw-ring-color: rgb(0 191 255 / 0.65);\n}\n.ring-info\\/70{\n--tw-ring-color: rgb(0 191 255 / 0.7);\n}\n.ring-info\\/75{\n--tw-ring-color: rgb(0 191 255 / 0.75);\n}\n.ring-info\\/80{\n--tw-ring-color: rgb(0 191 255 / 0.8);\n}\n.ring-info\\/85{\n--tw-ring-color: rgb(0 191 255 / 0.85);\n}\n.ring-info\\/90{\n--tw-ring-color: rgb(0 191 255 / 0.9);\n}\n.ring-info\\/95{\n--tw-ring-color: rgb(0 191 255 / 0.95);\n}\n.ring-primary{\n--tw-ring-color: var(--primary);\n}\n.ring-primary-100{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-ring-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-primary-100\\/0{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.ring-primary-100\\/10{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.ring-primary-100\\/100{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.ring-primary-100\\/15{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.ring-primary-100\\/20{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.ring-primary-100\\/25{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.ring-primary-100\\/30{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.ring-primary-100\\/35{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.ring-primary-100\\/40{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.ring-primary-100\\/45{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.ring-primary-100\\/5{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.ring-primary-100\\/50{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.ring-primary-100\\/55{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.ring-primary-100\\/60{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.ring-primary-100\\/65{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.ring-primary-100\\/70{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.ring-primary-100\\/75{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.ring-primary-100\\/80{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.ring-primary-100\\/85{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.ring-primary-100\\/90{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.ring-primary-100\\/95{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.ring-primary-200{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-ring-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-primary-200\\/0{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.ring-primary-200\\/10{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.ring-primary-200\\/100{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.ring-primary-200\\/15{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.ring-primary-200\\/20{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.ring-primary-200\\/25{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.ring-primary-200\\/30{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.ring-primary-200\\/35{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.ring-primary-200\\/40{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.ring-primary-200\\/45{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.ring-primary-200\\/5{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.ring-primary-200\\/50{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.ring-primary-200\\/55{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.ring-primary-200\\/60{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.ring-primary-200\\/65{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.ring-primary-200\\/70{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.ring-primary-200\\/75{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.ring-primary-200\\/80{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.ring-primary-200\\/85{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.ring-primary-200\\/90{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.ring-primary-200\\/95{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.ring-primary-300{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-ring-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-primary-300\\/0{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.ring-primary-300\\/10{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.ring-primary-300\\/100{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.ring-primary-300\\/15{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.ring-primary-300\\/20{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.ring-primary-300\\/25{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.ring-primary-300\\/30{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.ring-primary-300\\/35{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.ring-primary-300\\/40{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.ring-primary-300\\/45{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.ring-primary-300\\/5{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.ring-primary-300\\/50{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.ring-primary-300\\/55{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.ring-primary-300\\/60{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.ring-primary-300\\/65{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.ring-primary-300\\/70{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.ring-primary-300\\/75{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.ring-primary-300\\/80{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.ring-primary-300\\/85{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.ring-primary-300\\/90{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.ring-primary-300\\/95{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.ring-primary-400{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-ring-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-primary-400\\/0{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.ring-primary-400\\/10{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.ring-primary-400\\/100{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.ring-primary-400\\/15{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.ring-primary-400\\/20{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.ring-primary-400\\/25{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.ring-primary-400\\/30{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.ring-primary-400\\/35{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.ring-primary-400\\/40{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.ring-primary-400\\/45{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.ring-primary-400\\/5{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.ring-primary-400\\/50{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.ring-primary-400\\/55{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.ring-primary-400\\/60{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.ring-primary-400\\/65{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.ring-primary-400\\/70{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.ring-primary-400\\/75{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.ring-primary-400\\/80{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.ring-primary-400\\/85{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.ring-primary-400\\/90{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.ring-primary-400\\/95{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.ring-primary-50{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-ring-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-primary-50\\/0{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.ring-primary-50\\/10{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.ring-primary-50\\/100{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.ring-primary-50\\/15{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.ring-primary-50\\/20{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.ring-primary-50\\/25{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.ring-primary-50\\/30{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.ring-primary-50\\/35{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.ring-primary-50\\/40{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.ring-primary-50\\/45{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.ring-primary-50\\/5{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.ring-primary-50\\/50{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.ring-primary-50\\/55{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.ring-primary-50\\/60{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.ring-primary-50\\/65{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.ring-primary-50\\/70{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.ring-primary-50\\/75{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.ring-primary-50\\/80{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.ring-primary-50\\/85{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.ring-primary-50\\/90{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.ring-primary-50\\/95{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.ring-primary-500{\n--tw-ring-opacity: 1;\n--tw-ring-color: color(from var(--primary) srgb r g b / var(--tw-ring-opacity));\n}\n.ring-primary-500\\/0{\n--tw-ring-color: color(from var(--primary) srgb r g b / 0);\n}\n.ring-primary-500\\/10{\n--tw-ring-color: color(from var(--primary) srgb r g b / 0.1);\n}\n.ring-primary-500\\/100{\n--tw-ring-color: color(from var(--primary) srgb r g b / 1);\n}\n.ring-primary-500\\/15{\n--tw-ring-color: color(from var(--primary) srgb r g b / 0.15);\n}\n.ring-primary-500\\/20{\n--tw-ring-color: color(from var(--primary) srgb r g b / 0.2);\n}\n.ring-primary-500\\/25{\n--tw-ring-color: color(from var(--primary) srgb r g b / 0.25);\n}\n.ring-primary-500\\/30{\n--tw-ring-color: color(from var(--primary) srgb r g b / 0.3);\n}\n.ring-primary-500\\/35{\n--tw-ring-color: color(from var(--primary) srgb r g b / 0.35);\n}\n.ring-primary-500\\/40{\n--tw-ring-color: color(from var(--primary) srgb r g b / 0.4);\n}\n.ring-primary-500\\/45{\n--tw-ring-color: color(from var(--primary) srgb r g b / 0.45);\n}\n.ring-primary-500\\/5{\n--tw-ring-color: color(from var(--primary) srgb r g b / 0.05);\n}\n.ring-primary-500\\/50{\n--tw-ring-color: color(from var(--primary) srgb r g b / 0.5);\n}\n.ring-primary-500\\/55{\n--tw-ring-color: color(from var(--primary) srgb r g b / 0.55);\n}\n.ring-primary-500\\/60{\n--tw-ring-color: color(from var(--primary) srgb r g b / 0.6);\n}\n.ring-primary-500\\/65{\n--tw-ring-color: color(from var(--primary) srgb r g b / 0.65);\n}\n.ring-primary-500\\/70{\n--tw-ring-color: color(from var(--primary) srgb r g b / 0.7);\n}\n.ring-primary-500\\/75{\n--tw-ring-color: color(from var(--primary) srgb r g b / 0.75);\n}\n.ring-primary-500\\/80{\n--tw-ring-color: color(from var(--primary) srgb r g b / 0.8);\n}\n.ring-primary-500\\/85{\n--tw-ring-color: color(from var(--primary) srgb r g b / 0.85);\n}\n.ring-primary-500\\/90{\n--tw-ring-color: color(from var(--primary) srgb r g b / 0.9);\n}\n.ring-primary-500\\/95{\n--tw-ring-color: color(from var(--primary) srgb r g b / 0.95);\n}\n.ring-primary-600{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-ring-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-primary-600\\/0{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.ring-primary-600\\/10{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.ring-primary-600\\/100{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.ring-primary-600\\/15{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.ring-primary-600\\/20{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.ring-primary-600\\/25{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.ring-primary-600\\/30{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.ring-primary-600\\/35{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.ring-primary-600\\/40{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.ring-primary-600\\/45{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.ring-primary-600\\/5{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.ring-primary-600\\/50{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.ring-primary-600\\/55{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.ring-primary-600\\/60{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.ring-primary-600\\/65{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.ring-primary-600\\/70{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.ring-primary-600\\/75{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.ring-primary-600\\/80{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.ring-primary-600\\/85{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.ring-primary-600\\/90{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.ring-primary-600\\/95{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.ring-primary-700{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-ring-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-primary-700\\/0{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.ring-primary-700\\/10{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.ring-primary-700\\/100{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.ring-primary-700\\/15{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.ring-primary-700\\/20{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.ring-primary-700\\/25{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.ring-primary-700\\/30{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.ring-primary-700\\/35{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.ring-primary-700\\/40{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.ring-primary-700\\/45{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.ring-primary-700\\/5{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.ring-primary-700\\/50{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.ring-primary-700\\/55{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.ring-primary-700\\/60{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.ring-primary-700\\/65{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.ring-primary-700\\/70{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.ring-primary-700\\/75{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.ring-primary-700\\/80{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.ring-primary-700\\/85{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.ring-primary-700\\/90{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.ring-primary-700\\/95{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.ring-primary-800{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-ring-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-primary-800\\/0{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.ring-primary-800\\/10{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.ring-primary-800\\/100{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.ring-primary-800\\/15{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.ring-primary-800\\/20{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.ring-primary-800\\/25{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.ring-primary-800\\/30{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.ring-primary-800\\/35{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.ring-primary-800\\/40{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.ring-primary-800\\/45{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.ring-primary-800\\/5{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.ring-primary-800\\/50{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.ring-primary-800\\/55{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.ring-primary-800\\/60{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.ring-primary-800\\/65{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.ring-primary-800\\/70{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.ring-primary-800\\/75{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.ring-primary-800\\/80{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.ring-primary-800\\/85{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.ring-primary-800\\/90{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.ring-primary-800\\/95{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.ring-primary-900{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-ring-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-primary-900\\/0{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.ring-primary-900\\/10{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.ring-primary-900\\/100{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.ring-primary-900\\/15{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.ring-primary-900\\/20{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.ring-primary-900\\/25{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.ring-primary-900\\/30{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.ring-primary-900\\/35{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.ring-primary-900\\/40{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.ring-primary-900\\/45{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.ring-primary-900\\/5{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.ring-primary-900\\/50{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.ring-primary-900\\/55{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.ring-primary-900\\/60{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.ring-primary-900\\/65{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.ring-primary-900\\/70{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.ring-primary-900\\/75{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.ring-primary-900\\/80{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.ring-primary-900\\/85{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.ring-primary-900\\/90{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.ring-primary-900\\/95{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.ring-primary-950{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-ring-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-primary-950\\/0{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.ring-primary-950\\/10{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.ring-primary-950\\/100{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.ring-primary-950\\/15{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.ring-primary-950\\/20{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.ring-primary-950\\/25{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.ring-primary-950\\/30{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.ring-primary-950\\/35{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.ring-primary-950\\/40{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.ring-primary-950\\/45{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.ring-primary-950\\/5{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.ring-primary-950\\/50{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.ring-primary-950\\/55{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.ring-primary-950\\/60{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.ring-primary-950\\/65{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.ring-primary-950\\/70{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.ring-primary-950\\/75{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.ring-primary-950\\/80{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.ring-primary-950\\/85{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.ring-primary-950\\/90{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.ring-primary-950\\/95{\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.ring-success{\n--tw-ring-opacity: 1;\n--tw-ring-color: rgb(68 188 105 / var(--tw-ring-opacity));\n}\n.ring-success-100{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / var(--tw-ring-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-success-100\\/0{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.ring-success-100\\/10{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.ring-success-100\\/100{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.ring-success-100\\/15{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.ring-success-100\\/20{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.ring-success-100\\/25{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.ring-success-100\\/30{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.ring-success-100\\/35{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.ring-success-100\\/40{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.ring-success-100\\/45{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.ring-success-100\\/5{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.ring-success-100\\/50{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.ring-success-100\\/55{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.ring-success-100\\/60{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.ring-success-100\\/65{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.ring-success-100\\/70{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.ring-success-100\\/75{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.ring-success-100\\/80{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.ring-success-100\\/85{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.ring-success-100\\/90{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.ring-success-100\\/95{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.ring-success-200{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / var(--tw-ring-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-success-200\\/0{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.ring-success-200\\/10{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.ring-success-200\\/100{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.ring-success-200\\/15{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.ring-success-200\\/20{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.ring-success-200\\/25{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.ring-success-200\\/30{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.ring-success-200\\/35{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.ring-success-200\\/40{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.ring-success-200\\/45{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.ring-success-200\\/5{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.ring-success-200\\/50{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.ring-success-200\\/55{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.ring-success-200\\/60{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.ring-success-200\\/65{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.ring-success-200\\/70{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.ring-success-200\\/75{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.ring-success-200\\/80{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.ring-success-200\\/85{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.ring-success-200\\/90{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.ring-success-200\\/95{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.ring-success-300{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / var(--tw-ring-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-success-300\\/0{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.ring-success-300\\/10{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.ring-success-300\\/100{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.ring-success-300\\/15{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.ring-success-300\\/20{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.ring-success-300\\/25{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.ring-success-300\\/30{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.ring-success-300\\/35{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.ring-success-300\\/40{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.ring-success-300\\/45{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.ring-success-300\\/5{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.ring-success-300\\/50{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.ring-success-300\\/55{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.ring-success-300\\/60{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.ring-success-300\\/65{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.ring-success-300\\/70{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.ring-success-300\\/75{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.ring-success-300\\/80{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.ring-success-300\\/85{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.ring-success-300\\/90{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.ring-success-300\\/95{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.ring-success-400{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / var(--tw-ring-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-success-400\\/0{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.ring-success-400\\/10{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.ring-success-400\\/100{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.ring-success-400\\/15{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.ring-success-400\\/20{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.ring-success-400\\/25{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.ring-success-400\\/30{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.ring-success-400\\/35{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.ring-success-400\\/40{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.ring-success-400\\/45{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.ring-success-400\\/5{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.ring-success-400\\/50{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.ring-success-400\\/55{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.ring-success-400\\/60{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.ring-success-400\\/65{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.ring-success-400\\/70{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.ring-success-400\\/75{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.ring-success-400\\/80{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.ring-success-400\\/85{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.ring-success-400\\/90{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.ring-success-400\\/95{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.ring-success-50{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / var(--tw-ring-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-success-50\\/0{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.ring-success-50\\/10{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.ring-success-50\\/100{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.ring-success-50\\/15{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.ring-success-50\\/20{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.ring-success-50\\/25{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.ring-success-50\\/30{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.ring-success-50\\/35{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.ring-success-50\\/40{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.ring-success-50\\/45{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.ring-success-50\\/5{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.ring-success-50\\/50{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.ring-success-50\\/55{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.ring-success-50\\/60{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.ring-success-50\\/65{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.ring-success-50\\/70{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.ring-success-50\\/75{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.ring-success-50\\/80{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.ring-success-50\\/85{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.ring-success-50\\/90{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.ring-success-50\\/95{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.ring-success-500{\n--tw-ring-opacity: 1;\n--tw-ring-color: color(from #44bc69 srgb r g b / var(--tw-ring-opacity));\n}\n.ring-success-500\\/0{\n--tw-ring-color: color(from #44bc69 srgb r g b / 0);\n}\n.ring-success-500\\/10{\n--tw-ring-color: color(from #44bc69 srgb r g b / 0.1);\n}\n.ring-success-500\\/100{\n--tw-ring-color: color(from #44bc69 srgb r g b / 1);\n}\n.ring-success-500\\/15{\n--tw-ring-color: color(from #44bc69 srgb r g b / 0.15);\n}\n.ring-success-500\\/20{\n--tw-ring-color: color(from #44bc69 srgb r g b / 0.2);\n}\n.ring-success-500\\/25{\n--tw-ring-color: color(from #44bc69 srgb r g b / 0.25);\n}\n.ring-success-500\\/30{\n--tw-ring-color: color(from #44bc69 srgb r g b / 0.3);\n}\n.ring-success-500\\/35{\n--tw-ring-color: color(from #44bc69 srgb r g b / 0.35);\n}\n.ring-success-500\\/40{\n--tw-ring-color: color(from #44bc69 srgb r g b / 0.4);\n}\n.ring-success-500\\/45{\n--tw-ring-color: color(from #44bc69 srgb r g b / 0.45);\n}\n.ring-success-500\\/5{\n--tw-ring-color: color(from #44bc69 srgb r g b / 0.05);\n}\n.ring-success-500\\/50{\n--tw-ring-color: color(from #44bc69 srgb r g b / 0.5);\n}\n.ring-success-500\\/55{\n--tw-ring-color: color(from #44bc69 srgb r g b / 0.55);\n}\n.ring-success-500\\/60{\n--tw-ring-color: color(from #44bc69 srgb r g b / 0.6);\n}\n.ring-success-500\\/65{\n--tw-ring-color: color(from #44bc69 srgb r g b / 0.65);\n}\n.ring-success-500\\/70{\n--tw-ring-color: color(from #44bc69 srgb r g b / 0.7);\n}\n.ring-success-500\\/75{\n--tw-ring-color: color(from #44bc69 srgb r g b / 0.75);\n}\n.ring-success-500\\/80{\n--tw-ring-color: color(from #44bc69 srgb r g b / 0.8);\n}\n.ring-success-500\\/85{\n--tw-ring-color: color(from #44bc69 srgb r g b / 0.85);\n}\n.ring-success-500\\/90{\n--tw-ring-color: color(from #44bc69 srgb r g b / 0.9);\n}\n.ring-success-500\\/95{\n--tw-ring-color: color(from #44bc69 srgb r g b / 0.95);\n}\n.ring-success-600{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / var(--tw-ring-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-success-600\\/0{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.ring-success-600\\/10{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.ring-success-600\\/100{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.ring-success-600\\/15{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.ring-success-600\\/20{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.ring-success-600\\/25{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.ring-success-600\\/30{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.ring-success-600\\/35{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.ring-success-600\\/40{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.ring-success-600\\/45{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.ring-success-600\\/5{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.ring-success-600\\/50{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.ring-success-600\\/55{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.ring-success-600\\/60{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.ring-success-600\\/65{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.ring-success-600\\/70{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.ring-success-600\\/75{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.ring-success-600\\/80{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.ring-success-600\\/85{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.ring-success-600\\/90{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.ring-success-600\\/95{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.ring-success-700{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / var(--tw-ring-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-success-700\\/0{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.ring-success-700\\/10{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.ring-success-700\\/100{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.ring-success-700\\/15{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.ring-success-700\\/20{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.ring-success-700\\/25{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.ring-success-700\\/30{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.ring-success-700\\/35{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.ring-success-700\\/40{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.ring-success-700\\/45{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.ring-success-700\\/5{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.ring-success-700\\/50{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.ring-success-700\\/55{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.ring-success-700\\/60{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.ring-success-700\\/65{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.ring-success-700\\/70{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.ring-success-700\\/75{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.ring-success-700\\/80{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.ring-success-700\\/85{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.ring-success-700\\/90{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.ring-success-700\\/95{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.ring-success-800{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / var(--tw-ring-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-success-800\\/0{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.ring-success-800\\/10{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.ring-success-800\\/100{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.ring-success-800\\/15{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.ring-success-800\\/20{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.ring-success-800\\/25{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.ring-success-800\\/30{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.ring-success-800\\/35{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.ring-success-800\\/40{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.ring-success-800\\/45{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.ring-success-800\\/5{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.ring-success-800\\/50{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.ring-success-800\\/55{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.ring-success-800\\/60{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.ring-success-800\\/65{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.ring-success-800\\/70{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.ring-success-800\\/75{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.ring-success-800\\/80{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.ring-success-800\\/85{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.ring-success-800\\/90{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.ring-success-800\\/95{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.ring-success-900{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / var(--tw-ring-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-success-900\\/0{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.ring-success-900\\/10{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.ring-success-900\\/100{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.ring-success-900\\/15{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.ring-success-900\\/20{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.ring-success-900\\/25{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.ring-success-900\\/30{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.ring-success-900\\/35{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.ring-success-900\\/40{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.ring-success-900\\/45{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.ring-success-900\\/5{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.ring-success-900\\/50{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.ring-success-900\\/55{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.ring-success-900\\/60{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.ring-success-900\\/65{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.ring-success-900\\/70{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.ring-success-900\\/75{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.ring-success-900\\/80{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.ring-success-900\\/85{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.ring-success-900\\/90{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.ring-success-900\\/95{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.ring-success-950{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / var(--tw-ring-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-success-950\\/0{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.ring-success-950\\/10{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.ring-success-950\\/100{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.ring-success-950\\/15{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.ring-success-950\\/20{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.ring-success-950\\/25{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.ring-success-950\\/30{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.ring-success-950\\/35{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.ring-success-950\\/40{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.ring-success-950\\/45{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.ring-success-950\\/5{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.ring-success-950\\/50{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.ring-success-950\\/55{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.ring-success-950\\/60{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.ring-success-950\\/65{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.ring-success-950\\/70{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.ring-success-950\\/75{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.ring-success-950\\/80{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.ring-success-950\\/85{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.ring-success-950\\/90{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.ring-success-950\\/95{\n--tw-ring-color: color-mix(in lab, color(from #44bc69 srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.ring-success\\/0{\n--tw-ring-color: rgb(68 188 105 / 0);\n}\n.ring-success\\/10{\n--tw-ring-color: rgb(68 188 105 / 0.1);\n}\n.ring-success\\/100{\n--tw-ring-color: rgb(68 188 105 / 1);\n}\n.ring-success\\/15{\n--tw-ring-color: rgb(68 188 105 / 0.15);\n}\n.ring-success\\/20{\n--tw-ring-color: rgb(68 188 105 / 0.2);\n}\n.ring-success\\/25{\n--tw-ring-color: rgb(68 188 105 / 0.25);\n}\n.ring-success\\/30{\n--tw-ring-color: rgb(68 188 105 / 0.3);\n}\n.ring-success\\/35{\n--tw-ring-color: rgb(68 188 105 / 0.35);\n}\n.ring-success\\/40{\n--tw-ring-color: rgb(68 188 105 / 0.4);\n}\n.ring-success\\/45{\n--tw-ring-color: rgb(68 188 105 / 0.45);\n}\n.ring-success\\/5{\n--tw-ring-color: rgb(68 188 105 / 0.05);\n}\n.ring-success\\/50{\n--tw-ring-color: rgb(68 188 105 / 0.5);\n}\n.ring-success\\/55{\n--tw-ring-color: rgb(68 188 105 / 0.55);\n}\n.ring-success\\/60{\n--tw-ring-color: rgb(68 188 105 / 0.6);\n}\n.ring-success\\/65{\n--tw-ring-color: rgb(68 188 105 / 0.65);\n}\n.ring-success\\/70{\n--tw-ring-color: rgb(68 188 105 / 0.7);\n}\n.ring-success\\/75{\n--tw-ring-color: rgb(68 188 105 / 0.75);\n}\n.ring-success\\/80{\n--tw-ring-color: rgb(68 188 105 / 0.8);\n}\n.ring-success\\/85{\n--tw-ring-color: rgb(68 188 105 / 0.85);\n}\n.ring-success\\/90{\n--tw-ring-color: rgb(68 188 105 / 0.9);\n}\n.ring-success\\/95{\n--tw-ring-color: rgb(68 188 105 / 0.95);\n}\n.ring-tint{\n--tw-ring-color: var(--tint);\n}\n.ring-tint-100{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-ring-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-tint-100\\/0{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.ring-tint-100\\/10{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.ring-tint-100\\/100{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.ring-tint-100\\/15{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.ring-tint-100\\/20{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.ring-tint-100\\/25{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.ring-tint-100\\/30{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.ring-tint-100\\/35{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.ring-tint-100\\/40{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.ring-tint-100\\/45{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.ring-tint-100\\/5{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.ring-tint-100\\/50{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.ring-tint-100\\/55{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.ring-tint-100\\/60{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.ring-tint-100\\/65{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.ring-tint-100\\/70{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.ring-tint-100\\/75{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.ring-tint-100\\/80{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.ring-tint-100\\/85{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.ring-tint-100\\/90{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.ring-tint-100\\/95{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.ring-tint-200{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-ring-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-tint-200\\/0{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.ring-tint-200\\/10{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.ring-tint-200\\/100{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.ring-tint-200\\/15{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.ring-tint-200\\/20{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.ring-tint-200\\/25{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.ring-tint-200\\/30{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.ring-tint-200\\/35{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.ring-tint-200\\/40{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.ring-tint-200\\/45{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.ring-tint-200\\/5{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.ring-tint-200\\/50{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.ring-tint-200\\/55{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.ring-tint-200\\/60{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.ring-tint-200\\/65{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.ring-tint-200\\/70{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.ring-tint-200\\/75{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.ring-tint-200\\/80{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.ring-tint-200\\/85{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.ring-tint-200\\/90{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.ring-tint-200\\/95{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.ring-tint-300{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-ring-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-tint-300\\/0{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.ring-tint-300\\/10{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.ring-tint-300\\/100{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.ring-tint-300\\/15{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.ring-tint-300\\/20{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.ring-tint-300\\/25{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.ring-tint-300\\/30{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.ring-tint-300\\/35{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.ring-tint-300\\/40{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.ring-tint-300\\/45{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.ring-tint-300\\/5{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.ring-tint-300\\/50{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.ring-tint-300\\/55{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.ring-tint-300\\/60{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.ring-tint-300\\/65{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.ring-tint-300\\/70{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.ring-tint-300\\/75{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.ring-tint-300\\/80{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.ring-tint-300\\/85{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.ring-tint-300\\/90{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.ring-tint-300\\/95{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.ring-tint-400{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-ring-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-tint-400\\/0{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.ring-tint-400\\/10{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.ring-tint-400\\/100{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.ring-tint-400\\/15{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.ring-tint-400\\/20{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.ring-tint-400\\/25{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.ring-tint-400\\/30{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.ring-tint-400\\/35{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.ring-tint-400\\/40{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.ring-tint-400\\/45{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.ring-tint-400\\/5{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.ring-tint-400\\/50{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.ring-tint-400\\/55{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.ring-tint-400\\/60{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.ring-tint-400\\/65{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.ring-tint-400\\/70{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.ring-tint-400\\/75{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.ring-tint-400\\/80{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.ring-tint-400\\/85{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.ring-tint-400\\/90{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.ring-tint-400\\/95{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.ring-tint-50{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-ring-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-tint-50\\/0{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.ring-tint-50\\/10{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.ring-tint-50\\/100{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.ring-tint-50\\/15{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.ring-tint-50\\/20{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.ring-tint-50\\/25{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.ring-tint-50\\/30{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.ring-tint-50\\/35{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.ring-tint-50\\/40{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.ring-tint-50\\/45{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.ring-tint-50\\/5{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.ring-tint-50\\/50{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.ring-tint-50\\/55{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.ring-tint-50\\/60{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.ring-tint-50\\/65{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.ring-tint-50\\/70{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.ring-tint-50\\/75{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.ring-tint-50\\/80{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.ring-tint-50\\/85{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.ring-tint-50\\/90{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.ring-tint-50\\/95{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.ring-tint-500{\n--tw-ring-opacity: 1;\n--tw-ring-color: color(from var(--tint) srgb r g b / var(--tw-ring-opacity));\n}\n.ring-tint-500\\/0{\n--tw-ring-color: color(from var(--tint) srgb r g b / 0);\n}\n.ring-tint-500\\/10{\n--tw-ring-color: color(from var(--tint) srgb r g b / 0.1);\n}\n.ring-tint-500\\/100{\n--tw-ring-color: color(from var(--tint) srgb r g b / 1);\n}\n.ring-tint-500\\/15{\n--tw-ring-color: color(from var(--tint) srgb r g b / 0.15);\n}\n.ring-tint-500\\/20{\n--tw-ring-color: color(from var(--tint) srgb r g b / 0.2);\n}\n.ring-tint-500\\/25{\n--tw-ring-color: color(from var(--tint) srgb r g b / 0.25);\n}\n.ring-tint-500\\/30{\n--tw-ring-color: color(from var(--tint) srgb r g b / 0.3);\n}\n.ring-tint-500\\/35{\n--tw-ring-color: color(from var(--tint) srgb r g b / 0.35);\n}\n.ring-tint-500\\/40{\n--tw-ring-color: color(from var(--tint) srgb r g b / 0.4);\n}\n.ring-tint-500\\/45{\n--tw-ring-color: color(from var(--tint) srgb r g b / 0.45);\n}\n.ring-tint-500\\/5{\n--tw-ring-color: color(from var(--tint) srgb r g b / 0.05);\n}\n.ring-tint-500\\/50{\n--tw-ring-color: color(from var(--tint) srgb r g b / 0.5);\n}\n.ring-tint-500\\/55{\n--tw-ring-color: color(from var(--tint) srgb r g b / 0.55);\n}\n.ring-tint-500\\/60{\n--tw-ring-color: color(from var(--tint) srgb r g b / 0.6);\n}\n.ring-tint-500\\/65{\n--tw-ring-color: color(from var(--tint) srgb r g b / 0.65);\n}\n.ring-tint-500\\/70{\n--tw-ring-color: color(from var(--tint) srgb r g b / 0.7);\n}\n.ring-tint-500\\/75{\n--tw-ring-color: color(from var(--tint) srgb r g b / 0.75);\n}\n.ring-tint-500\\/80{\n--tw-ring-color: color(from var(--tint) srgb r g b / 0.8);\n}\n.ring-tint-500\\/85{\n--tw-ring-color: color(from var(--tint) srgb r g b / 0.85);\n}\n.ring-tint-500\\/90{\n--tw-ring-color: color(from var(--tint) srgb r g b / 0.9);\n}\n.ring-tint-500\\/95{\n--tw-ring-color: color(from var(--tint) srgb r g b / 0.95);\n}\n.ring-tint-600{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-ring-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-tint-600\\/0{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.ring-tint-600\\/10{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.ring-tint-600\\/100{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.ring-tint-600\\/15{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.ring-tint-600\\/20{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.ring-tint-600\\/25{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.ring-tint-600\\/30{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.ring-tint-600\\/35{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.ring-tint-600\\/40{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.ring-tint-600\\/45{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.ring-tint-600\\/5{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.ring-tint-600\\/50{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.ring-tint-600\\/55{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.ring-tint-600\\/60{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.ring-tint-600\\/65{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.ring-tint-600\\/70{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.ring-tint-600\\/75{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.ring-tint-600\\/80{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.ring-tint-600\\/85{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.ring-tint-600\\/90{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.ring-tint-600\\/95{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.ring-tint-700{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-ring-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-tint-700\\/0{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.ring-tint-700\\/10{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.ring-tint-700\\/100{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.ring-tint-700\\/15{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.ring-tint-700\\/20{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.ring-tint-700\\/25{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.ring-tint-700\\/30{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.ring-tint-700\\/35{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.ring-tint-700\\/40{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.ring-tint-700\\/45{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.ring-tint-700\\/5{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.ring-tint-700\\/50{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.ring-tint-700\\/55{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.ring-tint-700\\/60{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.ring-tint-700\\/65{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.ring-tint-700\\/70{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.ring-tint-700\\/75{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.ring-tint-700\\/80{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.ring-tint-700\\/85{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.ring-tint-700\\/90{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.ring-tint-700\\/95{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.ring-tint-800{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-ring-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-tint-800\\/0{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.ring-tint-800\\/10{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.ring-tint-800\\/100{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.ring-tint-800\\/15{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.ring-tint-800\\/20{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.ring-tint-800\\/25{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.ring-tint-800\\/30{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.ring-tint-800\\/35{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.ring-tint-800\\/40{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.ring-tint-800\\/45{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.ring-tint-800\\/5{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.ring-tint-800\\/50{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.ring-tint-800\\/55{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.ring-tint-800\\/60{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.ring-tint-800\\/65{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.ring-tint-800\\/70{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.ring-tint-800\\/75{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.ring-tint-800\\/80{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.ring-tint-800\\/85{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.ring-tint-800\\/90{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.ring-tint-800\\/95{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.ring-tint-900{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-ring-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-tint-900\\/0{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.ring-tint-900\\/10{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.ring-tint-900\\/100{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.ring-tint-900\\/15{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.ring-tint-900\\/20{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.ring-tint-900\\/25{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.ring-tint-900\\/30{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.ring-tint-900\\/35{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.ring-tint-900\\/40{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.ring-tint-900\\/45{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.ring-tint-900\\/5{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.ring-tint-900\\/50{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.ring-tint-900\\/55{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.ring-tint-900\\/60{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.ring-tint-900\\/65{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.ring-tint-900\\/70{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.ring-tint-900\\/75{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.ring-tint-900\\/80{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.ring-tint-900\\/85{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.ring-tint-900\\/90{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.ring-tint-900\\/95{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.ring-tint-950{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-ring-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-tint-950\\/0{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.ring-tint-950\\/10{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.ring-tint-950\\/100{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.ring-tint-950\\/15{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.ring-tint-950\\/20{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.ring-tint-950\\/25{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.ring-tint-950\\/30{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.ring-tint-950\\/35{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.ring-tint-950\\/40{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.ring-tint-950\\/45{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.ring-tint-950\\/5{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.ring-tint-950\\/50{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.ring-tint-950\\/55{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.ring-tint-950\\/60{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.ring-tint-950\\/65{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.ring-tint-950\\/70{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.ring-tint-950\\/75{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.ring-tint-950\\/80{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.ring-tint-950\\/85{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.ring-tint-950\\/90{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.ring-tint-950\\/95{\n--tw-ring-color: color-mix(in lab, color(from var(--tint) srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.ring-warning{\n--tw-ring-opacity: 1;\n--tw-ring-color: rgb(237 170 0 / var(--tw-ring-opacity));\n}\n.ring-warning-100{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / var(--tw-ring-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-warning-100\\/0{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0) 27%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.ring-warning-100\\/10{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.1) 27%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.ring-warning-100\\/100{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.ring-warning-100\\/15{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.15) 27%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.ring-warning-100\\/20{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.2) 27%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.ring-warning-100\\/25{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.25) 27%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.ring-warning-100\\/30{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.3) 27%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.ring-warning-100\\/35{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.35) 27%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.ring-warning-100\\/40{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.4) 27%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.ring-warning-100\\/45{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.45) 27%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.ring-warning-100\\/5{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.05) 27%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.ring-warning-100\\/50{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.ring-warning-100\\/55{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.55) 27%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.ring-warning-100\\/60{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.6) 27%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.ring-warning-100\\/65{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.65) 27%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.ring-warning-100\\/70{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.7) 27%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.ring-warning-100\\/75{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.75) 27%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.ring-warning-100\\/80{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.8) 27%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.ring-warning-100\\/85{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.85) 27%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.ring-warning-100\\/90{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.9) 27%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.ring-warning-100\\/95{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.95) 27%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.ring-warning-200{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / var(--tw-ring-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-warning-200\\/0{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0) 45%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.ring-warning-200\\/10{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.1) 45%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.ring-warning-200\\/100{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.ring-warning-200\\/15{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.15) 45%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.ring-warning-200\\/20{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.2) 45%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.ring-warning-200\\/25{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.25) 45%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.ring-warning-200\\/30{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.3) 45%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.ring-warning-200\\/35{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.35) 45%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.ring-warning-200\\/40{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.4) 45%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.ring-warning-200\\/45{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.45) 45%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.ring-warning-200\\/5{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.05) 45%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.ring-warning-200\\/50{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.5) 45%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.ring-warning-200\\/55{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.55) 45%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.ring-warning-200\\/60{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.6) 45%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.ring-warning-200\\/65{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.65) 45%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.ring-warning-200\\/70{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.7) 45%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.ring-warning-200\\/75{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.75) 45%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.ring-warning-200\\/80{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.8) 45%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.ring-warning-200\\/85{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.85) 45%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.ring-warning-200\\/90{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.9) 45%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.ring-warning-200\\/95{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.95) 45%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.ring-warning-300{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / var(--tw-ring-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-warning-300\\/0{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0) 62%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.ring-warning-300\\/10{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.1) 62%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.ring-warning-300\\/100{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.ring-warning-300\\/15{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.15) 62%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.ring-warning-300\\/20{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.2) 62%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.ring-warning-300\\/25{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.25) 62%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.ring-warning-300\\/30{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.3) 62%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.ring-warning-300\\/35{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.35) 62%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.ring-warning-300\\/40{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.4) 62%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.ring-warning-300\\/45{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.45) 62%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.ring-warning-300\\/5{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.05) 62%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.ring-warning-300\\/50{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.5) 62%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.ring-warning-300\\/55{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.55) 62%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.ring-warning-300\\/60{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.6) 62%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.ring-warning-300\\/65{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.65) 62%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.ring-warning-300\\/70{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.7) 62%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.ring-warning-300\\/75{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.75) 62%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.ring-warning-300\\/80{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.8) 62%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.ring-warning-300\\/85{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.85) 62%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.ring-warning-300\\/90{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.9) 62%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.ring-warning-300\\/95{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.95) 62%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.ring-warning-400{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / var(--tw-ring-opacity)) 80%, color(from var(--fabric-bg) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-warning-400\\/0{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0) 80%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.ring-warning-400\\/10{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.1) 80%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.ring-warning-400\\/100{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.ring-warning-400\\/15{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.15) 80%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.ring-warning-400\\/20{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.2) 80%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.ring-warning-400\\/25{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.25) 80%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.ring-warning-400\\/30{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.3) 80%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.ring-warning-400\\/35{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.35) 80%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.ring-warning-400\\/40{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.4) 80%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.ring-warning-400\\/45{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.45) 80%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.ring-warning-400\\/5{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.05) 80%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.ring-warning-400\\/50{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.5) 80%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.ring-warning-400\\/55{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.55) 80%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.ring-warning-400\\/60{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.6) 80%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.ring-warning-400\\/65{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.65) 80%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.ring-warning-400\\/70{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.7) 80%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.ring-warning-400\\/75{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.75) 80%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.ring-warning-400\\/80{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.8) 80%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.ring-warning-400\\/85{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.85) 80%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.ring-warning-400\\/90{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.9) 80%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.ring-warning-400\\/95{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.95) 80%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.ring-warning-50{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / var(--tw-ring-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-warning-50\\/0{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0) 10%, color(from var(--fabric-bg) srgb r g b / 0));\n}\n.ring-warning-50\\/10{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.1) 10%, color(from var(--fabric-bg) srgb r g b / 0.1));\n}\n.ring-warning-50\\/100{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));\n}\n.ring-warning-50\\/15{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.15) 10%, color(from var(--fabric-bg) srgb r g b / 0.15));\n}\n.ring-warning-50\\/20{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.2) 10%, color(from var(--fabric-bg) srgb r g b / 0.2));\n}\n.ring-warning-50\\/25{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.25) 10%, color(from var(--fabric-bg) srgb r g b / 0.25));\n}\n.ring-warning-50\\/30{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.3) 10%, color(from var(--fabric-bg) srgb r g b / 0.3));\n}\n.ring-warning-50\\/35{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.35) 10%, color(from var(--fabric-bg) srgb r g b / 0.35));\n}\n.ring-warning-50\\/40{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.4) 10%, color(from var(--fabric-bg) srgb r g b / 0.4));\n}\n.ring-warning-50\\/45{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.45) 10%, color(from var(--fabric-bg) srgb r g b / 0.45));\n}\n.ring-warning-50\\/5{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.05) 10%, color(from var(--fabric-bg) srgb r g b / 0.05));\n}\n.ring-warning-50\\/50{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.5) 10%, color(from var(--fabric-bg) srgb r g b / 0.5));\n}\n.ring-warning-50\\/55{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.55) 10%, color(from var(--fabric-bg) srgb r g b / 0.55));\n}\n.ring-warning-50\\/60{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.6) 10%, color(from var(--fabric-bg) srgb r g b / 0.6));\n}\n.ring-warning-50\\/65{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.65) 10%, color(from var(--fabric-bg) srgb r g b / 0.65));\n}\n.ring-warning-50\\/70{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.7) 10%, color(from var(--fabric-bg) srgb r g b / 0.7));\n}\n.ring-warning-50\\/75{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.75) 10%, color(from var(--fabric-bg) srgb r g b / 0.75));\n}\n.ring-warning-50\\/80{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.8) 10%, color(from var(--fabric-bg) srgb r g b / 0.8));\n}\n.ring-warning-50\\/85{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.85) 10%, color(from var(--fabric-bg) srgb r g b / 0.85));\n}\n.ring-warning-50\\/90{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.9) 10%, color(from var(--fabric-bg) srgb r g b / 0.9));\n}\n.ring-warning-50\\/95{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.95) 10%, color(from var(--fabric-bg) srgb r g b / 0.95));\n}\n.ring-warning-500{\n--tw-ring-opacity: 1;\n--tw-ring-color: color(from #edaa00 srgb r g b / var(--tw-ring-opacity));\n}\n.ring-warning-500\\/0{\n--tw-ring-color: color(from #edaa00 srgb r g b / 0);\n}\n.ring-warning-500\\/10{\n--tw-ring-color: color(from #edaa00 srgb r g b / 0.1);\n}\n.ring-warning-500\\/100{\n--tw-ring-color: color(from #edaa00 srgb r g b / 1);\n}\n.ring-warning-500\\/15{\n--tw-ring-color: color(from #edaa00 srgb r g b / 0.15);\n}\n.ring-warning-500\\/20{\n--tw-ring-color: color(from #edaa00 srgb r g b / 0.2);\n}\n.ring-warning-500\\/25{\n--tw-ring-color: color(from #edaa00 srgb r g b / 0.25);\n}\n.ring-warning-500\\/30{\n--tw-ring-color: color(from #edaa00 srgb r g b / 0.3);\n}\n.ring-warning-500\\/35{\n--tw-ring-color: color(from #edaa00 srgb r g b / 0.35);\n}\n.ring-warning-500\\/40{\n--tw-ring-color: color(from #edaa00 srgb r g b / 0.4);\n}\n.ring-warning-500\\/45{\n--tw-ring-color: color(from #edaa00 srgb r g b / 0.45);\n}\n.ring-warning-500\\/5{\n--tw-ring-color: color(from #edaa00 srgb r g b / 0.05);\n}\n.ring-warning-500\\/50{\n--tw-ring-color: color(from #edaa00 srgb r g b / 0.5);\n}\n.ring-warning-500\\/55{\n--tw-ring-color: color(from #edaa00 srgb r g b / 0.55);\n}\n.ring-warning-500\\/60{\n--tw-ring-color: color(from #edaa00 srgb r g b / 0.6);\n}\n.ring-warning-500\\/65{\n--tw-ring-color: color(from #edaa00 srgb r g b / 0.65);\n}\n.ring-warning-500\\/70{\n--tw-ring-color: color(from #edaa00 srgb r g b / 0.7);\n}\n.ring-warning-500\\/75{\n--tw-ring-color: color(from #edaa00 srgb r g b / 0.75);\n}\n.ring-warning-500\\/80{\n--tw-ring-color: color(from #edaa00 srgb r g b / 0.8);\n}\n.ring-warning-500\\/85{\n--tw-ring-color: color(from #edaa00 srgb r g b / 0.85);\n}\n.ring-warning-500\\/90{\n--tw-ring-color: color(from #edaa00 srgb r g b / 0.9);\n}\n.ring-warning-500\\/95{\n--tw-ring-color: color(from #edaa00 srgb r g b / 0.95);\n}\n.ring-warning-600{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / var(--tw-ring-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-warning-600\\/0{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0) 80%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.ring-warning-600\\/10{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.1) 80%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.ring-warning-600\\/100{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.ring-warning-600\\/15{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.15) 80%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.ring-warning-600\\/20{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.2) 80%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.ring-warning-600\\/25{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.25) 80%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.ring-warning-600\\/30{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.3) 80%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.ring-warning-600\\/35{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.35) 80%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.ring-warning-600\\/40{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.4) 80%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.ring-warning-600\\/45{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.45) 80%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.ring-warning-600\\/5{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.05) 80%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.ring-warning-600\\/50{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.5) 80%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.ring-warning-600\\/55{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.55) 80%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.ring-warning-600\\/60{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.6) 80%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.ring-warning-600\\/65{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.65) 80%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.ring-warning-600\\/70{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.7) 80%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.ring-warning-600\\/75{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.75) 80%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.ring-warning-600\\/80{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.8) 80%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.ring-warning-600\\/85{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.85) 80%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.ring-warning-600\\/90{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.9) 80%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.ring-warning-600\\/95{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.95) 80%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.ring-warning-700{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / var(--tw-ring-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-warning-700\\/0{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0) 62%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.ring-warning-700\\/10{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.1) 62%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.ring-warning-700\\/100{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.ring-warning-700\\/15{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.15) 62%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.ring-warning-700\\/20{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.2) 62%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.ring-warning-700\\/25{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.25) 62%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.ring-warning-700\\/30{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.3) 62%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.ring-warning-700\\/35{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.35) 62%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.ring-warning-700\\/40{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.4) 62%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.ring-warning-700\\/45{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.45) 62%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.ring-warning-700\\/5{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.05) 62%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.ring-warning-700\\/50{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.5) 62%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.ring-warning-700\\/55{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.55) 62%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.ring-warning-700\\/60{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.6) 62%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.ring-warning-700\\/65{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.65) 62%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.ring-warning-700\\/70{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.7) 62%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.ring-warning-700\\/75{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.75) 62%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.ring-warning-700\\/80{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.8) 62%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.ring-warning-700\\/85{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.85) 62%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.ring-warning-700\\/90{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.9) 62%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.ring-warning-700\\/95{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.95) 62%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.ring-warning-800{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / var(--tw-ring-opacity)) 45%, color(from var(--fabric-text) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-warning-800\\/0{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0) 45%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.ring-warning-800\\/10{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.1) 45%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.ring-warning-800\\/100{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 1) 45%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.ring-warning-800\\/15{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.15) 45%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.ring-warning-800\\/20{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.2) 45%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.ring-warning-800\\/25{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.25) 45%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.ring-warning-800\\/30{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.3) 45%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.ring-warning-800\\/35{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.35) 45%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.ring-warning-800\\/40{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.4) 45%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.ring-warning-800\\/45{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.45) 45%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.ring-warning-800\\/5{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.05) 45%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.ring-warning-800\\/50{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.5) 45%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.ring-warning-800\\/55{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.55) 45%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.ring-warning-800\\/60{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.6) 45%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.ring-warning-800\\/65{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.65) 45%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.ring-warning-800\\/70{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.7) 45%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.ring-warning-800\\/75{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.75) 45%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.ring-warning-800\\/80{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.8) 45%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.ring-warning-800\\/85{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.85) 45%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.ring-warning-800\\/90{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.9) 45%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.ring-warning-800\\/95{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.95) 45%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.ring-warning-900{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / var(--tw-ring-opacity)) 27%, color(from var(--fabric-text) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-warning-900\\/0{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0) 27%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.ring-warning-900\\/10{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.1) 27%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.ring-warning-900\\/100{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 1) 27%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.ring-warning-900\\/15{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.15) 27%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.ring-warning-900\\/20{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.2) 27%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.ring-warning-900\\/25{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.25) 27%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.ring-warning-900\\/30{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.3) 27%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.ring-warning-900\\/35{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.35) 27%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.ring-warning-900\\/40{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.4) 27%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.ring-warning-900\\/45{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.45) 27%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.ring-warning-900\\/5{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.05) 27%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.ring-warning-900\\/50{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.5) 27%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.ring-warning-900\\/55{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.55) 27%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.ring-warning-900\\/60{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.6) 27%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.ring-warning-900\\/65{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.65) 27%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.ring-warning-900\\/70{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.7) 27%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.ring-warning-900\\/75{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.75) 27%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.ring-warning-900\\/80{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.8) 27%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.ring-warning-900\\/85{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.85) 27%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.ring-warning-900\\/90{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.9) 27%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.ring-warning-900\\/95{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.95) 27%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.ring-warning-950{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / var(--tw-ring-opacity)) 10%, color(from var(--fabric-text) srgb r g b / var(--tw-ring-opacity)));\n}\n.ring-warning-950\\/0{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0) 10%, color(from var(--fabric-text) srgb r g b / 0));\n}\n.ring-warning-950\\/10{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.1) 10%, color(from var(--fabric-text) srgb r g b / 0.1));\n}\n.ring-warning-950\\/100{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 1) 10%, color(from var(--fabric-text) srgb r g b / 1));\n}\n.ring-warning-950\\/15{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.15) 10%, color(from var(--fabric-text) srgb r g b / 0.15));\n}\n.ring-warning-950\\/20{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.2) 10%, color(from var(--fabric-text) srgb r g b / 0.2));\n}\n.ring-warning-950\\/25{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.25) 10%, color(from var(--fabric-text) srgb r g b / 0.25));\n}\n.ring-warning-950\\/30{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.3) 10%, color(from var(--fabric-text) srgb r g b / 0.3));\n}\n.ring-warning-950\\/35{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.35) 10%, color(from var(--fabric-text) srgb r g b / 0.35));\n}\n.ring-warning-950\\/40{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.4) 10%, color(from var(--fabric-text) srgb r g b / 0.4));\n}\n.ring-warning-950\\/45{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.45) 10%, color(from var(--fabric-text) srgb r g b / 0.45));\n}\n.ring-warning-950\\/5{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.05) 10%, color(from var(--fabric-text) srgb r g b / 0.05));\n}\n.ring-warning-950\\/50{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.5) 10%, color(from var(--fabric-text) srgb r g b / 0.5));\n}\n.ring-warning-950\\/55{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.55) 10%, color(from var(--fabric-text) srgb r g b / 0.55));\n}\n.ring-warning-950\\/60{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.6) 10%, color(from var(--fabric-text) srgb r g b / 0.6));\n}\n.ring-warning-950\\/65{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.65) 10%, color(from var(--fabric-text) srgb r g b / 0.65));\n}\n.ring-warning-950\\/70{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.7) 10%, color(from var(--fabric-text) srgb r g b / 0.7));\n}\n.ring-warning-950\\/75{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.75) 10%, color(from var(--fabric-text) srgb r g b / 0.75));\n}\n.ring-warning-950\\/80{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.8) 10%, color(from var(--fabric-text) srgb r g b / 0.8));\n}\n.ring-warning-950\\/85{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.85) 10%, color(from var(--fabric-text) srgb r g b / 0.85));\n}\n.ring-warning-950\\/90{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.9) 10%, color(from var(--fabric-text) srgb r g b / 0.9));\n}\n.ring-warning-950\\/95{\n--tw-ring-color: color-mix(in lab, color(from #edaa00 srgb r g b / 0.95) 10%, color(from var(--fabric-text) srgb r g b / 0.95));\n}\n.ring-warning\\/0{\n--tw-ring-color: rgb(237 170 0 / 0);\n}\n.ring-warning\\/10{\n--tw-ring-color: rgb(237 170 0 / 0.1);\n}\n.ring-warning\\/100{\n--tw-ring-color: rgb(237 170 0 / 1);\n}\n.ring-warning\\/15{\n--tw-ring-color: rgb(237 170 0 / 0.15);\n}\n.ring-warning\\/20{\n--tw-ring-color: rgb(237 170 0 / 0.2);\n}\n.ring-warning\\/25{\n--tw-ring-color: rgb(237 170 0 / 0.25);\n}\n.ring-warning\\/30{\n--tw-ring-color: rgb(237 170 0 / 0.3);\n}\n.ring-warning\\/35{\n--tw-ring-color: rgb(237 170 0 / 0.35);\n}\n.ring-warning\\/40{\n--tw-ring-color: rgb(237 170 0 / 0.4);\n}\n.ring-warning\\/45{\n--tw-ring-color: rgb(237 170 0 / 0.45);\n}\n.ring-warning\\/5{\n--tw-ring-color: rgb(237 170 0 / 0.05);\n}\n.ring-warning\\/50{\n--tw-ring-color: rgb(237 170 0 / 0.5);\n}\n.ring-warning\\/55{\n--tw-ring-color: rgb(237 170 0 / 0.55);\n}\n.ring-warning\\/60{\n--tw-ring-color: rgb(237 170 0 / 0.6);\n}\n.ring-warning\\/65{\n--tw-ring-color: rgb(237 170 0 / 0.65);\n}\n.ring-warning\\/70{\n--tw-ring-color: rgb(237 170 0 / 0.7);\n}\n.ring-warning\\/75{\n--tw-ring-color: rgb(237 170 0 / 0.75);\n}\n.ring-warning\\/80{\n--tw-ring-color: rgb(237 170 0 / 0.8);\n}\n.ring-warning\\/85{\n--tw-ring-color: rgb(237 170 0 / 0.85);\n}\n.ring-warning\\/90{\n--tw-ring-color: rgb(237 170 0 / 0.9);\n}\n.ring-warning\\/95{\n--tw-ring-color: rgb(237 170 0 / 0.95);\n}\n.ring-white{\n--tw-ring-opacity: 1;\n--tw-ring-color: rgb(254 253 252 / var(--tw-ring-opacity));\n}\n.ring-offset-1{\n--tw-ring-offset-width: 1px;\n}\n.ring-offset-2{\n--tw-ring-offset-width: 2px;\n}\n.blur{\n--tw-blur: blur(8px);\nfilter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);\n}\n.invert{\n--tw-invert: invert(100%);\nfilter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);\n}\n.\\!filter{\nfilter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow) !important;\n}\n.filter{\nfilter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);\n}\n.backdrop-blur{\n--tw-backdrop-blur: blur(8px);\n-webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);\n backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);\n}\n.backdrop-blur-md{\n--tw-backdrop-blur: blur(12px);\n-webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);\n backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);\n}\n.backdrop-blur-sm{\n--tw-backdrop-blur: blur(4px);\n-webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);\n backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);\n}\n.backdrop-blur-xl{\n--tw-backdrop-blur: blur(24px);\n-webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);\n backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);\n}\n.transition{\ntransition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;\ntransition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;\ntransition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;\ntransition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);\ntransition-duration: 150ms;\n}\n.transition-all{\ntransition-property: all;\ntransition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);\ntransition-duration: 150ms;\n}\n.transition-colors{\ntransition-property: color, background-color, border-color, text-decoration-color, fill, stroke;\ntransition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);\ntransition-duration: 150ms;\n}\n.duration-200{\ntransition-duration: 200ms;\n}\n.ease-in-out{\ntransition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);\n}\n.will-change-transform{\nwill-change: transform;\n}\n.contain-strict{\ncontain: strict;\n}\n.area-\\[actions\\]{\ngrid-area: actions;\n}\n.area-\\[icon\\]{\ngrid-area: icon;\n}\n.area-\\[loader\\]{\ngrid-area: loader;\n}\n.area-\\[message\\]{\ngrid-area: message;\n}\n.area-\\[time\\]{\ngrid-area: time;\n}\n.area-\\[title\\]{\ngrid-area: title;\n}\n.z-1{\nz-index: 1;\n}\n.z-2{\nz-index: 2;\n}\n.z-3{\nz-index: 3;\n}\n.z-4{\nz-index: 4;\n}\n.z-5{\nz-index: 5;\n}\n.area-content{\ngrid-area: content;\n}\n.area-head{\ngrid-area: head;\n}\n.area-foot{\ngrid-area: foot;\n}\n.area-side-s{\ngrid-area: side-s;\n}\n.area-side-e{\ngrid-area: side-e;\n}\n.area-body{\ngrid-area: body;\n}\n.overflow-wrap{\noverflow-wrap: anywhere;\nword-break: normal;\ntext-wrap: wrap;\n}\n.fixed-numbers{\nfont-variant-numeric: tabular-nums;\n}\n.mixed-lang{}\n.bg-alternate{}\n.scroll-thin{}\n.scroll-hide{}\n.gap-0{\ngap: 0px;\n--gutter: 0px;\n}\n.gap-1{\ngap: 0.25rem;\n--gutter: 0.25rem;\n}\n.gap-2{\ngap: 0.5rem;\n--gutter: 0.5rem;\n}\n.gap-4{\ngap: 1rem;\n--gutter: 1rem;\n}\n.gap-px{\ngap: 1px;\n--gutter: 1px;\n}\n.span-1{\nflex: 0 1 calc((1 / 12) * 100% - var(--gutter, 0px));\n}\n.span-2{\nflex: 0 1 calc((2 / 12) * 100% - var(--gutter, 0px));\n}\n.span-3{\nflex: 0 1 calc((3 / 12) * 100% - var(--gutter, 0px));\n}\n.span-4{\nflex: 0 1 calc((4 / 12) * 100% - var(--gutter, 0px));\n}\n.span-5{\nflex: 0 1 calc((5 / 12) * 100% - var(--gutter, 0px));\n}\n.span-6{\nflex: 0 1 calc((6 / 12) * 100% - var(--gutter, 0px));\n}\n.span-7{\nflex: 0 1 calc((7 / 12) * 100% - var(--gutter, 0px));\n}\n.span-8{\nflex: 0 1 calc((8 / 12) * 100% - var(--gutter, 0px));\n}\n.span-9{\nflex: 0 1 calc((9 / 12) * 100% - var(--gutter, 0px));\n}\n.span-10{\nflex: 0 1 calc((10 / 12) * 100% - var(--gutter, 0px));\n}\n.span-11{\nflex: 0 1 calc((11 / 12) * 100% - var(--gutter, 0px));\n}\n.span-12{\nflex: 0 1 calc((12 / 12) * 100% - var(--gutter, 0px));\n}\n}\n\n@layer var{\n.before\\:absolute::before{\ncontent: var(--tw-content);\nposition: absolute;\n}\n.before\\:inset-0::before{\ncontent: var(--tw-content);\ninset: 0px;\n}\n.before\\:-bottom-4::before{\ncontent: var(--tw-content);\nbottom: -1rem;\n}\n.before\\:end-0::before{\ncontent: var(--tw-content);\ninset-inline-end: 0px;\n}\n.before\\:left-1\\/2::before{\ncontent: var(--tw-content);\nleft: 50%;\n}\n.before\\:start-0::before{\ncontent: var(--tw-content);\ninset-inline-start: 0px;\n}\n.before\\:start-\\[7px\\]::before{\ncontent: var(--tw-content);\ninset-inline-start: 7px;\n}\n.before\\:top-0::before{\ncontent: var(--tw-content);\ntop: 0px;\n}\n.before\\:top-1\\/2::before{\ncontent: var(--tw-content);\ntop: 50%;\n}\n.before\\:top-4::before{\ncontent: var(--tw-content);\ntop: 1rem;\n}\n.before\\:z-\\[-1\\]::before{\ncontent: var(--tw-content);\nz-index: -1;\n}\n.before\\:h-1::before{\ncontent: var(--tw-content);\nheight: 0.25rem;\n}\n.before\\:h-1\\.5::before{\ncontent: var(--tw-content);\nheight: 0.375rem;\n}\n.before\\:h-full::before{\ncontent: var(--tw-content);\nheight: 100%;\n}\n.before\\:min-h-\\[50\\%\\]::before{\ncontent: var(--tw-content);\nmin-height: 50%;\n}\n.before\\:w-1::before{\ncontent: var(--tw-content);\nwidth: 0.25rem;\n}\n.before\\:w-1\\.5::before{\ncontent: var(--tw-content);\nwidth: 0.375rem;\n}\n.before\\:w-\\[2px\\]::before{\ncontent: var(--tw-content);\nwidth: 2px;\n}\n.before\\:w-px::before{\ncontent: var(--tw-content);\nwidth: 1px;\n}\n.before\\:-translate-y-1\\/2::before{\ncontent: var(--tw-content);\n--tw-translate-y: -50%;\ntransform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));\n}\n.before\\:rotate-45::before{\ncontent: var(--tw-content);\n--tw-rotate: 45deg;\ntransform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));\n}\n.before\\:scale-x-\\[\\.625\\]::before{\ncontent: var(--tw-content);\n--tw-scale-x: .625;\ntransform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));\n}\n.before\\:bg-invert::before{\ncontent: var(--tw-content);\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)) 5%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.before\\:bg-tint-100::before{\ncontent: var(--tw-content);\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.before\\:bg-tint-200::before{\ncontent: var(--tw-content);\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.before\\:bg-warning-500::before{\ncontent: var(--tw-content);\n--tw-bg-opacity: 1;\nbackground-color: color(from #edaa00 srgb r g b / var(--tw-bg-opacity));\n}\n.before\\:transition-all::before{\ncontent: var(--tw-content);\ntransition-property: all;\ntransition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);\ntransition-duration: 150ms;\n}\n.after\\:absolute::after{\ncontent: var(--tw-content);\nposition: absolute;\n}\n.after\\:inset-0::after{\ncontent: var(--tw-content);\ninset: 0px;\n}\n.after\\:bottom-0::after{\ncontent: var(--tw-content);\nbottom: 0px;\n}\n.after\\:mx-auto::after{\ncontent: var(--tw-content);\nmargin-left: auto;\nmargin-right: auto;\n}\n.after\\:block::after{\ncontent: var(--tw-content);\ndisplay: block;\n}\n.after\\:h-0::after{\ncontent: var(--tw-content);\nheight: 0px;\n}\n.after\\:h-0\\.5::after{\ncontent: var(--tw-content);\nheight: 0.125rem;\n}\n.after\\:h-full::after{\ncontent: var(--tw-content);\nheight: 100%;\n}\n.after\\:h-px::after{\ncontent: var(--tw-content);\nheight: 1px;\n}\n.after\\:bg-dimmed::after{\ncontent: var(--tw-content);\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)) 90%, color(from var(--tint) srgb r g b / var(--tw-bg-opacity)));\n}\n.after\\:bg-primary-500::after{\ncontent: var(--tw-content);\n--tw-bg-opacity: 1;\nbackground-color: color(from var(--primary) srgb r g b / var(--tw-bg-opacity));\n}\n.first\\:ms-2:first-child{\nmargin-inline-start: 0.5rem;\n}\n.first\\:px-2:first-child{\npadding-left: 0.5rem;\npadding-right: 0.5rem;\n}\n.first-of-type\\:rounded-s:first-of-type{\nborder-start-start-radius: var(--rounding);\nborder-end-start-radius: var(--rounding);\n}\n.last-of-type\\:rounded-e:last-of-type{\nborder-start-end-radius: var(--rounding);\nborder-end-end-radius: var(--rounding);\n}\n.empty\\:mb-0:empty{\nmargin-bottom: 0px;\n}\n.focus-within\\:ring-primary-300:focus-within{\n--tw-ring-opacity: 1;\n--tw-ring-color: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-ring-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-ring-opacity)));\n}\n.focus-within\\:z-1:focus-within{\nz-index: 1;\n}\n.hover\\:bg-base:hover{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)) 99%, color(from var(--tint) srgb r g b / var(--tw-bg-opacity)));\n}\n.hover\\:bg-primary-100:hover{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.hover\\:bg-primary-200:hover{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.hover\\:bg-primary-50:hover{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-bg-opacity)) 10%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.hover\\:bg-tint-200:hover{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.hover\\:bg-opacity-50:hover{\n--tw-bg-opacity: 0.5;\n}\n.hover\\:text-primary:hover{\ncolor: var(--primary);\n}\n.hover\\:text-primary-600:hover{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-text-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.hover\\:text-primary-700:hover{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-text-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.hover\\:text-tint-700:hover{\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-text-opacity)) 62%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n.hover\\:opacity-100:hover{\nopacity: 1;\n}\n.hover\\:opacity-70:hover{\nopacity: 0.7;\n}\n.hover\\:opacity-80:hover{\nopacity: 0.8;\n}\n.hover\\:opacity-90:hover{\nopacity: 0.9;\n}\n.hover\\:outline:hover{\noutline-style: solid;\noutline-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 65%, color(from var(--tint) srgb r g b / 1));\n}\n.focus\\:border-primary-500:focus{\n--tw-border-opacity: 1;\nborder-color: color(from var(--primary) srgb r g b / var(--tw-border-opacity));\n}\n.focus\\:ring-2:focus{\n--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);\n--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);\nbox-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);\n}\n.focus\\:ring-offset-2:focus{\n--tw-ring-offset-width: 2px;\n}\n.focus-visible\\:ring-2:focus-visible{\n--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);\n--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);\nbox-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);\n}\n.focus-visible\\:ring-offset-2:focus-visible{\n--tw-ring-offset-width: 2px;\n}\n.active\\:cursor-grabbing:active{\ncursor: grabbing;\n}\n.active\\:bg-primary-100:active{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.active\\:opacity-60:active{\nopacity: 0.6;\n}\n.group:hover .group-hover\\:block{\ndisplay: block;\n}\n.group:hover .group-hover\\:inline-block{\ndisplay: inline-block;\n}\n.peer:checked ~ .peer-checked\\:inline-block{\ndisplay: inline-block;\n}\n.peer:checked ~ .peer-checked\\:hidden{\ndisplay: none;\n}\n.has-\\[\\:focus-visible\\]\\:ring-1:has(:focus-visible){\n--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);\n--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);\nbox-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);\n}\n.data-\\[dropdown-open\\]\\:inline-block[data-dropdown-open]{\ndisplay: inline-block;\n}\n.data-\\[active\\]\\:bg-primary-200[data-active]{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.data-\\[selected\\]\\:bg-primary-100[data-selected]{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n.data-\\[selected\\]\\:bg-primary-600[data-selected]{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\n}\n.data-\\[selected\\]\\:text-white[data-selected]{\n--tw-text-opacity: 1;\ncolor: rgb(254 253 252 / var(--tw-text-opacity));\n}\n.data-\\[active\\]\\:data-\\[selected\\]\\:underline[data-selected][data-active]{\ntext-decoration-line: underline;\n}\n.data-\\[hilight\\]\\:outline-1[data-hilight]{\noutline-width: 1px;\n}\n.group[data-List-display] .group-data-\\[List-display\\]\\:hidden{\ndisplay: none;\n}\n.group[data-select-display] .group-data-\\[select-display\\]\\:hidden{\ndisplay: none;\n}\n@media (min-width: 640px){\n\n.sm\\:span-6{\nflex: 0 1 calc((6 / 12) * 100% - var(--gutter, 0px));\n}\n}\n@media (min-width: 768px){\n\n.md\\:span-4{\nflex: 0 1 calc((4 / 12) * 100% - var(--gutter, 0px));\n}\n}\n@media (min-width: 1024px){\n\n.lg\\:span-3{\nflex: 0 1 calc((3 / 12) * 100% - var(--gutter, 0px));\n}\n\n.lg\\:span-6{\nflex: 0 1 calc((6 / 12) * 100% - var(--gutter, 0px));\n}\n}\n@media (min-width: 1280px){\n\n.xl\\:span-2{\nflex: 0 1 calc((2 / 12) * 100% - var(--gutter, 0px));\n}\n}\n@media (min-width: 1536px){\n\n.\\32xl\\:span-1{\nflex: 0 1 calc((1 / 12) * 100% - var(--gutter, 0px));\n}\n}\n.ltr\\:-translate-x-full:where([dir="ltr"], [dir="ltr"] *){\n--tw-translate-x: -100%;\ntransform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));\n}\n.ltr\\:translate-x-full:where([dir="ltr"], [dir="ltr"] *){\n--tw-translate-x: 100%;\ntransform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));\n}\n.ltr\\:bg-gradient-to-r:where([dir="ltr"], [dir="ltr"] *){\nbackground-image: linear-gradient(to right, var(--tw-gradient-stops));\n}\n.ltr\\:before\\:-translate-x-\\[0\\.125rem\\]:where([dir="ltr"], [dir="ltr"] *)::before{\ncontent: var(--tw-content);\n--tw-translate-x: -0.125rem;\ntransform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));\n}\n.ltr\\:before\\:translate-x-\\[0\\.125rem\\]:where([dir="ltr"], [dir="ltr"] *)::before{\ncontent: var(--tw-content);\n--tw-translate-x: 0.125rem;\ntransform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));\n}\n.rtl\\:origin-right:where([dir="rtl"], [dir="rtl"] *){\ntransform-origin: right;\n}\n.rtl\\:-translate-x-full:where([dir="rtl"], [dir="rtl"] *){\n--tw-translate-x: -100%;\ntransform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));\n}\n.rtl\\:translate-x-full:where([dir="rtl"], [dir="rtl"] *){\n--tw-translate-x: 100%;\ntransform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));\n}\n.rtl\\:bg-gradient-to-l:where([dir="rtl"], [dir="rtl"] *){\nbackground-image: linear-gradient(to left, var(--tw-gradient-stops));\n}\n.rtl\\:before\\:-translate-x-\\[0\\.125rem\\]:where([dir="rtl"], [dir="rtl"] *)::before{\ncontent: var(--tw-content);\n--tw-translate-x: -0.125rem;\ntransform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));\n}\n.rtl\\:before\\:translate-x-\\[0\\.125rem\\]:where([dir="rtl"], [dir="rtl"] *)::before{\ncontent: var(--tw-content);\n--tw-translate-x: 0.125rem;\ntransform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));\n}\n@media print{\n\n.print\\:shadow-none{\n--tw-shadow: 0 0 #0000;\n--tw-shadow-colored: 0 0 #0000;\nbox-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);\n}\n}\n}\n\n/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer colors {\n [data-color-scheme="light"] {\n --fabric-bg: #fefdfc;\n --fabric-text: #191a1b;\n --fabric-input: color-mix(in lab, var(--fabric-bg) 90%, #fff);\n --fabric-input-focus: #fff;\n --fabric-shadow: #8ba0b0;\n\n color-scheme: light;\n }\n\n [data-color-scheme="dark"] {\n --fabric-bg: #191a1b;\n --fabric-text: #fefdfc;\n --fabric-input: color-mix(in lab, var(--fabric-bg) 80%, #0a1218);\n --fabric-input-focus: color-mix(in lab, var(--fabric-bg) 60%, #0a1218);\n --fabric-shadow: #010101;\n\n color-scheme: dark;\n }\n}\n\n@layer reset {\n :root {\n --black: #191a1b;\n --white: #fefdfc;\n --scarlet: #e5484d;\n --pumpkin: #f76a15;\n --marigold: #ffc100;\n --avacado: #46a758;\n --jade: #29a383;\n --denim: #0190ff;\n --iris: #5b5bd6;\n --lilac: #8e4ec6;\n --coral: #e93d82;\n --wood: #ad7f58;\n --silver: #989da5;\n --steel: #7c99af;\n --olive: #769b8d;\n --sand: #9b9789;\n --info: #00bfff;\n --danger: #f24c3d;\n --success: #44bc69;\n --warning: #edaa00;\n\n /* app default primary */\n --primary: #0190ff;\n --accent: #29a383;\n --tint: #989da5;\n\n /* default rounding */\n --rounding: 0.25rem;\n --rounding-cap: 0.25rem;\n --gutter: 0.5rem;\n\n /* z levels */\n --z-overlay-mask: 25;\n --z-overlay: 30;\n --z-popover-mask: 45;\n --z-popover: 50;\n --z-tooltip: 60;\n --z-notifications: 60;\n }\n\n [data-color-scheme] {\n color: color-mix(in lab, var(--fabric-text) 95%, var(--tint));\n background-color: color-mix(in lab, var(--fabric-bg) 92%, var(--tint));\n }\n\n [data-rounding="sm"] {\n /* default rounding */\n --rounding: 2px;\n --rounding-cap: 2px;\n }\n\n [data-rounding="md"] {\n /* default rounding */\n --rounding: 0.5rem;\n --rounding-cap: 0.5rem;\n }\n\n [data-rounding="full"] {\n /* default rounding */\n --rounding: 9999px;\n --rounding-cap: 0.5rem;\n }\n}\n\n/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer reset {\n html,\n body {\n width: 100vw;\n height: 100vh;\n margin: 0;\n padding: 0;\n\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n vertical-align: baseline;\n }\n\n :root {\n font-family: Avenir Next, Avenir, Noto Sans, Roboto, Helvetica Neue, Segoe UI, Arial, sans-serif, BlinkMacSystemFont, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;\n font-size: 16px;\n line-height: 1.5;\n }\n\n p,\n div,\n h1,\n h2,\n h3,\n h4,\n h5,\n h6,\n input,\n textarea,\n fieldset,\n section,\n aside,\n header,\n footer,\n nav,\n menu,\n dialog {\n margin: 0;\n padding: 0;\n }\n\n fieldset {\n min-inline-size: unset;\n }\n body a,\n body label,\n body button {\n -webkit-user-select: none;\n -moz-user-select: none;\n user-select: none;\n }\n\n body ::-webkit-scrollbar {\n width: 6px;\n height: 6px;\n }\n\n body ::-webkit-scrollbar-track {\n background-color: color-mix(in lab, var(--fabric-bg) 72%, var(--tint));\n }\n\n body ::-webkit-scrollbar-thumb {\n background-color: color-mix(in lab, var(--fabric-bg) 35%, var(--tint));\n }\n\n body ::-webkit-scrollbar-thumb:hover {\n background-color: color-mix(\n in lab,\n var(--fabric-text) 50%,\n var(--tint)\n );\n }\n\n body ::-webkit-scrollbar-thumb:active {\n background-color: color-mix(\n in lab,\n var(--fabric-bg) 50%,\n var(--fabric-text)\n );\n }\n\n body ::-webkit-scrollbar-corner {\n background-color: var(--fabric-bg);\n }\n\n body input:not(:disabled)::-webkit-file-upload-button {\n cursor: pointer;\n }\n body .scroll-thin::-webkit-scrollbar,\n body .scroll-thin ::-webkit-scrollbar {\n width: 3px;\n height: 3px;\n }\n body .scroll-hide::-webkit-scrollbar,\n body .scroll-hide ::-webkit-scrollbar {\n width: 0;\n height: 0;\n }\n\n body :focus-visible {\n outline: 0;\n }\n\n body ::-moz-placeholder {\n color: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n }\n\n body ::placeholder {\n color: color-mix(in lab, color(from var(--tint) srgb r g b / 1) 80%, color(from var(--fabric-bg) srgb r g b / 1));\n }\n\n body ::-moz-selection {\n background-color: color-mix(in lab, var(--accent) 35%, var(--fabric-bg));\n }\n\n body ::selection {\n background-color: color-mix(in lab, var(--accent) 35%, var(--fabric-bg));\n }\n\n body *,\n body ::before,\n body ::after {\n --tw-ring-offset-color: var(--fabric-bg);\n --tw-ring-color: var(--primary);\n\n box-sizing: border-box;\n text-underline-offset: 0.25em;\n }\n\n body img,\n body svg {\n display: inline-block;\n fill: currentcolor;\n }\n\n body hr {\n transform: scaleY(0.5);\n\n height: auto;\n margin: 1rem 0;\n\n background: none;\n border: 0;\n border-top: 3px solid color-mix(in lab, var(--fabric-bg) 95%, var(--tint)) !important;\n border-bottom: 2px solid\n color-mix(in lab, var(--fabric-bg) 50%, var(--tint));\n }\n\n body hr.vertical {\n transform: scaleX(0.5);\n\n display: inline-block;\n\n margin: 0 0.25rem;\n\n border: 0;\n border-inline-start: 3px solid\n color-mix(in lab, var(--fabric-bg) 95%, var(--tint)) !important;\n border-inline-end: 2px solid\n color-mix(in lab, var(--fabric-bg) 50%, var(--tint));\n }\n\n body label {\n cursor: inherit;\n }\n\n body [data-clickable="true"] {\n cursor: pointer;\n }\n\n body .sectioned {\n display: grid;\n grid-template: "head head head" auto "side-s content side-e" 1fr "foot foot foot" auto / auto 1fr auto;\n }\n\n @media (min-width: 320px) {\n body .hide-xs{\ndisplay: none;\n}\n }\n\n @media (min-width: 320px) and (max-width: 640px) {\n body .hide-xs-only{\ndisplay: none;\n}\n\n body .show-sm-only,\n body .show-md-only,\n body .show-lg-only,\n body .show-xl-only,\n body .show-2xl-only{\ndisplay: none;\n}\n }\n\n @media (min-width: 640px) {\n body .hide-sm{\ndisplay: none;\n}\n }\n\n @media (min-width: 640px) and (max-width: 768px) {\n body .hide-sm-only{\ndisplay: none;\n}\n\n body .show-xs-only,\n body .show-md-only,\n body .show-lg-only,\n body .show-xl-only,\n body .show-2xl-only{\ndisplay: none;\n}\n }\n\n @media (min-width: 768px) {\n body .hide-md{\ndisplay: none;\n}\n }\n\n @media (min-width: 768px) and (max-width: 1024px) {\n body .hide-md-only{\ndisplay: none;\n}\n\n body .show-xs-only,\n body .show-sm-only,\n body .show-lg-only,\n body .show-xl-only,\n body .show-2xl-only{\ndisplay: none;\n}\n }\n\n @media (min-width: 1024px) {\n body .hide-lg{\ndisplay: none;\n}\n }\n\n @media (min-width: 1024px) and (max-width: 1280px) {\n body .hide-lg-only{\ndisplay: none;\n}\n\n body .show-xs-only,\n body .show-sm-only,\n body .show-md-only,\n body .show-xl-only,\n body .show-2xl-only{\ndisplay: none;\n}\n }\n\n @media (min-width: 1280px) {\n body .hide-xl{\ndisplay: none;\n}\n }\n\n @media (min-width: 1280px) and (max-width: 1536px) {\n body .hide-xl-only{\ndisplay: none;\n}\n\n body .show-xs-only,\n body .show-sm-only,\n body .show-md-only,\n body .show-lg-only,\n body .show-2xl-only{\ndisplay: none;\n}\n }\n\n @media (min-width: 1536px) {\n body .hide-2xl,\n body .hide-2xl-only{\ndisplay: none;\n}\n\n body .show-xs-only,\n body .show-sm-only,\n body .show-md-only,\n body .show-lg-only,\n body .show-xl-only{\ndisplay: none;\n}\n }\n\n @media (max-width: 320px) {\n body .show-xs,\n body .show-sm,\n body .show-md,\n body .show-lg,\n body .show-xl,\n body .show-2xl{\ndisplay: none;\n}\n }\n\n @media (max-width: 640px) {\n body .show-sm,\n body .show-md,\n body .show-lg,\n body .show-xl,\n body .show-2xl{\ndisplay: none;\n}\n }\n\n @media (max-width: 768px) {\n body .show-md,\n body .show-lg,\n body .show-xl,\n body .show-2xl{\ndisplay: none;\n}\n }\n\n @media (max-width: 1024px) {\n body .show-lg,\n body .show-xl,\n body .show-2xl{\ndisplay: none;\n}\n }\n\n @media (max-width: 1280px) {\n body .show-xl,\n body .show-2xl{\ndisplay: none;\n}\n }\n\n @media (max-width: 1536px) {\n body .show-2xl{\ndisplay: none;\n}\n }\n\n .scroll-snap-start {\n scroll-snap-type: both proximity;\n }\n\n .scroll-snap-start > * {\n scroll-snap-align: start;\n }\n\n .scroll-snap-center {\n scroll-snap-type: both proximity;\n }\n\n .scroll-snap-center > * {\n scroll-snap-align: center;\n }\n\n .break-words {\n word-break: break-word;\n }\n\n .outline-thin {\n outline-width: 0.5px;\n }\n\n .outline {\n outline-width: 1px;\n }\n\n .container {\n margin-inline: auto;\n }\n\n p,\n pre,\n h1,\n h2,\n h3,\n h4,\n h5,\n h6,\n .mixed-lang {\n unicode-bidi: plaintext;\n }\n}\n\n/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n h1 {\n font-size: 2.5rem;\n font-weight: 500;\n }\n\n h2 {\n font-size: 2rem;\n font-weight: 500;\n }\n\n h3 {\n font-size: 1.75rem;\n font-weight: 500;\n }\n\n h4 {\n font-size: 1.5rem;\n font-weight: 500;\n }\n\n h5 {\n font-size: 1.25rem;\n font-weight: 500;\n }\n\n h6 {\n font-size: 1rem;\n font-weight: 600;\n }\n\n p {\n line-height: 1.5;\n }\n\n p + p,\n p + article {\n margin-top: 1rem;\n }\n article + p,\n article + article {\n margin-top: 1rem;\n }\n\n ul,\n ol {\n margin: 0;\n padding-inline-start: 2em;\n list-style-position: outside;\n }\n\n ul > li, ol > li {\n padding: 0 2px;\n line-height: 2;\n }\n\n ul {\n list-style: disc;\n }\n\n ol {\n list-style: decimal;\n }\n\n dl {\n display: flex;\n flex-flow: row wrap;\n margin: 0 0 1rem;\n line-height: 1.5em;\n }\n\n dl dt {\n overflow: hidden;\n flex: 0 0 33.3%;\n\n min-width: 6em;\n max-width: 12em;\n padding-inline: 1em;\n\n font-size: 0.875em;\n color: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 1) 65%, color(from var(--tint) srgb r g b / 1));\n text-overflow: ellipsis;\n white-space: nowrap;\n }\n\n dl dd {\n flex: 1 1 66.6%;\n margin: 0;\n padding: 0;\n }\n\n dl.align-end > dt {\n text-align: end;\n }\n\n dl.align-end > dt::after {\n content: ": ";\n }\n dl.bg-alternate > dt:nth-of-type(odd),\n dl.bg-alternate > dd:nth-of-type(odd) {\n background-color: color-mix(in lab, var(--fabric-bg) 99%, var(--tint));\n }\n\n dl.bg-alternate > dt:nth-of-type(even),\n dl.bg-alternate > dd:nth-of-type(even) {\n background-color: color-mix(in lab, var(--fabric-bg) 92%, var(--tint));\n }\n\n abbr {\n cursor: help;\n\n display: inline-block;\n\n padding: 0 2px;\n\n color: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));\n -webkit-text-decoration: underline dashed 1px;\n text-decoration: underline dashed 1px;\n\n background-color: color-mix(in lab, currentcolor 10%, var(--fabric-bg));\n }\n\n mark {\n display: inline-block;\n color: var(--fabric-text);\n background-color: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));\n }\n\n .link {\n cursor: pointer;\n -webkit-user-select: none;\n -moz-user-select: none;\n user-select: none;\n\n font-weight: 500;\n color: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n -webkit-text-decoration: underline dotted;\n text-decoration: underline dotted;\n }\n\n .link:hover {\n -webkit-text-decoration: underline solid;\n text-decoration: underline solid;\n }\n\n .bg-odd,\n .bg-alternate > :nth-child(odd) {\n background-color: color-mix(in lab, var(--fabric-bg) 99%, var(--tint));\n }\n\n .bg-even,\n .bg-alternate > :nth-child(even) {\n background-color: color-mix(in lab, var(--fabric-bg) 92%, var(--tint));\n }\n}\n\n/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer reset {\n :root {\n --click-gradient: linear-gradient(\n var(--fabric-gradient-deg, 180deg),\n rgb(255 255 255 / 8%) 0%,\n transparent 25%,\n transparent 50%,\n rgb(0 0 0 / 8%) 100%\n );\n --active-gradient: linear-gradient(\n 0deg,\n rgb(255 255 255 / 5%) 0%,\n transparent 15%,\n transparent 85%,\n rgb(0 0 0 / 5%) 100%\n );\n --progress-gradient: linear-gradient(\n -45deg,\n color(from var(--white) srgb r g b / 10%) 25%,\n color(from var(--tint) srgb r g b / 10%) 25%,\n color(from var(--tint) srgb r g b / 10%) 50%,\n color(from var(--white) srgb r g b / 10%) 50%,\n color(from var(--white) srgb r g b / 10%) 75%,\n color(from var(--tint) srgb r g b / 10%) 75%,\n color(from var(--tint) srgb r g b / 10%)\n );\n }\n}\n\n/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n/* stylelint-disable selector-class-pattern */\n\n[data-color-scheme="light"] pre code.hljs {\n overflow-x: auto;\n display: block;\n padding: 1em;\n }\n\n[data-color-scheme="light"] code.hljs {\n padding: 3px 5px;\n }\n\n/*!\n Theme: GitHub\n Description: Light theme as seen on github.com\n Author: github.com\n Maintainer: @Hirse\n Updated: 2021-05-15\n\n Outdated base version: https://github.com/primer/github-syntax-light\n Current colors taken from GitHub's CSS\n*/\n\n[data-color-scheme="light"] .hljs-doctag,\n [data-color-scheme="light"] .hljs-keyword,\n [data-color-scheme="light"] .hljs-meta .hljs-keyword,\n [data-color-scheme="light"] .hljs-template-tag,\n [data-color-scheme="light"] .hljs-template-variable,\n [data-color-scheme="light"] .hljs-type,\n [data-color-scheme="light"] .hljs-variable.language_ {\n /* prettylights-syntax-keyword */\n color: #d73a49;\n }\n\n[data-color-scheme="light"] .hljs-title,\n [data-color-scheme="light"] .hljs-title.class_,\n [data-color-scheme="light"] .hljs-title.class_.inherited__,\n [data-color-scheme="light"] .hljs-title.function_ {\n /* prettylights-syntax-entity */\n color: #6f42c1;\n }\n\n[data-color-scheme="light"] .hljs-attr,\n [data-color-scheme="light"] .hljs-attribute,\n [data-color-scheme="light"] .hljs-literal,\n [data-color-scheme="light"] .hljs-meta,\n [data-color-scheme="light"] .hljs-number,\n [data-color-scheme="light"] .hljs-operator,\n [data-color-scheme="light"] .hljs-variable,\n [data-color-scheme="light"] .hljs-selector-attr,\n [data-color-scheme="light"] .hljs-selector-class,\n [data-color-scheme="light"] .hljs-selector-id {\n /* prettylights-syntax-constant */\n color: #005cc5;\n }\n\n[data-color-scheme="light"] .hljs-regexp,\n [data-color-scheme="light"] .hljs-string,\n [data-color-scheme="light"] .hljs-meta .hljs-string {\n /* prettylights-syntax-string */\n color: #032f62;\n }\n\n[data-color-scheme="light"] .hljs-built_in,\n [data-color-scheme="light"] .hljs-symbol {\n /* prettylights-syntax-variable */\n color: #e36209;\n }\n\n[data-color-scheme="light"] .hljs-comment,\n [data-color-scheme="light"] .hljs-code,\n [data-color-scheme="light"] .hljs-formula {\n /* prettylights-syntax-comment */\n color: #6a737d;\n }\n\n[data-color-scheme="light"] .hljs-name,\n [data-color-scheme="light"] .hljs-quote,\n [data-color-scheme="light"] .hljs-selector-tag,\n [data-color-scheme="light"] .hljs-selector-pseudo {\n /* prettylights-syntax-entity-tag */\n color: #22863a;\n }\n\n[data-color-scheme="light"] .hljs-subst {\n /* prettylights-syntax-storage-modifier-import */\n color: #24292e;\n }\n\n[data-color-scheme="light"] .hljs-section {\n font-weight: bold;\n\n /* prettylights-syntax-markup-heading */\n color: #005cc5;\n }\n\n[data-color-scheme="light"] .hljs-bullet {\n /* prettylights-syntax-markup-list */\n color: #735c0f;\n }\n\n[data-color-scheme="light"] .hljs-emphasis {\n font-style: italic;\n\n /* prettylights-syntax-markup-italic */\n color: #24292e;\n }\n\n[data-color-scheme="light"] .hljs-strong {\n font-weight: bold;\n\n /* prettylights-syntax-markup-bold */\n color: #24292e;\n }\n\n[data-color-scheme="light"] .hljs-addition {\n /* prettylights-syntax-markup-inserted */\n color: #22863a;\n background-color: #f0fff4;\n }\n\n[data-color-scheme="light"] .hljs-deletion {\n /* prettylights-syntax-markup-deleted */\n color: #b31d28;\n background-color: #ffeef0;\n }\n\n[data-color-scheme="light"] .hljs-char.escape_,\n [data-color-scheme="light"] .hljs-link,\n [data-color-scheme="light"] .hljs-params,\n [data-color-scheme="light"] .hljs-property,\n [data-color-scheme="light"] .hljs-punctuation,\n [data-color-scheme="light"] .hljs-tag {\n /* purposely ignored */\n }\n\n/* stylelint-disable selector-class-pattern */\n\n[data-color-scheme="dark"] pre code.hljs {\n overflow-x: auto;\n display: block;\n padding: 1em;\n }\n\n[data-color-scheme="dark"] code.hljs {\n padding: 3px 5px;\n }\n\n/*!\n Theme: GitHub Dark\n Description: Dark theme as seen on github.com\n Author: github.com\n Maintainer: @Hirse\n Updated: 2021-05-15\n\n Outdated base version: https://github.com/primer/github-syntax-dark\n Current colors taken from GitHub's CSS\n*/\n\n[data-color-scheme="dark"] .hljs-doctag,\n [data-color-scheme="dark"] .hljs-keyword,\n [data-color-scheme="dark"] .hljs-meta .hljs-keyword,\n [data-color-scheme="dark"] .hljs-template-tag,\n [data-color-scheme="dark"] .hljs-template-variable,\n [data-color-scheme="dark"] .hljs-type,\n [data-color-scheme="dark"] .hljs-variable.language_ {\n /* prettylights-syntax-keyword */\n color: #ff7b72;\n }\n\n[data-color-scheme="dark"] .hljs-title,\n [data-color-scheme="dark"] .hljs-title.class_,\n [data-color-scheme="dark"] .hljs-title.class_.inherited__,\n [data-color-scheme="dark"] .hljs-title.function_ {\n /* prettylights-syntax-entity */\n color: #d2a8ff;\n }\n\n[data-color-scheme="dark"] .hljs-attr,\n [data-color-scheme="dark"] .hljs-attribute,\n [data-color-scheme="dark"] .hljs-literal,\n [data-color-scheme="dark"] .hljs-meta,\n [data-color-scheme="dark"] .hljs-number,\n [data-color-scheme="dark"] .hljs-operator,\n [data-color-scheme="dark"] .hljs-variable,\n [data-color-scheme="dark"] .hljs-selector-attr,\n [data-color-scheme="dark"] .hljs-selector-class,\n [data-color-scheme="dark"] .hljs-selector-id {\n /* prettylights-syntax-constant */\n color: #79c0ff;\n }\n\n[data-color-scheme="dark"] .hljs-regexp,\n [data-color-scheme="dark"] .hljs-string,\n [data-color-scheme="dark"] .hljs-meta .hljs-string {\n /* prettylights-syntax-string */\n color: #a5d6ff;\n }\n\n[data-color-scheme="dark"] .hljs-built_in,\n [data-color-scheme="dark"] .hljs-symbol {\n /* prettylights-syntax-variable */\n color: #ffa657;\n }\n\n[data-color-scheme="dark"] .hljs-comment,\n [data-color-scheme="dark"] .hljs-code,\n [data-color-scheme="dark"] .hljs-formula {\n /* prettylights-syntax-comment */\n color: #8b949e;\n }\n\n[data-color-scheme="dark"] .hljs-name,\n [data-color-scheme="dark"] .hljs-quote,\n [data-color-scheme="dark"] .hljs-selector-tag,\n [data-color-scheme="dark"] .hljs-selector-pseudo {\n /* prettylights-syntax-entity-tag */\n color: #7ee787;\n }\n\n[data-color-scheme="dark"] .hljs-subst {\n /* prettylights-syntax-storage-modifier-import */\n color: #c9d1d9;\n }\n\n[data-color-scheme="dark"] .hljs-section {\n font-weight: bold;\n\n /* prettylights-syntax-markup-heading */\n color: #1f6feb;\n }\n\n[data-color-scheme="dark"] .hljs-bullet {\n /* prettylights-syntax-markup-list */\n color: #f2cc60;\n }\n\n[data-color-scheme="dark"] .hljs-emphasis {\n font-style: italic;\n\n /* prettylights-syntax-markup-italic */\n color: #c9d1d9;\n }\n\n[data-color-scheme="dark"] .hljs-strong {\n font-weight: bold;\n\n /* prettylights-syntax-markup-bold */\n color: #c9d1d9;\n }\n\n[data-color-scheme="dark"] .hljs-addition {\n /* prettylights-syntax-markup-inserted */\n color: #aff5b4;\n background-color: #033a16;\n }\n\n[data-color-scheme="dark"] .hljs-deletion {\n /* prettylights-syntax-markup-deleted */\n color: #ffdcd7;\n background-color: #67060c;\n }\n\n[data-color-scheme="dark"] .hljs-char.escape_,\n [data-color-scheme="dark"] .hljs-link,\n [data-color-scheme="dark"] .hljs-params,\n [data-color-scheme="dark"] .hljs-property,\n [data-color-scheme="dark"] .hljs-punctuation,\n [data-color-scheme="dark"] .hljs-tag {\n /* purposely ignored */\n }\n\n/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n.markdown-body.markdown-body {\n margin: 0;\n\n font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial,\n sans-serif, "Apple Color Emoji", "Segoe UI Emoji";\n font-size: 16px;\n line-height: 1.5;\n -webkit-text-size-adjust: 100%;\n -moz-text-size-adjust: 100%;\n text-size-adjust: 100%;\n word-wrap: break-word;\n }\n\n.markdown-body.markdown-body .octicon {\n display: inline-block;\n vertical-align: text-bottom;\n fill: currentcolor;\n }\n\n.markdown-body.markdown-body h1:hover .anchor .octicon-link::before,\n .markdown-body.markdown-body h2:hover .anchor .octicon-link::before,\n .markdown-body.markdown-body h3:hover .anchor .octicon-link::before,\n .markdown-body.markdown-body h4:hover .anchor .octicon-link::before,\n .markdown-body.markdown-body h5:hover .anchor .octicon-link::before,\n .markdown-body.markdown-body h6:hover .anchor .octicon-link::before {\n content: " ";\n\n display: inline-block;\n\n width: 16px;\n height: 16px;\n\n background-color: currentcolor;\n\n -webkit-mask-image: url(${___CSS_LOADER_URL_REPLACEMENT_4___});\n\n mask-image: url(${___CSS_LOADER_URL_REPLACEMENT_4___});\n }\n\n.markdown-body.markdown-body details,\n .markdown-body.markdown-body figcaption,\n .markdown-body.markdown-body figure {\n display: block;\n }\n\n.markdown-body.markdown-body summary {\n display: list-item;\n }\n\n.markdown-body.markdown-body [hidden] {\n display: none !important;\n }\n\n.markdown-body.markdown-body a {\n color: #0969da;\n text-decoration: none;\n background-color: transparent;\n }\n\n.markdown-body.markdown-body a:active,\n .markdown-body.markdown-body a:hover {\n outline-width: 0;\n }\n\n.markdown-body.markdown-body abbr[title] {\n -webkit-text-decoration: underline dotted;\n text-decoration: underline dotted;\n border-bottom: none;\n }\n\n.markdown-body.markdown-body b,\n .markdown-body.markdown-body strong {\n font-weight: 600;\n }\n\n.markdown-body.markdown-body dfn {\n font-style: italic;\n }\n\n.markdown-body.markdown-body mark{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from #edaa00 srgb r g b / var(--tw-bg-opacity)) 62%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n\n.markdown-body.markdown-body small {\n font-size: 90%;\n }\n\n.markdown-body.markdown-body sub,\n .markdown-body.markdown-body sup {\n position: relative;\n font-size: 75%;\n line-height: 0;\n vertical-align: baseline;\n }\n\n.markdown-body.markdown-body sub {\n bottom: -0.25em;\n }\n\n.markdown-body.markdown-body sup {\n top: -0.5em;\n }\n\n.markdown-body.markdown-body img {\n box-sizing: content-box;\n max-width: 100%;\n border-style: none;\n --tw-bg-opacity: 1;\n background-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--tint) srgb r g b / var(--tw-bg-opacity)));\n }\n\n.markdown-body.markdown-body code,\n .markdown-body.markdown-body kbd,\n .markdown-body.markdown-body pre,\n .markdown-body.markdown-body samp {\n font-family: monospace;\n font-size: 1em;\n }\n\n.markdown-body.markdown-body figure {\n margin: 1em 40px;\n }\n\n.markdown-body.markdown-body hr {\n overflow: hidden;\n\n box-sizing: content-box;\n height: 0.25em;\n margin: 24px 0;\n padding: 0;\n\n background: transparent;\n border: 0;\n border-bottom: 1px solid hsl(210deg 18% 87% / 100%);\n --tw-bg-opacity: 1;\n background-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--tint) srgb r g b / var(--tw-bg-opacity)));\n }\n\n.markdown-body.markdown-body a:hover {\n text-decoration: underline;\n }\n\n.markdown-body.markdown-body hr::before {\n content: "";\n display: table;\n }\n\n.markdown-body.markdown-body hr::after {\n content: "";\n clear: both;\n display: table;\n }\n\n.markdown-body.markdown-body table {\n overflow: auto;\n display: block;\n border-spacing: 2px;\n border-collapse: separate;\n\n width: -moz-max-content;\n\n width: max-content;\n max-width: 100%;\n margin: 1.5rem 0;\n\n border: 0;\n }\n\n.markdown-body.markdown-body h1,\n .markdown-body.markdown-body h2,\n .markdown-body.markdown-body h3,\n .markdown-body.markdown-body h4,\n .markdown-body.markdown-body h5,\n .markdown-body.markdown-body h6 {\n margin: 1.5rem 0;\n font-weight: 600;\n line-height: 1.25;\n }\n\n.markdown-body.markdown-body h1:first-child, .markdown-body.markdown-body h2:first-child, .markdown-body.markdown-body h3:first-child, .markdown-body.markdown-body h4:first-child, .markdown-body.markdown-body h5:first-child, .markdown-body.markdown-body h6:first-child {\n margin-top: 0;\n }\n\n:is(.markdown-body.markdown-body h1) + br, :is(.markdown-body.markdown-body h2) + br, :is(.markdown-body.markdown-body h3) + br, :is(.markdown-body.markdown-body h4) + br, :is(.markdown-body.markdown-body h5) + br, :is(.markdown-body.markdown-body h6) + br, :is(.markdown-body.markdown-body li) + br {\n display: none;\n }\n\n.markdown-body.markdown-body h1 {\n padding-bottom: 0.3em;\n font-size: 2em;\n font-weight: 600;\n border-bottom: 1px solid hsl(210deg 18% 87% / 100%);\n }\n\n.markdown-body.markdown-body h2 {\n padding-bottom: 0.3em;\n font-size: 1.5em;\n font-weight: 600;\n border-bottom: 1px solid hsl(210deg 18% 87% / 100%);\n }\n\n.markdown-body.markdown-body h3 {\n font-size: 1.25em;\n font-weight: 600;\n }\n\n.markdown-body.markdown-body h4 {\n font-size: 1em;\n font-weight: 600;\n }\n\n.markdown-body.markdown-body h5 {\n font-size: 0.875em;\n font-weight: 600;\n }\n\n.markdown-body.markdown-body h6 {\n font-size: 0.85em;\n font-weight: 600;\n --tw-text-opacity: 1;\n color: color-mix(in lab, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)) 45%, color(from var(--tint) srgb r g b / var(--tw-text-opacity)));\n }\n\n.markdown-body.markdown-body p {\n margin: 1.5rem 0;\n }\n\n.markdown-body.markdown-body p:first-child {\n margin-top: 0;\n }\n\n.markdown-body.markdown-body blockquote {\n margin: 0;\n padding: 0 1em;\n color: #57606a;\n border-left: 0.25em solid;\n --tw-border-opacity: 1;\n border-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)) 65%, color(from var(--tint) srgb r g b / var(--tw-border-opacity)));\n }\n\n.markdown-body.markdown-body ul,\n .markdown-body.markdown-body ol {\n margin-top: 0;\n margin-bottom: 0;\n padding-left: 2em;\n }\n\n.markdown-body.markdown-body ul {\n list-style-type: initial;\n }\n\n.markdown-body.markdown-body ol {\n list-style-type: initial;\n }\n\n.markdown-body.markdown-body ol ol,\n .markdown-body.markdown-body ul ol {\n list-style-type: lower-roman;\n }\n\n.markdown-body.markdown-body ul ul ol,\n .markdown-body.markdown-body ul ol ol,\n .markdown-body.markdown-body ol ul ol,\n .markdown-body.markdown-body ol ol ol {\n list-style-type: lower-alpha;\n }\n\n.markdown-body.markdown-body dd {\n margin-left: 0;\n }\n\n.markdown-body.markdown-body tt,\n .markdown-body.markdown-body :not(pre) code {\n font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas,\n "Liberation Mono", monospace;\n background-color: color-mix(in lab, color(from #e93d82 srgb r g b / 0.5) 27%, color(from var(--fabric-bg) srgb r g b / 0.5));\n padding-left: 0.25rem;\n padding-right: 0.25rem;\n padding-top: 0.125rem;\n padding-bottom: 0.125rem;\n font-size: 0.875rem;\n line-height: 1.25rem;\n }\n\n.markdown-body.markdown-body pre.hljs {\n margin: 1.5rem 0;\n font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas,\n "Liberation Mono", monospace;\n font-size: 12px;\n word-wrap: normal;\n position: relative;\n overflow: auto;\n white-space: normal;\n border-radius: var(--rounding);\n border-width: 1px;\n --tw-bg-opacity: 1;\n background-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)) 99%, color(from var(--tint) srgb r g b / var(--tw-bg-opacity)));\n }\n\n.markdown-body.markdown-body pre.hljs::after{\nposition: absolute;\ntop: 0px;\ninset-inline-end: 0px;\npadding-top: 0.25rem;\npadding-bottom: 0.25rem;\npadding-left: 0.5rem;\npadding-right: 0.5rem;\n}\n\n.markdown-body.markdown-body pre.hljs > code{\ndisplay: block;\nbackground-color: transparent;\npadding: 1.5rem;\n\n white-space: pre;\n}\n\n.markdown-body.markdown-body pre.hljs.language-jsx::after,\n .markdown-body.markdown-body pre.hljs.language-tsx::after {\n content: "React";\n color: #000;\n background-color: #61dafb;\n }\n\n.markdown-body.markdown-body pre.hljs.language-js::after {\n content: "JS";\n color: #000;\n background-color: #f7df1e;\n }\n\n.markdown-body.markdown-body pre.hljs.language-ts::after {\n content: "TS";\n color: #fff;\n background-color: #3178c6;\n }\n\n.markdown-body.markdown-body pre.hljs.language-css::after {\n content: "CSS";\n color: #fff;\n background-color: #1572b6;\n }\n\n.markdown-body.markdown-body pre.hljs.language-html::after {\n content: "HTML";\n color: #fff;\n background-color: #e34f26;\n }\n\n.markdown-body.markdown-body pre.hljs.language-bash::after {\n content: "Bash";\n color: #fff;\n background-color: #64748b;\n }\n\n.markdown-body.markdown-body pre.hljs.language-json::after {\n content: "JSON";\n color: #fff;\n background-color: #000;\n }\n\n.markdown-body.markdown-body pre.hljs.language-yaml::after {\n content: "YAML";\n color: #fff;\n background-color: #cb171e;\n }\n\n.markdown-body.markdown-body pre.hljs .hljs-copy{\nposition: absolute;\ninset-inline-end: 0px;\nbottom: 0px;\ncursor: pointer;\nborder-width: 1px;\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)) 99%, color(from var(--tint) srgb r g b / var(--tw-bg-opacity)));\npadding: 0.5rem;\nline-height: 1;\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-text-opacity)) 80%, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)));\n}\n\n.markdown-body.markdown-body pre.hljs .hljs-copy:hover{\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--primary) srgb r g b / var(--tw-bg-opacity)) 27%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));\n}\n\n.markdown-body.markdown-body pre.hljs .hljs-copy > svg {\n width: 1em;\n height: 1em;\n }\n\n.markdown-body.markdown-body pre.hljs .hljs-copy-success{\nposition: absolute;\ninset-inline-end: 0px;\nbottom: 0px;\ndisplay: none;\n-webkit-user-select: none;\n -moz-user-select: none;\n user-select: none;\nborder-width: 1px;\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)) 5%, color(from var(--fabric-text) srgb r g b / var(--tw-bg-opacity)));\npadding: 0.5rem;\nline-height: 1;\n--tw-text-opacity: 1;\ncolor: color-mix(in lab, color(from var(--fabric-text) srgb r g b / var(--tw-text-opacity)) 5%, color(from var(--fabric-bg) srgb r g b / var(--tw-text-opacity)));\n}\n\n.markdown-body.markdown-body pre.hljs .hljs-copy-success[data-show="true"]{\ndisplay: block;\n}\n\n.markdown-body.markdown-body::before {\n content: "";\n display: table;\n }\n\n.markdown-body.markdown-body::after {\n content: "";\n clear: both;\n display: table;\n }\n\n.markdown-body.markdown-body > *:first-child {\n margin-top: 0 !important;\n }\n\n.markdown-body.markdown-body > *:last-child {\n margin-bottom: 0 !important;\n }\n\n.markdown-body.markdown-body blockquote > :first-child {\n margin-top: 0;\n }\n\n.markdown-body.markdown-body blockquote > :last-child {\n margin-bottom: 0;\n }\n\n.markdown-body.markdown-body ol[type="1"] {\n list-style-type: decimal;\n }\n\n.markdown-body.markdown-body ol[type="a"] {\n list-style-type: lower-alpha;\n }\n\n.markdown-body.markdown-body ol[type="i"] {\n list-style-type: lower-roman;\n }\n\n.markdown-body.markdown-body div > ol:not([type]) {\n list-style-type: decimal;\n }\n\n.markdown-body.markdown-body ul ul,\n .markdown-body.markdown-body ul ol,\n .markdown-body.markdown-body ol ol,\n .markdown-body.markdown-body ol ul {\n margin-top: 0;\n margin-bottom: 0;\n }\n\n.markdown-body.markdown-body li > p {\n margin-top: 16px;\n }\n\n.markdown-body.markdown-body li + li {\n margin-top: 0.25em;\n }\n\n.markdown-body.markdown-body dl {\n padding: 0;\n }\n\n.markdown-body.markdown-body dl dt {\n margin-top: 16px;\n padding: 0;\n\n font-size: 1em;\n font-weight: 600;\n font-style: italic;\n }\n\n.markdown-body.markdown-body dl dd {\n margin-bottom: 16px;\n padding: 0 16px;\n }\n\n.markdown-body.markdown-body table th {\n font-weight: 600;\n }\n\n.markdown-body.markdown-body table th,\n .markdown-body.markdown-body table td {\n padding: 6px 13px;\n --tw-border-opacity: 1;\n border-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)) 72%, color(from var(--tint) srgb r g b / var(--tw-border-opacity)));\n }\n\n.markdown-body.markdown-body table tr {\n border-top: 1px solid;\n --tw-border-opacity: 1;\n border-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)) 72%, color(from var(--tint) srgb r g b / var(--tw-border-opacity)));\n }\n\n.markdown-body.markdown-body table tr:nth-child(2n){\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)) 99%, color(from var(--tint) srgb r g b / var(--tw-bg-opacity)));\n}\n\n.markdown-body div[class*="_admonition"] {\n /* stylelint-disable-next-line custom-property-pattern */\n border-color: var(--admonitionBorder) !important;\n }\n\n.markdown-body .admonition,\n .markdown-body div[class*="_admonition"] {\n margin: 1.5rem 0;\n padding: 0.5rem;\n border-inline-start: 4px solid;\n }\n\n:is(.markdown-body .admonition,.markdown-body div[class*="_admonition"]) :first-child {\n margin-top: 0;\n }\n\n:is(.markdown-body .admonition,.markdown-body div[class*="_admonition"]) :last-child {\n margin-bottom: 0;\n }\n\n:is(.markdown-body .admonition,.markdown-body div[class*="_admonition"]) .admonition-title {\n display: none;\n }\n\n:is(:is(.markdown-body .admonition,.markdown-body div[class*="_admonition"]) .admonition-title) + * {\n margin-top: 0;\n }\n\n.admonition-note:is(.markdown-body .admonition,.markdown-body div[class*="_admonition"]){\n--tw-border-opacity: 1;\nborder-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / var(--tw-border-opacity)) 65%, color(from var(--tint) srgb r g b / var(--tw-border-opacity)));\n--tw-bg-opacity: 1;\nbackground-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)) 80%, color(from var(--tint) srgb r g b / var(--tw-bg-opacity)));\n}\n\n.admonition-tip:is(.markdown-body .admonition,.markdown-body div[class*="_admonition"]){\n--tw-border-opacity: 1;\nborder-color: rgb(68 188 105 / var(--tw-border-opacity));\n--tw-bg-opacity: 1;\nbackground-color: rgb(68 188 105 / var(--tw-bg-opacity));\n}\n\n.admonition-info:is(.markdown-body .admonition,.markdown-body div[class*="_admonition"]){\n--tw-border-opacity: 1;\nborder-color: rgb(0 191 255 / var(--tw-border-opacity));\n--tw-bg-opacity: 1;\nbackground-color: rgb(0 191 255 / var(--tw-bg-opacity));\n}\n\n.admonition-caution:is(.markdown-body .admonition,.markdown-body div[class*="_admonition"]){\n--tw-border-opacity: 1;\nborder-color: rgb(237 170 0 / var(--tw-border-opacity));\n--tw-bg-opacity: 1;\nbackground-color: rgb(237 170 0 / var(--tw-bg-opacity));\n}\n\n.admonition-danger:is(.markdown-body .admonition,.markdown-body div[class*="_admonition"]){\n--tw-border-opacity: 1;\nborder-color: rgb(242 76 61 / var(--tw-border-opacity));\n--tw-bg-opacity: 1;\nbackground-color: rgb(242 76 61 / var(--tw-bg-opacity));\n}\n\n.flag {\n display: inline-block;\n\n width: 1em;\n height: 0.75em;\n max-height: 0.75em;\n margin-top: 0.125em;\n\n font-size: 1em;\n vertical-align: baseline;\n\n background-repeat: no-repeat;\n background-position: center center;\n background-size: 100% 100%;\n box-shadow: 0 0 0 1px rgb(128 128 128 / 50%) inset;\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_5___});\n}\n\n.flag.AF,\n.flag.AFG,\n.flag.af,\n.flag.afg {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_6___});\n}\n\n.flag.AL,\n.flag.ALB,\n.flag.al,\n.flag.alb {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_7___});\n}\n\n.flag.DZ,\n.flag.DZA,\n.flag.dz,\n.flag.dza {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_8___});\n}\n\n.flag.AS,\n.flag.ASM,\n.flag.as,\n.flag.asm {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_9___});\n}\n\n.flag.AD,\n.flag.AND,\n.flag.ad,\n.flag.and {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_10___});\n}\n\n.flag.AO,\n.flag.AGO,\n.flag.ao,\n.flag.ago {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_11___});\n}\n\n.flag.AI,\n.flag.AIA,\n.flag.ai,\n.flag.aia {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_12___});\n}\n\n.flag.AG,\n.flag.ATG,\n.flag.ag,\n.flag.atg {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_13___});\n}\n\n.flag.AR,\n.flag.ARG,\n.flag.ar,\n.flag.arg {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_14___});\n}\n\n.flag.AM,\n.flag.ARM,\n.flag.am,\n.flag.arm {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_15___});\n}\n\n.flag.AW,\n.flag.ABW,\n.flag.aw,\n.flag.abw {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_16___});\n}\n\n.flag.AU,\n.flag.AUS,\n.flag.au,\n.flag.aus {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_17___});\n}\n\n.flag.AT,\n.flag.AUT,\n.flag.at,\n.flag.aut {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_18___});\n}\n\n.flag.AZ,\n.flag.AZE,\n.flag.az,\n.flag.aze {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_19___});\n}\n\n.flag.BS,\n.flag.BHS,\n.flag.bs,\n.flag.bhs {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_20___});\n}\n\n.flag.BH,\n.flag.BHR,\n.flag.bh,\n.flag.bhr {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_21___});\n}\n\n.flag.BD,\n.flag.BGD,\n.flag.bd,\n.flag.bgd {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_22___});\n}\n\n.flag.BB,\n.flag.BRB,\n.flag.bb,\n.flag.brb {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_23___});\n}\n\n.flag.BY,\n.flag.BLR,\n.flag.by,\n.flag.blr {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_24___});\n}\n\n.flag.BE,\n.flag.BEL,\n.flag.be,\n.flag.bel {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_25___});\n}\n\n.flag.BZ,\n.flag.BLZ,\n.flag.bz,\n.flag.blz {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_26___});\n}\n\n.flag.BJ,\n.flag.BEN,\n.flag.bj,\n.flag.ben {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_27___});\n}\n\n.flag.BM,\n.flag.BMU,\n.flag.bm,\n.flag.bmu {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_28___});\n}\n\n.flag.BT,\n.flag.BTN,\n.flag.bt,\n.flag.btn {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_29___});\n}\n\n.flag.BO,\n.flag.BOL,\n.flag.bo,\n.flag.bol {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_30___});\n}\n\n.flag.BA,\n.flag.BIH,\n.flag.ba,\n.flag.bih {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_31___});\n}\n\n.flag.BW,\n.flag.BWA,\n.flag.bw,\n.flag.bwa {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_32___});\n}\n\n.flag.BR,\n.flag.BRA,\n.flag.br,\n.flag.bra {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_33___});\n}\n\n.flag.BN,\n.flag.BRN,\n.flag.bn,\n.flag.brn {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_34___});\n}\n\n.flag.BG,\n.flag.BGR,\n.flag.bg,\n.flag.bgr {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_35___});\n}\n\n.flag.BF,\n.flag.BFA,\n.flag.bf,\n.flag.bfa {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_36___});\n}\n\n.flag.BI,\n.flag.BDI,\n.flag.bi,\n.flag.bdi {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_37___});\n}\n\n.flag.KH,\n.flag.KHM,\n.flag.kh,\n.flag.khm {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_38___});\n}\n\n.flag.CM,\n.flag.CMR,\n.flag.cm,\n.flag.cmr {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_39___});\n}\n\n.flag.CA,\n.flag.CAN,\n.flag.ca,\n.flag.can {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_40___});\n}\n\n.flag.CV,\n.flag.CPV,\n.flag.cv,\n.flag.cpv {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_41___});\n}\n\n.flag.KY,\n.flag.CYM,\n.flag.ky,\n.flag.cym {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_42___});\n}\n\n.flag.CF,\n.flag.CAF,\n.flag.cf,\n.flag.caf {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_43___});\n}\n\n.flag.TD,\n.flag.TCD,\n.flag.td,\n.flag.tcd {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_44___});\n}\n\n.flag.CL,\n.flag.CHL,\n.flag.cl,\n.flag.chl {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_45___});\n}\n\n.flag.CN,\n.flag.CHN,\n.flag.cn,\n.flag.chn {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_46___});\n}\n\n.flag.CO,\n.flag.COL,\n.flag.co,\n.flag.col {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_47___});\n}\n\n.flag.KM,\n.flag.COM,\n.flag.km,\n.flag.com {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_48___});\n}\n\n.flag.CG,\n.flag.COG,\n.flag.cg,\n.flag.cog {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_49___});\n}\n\n.flag.CK,\n.flag.COK,\n.flag.ck,\n.flag.cok {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_50___});\n}\n\n.flag.CR,\n.flag.CRI,\n.flag.cr,\n.flag.cri {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_51___});\n}\n\n.flag.CI,\n.flag.CIV,\n.flag.ci,\n.flag.civ {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_52___});\n}\n\n.flag.HR,\n.flag.HRV,\n.flag.hr,\n.flag.hrv {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_53___});\n}\n\n.flag.CU,\n.flag.CUB,\n.flag.cu,\n.flag.cub {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_54___});\n}\n\n.flag.CY,\n.flag.CYP,\n.flag.cy,\n.flag.cyp {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_55___});\n}\n\n.flag.CZ,\n.flag.CZE,\n.flag.cz,\n.flag.cze {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_56___});\n}\n\n.flag.DK,\n.flag.DNK,\n.flag.dk,\n.flag.dnk {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_57___});\n}\n\n.flag.DJ,\n.flag.DJI,\n.flag.dj,\n.flag.dji {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_58___});\n}\n\n.flag.DM,\n.flag.DMA,\n.flag.dm,\n.flag.dma {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_59___});\n}\n\n.flag.DO,\n.flag.DOM,\n.flag.do,\n.flag.dom {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_60___});\n}\n\n.flag.CD,\n.flag.COD,\n.flag.cd,\n.flag.cod {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_61___});\n}\n\n.flag.TL,\n.flag.TLS,\n.flag.tl,\n.flag.tls {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_62___});\n}\n\n.flag.EC,\n.flag.ECU,\n.flag.ec,\n.flag.ecu {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_63___});\n}\n\n.flag.EG,\n.flag.EGY,\n.flag.eg,\n.flag.egy {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_64___});\n}\n\n.flag.SV,\n.flag.SLV,\n.flag.sv,\n.flag.slv {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_65___});\n}\n\n.flag.GQ,\n.flag.GNQ,\n.flag.gq,\n.flag.gnq {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_66___});\n}\n\n.flag.ER,\n.flag.ERI,\n.flag.er,\n.flag.eri {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_67___});\n}\n\n.flag.EE,\n.flag.EST,\n.flag.ee,\n.flag.est {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_68___});\n}\n\n.flag.ET,\n.flag.ETH,\n.flag.et,\n.flag.eth {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_69___});\n}\n\n.flag.FO,\n.flag.FRO,\n.flag.fo,\n.flag.fro {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_70___});\n}\n\n.flag.FJ,\n.flag.FJI,\n.flag.fj,\n.flag.fji {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_71___});\n}\n\n.flag.FI,\n.flag.FIN,\n.flag.fi,\n.flag.fin {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_72___});\n}\n\n.flag.FR,\n.flag.FRA,\n.flag.fr,\n.flag.fra {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_73___});\n}\n\n.flag.GF,\n.flag.GUF,\n.flag.gf,\n.flag.guf {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_74___});\n}\n\n.flag.PF,\n.flag.PYF,\n.flag.pf,\n.flag.pyf {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_75___});\n}\n\n.flag.GA,\n.flag.GAB,\n.flag.ga,\n.flag.gab {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_76___});\n}\n\n.flag.GM,\n.flag.GMB,\n.flag.gm,\n.flag.gmb {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_77___});\n}\n\n.flag.GE,\n.flag.GEO,\n.flag.ge,\n.flag.geo {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_78___});\n}\n\n.flag.DE,\n.flag.DEU,\n.flag.de,\n.flag.deu {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_79___});\n}\n\n.flag.GH,\n.flag.GHA,\n.flag.gh,\n.flag.gha {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_80___});\n}\n\n.flag.GI,\n.flag.GIB,\n.flag.gi,\n.flag.gib {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_81___});\n}\n\n.flag.GR,\n.flag.GRC,\n.flag.gr,\n.flag.grc {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_82___});\n}\n\n.flag.GL,\n.flag.GRL,\n.flag.gl,\n.flag.grl {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_83___});\n}\n\n.flag.GD,\n.flag.GRD,\n.flag.gd,\n.flag.grd {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_84___});\n}\n\n.flag.GP,\n.flag.GLP,\n.flag.gp,\n.flag.glp {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_85___});\n}\n\n.flag.GU,\n.flag.GUM,\n.flag.gu,\n.flag.gum {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_86___});\n}\n\n.flag.GT,\n.flag.GTM,\n.flag.gt,\n.flag.gtm {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_87___});\n}\n\n.flag.GG,\n.flag.GGY,\n.flag.gg,\n.flag.ggy {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_88___});\n}\n\n.flag.GN,\n.flag.GIN,\n.flag.gn,\n.flag.gin {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_89___});\n}\n\n.flag.GW,\n.flag.GNB,\n.flag.gw,\n.flag.gnb {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_90___});\n}\n\n.flag.GY,\n.flag.GUY,\n.flag.gy,\n.flag.guy {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_91___});\n}\n\n.flag.HT,\n.flag.HTI,\n.flag.ht,\n.flag.hti {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_92___});\n}\n\n.flag.HN,\n.flag.HND,\n.flag.hn,\n.flag.hnd {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_93___});\n}\n\n.flag.HK,\n.flag.HKG,\n.flag.hk,\n.flag.hkg {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_94___});\n}\n\n.flag.HU,\n.flag.HUN,\n.flag.hu,\n.flag.hun {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_95___});\n}\n\n.flag.IS,\n.flag.ISL,\n.flag.is,\n.flag.isl {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_96___});\n}\n\n.flag.IN,\n.flag.IND,\n.flag.in,\n.flag.ind {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_97___});\n}\n\n.flag.ID,\n.flag.IDN,\n.flag.id,\n.flag.idn {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_98___});\n}\n\n.flag.IR,\n.flag.IRN,\n.flag.ir,\n.flag.irn {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_99___});\n}\n\n.flag.IQ,\n.flag.IRQ,\n.flag.iq,\n.flag.irq {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_100___});\n}\n\n.flag.IE,\n.flag.IRL,\n.flag.ie,\n.flag.irl {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_101___});\n}\n\n.flag.IM,\n.flag.IMN,\n.flag.im,\n.flag.imn {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_102___});\n}\n\n.flag.IL,\n.flag.ISR,\n.flag.il,\n.flag.isr {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_103___});\n}\n\n.flag.IT,\n.flag.ITA,\n.flag.it,\n.flag.ita {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_104___});\n}\n\n.flag.JM,\n.flag.JAM,\n.flag.jm,\n.flag.jam {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_105___});\n}\n\n.flag.JP,\n.flag.JPN,\n.flag.jp,\n.flag.jpn {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_106___});\n}\n\n.flag.JE,\n.flag.JEY,\n.flag.je,\n.flag.jey {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_107___});\n}\n\n.flag.JO,\n.flag.JOR,\n.flag.jo,\n.flag.jor {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_108___});\n}\n\n.flag.KZ,\n.flag.KAZ,\n.flag.kz,\n.flag.kaz {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_109___});\n}\n\n.flag.KE,\n.flag.KEN,\n.flag.ke,\n.flag.ken {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_110___});\n}\n\n.flag.KI,\n.flag.KIR,\n.flag.ki,\n.flag.kir {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_111___});\n}\n\n.flag.KW,\n.flag.KWT,\n.flag.kw,\n.flag.kwt {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_112___});\n}\n\n.flag.KG,\n.flag.KGZ,\n.flag.kg,\n.flag.kgz {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_113___});\n}\n\n.flag.LA,\n.flag.LAO,\n.flag.la,\n.flag.lao {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_114___});\n}\n\n.flag.LV,\n.flag.LVA,\n.flag.lv,\n.flag.lva {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_115___});\n}\n\n.flag.LB,\n.flag.LBN,\n.flag.lb,\n.flag.lbn {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_116___});\n}\n\n.flag.LS,\n.flag.LSO,\n.flag.ls,\n.flag.lso {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_117___});\n}\n\n.flag.LR,\n.flag.LBR,\n.flag.lr,\n.flag.lbr {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_118___});\n}\n\n.flag.LY,\n.flag.LBY,\n.flag.ly,\n.flag.lby {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_119___});\n}\n\n.flag.LI,\n.flag.LIE,\n.flag.li,\n.flag.lie {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_120___});\n}\n\n.flag.LT,\n.flag.LTU,\n.flag.lt,\n.flag.ltu {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_121___});\n}\n\n.flag.LU,\n.flag.LUX,\n.flag.lu,\n.flag.lux {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_122___});\n}\n\n.flag.MO,\n.flag.MAC,\n.flag.mo,\n.flag.mac {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_123___});\n}\n\n.flag.MK,\n.flag.MKD,\n.flag.mk,\n.flag.mkd {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_124___});\n}\n\n.flag.MG,\n.flag.MDG,\n.flag.mg,\n.flag.mdg {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_125___});\n}\n\n.flag.MW,\n.flag.MWI,\n.flag.mw,\n.flag.mwi {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_126___});\n}\n\n.flag.MY,\n.flag.MYS,\n.flag.my,\n.flag.mys {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_127___});\n}\n\n.flag.MV,\n.flag.MDV,\n.flag.mv,\n.flag.mdv {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_128___});\n}\n\n.flag.ML,\n.flag.MLI,\n.flag.ml,\n.flag.mli {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_129___});\n}\n\n.flag.MT,\n.flag.MLT,\n.flag.mt,\n.flag.mlt {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_130___});\n}\n\n.flag.MH,\n.flag.MHL,\n.flag.mh,\n.flag.mhl {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_131___});\n}\n\n.flag.MQ,\n.flag.MTQ,\n.flag.mq,\n.flag.mtq {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_132___});\n}\n\n.flag.MR,\n.flag.MRT,\n.flag.mr,\n.flag.mrt {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_133___});\n}\n\n.flag.MU,\n.flag.MUS,\n.flag.mu,\n.flag.mus {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_134___});\n}\n\n.flag.YT,\n.flag.MYT,\n.flag.yt,\n.flag.myt {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_135___});\n}\n\n.flag.MX,\n.flag.MEX,\n.flag.mx,\n.flag.mex {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_136___});\n}\n\n.flag.FM,\n.flag.FSM,\n.flag.fm,\n.flag.fsm {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_137___});\n}\n\n.flag.MD,\n.flag.MDA,\n.flag.md,\n.flag.mda {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_138___});\n}\n\n.flag.MC,\n.flag.MCO,\n.flag.mc,\n.flag.mco {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_139___});\n}\n\n.flag.MN,\n.flag.MNG,\n.flag.mn,\n.flag.mng {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_140___});\n}\n\n.flag.ME,\n.flag.MNE,\n.flag.me,\n.flag.mne {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_141___});\n}\n\n.flag.MS,\n.flag.MSR,\n.flag.ms,\n.flag.msr {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_142___});\n}\n\n.flag.MA,\n.flag.MAR,\n.flag.ma,\n.flag.mar {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_143___});\n}\n\n.flag.MZ,\n.flag.MOZ,\n.flag.mz,\n.flag.moz {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_144___});\n}\n\n.flag.MM,\n.flag.MMR,\n.flag.mm,\n.flag.mmr {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_145___});\n}\n\n.flag.NA,\n.flag.NAM,\n.flag.na,\n.flag.nam {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_146___});\n}\n\n.flag.NR,\n.flag.NRU,\n.flag.nr,\n.flag.nru {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_147___});\n}\n\n.flag.NP,\n.flag.NPL,\n.flag.np,\n.flag.npl {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_148___});\n background-size: contain;\n}\n\n.flag.NL,\n.flag.NLD,\n.flag.nl,\n.flag.nld {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_149___});\n}\n\n.flag.NZ,\n.flag.NZL,\n.flag.nz,\n.flag.nzl {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_150___});\n}\n\n.flag.NI,\n.flag.NIC,\n.flag.ni,\n.flag.nic {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_151___});\n}\n\n.flag.NE,\n.flag.NER,\n.flag.ne,\n.flag.ner {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_152___});\n}\n\n.flag.NG,\n.flag.NGA,\n.flag.ng,\n.flag.nga {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_153___});\n}\n\n.flag.KP,\n.flag.PRK,\n.flag.kp,\n.flag.prk {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_154___});\n}\n\n.flag.NO,\n.flag.NOR,\n.flag.no,\n.flag.nor {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_155___});\n}\n\n.flag.OM,\n.flag.OMN,\n.flag.om,\n.flag.omn {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_156___});\n}\n\n.flag.PK,\n.flag.PAK,\n.flag.pk,\n.flag.pak {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_157___});\n}\n\n.flag.PW,\n.flag.PLW,\n.flag.pw,\n.flag.plw {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_158___});\n}\n\n.flag.PS,\n.flag.PSE,\n.flag.ps,\n.flag.pse {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_159___});\n}\n\n.flag.PA,\n.flag.PAN,\n.flag.pa,\n.flag.pan {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_160___});\n}\n\n.flag.PG,\n.flag.PNG,\n.flag.pg,\n.flag.png {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_161___});\n}\n\n.flag.PY,\n.flag.PRY,\n.flag.py,\n.flag.pry {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_162___});\n}\n\n.flag.PE,\n.flag.PER,\n.flag.pe,\n.flag.per {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_163___});\n}\n\n.flag.PH,\n.flag.PHL,\n.flag.ph,\n.flag.phl {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_164___});\n}\n\n.flag.PN,\n.flag.PCN,\n.flag.pn,\n.flag.pcn {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_165___});\n}\n\n.flag.PL,\n.flag.POL,\n.flag.pl,\n.flag.pol {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_166___});\n}\n\n.flag.PT,\n.flag.PRT,\n.flag.pt,\n.flag.prt {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_167___});\n}\n\n.flag.PR,\n.flag.PRI,\n.flag.pr,\n.flag.pri {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_168___});\n}\n\n.flag.QA,\n.flag.QAT,\n.flag.qa,\n.flag.qat {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_169___});\n}\n\n.flag.RE,\n.flag.REU,\n.flag.re,\n.flag.reu {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_170___});\n}\n\n.flag.RO,\n.flag.ROU,\n.flag.ro,\n.flag.rou {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_171___});\n}\n\n.flag.RU,\n.flag.RUS,\n.flag.ru,\n.flag.rus {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_172___});\n}\n\n.flag.RW,\n.flag.RWA,\n.flag.rw,\n.flag.rwa {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_173___});\n}\n\n.flag.SH,\n.flag.SHN,\n.flag.sh,\n.flag.shn {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_174___});\n}\n\n.flag.KN,\n.flag.KNA,\n.flag.kn,\n.flag.kna {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_175___});\n}\n\n.flag.LC,\n.flag.LCA,\n.flag.lc,\n.flag.lca {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_176___});\n}\n\n.flag.PM,\n.flag.SPM,\n.flag.pm,\n.flag.spm {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_177___});\n}\n\n.flag.VC,\n.flag.VCT,\n.flag.vc,\n.flag.vct {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_178___});\n}\n\n.flag.WS,\n.flag.WSM,\n.flag.ws,\n.flag.wsm {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_179___});\n}\n\n.flag.SM,\n.flag.SMR,\n.flag.sm,\n.flag.smr {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_180___});\n}\n\n.flag.ST,\n.flag.STP,\n.flag.st,\n.flag.stp {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_181___});\n}\n\n.flag.SA,\n.flag.SAU,\n.flag.sa,\n.flag.sau {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_182___});\n}\n\n.flag.SN,\n.flag.SEN,\n.flag.sn,\n.flag.sen {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_183___});\n}\n\n.flag.RS,\n.flag.SRB,\n.flag.rs,\n.flag.srb {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_184___});\n}\n\n.flag.SC,\n.flag.SYC,\n.flag.sc,\n.flag.syc {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_185___});\n}\n\n.flag.SL,\n.flag.SLE,\n.flag.sl,\n.flag.sle {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_186___});\n}\n\n.flag.SG,\n.flag.SGP,\n.flag.sg,\n.flag.sgp {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_187___});\n}\n\n.flag.SK,\n.flag.SVK,\n.flag.sk,\n.flag.svk {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_188___});\n}\n\n.flag.SI,\n.flag.SVN,\n.flag.si,\n.flag.svn {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_189___});\n}\n\n.flag.SB,\n.flag.SLB,\n.flag.sb,\n.flag.slb {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_190___});\n}\n\n.flag.SO,\n.flag.SOM,\n.flag.so,\n.flag.som {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_191___});\n}\n\n.flag.ZA,\n.flag.ZAF,\n.flag.za,\n.flag.zaf {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_192___});\n}\n\n.flag.KR,\n.flag.KOR,\n.flag.kr,\n.flag.kor {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_193___});\n}\n\n.flag.SS,\n.flag.SSD,\n.flag.ss,\n.flag.ssd {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_194___});\n}\n\n.flag.ES,\n.flag.ESP,\n.flag.es,\n.flag.esp {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_195___});\n}\n\n.flag.LK,\n.flag.LKA,\n.flag.lk,\n.flag.lka {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_196___});\n}\n\n.flag.SD,\n.flag.SDN,\n.flag.sd,\n.flag.sdn {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_197___});\n}\n\n.flag.SR,\n.flag.SUR,\n.flag.sr,\n.flag.sur {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_198___});\n}\n\n.flag.SZ,\n.flag.SWZ,\n.flag.sz,\n.flag.swz {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_199___});\n}\n\n.flag.SE,\n.flag.SWE,\n.flag.se,\n.flag.swe {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_200___});\n}\n\n.flag.CH,\n.flag.CHE,\n.flag.ch,\n.flag.che {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_201___});\n}\n\n.flag.SY,\n.flag.SYR,\n.flag.sy,\n.flag.syr {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_202___});\n}\n\n.flag.TW,\n.flag.TWN,\n.flag.tw,\n.flag.twn {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_203___});\n}\n\n.flag.TJ,\n.flag.TJK,\n.flag.tj,\n.flag.tjk {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_204___});\n}\n\n.flag.TZ,\n.flag.TZA,\n.flag.tz,\n.flag.tza {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_205___});\n}\n\n.flag.TH,\n.flag.THA,\n.flag.th,\n.flag.tha {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_206___});\n}\n\n.flag.TG,\n.flag.TGO,\n.flag.tg,\n.flag.tgo {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_207___});\n}\n\n.flag.TO,\n.flag.TON,\n.flag.to,\n.flag.ton {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_208___});\n}\n\n.flag.TT,\n.flag.TTO,\n.flag.tt,\n.flag.tto {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_209___});\n}\n\n.flag.TN,\n.flag.TUN,\n.flag.tn,\n.flag.tun {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_210___});\n}\n\n.flag.TR,\n.flag.TUR,\n.flag.tr,\n.flag.tur {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_211___});\n}\n\n.flag.TM,\n.flag.TKM,\n.flag.tm,\n.flag.tkm {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_212___});\n}\n\n.flag.TC,\n.flag.TCA,\n.flag.tc,\n.flag.tca {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_213___});\n}\n\n.flag.TV,\n.flag.TUV,\n.flag.tv,\n.flag.tuv {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_214___});\n}\n\n.flag.UG,\n.flag.UGA,\n.flag.ug,\n.flag.uga {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_215___});\n}\n\n.flag.UA,\n.flag.UKR,\n.flag.ua,\n.flag.ukr {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_216___});\n}\n\n.flag.AE,\n.flag.ARE,\n.flag.ae,\n.flag.are,\n.flag.UAE,\n.flag.uae {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_217___});\n}\n\n.flag.GB,\n.flag.GBR,\n.flag.gb,\n.flag.gbr,\n.flag.UK,\n.flag.uk {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_218___});\n}\n\n.flag.US,\n.flag.USA,\n.flag.us,\n.flag.usa {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_219___});\n}\n\n.flag.UY,\n.flag.URY,\n.flag.uy,\n.flag.ury {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_220___});\n}\n\n.flag.UZ,\n.flag.UZB,\n.flag.uz,\n.flag.uzb {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_221___});\n}\n\n.flag.VU,\n.flag.VUT,\n.flag.vu,\n.flag.vut {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_222___});\n}\n\n.flag.VE,\n.flag.VEN,\n.flag.ve,\n.flag.ven {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_223___});\n}\n\n.flag.VN,\n.flag.VNM,\n.flag.vn,\n.flag.vnm {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_224___});\n}\n\n.flag.VG,\n.flag.VGB,\n.flag.vg,\n.flag.vgb {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_225___});\n}\n\n.flag.VI,\n.flag.VIR,\n.flag.vi,\n.flag.vir {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_226___});\n}\n\n.flag.WF,\n.flag.WLF,\n.flag.wf,\n.flag.wlf {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_227___});\n}\n\n.flag.EH,\n.flag.ESH,\n.flag.eh,\n.flag.esh {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_228___});\n}\n\n.flag.YE,\n.flag.YEM,\n.flag.ye,\n.flag.yem {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_229___});\n}\n\n.flag.ZM,\n.flag.ZMB,\n.flag.zm,\n.flag.zmb {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_230___});\n}\n\n.flag.ZW,\n.flag.ZWE,\n.flag.zw,\n.flag.zwe {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_231___});\n}\n\n/*\n * React Fabric\n * @version : 1.0.0\n * @copyright : 2024\n * @author : Adarsh Pastakia\n */\n\n.sb-show-main.sb-show-main.sb-show-main .control-panel {\n margin: -2rem 0 2.5rem;\n}\n\n.sb-show-main.sb-show-main.sb-show-main .control-panel .sb-bar {\n display: none;\n }\n\n.sb-show-main.sb-show-main.sb-show-main .docblock-argstable.docblock-argstable {\n border-spacing: 0.25rem;\n border-collapse: separate;\n border-width: 0;\n}\n\n.sb-show-main.sb-show-main.sb-show-main .docblock-argstable.docblock-argstable thead th {\n color: color-mix(in lab, color(from var(--accent) srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));\n background-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 90%, color(from var(--tint) srgb r g b / 1));\n }\n\n.sb-show-main.sb-show-main.sb-show-main .docblock-argstable.docblock-argstable tbody tr:nth-child(odd) td {\n background-color: color-mix(in lab, var(--fabric-bg) 99%, var(--tint));\n }\n\n.sb-show-main.sb-show-main.sb-show-main .docblock-argstable.docblock-argstable tbody tr:nth-child(even) td {\n background-color: color-mix(in lab, var(--fabric-bg) 96%, var(--tint));\n }\n\n.sb-show-main.sb-show-main.sb-show-main .docblock-argstable.docblock-argstable tbody td p {\n white-space: pre-wrap;\n }\n\n.hidden-anchor {\n height: 0;\n visibility: hidden;\n}\n\nh1.sbdocs-title {\n font-size: 1.5rem;\n font-weight: 500;\n color: var(--primary);\n -webkit-text-decoration: underline 2px;\n text-decoration: underline 2px;\n text-underline-offset: 0.25em;\n}\n\n.sbdocs.sbdocs-content > h3,\n.sb-anchor > h3 {\n font-size: 1.125rem;\n font-weight: 400;\n color: var(--accent);\n -webkit-text-decoration: underline 1px;\n text-decoration: underline 1px;\n text-underline-offset: 0.25em;\n}\n\n.sbdocs.sbdocs.sbdocs-preview,\n .sbdocs.sbdocs.sbdocs-preview .docs-story {\n background-color: color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 99%, color(from var(--tint) srgb r g b / 1));\n }\n\n.sbdocs.sbdocs.sbdocs-preview .sb-bar {\n background-color: var(--fabric-bg);\n }\n\n.sb-bar.sb-bar .tabbutton {\n color: var(--primary);\n}\n\n.sb-bar.sb-bar .tabbutton.tabbutton-active {\n border-bottom-color: var(--primary);\n }\n\n.toc-wrapper.toc-wrapper.toc-wrapper > .toc-list.toc-list.toc-list {\n padding: 0;\n border-left: 0;\n border-inline-start: 1px solid color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 65%, color(from var(--tint) srgb r g b / 1));\n}\n\n.toc-wrapper.toc-wrapper.toc-wrapper > .toc-list.toc-list.toc-list .toc-list-item.toc-list-item.toc-list-item {\n margin: 0;\n margin-inline-start: -1px;\n padding: 0.25rem 1rem;\n border-inline-start: 2px solid transparent;\n }\n\n.toc-wrapper.toc-wrapper.toc-wrapper > .toc-list.toc-list.toc-list .toc-list-item.toc-list-item.toc-list-item::before {\n border-left: 0;\n }\n\n.toc-wrapper.toc-wrapper.toc-wrapper > .toc-list.toc-list.toc-list .toc-list-item.toc-list-item.is-active-li.is-active-li {\n border-color: var(--accent);\n }\n\n.toc-wrapper.toc-wrapper.toc-wrapper > .toc-list.toc-list.toc-list .toc-list-item.toc-list-item.is-active-li.is-active-li > a.is-active-link {\n color: var(--accent);\n }\n\n/*\n * React Fabric\n * @version : 1.0.0\n * @copyright : 2024\n * @author : Adarsh Pastakia\n */\n\n.prismjs.prismjs.prismjs {\n color: color-mix(in lab, color(from var(--fabric-text) srgb r g b / 1) 65%, color(from var(--tint) srgb r g b / 1));\n background: var(--fabric-bg);\n}\n\n.prismjs > code {\n -webkit-user-select: text;\n -moz-user-select: text;\n user-select: text;\n\n font-family: Consolas, Monaco, "Andale Mono", "Ubuntu Mono", monospace;\n font-size: 1em;\n line-height: 1.5;\n text-align: left;\n word-break: normal;\n word-spacing: normal;\n word-wrap: normal;\n white-space: pre;\n}\n\n/* Code blocks */\n\npre[class*="language-"] {\n overflow: auto;\n margin: 0.5em 0;\n padding: 1em;\n}\n\n/* Inline code */\n\n*:not(pre) > code[class*="language-"] {\n padding: 0.1em;\n white-space: normal;\n border-radius: 0.3em;\n}\n\ncode[class*="language-"] .token.important,\n pre[class*="language-"] .token.important,\n code[class*="language-"] .token.bold,\n pre[class*="language-"] .token.bold {\n font-weight: 600;\n }\n\ncode[class*="language-"] .token.italic, pre[class*="language-"] .token.italic {\n font-style: italic;\n }\n\ncode[class*="language-"] .token.entity, pre[class*="language-"] .token.entity {\n cursor: help;\n }\n\n.prismjs {\n position: relative;\n}\n\n.prismjs > div {\n white-space: pre-wrap !important;\n}\n\n.prismjs > div::after {\n position: absolute;\n top: 0;\n inset-inline-end: 0;\n\n padding: 0.25em 0.5em;\n\n font-size: 0.75rem;\n\n opacity: 0.7;\n border-end-start-radius: 8px;\n }\n\n.prismjs > div.language-jsx::after,\n .prismjs > div.language-tsx::after {\n content: "React";\n color: #000;\n background-color: #61dafb;\n }\n\n.prismjs > div.language-js::after {\n content: "JS";\n color: #000;\n background-color: #f7df1e;\n }\n\n.prismjs > div.language-ts::after {\n content: "TS";\n color: #fff;\n background-color: #3178c6;\n }\n\n.prismjs > div.language-css::after {\n content: "CSS";\n color: #fff;\n background-color: #1572b6;\n }\n\n.prismjs > div.language-html::after {\n content: "HTML";\n color: #fff;\n background-color: #e34f26;\n }\n\n.prismjs > div.language-bash::after {\n content: "Bash";\n color: #fff;\n background-color: #64748b;\n }\n\n.prismjs > div.language-json::after {\n content: "JSON";\n color: #fff;\n background-color: #000;\n }\n\n.prismjs > div.language-yaml::after {\n content: "YAML";\n color: #fff;\n background-color: #cb171e;\n }\n\n/*\n * React Fabric\n * @version : 1.0.0\n * @copyright : 2024\n * @author : Adarsh Pastakia\n */\n\nhtml[data-color-scheme="dark"] .prismjs > div[class*="language-"] .token.comment,\n html[data-color-scheme="dark"] .prismjs > div[class*="language-"] .token.block-comment,\n html[data-color-scheme="dark"] .prismjs > div[class*="language-"] .token.prolog,\n html[data-color-scheme="dark"] .prismjs > div[class*="language-"] .token.doctype,\n html[data-color-scheme="dark"] .prismjs > div[class*="language-"] .token.cdata {\n color: #999;\n }\n\nhtml[data-color-scheme="dark"] .prismjs > div[class*="language-"] .token.punctuation {\n color: #ccc;\n }\n\nhtml[data-color-scheme="dark"] .prismjs > div[class*="language-"] .token.tag,\n html[data-color-scheme="dark"] .prismjs > div[class*="language-"] .token.attr-name,\n html[data-color-scheme="dark"] .prismjs > div[class*="language-"] .token.namespace,\n html[data-color-scheme="dark"] .prismjs > div[class*="language-"] .token.deleted {\n color: #e2777a;\n }\n\nhtml[data-color-scheme="dark"] .prismjs > div[class*="language-"] .token.function-name {\n color: #6196cc;\n }\n\nhtml[data-color-scheme="dark"] .prismjs > div[class*="language-"] .token.boolean,\n html[data-color-scheme="dark"] .prismjs > div[class*="language-"] .token.number,\n html[data-color-scheme="dark"] .prismjs > div[class*="language-"] .token.function {\n color: #f08d49;\n }\n\nhtml[data-color-scheme="dark"] .prismjs > div[class*="language-"] .token.property,\n html[data-color-scheme="dark"] .prismjs > div[class*="language-"] .token.class-name,\n html[data-color-scheme="dark"] .prismjs > div[class*="language-"] .token.constant,\n html[data-color-scheme="dark"] .prismjs > div[class*="language-"] .token.symbol {\n color: #f8c555;\n }\n\nhtml[data-color-scheme="dark"] .prismjs > div[class*="language-"] .token.selector,\n html[data-color-scheme="dark"] .prismjs > div[class*="language-"] .token.important,\n html[data-color-scheme="dark"] .prismjs > div[class*="language-"] .token.atrule,\n html[data-color-scheme="dark"] .prismjs > div[class*="language-"] .token.keyword,\n html[data-color-scheme="dark"] .prismjs > div[class*="language-"] .token.builtin {\n color: #cc99cd;\n }\n\nhtml[data-color-scheme="dark"] .prismjs > div[class*="language-"] .token.string,\n html[data-color-scheme="dark"] .prismjs > div[class*="language-"] .token.char,\n html[data-color-scheme="dark"] .prismjs > div[class*="language-"] .token.attr-value,\n html[data-color-scheme="dark"] .prismjs > div[class*="language-"] .token.regex,\n html[data-color-scheme="dark"] .prismjs > div[class*="language-"] .token.variable {\n color: #7ec699;\n }\n\nhtml[data-color-scheme="dark"] .prismjs > div[class*="language-"] .token.operator,\n html[data-color-scheme="dark"] .prismjs > div[class*="language-"] .token.entity,\n html[data-color-scheme="dark"] .prismjs > div[class*="language-"] .token.url {\n color: #67cdcc;\n }\n\nhtml[data-color-scheme="dark"] .prismjs > div[class*="language-"] .token.important,\n html[data-color-scheme="dark"] .prismjs > div[class*="language-"] .token.bold {\n font-weight: 600;\n }\n\nhtml[data-color-scheme="dark"] .prismjs > div[class*="language-"] .token.italic {\n font-style: italic;\n }\n\nhtml[data-color-scheme="dark"] .prismjs > div[class*="language-"] .token.entity {\n cursor: help;\n }\n\nhtml[data-color-scheme="dark"] .prismjs > div[class*="language-"] .token.inserted {\n color: #008000;\n }\n\n/*\n * React Fabric\n * @version : 1.0.0\n * @copyright : 2024\n * @author : Adarsh Pastakia\n */\n\nhtml[data-color-scheme="light"] .prismjs > div[class*="language-"] .token.comment,\n html[data-color-scheme="light"] .prismjs > div[class*="language-"] .token.prolog,\n html[data-color-scheme="light"] .prismjs > div[class*="language-"] .token.doctype,\n html[data-color-scheme="light"] .prismjs > div[class*="language-"] .token.cdata {\n color: #708090;\n }\n\nhtml[data-color-scheme="light"] .prismjs > div[class*="language-"] .token.punctuation {\n color: #999;\n }\n\nhtml[data-color-scheme="light"] .prismjs > div[class*="language-"] .token.namespace {\n opacity: 0.7;\n }\n\nhtml[data-color-scheme="light"] .prismjs > div[class*="language-"] .token.property,\n html[data-color-scheme="light"] .prismjs > div[class*="language-"] .token.tag,\n html[data-color-scheme="light"] .prismjs > div[class*="language-"] .token.boolean,\n html[data-color-scheme="light"] .prismjs > div[class*="language-"] .token.number,\n html[data-color-scheme="light"] .prismjs > div[class*="language-"] .token.constant,\n html[data-color-scheme="light"] .prismjs > div[class*="language-"] .token.symbol,\n html[data-color-scheme="light"] .prismjs > div[class*="language-"] .token.deleted {\n color: #905;\n }\n\nhtml[data-color-scheme="light"] .prismjs > div[class*="language-"] .token.selector,\n html[data-color-scheme="light"] .prismjs > div[class*="language-"] .token.attr-name,\n html[data-color-scheme="light"] .prismjs > div[class*="language-"] .token.string,\n html[data-color-scheme="light"] .prismjs > div[class*="language-"] .token.char,\n html[data-color-scheme="light"] .prismjs > div[class*="language-"] .token.builtin,\n html[data-color-scheme="light"] .prismjs > div[class*="language-"] .token.inserted {\n color: #690;\n }\n\nhtml[data-color-scheme="light"] .prismjs > div[class*="language-"] .token.operator,\n html[data-color-scheme="light"] .prismjs > div[class*="language-"] .token.entity,\n html[data-color-scheme="light"] .prismjs > div[class*="language-"] .token.url,\n html[data-color-scheme="light"] .prismjs > div[class*="language-"] .language-css .token.string,\n html[data-color-scheme="light"] .prismjs > div[class*="language-"] .style .token.string {\n /* This background color was intended by the author of this theme. */\n color: #9a6e3a;\n background: hsl(0deg 0% 100% / 50%);\n }\n\nhtml[data-color-scheme="light"] .prismjs > div[class*="language-"] .token.atrule,\n html[data-color-scheme="light"] .prismjs > div[class*="language-"] .token.attr-value,\n html[data-color-scheme="light"] .prismjs > div[class*="language-"] .token.keyword {\n color: #07a;\n }\n\nhtml[data-color-scheme="light"] .prismjs > div[class*="language-"] .token.function,\n html[data-color-scheme="light"] .prismjs > div[class*="language-"] .token.class-name {\n color: #dd4a68;\n }\n\nhtml[data-color-scheme="light"] .prismjs > div[class*="language-"] .token.regex,\n html[data-color-scheme="light"] .prismjs > div[class*="language-"] .token.important,\n html[data-color-scheme="light"] .prismjs > div[class*="language-"] .token.variable {\n color: #e90;\n }\n`,"",{version:3,sources:["webpack://./.storybook/styles/styles.css","webpack://./packages/core/css/styles.css","webpack://./node_modules/tailwindcss/base.css","webpack://./node_modules/tailwindcss/components.css","webpack://./node_modules/tailwindcss/utilities.css","webpack://./node_modules/tailwindcss/variants.css","webpack://./packages/core/css/reset/index.css","webpack://./packages/core/css/reset/_theme.css","webpack://./packages/core/css/reset/_reset.css","webpack://./packages/core/css/reset/_text.css","webpack://./packages/core/css/reset/_gradients.css","webpack://./packages/mdx/css/styles.css","webpack://./packages/mdx/css/_hljs.light.css","webpack://./packages/mdx/css/_hljs.dark.css","webpack://./packages/mdx/css/_markdown.css","webpack://./packages/core/css/flags.rect.css","webpack://./.storybook/styles/_overrides.css","webpack://./.storybook/styles/_prism.css","webpack://./.storybook/styles/_prism-dark.css","webpack://./.storybook/styles/_prism-light.css"],names:[],mappings:"AAAA;;;;;EAKE;;ACLF;;;;;;;;;;;;;;;;;;;;;EAqBE;;AAEF,qCAAqC;;ACvBrC;AAAA;;EAAc,CAAd;;;CAAc;;AAAd;;;EAAA,sBAAc,EAAd,MAAc;EAAd,eAAc,EAAd,MAAc;EAAd,mBAAc,EAAd,MAAc;EAAd,yHAAc,EAAd,MAAc;AAAA;;AAAd;;EAAA,gBAAc;AAAA;;AAAd;;;;;;;;CAAc;;AAAd;;EAAA,gBAAc,EAAd,MAAc;EAAd,8BAAc,EAAd,MAAc;EAAd,gBAAc,EAAd,MAAc;EAAd,cAAc;KAAd,WAAc,EAAd,MAAc;EAAd,0LAAc,EAAd,MAAc;EAAd,6BAAc,EAAd,MAAc;EAAd,+BAAc,EAAd,MAAc;EAAd,wCAAc,EAAd,MAAc;AAAA;;AAAd;;;CAAc;;AAAd;EAAA,SAAc,EAAd,MAAc;EAAd,oBAAc,EAAd,MAAc;AAAA;;AAAd;;;;CAAc;;AAAd;EAAA,SAAc,EAAd,MAAc;EAAd,cAAc,EAAd,MAAc;EAAd,qBAAc,EAAd,MAAc;AAAA;;AAAd;;CAAc;;AAAd;EAAA,yCAAc;UAAd,iCAAc;AAAA;;AAAd;;CAAc;;AAAd;;;;;;EAAA,kBAAc;EAAd,oBAAc;AAAA;;AAAd;;CAAc;;AAAd;EAAA,cAAc;EAAd,wBAAc;AAAA;;AAAd;;CAAc;;AAAd;;EAAA,mBAAc;AAAA;;AAAd;;;;;CAAc;;AAAd;;;;EAAA,6FAAc,EAAd,MAAc;EAAd,6BAAc,EAAd,MAAc;EAAd,+BAAc,EAAd,MAAc;EAAd,cAAc,EAAd,MAAc;AAAA;;AAAd;;CAAc;;AAAd;EAAA,cAAc;AAAA;;AAAd;;CAAc;;AAAd;;EAAA,cAAc;EAAd,cAAc;EAAd,kBAAc;EAAd,wBAAc;AAAA;;AAAd;EAAA,eAAc;AAAA;;AAAd;EAAA,WAAc;AAAA;;AAAd;;;;CAAc;;AAAd;EAAA,cAAc,EAAd,MAAc;EAAd,qBAAc,EAAd,MAAc;EAAd,yBAAc,EAAd,MAAc;AAAA;;AAAd;;;;CAAc;;AAAd;;;;;EAAA,oBAAc,EAAd,MAAc;EAAd,8BAAc,EAAd,MAAc;EAAd,gCAAc,EAAd,MAAc;EAAd,eAAc,EAAd,MAAc;EAAd,oBAAc,EAAd,MAAc;EAAd,oBAAc,EAAd,MAAc;EAAd,uBAAc,EAAd,MAAc;EAAd,cAAc,EAAd,MAAc;EAAd,SAAc,EAAd,MAAc;EAAd,UAAc,EAAd,MAAc;AAAA;;AAAd;;CAAc;;AAAd;;EAAA,oBAAc;AAAA;;AAAd;;;CAAc;;AAAd;;;;EAAA,0BAAc,EAAd,MAAc;EAAd,6BAAc,EAAd,MAAc;EAAd,sBAAc,EAAd,MAAc;AAAA;;AAAd;;CAAc;;AAAd;EAAA,aAAc;AAAA;;AAAd;;CAAc;;AAAd;EAAA,gBAAc;AAAA;;AAAd;;CAAc;;AAAd;EAAA,wBAAc;AAAA;;AAAd;;CAAc;;AAAd;;EAAA,YAAc;AAAA;;AAAd;;;CAAc;;AAAd;EAAA,6BAAc,EAAd,MAAc;EAAd,oBAAc,EAAd,MAAc;AAAA;;AAAd;;CAAc;;AAAd;EAAA,wBAAc;AAAA;;AAAd;;;CAAc;;AAAd;EAAA,0BAAc,EAAd,MAAc;EAAd,aAAc,EAAd,MAAc;AAAA;;AAAd;;CAAc;;AAAd;EAAA,kBAAc;AAAA;;AAAd;;CAAc;;AAAd;;;;;;;;;;;;;EAAA,SAAc;AAAA;;AAAd;EAAA,SAAc;EAAd,UAAc;AAAA;;AAAd;EAAA,UAAc;AAAA;;AAAd;;;EAAA,gBAAc;EAAd,SAAc;EAAd,UAAc;AAAA;;AAAd;;CAAc;AAAd;EAAA,UAAc;AAAA;;AAAd;;CAAc;;AAAd;EAAA,gBAAc;AAAA;;AAAd;;;CAAc;;AAAd;EAAA,UAAc,EAAd,MAAc;EAAd,cAAc,EAAd,MAAc;AAAA;;AAAd;;EAAA,UAAc,EAAd,MAAc;EAAd,cAAc,EAAd,MAAc;AAAA;;AAAd;;CAAc;;AAAd;;EAAA,eAAc;AAAA;;AAAd;;CAAc;AAAd;EAAA,eAAc;AAAA;;AAAd;;;;CAAc;;AAAd;;;;;;;;EAAA,cAAc,EAAd,MAAc;EAAd,sBAAc,EAAd,MAAc;AAAA;;AAAd;;CAAc;;AAAd;;EAAA,eAAc;EAAd,YAAc;AAAA;;AAAd,wEAAc;AAAd;EAAA,aAAc;AAAA;AAAd;AAAA,wBAAc;GAAd,qBAAc;QAAd,gBAAc;AAAd,sBAAc;AAAd,qBAAc;AAAd,iBAAc;AAAd,kBAAc;AAAd,mBAAc;AAAd,sBAAc;AAAd,sBAAc;AAAd,qBAAc;AAAd,eAAc;AAAd,mBAAc;AAAd,sBAAc;AAAA;AAAd;AAAA,8BAAc;AAAd,mBAAc;AAAd,4CAAc;AAAd,2BAAc;AAAd,4BAAc;AAAd,wBAAc;AAAd,2GAAc;AAAd,yGAAc;AAAd,iFAAc;AAAd;AAAc;AAAd;AAAA,cAAc;AAAd;AAAc;AAAd;AAAA,cAAc;AAAd;AAAc;AAAd;AAAA;AAAc;AAAd;AAAA,iBAAc;AAAd;AAAc;AAAd;AAAA;AAAc;AAAd;AAAA,cAAc;AAAd;AAAc;AAAd;AAAA,yDAAc;AAAd,wCAAc;AAAd,4BAAc;AAAd,4BAAc;AAAd,qBAAc;AAAd,iCAAc;QAAd;AAAc;AAAd;AAAA,yBAAc;AAAd,4BAAc;AAAd,wBAAc;AAAd,wBAAc;AAAd,sBAAc;AAAd,iCAAc;QAAd;AAAc;AAAd;AAAA,wBAAc;GAAd,qBAAc;QAAd,gBAAc;AAAd,UAAc;AAAd,iCAAc;QAAd,yBAAc;AAAd,qBAAc;AAAd,sBAAc;AAAd,6BAAc;AAAd,yBAAc;GAAd,sBAAc;QAAd,iBAAc;AAAd,cAAc;AAAd,YAAc;AAAd,WAAc;AAAd,cAAc;AAAd,sBAAc;AAAd,qBAAc;AAAd,iBAAc;AAAd;AAAc;AAAd;AAAA;AAAc;AAAd;AAAA;AAAc;AAAd;AAAA,8BAAc;AAAd,mBAAc;AAAd,4CAAc;AAAd,2BAAc;AAAd,4BAAc;AAAd,wBAAc;AAAd,2GAAc;AAAd,yGAAc;AAAd;AAAc;AAAd;AAAA,yBAAc;AAAd,8BAAc;AAAd,0BAAc;AAAd,2BAAc;AAAd;AAAc;AAAd;AAAA,yDAAc;AAAA;AAAd;;AAAA;AAAA,wBAAc;GAAd,qBAAc;QAAd;AAAc;AAAA;AAAd;AAAA,yDAAc;AAAA;AAAd;;AAAA;AAAA,wBAAc;GAAd,qBAAc;QAAd;AAAc;AAAA;AAAd;AAAA,yBAAc;AAAd;AAAc;AAAd;AAAA,yDAAc;AAAd,yBAAc;AAAd,8BAAc;AAAd,0BAAc;AAAd,2BAAc;AAAd,4BAAc;AAAA;AAAd;;AAAA;AAAA,wBAAc;GAAd,qBAAc;QAAd;AAAc;AAAA;AAAd;AAAA,yBAAc;AAAd;AAAc;AAAd;AAAA,iBAAc;AAAd,qBAAc;AAAd,eAAc;AAAd,gBAAc;AAAd,UAAc;AAAd,gBAAc;AAAd;AAAc;AAAd;AAAA,6BAAc;AAAd;AAAc;AAAd;AAAA,wBAAc;AAAd,wBAAc;AAAd,mBAAc;AAAd,mBAAc;AAAd,cAAc;AAAd,cAAc;AAAd,cAAc;AAAd,eAAc;AAAd,eAAc;AAAd,aAAc;AAAd,aAAc;AAAd,kBAAc;AAAd,sCAAc;AAAd,8BAAc;AAAd,6BAAc;AAAd,4BAAc;AAAd,eAAc;AAAd,oBAAc;AAAd,sBAAc;AAAd,uBAAc;AAAd,wBAAc;AAAd,kBAAc;AAAd,2BAAc;AAAd,4BAAc;AAAd,sCAAc;AAAd,kCAAc;AAAd,2BAAc;AAAd,sBAAc;AAAd,8BAAc;AAAd,YAAc;AAAd,kBAAc;AAAd,gBAAc;AAAd,iBAAc;AAAd,kBAAc;AAAd,cAAc;AAAd,gBAAc;AAAd,aAAc;AAAd,mBAAc;AAAd,qBAAc;AAAd,2BAAc;AAAd,yBAAc;AAAd,0BAAc;AAAd,2BAAc;AAAd,uBAAc;AAAd,wBAAc;AAAd,yBAAc;AAAd,sBAAc;AAAd,oBAAc;AAAd,sBAAc;AAAd,qBAAc;AAAd;AAAc;AAAd;AAAA,wBAAc;AAAd,wBAAc;AAAd,mBAAc;AAAd,mBAAc;AAAd,cAAc;AAAd,cAAc;AAAd,cAAc;AAAd,eAAc;AAAd,eAAc;AAAd,aAAc;AAAd,aAAc;AAAd,kBAAc;AAAd,sCAAc;AAAd,8BAAc;AAAd,6BAAc;AAAd,4BAAc;AAAd,eAAc;AAAd,oBAAc;AAAd,sBAAc;AAAd,uBAAc;AAAd,wBAAc;AAAd,kBAAc;AAAd,2BAAc;AAAd,4BAAc;AAAd,sCAAc;AAAd,kCAAc;AAAd,2BAAc;AAAd,sBAAc;AAAd,8BAAc;AAAd,YAAc;AAAd,kBAAc;AAAd,gBAAc;AAAd,iBAAc;AAAd,kBAAc;AAAd,cAAc;AAAd,gBAAc;AAAd,aAAc;AAAd,mBAAc;AAAd,qBAAc;AAAd,2BAAc;AAAd,yBAAc;AAAd,0BAAc;AAAd,2BAAc;AAAd,uBAAc;AAAd,wBAAc;AAAd,yBAAc;AAAd,sBAAc;AAAd,oBAAc;AAAd,sBAAc;AAAd,qBAAc;AAAd;AAAc;AACd;;ACDA;AAAA;AAAA;AAAoB;AAApB;;AAAA;AAAA;AAAoB;AAAA;AAApB;;AAAA;AAAA;AAAoB;AAAA;AAApB;;AAAA;AAAA;AAAoB;AAAA;AAApB;;AAAA;AAAA;AAAoB;AAAA;AAApB;;AAAA;AAAA;AAAoB;AAAA;AAApB;;AAAA;AAAA;AAAoB;AAAA;AACpB;;ACDA;AAAA;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,SAAmB;AAAnB;AAAmB;AAAnB;AAAA,SAAmB;AAAnB;AAAmB;AAAnB;AAAA,QAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA,mBAAmB;AAAnB;AAAmB;AAAnB;AAAA,iBAAmB;AAAnB;AAAmB;AAAnB;AAAA,iBAAmB;AAAnB;AAAmB;AAAnB;AAAA,gBAAmB;AAAnB;AAAmB;AAAnB;AAAA,eAAmB;AAAnB;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA,mBAAmB;AAAnB;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA,gBAAmB;AAAnB;AAAmB;AAAnB;AAAA,eAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,gBAAmB;AAAnB,oBAAmB;AAAnB,4BAAmB;AAAnB;AAAmB;AAAnB;AAAA,gBAAmB;AAAnB,oBAAmB;AAAnB,4BAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,aAAmB;AAAnB;AAAmB;AAAnB;AAAA,WAAmB;AAAnB;AAAmB;AAAnB;AAAA,WAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,8BAAmB;AAAnB,8BAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA,qBAAmB;AAAnB;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA,wBAAmB;AAAnB;AAAmB;AAAnB;AAAA,mBAAmB;AAAnB;AAAmB;AAAnB;AAAA,gBAAmB;AAAnB,gBAAmB;AAAnB;AAAmB;AAAnB;AAAA,gBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;;AAAA;AAAA,2BAAmB;AAAnB;AAAmB;;AAAnB;AAAA,eAAmB;AAAnB;AAAmB;AAAA;AAAnB;AAAA;AAAmB;AAAnB;;AAAA;AAAA;AAAmB;;AAAnB;AAAA;AAAmB;AAAA;AAAnB;AAAA;AAAmB;AAAnB;;AAAA;AAAA;AAAmB;AAAA;AAAnB;AAAA;AAAmB;AAAnB;;AAAA;AAAA;AAAmB;AAAA;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,yBAAmB;GAAnB,sBAAmB;QAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,wBAAmB;GAAnB,qBAAmB;QAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,wBAAmB;AAAnB,kEAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,gBAAmB;AAAnB,uBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,+BAAmB;AAAnB;AAAmB;AAAnB;AAAA,4BAAmB;AAAnB;AAAmB;AAAnB;AAAA,8BAAmB;AAAnB;AAAmB;AAAnB;AAAA,uCAAmB;AAAnB;AAAmB;AAAnB;AAAA,8BAAmB;AAAnB;AAAmB;AAAnB;AAAA,2BAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,uFAAmB;AAAnB,mFAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oFAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,sBAAmB;GAAnB;AAAmB;AAAnB;AAAA,oBAAmB;GAAnB;AAAmB;AAAnB;AAAA,mBAAmB;GAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,iBAAmB;AAAnB;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA,qBAAmB;AAAnB;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA,sBAAmB;AAAnB;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA,iBAAmB;AAAnB;AAAmB;AAAnB;AAAA,iBAAmB;AAAnB;AAAmB;AAAnB;AAAA,gBAAmB;AAAnB;AAAmB;AAAnB;AAAA,qBAAmB;AAAnB;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA,qBAAmB;AAAnB;AAAmB;AAAnB;AAAA,mBAAmB;AAAnB;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA,iBAAmB;AAAnB;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA,gBAAmB;AAAnB;AAAmB;AAAnB;AAAA,gBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA,eAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA,mBAAmB;AAAnB;AAAmB;AAAnB;AAAA,eAAmB;AAAnB;AAAmB;AAAnB;AAAA,mBAAmB;AAAnB;AAAmB;AAAnB;AAAA,iBAAmB;AAAnB;AAAmB;AAAnB;AAAA,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kCAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,+BAAmB;AAAnB;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,kFAAmB;AAAnB,8FAAmB;AAAnB;AAAmB;AAAnB;AAAA,mDAAmB;AAAnB,6DAAmB;AAAnB;AAAmB;AAAnB;AAAA,+CAAmB;AAAnB,yDAAmB;AAAnB;AAAmB;AAAnB;AAAA,uFAAmB;AAAnB,mGAAmB;AAAnB;AAAmB;AAAnB;AAAA,qFAAmB;AAAnB,iGAAmB;AAAnB;AAAmB;AAAnB;AAAA,6CAAmB;AAAnB,uDAAmB;AAAnB;AAAmB;AAAnB;AAAA,6CAAmB;AAAnB,uDAAmB;AAAnB;AAAmB;AAAnB;AAAA,wFAAmB;AAAnB,oGAAmB;AAAnB;AAAmB;AAAnB;AAAA,uCAAmB;AAAnB;AAAmB;AAAnB;AAAA,8BAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,2GAAmB;AAAnB,yGAAmB;AAAnB;AAAmB;AAAnB;AAAA,2GAAmB;AAAnB,yGAAmB;AAAnB;AAAmB;AAAnB;AAAA,2GAAmB;AAAnB,yGAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,oBAAmB;AAAnB;AAAmB;AAAnB;AAAA,yBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,6BAAmB;AAAnB,+QAAmB;QAAnB;AAAmB;AAAnB;AAAA,8BAAmB;AAAnB,+QAAmB;QAAnB;AAAmB;AAAnB;AAAA,6BAAmB;AAAnB,+QAAmB;QAAnB;AAAmB;AAAnB;AAAA,8BAAmB;AAAnB,+QAAmB;QAAnB;AAAmB;AAAnB;AAAA,gKAAmB;AAAnB,wJAAmB;AAAnB,iLAAmB;AAAnB,wDAAmB;AAAnB;AAAmB;AAAnB;AAAA,wBAAmB;AAAnB,wDAAmB;AAAnB;AAAmB;AAAnB;AAAA,+FAAmB;AAAnB,wDAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA,uBAAmB;AAAnB,kBAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB,YAAmB;AAAnB,cAAmB;AAAnB,aAAmB;AAAnB,aAAmB;AAAnB;AAAA,QAAmB;AAAnB;AAAmB;AAAnB;AAAA,YAAmB;AAAnB;AAAmB;AAAnB;AAAA,WAAmB;AAAnB;AAAmB;AAAnB;AAAA,SAAmB;AAAnB;AAAmB;AAAnB;AAAA,QAAmB;AAAnB;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AAAnB;AAAA;AAAmB;AACnB;;ACDA;AAAA;AAAA,0BAAkB;AAAlB;AAAkB;AAAlB;AAAA,0BAAkB;AAAlB;AAAkB;AAAlB;AAAA,0BAAkB;AAAlB;AAAkB;AAAlB;AAAA,0BAAkB;AAAlB;AAAkB;AAAlB;AAAA,0BAAkB;AAAlB;AAAkB;AAAlB;AAAA,0BAAkB;AAAlB;AAAkB;AAAlB;AAAA,0BAAkB;AAAlB;AAAkB;AAAlB;AAAA,0BAAkB;AAAlB;AAAkB;AAAlB;AAAA,0BAAkB;AAAlB;AAAkB;AAAlB;AAAA,0BAAkB;AAAlB;AAAkB;AAAlB;AAAA,0BAAkB;AAAlB;AAAkB;AAAlB;AAAA,0BAAkB;AAAlB;AAAkB;AAAlB;AAAA,0BAAkB;AAAlB;AAAkB;AAAlB;AAAA,0BAAkB;AAAlB;AAAkB;AAAlB;AAAA,0BAAkB;AAAlB;AAAkB;AAAlB;AAAA,0BAAkB;AAAlB;AAAkB;AAAlB;AAAA,0BAAkB;AAAlB;AAAkB;AAAlB;AAAA,0BAAkB;AAAlB;AAAkB;AAAlB;AAAA,0BAAkB;AAAlB;AAAkB;AAAlB;AAAA,0BAAkB;AAAlB,sBAAkB;AAAlB;AAAkB;AAAlB;AAAA,0BAAkB;AAAlB,kBAAkB;AAAlB;AAAkB;AAAlB;AAAA,0BAAkB;AAAlB,kBAAkB;AAAlB;AAAkB;AAAlB;AAAA,0BAAkB;AAAlB,kBAAkB;AAAlB;AAAkB;AAAlB;AAAA,0BAAkB;AAAlB,kBAAkB;AAAlB;AAAkB;AAAlB;AAAA,0BAAkB;AAAlB,kBAAkB;AAAlB;AAAkB;AAAlB;AAAA,0BAAkB;AAAlB,kBAAkB;AAAlB;AAAkB;AAAlB;AAAA,0BAAkB;AAAlB,wBAAkB;AAAlB,wDAAkB;AAAlB;AAAkB;AAAlB;AAAA,0BAAkB;AAAlB;AAAkB;AAAlB;AAAA,0BAAkB;AAAlB;AAAkB;AAAlB;AAAA,0BAAkB;AAAlB;AAAkB;AAAlB;AAAA,0BAAkB;AAAlB,iBAAkB;AAAlB;AAAkB;AAAlB;AAAA,0BAAkB;AAAlB;AAAkB;AAAlB;AAAA,0BAAkB;AAAlB;AAAkB;AAAlB;AAAA,0BAAkB;AAAlB;AAAkB;AAAlB;AAAA,0BAAkB;AAAlB;AAAkB;AAAlB;AAAA,0BAAkB;AAAlB;AAAkB;AAAlB;AAAA,0BAAkB;AAAlB,kBAAkB;AAAlB;AAAkB;AAAlB;AAAA,0BAAkB;AAAlB,kBAAkB;AAAlB;AAAkB;AAAlB;AAAA;AAAkB;AAAlB;AAAA,oBAAkB;AAAlB;AAAkB;AAAlB;AAAA,0CAAkB;AAAlB;AAAkB;AAAlB;AAAA,wCAAkB;AAAlB;AAAkB;AAAlB;AAAA;AAAkB;AAAlB;AAAA,oBAAkB;AAAlB;AAAkB;AAAlB;AAAA;AAAkB;AAAlB;AAAA,kBAAkB;AAAlB;AAAkB;AAAlB;AAAA,kBAAkB;AAAlB;AAAkB;AAAlB;AAAA,kBAAkB;AAAlB;AAAkB;AAAlB;AAAA,kBAAkB;AAAlB;AAAkB;AAAlB;AAAA,kBAAkB;AAAlB;AAAkB;AAAlB;AAAA;AAAkB;AAAlB;AAAA;AAAkB;AAAlB;AAAA,oBAAkB;AAAlB;AAAkB;AAAlB;AAAA,oBAAkB;AAAlB;AAAkB;AAAlB;AAAA,oBAAkB;AAAlB;AAAkB;AAAlB;AAAA;AAAkB;AAAlB;AAAA;AAAkB;AAAlB;AAAA;AAAkB;AAAlB;AAAA;AAAkB;AAAlB;AAAA,oBAAkB;AAAlB;AAAkB;AAAlB;AAAA,sBAAkB;AAAlB;AAAkB;AAAlB;AAAA,2GAAkB;AAAlB,yGAAkB;AAAlB;AAAkB;AAAlB;AAAA;AAAkB;AAAlB;AAAA,2GAAkB;AAAlB,yGAAkB;AAAlB;AAAkB;AAAlB;AAAA;AAAkB;AAAlB;AAAA;AAAkB;AAAlB;AAAA,kBAAkB;AAAlB;AAAkB;AAAlB;AAAA;AAAkB;AAAlB;AAAA;AAAkB;AAAlB;AAAA;AAAkB;AAAlB;AAAA;AAAkB;AAAlB;AAAA;AAAkB;AAAlB;AAAA,2GAAkB;AAAlB,yGAAkB;AAAlB;AAAkB;AAAlB;AAAA;AAAkB;AAAlB;AAAA,kBAAkB;AAAlB;AAAkB;AAAlB;AAAA,kBAAkB;AAAlB;AAAkB;AAAlB;AAAA,kBAAkB;AAAlB;AAAkB;AAAlB;AAAA,oBAAkB;AAAlB;AAAkB;AAAlB;AAAA;AAAkB;AAAlB;AAAA;AAAkB;AAAlB;AAAA;AAAkB;AAAlB;AAAA;AAAkB;AAAlB;;AAAA;AAAA;AAAkB;AAAA;AAAlB;;AAAA;AAAA;AAAkB;AAAA;AAAlB;;AAAA;AAAA;AAAkB;;AAAlB;AAAA;AAAkB;AAAA;AAAlB;;AAAA;AAAA;AAAkB;AAAA;AAAlB;;AAAA;AAAA;AAAkB;AAAA;AAAlB;AAAA,uBAAkB;AAAlB;AAAkB;AAAlB;AAAA,sBAAkB;AAAlB;AAAkB;AAAlB;AAAA;AAAkB;AAAlB;AAAA,0BAAkB;AAAlB,2BAAkB;AAAlB;AAAkB;AAAlB;AAAA,0BAAkB;AAAlB,0BAAkB;AAAlB;AAAkB;AAAlB;AAAA;AAAkB;AAAlB;AAAA,uBAAkB;AAAlB;AAAkB;AAAlB;AAAA,sBAAkB;AAAlB;AAAkB;AAAlB;AAAA;AAAkB;AAAlB;AAAA,0BAAkB;AAAlB,2BAAkB;AAAlB;AAAkB;AAAlB;AAAA,0BAAkB;AAAlB,0BAAkB;AAAlB;AAAkB;AAAlB;;AAAA;AAAA,sBAAkB;AAAlB,8BAAkB;AAAlB;AAAkB;AAAA;AAClB;;ACDA;;;;;;;;;;;;;;;;;;;;;EAqBE;;ACrBF;;;;;;;;;;;;;;;;;;;;;EAqBE;;AAEF;EACE;IACE,oBAAgC;IAChC,sBAAkC;IAClC,6DAA6D;IAC7D,0BAA0B;IAC1B,wBAAwB;;IAExB,mBAAmB;EACrB;;EAEA;IACE,oBAAgC;IAChC,sBAAkC;IAClC,gEAAgE;IAChE,sEAAsE;IACtE,wBAAwB;;IAExB,kBAAkB;EACpB;AACF;;AAEA;EACE;IACE,gBAA4B;IAC5B,gBAA4B;IAC5B,kBAAwC;IACxC,kBAAwC;IACxC,mBAA0C;IAC1C,kBAAwC;IACxC,eAAkC;IAClC,gBAAoC;IACpC,eAAkC;IAClC,gBAAoC;IACpC,gBAAoC;IACpC,eAAkC;IAClC,iBAAsC;IACtC,gBAAoC;IACpC,gBAAoC;IACpC,eAAkC;IAClC,eAAkC;IAClC,iBAAsC;IACtC,kBAAwC;IACxC,kBAAwC;;IAExC,wBAAwB;IACxB,kBAAsC;IACtC,iBAAoC;IACpC,eAAoC;;IAEpC,qBAAqB;IACrB,mBAAmB;IACnB,uBAAuB;IACvB,gBAAgB;;IAEhB,aAAa;IACb,oBAAoB;IACpB,eAAe;IACf,oBAAoB;IACpB,eAAe;IACf,eAAe;IACf,qBAAqB;EACvB;;EAEA;IACE,6DAA6D;IAC7D,sEAAsE;EACxE;;EAEA;IACE,qBAAqB;IACrB,eAAe;IACf,mBAAmB;EACrB;;EAEA;IACE,qBAAqB;IACrB,kBAAkB;IAClB,sBAAsB;EACxB;;EAEA;IACE,qBAAqB;IACrB,kBAAkB;IAClB,sBAAsB;EACxB;AACF;;AC7GA;;;;;;;;;;;;;;;;;;;;;EAqBE;;AAEF;EACE;;IAEE,YAAY;IACZ,aAAa;IACb,SAAS;IACT,UAAU;;IAEV,mCAAmC;IACnC,kCAAkC;IAClC,wBAAwB;EAC1B;;EAEA;IACE,0LAAmC;IACnC,eAAe;IACf,gBAAgB;EAClB;;EAEA;;;;;;;;;;;;;;;;;;IAkBE,SAAS;IACT,UAAU;EACZ;;EAEA;IACE,sBAAsB;EACxB;IAGE;;;MAGE,yBAAiB;SAAjB,sBAAiB;cAAjB,iBAAiB;IACnB;;IAEA;MACE,UAAU;MACV,WAAW;IACb;;IAEA;MACE,sEAAsE;IACxE;;IAEA;MACE,sEAAsE;IAiBxE;;MAfE;QACE;;;;SAIC;MACH;;MAEA;QACE;;;;SAIC;MACH;;IAGF;MACE,kCAAkC;IACpC;;IAEA;MACE,eAAe;IACjB;MAGE;;QAEE,UAAU;QACV,WAAW;MACb;MAIA;;QAEE,QAAQ;QACR,SAAS;MACX;;IAGF;MACE,UAAU;IACZ;;IAEA;MACE,kHAA6B;IAC/B;;IAFA;MACE,kHAA6B;IAC/B;;IAEA;MACE,wEAAwE;IAC1E;;IAFA;MACE,wEAAwE;IAC1E;;IAEA;;;MAGE,wCAAwC;MACxC,+BAA+B;;MAE/B,sBAAsB;MACtB,6BAA6B;IAC/B;;IAEA;;MAEE,qBAAqB;MACrB,kBAAkB;IACpB;;IAEA;MACE,sBAAsB;;MAEtB,YAAY;MACZ,cAAc;;MAEd,gBAAgB;MAChB,SAAS;MACT,qFAAqF;MACrF;4DACsD;IAexD;;MAbE;QACE,sBAAsB;;QAEtB,qBAAqB;;QAErB,iBAAiB;;QAEjB,SAAS;QACT;yEACiE;QACjE;8DACsD;MACxD;;IAGF;MACE,eAAe;IACjB;;IAEA;MACE,eAAe;IACjB;;IAEA;MACE,aAAa;MACb,sGAAsG;IACxG;;IAEA;MAEI;AAAA;AAAa;IAgBjB;;MAbE;QAEI;AAAA;AAAa;;QAQb;;;;;AAAA;AAAa;MAEjB;;IAGF;MAEI;AAAA;AAAa;IAgBjB;;MAbE;QAEI;AAAA;AAAa;;QAQb;;;;;AAAA;AAAa;MAEjB;;IAGF;MAEI;AAAA;AAAa;IAgBjB;;MAbE;QAEI;AAAA;AAAa;;QAQb;;;;;AAAA;AAAa;MAEjB;;IAGF;MAEI;AAAA;AAAa;IAgBjB;;MAbE;QAEI;AAAA;AAAa;;QAQb;;;;;AAAA;AAAa;MAEjB;;IAGF;MAEI;AAAA;AAAa;IAgBjB;;MAbE;QAEI;AAAA;AAAa;;QAQb;;;;;AAAA;AAAa;MAEjB;;IAGF;MAGI;;AAAA;AAAa;;MAQb;;;;;AAAA;AAAa;IAEjB;;IAEA;MAOI;;;;;;AAAA;AAAa;IAEjB;;IAEA;MAMI;;;;;AAAA;AAAa;IAEjB;;IAEA;MAKI;;;;AAAA;AAAa;IAEjB;;IAEA;MAII;;;AAAA;AAAa;IAEjB;;IAEA;MAGI;;AAAA;AAAa;IAEjB;;IAEA;MAEI;AAAA;AAAa;IAEjB;;EAGF;IACE,gCAAgC;EAKlC;;IAHE;MACE,wBAAwB;IAC1B;;EAGF;IACE,gCAAgC;EAKlC;;IAHE;MACE,yBAAyB;IAC3B;;EAGF;IACE,sBAAsB;EACxB;;EAEA;IACE,oBAAoB;EACtB;;EAEA;IACE,kBAAkB;EACpB;;EAEA;IACE,mBAAmB;EACrB;;EAEA;;;;;;;;;IASE,uBAAuB;EACzB;AACF;;ACtZA;;;;;;;;;;;;;;;;;;;;;EAqBE;;AAEF;EACE;IACE,iBAAiB;IACjB,gBAAgB;EAClB;;EAEA;IACE,eAAe;IACf,gBAAgB;EAClB;;EAEA;IACE,kBAAkB;IAClB,gBAAgB;EAClB;;EAEA;IACE,iBAAiB;IACjB,gBAAgB;EAClB;;EAEA;IACE,kBAAkB;IAClB,gBAAgB;EAClB;;EAEA;IACE,eAAe;IACf,gBAAgB;EAClB;;EAEA;IACE,gBAAgB;EAMlB;;IAJE;;MAEE,gBAAgB;IAClB;IAIA;;MAEE,gBAAgB;IAClB;;EAGF;;IAEE,SAAS;IACT,yBAAyB;IACzB,4BAA4B;EAM9B;;IAJE;MACE,cAAc;MACd,cAAc;IAChB;;EAGF;IACE,gBAAgB;EAClB;;EAEA;IACE,mBAAmB;EACrB;;EAEA;IACE,aAAa;IACb,mBAAmB;IACnB,gBAAgB;IAChB,kBAAkB;EAyCpB;;IAvCE;MACE,gBAAgB;MAChB,eAAe;;MAEf,cAAc;MACd,eAAe;MACf,mBAAmB;;MAEnB,kBAAkB;MAClB,oHAA8B;MAC9B,uBAAuB;MACvB,mBAAmB;IACrB;;IAEA;MACE,eAAe;MACf,SAAS;MACT,UAAU;IACZ;;IAEA;MACE,eAAe;IAKjB;;MAHE;QACE,aAAa;MACf;MAIA;;QAEE,sEAAsE;MACxE;;MAEA;;QAEE,sEAAsE;MACxE;;EAIJ;IACE,YAAY;;IAEZ,qBAAqB;;IAErB,cAAc;;IAEd,sHAA+B;IAC/B,6CAAqC;YAArC,qCAAqC;;IAErC,uEAAuE;EACzE;;EAEA;IACE,qBAAqB;IACrB,yBAAyB;IACzB,+HAA0C;EAC5C;;EAEA;IACE,eAAe;IACf,yBAAiB;OAAjB,sBAAiB;YAAjB,iBAAiB;;IAEjB,gBAAgB;IAChB,sHAA+B;IAC/B,yCAAiC;YAAjC,iCAAiC;EAKnC;;IAHE;MACE,wCAAgC;cAAhC,gCAAgC;IAClC;;EAGF;;IAEE,sEAAsE;EACxE;;EAEA;;IAEE,sEAAsE;EACxE;AACF;;AClLA;;;;;;;;;;;;;;;;;;;;;EAqBE;;AAEF;EACE;IACE;;;;;;KAMC;IACD;;;;;;KAMC;IACD;;;;;;;;;KASC;EACH;AACF;;AClDA;;;;;;;;;;;;;;;;;;;;;EAqBE;;ACrBF,6CAA6C;;AAE3C;IACE,gBAAgB;IAChB,cAAc;IACd,YAAY;EACd;;AAEA;IACE,gBAAgB;EAClB;;AAEA;;;;;;;;;CASD;;AACC;;;;;;;IAOE,gCAAgC;IAChC,cAAc;EAChB;;AAEA;;;;IAIE,+BAA+B;IAC/B,cAAc;EAChB;;AAEA;;;;;;;;;;IAUE,iCAAiC;IACjC,cAAc;EAChB;;AAEA;;;IAGE,+BAA+B;IAC/B,cAAc;EAChB;;AAEA;;IAEE,iCAAiC;IACjC,cAAc;EAChB;;AAEA;;;IAGE,gCAAgC;IAChC,cAAc;EAChB;;AAEA;;;;IAIE,mCAAmC;IACnC,cAAc;EAChB;;AAEA;IACE,gDAAgD;IAChD,cAAc;EAChB;;AAEA;IACE,iBAAiB;;IAEjB,uCAAuC;IACvC,cAAc;EAChB;;AAEA;IACE,oCAAoC;IACpC,cAAc;EAChB;;AAEA;IACE,kBAAkB;;IAElB,sCAAsC;IACtC,cAAc;EAChB;;AAEA;IACE,iBAAiB;;IAEjB,oCAAoC;IACpC,cAAc;EAChB;;AAEA;IACE,wCAAwC;IACxC,cAAc;IACd,yBAAyB;EAC3B;;AAEA;IACE,uCAAuC;IACvC,cAAc;IACd,yBAAyB;EAC3B;;AAEA;;;;;;IAME,sBAAsB;EACxB;;ACrIF,6CAA6C;;AAE3C;IACE,gBAAgB;IAChB,cAAc;IACd,YAAY;EACd;;AAEA;IACE,gBAAgB;EAClB;;AAEA;;;;;;;;;CASD;;AACC;;;;;;;IAOE,gCAAgC;IAChC,cAAc;EAChB;;AAEA;;;;IAIE,+BAA+B;IAC/B,cAAc;EAChB;;AAEA;;;;;;;;;;IAUE,iCAAiC;IACjC,cAAc;EAChB;;AAEA;;;IAGE,+BAA+B;IAC/B,cAAc;EAChB;;AAEA;;IAEE,iCAAiC;IACjC,cAAc;EAChB;;AAEA;;;IAGE,gCAAgC;IAChC,cAAc;EAChB;;AAEA;;;;IAIE,mCAAmC;IACnC,cAAc;EAChB;;AAEA;IACE,gDAAgD;IAChD,cAAc;EAChB;;AAEA;IACE,iBAAiB;;IAEjB,uCAAuC;IACvC,cAAc;EAChB;;AAEA;IACE,oCAAoC;IACpC,cAAc;EAChB;;AAEA;IACE,kBAAkB;;IAElB,sCAAsC;IACtC,cAAc;EAChB;;AAEA;IACE,iBAAiB;;IAEjB,oCAAoC;IACpC,cAAc;EAChB;;AAEA;IACE,wCAAwC;IACxC,cAAc;IACd,yBAAyB;EAC3B;;AAEA;IACE,uCAAuC;IACvC,cAAc;IACd,yBAAyB;EAC3B;;AAEA;;;;;;IAME,sBAAsB;EACxB;;ACrIF;;;;;;;;;;;;;;;;;;;;;EAqBE;;AAGA;IACE,SAAS;;IAET;uDACmD;IACnD,eAAe;IACf,gBAAgB;IAChB,8BAAsB;OAAtB,2BAAsB;YAAtB,sBAAsB;IACtB,qBAAqB;EACvB;;AAEA;IACE,qBAAqB;IACrB,2BAA2B;IAC3B,kBAAkB;EACpB;;AAEA;;;;;;IAME,YAAY;;IAEZ,qBAAqB;;IAErB,WAAW;IACX,YAAY;;IAEZ,8BAA8B;;IAE9B,2DAA8gB;;YAA9gB,mDAA8gB;EAChhB;;AAEA;;;IAGE,cAAc;EAChB;;AAEA;IACE,kBAAkB;EACpB;;AAEA;IACE,wBAAwB;EAC1B;;AAEA;IACE,cAAc;IACd,qBAAqB;IACrB,6BAA6B;EAC/B;;AAEA;;IAEE,gBAAgB;EAClB;;AAEA;IACE,yCAAiC;YAAjC,iCAAiC;IACjC,mBAAmB;EACrB;;AAEA;;IAEE,gBAAgB;EAClB;;AAEA;IACE,kBAAkB;EACpB;;AAGE;AAAA,kBAAqB;AAArB;AAAqB;;AAGvB;IACE,cAAc;EAChB;;AAEA;;IAEE,kBAAkB;IAClB,cAAc;IACd,cAAc;IACd,wBAAwB;EAC1B;;AAEA;IACE,eAAe;EACjB;;AAEA;IACE,WAAW;EACb;;AAEA;IACE,uBAAuB;IACvB,eAAe;IACf,kBAAkB;IAElB,kBAAe;IAAf,mKAAe;EACjB;;AAEA;;;;IAIE,sBAAsB;IACtB,cAAc;EAChB;;AAEA;IACE,gBAAgB;EAClB;;AAEA;IACE,gBAAgB;;IAEhB,uBAAuB;IACvB,cAAc;IACd,cAAc;IACd,UAAU;;IAEV,uBAAuB;IACvB,SAAS;IACT,mDAAmD;IAEnD,kBAAe;IAAf,mKAAe;EACjB;;AAEA;IACE,0BAA0B;EAC5B;;AAEA;IACE,WAAW;IACX,cAAc;EAChB;;AAEA;IACE,WAAW;IACX,WAAW;IACX,cAAc;EAChB;;AAEA;IACE,cAAc;IACd,cAAc;IACd,mBAAmB;IACnB,yBAAyB;;IAEzB,uBAAkB;;IAAlB,kBAAkB;IAClB,eAAe;IACf,gBAAgB;;IAEhB,SAAS;EACX;;AAEA;;;;;;IAME,gBAAgB;IAChB,gBAAgB;IAChB,iBAAiB;EAKnB;;AAHE;MACE,aAAa;IACf;;AAUA;MACE,aAAa;IACf;;AAGF;IACE,qBAAqB;IACrB,cAAc;IACd,gBAAgB;IAChB,mDAAmD;EACrD;;AAEA;IACE,qBAAqB;IACrB,gBAAgB;IAChB,gBAAgB;IAChB,mDAAmD;EACrD;;AAEA;IACE,iBAAiB;IACjB,gBAAgB;EAClB;;AAEA;IACE,cAAc;IACd,gBAAgB;EAClB;;AAEA;IACE,kBAAkB;IAClB,gBAAgB;EAClB;;AAEA;IACE,iBAAiB;IACjB,gBAAgB;IAEhB,oBAAiB;IAAjB,8JAAiB;EACnB;;AAEA;IACE,gBAAgB;EAKlB;;AAHE;MACE,aAAa;IACf;;AAGF;IACE,SAAS;IACT,cAAc;IACd,cAAc;IACd,yBAAyB;IAEzB,sBAAkB;IAAlB,uKAAkB;EACpB;;AAEA;;IAEE,aAAa;IACb,gBAAgB;IAChB,iBAAiB;EACnB;;AAEA;IACE,wBAAwB;EAC1B;;AAEA;IACE,wBAAwB;EAC1B;;AAEA;;IAEE,4BAA4B;EAC9B;;AAEA;;;;IAIE,4BAA4B;EAC9B;;AAEA;IACE,cAAc;EAChB;;AAEA;;IAEE;kCAC8B;IAE9B,6HAA0C;IAA1C,qBAA0C;IAA1C,sBAA0C;IAA1C,qBAA0C;IAA1C,wBAA0C;IAA1C,mBAA0C;IAA1C,oBAA0C;EAC5C;;AAEA;IACE,gBAAgB;IAChB;kCAC8B;IAC9B,eAAe;IACf,iBAAiB;IA8EjB,kBAAsE;IAAtE,cAAsE;IAAtE,mBAAsE;IAAtE,8BAAsE;IAAtE,iBAAsE;IAAtE,kBAAsE;IAAtE,mKAAsE;EACxE;;AA5EI;AAAA,kBAAqC;AAArC,QAAqC;AAArC,qBAAqC;AAArC,oBAAqC;AAArC,uBAAqC;AAArC,oBAAqC;AAArC;AAAqC;;AAIrC;AAAA,cAA8C;AAA9C,6BAA8C;AAA9C,eAA8C;;MAE9C;AAF8C;;AAKhD;;MAEE,gBAAgB;MAChB,WAAW;MACX,yBAAyB;IAC3B;;AAEA;MACE,aAAa;MACb,WAAW;MACX,yBAAyB;IAC3B;;AAEA;MACE,aAAa;MACb,WAAW;MACX,yBAAyB;IAC3B;;AAEA;MACE,cAAc;MACd,WAAW;MACX,yBAAyB;IAC3B;;AAEA;MACE,eAAe;MACf,WAAW;MACX,yBAAyB;IAC3B;;AAEA;MACE,eAAe;MACf,WAAW;MACX,yBAAyB;IAC3B;;AAEA;MACE,eAAe;MACf,WAAW;MACX,sBAAsB;IACxB;;AAEA;MACE,eAAe;MACf,WAAW;MACX,yBAAyB;IAC3B;;AAGE;AAAA,kBAAmH;AAAnH,qBAAmH;AAAnH,WAAmH;AAAnH,eAAmH;AAAnH,iBAAmH;AAAnH,kBAAmH;AAAnH,mKAAmH;AAAnH,eAAmH;AAAnH,cAAmH;AAAnH,oBAAmH;AAAnH;AAAmH;;AAAnH;AAAA,kBAAmH;AAAnH;AAAmH;;AAEnH;QACE,UAAU;QACV,WAAW;MACb;;AAIA;AAAA,kBAA+F;AAA/F,qBAA+F;AAA/F,WAA+F;AAA/F,aAA+F;AAA/F,yBAA+F;GAA/F,sBAA+F;QAA/F,iBAA+F;AAA/F,iBAA+F;AAA/F,kBAA+F;AAA/F,yKAA+F;AAA/F,eAA+F;AAA/F,cAA+F;AAA/F,oBAA+F;AAA/F;AAA+F;;AAG7F;AAAA;AAAY;;AAOlB;IACE,WAAW;IACX,cAAc;EAChB;;AAEA;IACE,WAAW;IACX,WAAW;IACX,cAAc;EAChB;;AAEA;IACE,wBAAwB;EAC1B;;AAEA;IACE,2BAA2B;EAC7B;;AAEA;IACE,aAAa;EACf;;AAEA;IACE,gBAAgB;EAClB;;AAEA;IACE,wBAAwB;EAC1B;;AAEA;IACE,4BAA4B;EAC9B;;AAEA;IACE,4BAA4B;EAC9B;;AAEA;IACE,wBAAwB;EAC1B;;AAEA;;;;IAIE,aAAa;IACb,gBAAgB;EAClB;;AAEA;IACE,gBAAgB;EAClB;;AAEA;IACE,kBAAkB;EACpB;;AAEA;IACE,UAAU;EACZ;;AAEA;IACE,gBAAgB;IAChB,UAAU;;IAEV,cAAc;IACd,gBAAgB;IAChB,kBAAkB;EACpB;;AAEA;IACE,mBAAmB;IACnB,eAAe;EACjB;;AAEA;IACE,gBAAgB;EAClB;;AAEA;;IAEE,iBAAiB;IAEjB,sBAAoB;IAApB,uKAAoB;EACtB;;AAEA;IACE,qBAAqB;IAErB,sBAAoB;IAApB,uKAAoB;EACtB;;AAGE;AAAA,kBAAc;AAAd;AAAc;;AAGhB;IACE,wDAAwD;IACxD,gDAAgD;EAClD;;AAEA;;IAEE,gBAAgB;IAChB,eAAe;IACf,8BAA8B;EAqChC;;AAnCE;MACE,aAAa;IACf;;AAEA;MACE,gBAAgB;IAClB;;AAEA;MACE,aAAa;IAKf;;AAHE;QACE,aAAa;MACf;;AAIA;AAAA,sBAA2B;AAA3B,uKAA2B;AAA3B,kBAA2B;AAA3B;AAA2B;;AAI3B;AAAA,sBAAgC;AAAhC,wDAAgC;AAAhC,kBAAgC;AAAhC;AAAgC;;AAIhC;AAAA,sBAA0B;AAA1B,uDAA0B;AAA1B,kBAA0B;AAA1B;AAA0B;;AAI1B;AAAA,sBAAgC;AAAhC,uDAAgC;AAAhC,kBAAgC;AAAhC;AAAgC;;AAIhC;AAAA,sBAA8B;AAA9B,uDAA8B;AAA9B,kBAA8B;AAA9B;AAA8B;;ACphBpC;EACE,qBAAqB;;EAErB,UAAU;EACV,cAAc;EACd,kBAAkB;EAClB,mBAAmB;;EAEnB,cAAc;EACd,wBAAwB;;EAExB,4BAA4B;EAC5B,kCAAkC;EAClC,0BAA0B;EAC1B,kDAAkD;EAIlD,yDAA2iB;AAH7iB;;AAMA;;;;EAIE,yDAA+tB;AACjuB;;AAEA;;;;EAIE,yDAAub;AACzb;;AAEA;;;;EAIE,yDAA+Z;AACja;;AAEA;;;;EAIE,yDAAuoB;AACzoB;;AAEA;;;;EAIE,0DAA+iB;AACjjB;;AAEA;;;;EAIE,0DAAmf;AACrf;;AAEA;;;;EAIE,0DAA2hB;AAC7hB;;AAEA;;;;EAIE,0DAAusB;AACzsB;;AAEA;;;;EAIE,0DAAuV;AACzV;;AAEA;;;;EAIE,0DAAuM;AACzM;;AAEA;;;;EAIE,0DAAuS;AACzS;;AAEA;;;;EAIE,0DAA+c;AACjd;;AAEA;;;;EAIE,0DAA2K;AAC7K;;AAEA;;;;EAIE,0DAA+Q;AACjR;;AAEA;;;;EAIE,0DAA2U;AAC7U;;AAEA;;;;EAIE,0DAAuU;AACzU;;AAEA;;;;EAIE,0DAA2R;AAC7R;;AAEA;;;;EAIE,0DAA2U;AAC7U;;AAEA;;;;EAIE,0DAA+V;AACjW;;AAEA;;;;EAIE,0DAAmM;AACrM;;AAEA;;;;EAIE,0DAA+tB;AACjuB;;AAEA;;;;EAIE,0DAA+L;AACjM;;AAEA;;;;EAIE,0DAA2vB;AAC7vB;;AAEA;;;;EAIE,0DAAu3B;AACz3B;;AAEA;;;;EAIE,0DAAmL;AACrL;;AAEA;;;;EAIE,0DAA2W;AAC7W;;AAEA;;;;EAIE,0DAAmN;AACrN;;AAEA;;;;EAIE,0DAAuoB;AACzoB;;AAEA;;;;EAIE,0DAAm8B;AACr8B;;AAEA;;;;EAIE,0DAAmL;AACrL;;AAEA;;;;EAIE,0DAAuT;AACzT;;AAEA;;;;EAIE,0DAAuhB;AACzhB;;AAEA;;;;EAIE,0DAAmiB;AACriB;;AAEA;;;;EAIE,0DAAuQ;AACzQ;;AAEA;;;;EAIE,0DAA2X;AAC7X;;AAEA;;;;EAIE,0DAAmZ;AACrZ;;AAEA;;;;EAIE,0DAAmwB;AACrwB;;AAEA;;;;EAIE,0DAAuX;AACzX;;AAEA;;;;EAIE,0DAAuN;AACzN;;AAEA;;;;EAIE,0DAAmT;AACrT;;AAEA;;;;EAIE,0DAAuT;AACzT;;AAEA;;;;EAIE,0DAAuN;AACzN;;AAEA;;;;EAIE,0DAAuf;AACzf;;AAEA;;;;EAIE,0DAA+Y;AACjZ;;AAEA;;;;EAIE,0DAA2hB;AAC7hB;;AAEA;;;;EAIE,0DAA2U;AAC7U;;AAEA;;;;EAIE,0DAA+L;AACjM;;AAEA;;;;EAIE,0DAA2f;AAC7f;;AAEA;;;;EAIE,0DAAuY;AACzY;;AAEA;;;;EAIE,0DAA2a;AAC7a;;AAEA;;;;EAIE,0DAA2a;AAC7a;;AAEA;;;;EAIE,0DAAuO;AACzO;;AAEA;;;;EAIE,0DAAugB;AACzgB;;AAEA;;;;EAIE,0DAAmb;AACrb;;AAEA;;;;EAIE,0DAA2Z;AAC7Z;;AAEA;;;;EAIE,0DAAud;AACzd;;AAEA;;;;EAIE,0DAA+Z;AACja;;AAEA;;;;EAIE,0DAA+uB;AACjvB;;AAEA;;;;EAIE,0DAAmV;AACrV;;AAEA;;;;EAIE,0DAA+Z;AACja;;AAEA;;;;EAIE,0DAA+iB;AACjjB;;AAEA;;;;EAIE,0DAAuc;AACzc;;AAEA;;;;EAIE,0DAAuM;AACzM;;AAEA;;;;EAIE,0DAAmd;AACrd;;AAEA;;;;EAIE,0DAAmR;AACrR;;AAEA;;;;EAIE,0DAA2qB;AAC7qB;;AAEA;;;;EAIE,0DAAuO;AACzO;;AAEA;;;;EAIE,0DAA+L;AACjM;;AAEA;;;;EAIE,0DAA+gB;AACjhB;;AAEA;;;;EAIE,0DAAmoB;AACroB;;AAEA;;;;EAIE,0DAAmL;AACrL;;AAEA;;;;EAIE,0DAA2O;AAC7O;;AAEA;;;;EAIE,0DAA2Y;AAC7Y;;AAEA;;;;EAIE,0DAAmL;AACrL;;AAEA;;;;EAIE,0DAAuT;AACzT;;AAEA;;;;EAIE,0DAAmoB;AACroB;;AAEA;;;;EAIE,0DAAmN;AACrN;;AAEA;;;;EAIE,0DAA+X;AACjY;;AAEA;;;;EAIE,0DAAuiB;AACziB;;AAEA;;;;EAIE,0DAA+yB;AACjzB;;AAEA;;;;EAIE,0DAA+d;AACje;;AAEA;;;;EAIE,0DAAmZ;AACrZ;;AAEA;;;;EAIE,0DAAmU;AACrU;;AAEA;;;;EAIE,0DAAmO;AACrO;;AAEA;;;;EAIE,0DAAmQ;AACrQ;;AAEA;;;;EAIE,0DAAmiB;AACriB;;AAEA;;;;EAIE,0DAAuW;AACzW;;AAEA;;;;EAIE,0DAAuQ;AACzQ;;AAEA;;;;EAIE,0DAA2a;AAC7a;;AAEA;;;;EAIE,0DAAuM;AACzM;;AAEA;;;;EAIE,0DAA2Q;AAC7Q;;AAEA;;;;EAIE,0DAA2Q;AAC7Q;;AAEA;;;;EAIE,0DAA2L;AAC7L;;AAEA;;;;EAIE,0DAA2c;AAC7c;;AAEA;;;;EAIE,2DAAuW;AACzW;;AAEA;;;;EAIE,2DAA+L;AACjM;;AAEA;;;;EAIE,2DAAue;AACze;;AAEA;;;;EAIE,2DAAmW;AACrW;;AAEA;;;;EAIE,2DAAmM;AACrM;;AAEA;;;;EAIE,2DAAmX;AACrX;;AAEA;;;;EAIE,2DAA+T;AACjU;;AAEA;;;;EAIE,2DAAupB;AACzpB;;AAEA;;;;EAIE,2DAA2V;AAC7V;;AAEA;;;;EAIE,2DAA2Z;AAC7Z;;AAEA;;;;EAIE,2DAAmc;AACrc;;AAEA;;;;EAIE,2DAAmsB;AACrsB;;AAEA;;;;EAIE,2DAAmS;AACrS;;AAEA;;;;EAIE,2DAA2X;AAC7X;;AAEA;;;;EAIE,2DAAmU;AACrU;;AAEA;;;;EAIE,2DAA2K;AAC7K;;AAEA;;;;EAIE,2DAA+b;AACjc;;AAEA;;;;EAIE,2DAAuW;AACzW;;AAEA;;;;EAIE,2DAA2U;AAC7U;;AAEA;;;;EAIE,2DAA+O;AACjP;;AAEA;;;;EAIE,2DAA2X;AAC7X;;AAEA;;;;EAIE,2DAAmL;AACrL;;AAEA;;;;EAIE,2DAAmL;AACrL;;AAEA;;;;EAIE,2DAAme;AACre;;AAEA;;;;EAIE,2DAA+c;AACjd;;AAEA;;;;EAIE,2DAAuO;AACzO;;AAEA;;;;EAIE,2DAA2T;AAC7T;;AAEA;;;;EAIE,2DAA2Y;AAC7Y;;AAEA;;;;EAIE,2DAAmU;AACrU;;AAEA;;;;EAIE,2DAA2M;AAC7M;;AAEA;;;;EAIE,2DAA+U;AACjV;;AAEA;;;;EAIE,2DAA2wB;AAC7wB;;AAEA;;;;EAIE,2DAAukB;AACzkB;;AAEA;;;;EAIE,2DAA+a;AACjb;;AAEA;;;;EAIE,2DAA+O;AACjP;;AAEA;;;;EAIE,2DAAuhC;AACzhC;;AAEA;;;;EAIE,2DAAmf;AACrf;;AAEA;;;;EAIE,2DAAmQ;AACrQ;;AAEA;;;;EAIE,2DAA2f;AAC7f;;AAEA;;;;EAIE,2DAA2K;AAC7K;;AAEA;;;;EAIE,2DAA+T;AACjU;;AAEA;;;;EAIE,2DAAub;AACzb;;AAEA;;;;EAIE,2DAAmpB;AACrpB;;AAEA;;;;EAIE,2DAAmP;AACrP;;AAEA;;;;EAIE,2DAAmsB;AACrsB;;AAEA;;;;EAIE,2DAAmd;AACrd;;AAEA;;;;EAIE,2DAAmzB;AACrzB;;AAEA;;;;EAIE,2DAA+P;AACjQ;;AAEA;;;;EAIE,2DAA21B;EAC31B,wBAAwB;AAC1B;;AAEA;;;;EAIE,2DAAmL;AACrL;;AAEA;;;;EAIE,2DAA+b;AACjc;;AAEA;;;;EAIE,2DAAuT;AACzT;;AAEA;;;;EAIE,2DAAmS;AACrS;;AAEA;;;;EAIE,2DAAmL;AACrL;;AAEA;;;;EAIE,2DAAuV;AACzV;;AAEA;;;;EAIE,2DAA2T;AAC7T;;AAEA;;;;EAIE,2DAAuR;AACzR;;AAEA;;;;EAIE,2DAA+Y;AACjZ;;AAEA;;;;EAIE,2DAAmS;AACrS;;AAEA;;;;EAIE,2DAAuW;AACzW;;AAEA;;;;EAIE,2DAAuX;AACzX;;AAEA;;;;EAIE,2DAAmmB;AACrmB;;AAEA;;;;EAIE,2DAA2T;AAC7T;;AAEA;;;;EAIE,2DAAuL;AACzL;;AAEA;;;;EAIE,2DAAmf;AACrf;;AAEA;;;;EAIE,2DAA+3B;AACj4B;;AAEA;;;;EAIE,2DAAmL;AACrL;;AAEA;;;;EAIE,2DAA2uB;AAC7uB;;AAEA;;;;EAIE,2DAA+hB;AACjiB;;AAEA;;;;EAIE,2DAAmT;AACrT;;AAEA;;;;EAIE,2DAAuuB;AACzuB;;AAEA;;;;EAIE,2DAAuM;AACzM;;AAEA;;;;EAIE,2DAA+M;AACjN;;AAEA;;;;EAIE,2DAA2V;AAC7V;;AAEA;;;;EAIE,2DAAmlB;AACrlB;;AAEA;;;;EAIE,2DAAm3B;AACr3B;;AAEA;;;;EAIE,2DAAma;AACra;;AAEA;;;;EAIE,2DAA+9D;AACj+D;;AAEA;;;;EAIE,2DAAmV;AACrV;;AAEA;;;;EAIE,2DAAuQ;AACzQ;;AAEA;;;;EAIE,2DAAu6B;AACz6B;;AAEA;;;;EAIE,2DAAmV;AACrV;;AAEA;;;;EAIE,2DAAuW;AACzW;;AAEA;;;;EAIE,2DAAuR;AACzR;;AAEA;;;;EAIE,2DAAu3B;AACz3B;;AAEA;;;;EAIE,2DAA2gB;AAC7gB;;AAEA;;;;EAIE,2DAA2L;AAC7L;;AAEA;;;;EAIE,2DAA2T;AAC7T;;AAEA;;;;EAIE,2DAAud;AACzd;;AAEA;;;;EAIE,2DAA2S;AAC7S;;AAEA;;;;EAIE,2DAAma;AACra;;AAEA;;;;EAIE,2DAAuS;AACzS;;AAEA;;;;EAIE,2DAA+iB;AACjjB;;AAEA;;;;EAIE,2DAA2nB;AAC7nB;;AAEA;;;;EAIE,2DAAua;AACza;;AAEA;;;;EAIE,2DAA2jB;AAC7jB;;AAEA;;;;EAIE,2DAAmnB;AACrnB;;AAEA;;;;EAIE,2DAAuW;AACzW;;AAEA;;;;EAIE,2DAAuV;AACzV;;AAEA;;;;EAIE,2DAAuyB;AACzyB;;AAEA;;;;EAIE,2DAA2L;AAC7L;;AAEA;;;;EAIE,2DAAuP;AACzP;;AAEA;;;;EAIE,2DAAmT;AACrT;;AAEA;;;;EAIE,2DAAuT;AACzT;;AAEA;;;;EAIE,2DAA2S;AAC7S;;AAEA;;;;EAIE,2DAA+iB;AACjjB;;AAEA;;;;EAIE,2DAAuM;AACzM;;AAEA;;;;EAIE,2DAA+S;AACjT;;AAEA;;;;EAIE,2DAA+P;AACjQ;;AAEA;;;;EAIE,2DAAukB;AACzkB;;AAEA;;;;EAIE,2DAA+W;AACjX;;AAEA;;;;EAIE,2DAA+V;AACjW;;AAEA;;;;EAIE,2DAA28B;AAC78B;;AAEA;;;;EAIE,2DAAmjB;AACrjB;;AAEA;;;;EAIE,2DAA+gB;AACjhB;;AAEA;;;;EAIE,2DAA2e;AAC7e;;AAEA;;;;EAIE,2DAA+M;AACjN;;AAEA;;;;;;EAME,2DAAmN;AACrN;;AAEA;;;;;;EAME,2DAA+b;AACjc;;AAEA;;;;EAIE,2DAA+X;AACjY;;AAEA;;;;EAIE,2DAA+gB;AACjhB;;AAEA;;;;EAIE,2DAAuR;AACzR;;AAEA;;;;EAIE,2DAA2f;AAC7f;;AAEA;;;;EAIE,2DAA+U;AACjV;;AAEA;;;;EAIE,2DAA2T;AAC7T;;AAEA;;;;EAIE,2DAAmuB;AACruB;;AAEA;;;;EAIE,2DAAm5C;AACr5C;;AAEA;;;;EAIE,2DAA+V;AACjW;;AAEA;;;;EAIE,2DAA2a;AAC7a;;AAEA;;;;EAIE,2DAAmL;AACrL;;AAEA;;;;EAIE,2DAA+V;AACjW;;AAEA;;;;EAIE,2DAA2d;AAC7d;;ACtkDA;;;;;EAKE;;AAEF;EACE,sBAAsB;AAKxB;;AAHE;IACE,aAAa;EACf;;AAGF;EACE,uBAAuB;EACvB,yBAAyB;EACzB,eAAe;AAkBjB;;AAhBE;IACE,sHAAkC;IAClC,6HAA+C;EACjD;;AAEA;IACE,sEAAsE;EACxE;;AAEA;IACE,sEAAsE;EACxE;;AAEA;IACE,qBAAqB;EACvB;;AAGF;EACE,SAAS;EACT,kBAAkB;AACpB;;AAEA;EACE,iBAAiB;EACjB,gBAAgB;EAChB,qBAAqB;EACrB,sCAA8B;UAA9B,8BAA8B;EAC9B,6BAA6B;AAC/B;;AAEA;;EAEE,mBAAmB;EACnB,gBAAgB;EAChB,oBAAoB;EACpB,sCAA8B;UAA9B,8BAA8B;EAC9B,6BAA6B;AAC/B;;AAGE;;IAEE,6HAA6C;EAC/C;;AAEA;IACE,kCAAkC;EACpC;;AAGF;EACE,qBAAqB;AAKvB;;AAHE;IACE,mCAAmC;EACrC;;AAGF;EACE,UAAU;EACV,cAAc;EACd,0IAAsD;AAoBxD;;AAlBE;IACE,SAAS;IACT,yBAAyB;IACzB,qBAAqB;IACrB,0CAA0C;EAK5C;;AAHE;MACE,cAAc;IAChB;;AAGF;IACE,2BAA2B;EAK7B;;AAHE;MACE,oBAAoB;IACtB;;ACpGJ;;;;;EAKE;;AAEF;EACE,oHAA8B;EAC9B,4BAA4B;AAC9B;;AAEA;EACE,yBAAiB;KAAjB,sBAAiB;UAAjB,iBAAiB;;EAEjB,sEAAsE;EACtE,cAAc;EACd,gBAAgB;EAChB,gBAAgB;EAChB,kBAAkB;EAClB,oBAAoB;EACpB,iBAAiB;EACjB,gBAAgB;AAClB;;AAEA,gBAAgB;;AAChB;EACE,cAAc;EACd,eAAe;EACf,YAAY;AACd;;AAEA,gBAAgB;;AAChB;EACE,cAAc;EACd,mBAAmB;EACnB,oBAAoB;AACtB;;AAIE;;;;IAEE,gBAAgB;EAClB;;AAEA;IACE,kBAAkB;EACpB;;AAEA;IACE,YAAY;EACd;;AAGF;EACE,kBAAkB;AACpB;;AAEA;EACE,gCAAgC;AA+DlC;;AA7DE;IACE,kBAAkB;IAClB,MAAM;IACN,mBAAmB;;IAEnB,qBAAqB;;IAErB,kBAAkB;;IAElB,YAAY;IACZ,4BAA4B;EAC9B;;AAEA;;IAEE,gBAAgB;IAChB,WAAW;IACX,yBAAyB;EAC3B;;AAEA;IACE,aAAa;IACb,WAAW;IACX,yBAAyB;EAC3B;;AAEA;IACE,aAAa;IACb,WAAW;IACX,yBAAyB;EAC3B;;AAEA;IACE,cAAc;IACd,WAAW;IACX,yBAAyB;EAC3B;;AAEA;IACE,eAAe;IACf,WAAW;IACX,yBAAyB;EAC3B;;AAEA;IACE,eAAe;IACf,WAAW;IACX,yBAAyB;EAC3B;;AAEA;IACE,eAAe;IACf,WAAW;IACX,sBAAsB;EACxB;;AAEA;IACE,eAAe;IACf,WAAW;IACX,yBAAyB;EAC3B;;AC1HF;;;;;EAKE;;AAIE;;;;;MAKE,WAAW;IACb;;AAEA;MACE,WAAW;IACb;;AAEA;;;;MAIE,cAAc;IAChB;;AAEA;MACE,cAAc;IAChB;;AAEA;;;MAGE,cAAc;IAChB;;AAEA;;;;MAIE,cAAc;IAChB;;AAEA;;;;;MAKE,cAAc;IAChB;;AAEA;;;;;MAKE,cAAc;IAChB;;AAEA;;;MAGE,cAAc;IAChB;;AAEA;;MAEE,gBAAgB;IAClB;;AAEA;MACE,kBAAkB;IACpB;;AAEA;MACE,YAAY;IACd;;AAEA;MACE,cAAc;IAChB;;AClFJ;;;;;EAKE;;AAIE;;;;MAIE,cAAc;IAChB;;AAEA;MACE,WAAW;IACb;;AAEA;MACE,YAAY;IACd;;AAEA;;;;;;;MAOE,WAAW;IACb;;AAEA;;;;;;MAME,WAAW;IACb;;AAEA;;;;;MAKE,oEAAoE;MACpE,cAAc;MACd,mCAAmC;IACrC;;AAEA;;;MAGE,WAAW;IACb;;AAEA;;MAEE,cAAc;IAChB;;AAEA;;;MAGE,WAAW;IACb",sourcesContent:['/*\n * React Fabric\n * @version : 1.0.0\n * @copyright : 2024\n * @author : Adarsh Pastakia\n */\n\n@import url("@react-fabric/core/css/styles.css");\n@import url("@react-fabric/mdx/css/styles.css");\n@import url("@react-fabric/core/css/flags.rect.css");\n@import url("./_overrides.css");\n@import url("./_prism.css");\n@import url("./_prism-dark.css");\n@import url("./_prism-light.css");\n','/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer colors, reset, comp, util, var;\n\n@import url("tailwindcss/base") layer(reset);\n@import url("tailwindcss/components") layer(comp);\n@import url("tailwindcss/utilities") layer(util);\n@import url("tailwindcss/variants") layer(var);\n\n@import url("./reset/index.css");\n',"@tailwind base;\n","@tailwind components;\n","@tailwind utilities;\n","@tailwind variants;\n",'/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@import url("./_theme.css");\n@import url("./_reset.css");\n@import url("./_text.css");\n@import url("./_gradients.css");\n','/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer colors {\n [data-color-scheme="light"] {\n --fabric-bg: theme(colors.white);\n --fabric-text: theme(colors.black);\n --fabric-input: color-mix(in lab, var(--fabric-bg) 90%, #fff);\n --fabric-input-focus: #fff;\n --fabric-shadow: #8ba0b0;\n\n color-scheme: light;\n }\n\n [data-color-scheme="dark"] {\n --fabric-bg: theme(colors.black);\n --fabric-text: theme(colors.white);\n --fabric-input: color-mix(in lab, var(--fabric-bg) 80%, #0a1218);\n --fabric-input-focus: color-mix(in lab, var(--fabric-bg) 60%, #0a1218);\n --fabric-shadow: #010101;\n\n color-scheme: dark;\n }\n}\n\n@layer reset {\n :root {\n --black: theme(colors.black);\n --white: theme(colors.white);\n --scarlet: theme(colors.scarlet.DEFAULT);\n --pumpkin: theme(colors.pumpkin.DEFAULT);\n --marigold: theme(colors.marigold.DEFAULT);\n --avacado: theme(colors.avacado.DEFAULT);\n --jade: theme(colors.jade.DEFAULT);\n --denim: theme(colors.denim.DEFAULT);\n --iris: theme(colors.iris.DEFAULT);\n --lilac: theme(colors.lilac.DEFAULT);\n --coral: theme(colors.coral.DEFAULT);\n --wood: theme(colors.wood.DEFAULT);\n --silver: theme(colors.silver.DEFAULT);\n --steel: theme(colors.steel.DEFAULT);\n --olive: theme(colors.olive.DEFAULT);\n --sand: theme(colors.sand.DEFAULT);\n --info: theme(colors.info.DEFAULT);\n --danger: theme(colors.danger.DEFAULT);\n --success: theme(colors.success.DEFAULT);\n --warning: theme(colors.warning.DEFAULT);\n\n /* app default primary */\n --primary: theme(colors.denim.DEFAULT);\n --accent: theme(colors.jade.DEFAULT);\n --tint: theme(colors.silver.DEFAULT);\n\n /* default rounding */\n --rounding: 0.25rem;\n --rounding-cap: 0.25rem;\n --gutter: 0.5rem;\n\n /* z levels */\n --z-overlay-mask: 25;\n --z-overlay: 30;\n --z-popover-mask: 45;\n --z-popover: 50;\n --z-tooltip: 60;\n --z-notifications: 60;\n }\n\n [data-color-scheme] {\n color: color-mix(in lab, var(--fabric-text) 95%, var(--tint));\n background-color: color-mix(in lab, var(--fabric-bg) 92%, var(--tint));\n }\n\n [data-rounding="sm"] {\n /* default rounding */\n --rounding: 2px;\n --rounding-cap: 2px;\n }\n\n [data-rounding="md"] {\n /* default rounding */\n --rounding: 0.5rem;\n --rounding-cap: 0.5rem;\n }\n\n [data-rounding="full"] {\n /* default rounding */\n --rounding: 9999px;\n --rounding-cap: 0.5rem;\n }\n}\n','/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer reset {\n html,\n body {\n width: 100vw;\n height: 100vh;\n margin: 0;\n padding: 0;\n\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n vertical-align: baseline;\n }\n\n :root {\n font-family: theme(fontFamily.sans);\n font-size: 16px;\n line-height: 1.5;\n }\n\n p,\n div,\n h1,\n h2,\n h3,\n h4,\n h5,\n h6,\n input,\n textarea,\n fieldset,\n section,\n aside,\n header,\n footer,\n nav,\n menu,\n dialog {\n margin: 0;\n padding: 0;\n }\n\n fieldset {\n min-inline-size: unset;\n }\n\n body {\n a,\n label,\n button {\n user-select: none;\n }\n\n ::-webkit-scrollbar {\n width: 6px;\n height: 6px;\n }\n\n ::-webkit-scrollbar-track {\n background-color: color-mix(in lab, var(--fabric-bg) 72%, var(--tint));\n }\n\n ::-webkit-scrollbar-thumb {\n background-color: color-mix(in lab, var(--fabric-bg) 35%, var(--tint));\n\n &:hover {\n background-color: color-mix(\n in lab,\n var(--fabric-text) 50%,\n var(--tint)\n );\n }\n\n &:active {\n background-color: color-mix(\n in lab,\n var(--fabric-bg) 50%,\n var(--fabric-text)\n );\n }\n }\n\n ::-webkit-scrollbar-corner {\n background-color: var(--fabric-bg);\n }\n\n input:not(:disabled)::-webkit-file-upload-button {\n cursor: pointer;\n }\n\n .scroll-thin {\n &::-webkit-scrollbar,\n & ::-webkit-scrollbar {\n width: 3px;\n height: 3px;\n }\n }\n\n .scroll-hide {\n &::-webkit-scrollbar,\n & ::-webkit-scrollbar {\n width: 0;\n height: 0;\n }\n }\n\n :focus-visible {\n outline: 0;\n }\n\n ::placeholder {\n color: theme(colors.tint.400);\n }\n\n ::selection {\n background-color: color-mix(in lab, var(--accent) 35%, var(--fabric-bg));\n }\n\n *,\n ::before,\n ::after {\n --tw-ring-offset-color: var(--fabric-bg);\n --tw-ring-color: var(--primary);\n\n box-sizing: border-box;\n text-underline-offset: 0.25em;\n }\n\n img,\n svg {\n display: inline-block;\n fill: currentcolor;\n }\n\n hr {\n transform: scaleY(0.5);\n\n height: auto;\n margin: 1rem 0;\n\n background: none;\n border: 0;\n border-top: 3px solid color-mix(in lab, var(--fabric-bg) 95%, var(--tint)) !important;\n border-bottom: 2px solid\n color-mix(in lab, var(--fabric-bg) 50%, var(--tint));\n\n &.vertical {\n transform: scaleX(0.5);\n\n display: inline-block;\n\n margin: 0 0.25rem;\n\n border: 0;\n border-inline-start: 3px solid\n color-mix(in lab, var(--fabric-bg) 95%, var(--tint)) !important;\n border-inline-end: 2px solid\n color-mix(in lab, var(--fabric-bg) 50%, var(--tint));\n }\n }\n\n label {\n cursor: inherit;\n }\n\n [data-clickable="true"] {\n cursor: pointer;\n }\n\n .sectioned {\n display: grid;\n grid-template: "head head head" auto "side-s content side-e" 1fr "foot foot foot" auto / auto 1fr auto;\n }\n\n @media (min-width: theme(screens.xs)) {\n .hide-xs {\n @apply hidden;\n }\n\n @media (max-width: theme(screens.sm)) {\n .hide-xs-only {\n @apply hidden;\n }\n\n .show-sm-only,\n .show-md-only,\n .show-lg-only,\n .show-xl-only,\n .show-2xl-only {\n @apply hidden;\n }\n }\n }\n\n @media (min-width: theme(screens.sm)) {\n .hide-sm {\n @apply hidden;\n }\n\n @media (max-width: theme(screens.md)) {\n .hide-sm-only {\n @apply hidden;\n }\n\n .show-xs-only,\n .show-md-only,\n .show-lg-only,\n .show-xl-only,\n .show-2xl-only {\n @apply hidden;\n }\n }\n }\n\n @media (min-width: theme(screens.md)) {\n .hide-md {\n @apply hidden;\n }\n\n @media (max-width: theme(screens.lg)) {\n .hide-md-only {\n @apply hidden;\n }\n\n .show-xs-only,\n .show-sm-only,\n .show-lg-only,\n .show-xl-only,\n .show-2xl-only {\n @apply hidden;\n }\n }\n }\n\n @media (min-width: theme(screens.lg)) {\n .hide-lg {\n @apply hidden;\n }\n\n @media (max-width: theme(screens.xl)) {\n .hide-lg-only {\n @apply hidden;\n }\n\n .show-xs-only,\n .show-sm-only,\n .show-md-only,\n .show-xl-only,\n .show-2xl-only {\n @apply hidden;\n }\n }\n }\n\n @media (min-width: theme(screens.xl)) {\n .hide-xl {\n @apply hidden;\n }\n\n @media (max-width: theme(screens.2xl)) {\n .hide-xl-only {\n @apply hidden;\n }\n\n .show-xs-only,\n .show-sm-only,\n .show-md-only,\n .show-lg-only,\n .show-2xl-only {\n @apply hidden;\n }\n }\n }\n\n @media (min-width: theme(screens.2xl)) {\n .hide-2xl,\n .hide-2xl-only {\n @apply hidden;\n }\n\n .show-xs-only,\n .show-sm-only,\n .show-md-only,\n .show-lg-only,\n .show-xl-only {\n @apply hidden;\n }\n }\n\n @media (max-width: theme(screens.xs)) {\n .show-xs,\n .show-sm,\n .show-md,\n .show-lg,\n .show-xl,\n .show-2xl {\n @apply hidden;\n }\n }\n\n @media (max-width: theme(screens.sm)) {\n .show-sm,\n .show-md,\n .show-lg,\n .show-xl,\n .show-2xl {\n @apply hidden;\n }\n }\n\n @media (max-width: theme(screens.md)) {\n .show-md,\n .show-lg,\n .show-xl,\n .show-2xl {\n @apply hidden;\n }\n }\n\n @media (max-width: theme(screens.lg)) {\n .show-lg,\n .show-xl,\n .show-2xl {\n @apply hidden;\n }\n }\n\n @media (max-width: theme(screens.xl)) {\n .show-xl,\n .show-2xl {\n @apply hidden;\n }\n }\n\n @media (max-width: theme(screens.2xl)) {\n .show-2xl {\n @apply hidden;\n }\n }\n }\n\n .scroll-snap-start {\n scroll-snap-type: both proximity;\n\n & > * {\n scroll-snap-align: start;\n }\n }\n\n .scroll-snap-center {\n scroll-snap-type: both proximity;\n\n & > * {\n scroll-snap-align: center;\n }\n }\n\n .break-words {\n word-break: break-word;\n }\n\n .outline-thin {\n outline-width: 0.5px;\n }\n\n .outline {\n outline-width: 1px;\n }\n\n .container {\n margin-inline: auto;\n }\n\n p,\n pre,\n h1,\n h2,\n h3,\n h4,\n h5,\n h6,\n .mixed-lang {\n unicode-bidi: plaintext;\n }\n}\n','/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer comp {\n h1 {\n font-size: 2.5rem;\n font-weight: 500;\n }\n\n h2 {\n font-size: 2rem;\n font-weight: 500;\n }\n\n h3 {\n font-size: 1.75rem;\n font-weight: 500;\n }\n\n h4 {\n font-size: 1.5rem;\n font-weight: 500;\n }\n\n h5 {\n font-size: 1.25rem;\n font-weight: 500;\n }\n\n h6 {\n font-size: 1rem;\n font-weight: 600;\n }\n\n p {\n line-height: 1.5;\n\n & + p,\n & + article {\n margin-top: 1rem;\n }\n }\n\n article {\n & + p,\n & + article {\n margin-top: 1rem;\n }\n }\n\n ul,\n ol {\n margin: 0;\n padding-inline-start: 2em;\n list-style-position: outside;\n\n & > li {\n padding: 0 2px;\n line-height: 2;\n }\n }\n\n ul {\n list-style: disc;\n }\n\n ol {\n list-style: decimal;\n }\n\n dl {\n display: flex;\n flex-flow: row wrap;\n margin: 0 0 1rem;\n line-height: 1.5em;\n\n dt {\n overflow: hidden;\n flex: 0 0 33.3%;\n\n min-width: 6em;\n max-width: 12em;\n padding-inline: 1em;\n\n font-size: 0.875em;\n color: theme(textColor.dimmed);\n text-overflow: ellipsis;\n white-space: nowrap;\n }\n\n dd {\n flex: 1 1 66.6%;\n margin: 0;\n padding: 0;\n }\n\n &.align-end > dt {\n text-align: end;\n\n &::after {\n content: ": ";\n }\n }\n\n &.bg-alternate {\n & > dt:nth-of-type(odd),\n & > dd:nth-of-type(odd) {\n background-color: color-mix(in lab, var(--fabric-bg) 99%, var(--tint));\n }\n\n & > dt:nth-of-type(even),\n & > dd:nth-of-type(even) {\n background-color: color-mix(in lab, var(--fabric-bg) 92%, var(--tint));\n }\n }\n }\n\n abbr {\n cursor: help;\n\n display: inline-block;\n\n padding: 0 2px;\n\n color: theme(colors.accent.700);\n text-decoration: underline dashed 1px;\n\n background-color: color-mix(in lab, currentcolor 10%, var(--fabric-bg));\n }\n\n mark {\n display: inline-block;\n color: var(--fabric-text);\n background-color: theme(colors.accent.100);\n }\n\n .link {\n cursor: pointer;\n user-select: none;\n\n font-weight: 500;\n color: theme(colors.accent.600);\n text-decoration: underline dotted;\n\n &:hover {\n text-decoration: underline solid;\n }\n }\n\n .bg-odd,\n .bg-alternate > :nth-child(odd) {\n background-color: color-mix(in lab, var(--fabric-bg) 99%, var(--tint));\n }\n\n .bg-even,\n .bg-alternate > :nth-child(even) {\n background-color: color-mix(in lab, var(--fabric-bg) 92%, var(--tint));\n }\n}\n','/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@layer reset {\n :root {\n --click-gradient: linear-gradient(\n var(--fabric-gradient-deg, 180deg),\n rgb(255 255 255 / 8%) 0%,\n transparent 25%,\n transparent 50%,\n rgb(0 0 0 / 8%) 100%\n );\n --active-gradient: linear-gradient(\n 0deg,\n rgb(255 255 255 / 5%) 0%,\n transparent 15%,\n transparent 85%,\n rgb(0 0 0 / 5%) 100%\n );\n --progress-gradient: linear-gradient(\n -45deg,\n color(from var(--white) srgb r g b / 10%) 25%,\n color(from var(--tint) srgb r g b / 10%) 25%,\n color(from var(--tint) srgb r g b / 10%) 50%,\n color(from var(--white) srgb r g b / 10%) 50%,\n color(from var(--white) srgb r g b / 10%) 75%,\n color(from var(--tint) srgb r g b / 10%) 75%,\n color(from var(--tint) srgb r g b / 10%)\n );\n }\n}\n','/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n@import url("./_hljs.light.css");\n@import url("./_hljs.dark.css");\n@import url("./_markdown.css");\n','/* stylelint-disable selector-class-pattern */\n[data-color-scheme="light"] {\n pre code.hljs {\n overflow-x: auto;\n display: block;\n padding: 1em;\n }\n\n code.hljs {\n padding: 3px 5px;\n }\n\n /*!\n Theme: GitHub\n Description: Light theme as seen on github.com\n Author: github.com\n Maintainer: @Hirse\n Updated: 2021-05-15\n\n Outdated base version: https://github.com/primer/github-syntax-light\n Current colors taken from GitHub\'s CSS\n*/\n .hljs-doctag,\n .hljs-keyword,\n .hljs-meta .hljs-keyword,\n .hljs-template-tag,\n .hljs-template-variable,\n .hljs-type,\n .hljs-variable.language_ {\n /* prettylights-syntax-keyword */\n color: #d73a49;\n }\n\n .hljs-title,\n .hljs-title.class_,\n .hljs-title.class_.inherited__,\n .hljs-title.function_ {\n /* prettylights-syntax-entity */\n color: #6f42c1;\n }\n\n .hljs-attr,\n .hljs-attribute,\n .hljs-literal,\n .hljs-meta,\n .hljs-number,\n .hljs-operator,\n .hljs-variable,\n .hljs-selector-attr,\n .hljs-selector-class,\n .hljs-selector-id {\n /* prettylights-syntax-constant */\n color: #005cc5;\n }\n\n .hljs-regexp,\n .hljs-string,\n .hljs-meta .hljs-string {\n /* prettylights-syntax-string */\n color: #032f62;\n }\n\n .hljs-built_in,\n .hljs-symbol {\n /* prettylights-syntax-variable */\n color: #e36209;\n }\n\n .hljs-comment,\n .hljs-code,\n .hljs-formula {\n /* prettylights-syntax-comment */\n color: #6a737d;\n }\n\n .hljs-name,\n .hljs-quote,\n .hljs-selector-tag,\n .hljs-selector-pseudo {\n /* prettylights-syntax-entity-tag */\n color: #22863a;\n }\n\n .hljs-subst {\n /* prettylights-syntax-storage-modifier-import */\n color: #24292e;\n }\n\n .hljs-section {\n font-weight: bold;\n\n /* prettylights-syntax-markup-heading */\n color: #005cc5;\n }\n\n .hljs-bullet {\n /* prettylights-syntax-markup-list */\n color: #735c0f;\n }\n\n .hljs-emphasis {\n font-style: italic;\n\n /* prettylights-syntax-markup-italic */\n color: #24292e;\n }\n\n .hljs-strong {\n font-weight: bold;\n\n /* prettylights-syntax-markup-bold */\n color: #24292e;\n }\n\n .hljs-addition {\n /* prettylights-syntax-markup-inserted */\n color: #22863a;\n background-color: #f0fff4;\n }\n\n .hljs-deletion {\n /* prettylights-syntax-markup-deleted */\n color: #b31d28;\n background-color: #ffeef0;\n }\n\n .hljs-char.escape_,\n .hljs-link,\n .hljs-params,\n .hljs-property,\n .hljs-punctuation,\n .hljs-tag {\n /* purposely ignored */\n }\n}\n','/* stylelint-disable selector-class-pattern */\n[data-color-scheme="dark"] {\n pre code.hljs {\n overflow-x: auto;\n display: block;\n padding: 1em;\n }\n\n code.hljs {\n padding: 3px 5px;\n }\n\n /*!\n Theme: GitHub Dark\n Description: Dark theme as seen on github.com\n Author: github.com\n Maintainer: @Hirse\n Updated: 2021-05-15\n\n Outdated base version: https://github.com/primer/github-syntax-dark\n Current colors taken from GitHub\'s CSS\n*/\n .hljs-doctag,\n .hljs-keyword,\n .hljs-meta .hljs-keyword,\n .hljs-template-tag,\n .hljs-template-variable,\n .hljs-type,\n .hljs-variable.language_ {\n /* prettylights-syntax-keyword */\n color: #ff7b72;\n }\n\n .hljs-title,\n .hljs-title.class_,\n .hljs-title.class_.inherited__,\n .hljs-title.function_ {\n /* prettylights-syntax-entity */\n color: #d2a8ff;\n }\n\n .hljs-attr,\n .hljs-attribute,\n .hljs-literal,\n .hljs-meta,\n .hljs-number,\n .hljs-operator,\n .hljs-variable,\n .hljs-selector-attr,\n .hljs-selector-class,\n .hljs-selector-id {\n /* prettylights-syntax-constant */\n color: #79c0ff;\n }\n\n .hljs-regexp,\n .hljs-string,\n .hljs-meta .hljs-string {\n /* prettylights-syntax-string */\n color: #a5d6ff;\n }\n\n .hljs-built_in,\n .hljs-symbol {\n /* prettylights-syntax-variable */\n color: #ffa657;\n }\n\n .hljs-comment,\n .hljs-code,\n .hljs-formula {\n /* prettylights-syntax-comment */\n color: #8b949e;\n }\n\n .hljs-name,\n .hljs-quote,\n .hljs-selector-tag,\n .hljs-selector-pseudo {\n /* prettylights-syntax-entity-tag */\n color: #7ee787;\n }\n\n .hljs-subst {\n /* prettylights-syntax-storage-modifier-import */\n color: #c9d1d9;\n }\n\n .hljs-section {\n font-weight: bold;\n\n /* prettylights-syntax-markup-heading */\n color: #1f6feb;\n }\n\n .hljs-bullet {\n /* prettylights-syntax-markup-list */\n color: #f2cc60;\n }\n\n .hljs-emphasis {\n font-style: italic;\n\n /* prettylights-syntax-markup-italic */\n color: #c9d1d9;\n }\n\n .hljs-strong {\n font-weight: bold;\n\n /* prettylights-syntax-markup-bold */\n color: #c9d1d9;\n }\n\n .hljs-addition {\n /* prettylights-syntax-markup-inserted */\n color: #aff5b4;\n background-color: #033a16;\n }\n\n .hljs-deletion {\n /* prettylights-syntax-markup-deleted */\n color: #ffdcd7;\n background-color: #67060c;\n }\n\n .hljs-char.escape_,\n .hljs-link,\n .hljs-params,\n .hljs-property,\n .hljs-punctuation,\n .hljs-tag {\n /* purposely ignored */\n }\n}\n','/*\n * React Fabric\n * @version: 1.0.0\n *\n *\n * The MIT License (MIT)\n * Copyright (c) 2024 Adarsh Pastakia\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software\n * and associated documentation files (the "Software"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\n * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\n * subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial\n * portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED\n * TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\n * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n */\n\n.markdown-body {\n &.markdown-body {\n margin: 0;\n\n font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial,\n sans-serif, "Apple Color Emoji", "Segoe UI Emoji";\n font-size: 16px;\n line-height: 1.5;\n text-size-adjust: 100%;\n word-wrap: break-word;\n }\n\n &.markdown-body .octicon {\n display: inline-block;\n vertical-align: text-bottom;\n fill: currentcolor;\n }\n\n &.markdown-body h1:hover .anchor .octicon-link::before,\n &.markdown-body h2:hover .anchor .octicon-link::before,\n &.markdown-body h3:hover .anchor .octicon-link::before,\n &.markdown-body h4:hover .anchor .octicon-link::before,\n &.markdown-body h5:hover .anchor .octicon-link::before,\n &.markdown-body h6:hover .anchor .octicon-link::before {\n content: " ";\n\n display: inline-block;\n\n width: 16px;\n height: 16px;\n\n background-color: currentcolor;\n\n mask-image: url("data:image/svg+xml,");\n }\n\n &.markdown-body details,\n &.markdown-body figcaption,\n &.markdown-body figure {\n display: block;\n }\n\n &.markdown-body summary {\n display: list-item;\n }\n\n &.markdown-body [hidden] {\n display: none !important;\n }\n\n &.markdown-body a {\n color: #0969da;\n text-decoration: none;\n background-color: transparent;\n }\n\n &.markdown-body a:active,\n &.markdown-body a:hover {\n outline-width: 0;\n }\n\n &.markdown-body abbr[title] {\n text-decoration: underline dotted;\n border-bottom: none;\n }\n\n &.markdown-body b,\n &.markdown-body strong {\n font-weight: 600;\n }\n\n &.markdown-body dfn {\n font-style: italic;\n }\n\n &.markdown-body mark {\n @apply bg-warning-300;\n }\n\n &.markdown-body small {\n font-size: 90%;\n }\n\n &.markdown-body sub,\n &.markdown-body sup {\n position: relative;\n font-size: 75%;\n line-height: 0;\n vertical-align: baseline;\n }\n\n &.markdown-body sub {\n bottom: -0.25em;\n }\n\n &.markdown-body sup {\n top: -0.5em;\n }\n\n &.markdown-body img {\n box-sizing: content-box;\n max-width: 100%;\n border-style: none;\n\n @apply bg-muted;\n }\n\n &.markdown-body code,\n &.markdown-body kbd,\n &.markdown-body pre,\n &.markdown-body samp {\n font-family: monospace;\n font-size: 1em;\n }\n\n &.markdown-body figure {\n margin: 1em 40px;\n }\n\n &.markdown-body hr {\n overflow: hidden;\n\n box-sizing: content-box;\n height: 0.25em;\n margin: 24px 0;\n padding: 0;\n\n background: transparent;\n border: 0;\n border-bottom: 1px solid hsl(210deg 18% 87% / 100%);\n\n @apply bg-muted;\n }\n\n &.markdown-body a:hover {\n text-decoration: underline;\n }\n\n &.markdown-body hr::before {\n content: "";\n display: table;\n }\n\n &.markdown-body hr::after {\n content: "";\n clear: both;\n display: table;\n }\n\n &.markdown-body table {\n overflow: auto;\n display: block;\n border-spacing: 2px;\n border-collapse: separate;\n\n width: max-content;\n max-width: 100%;\n margin: 1.5rem 0;\n\n border: 0;\n }\n\n &.markdown-body h1,\n &.markdown-body h2,\n &.markdown-body h3,\n &.markdown-body h4,\n &.markdown-body h5,\n &.markdown-body h6 {\n margin: 1.5rem 0;\n font-weight: 600;\n line-height: 1.25;\n\n &:first-child {\n margin-top: 0;\n }\n }\n\n &.markdown-body h1,\n &.markdown-body h2,\n &.markdown-body h3,\n &.markdown-body h4,\n &.markdown-body h5,\n &.markdown-body h6,\n &.markdown-body li {\n & + br {\n display: none;\n }\n }\n\n &.markdown-body h1 {\n padding-bottom: 0.3em;\n font-size: 2em;\n font-weight: 600;\n border-bottom: 1px solid hsl(210deg 18% 87% / 100%);\n }\n\n &.markdown-body h2 {\n padding-bottom: 0.3em;\n font-size: 1.5em;\n font-weight: 600;\n border-bottom: 1px solid hsl(210deg 18% 87% / 100%);\n }\n\n &.markdown-body h3 {\n font-size: 1.25em;\n font-weight: 600;\n }\n\n &.markdown-body h4 {\n font-size: 1em;\n font-weight: 600;\n }\n\n &.markdown-body h5 {\n font-size: 0.875em;\n font-weight: 600;\n }\n\n &.markdown-body h6 {\n font-size: 0.85em;\n font-weight: 600;\n\n @apply text-muted;\n }\n\n &.markdown-body p {\n margin: 1.5rem 0;\n\n &:first-child {\n margin-top: 0;\n }\n }\n\n &.markdown-body blockquote {\n margin: 0;\n padding: 0 1em;\n color: #57606a;\n border-left: 0.25em solid;\n\n @apply border-base;\n }\n\n &.markdown-body ul,\n &.markdown-body ol {\n margin-top: 0;\n margin-bottom: 0;\n padding-left: 2em;\n }\n\n &.markdown-body ul {\n list-style-type: initial;\n }\n\n &.markdown-body ol {\n list-style-type: initial;\n }\n\n &.markdown-body ol ol,\n &.markdown-body ul ol {\n list-style-type: lower-roman;\n }\n\n &.markdown-body ul ul ol,\n &.markdown-body ul ol ol,\n &.markdown-body ol ul ol,\n &.markdown-body ol ol ol {\n list-style-type: lower-alpha;\n }\n\n &.markdown-body dd {\n margin-left: 0;\n }\n\n &.markdown-body tt,\n &.markdown-body :not(pre) code {\n font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas,\n "Liberation Mono", monospace;\n\n @apply text-sm bg-coral-100/50 px-1 py-0.5;\n }\n\n &.markdown-body pre.hljs {\n margin: 1.5rem 0;\n font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas,\n "Liberation Mono", monospace;\n font-size: 12px;\n word-wrap: normal;\n\n &::after {\n @apply absolute top-0 end-0 py-1 px-2;\n }\n\n & > code {\n @apply bg-transparent p-6 block whitespace-pre;\n\n white-space: pre;\n }\n\n &.language-jsx::after,\n &.language-tsx::after {\n content: "React";\n color: #000;\n background-color: #61dafb;\n }\n\n &.language-js::after {\n content: "JS";\n color: #000;\n background-color: #f7df1e;\n }\n\n &.language-ts::after {\n content: "TS";\n color: #fff;\n background-color: #3178c6;\n }\n\n &.language-css::after {\n content: "CSS";\n color: #fff;\n background-color: #1572b6;\n }\n\n &.language-html::after {\n content: "HTML";\n color: #fff;\n background-color: #e34f26;\n }\n\n &.language-bash::after {\n content: "Bash";\n color: #fff;\n background-color: #64748b;\n }\n\n &.language-json::after {\n content: "JSON";\n color: #fff;\n background-color: #000;\n }\n\n &.language-yaml::after {\n content: "YAML";\n color: #fff;\n background-color: #cb171e;\n }\n\n & .hljs-copy {\n @apply absolute end-0 bottom-0 p-2 border bg-base text-primary-600 hover:bg-primary-100 cursor-pointer leading-none;\n\n & > svg {\n width: 1em;\n height: 1em;\n }\n }\n\n & .hljs-copy-success {\n @apply absolute end-0 bottom-0 p-2 border text-invert bg-invert select-none leading-none hidden;\n\n &[data-show="true"] {\n @apply block;\n }\n }\n\n @apply bg-base border rounded relative overflow-auto whitespace-normal;\n }\n\n &.markdown-body::before {\n content: "";\n display: table;\n }\n\n &.markdown-body::after {\n content: "";\n clear: both;\n display: table;\n }\n\n &.markdown-body > *:first-child {\n margin-top: 0 !important;\n }\n\n &.markdown-body > *:last-child {\n margin-bottom: 0 !important;\n }\n\n &.markdown-body blockquote > :first-child {\n margin-top: 0;\n }\n\n &.markdown-body blockquote > :last-child {\n margin-bottom: 0;\n }\n\n &.markdown-body ol[type="1"] {\n list-style-type: decimal;\n }\n\n &.markdown-body ol[type="a"] {\n list-style-type: lower-alpha;\n }\n\n &.markdown-body ol[type="i"] {\n list-style-type: lower-roman;\n }\n\n &.markdown-body div > ol:not([type]) {\n list-style-type: decimal;\n }\n\n &.markdown-body ul ul,\n &.markdown-body ul ol,\n &.markdown-body ol ol,\n &.markdown-body ol ul {\n margin-top: 0;\n margin-bottom: 0;\n }\n\n &.markdown-body li > p {\n margin-top: 16px;\n }\n\n &.markdown-body li + li {\n margin-top: 0.25em;\n }\n\n &.markdown-body dl {\n padding: 0;\n }\n\n &.markdown-body dl dt {\n margin-top: 16px;\n padding: 0;\n\n font-size: 1em;\n font-weight: 600;\n font-style: italic;\n }\n\n &.markdown-body dl dd {\n margin-bottom: 16px;\n padding: 0 16px;\n }\n\n &.markdown-body table th {\n font-weight: 600;\n }\n\n &.markdown-body table th,\n &.markdown-body table td {\n padding: 6px 13px;\n\n @apply border-dimmed;\n }\n\n &.markdown-body table tr {\n border-top: 1px solid;\n\n @apply border-dimmed;\n }\n\n &.markdown-body table tr:nth-child(2n) {\n @apply bg-base;\n }\n\n & div[class*="_admonition"] {\n /* stylelint-disable-next-line custom-property-pattern */\n border-color: var(--admonitionBorder) !important;\n }\n\n & .admonition,\n & div[class*="_admonition"] {\n margin: 1.5rem 0;\n padding: 0.5rem;\n border-inline-start: 4px solid;\n\n & :first-child {\n margin-top: 0;\n }\n\n & :last-child {\n margin-bottom: 0;\n }\n\n & .admonition-title {\n display: none;\n\n & + * {\n margin-top: 0;\n }\n }\n\n &.admonition-note {\n @apply bg-muted border-base;\n }\n\n &.admonition-tip {\n @apply bg-success border-success;\n }\n\n &.admonition-info {\n @apply bg-info border-info;\n }\n\n &.admonition-caution {\n @apply bg-warning border-warning;\n }\n\n &.admonition-danger {\n @apply bg-danger border-danger;\n }\n }\n}\n','.flag {\n display: inline-block;\n\n width: 1em;\n height: 0.75em;\n max-height: 0.75em;\n margin-top: 0.125em;\n\n font-size: 1em;\n vertical-align: baseline;\n\n background-repeat: no-repeat;\n background-position: center center;\n background-size: 100% 100%;\n box-shadow: 0 0 0 1px rgb(128 128 128 / 50%) inset;\n}\n\n.flag {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAABRElEQVR42u3aoROCMBTHcf5lo2fxNHgaPItapGjRRKJooWjBIEGD/8y81xCmrjhg7xte4VZ+n21vgyMyxkSaS3V4AAAAAAAAAAAAAACKx1NlVQGMsgIAAAAAAAAA3wDpKTOb3cH0BuO3kmdJegwX4FrczXwV14JXazhdmOyShwUg4SXYr/Dl8oDgD8C25F1WQhAAMpO2gOX9Ln3h15jOAmwPiVOwfZLWxi3jXfcBJov1W6j+aGYdd8zONQBpmp0HkMAuoWzbIIgV4FoStgog20IFwKdT4pLfwgb4djn68+w3DyDhqw3SY/jmAWzLXhqmnAbBvw3K7Ntufn/e8+0BsB15Hme+eQC5CbpcjtQAeHjx4YsQAG0CsH0cUdUEAQAAAN0AHIMAAAAAAAAAAEDbANT/KKkXgJ+lAQAAAAAAAAAAABTWC/MCectA2CykAAAAAElFTkSuQmCC");\n}\n\n.flag.AF,\n.flag.AFG,\n.flag.af,\n.flag.afg {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAh1BMVEUAejbjdGrhZlvpkIjeWEzVLh/bSj0AAADTIBHYPC6MFQuMPR3mgnkwMDBAm2jsnpcwk1uAvZuXKiFAQEAVFRVdXV1grIHBk4SAgIAQgkKiUkC7gXTwsKr0yMT53duTSSu1aGFwcHCQkJCNPR2weWNQo3WhYUcgik9wtI6hQTjeV0uQxaegzbTU8WaPAAABOElEQVQ4y73USXPCMAwF4MqWxBM4ZCcLJCyllKX///f10AvMxOml03f+Zjy2nvy2eM4ST3l/e0kcrv4ICkxE5XdoYipmIrOwMAFgKoDxDEy2BgBmAKBNFoNlfQMggEAAXDYfEXisD4CpiBgbsL1upmFbtgUAGN/VM7DP1/kkLKtTAWUoIKSGfd6tp2FdLeFSYvLsKGDVbSKwTZbp6B2LBPOjX2X5NDwl7XIYvHMO6sMwrL6yxySskqQYeQeAwcxjv84+J2FdH3tnHnwncjC3zV8e8mkudbkVeJhy6hXSrCOXqY5t4yRAfgrEzTWfPnqRnA7KCmUzKFvzyCIjrKoiEDtmZkcU9l0XbU8fiHYps985onMW7+MNaapqorZLcZkp7sGUXSDyjtXOcw1nI1VAlYz7/17X2E/xDU3CHUk5qQKIAAAAAElFTkSuQmCC");\n}\n\n.flag.AL,\n.flag.ALB,\n.flag.al,\n.flag.alb {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAdBAMAAAAqZzNAAAAALVBMVEX/AAAAAACvAAB/AABvAABfAAAtAADKAACPAADfAABPAAA/AADvAACgAAAPAABIzFtLAAAAs0lEQVQoz2NgoC+YwHOjgL33ACeK4PJD23KOZetooQjO2nVZSNF29RoUwaWB4nFPC0VDUQSVHEUSxRxFlFAESwwFgUDYHUUwJBAkKOqKIqgMETRCEVR3BAmKFKEItppuExTMCo5AESx28RAUNHExRxHUYL/XlvG2oAlF8PLc7Iky227aogg2WxxKFNNptkARrGSYsVCqk2E6WuAxe6cYYIQop/amCZjhzJaAJfA5JzDQHQAA2O0qTBBsTKkAAAAASUVORK5CYII=");\n}\n\n.flag.DZ,\n.flag.DZA,\n.flag.dz,\n.flag.dza {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAARVBMVEX////30tg1TTNpOTP0w8zWJUUjVDIAYjP////SEDTxtL+/FzP64eVIRTKELjPbQV6RKTLjaYCeJDP88PLmeI30xM3gWnIwpA//AAAAAXRSTlP9g+pWxwAAAHtJREFUOMvlkzsSgCAMRPkEZBVFRbz/UUUsdSCFlaZJ8ybJ7k5E91DuXkJ8HVQpMkC7AjCLbIFjxibytPV10AKDLTf6OjgAYxHTWK2AOTdycq+DGtC59caEOjgB6vQxZOH0ykT2jWzVxUfF8fFKJrWT4WddWIo//JlH8AAwAB+HdjSvjAAAAABJRU5ErkJggg==");\n}\n\n.flag.AS,\n.flag.ASM,\n.flag.as,\n.flag.asm {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAArlBMVEX////EKTjjmJ87IQ52CjqlDinCITEAAGYYAl1GBkzWZnHmo6n33+LUYWzknqTv7+/z1tn12tzSXWg0HQ2TeThBIw+akYj+/f3y0tV7XBbRWWVTNidCKhhrMxTW1NLe2dOTg3XGvrfLyMWunnZtWC+xsbHu7OdcMx5LJxFDMCbU0cl6WkhwY1rPwJimfhnj3Mepqam4trRkUkN5akOpijeOaxGObBR+dGbKwKKwmVwJBAHeAAAAzUlEQVQoz5XS5w6CMBQF4Kt1r6oUENnDwXaP938xgcgIKVjPr5J8acq5F4YMGY17fWBBncl0BkwoDQMyfaMBZmi+WGU36b56MCkwRYMcARiyqh5lvQYztO4uIQ8+HBGPOHm306ARpdE4PnGcIpz2UKBtdyNCLVbgIgW5OD03oiSihYWLgtD5F4Rb8rsCHxQ9Ut+XkIiQN5Gc0KsWTsMaWB5xbHsPtHrKDiGWCH7p34+2qcTSQ7pHV2icdTnn0Hg6NmZdCmiFzGv21+JW8QewIBq5Sg9RSgAAAABJRU5ErkJggg==");\n}\n\n.flag.AD,\n.flag.AND,\n.flag.ad,\n.flag.and {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAcCAMAAAAkyw3kAAAAh1BMVEX+3wD73AC+p3Ppgw40QYW0mmmvlGMAGKjQEDrZOC7ffBjKr0zTtjXUuEDevyjpyBzmySXqfgn52gi6n23Or0DbvjfHrFnBp2K6oF/kmw40QIXZOS/ixCLOsiuzml7VYh3CpU/DqVndjS3UeVztpoLIakj31wTVhjLsoWT+7W/dWULNRC/51mPLu1LCAAAAtElEQVQ4y+XUSRKDIBAFUIHQSUABBadE42zG+58vutNN696/fvWLLmi88yI3b5X7ZRFvCU9reD0SNFqbbWikktw67TQOCaVNCjZtbErwRjV8+kowFhQ4lDD83t8ZgsMgyaB79d0MeTZijQpk2z6dP02k8DPWcRgKXYVxjU/tP2aoRB4/ShQGIBkTJs8l9/FGCkCBT7E4jIIk4ZTSLAmijbsmxOe8JGTHoxgLEx1vFXZA7Ev5Aw7LHoRODS8/AAAAAElFTkSuQmCC");\n}\n\n.flag.AO,\n.flag.AGO,\n.flag.ao,\n.flag.ago {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAWlBMVEUAAAAQDQDVLSbRHSpmBBfKCC7/ywBmBBfMCS8AAABPPwDhWRvAmQAjHADzvwDuiA/yrAVfSwCQcgB1XQDcRiCgfwDQpQCwjADymgufTg7pdRSzaAvFfwhAMwAtf7ufAAAACHRSTlP9/////////sajZT8AAACgSURBVDjL1Y/JDsMgDEQxNE7MDk3S/f9/s0bJhVYKXDMHLJmnGY8Ypi4N4qSgkkZ1gTLi3BltfFQd4JNNsQ3KgEFO4S6bjgYNFypPA5xVqYKtaLkfF8MPOF5qvd7bxEe1HoWgWgkX4KFtvRZ/IF3ROqLo4RAsv271n7y4Y8e8aiDIPic6BsFbZGnbcuTspEHzpTfdKrPL2dQHsmkvSKcDvxd5Iyc+x/1IAAAAAElFTkSuQmCC");\n}\n\n.flag.AI,\n.flag.AIA,\n.flag.ai,\n.flag.aia {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAdVBMVEUAIWlgdKHUeY7g5O3yxs3///9nbprIEC7AyNrYVmuZzP//5sD79fe/x9n22N0NK2WLl3nz88z/7M//+e//zoOgtpnZ3Of/oxv/4bORq4mewLbT1J/u787Y27H/uE//2J/Hyoawt35Ya21jdGm4vpf/xnD/8t91fNiSAAAAt0lEQVQoz9WQSRKDIBBFcUBUBhEQZ818/yMGimBlYYlZ5m2g+a+6iwZFmkTAkCOU2zOLixTsYQOrOtFXB6oVD7WcUqoZIxAhwgjRpqS7ItrhR/HK+ThzfvGjDZqYqQhBwpi2tUtqiJ+dgPXWM0rSIs7sZ9zNv9dQLRhvog/der7VaVVYtGL6iD7wC7eqS+a1w51aRhDi8WpbrGQTFO9SQingLSiCpjSEGwJQDWU5VOCM2fenvL/jDaJ7Cj8g7Qw3AAAAAElFTkSuQmCC");\n}\n\n.flag.AG,\n.flag.ATG,\n.flag.ag,\n.flag.atg {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAn1BMVEUAAAB9oW4fGQGtjw7NECX80RV/uOLOESb///8Acsb88/TULUAZAQSnESUAOGNSRAZ+aQs/NAXdWGf209fPFio+BAtnQHXCDyMQDQG9nRDmvxPdtxPNqRHrnqZzCRXplZ69GDIAccU1WJzFECR7ChZNBw8IP2M3Z2dtlGxvWwmWfQwwKATtxBTgZ3SYKk8QarmPlLoTaLeRkLWdJ0vmvhOhEoG+AAABDUlEQVQ4y43OaXOCMBSF4duE9LQgq4ps7utY7f7/f1tZjCSQqmecQS7Ph5e29NC2tB484gZrslz9lBAxVj/UuRZZ2Ggn5pNf/ph23KCCGLeXN6I8CYKkqP/KjdHASZvpB5TyNOWcAr8NnFwglExeHEWWiWPBlUBIiFlzCYOQnUS9EytfmusMLZSZYS6yBv6KPLwGKlBmMi4u46wNVCBcz/N2+8OTssN+Vx5d6BDxq3ExutBamdzK6kEsPvrua4E+xPuy65Y/MMF+ZgwzxOeztm+oUHmBY78osx31mwYRqTDC/xDz1s1xC46G0g1HN+E1Uw80QJkZ4R7EtHJT3IdVZjfQDB27F2iEwPlsOP4B7QcfgqeTwMkAAAAASUVORK5CYII=");\n}\n\n.flag.AR,\n.flag.ARG,\n.flag.ar,\n.flag.arg {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAZCAMAAAB0BpxXAAAAP1BMVEX////u1q/oy5jSn1L37dz59O7u3L10rN/R4/T9/Pzozqjfun7koBPhvor05s/Yq3HcozzalA7lxpzXpl/VkhUfGetuAAAAWElEQVQ4y+3SOxKAMAhFUQgkSshX3f9aXYCOUFjm1qd5DLA5gwU/4e4MHknD1ATMJNWuijaMgUqhzDbMY5aRown5OOdFwYaAQXtN4FjDiPyy2n3H9Y+/wBtvcRWqoJAFOQAAAABJRU5ErkJggg==");\n}\n\n.flag.AM,\n.flag.ARM,\n.flag.am,\n.flag.arm {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAD1BMVEXZABIAM6DyqACiDTW2iiiq+uFNAAAAHklEQVQY02NgGFBgjAUwCGIB9BN0wQIYlLAAugkCALbdITUesQdRAAAAAElFTkSuQmCC");\n}\n\n.flag.AW,\n.flag.ABW,\n.flag.aw,\n.flag.abw {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAKlBMVEVBjt6gsG//0QBBj96gsG58o9qqkbfvNkPKepTZan9Wm+GRpdO/jathouOFF8O8AAAAAnRSTlP9/o2EjdMAAAA9SURBVCjPY2A2xgAGDDgErYOxCNokYxG82YUpGDa9IpU4QazasVuE1UnE+2ggBZWwAAYRFwzgSBPtlAkCAFHVa1J3h5tcAAAAAElFTkSuQmCC");\n}\n\n.flag.AU,\n.flag.AUS,\n.flag.au,\n.flag.aus {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAARVBMVEUAIWn5w81QZphpbZkQLnIgPHvsS2nkACvAyNpgdKHicYz////Q1uP99Pd9jbLf4+zg5O0wSoX70trZ3OcQLnGPnbz43OPaT7sJAAAArklEQVQoz7WQ2xaEIAhFyTA0vHSZ+v9PnahlOdlq+TLnRYGNB4GuiRY2GSIjZ9t3DTxJCoIeoESDBXhBBSwwmwVm07xOnon85P0scaqhc3iC9KCziBf3Dubarf3mSsR+Wn+sd+mg08Sx6fpWPmMHud1cFasMS+u5UOfSiwcHqZAWLuh9MzWq5sexSGld1YlhWcKnhgzMoYZThtmoYsKHcbRzRRZjxBJELNuVgv/pC+H0B3jjpdgoAAAAAElFTkSuQmCC");\n}\n\n.flag.AT,\n.flag.AUT,\n.flag.at,\n.flag.aut {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAQMAAAA03l8tAAAABlBMVEXtKTn///9O8W3fAAAAEklEQVQI12NgIAv8BwGSSbIAADA3LNT5TsD+AAAAAElFTkSuQmCC");\n}\n\n.flag.AZ,\n.flag.AZE,\n.flag.az,\n.flag.aze {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAKlBMVEU/nDXtKTkAueR5dTZOiaz1fYf3oajwUl7+6ev2lJz4r7XuNUT7zdH7zNA216A/AAAAOElEQVQY02NQwgIY6CboggUwCEKB5LVwGFMQLhghKF2IIZgmKNqFIZiJTRCrdsljSBYZYwEMAwoA/3cmVGf7nvwAAAAASUVORK5CYII=");\n}\n\n.flag.BS,\n.flag.BHS,\n.flag.bs,\n.flag.bhs {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAM1BMVEVAi3MAN0EAWWgASlYAa34GCwgAHSIAAAAAd4v/xywoVkfvuilfShCAYxa/lSFAMgs/MQvJSo6TAAAAW0lEQVQoz63TuxKAIAxE0agJK77//2ulcqBAb+HWZ4YQFks+o5g0OISKCUIpjRAW6hAqPkZ9YKGLvUVVziN300BpWyFU7D9DePTFLgPXQxcOnxCWgtYMFpd+hRvLVBb8dDVZSQAAAABJRU5ErkJggg==");\n}\n\n.flag.BH,\n.flag.BHR,\n.flag.bh,\n.flag.bhr {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYBAMAAAB6qqLzAAAAJ1BMVEXOESb////20tb88PHtpq7hb3zfZHLXPU7QHzLRHzPXPE7wtLvplp+6qWJJAAAAZElEQVQY02MQBAG1BgYUABYUNFmARVDQFIug6gRMwe0MWMxEMxKqXSgDm0VqmILC7li0n8RmEZqRUDOFvbAJumPRHolF+wlsFqEZicfx6IZCAqQAi/Zd2CxCjyQ80YFmKLYoAgD8YhWfwKLYOwAAAABJRU5ErkJggg==");\n}\n\n.flag.BD,\n.flag.BGD,\n.flag.bd,\n.flag.bgd {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYBAMAAAB6qqLzAAAAGFBMVEUAak70KkHlLUGyOkRrTUd6SkcuXksfYUzbDaCgAAAAUklEQVQY02NgoB1INVIOQxdjERQUFHJAEzQECgoKYyoEAlSliRBBNRTBQIigKKaR6IYqQgSFCAti1Y7VoiSIoDphx2P1JgOLIpYAAQVdOAMtAQB5kwuiqFX2NgAAAABJRU5ErkJggg==");\n}\n\n.flag.BB,\n.flag.BRB,\n.flag.bb,\n.flag.brb {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAALVBMVEUAJn//xyaqkEM/MQjTpB4gGAQwJQZaRg2ffBfvuiO/lRxzWhAAAACviBoPDAKyFauCAAAAYklEQVQoz2NgAAMmQTBQYEAGAy4o4oghOFFQvFBQEk2wbaHPEakMNEHhRNcQUUM0QYmTYolzLqJbFCFm2Iphe7Ww4XYMwcvChrYYgkvrnr/CEHTeGm2C6SNhQ0FKBAdNHAEAi0wclGP3UW4AAAAASUVORK5CYII=");\n}\n\n.flag.BY,\n.flag.BLR,\n.flag.by,\n.flag.blr {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAOVBMVEUAfDDsoqblgYbYQUnaT1bjfIHidHrOFyA0Yyznio/qlZr209XVNT2WeGLfaG6aXUvRJC2bj3fxur4V/dY/AAAAZklEQVQoz63PwRWAIAwDUGrTYgBB3X9YRyAHc/6vaQphbnWf4oRBgYnXmwInk1OBEWRK1XerhwIHBqQx0dFT/VGqNh7RfoVytTxmYGCd+5S8W72KkAhSgpOpwcTrjwKdsKVAwqSLH3bnEGqiS5R6AAAAAElFTkSuQmCC");\n}\n\n.flag.BE,\n.flag.BEL,\n.flag.be,\n.flag.bel {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAjBAMAAAAUF1WdAAAAD1BMVEXtKTkAAAD64EL2oT6mlSxymLhtAAAAGUlEQVQoz2MQBAMRJTAwYICAUcFRwWEhCADCrTMjCu9IjwAAAABJRU5ErkJggg==");\n}\n\n.flag.BZ,\n.flag.BLZ,\n.flag.bz,\n.flag.blz {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAA7VBMVEXZDxm71quuz5ugxor////w8O9RULB3ElcXFpYlJJyIuWu51KnT5MqrzJbM4b66wNWkxpZ3fLeyy6vG3rq92K3T29uZvXnq2dLEwqzx5eDn6upxfKpyfaukw5pOVKW3zrSlwaGmt7jDpZXCoH7B27ORamCnu4LRuaTl8N/i3MPc6tRzrl3y4KPx15d/r069ydXLvpexvMeZupF8e8Pw39fp3diRt4TK28efloSKfm2yhWRuPDCwoIeRq2DExOSwu8bc1Kypsonb3ZxhlzBhmjwZdcf5+vvNzN6/wYjYypvD0t5+roqxqJogesuuqH05DYSvAAAA0klEQVQoz63TVRKDQBAEUGR3k2WRAEGTihF3d3e//3Fyg4FK0d/vq6eH42JPImK4ZMT8D+momJoVdRoGSYEJTVUxDQJDwotlxZaksioQCNKCgOZVuxos6mxIAZhhjVrA7I1UKblmFoAaG5eWNW+/XlUmogbAPEPY8ZxO28FITgHQYAj73rXd8UOgJiKM/WevgTHiBwDMCvVD93T5nLsukjJQPVOm9u+t1/HbVCwKFp5Wbu6j/+7xag4+Yc5q8bJsinkSOgp9Zxnb8FHEsMfIrxB7fiVOJZw8OnZYAAAAAElFTkSuQmCC");\n}\n\n.flag.BJ,\n.flag.BEN,\n.flag.bj,\n.flag.ben {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAgMAAABzfiX9AAAADFBMVEXoES380RYAh1HycSGsqsUBAAAAG0lEQVQY02NYBQShYMAwWJj/wQDMZICAQcAEAH5nZ5nGou1dAAAAAElFTkSuQmCC");\n}\n\n.flag.BM,\n.flag.BMU,\n.flag.bm,\n.flag.bmu {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAA4VBMVEXIEC5nbZnUeo3g5O3////ZWm7xw8oBIWnAyNrGDy3Vf43UfozkuL9gdKH10tcsih+tg3YvjyXgj5jx9PL88PJfc6Htv8jMYnKScFNIgzyyRE1tjVHUoa3YdYbhoq7lrrewxIe7Dirg3rzMuFN7s6H3+PvY3ejWz9y5JDaHeVXCDiuaZVGZZFCHNiyKwIO8HDZ4PSHW6dSOZTK2za3CzJbd266cQTaYoJGIt6W0sXWuPzGdvK+Btsl2SiydqXifj1Kgt4ywm4qIxNrDXUbS09LPfSvSxoTU1qnKTyjApEiNaE+TnmGmAAAA8klEQVQoz73SWXOCMBAH8FUDAeQGQcV6gEp11B7aevTy1vb7f6AmDdAXxvjk/wGys7+ZnQ2AIJYqmEQCkOi7UBREyAttUMrgX6XlwqRZoZAxjHOhRBJ7LkIASNd7fVqzjpwGLsdXVbXVIA+fI8sIofoDGaXI2eh+T9fpaOR6cTaaQK/TsTOIsVYShWKBLsNOyTJl1GieV3YzhWmTXQ+rEvi27nYX8xQy9n/hlCYw+v583y4dhbdM6xB9fZi7Oy60j+HmZx9yofk0PTnOS3tiXoZy3Xh8bc+ex0aV82XkUc2wLKs2AG6GoyCo3sM14f4QN8kvl/oSq3LmixUAAAAASUVORK5CYII=");\n}\n\n.flag.BT,\n.flag.BTN,\n.flag.bt,\n.flag.btn {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAz1BMVEX/1R/5+fn6w7D+Yy3+/v78/Pz/WR//qBr/ThL/1SD/1y362M3639b58O373Vr46KX/ehb/yh7+eEv8rZL843z58978gVf/WRL/1zH8mnf73mP+2Tv6zb76ooP+3Ef75Nz6kGn7dkj789T70cL5spn/qhv467H6lHL644f84nH8vqj677/457j79fP8+Ob86eD6hl/68cn82kf5t6D848/758j2wa/62Zb8yrj8uqP9bTz6zpr64pT6tk/8bDv8YCv8rVb37uX+dDDKysr/ZhSbtK0qAAAACHRSTlP9/////////V+qNIUAAAFMSURBVDjLjdPpcoIwFAVgAtz0sisCDpsgUHfcrWv3vv8zVcXOOC2hnF9h+DiTOyQcJ9VJs8HVgo9trAObDcR/oSxf6tjQ8wbDYnGtY0HZs4xebzweSPI2xgq49IwEgMDndL2Lu2y41Ht2TgiBTb6jWNUonfsmC5jF2b57qIK6TYix/XDUrO+atGqP1hTe0znGc1AEVqNvdTzJn4iggRKRQHXLoT9c2NPx4C0joLYU3lmFtBxaCZynBU0lYiDweJdf0CDJ6aioEQCEiGw4XJDTF6LQD0GjVbBjg5NefkWqBSY6KyacAKSgzJEKJq9potIvgUtd0o+5MhupsC9etXiRL4GyZZN8JKghvZ0CfOGhBMrGhgQjeshmd0MIf/foG2v31Tw/OxC1sCwFlJ/d29dPES+w4c9xv0xAyguvsLg9RahJWfCurircQ7uWw2/OAzNFFY4IKAAAAABJRU5ErkJggg==");\n}\n\n.flag.BO,\n.flag.BOL,\n.flag.bo,\n.flag.bol {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAgMAAABzfiX9AAAACVBMVEXVKx4AeTT54wAKw3EdAAAAFUlEQVQY02NgoD1YBQc0Y4bCAa2YAHXmWafbUCnbAAAAAElFTkSuQmCC");\n}\n\n.flag.BA,\n.flag.BIH,\n.flag.ba,\n.flag.bih {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAALVBMVEUAI5X+ywB/d0oQLYvPqxswTKnL0ekQMJuwut5QaLY/Wa8gPqJgdb3///9QWGaw+VaMAAAAeUlEQVQY02NgYGDo4DYRhAEFBigoX7bYEUOQ4ewBE0zB2VODHTEEGcJSTTAFORo2O2IIsldlmWAIMvDcYXbEEOTcGWqCIcjAmgZxAIogzFuoglBvoQpCvYUmCPEWmiDEW+iCYG+hC4K9hS4I9haGIMhbGIIgbz0A0QCx2SL7cD63XgAAAABJRU5ErkJggg==");\n}\n\n.flag.BW,\n.flag.BWA,\n.flag.bw,\n.flag.bwa {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAElBMVEVtqdIAAAA/Pz/t9PlBQUHs9PmByX+UAAAAI0lEQVQoz2NgGHYg2BgDmDI4KWEAFQZBLIAEQaxmYrV92AEAvTIRzfY9AH0AAAAASUVORK5CYII=");\n}\n\n.flag.BR,\n.flag.BRA,\n.flag.br,\n.flag.bra {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAcCAMAAAAkyw3kAAAAh1BMVEX+3wDu0we+sB0hpDE3qi1KrygInjgAmzoAJ3YToDUPMW8fQIaPjzTn2QU/VFgtTI47WpX43QGuyRKZxBfR0wqov8uNwRl8vB5efqUgPmff1gcQNH4BmzpjtiPBzg2jxhXW7eAfPWeSubggQoetzL/v2gNKbZljdHhLc4ycr2+14cXC4NI6VHmUxPVgAAAA9UlEQVQ4y73UyRKCMAwA0CCLLQUKKvsiuG///31mKIsjIPVCDj1k3kxImgJryYBFoKZJQSMACIx5qCeAkegzkO6hiT39AbP8DIrlmKZjKWDn2RRUC4BVTOqIVwCFOgqN0ENHukDphcYQajv8MCXuYaxgYqd9QbqtO7g/yvLgHy6pi9KqU1v6CXVbtHplhBzdyC99lI7I2XoH1U07E7Mp60Yn/2i22Q0dhUzY6HnroDoo7fAUTX0QfhqU7puxUhI11bk71kw3nopwThjD8uw1Op7vgbPpgbdXWAlZTV/hH0uxzjLJNUMqu7jiKXgyT0H+cS32A3gD3OAiYEPQ1/8AAAAASUVORK5CYII=");\n}\n\n.flag.BN,\n.flag.BRN,\n.flag.bn,\n.flag.brn {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAABR1BMVEX34BdnCRRPBQzzxMn67Gn55kL88PEAAAD///8JBgPWMiHhaXbQFCj9+c2Yig378pzMuRL+/foQDwYtKgn77nmMjIvx1xbkfB3hax1BBAvqlZ0aAgT54eP20tZcBxA6NQX//vQcHBpSUk/19fVnXQlpZDT78JE+Pj51dXX34R7+/On66Va0tLT44yelpaX++9ztrBrdWx389bGyPBqhRlCuEx2lLxjnh5KyJhyjGRsoDwT998Sllg/45DM6OCHq6upyaAr03RZiYmKYmJi+vr7BwcGkmTwsLCzPz8/ZxBTCsBL89r1GPwaPgg3886l5bguwihJcVAjZ2dncpxc0BAnYq6/CDyPBexXmjD/ro2ORbg7IUBzXTx/jdoGTLxdjIQ6DIy7XPE7sn6jHx8ftpa3keIRtCBRZEw6GPkZjHyZSRkfw8PC1DiE//erTAAABIUlEQVQYGY3B1XLCABAAwIveJRR3d3eXKnV3d/f/fy6UyUygHcguaGYTQBsis97ICzARDYSmE/wsjEMqma1ENg8ATvgHjcpULs7z8Fc4Yl+Okprv8cZXrNiyaRiCfWuLS+tm+uVvTvXo/ERU3LUJaVCgQkqmCiciiZzuRafjfCRy1GPWG3kB+lAtwHzWcl9+juhZ9HhIEdIbeViNz0mokL4DDOLHu/2p6XkQSQ16uiZDzCphH8O0vcgGsNO+rxUOSQUUjs2dAyuy7Fur88p4W3duFtGSTOXmaQCGOM4ubxtyvS433F43DoQj9pUoEYwoyfL1VbVaPj1GNWscRjhKLper7HQe7e9tW1AFxtmYWQhacAAmMhliQQkRtDEZQJsu/ADqTiXJks3I9QAAAABJRU5ErkJggg==");\n}\n\n.flag.BG,\n.flag.BGR,\n.flag.bg,\n.flag.bgr {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYAgMAAAD16ldTAAAACVBMVEUAlm7WJhL////BTf+eAAAAFUlEQVQY02NYBQcMVGXSCoTCAVWZADw2T7GdUBaTAAAAAElFTkSuQmCC");\n}\n\n.flag.BF,\n.flag.BFA,\n.flag.bf,\n.flag.bfa {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAALVBMVEV3ZDoAnknvKy14Yzr60BVttDHxPin4nRz6vheYvSmvkCrfzBr3ix72jB4gpEG5oHn8AAAAAXRSTlP+GuMHfQAAAEdJREFUKM9jUMICGIacoFoSFkHdQ1gENZowBNVKXFzcYQYwMBtDgJWLy2Io04BBEAa2eMOZcEE5zymYgqKBooEYgshgSAsCADLrPLD18xGQAAAAAElFTkSuQmCC");\n}\n\n.flag.BI,\n.flag.BDI,\n.flag.bi,\n.flag.bdi {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAWlBMVEX///9y0YTXPk/RHzPzxMnz+/RIw18etTrOESbH7c7t7OQsukbpl6D88fLhanf6/vuc3qid3qmW3aPc2MrniJP++frwtbu4IyfNp5zaTFzBdGvAZ2G9PT3dW2pQSsWXAAAAzUlEQVQoz42TSRKDIBBFvyJ2bAecccr9r5kFEjEGil5QLF7xoPkNAFn6ClaawVYl/JioDJMXAFA3Pq6pAaDIQZRIeP3GKhMiEFHZefyntSvJgESu/z1m2bi6VqIvePnFbK4+i8t6A61/AnhZGJgu6x20fkBqLc3utP6C1m9OdKxPkHo41ZMfLFywCIJqGBTMGgJ7sD4Y4ENzSJ1I8L4xwNvO/seY9ih1rX/bU7a24XA27aPhkV/ohmL1h+K0emPWnjGLDG70KEQPV+y4fgCOXxe97SpR6gAAAABJRU5ErkJggg==");\n}\n\n.flag.KH,\n.flag.KHM,\n.flag.kh,\n.flag.khm {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAaCAMAAADyku75AAAAb1BMVEUCLaHPzs7aACHgeIngACXfACXU1NRxF2JxF2IDLqHi4uLf39/Hw8TYDS7TpKvMtbnIyMja2trKrrHcHDzJu7zDjpbaKkjAwMDRlJ6/sLPEdoLQSF/heYjatbvCbXnQe4bXZHbXhpTFXnC8qq27u7sIHT1WAAAACHRSTlP+/////////kgsYtwAAACuSURBVDjL5dNJDsIwDAXQ2EkNZG46zwO9/xnpCiGVRl3DX3hhPf2VzdjjUhj7KXi/lhtLxCHGHHfJN9i2F2ApBOYBhcjisLMoMgIUaLsITIxVJY4AI5bKmkhj4ejpvK60a8gVkcbJQ04AQKTBT5HG1UOzVTvbGvDrOcQ61yE4rV0IOi/wFM4pUZq+x3wGzSAJlJREUipI5WBOYNbzxXLO63ofduF99gkvH8Vf/swLLRAf6S2QnckAAAAASUVORK5CYII=");\n}\n\n.flag.CM,\n.flag.CMR,\n.flag.cm,\n.flag.cmr {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAHlBMVEXOESb80RYAel7ZQCGINDjyqRjRHCTiZR7ndx2INDk0zy9lAAAAPUlEQVQoz2NQAgNNBjAwFAQDBoigyhAXZDbAIsjRgCnI3hpRgCHIFiiagKm9UByLmcGmWAQT2IZVeKKmEADM8y2ZtlFueQAAAABJRU5ErkJggg==");\n}\n\n.flag.CA,\n.flag.CAN,\n.flag.ca,\n.flag.can {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAM1BMVEX/AAD/MDD/EBD/19f/QED/ICD/r6//////wMD/8PD/oKD/YGD/gID/b2//cHD/UFD/kJAQFQNAAAAAgUlEQVQoz62S2woDIQxEj5doou7l/7+2DwXbwupa2nkIjBwyGAa68oW40vdgKUugmUi2BVAOOGQBjADxFtS8A+xZZ6DW5s8CUJpvVYegAcQ+bBzt3r0bR6fPhzTemPzL+jT7dejhLszPY/I0Yjd3NOJW6xaxhVKoLrbn/2AIvzT8AWsMCOs6h1CtAAAAAElFTkSuQmCC");\n}\n\n.flag.CV,\n.flag.CPV,\n.flag.cv,\n.flag.cpv {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAP1BMVEUAOJP+88P/99k6W3P8/P6knTwjTH8AOJP////PICfgwx3PIin64mf41ST63lKLjUqLjEqEik1IZG3UNSPSKyVE9uWiAAAAAXRSTlP89O1mUQAAAHhJREFUKM/tklsLgCAMhb1tmhe6/v/fGmawCLFV0FPnwcnhQ4+bQliWhPjBG2A/MEA9aguwlYsTPeYV/cuMxhXJqPadU1G6swyBidxUA0PHUiBwIXeugXQ1ZUytjCqSS+86gA9GiH7KZSp9bzUcMM8agTMZgO/+4wo/5hqOVIJxmgAAAABJRU5ErkJggg==");\n}\n\n.flag.KY,\n.flag.CYM,\n.flag.ky,\n.flag.cym {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAA5FBMVEUBIWlgdKHUeY4JKG3yxs1nbpolP33IEC7AyNrYVmu/x9ng5O3f4+ykgJT6+Pp4g4T88fOKkYj21drZ3Oesq43prjxOTX4FJWvSynVEWYGIf4PDwIDnw2IZNnW9vm7WzYuJoMCbXHIhcTYAWCT+/v5lh5+irLewxt/GOjfhiCvZ2OLfkjZ9lnvZzMkdWCDaztuhsatUe39SeHz13uMxNW/FYFVFXZGfqXUzNnDIbVrHvaCMkJ1bZYDUmGtukG+zsKdBeXtCg1vGkWjNLC4NWiyOfHi/maUAUyDWTTzTpk5HcjhWeT1rSu5WAAAA9klEQVQoz8XQ2XKCMBQG4GAwAZQd3HdQq4B7666tttrl/d+nnKmpdsYB7vrfwMn/TSYJEvksh8IIlArwTadEHt0LFEB/IEwZDqEICjCSCZIkmVNDcylVDE0xw1FiHdmsn/JsoHfCun2lssIJ4PPLa2v3u6MQxlQ0Q6HU1YypCfOlqrbOjlO9npLL8mIqDZfhMvDH1rF8kuU3Gf9h7HluKXn48OzekVwgK9iDA2XQ9nr2O0FxIf1gOAz6CeBkMB4PJvGw2fFHI7/TjGGL0sHqfn51rW1pFglzy1q90W43yoXHXPSWql6uWfXCXFdjD4mLql7E6N/zDVdhFLgxamGzAAAAAElFTkSuQmCC");\n}\n\n.flag.CF,\n.flag.CAF,\n.flag.cf,\n.flag.caf {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAARVBMVEX/zgDKwAoBMYIplynSEDSTy5NAZKH///8AMIIolyjwjxFFJWjwsLxfais7VWSHhD1mcE7nvwzIvwqnjXNwSH3MhhcOOXp2KHH9AAAAaklEQVQ4y93NSRKAIAxE0RYnnAIIeP+jWmVW9MZs9S+7XiVwvm0bnjaaHRQGZ4IiKcplgQmIptcByTsTvKK8XZyoorDwjpnaFe68/wuOVFaYeUe/tB0KD5r7f8Gza6sKK80nuFXhire+DG9UNhiZFUzRDQAAAABJRU5ErkJggg==");\n}\n\n.flag.TD,\n.flag.TCD,\n.flag.td,\n.flag.tcd {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAElBMVEXGCy/+ywAAJmTGDDDrihCpkyFr4LrDAAAAAXRSTlP9g+pWxwAAABpJREFUKM9jUAIDVUEwcDYGAQOGUcFRQbyCAPqgSzR3NRKjAAAAAElFTkSuQmCC");\n}\n\n.flag.CL,\n.flag.CHL,\n.flag.cl,\n.flag.chl {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAKlBMVEUAOKVqMWLVKx4AOab////qlI7AzulrMWEQRaxCbb6sv+IgUrGAnNPKe4MtJuTCAAAAAnRSTlP9/o2EjdMAAABESURBVCjPY2A2BgEzF2TAQJLgZmyCKzAFLWb6zMZUecRlBaaglQsWM81mTcYU7DBupsjxmILi5SBQG4oMGJSwgJEsCAD/7Gr8c0BulwAAAABJRU5ErkJggg==");\n}\n\n.flag.CN,\n.flag.CHN,\n.flag.cn,\n.flag.chn {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAIVBMVEXeKRD/3QDgNA/vgQjkSw32pwT7wwLiPw7pZwrmVgzxjgfoZuX/AAAAXklEQVQoz2NgwA2UMEQUGBjaHNAFFzAwKGOozARilgkoQhxWosYKDKwBKIJMgYIpDAzsaLoZBSdgOsfRDGgTSwGqYAuTAQODagAW17M7YIpNxubNtgIsgkwMowAPAAD2ignB69EaTQAAAABJRU5ErkJggg==");\n}\n\n.flag.CO,\n.flag.COL,\n.flag.co,\n.flag.col {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAFVBMVEX80RYAOJPOESaaGkF9hFXMECYCOZGyuUP4AAAAIklEQVQoz2NgGAWowAULYEgUxABi9BM0xgIYgpQwgCrdBAGDOyRlGGexgAAAAABJRU5ErkJggg==");\n}\n\n.flag.KM,\n.flag.COM,\n.flag.km,\n.flag.com {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAY1BMVEU9jjOex5lho1nn8ebOESZIlD55sXP/xh46dcT///9sqWSyKCdTm0o8i0BPlC+HuYFJgjCSv4zO48t+VSw8hmA7gXs5eLHmvyCeqig6e595nyzOuCLz+PLb6tlgolhqZy5jbC7Q/dpQAAAArUlEQVQoz43R2w6DIBBF0UEGyoAtWnu///9XloKYNBGY88TDilsRbucNawC7CxMGemdCAEY/QUYf8lr9pDptFVhJlUX2fIxah4OvQ0v0ggih31egkiSWNwUti1ATKYDRz1KJEhQkf9F+eeh6P0OlFjg4XFlOi/yew4S4Dv8/5u2wBNP1eF+uZhgvvOvCYUKswvkXfhw2Ydj2aqrL7GgMBx5OhgNb1Rm2qwkyqnFff1UYnRYEs0QAAAAASUVORK5CYII=");\n}\n\n.flag.CG,\n.flag.COG,\n.flag.cg,\n.flag.cog {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAKlBMVEUAlEMAlUPcJB/73krzrT66y0jdKiDthjWawkfvljioxkfxoDuLvUZ+uUZGJOr2AAAAAXRSTlP9g+pWxwAAAItJREFUKM9tysENQDAUh/EawMFBIuL0VqhExM3BAjYwghVsYAUbWMEIFtLqa/t/6jv+8qmsgGZt6xRi+ZpeBfJIiH4U6EfEMCKGEZDHXaAbe0KEMeIRx4A1jAHdOBAij6dAMTJWYmTcxOiQx1GgG9sFkceJEK/PaLH5jhaT0WA6GryTkVSejqR+RnoAexFQiUISXxUAAAAASUVORK5CYII=");\n}\n\n.flag.CK,\n.flag.COK,\n.flag.ck,\n.flag.cok {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAS1BMVEUBIWlgdKHg5O3YVmtAWI4fPHswSoXIEC4QLnLAyNryxs3U2eVnbprUeY79+/yKmbq/x9mwutBwgqtQZpigrMf88fP21dpvgar13uPvoiQ3AAAA30lEQVQoz7WR65LDIAiF0SBibKPm1r7/ky6ssU1navbXnsmoB74BJTCM1oAoeB90v92HEb5JE4pWsLkLVMFPjIEfD1kOG3LO8blvk/eTrFFsrplkuaxs0wH6L9L4smAix5RwWS7BWI6eXGJtLYrTtmvrbX9G9RKWWu2uxK4ejB2H+00fU08aw4zv11bTknU8zbmV3iCtWrLVaANXVMDXVH7n5DqTBU72bG3iHknzqYibCbrC03802OegxFdJF0ufY0B3kOQQ+KIkh8DE8sVwhektESdjJtngT81EM/ybfgCcAAmZWoOTDgAAAABJRU5ErkJggg==");\n}\n\n.flag.CR,\n.flag.CRI,\n.flag.cr,\n.flag.cri {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAP1BMVEXOESbRsnvpua2CcmLULkHjeIX6+/j///8AK3/dW2rzxMmLs7qdp3+9xaXj1bkoeExBb1tBZq1KY6Klx9mHvMkwUFmwAAAAUUlEQVQoz9XTORIAIQhEUXDDXWf0/mc1NLQzyx+/BCjIg9FFKGA34c5YawgouDRcAGCsOdcIQClpFgEg99Y6A1Dp79cKGoYZGua0nhdu/cDPLAeKFD3EVE0QAAAAAElFTkSuQmCC");\n}\n\n.flag.CI,\n.flag.CIV,\n.flag.ci,\n.flag.civ {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAD1BMVEUAnmD3fwD///+p3sn81KqjQLolAAAAGElEQVQoz2MQBAMRJTAwYICAUcFRQbyCAPRzJ3OsczPTAAAAAElFTkSuQmCC");\n}\n\n.flag.HR,\n.flag.HRV,\n.flag.hr,\n.flag.hrv {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAhFBMVEX/////i4v/aGj/f3//VFT/u7v/QUEXF5b/AABkZLn/bm7/zMx+YaFWM4JgirTvGB2PkbKwbobgT1n1wcclFYxFioSnoLn/EBDfiZOEPHxQlbL/WFj/MDD/q6v/5OSnYZH/MzMfg56yVH6WXB4wp+NCfoj/NDS+UldzI298DFSHeJVeSqKsIk37AAAAj0lEQVQoz8XNxw4DIQxFUQPBkAxM7yWTXv///8Lag8QoWeTKq6cjGfTK4BfYNCtgkp26vn/PWRKA6bF7VtdzXKUBmF/MI47t655TuCHV7c7V1nQHGt4AEQ4IoQQTzJ0IQhlpKXUkg3DEPbobg3Dgkrsbvn+9JRk2cT4xQ3dQNFsgFnYxL6FSZekZfdDbH+EHirAUn8rfZdMAAAAASUVORK5CYII=");\n}\n\n.flag.CU,\n.flag.CUB,\n.flag.cu,\n.flag.cub {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAATlBMVEX////VMEX88PHtp7ANKIjCFDCiGEDPFCsAKo/fYG/43eDSITfnipXzxMmCG1DbTl9nH1waJoI0JHXYQFLwtr10HVdNIWnniZROIWl1HVZ5UILHAAAAb0lEQVQoz43TSRKAIAxE0aDiF8F5vv9FXeBaOutXRXXoWLt00hgcjQjxpwihXUUIobfCfJCYKg2Cq8swZDoNJbh/krH5C5PMrN+y9PNf6mRVRIF12DflaRw4LYy8HiBe2sLFLxRL4W+tZo9WXPUUXqHrEc6IUEytAAAAAElFTkSuQmCC");\n}\n\n.flag.CY,\n.flag.CYP,\n.flag.cy,\n.flag.cyp {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAARVBMVEX///+xt6THy7724cbqvH/Xfw+QmH3VeAD99u/d4Njt6+Ty1a/vzZ/lq1/iolDaiB/tw4/S1svns3Dfmj+8wbF5g2Obo4sXWHv7AAAAkUlEQVQYGd3BSRaCQAwFwN9jkoaemO5/VH2KyibgVqvwB5jxDfYj4xqXMEDFeEpuCp6hc3P2fvSZKHiccbQLDBVPZSi0CwzFwJmOChSODupcpwGKQB8NJ0Z6qY1xplW6y35kXHFoHtdWAcDYyQpNtBZv1kaoNtMFD9LNBl2SaMQCVkyUhDPSTUwpmi64tiz4TTctpAW3+OsVrgAAAABJRU5ErkJggg==");\n}\n\n.flag.CZ,\n.flag.CZE,\n.flag.cz,\n.flag.cze {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAARVBMVEXXExnz9fldMVZwj7LXFBrrio0oPnHriYz///8RRX6/zdyqHi/QFRwURX3JFiAnVooyX5CdITbP2uVwLU2En7xfgqhiXoONvJBJAAAACHRSTlP+/////////kgsYtwAAAB+SURBVDjLjcxHEoAgEAVR0DEMglnvf1RzGUbg9/pVq0mXUIobA0LmVIMQmu4QmZ4wPr1gdHpDbg0Iw9MXdG2PwbVRg5B9UwHZjSBknjNZ8XMcLMnUF7q8IgLg/05A307AxBIC/bs3DOyeMLh7wKQmBOYdEQKjuwMCux0iuw0uJHMc3CNW1r8AAAAASUVORK5CYII=");\n}\n\n.flag.DK,\n.flag.DNK,\n.flag.dk,\n.flag.dnk {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAeBAMAAACs80HuAAAAD1BMVEXGCy/VSGPGDDD////fdovhlE4KAAAAAXRSTlP+GuMHfQAAAClJREFUKM9jUAIDZWNDJThQYBghgoJgIGxsIogADMZYAKWCWC0awSEPAKZsVc82AYC3AAAAAElFTkSuQmCC");\n}\n\n.flag.DJ,\n.flag.DJI,\n.flag.dj,\n.flag.dji {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAY1BMVEVqsef1xcbv+PZztug+r4gSrSzYGB4SrStqsuf///+w1vIgsjjX6/nE6s80uUn2+v6MxO2r4rXztbfpf4LH4vZ8u+przHqhzvDi9eWJ1pV60YhNwWD64eLiVVnma2/wpqjbMDVRQpFcAAAAAXRSTlP9g+pWxwAAAKtJREFUOMuN0NkSgjAUA1BapDGUVZQd9P+/0heKslhvns8kMwmSx1WSICDjUAiZN0JIJoUQkvdQCJnHQkjqQghJz1Vb6LlqD6mbf1Ct+4Ufzre19eyqBY5KmUkpz1WusTLGmE8n08s+bnr+drpHhG0iB1/VVDlXWhzi4KjI57KaAb/hmrY+rJ7CzuI8W1hmgAC2AyCAugcksLSQwHQABFDXgAR2FhKYZpAkegP2fSKc/aQhAQAAAABJRU5ErkJggg==");\n}\n\n.flag.DM,\n.flag.DMA,\n.flag.dm,\n.flag.dma {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAYFBMVEUAaz/THDDGHC4rKytAPTJ+nipAQECAtZ/////80RYqKSSYLC5+nSqkJS6VjoNqQzeTfCveVGOxHyy2IyyNU6QMWjZ+niveSSncSCiJMjSveRBJSDW8QxS7Tm2HZlu1MmlGHhZsAAAAfUlEQVQoz9XTSRLCUAhFUR5Gk4j8/FYT2/3v0jFYVixnOdPLiAIi7zwed0NP604bGIwX5hTW5yZlEdbpI+ytCCmPVxFEF2i05oXxrIDOLlBncQZqY2R2gQ4WK1DbDZldoMFKCiytgyQXqLcCpNyvIggu/L6evxe+iev58gpvCkQKp08QYFcAAAAASUVORK5CYII=");\n}\n\n.flag.DO,\n.flag.DOM,\n.flag.do,\n.flag.dom {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAWlBMVEX///80V4IzV4HBydPYQFGqucrvr7YALWL////OESaFrYzc3N2MwZvw9OtdbYLyv8XDqKJ3QDOQiYx0e2jDk5hopW2UPkR2rXvRXlettL2ZOTKbhpy9bH/R5dbyk4vSAAAAAXRSTlP9g+pWxwAAAGVJREFUOMvt0LkWgCAMRNEgoiObAu7L//+mfdJQWfnKnNtkqOcZAOgGHv3wY6galsahMbY8IrB0jLE4fiUJgy27fSqgtzlvvgJO9r6WKpjONc0SivdGF4LTikdisA4AjJj3hx/DF+7cINDJhV4uAAAAAElFTkSuQmCC");\n}\n\n.flag.CD,\n.flag.COD,\n.flag.cd,\n.flag.cod {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAeCAMAAABpA6zvAAAAQlBMVEXOECH20BjicB3xuhkQhfDqmxrTKx8Af//31hjo0CXaSh6KsH0sjtbIxUNspZo+lcW6wFFdoKiatW9Omraqul/YyzWj+uowAAAAtUlEQVQ4y43Q2xKDIAxF0agoQVC02v//1ZbgBXQSOM9rsmcCumKz6UYoMz81LcAJLcfUB/sBLugmqQo3tOiEagK/OAvVA1o8ZjxTBRj6cHEz5BbFVaFtFkq7IHe2OnZm1QQVPmBeRftvEVxxmo1hq/QQgrsNn9y4qr4gEeW56g21XH1DpvqCXPUB+WoGpWoKxeoNC9UTFqsHLFcjrKhGWFGNsKKaQamaQLl6wVL1hMVqhBVV2g/BwB0JqIxfPwAAAABJRU5ErkJggg==");\n}\n\n.flag.TL,\n.flag.TLS,\n.flag.tl,\n.flag.tls {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAASFBMVEXcJB8vJQcPDALvuiP2niP3nyNeRg0AAAD/xyblTSCffBf+/v4QEBDr6+vPoR6bm5vWSB7IgRyrq6swMDBbW1uHh4cuLi5xcXHPnTqaAAAAh0lEQVQoz63TyxLCIAyF4dIaflKg1N58/zd1YdVxUcjCrL+ZTA6Hzs+dbXB3tUH68aYmCH4wUADcFJoUAPoxtCjn+KFBgX0lHbgpVCmw5ZLTa32FQioxls/6S0pacozx+ELRy2Ny2R7v1aKVq5czywr7jUfUFLio6QlFTaUQNdVM9J/FtX6FJ3flBuv74gRDAAAAAElFTkSuQmCC");\n}\n\n.flag.EC,\n.flag.ECU,\n.flag.ec,\n.flag.ecu {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAA9lBMVEWyJ0IDTaGAlVD52wqyKESBllD+3AHtHCT/3QADTqJggGbCuyMNVaOCZRddQSCleSiiqmoXW6QmY5rivRy5Jj/z1x59XizfyhM8b5CvjxLjzyzYySPtoybSsQX8wwSoxxiQo0Bwhl5ReWxwpZl2lXNBcXmaK0mpWEyGrH6AqpMfeqZwkIY+hIfJqhTnxQPTvD52WyzIpwerk0A4VH/OwBHqxxa9uEKymkFLRnVlTTe1wxO7ulgxRYd0alugglrGvT1TkUKcqFGlrTVZaZmady9RXW+hk4iBzeO3qZetbGNFfXRmrWSxgH15k45mskDC3ubv9/my090lViSgAAAAAXRSTlP+GuMHfQAAAMhJREFUOMvdzcUOwkAUheGhg4xUoThVghZ3d3fe/2VYlyYd1vzLky/3gjD6qTD4b9jMIhRjw3RCTAw7LVGoMyBEmrAYC+0G6yLsQ01MIxSD/jCeoVm5LC8nvUzcF8Kcsa5UyvmVkYP+r/WN/Hy9jyFT/37NhVxRcro7xDkQ6t45EMCuuMLtWs0/zgXOvQc80C5eqrVa0WZBQrcli5RmlDBgNDndSZI0SEYZkOdT5n5upXjMgFjBeNTFWPFAEPSkqt4NgMiP/RX8AFm1LNtFasN6AAAAAElFTkSuQmCC");\n}\n\n.flag.EG,\n.flag.EGY,\n.flag.eg,\n.flag.egy {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAOVBMVEUAAADXu2Dy58ro1qX+/fr48+bv4rzOESb////9/f3hzIf17NXfyHzr3a3NqjbHoBzn1aDOESXDmQkYz2ycAAAAXUlEQVQ4y+3QOQ6AMAxE0Xgle4D7H5YDGMmmocovracpnI5gacOv8HqFJZtU7K1YyCzC7EOGJtKAfTiBAJYLC8M96pqBxV4Vew/AiqpYAxCVaDQfZtGTUOx7dv/2ADMgFMzubFP8AAAAAElFTkSuQmCC");\n}\n\n.flag.SV,\n.flag.SLV,\n.flag.sv,\n.flag.slv {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAXCAMAAABODP0nAAAAWlBMVEX//////O//9s/X6rsAR6sBR6v/+d////8/dL////+i0ZWXx4HM5bDp6dqhyLelvrRzvIL7662uxs7v8MKL0Iv/88Krwanv8/pmr6uEtrUtnaR3uGldpqiAzICRExgrAAAACHRSTlP+/////////dElM2YAAABfSURBVCjP7dJJDoAwCAXQQhW1gx2cp/tf071NhL3+JXmLD0FVstTqm7AVRqnuGZgIi2FTQlo8eOQhuZxS1shC6Odow0UsRLPu52aA7+iOPthBsAzoOGoqofiO/z++wRtv/hV0LCDfBAAAAABJRU5ErkJggg==");\n}\n\n.flag.GQ,\n.flag.GNQ,\n.flag.gq,\n.flag.gnq {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAhFBMVEWOP1wHccTt7e3X0c4Ac874+Pj8/Pz///8+mgDjIRjy5qYojEXz8/P69dr28Mwag3fcIx0Qe9Eyjtjj8Po0lB682vKbOlF/uOY7mAbm5ubSva1mwono2MlCrmlcUYRjT34KeasNe6K8LjYwYafGKi8nZK9Dl9uvr6/IyMh+y5u95MvZ7OBX9KKrAAAAAXRSTlP+GuMHfQAAAKhJREFUOMuN0OkOgjAQBGAou8Uth4iKHOJ9+/7vZwjQmJjKzM/Jl3ayXjTD4vkrENKhBCHNUUgRCqGZHaRjCUJkZg+BmQNcLEObJEmT8CcDpJttjElTY5yQNmPD3Dzf7Ia0HuGrbZt/MB+h3gYaeJHjDsY8uZEV1zWr2AVz2zwCpYK76+vvO+qq0s47FjKVHu4Fg+cMg/5FMFgIBneCwWuGQf8kGPQwJx8qkCM/iEB9nQAAAABJRU5ErkJggg==");\n}\n\n.flag.ER,\n.flag.ERI,\n.flag.er,\n.flag.eri {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAP1BMVEXqBDerNnXVFUwsmCzsHDRVeMiAV59Bid0SrSv8qChjbi+ZQzPPGjXwOjH6kinzVS7uKTP3fiv1Zi72cS3/vyb+/BJuAAAArElEQVQoz43Q2wLCIAgGYCo6UAGivv+zhq6Vq+n2X3n4BBWej/vptiNQsgfDnC0MbUZ4NhgC8Ai/GZIxUcR+5WknJWUBjAm716iLTBFUyetK984T9H0SQdAMv5lxnUQDUNJyIsBKCq4Dy6W9eUVahcfD5Ty9hZApxQD2X7Ggq6dOgj+CJaNmW0Uf6C0NFLl1LfpC/0IhSdxBDfT2kbtoAUdoAUfoA7dQhXtQyQsr7xFoxTBegwAAAABJRU5ErkJggg==");\n}\n\n.flag.EE,\n.flag.EST,\n.flag.ee,\n.flag.est {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAZBAMAAACx9nFWAAAAD1BMVEUAAAAAcs7///8AJkVUVFRJK4tKAAAAHklEQVQoz2MQxAIYBqGgMRbAMAiBCxbAoIQFDEJBAGOJKS051BtAAAAAAElFTkSuQmCC");\n}\n\n.flag.ET,\n.flag.ETH,\n.flag.et,\n.flag.eth {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAV1BMVEUPR6+FklsaUaFGaojjRhZEnSZ2iGXaEhr83QkHiTAmVp1YdXuipEfOwCgIdlMKZHUVS6qRmlM0X5WzGzaNJVJ4RmN0LGVnL240PJInbm88Y49of3CaoEu2CXfUAAAAnklEQVQoz73Pyw7CIBBG4TODgkJbWnq/vP9zujNSY+vCeBZs/i+ZwP3L+AOsqhir6hxGAIhnULXGBGrVPbxmzWCwgoE5X7i9VgKaRJICZTblsMCKFLYREUtxAC3Y8HyOoQ+b6hb8MSwwyRjbBJPM4ekSkFXsKu+fuWT10CzeLw30+YLLmwDvUabdsIdugLqGwZ1B13bj2LXuHH7o9/ABsVYX6gf7JlYAAAAASUVORK5CYII=");\n}\n\n.flag.FO,\n.flag.FRO,\n.flag.fo,\n.flag.fro {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAdBAMAAAAqZzNAAAAAJFBMVEX///9HUpXtKTnf7PcAZb1XTozp8vnQ4vMBZb1+RHbM4fK20+39jzf7AAAAQklEQVQoz2NgAIEUIaWQAgY0MFQFjUFgCVBwszEcMLS4gABQ0AUOPBgEwWCS0kRBBGBQwgJIEMRqJlbbsbpz2EUHAAeHPE2odssQAAAAAElFTkSuQmCC");\n}\n\n.flag.FJ,\n.flag.FJI,\n.flag.fj,\n.flag.fji {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAvVBMVEVps+fyxs2OiqtgdKFhptbTeo3YVmvIEC4BIWnAyNrg5O3kiJVnbpq/yNn7+vtmr+PWS2HZ3efAQhf88fP21drIRVpsrt1voM2buM5mbZrEWQ/YhHzUegjw8PCx3cXijJrJiIbLkXTZvADN49bPLkjTiJD13uN/uOF+uOCo0Mi1FySjyFRgrIHF0NnHUBLIgYjY2NiF1ZrPsHa5iXDYcBHOhgXknQFIt3uZz7HLYFhdyI6P16/Y0M27zb3c8uYVHlLLAAAA20lEQVQoz9XQxxLCIBAGYKIQjEgCKfZuYu+9v/9jGYSMF0a8+h+Anf0YZgG2VcwX0jgYO2IvIdsCuoiGoBLKSguzpoDZJS10KKV8GAYuxm668rSkWog1eTe8nIpngND3D77frE+hejoNd4NQPB2EQy5qCbf1fv/Y3C9hNky+aNmoJIZ5n2pqGNjode1Lr7tTULLseySV8HxrJ8n11FZQss+HCyrh4D4g5PloQfA9MGIsjlkUGeGq02GMNJAJegu3RchmRj0DBGO+JmQ+GQFjylWEqmXwSyoV8E95AQvtEN53dkXyAAAAAElFTkSuQmCC");\n}\n\n.flag.FI,\n.flag.FIN,\n.flag.fi,\n.flag.fin {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYBAMAAAB6qqLzAAAAFVBMVEUANYC5x9z///8cS444YZwANIC6yN25wbmkAAAAMElEQVQY02NQAgFlBgYWJQRgGISCiYJAIMzAwCwIB2IMYMDKQAJgpaIgVicNkfAEANoyJ4DL1EUnAAAAAElFTkSuQmCC");\n}\n\n.flag.FR,\n.flag.FRA,\n.flag.fr,\n.flag.fra {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAD1BMVEXtKTkAI5X///+ptNv5t70X6cUbAAAAGElEQVQoz2MQBANhJTBwYICAUcFRQbyCAK7MKQicBg83AAAAAElFTkSuQmCC");\n}\n\n.flag.GF,\n.flag.GUF,\n.flag.gf,\n.flag.guf {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAbFBMVEX83AiRuRi+yBJRoSRyrx4VjS3n1gv63AkkkyoLiy/Pzg9fpyEcjyza0Q3v0Qv22wk1mSf32wlGniTSKxn83QkHiTDaEhrxnA4dfC3pZhFjVCayJx6LPiL60An4wwrNGBvvkA7cHRhWWyfgNxaA7xGhAAAAFHRSTlPzv8HPxfLO6eX6wcrrxtTd2+PT9HbczSwAAACWSURBVDjLjc1JEoJAFATRZhJQENTs3wzO3v+OLsAIVnbV+kWWaxsvzVEeRAj7QoRS1AFSdIWUmQghLUTIKRMhpLUI6c7eez8MUbhEp0mAdL2fZwHeRjMzs+sQK/J8mT3e8Wv4mF1qAd5tHO3Yx2EIEIJL6uj1umMlQlwiQthVItxG/8NNNAZxuQh/UQEuUQVC24iQMv8CwB5UlCzbsBIAAAAASUVORK5CYII=");\n}\n\n.flag.PF,\n.flag.PYF,\n.flag.pf,\n.flag.pyf {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAsVBMVEXOECX/tk+2i43y9PrOESb//v5lhMLaS1r////bTV1wjcbIDyTkkmjr7vb/9+v+8d+IoNH3t2f/yHqqhqH++ff/qzbfoJV4kci3xeTb4u9afL73x4fMo7P/0IzHKTvfnYvoq3yySlTBWmXkmXvdmYjEh4zpm13Who3yx5f//fn/1pw+ZbL/6s2Dh7b/3aqLotG1f5j/oh/AZG7VfHemd3i+oKKak7bywobNamm+ECDt5uYgMvG2AAAACHRSTlP+/////////kgsYtwAAACzSURBVDjL5ZNHEoMwDEVtiA2xIfTeO+m93v9gYR0yNuvkLTVvpBl9CYDZJAD4KVGaT0ICSP4E2bY8Lo5EO2mfr+MO8cSFYyq0cyBcckQnb11Ke8Uw2KJmZpVCqXHOzQVT3MC67rvy/lCgxhQT6DbCwKmCK/boyG0uV0Eos4g5GqnESoubVaRbT2R2RATHFsGHOPQ461H1UMeErLHKS0b08V7HvsiNcFCDQPyS9eTr+cvnegOnuCDbYqL39gAAAABJRU5ErkJggg==");\n}\n\n.flag.GA,\n.flag.GAB,\n.flag.ga,\n.flag.gab {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAeAgMAAAAjs7ROAAAACVBMVEUAnmA6dcT80RaPCvp4AAAAFUlEQVQY02NgoCtYBQf0YIbCAR2YAPNdY51lSXDNAAAAAElFTkSuQmCC");\n}\n\n.flag.GM,\n.flag.GMB,\n.flag.gm,\n.flag.gmb {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAElBMVEWGjsY6dyjOESYMHIz///+FjcUzsQhvAAAAAXRSTlP+GuMHfQAAAChJREFUKM9jUMICGIaKoAsWwMAaigECGIyxAJoIYrUdqzsFsYChIggAWI9PB/8YOioAAAAASUVORK5CYII=");\n}\n\n.flag.GE,\n.flag.GEO,\n.flag.ge,\n.flag.geo {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAALVBMVEX/////AAD/v7//Pz//wMD/8/P/f3//19f/5ub/YWH/nZ3/sLD/Ly//gID/QECpnlCHAAAAk0lEQVQoz2NggAJmQUEDBnSALsjughB0KYAKMokhBBMVIGKsLyWvwwRrJ84LgIgKCgrBBBUFBSFiHLukNGCCTQtXN+A2k4GVFSEYEIDTnS5Q4CMoeATGBlqNCWgiqAQFOoKCh2BsnOGJ1UfY/M6xS9oDJtgCDyVs4clqKZkOEyybOBlqKAu28GRXQQg6FeCLdwxBAHsYKbiOyGOgAAAAAElFTkSuQmCC");\n}\n\n.flag.DE,\n.flag.DEU,\n.flag.de,\n.flag.deu {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYAgMAAAD16ldTAAAACVBMVEXdAAAAAAD/zgCNyoGDAAAAFUlEQVQY02MIhQMGqjJpBVbBAVWZAPgZT7HoYeqNAAAAAElFTkSuQmCC");\n}\n\n.flag.GH,\n.flag.GHA,\n.flag.gh,\n.flag.gha {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJ1BMVEUAaz780RYAaz/OESbOEiUAAACCbAvcthMPDQG1lg+dgg3swxQwKAR6YlIEAAAAAXRSTlP9g+pWxwAAAEtJREFUKM9jcDbGACYMQ0VQEAbEC+FMhKBYIhZBmYMYguJpqWFphegqZ4SGdmJoF2+N2IgpGBqKKSjVOWMhpuBGaYQgkxIGUBgqggBnKVEwiejeOwAAAABJRU5ErkJggg==");\n}\n\n.flag.GI,\n.flag.GIB,\n.flag.gi,\n.flag.gib {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAArlBMVEX////39/e/U1jPAAn8/PzHAAnjY2raAAzpZm3UAAsAAACbAQXQGAny8vL09PS4AArVRk64GyNVAAHCOAnFfIAbBACiExmvAAaRAQejAATOmp2+io27Jwa9RwbCcnfbxcbTuru5JizFbnLQq63ksbThrrAuAADESE7TuLnCICmnTB13AAR+OQCtMDe6NjvLMjtiAALdIge5bQbDYAjITgq2VwGSP0KTPkS9AAi3cnZPTm/iAAAAy0lEQVQoz53P1xKCMBAF0BQSTAJSpKP0Yhe7/v+P+czABMb7mD2TuwvAn1EAgBBCAJQJl5VbdD6jbZlNSKdFsRARap2J6gpf4jCMLriagLV9irsuOtm1fMW0aN5f23ZeTZHKllSS3LN2lrWzvDyRXqNjRjBjmDCsS7uXjBAWBIwQtpRD7Aqf80/gYjnUCT8IzsWBE2k1RIbhe8ej5xsGgv3ZohdKqWnu96ZJKe1PgDqItnlqw9cRqLprdR58rOZB7T4Trm9zf9xcR+APFrAUctS1tzYAAAAASUVORK5CYII=");\n}\n\n.flag.GR,\n.flag.GRC,\n.flag.gr,\n.flag.grc {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAgMAAABzfiX9AAAADFBMVEUMXq////9Kh8PD1+sc/9mlAAAAKklEQVQY02NgYHVggAFcTM5QMMDBBOIYqFLsTIImEHRDKBzgYBIEFJsAALoFJ2TsUBu2AAAAAElFTkSuQmCC");\n}\n\n.flag.GL,\n.flag.GRL,\n.flag.gl,\n.flag.grl {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJ1BMVEX////QDDPohpnVIkX87/L54OX0wsvxsr/cSWbfWHPldYzrlabbSGWxUx9nAAAAj0lEQVQoz2NgoBlgTSrFEOM2FBQ0QhNjaRQEglZUQWeQmKBwAIrgRLCg4AFkMXaImKA0siAPVFAYWZARKijogCQYCBNMgIkoYQEMQAUGMAUHoTpAggIwQUMkQTFYAAgiCUpCBbmQBQULIIKJKIImkGAxRBEUBitNFkQRFJQC+sVJEE1QULhpsiCGICqgUBAANkcdSdbxxVsAAAAASUVORK5CYII=");\n}\n\n.flag.GD,\n.flag.GRD,\n.flag.gd,\n.flag.grd {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAbFBMVEX80RbUJyIjhlMSgFhKVEn5xBTWMiEAel7OESbPsiL1zhgHfVtlnUHkahyRrDN6pDujsi/WQyHiZR3lcB2FqDeGSziznirdxh7lyRzsyxq/WiihMzDRHCT3vhPtkhnrixlHk0jypxl7fjq9uifbhgG8AAAAx0lEQVQoz5XT2Q6DIBAF0AHFoYor7nbR9v//sdZawIoNvS83GU5CQASuQ4i9l4Dh2OVs6x3k15u9Fazq08/U1Qp9FA0cphHoK4iRaO2sFRGacKZpt2ddGr3WNhDRK8MtC0vvvfIFZ5oYNEy8z1xBNUGaASvyvGCQUTXUkD5GTXsuJe8NZsARIFXTYQKYBrRCCnmmIQEgBxCTO9VbF1IWB1vj92HkwWGcr+evC3f8hK6PwvGZOT/cNUEcB7be/zOM2XsHg8DeS5725xrneLCWvQAAAABJRU5ErkJggg==");\n}\n\n.flag.GP,\n.flag.GLP,\n.flag.gp,\n.flag.glp {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAh1BMVEUAAAACQwAAIgDdxAsAAAIAI4cAMwAAJIj83QkAAAAQDgCuozBPXV8WM3xfaVgACAAwKgEgHAEAVwAwR2/t0AiOfQU/OAK9ryieiwURaAAAGADt0hB3e0vNuiBfUwOumQbNtAc/U2gAEABPRQJvYQOelzi9qQZqfwMQIQB+lAQoVQF+bwSOjECMgg6qAAAAAXRSTlP+GuMHfQAAAWVJREFUOMt1ktm2gyAMRUVukYAjzrNW7fz/33dptaItPTwkmr0SchbGwXqpt5TCUOWOPceDMYMOdVUx5SqvqLMDe1qpIqUq57TfgGFq02paenK3Tt2lZzU9aJ+GK+iWNeblUqSYT3jpycu0rktXjbbd2rXny1i2w9P3Ck7/LOyWKTd35Ntlyv0yIbeVI9PDWT/sNNyBlv3DR2v10fj7EpPnU4ZhwEtHb44Q+P4YJAN8aAE9k5imDADsnnRddm+TRAsCEkiYZnGBOI6oFI78Qd8RCSEQIXFLF+Gg0YEgyVzk1+uboxHWjoaCEJHnN7yCFGe+DpTTC3HLFEejeGA6EArvcj5tQNpoR7+8LMYteGp+gayZvVnU+r9A8E/dZpk8R4XpaUFgnWp5PktfCUJEA7IhWP1ps4tJkDymriMkPsazNxkwOD5R7egn2Y5xl/nj7OGReD9A+c6SoAmCQP/MdmLAvv6B8Q8o+yuQH5IUZwAAAABJRU5ErkJggg==");\n}\n\n.flag.GU,\n.flag.GUM,\n.flag.gu,\n.flag.gum {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAVCAMAAAADxFwsAAAAeFBMVEXCHzmW0OxmN2t3w8MNKHaS2/xePXLGIDgAKXvGITmQPGGQTmpsTH6IQGpka51wO2xAocE0qF5ovayF1Oevx+KBW3mahqe8mUjQxGkJh9h/n5iyuXuXtrSJgqiIsbNXmmeSpJZNn9a/h5e7oblqrNiVxsm05P0sdJ7LAldAAAAACHRSTlP9/////////V+qNIUAAABxSURBVCjPzdM3EoAwDARAB8mYDCbnDP//IS9gpJKrt7hREJ7PiieEZUX8C0IcAAvGWgYcqFyea0NDmIrF6RpIqCTOBaIiYYrlXh6YktDIW67XaOiOybk9XUJ3tKbPsibizDEa2pC3mSqEv1/PB+T+zAtTThsh36bO6AAAAABJRU5ErkJggg==");\n}\n\n.flag.GT,\n.flag.GTM,\n.flag.gt,\n.flag.gtm {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAZCAMAAAB0BpxXAAAAXVBMVEX////g59maroTj16m6yaT09/P09PFJl9DC3O/p7+bu4ZOqu5rX382PiGiVon3T2MqYoVjCz7f5+vrM3MSitpGYm3R3k12BnGjKvKzP3bz+++rx5Z306Z/w46vf17vmoc6yAAAAaUlEQVQ4y+3Stw6AMAwE0EsFh4QSev3/z2QNk2Fgy61+OkuWUaQpkaR8jJDhV2jMG9hpNDMaz8JKnE71UXPQSmzuWDGxjRLX7jQNxEAazKJU7SsOQgRtogzErrZ12/Xt+OaOBCvym/0Fb1tLFihEHgDLAAAAAElFTkSuQmCC");\n}\n\n.flag.GG,\n.flag.GGY,\n.flag.gg,\n.flag.ggy {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJFBMVEX////oES353Rb5w8ruTGHwdSH1qhvrNyj40RbtTCTsPVT0nR3fS35zAAAAZUlEQVQoz2NggAJDQUFhBnRAgmBoKBbBInUsgkKKtBV0gYKFQopSMDaDIAhMBGIhRSAhCeZCBFtDQ0ODVIFEBJKgEhwgCbalpaUlqQGJDCTBQmxmCsIEIYB+fscf8tuyKYpiJEEA44Af4yfh9owAAAAASUVORK5CYII=");\n}\n\n.flag.GN,\n.flag.GIN,\n.flag.gn,\n.flag.gin {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAFVBMVEXOECXOESb80RYAlGCovC7tjxrskBsC56JSAAAAAXRSTlP9g+pWxwAAACBJREFUKM9jYBQEATElMHA2BgMGiKDoqOCoIEwQNYUAADVVSCfgcZ/QAAAAAElFTkSuQmCC");\n}\n\n.flag.GW,\n.flag.GNB,\n.flag.gw,\n.flag.gnb {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAIVBMVEXOESYAnkn80RbtkBpFbjwEAAC8DiEjAgaQCxqcDBxVBg4bYLCCAAAAOUlEQVQY02NgAANmJWTAQE/BBGyCC7AJRmAKspWGVmCqZA9NYGARRAYgwaUTMAUz2RowBUFgMAkCAEjfH7SkK65IAAAAAElFTkSuQmCC");\n}\n\n.flag.GY,\n.flag.GUY,\n.flag.gy,\n.flag.guy {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAgVBMVEUAnkkRpVX+8bZYwIgkrGN0ypzB59P80RbOESYJCAGk3L7t+PFAt3caAgSOCxo1BAn8/fX93lf943H+7J781SvZ8OSM063/9s7+6If82UC9nBDcthS1DiFnCBPBDyP/+uUfGgIfGgJ+aQt+aAtPQgb9/O5OQQa9qE5DS0d6uJeAemJ4QqG6AAAAsElEQVQoz42TVxLCMAwFQyiSIRB6h4QS2v0PiLHNRE6Rtd9vZp9sKXq9k0hEqj6jYbcTDuJkfHnGxaDfCwXxfFL3w2yRrdYJH0Q8puoKsNtuuBJo0P49ACzn8bSthA1aP/xoK4F/rN/QWAJLnN9QL0GCxO9KFKQEehB/tQRWoH6vRD2YS4JafROo9TAPb5iseRhqZZ6HWLkHL638FzpraCmsNbhmxipYXOkpiI9Leq5frY4Y/eRr36cAAAAASUVORK5CYII=");\n}\n\n.flag.HT,\n.flag.HTI,\n.flag.ht,\n.flag.hti {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAUVBMVEUAIJ/2zdTJ1cJ6e5/K0OtQkEr////SEDTXJkgYNamdqHn3+fC7qsOVwZ3m5c1hmlHJpDHs59z848dQba0QEBDNZmTXh19voHz84Lu0hjjIpTBzGy2qAAAAU0lEQVQoz2NgGAU0AZxQQFAhCxsbrzg3GwsRCvl4mYhSKMQsyMcsgamQHQ0w8jCLiQrzMKKLYypkkhKRFGAirJCLnxUEuAgq5IACggpxgVGFeAEAvUgOmZnoHJcAAAAASUVORK5CYII=");\n}\n\n.flag.HN,\n.flag.HND,\n.flag.hn,\n.flag.hnd {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAG1BMVEUAc8////9Vot/g7fnv9vx9t+YSfdPS5fao0O4m4Cd/AAAAQUlEQVQY02NgGFCghAUwCEJAI4iQgHKggsIpINLNEEUQCEQD4UyYoCFIUARVUDwZRJoVogiKgLnijlBBrE4aUAAAhVoQix6fUHcAAAAASUVORK5CYII=");\n}\n\n.flag.HK,\n.flag.HKG,\n.flag.hk,\n.flag.hkg {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAANlBMVEXeKA/qeGn3yMLmXUz75OL98vHvlIjeKRD////th3n519PkUT3xoZfiQy3oa1nzrqXgNh/jUT0/tP8hAAAAAXRSTlP+GuMHfQAAAJRJREFUOMvd08sNAzEIRdHBBnzxd9J/s6kgHktZJayP0APBdZWjuq5fhbkdwZYYJ/CucNRRCPwJtlKKmyJj5nsH1b11oztgsoGATdasqgLzM6wEXSI8AT02GTE1eWUP8bydOle0D+la76f13BFpubEe4DDQlbTaAwykklNN7GFWYJVp6B6OnlIupTSLw3uMv/mZr+Abp+scdpIFX0UAAAAASUVORK5CYII=");\n}\n\n.flag.HU,\n.flag.HUN,\n.flag.hu,\n.flag.hun {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAD1BMVEXNKj5Db03///+Cn4jdcH1rDt86AAAAHklEQVQY02NgGFDgggUwKGEB9BM0xgIYBLEAugkCAA3bITVQzOs7AAAAAElFTkSuQmCC");\n}\n\n.flag.IS,\n.flag.ISL,\n.flag.is,\n.flag.isl {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAdBAMAAAAqZzNAAAAAG1BMVEUBUZz////A1ObcHjUCUpz2xsyBqc3o7/a/0+YtMruUAAAAAXRSTlP+GuMHfQAAADhJREFUKM9jcAEBp2BjMRc4cGAYfoJKIKAebCyuBAcaDIJgEGwsiAQYjLEAEgSxmonFdiWGkRHyAMPXhW+2p/5SAAAAAElFTkSuQmCC");\n}\n\n.flag.IN,\n.flag.IND,\n.flag.in,\n.flag.ind {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJ1BMVEX/////mTMSiAfY2O2pqdeDg8bCwuOPj8tjY7e2tt2entJvb7xlZbj+tLZ3AAAAOUlEQVQoz2MQxAIYhoogXsByNMIBQ9B8smUwhmCZ15J0DMENHi3cxKk0xWYmW2tEAn73KWEBQ0UQAHj7LkjxXc8wAAAAAElFTkSuQmCC");\n}\n\n.flag.ID,\n.flag.IDN,\n.flag.id,\n.flag.idn {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAgMAAABzfiX9AAAADFBMVEX/////AAD/f3//AQHNXVckAAAAF0lEQVQY02O4GgoF4QyDgbkKDhgGFwAA0P04aY5rCYgAAAAASUVORK5CYII=");\n}\n\n.flag.IR,\n.flag.IRN,\n.flag.ir,\n.flag.irn {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAXCAMAAABODP0nAAAAUVBMVEXaAACe1KvjRUXxmZnaAAAjn0DwkZHfJibsd3f////kSkpduHOo2LRfunQkn0FYtW7jPz/ujIyj1q/0sLCY0ab62dn2v7/zqKhDrVyMy5r97++GuGN/AAAACXRSTlP9/////////f2Mg7y3AAAAiklEQVQoz92PsRKEIAxEg9xFISIII6j//6EXQKuzSO2SzJuwWySwfEVa4FXB3ZEnIu/cDd/AXeEaiHY4ZhWVmtuLF+L/fIAR6iG4lbJJgjrlnJIgmFEXzIJgwsQl2jEE0Y7GnOfT1ZNG1KhXBt7ACu61GxUTjMNgA5e1FTwwqvinG90fAT4iwauCP4TbGUYnV3DMAAAAAElFTkSuQmCC");\n}\n\n.flag.IQ,\n.flag.IRQ,\n.flag.iq,\n.flag.irq {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAM1BMVEXOECWl0Lrp9O6/3s///f1/vJ1xtZMAAAD////OESbP5toVhU1Am20/mmyQxapfq4VQo3lSLMJmAAAAAXRSTlP9g+pWxwAAAGNJREFUOMvt0EEOgCAMRFFKmToCAvc/rStXBsSEJX/90kzq3DmVcxuugYFThS70n9A8hWRU8UNokQTJeGF0Ua2oAaRgBGG55dxqlZhSQhlAAwAR9QAUXfisD3/e84LHZBuugTd42CCCgiyR9gAAAABJRU5ErkJggg==");\n}\n\n.flag.IE,\n.flag.IRL,\n.flag.ie,\n.flag.irl {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAD1BMVEX/iD4Wm2L///+y3sv/176zaFdvAAAAF0lEQVQY02MQBANhJTBwYICAUcHBJAgAHJ0eZQMU55UAAAAASUVORK5CYII=");\n}\n\n.flag.IM,\n.flag.IMN,\n.flag.im,\n.flag.imn {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAilBMVEXPFCvSzsrc3Nz19fXSfIfKHzTNSVnJESjMEinKLEDHSknAOzvHXmvCHDLTo6jMZnPHU1Tkx8vLln3bx6nFOEnHRVO6e3HIkXXKn6TKn5fLUhrIf4i9cCrGUGDPn4q9Sy3Rho7NLUHVzJLd0ovVv8LLHCXSkZnit7vTqq/z5+jOuYvEp3DCnV/t7e074otqAAAAeUlEQVQYGd3BRwKCMBRAwQcE/g+92Bv27v2vpxeQZOXCGf6X8mF3gIgwYJyq3XadoKvZdMR3Mi/DYxtVsF4KQ9JeJHk1IlfDID1B9niaIsxxsbfgHgWHBAe9RGVtzCbGod63Cqo4VeFZ8ZI0+QIvRZDhJZ7gx8b8whv8pgVlegsDCgAAAABJRU5ErkJggg==");\n}\n\n.flag.IL,\n.flag.ISR,\n.flag.il,\n.flag.isr {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAdCAMAAADvl95BAAAAM1BMVEX////Cz+5Lcs2OpuBcgNI9Z8n3+f0AOLi3xuu/ze3e5fZ2k9khUsEPQ7ymueYzX8ZCbMvN/KBjAAAAbUlEQVQ4y9WTSw6AIAxES2lBfsL9T6u4104iifEtuppM/0TL2UAognwpTCCvJiaC6ZKqnSh4kcbcRHx4VmqRse9DihqWucZpHGu2kneekTvZjgFy7FeNataId33iVN3azdwtDL2eP7wC/NfLOQC4WhA4gpKDGQAAAABJRU5ErkJggg==");\n}\n\n.flag.IT,\n.flag.ITA,\n.flag.it,\n.flag.ita {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAD1BMVEUAkkbOKzf///+q28Hvt7vgJlTcAAAAGUlEQVQoz2NgAANmJTBwFAQDhlHBUUG8ggBRSidzkDNWIwAAAABJRU5ErkJggg==");\n}\n\n.flag.JM,\n.flag.JAM,\n.flag.jm,\n.flag.jam {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAALVBMVEX+0QAAAAAAmzoSDwD4zwHyxgAZoTSYuxeCawCJcQCSuhgeojMfojMhojPVrwBemeiWAAAAgUlEQVQY023RwQ2AIAwF0H+Aq0lXcAq5MYJbmDiAF4+O4A6u4AiO4DpSoWqxPb6U8PkAbm7V7BHoAaUH4NH1ajft+QXEOokNbAS6dfsa46tjthspZGVbSTDrYwVZ0xQTpJAiu2IKmwrZ6uPWRZ9Ii2AwwlvPtApRJtWZJf++44y4AGk2PZ/nYcIzAAAAAElFTkSuQmCC");\n}\n\n.flag.JP,\n.flag.JPN,\n.flag.jp,\n.flag.jpn {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJ1BMVEX///+8AC355+vIL1Pqr73VX3vegJbyz9fhj6LADznRT27NP2DqsL6WBkFXAAAAXklEQVQoz2NgoDdgOpajgCG2UVBQCl30pCAQTEEVYxcEgwIUQWaIoAGKYCNEUAJFMBAiKIoiaAgRFEYRFIQCbCqlCZuJ1Xas7sTqIwZPLH5nYFqIJZQYmNxSFOgeiQChfg9XF5eK2QAAAABJRU5ErkJggg==");\n}\n\n.flag.JE,\n.flag.JEY,\n.flag.je,\n.flag.jey {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAflBMVEX////2zdHqlqD87e776uzWNUj0yc7ODyX//f3RHjPrnKXQHDDXOUvhbXrYP1DgaHXfY3LQGi/zwsjqoKny4qTpk53ekkTpkZvVMkLs3Jfpp6ronTfXRDX//PHjzGfn0XDks6jbfDvirDPqtzbheDb00rrsrI3uvULLWjzhkDGG5NwUAAABCUlEQVQoz42T7ZqCIBCFB1OhtCwh00f7rt26/xvcERYZCrY9PxQY4HWOM8D5ZifA037vz8VuwzmsOOdZTVZVp5TqyNk6wy0rEHKO73U6ravj8XDopmm6xvBcjgdnSxwWW3sHOzdNc7f3bwsMLmc2pvm5mcjrpb98mXGuqYx82MLx5fnRP6WjLvxUDT/BxbpvbjfMTiQe1YmVhi+G63crDLVkEJDhV+lpGE5pFaA66XCRMBajOuUjv9SPHP6Wvgyp8ElJ9q+NGt22n9C/yQhjYRVLxtozHYnYYw0H8psDhrtfOAFCZlIqvJQi5XtlRlV7ZfZOJShXuG+tACE+tsJrc8X4QNslZvDYrj+d2w/y/o7CEAAAAABJRU5ErkJggg==");\n}\n\n.flag.JO,\n.flag.JOR,\n.flag.jo,\n.flag.jor {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAOVBMVEUAAADzwcY0XzY0BAlAm21AQECfKSzOESb///8Aej3aS1uaDBzRHzL42t2bDBzULkHmh5JkeFpkNDmS7NDKAAAAY0lEQVQoz43QQQ6AIAxE0SLKiIKo9z+sRhqDC+z89UubVjYvXMDqSUhSgKQASQGSoimcU7cPBBY3d1KYTFrhnpM1tUKXCwcTu5o/Rt9zjN0aGIb4k3DshRZTaLMHMuyGHIvxAjjaEhDK4xL+AAAAAElFTkSuQmCC");\n}\n\n.flag.KZ,\n.flag.KAZ,\n.flag.kz,\n.flag.kaz {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAM1BMVEUAr8phuIFvuHYQsb0xs6UfsrE/tZpUt4ovs6b+xQx9umyGu2WfvVJKtpHvwxeQu13PwC6ofxUkAAAAmElEQVQoz6WSwQ7DMAhDAwiwm6Td/3/tDrssSdVFGkf0BMa4lO1yjT3wOuoeKEfugXn43ALgd+Ck0VJSciVF+8j1SrL1hZQ2avQ8SVIwgzG2zEGSTBQbQb2+J0LtMzExa9c6gC8JPXnWdF6Pq1tGJDJdmz8eg0C4ewf0hz0wC02HLPbUJRQV0fTmM4tjJWB/hGI7ZtvB3aw3Td0Ecu+54W4AAAAASUVORK5CYII=");\n}\n\n.flag.KE,\n.flag.KEN,\n.flag.ke,\n.flag.ken {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAUVBMVEUAAAC7AQHdgIAmAADl5eXl7+UBZgHZcnIAZgC7AABRAADMQEDBLy9pAAAyczIwMDAQEBBAQgDY3di4UFCjAADQ0NCAgIBgh2CQkJAYWQDmoKBlCIy5AAAAmUlEQVQ4y9WRyw6DIBBFr2Ipw0PFt/7/h7az6IJRA4tuPAmB3JzcDAA8jq47n66Ze8AqoJ8zlcsG65zFtmTEvlFU16S4OaURDJ5FP8gcb8FILNIoc1SUEiYWpyDi6iSqQM5RUFkRlrwnWyQeByn8r7F4xttbF7/jS/D7GZlDm5R1Z3FfRayl2LYmOhd5z4jfFaPROife8QjxAw+XGXSXe9vGAAAAAElFTkSuQmCC");\n}\n\n.flag.KI,\n.flag.KIR,\n.flag.ki,\n.flag.kir {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAgVBMVEXv5+oYMHD////GzNy+Z3Hkv8PIEBDesLbFd4C5V2Pz8/eLl7dvfqaMmLhEV4s1SoJSZJTFDg740AB+i68nPXncggLvvwDRXQPIGg23v9NgcJzIJQvorwCpssrVaQXQSgfFGQz1zQDKQwnGLwnfkgDgjQDU2OTYxFDi03vu5rZRY5M4CaL6AAAACnRSTlP8////5PL/8Obhjyud7gAAARFJREFUKM+NkImugjAQRaetgrJVpJtsBcT1/z/wtayKCbxJyCnDSe8M4CwrNo8udZN9t+H7NZNctlIKHsfOqhhftb7V57q8boiOozLOy+znwl/RUXGmlHK2RBU3sixlVqkNsZJc5LngcmPGSrcir+tctLpa/z1ciLMpIfi62Nzy2op1zvVC9PaH484F7Lk98ev5eDxfGIO7Ox723kgg2BYpJnqW3kejJyB0Ck4MoZlRmkaWzDRmAkkiRIMLmei/EXr7hFwCiqJkInRJJmokdMRAFh8ARWEY2oiRNAnDhNpRTCOaCH5qJd+faQZlqTlYaaZNGm6feL/jIfaDwLpF6LAQRSwoCCkCZkboF+nJAP2z/gCvnR084pgM9wAAAABJRU5ErkJggg==");\n}\n\n.flag.KW,\n.flag.KWT,\n.flag.kw,\n.flag.kwt {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAJFBMVEUAAAD///8Aej3OESbeX21Vpn5BCxEIKRgAUymNCxoAcjnBDyM+gG8gAAAATUlEQVQY02OoUsIEDAxN2ATZF2ERZODAJshQhU0Qw1iwIHsoKgALMgiiAvoKsrmgArDgZGNUABLLNsYU5DTGFGTbjEVwsjGmYDammDEAor02RGMqg7YAAAAASUVORK5CYII=");\n}\n\n.flag.KG,\n.flag.KGZ,\n.flag.kg,\n.flag.kgz {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYBAMAAAB6qqLzAAAAMFBMVEX/AAD/sAD/UAD/oAD/cAD/QAD/wAD/kAD/8AD/MAD/YAD/4AD/gAD/GAD/0AD//wDINHCxAAAAgklEQVQY02NgoDfg1FK9gCG2xlC4FF30UnZbxkNNNMGFG0+0SGehivHWmZTOWfwmAEWQVUI6MmhjswKqoNgTpxC3xAUogkxi6ubFJYloKi18zn850oxqJufpEvnP7s/RHLpsu6NJtRCaOyfZtWVs00UT5A0XFj41Ad3zvEGLJtA9FgCBRSUPxoTUWgAAAABJRU5ErkJggg==");\n}\n\n.flag.LA,\n.flag.LAO,\n.flag.la,\n.flag.lao {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJ1BMVEWbFjXOESabFzf///8AKGgBJ2c0VIfw8vZQa5eAlLSgr8fI0N4gQ3uPvoTKAAAAAXRSTlP+GuMHfQAAAFVJREFUKM9jEMQCGOgmyKSEARQYQlwwgCtc0G31rhQMwcnGxpbogh7GQNCCJugOEixBEzwMErRBE0wGCZphE7QhxkystmN1J3Yfubgi+R1rKA1oxAEA7A9c3kKd8BcAAAAASUVORK5CYII=");\n}\n\n.flag.LV,\n.flag.LVA,\n.flag.lv,\n.flag.lva {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUAQMAAADFiO34AAAABlBMVEWeMDn///+ut+dDAAAAEklEQVQI12NgIBH8BwEsJIkAAKwEE+3AWvguAAAAAElFTkSuQmCC");\n}\n\n.flag.LB,\n.flag.LBN,\n.flag.lb,\n.flag.lbn {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAP1BMVEXtGyMvtnEPq1s/vHzyVVv//f0AplHxU1n////tHCQfsWav48jv+vSV2ra/6dN/0qdfx5HW8eNvzZzbXFlPwoebhZrvAAAACHRSTlP9/////////sajZT8AAACUSURBVDjL5dPLDgMhCAVQgXqH4tvO/39rt61OdNbtXbAwJ2gIOve8Fed+Ch6PWzmc1zFR8nSm/gIWgPINmE2YaA8jVQZS28FA1dgq+rZjAhggS2sYTyKGAFbiEuZMDADVaAl9Y2MhAFLKCrYeRADIycMjx6tTaipAUNUQNgNvjGk4VzD3qLWEGY7b8/qoX9vzl5/rDXxKIaya/qD4AAAAAElFTkSuQmCC");\n}\n\n.flag.LS,\n.flag.LSO,\n.flag.ls,\n.flag.lso {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAANlBMVEUAlEM/Pz9lZWV/f3/9/v0CAgKPj48AIJ8AlUP///+8vLzPz8/v7+/f398fHx8vLy+fn59PT09zsOZCAAAAAXRSTlP9g+pWxwAAAGFJREFUOMvtzkkOwCAIQFEGpRXn+1+2dk2iHMC/JC8APM7gwi0MyaRqZ8HCoMzDAxOLsA8SiQsORN9pidG1McdVPsPaf9jyESK25TqWA6zUiSbhrMcfi4posT/C6wou3MIPDB8g750ZaJ0AAAAASUVORK5CYII=");\n}\n\n.flag.LR,\n.flag.LBR,\n.flag.lr,\n.flag.lbr {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAVCAMAAAADxFwsAAAANlBMVEXfhZhkUX1TH1NMaJXvwszvwssAKGjPR2P///+/CjBqgaZ9kbLO1uIYPHZmaZLp7PGdrMSaZ4i5Qx90AAAAWUlEQVQoz8XQOQ6AMAxEUZPAj7Ox3P+yVGmtoeLVI/nLxpJqyD4NG0DzkAGMDJx7yCBf7mMqp7s7kErIgHv2rDWC1Ci+Z1sei7nIZFVkh0hvLKI/G+XT6vAF+EQWV9KTaOcAAAAASUVORK5CYII=");\n}\n\n.flag.LY,\n.flag.LBY,\n.flag.ly,\n.flag.lby {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAG1BMVEUjnkYAAADnABMfHx9xcXHAwMAwMDBFRUXPz8+rn9MXAAAALklEQVQY02NQwgIYaCEoiAUQEDRxxhQUbhYuxBAUcRQOTSRKEKt2rBYRdie9AAAq8R55cd7EcAAAAABJRU5ErkJggg==");\n}\n\n.flag.LI,\n.flag.LIE,\n.flag.li,\n.flag.lie {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAV1BMVEUAK3+LdBxaTgkLLm0AKHxxZB+5nCXOESYAJXg/OBMAIWU1Q018by4AHnHpxDRJTzoAHVncujF2cklKQxo3SmBpZDKtlzYPKVWVgSv71DupjiVkWyBpWBVMEWERAAAAXUlEQVQoz+3PRw6AMAxE0TjEwU4Pvd3/nBzBYYOExF+/xYxSTzOm0fmuyVHMK5HsMp6aEb3kYrBWa2tnaSdtcAECBPHJstcj1TSIGydmZh4bjpMrxZF6t76xH34e3uVzD6wKgmdUAAAAAElFTkSuQmCC");\n}\n\n.flag.LT,\n.flag.LTU,\n.flag.lt,\n.flag.ltu {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYAgMAAAD16ldTAAAACVBMVEXBJy0AakT9uRO6V9nyAAAAFUlEQVQY02NYBQcMVGWGwgF1mTQCAF49T7GuEQs4AAAAAElFTkSuQmCC");\n}\n\n.flag.LU,\n.flag.LUX,\n.flag.lu,\n.flag.lux {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYAgMAAAD16ldTAAAACVBMVEXtKTkAod7///8YqkgeAAAAFUlEQVQY02NgoBFYBQfUZYbCAVWZAPgZT7EeR7VTAAAAAElFTkSuQmCC");\n}\n\n.flag.MO,\n.flag.MAC,\n.flag.mo,\n.flag.mac {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAS1BMVEUOdGGGubDD3dglgnA8j3+Vwrqky8QPdWL///9Ll4ktglldopUee1201M5Sk09pqZ3w9/bS5eK0vTY8iVXh7ux4safSyi6zvTely8QsOr8PAAAAAXRSTlP+GuMHfQAAAKlJREFUOMvdk9sKwzAIhqMx05x6btf3f9LZDgaDYQq72v4LJfDxRQNxji/FuR8FU7oGpm0rbXC+M3cd85RaxpnZ+7NZYFEXZ8SsrSsGmKbCsYpU4vJ++YdlIopgbC3jgfwisngCb4ERQt1HNYYaIBpgL5pBjUfPBkj1JIejIlkzrjgKAqCMuFozEkDoA5EWANNI8RWyjM6H2zO7/Tx6pqxsyOpzf/FnvgMfWGQc92vH/soAAAAASUVORK5CYII=");\n}\n\n.flag.MK,\n.flag.MKD,\n.flag.mk,\n.flag.mkd {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAMFBMVEX51hbOICjzwBjaTiLkeh7gZyDuqRrsnBvVPSTcWSLxtBjRLCf2yxbOHyfmhx3mhh7oX2dPAAAAw0lEQVQY02MwY2CoFgSBA0xgajsDQzKDoBkDkyGIl8AOIoUVGJIFGQSBovwbgVwHFiAh/QEoBhIUnMSwAkhOYAYSXQzKghBBwSAGR0HBBm5BQREGVUGYoGAQW6OgjKLgjQSwGFRQMOio4BVfwRiIGExQMKgivLQdKibIwJXuMrkRyJjKwBAJpCQsXcoWMIABUMacgaEYzscqiFU7VosQTnJEcxLU8RLIjgd5UxbNmygBogkRNGPgQwTdA0jQYQtkbNEBAHgKPmhpzmYhAAAAAElFTkSuQmCC");\n}\n\n.flag.MG,\n.flag.MDG,\n.flag.mg,\n.flag.mdg {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAGFBMVEUAfTn////8PTIAfjp+XTZWqXz9fnepk3lpgAtyAAAAAXRSTlP+GuMHfQAAAB9JREFUKM9jEAQDMSVkwDAqKO6CDKCCosZIwGAkCwIAcRhIc5cNL1IAAAAASUVORK5CYII=");\n}\n\n.flag.MW,\n.flag.MWI,\n.flag.mw,\n.flag.mwi {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAIVBMVEXOESYAAAAznjUWAQM0nDQ1BAluCBNMBQ1aBg9/CRa3DiHb5SsEAAAAYklEQVQoz2MQxAIYYAzTsvRgdEHzmWlpM4tRBYU7U4tNy2YYogiKzTAOSzXuTEQRbGuOYmBYapGOLCg8w5wBCII7DZEEJTKsQIKL2wqRVRqahgJBsDBU+5AGTkoYQGWoCAIA3CUzq4wFS+cAAAAASUVORK5CYII=");\n}\n\n.flag.MY,\n.flag.MYS,\n.flag.my,\n.flag.mys {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAPFBMVEXZPz9mADPPNjl+ZDPMAAD///8UEF3mf3/zwMAAAGZQQEb/zAA1K1DYrA/wwAaQcyyggCZgTT+wjR+vjCAG8B+KAAAAg0lEQVQoz63ROxLDIBAEUey1Rm7+SPe/qwMFdrCFCfRSpugqCDhejnAdxX7G73B3XMNWByB0Dd+OAGA1gxRtSNN07QCxlBKnN+ZkgFpKqWk2VGpAtpqq5Wn6LADRus3TqHSAnPXveXQUG1p5cKSfn9kc4eFw009H8GyLwv3uT++LltMf2s0Rk/ZL0FMAAAAASUVORK5CYII=");\n}\n\n.flag.MV,\n.flag.MDV,\n.flag.mv,\n.flag.mdv {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAMFBMVEXSDzMAfjrSEDSeKzWNMzUAfTkyl2D////AGDOQx6lvto+428cEgDwPhUVQpnfv9/JzkBP1AAAAAXRSTlP+GuMHfQAAAExJREFUKM9jYFLCAAoM9BRsNkYCFlBBR0EkIEJYUG5X4lEMwfmJoRgqj1UBCVE0QclaLGaeLiRWJVYzz8xPJNadgoKhBL2JNZQGLuIAYR5H52EZ6mEAAAAASUVORK5CYII=");\n}\n\n.flag.ML,\n.flag.MLI,\n.flag.ml,\n.flag.mli {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAElBMVEXOECYUtTr80RbtjxquxyGuyCKjAxX9AAAAHklEQVQoz2MQBANRJTAwYIAAiKDIqOCoIEwQNYUAAPaxJ3WCs2XbAAAAAElFTkSuQmCC");\n}\n\n.flag.MT,\n.flag.MLT,\n.flag.mt,\n.flag.mlt {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAM1BMVEXPEyr23+K/tLTjpK2xrKvTmJ67oaH////PFCvLy8vGmp3gs7bgtLjmtrurmJTBj5PLiY/HwyfHAAAAAXRSTlP+GuMHfQAAAFFJREFUOMvt0DsOgDAMA9AkzQdDP9z/tLCD1AwsSPVovSExxUu2Z4juvsmZgwf2DGy1Q63yFAq0C2BTOFxV3UviRoPzl89EsJUcTA++4IK/gxfabR7af4FUXAAAAABJRU5ErkJggg==");\n}\n\n.flag.MH,\n.flag.MHL,\n.flag.mh,\n.flag.mhl {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAVCAMAAAADxFwsAAAAzFBMVEX////bdAEwRXMgUaAwXadQd7U/aq4AOJPddQAPQ5mQqNDx8/kSPYeaYyywwd6/zuSFXDpfg7sDO5Xg5/L3+fuAnMlykcPeewzFpYXV0tN0WEXp7PLXcwP8/f4aP4IlQnuQXzOlZSTd3OCkuNhIcLKasNRqi8DToGrTehh7WkHdhSLKspvVcgXUllTc4+/j5OnCt7C9k2rLxsfWiDEfQH7w8fO4yOE5ZavHjVHPwbXCfze+qpmKpM2ytcGWh4ByiLAaTJ4jU6LH0+fS3OzDb4x6AAABE0lEQVQoz43T2VbCMBAG4ECTtFlsbaEFWyuKCriALO4bLu//TnaSJqeA1eYqF99J5p9JkNtotU9QM+Z5DWB7z/MsZNT5k5XQwYQTyupZbzzUkPgi4Jjtshawy6s7hAA6NCg2HY432UCz6QFSC+rjHdj5YVUOjoH1+jcIGegyAieKGG+z1VO3VPcjVSMcKYLQBr9VbFze2fXDonoFGY79hFDD9lsQIFNKnBKdUfeROYnJfARsusxBZednkbnFTMayQxNg9voQVcJtjBDYai4K9R1v9aoKZcEWEOAr+dydkYXy4nrykqE8GH38OnNk2eMy141w66FMJ/2hbUQtlOnzfFZpRA2U6eKN0+jf54ve17jRr/kBh1Mh+Hah75sAAAAASUVORK5CYII=");\n}\n\n.flag.MQ,\n.flag.MTQ,\n.flag.mq,\n.flag.mtq {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAPFBMVEUgQo26xNxmfbGLnMTI0ONYcaouTZWQocf///8hQo48WZzk6PHV2+p0ibhKZaOClb+suNXy9PjW3OqdrM5Jyi73AAAAAXRSTlP9g+pWxwAAAQNJREFUOMu1lMGOxSAIRasBpAhW7f//6yzaTlVeMm8zLG9O4ILgtu1rMDM7cdtuMAKc5MAUINEIloKIIS3gpR5zxt0UxJc2BVrAfMoHj3zI4nHHCi05EENvtoApaXBgTGeuI0iau2tmp9xhaobiyT2lM8cRlFgvFd+MhMAA2nDKSPFSZfIoiEjOY0HEu3Rywczs1Y2/jH8Av/Z4d02IH96ankk845ESAlzjHkCRV33nSKbmt4dMV7AH/LBmvZZ1zaqGJA4EDQfN4C6m4I9LLMN8XMo5xBU8MudQRhC5wXOHL2icAa47fPaxska0dowgWWCIaC2OpUsFgGMtjb/q0MwfP8UPxHsifYgZVt0AAAAASUVORK5CYII=");\n}\n\n.flag.MR,\n.flag.MRT,\n.flag.mr,\n.flag.mrt {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAM1BMVEXNKT1AeiZghx/WtAf/xAB7kRowdCnNKj4AYjMCYTIQaC/vvQOQmRagnxMgbiy/qwxQgSMBUdT8AAAAAXRSTlP9g+pWxwAAAJpJREFUOMvVk9sOwyAIhkV+WD2tff+nnelhqWm13C3jxohfgB/QuZfJnPshGCaThTswRiPovQWMIswi8TmiMsDvYUTaMwO+cVzA/bksS2kcF1B0PWrarUKVHljaukoPVGij6nxtVXM6qdXE3fYQ0lcoJVC/jxmYfVUS/QzkUcMreVgeT4Z4w5ieRyjV1LQ9UzCumXlx78E/+K4fGncfbmVDdvMAAAAASUVORK5CYII=");\n}\n\n.flag.MU,\n.flag.MUS,\n.flag.mu,\n.flag.mus {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAHlBMVEUApVH/1QAaIG3qKDm2JkWMejZAsj0bIWz91ADoJzlaCl/hAAAALElEQVQoz2OYbIwBLBnoJuiCBTAUKWEAdfoJhmIBDI2CGECCfoJpWADDgAIAZ5dK6eNZmaUAAAAASUVORK5CYII=");\n}\n\n.flag.YT,\n.flag.MYT,\n.flag.yt,\n.flag.myt {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAA51BMVEX////FxcUWFpafn5/Z2dm+vr7u7u7////S0tLf39/JKQ6zs7P319KkpKT0ysOHh4eMjIzRLA8TE5DfYUzniXnKRA398vDJyckVFYr1y8T65OHqlojvsKXHx9uZmZndoZfke2q6urrV1dWVlZXVMRXDw8N8fLKpqamBgYGKir0yMo6pqc+3t7fUiHq3XQfcVD1oaGisrKx9fX2Tk5O2ts/8/PzVkofyvbTso5ZbW1vt7fXj4+PQb1/r6+vgrqffwr3hbluVlbpycnJGRohMTJMUFInSe22+hhe+kRi/libgurOXl8K9kyT0y0IQAAAAAXRSTlP+GuMHfQAAAbRJREFUOMul09dy2zAQBVAJ7S5Egp1UqN4gq1Ddcm/pxfn/78mD8xBJdCZl3zA4MwvM3q1U8EdVqfw9zFx4cDMXbpY3Grnr5W6el8F85I4Qty6bzZ731Fi5Xq8VN8ugF8fxZbzCKkuQNGKg6fW8Mui2kuQqa2UJvOQKCdBye83G/3wGEOrwUokyqPy6VpA303a7fX7efr4BFNV9dQKN1c4EcswiFkUsYmOAO9o6x9Ah0hsJOY/YjLEZi+aA3Ggi5wgOaaAl3coxY+P3H94yNsUtST2g4RH0SQ+kEHIesVm/PWPRHELIgSb/EAobkLbFvXz++OalprgvrLaBFYeQ7NZo4vJb7Wd1wUl3tpYOoeK68APSw4ewloZhWgu7QlPgF5qrwzcqwwvjE78Il1/T9PsyvLAUmII7qmyEHW4fassvafp5GXYtN6Uj7BsLTOzF6KX1aOH4gDX9E9iBAALxuOjeLRZ33U+PYggIdE5gAEBNtFbYa73HXomJArA9gVQHds6v4XF2QJ1OY1asr6uaG9+8OwvWTtDhunq9LsqDS2TM2a5frW443xjSr68rvXr4t1X4LfwBrZs3C5ZPvrUAAAAASUVORK5CYII=");\n}\n\n.flag.MX,\n.flag.MEX,\n.flag.mx,\n.flag.mex {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAXCAMAAABODP0nAAAAilBMVEXNECXm5deCXUG7pXHvrrWqzMHIyKX////OESYAaEfu7+TW1LVuQiZkRDKoeVT39fKwtYr169e1zsS6vZXR0redhm9ooKGljINbnp7e387n1cfcrq3T0a2x1NvI6OanbEJ1VEDauXjYup+KubrAkWd8vMe3mH66sKfrubKOoKTOtoSklWRKkI9sWEt0Xo6XAAAAAXRSTlP89O1mUQAAAHdJREFUKM9j4EQGrOxIgIUDCTAwjCqEKBRUkmeSIkKhjKIKHy8PP0GFgozMQHU8ooRN5NZiYlJjUuAioFBYQwRooq66uDABhSJCEprK2qLijGwEFHJxc6lK6IiJcTMScqMkmxwzsywbG2HP8AsISQswjiYz0hQCAOOXHtBwW44mAAAAAElFTkSuQmCC");\n}\n\n.flag.FM,\n.flag.FSM,\n.flag.fm,\n.flag.fsm {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAVBAMAAADGNLEtAAAAG1BMVEV1st3n8vqIvOJ9tt/9/v6y1Ou+2+/T5/Sy1Oyb02ibAAAAP0lEQVQY02NgIB0wKWARDBTFImjijEXQtJmBbMAEoVAdwJgMItUEUARLwFxGd8IqsZpJErAIJtbvWEOJiRyrAdYMBYZuZK7lAAAAAElFTkSuQmCC");\n}\n\n.flag.MD,\n.flag.MDA,\n.flag.md,\n.flag.mda {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAkFBMVEUARq7hugF2WC2FXz+qozrPqQJwVSXMCS//0gDujw9pTx58XC3wxQChhg0/MBi/nAWzORRrUhh5XR6DZR+HZiiZdAxgYjlaQiGVGRZQPiatYyrSmgF4SQ6sYwrGpADEkQGFgEqvjgoXQY2Ka0Q2TmR1TCnMNBzDfwdycUJlYSqkKRZtaE6hUAxdVxg9S0+YakKn2tOlAAAAhElEQVQoz83SNxLDMAwEQAYDosWoHJwt5/j/37ll4Rmw1NVb4ObAWJyFirLM4rBZQd9ACvSWn2tVAQnzzmN1cAUJcQwhXEROQa7HV98/pDAEtO47QIMStwQ0w/Nzb48SyRu796097XVJQuGuU71Zk2WU2ZVS2BUkLAO64Glb8/m/2X/4A1rfExgCJ78JAAAAAElFTkSuQmCC");\n}\n\n.flag.MC,\n.flag.MCO,\n.flag.mc,\n.flag.mco {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAgAQMAAABaY6hDAAAABlBMVEXOESb///9W4q7JAAAAEElEQVQI12NgoDH4DwK0IwHykk+xonqt7gAAAABJRU5ErkJggg==");\n}\n\n.flag.MN,\n.flag.MNG,\n.flag.mn,\n.flag.mng {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAALVBMVEUAZrPaIDJJTYf/2QDjTyX2qwzwjBTfNyvmXiHqcRztfRj9zgNIT4j4twn0oA8yAhU1AAAAWklEQVQY02MQBAMhBjA4COExoAgqIgQdsQiKR2BTmY5FUGIbFsEyayyCUlmOmIIiGZgqhSNuOTtiCIaGTsYUDJ+ORWV0GhaVccnYtM8g1iJsTsIRngQEodEBABWyIo6noem1AAAAAElFTkSuQmCC");\n}\n\n.flag.ME,\n.flag.MNE,\n.flag.me,\n.flag.mne {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAUVBMVEXEAwjNnTPENBXDCQnKkzDBJBLEQhnTrjvHfSrIii7EFAvEOhfCSBvFVB52c1LDijDHYSLHdymHek7GaCTQoTWXhzaphj+Xf0OpZTG6gjOegEZoMhC2AAAAj0lEQVQoz63SSRIDMQgDQLDBI7zNPln+/9DcU4ntqkTnvghE02BooqH8CP0YjPse+9ARKaBErg09QlhzQEjwTahminWFmmkTJmFkswwW14TBGLetVrCFNhTm7bqezNIps9i81XqbrdOaAhU5Tyl678CcUI6j4DF3oIIWkYWc770wUpK303wdRYx/n9lnOJgXvZ8Hd+ApatsAAAAASUVORK5CYII=");\n}\n\n.flag.MS,\n.flag.MSR,\n.flag.ms,\n.flag.msr {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAtFBMVEUBIWnyxs1nbppgdKEAor0AIGfYVmvIEC7AyNoAnrkuZ5M+VYqmPwb8+vu/x9kbN3b22N3g5O3Ueo7TeY3f4+yYRBP88fMsh47Z3OcAmrNldYmAh4ZtgpF9aD1Jg3wJkIsPehwFfzouSIE2XY8AdYkAUV6acFKITyhSaB9AV1e4YwAAiaARWWeqRxRwkI9eV1RwqJM/pIQtSTQgY2xwqXsReisAjWNVIwAwkFZVflocm6FHYRSUXZUeAAAA0klEQVQoz9XQxxKDIBQF0GdFElRMYje9997//78CgzFZGFnnLmAenJk7AKbS0oDFQsjiu9owFSiL2hRUQM48DaCCcljJLMdxIkoDGyGbrREbnVKISiJujDwyWIsxHi0xjut5NUtkB5RXB5RGfBYQ6+P5dqXj+rtcaylmU+WP0TzFbKj5MYP6ZtctoGDv7/miHB5v+wIK9vlwTgvYOXW/qn+EwUe7f5HDYdi5H879MHQl0J0Scu09SduQQEgJWfRmfiJz4Kb+2p9kUgcGDLLEhT/KC0hSDxL08Yr9AAAAAElFTkSuQmCC");\n}\n\n.flag.MA,\n.flag.MAR,\n.flag.ma,\n.flag.mar {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAG1BMVEXBJy22KS06TjCHOC6fMS1/Oi5ESzBmQi8rUzDm0+j4AAAAM0lEQVQoz2NgGL6AvQBTTFAsURBD0EOjqQVDkFnZyABTf5IaphiLepEDhiCjAbPA8A1aAE6IBLhFmViXAAAAAElFTkSuQmCC");\n}\n\n.flag.MZ,\n.flag.MOZ,\n.flag.mz,\n.flag.moz {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAwFBMVEUAAABISEj+8o/LEDMAAACPwLxLS0v84QAAcWjSEDTVHTDaNSrBEDE3AgxzOEUeAQfRDzPiWyB3CB0HAgDndxrxqQ30uAm5DCxdSEeOCCHqmBCWmJkZZGH3xwY0WFsJbGWIMUX71wLQLESlDCnoixKhCSbUXBnlbB3d2K1sbGyLZQPhqhyBgYHOzcHdRCetITyeKEH98Y/2yX6rCii9c2thBReGbFz10AOvqYJoEBE6NAWnbwmxnQDOwVh0axXq1Sux+eZ8AAAAAXRSTlP+GuMHfQAAANxJREFUOMuN0cd2wjAQQFElIognFwy4m5LQa3qv//9XWTiHrITnre9RmVGXk44oxc1QCNFjISQKhRBuh0KIPxZCdC6E0DCnGnoA0+riRDWMPdC+Ds/cKWDxlK6yIgP6g5YjpaBovX1ugwcAZl0ntOVgu3v/3iVJDOAHzhPtx9em2h9+VvXno67zap1v2tX+8W/yzhOjLHh+PazXuW54I4t++bKcm2XR+GubetArQYdtdwqsrZczvT93d/e/696VOdURzo2RQJsaEbweGRGMjZFAmxgR9EZGBBumcuwXkKYmCRjY5UEAAAAASUVORK5CYII=");\n}\n\n.flag.MM,\n.flag.MMR,\n.flag.mm,\n.flag.mmr {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAS1BMVEX+ywDM7Mv7+fJAtj/qKDnpKDg0sjI0sjP+ywD////zfonsQ1H719r+21Dm9uZawFn2naTuUF74tLn/7KDk9eOz4rON1IzA57/X8Nerw/7WAAAAAXRSTlP+GuMHfQAAAJxJREFUOMvV0EkOwyAMBVCwIa0ZQpr5/ictHRIVShx2Vf8CIevJ2AhxrYoQfwq9r4TDUAkB6qAn8gXYXPJMRNNXsSlAIAIW4iIfWSlmfV4XLHdESUkkHj49f7qZmzG0G2sDvwyOLzfi2dbvlu3Z94Tt6ZBDrZJ00fR9PExa1zl0BJEYIMdDS84qrbR1ZFloun0Gw8Jb8Vqa8Si/hHf9fxwRdAZrkgAAAABJRU5ErkJggg==");\n}\n\n.flag.NA,\n.flag.NAM,\n.flag.na,\n.flag.nam {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAzFBMVEUAlUP+zQEImUn+9fcQPnihlC/UGjwANYDSEDT9/PzSEjb2ztXogpXfUWwIO4XWJEUgSHDaOVb74+fuobASQ4nzvsjXLk3W3+vU7d+GzaY1q2pPdKjo9u4SnVH86+6omSvYthOUjTWf17jm6/NJtHmUqsrf8uc0X5vrk6P42uBAaKDbQ1/wsLzjaoGrvNXhXnZQZVjldYqfs8/6/PyJocTf5u9AsHKU0rDq7vX88PKr3MFebVF3e0TApx84VmSYjzPCqR5+mb9UuIFgb1Ar3ucZAAABMUlEQVQ4y4XS6XKCMBSG4cMSQVGJG9hFFm1VEBRrbWtd297/PTUiJhEjfr/feSaTOaAVrj11Zno6KOyeviJTvx+2p6uMoyFWdzsVX3EdU8+Fmrffe3lOiVlmRmmYIP9w8NEfzw06FutqTjcNVd+TJM9XGfemzFlWai0e5GOIEZLIEMKUM3iu2X0EOInuVpK2rkq5aoXjyoTLwmTtIuSuk7QLB0bjistCTUWbDUrB+mtZxNFQw1g7huGS5yaUO4fZctyYcZdhuAx4Lhgyjg8JNy7RrFItf8ogCkd2MGFZwxh+AAjC+nsxdw5HdrPGXifgTiHhWjyn9GUQhZecZTy/gGj1nwXH6XOl3xN2YDs1nX6y1bnBkUXcucc3OTLu3As4PoxX3z24HxLuF+B+OHOKOYB/YtwoD3EyzHYAAAAASUVORK5CYII=");\n}\n\n.flag.NR,\n.flag.NRU,\n.flag.nr,\n.flag.nru {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAJFBMVEUAK3/VrC5Qbaf///8qTpTw8vcQOIegsM9geq/f5O9AYJ9wiLd024YBAAAAMklEQVQY02NgGMpAEAvALggCS7wwTWDZOdsBUzDYFFMwI9i0DUOQqdhcAdNQJSWq+hIAYa8IgTmDXnwAAAAASUVORK5CYII=");\n}\n\n.flag.NP,\n.flag.NPL,\n.flag.np,\n.flag.npl {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAxCAMAAACf+RsMAAAAgVBMVEXcFDwbM4cQRJnv8vhuJme/zeSlHVEAOJP///96I2LP2evKFkPlT23eIkgwXafCF0XgMVTnXXkpMIL3xc/98fOKpM7yp7b74ufuip5JcbJELHgMNY7pbIX509viQGAgUaDwmKrf5vHRFT+0Gkvre5H0tsJcKG9ri8CVH1evwN2EIV7bYgCjAAABm0lEQVQ4y43U6ZaCIBQA4GtWWEKBuOWWrTPN+z/gIIriQnL/3XO+A95F4HLzrALQJrKEATodreDhEaDItYEAh/y6s4JwztDFtYEAv/lKUQrC/Y2+dqqHAHsHRVYQ7ltkLkqHAKJTP64NBPjLNx8rKDt1s4GiU85SpwZISF/UG512JohZzDH9UlQDMQCLm4QJWXSdyq+fGawrYDIJCaRYFRWMi5Inhpi3WVoko05Fk2/kYdJmice08v1M22kJSanSeNwpMX5VVFs1idtvZNOeik5141ftoUWazljXKbnT+mTO+8XI5I+qQz9AprgcR7MWMtoZYrwUfrA5Wi3uFznAdiN8xyA7KCYcYyCVWXYwjqn3qkpsPrODqReKwXiV+fYGUs67pXjx2iTliaxPE2I6U0Lab09NTLULSF5aHj4NsjmRFIlKudqgmWyvDns4zGgiJSyHPB2Wbizl1VT0UQYFrD0uztWdNbxOmFc+PTx+hpyTO4VPAryACoNRDtuDyfyH0eTCa7YsV+Ag12AvV6GSgLLtSogXyG2gTQj5DxajNPKFOVDvAAAAAElFTkSuQmCC");\n background-size: contain;\n}\n\n.flag.NL,\n.flag.NLD,\n.flag.nl,\n.flag.nld {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAgMAAABzfiX9AAAACVBMVEUhRov///+uHCiDi+U+AAAAFUlEQVQY02NYBQcMtGKGwgHNmLQHACMlWadYLf7+AAAAAElFTkSuQmCC");\n}\n\n.flag.NZ,\n.flag.NZL,\n.flag.nz,\n.flag.nzl {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAS1BMVEUBIWnUeY7g5O0QLnJobZryxs1gdKHIEC7AyNrYVmsfO3rNd4rMTGQyS4X8+vu/x9n22N1SW42dfJr88fPZ3OdBQHjTXnDMiJvNLkbyVu06AAAAmklEQVQoz92QyQ7DIAxESQgxOwRI2///0uKypFGjiksvnQPY+EmDhwg2rySLA3C8l0kwciUcIFrA1n1BEfzAKD1q7pxL3kcLYPOZcuvaTColOwgX6kN1J2PgyTor2ejROnqfsD+tsHX3dWZiWnCZUtXnUP95U/QNa/EcaHhshTT1boMWOKKv0IIh/yVJx7hd632M1HrQ2vwyyycwywbEVirFRwAAAABJRU5ErkJggg==");\n}\n\n.flag.NI,\n.flag.NIC,\n.flag.ni,\n.flag.nic {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAM1BMVEUAZ8bV48iesrmsuJv17tL2+/zG3br////49OD8+e/u4q/Jzq+92Cqy1TG11DLA2inx6L8SIXR/AAAATUlEQVQYGe3BOwKDMBBDQQG2nzaQz/1Pm17bUjKjxz1oTJlGJDNnmSTCKI6DToQf574vTBBpfq7ve5JEGttam0kivQo8SKLxKNPocYs/5eoIyVduk4wAAAAASUVORK5CYII=");\n}\n\n.flag.NE,\n.flag.NER,\n.flag.ne,\n.flag.ner {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAiBAMAAADfS4Y4AAAAIVBMVEUNsCv////gUgb1xayv5bnofEP87uXvo3riXBXhXBT308Cdj1xZAAAAUUlEQVQoz2NQwgIYhp+gMRbAIAgFYqXhiTA2XNBCSakLXVCsSUlJIxFNUBxkQSGaoChIMJAYQazaxSYpKWmiWyRoqaQ0C8OdKI53wQIYRgYAAF6WO9NsHTxyAAAAAElFTkSuQmCC");\n}\n\n.flag.NG,\n.flag.NGA,\n.flag.ng,\n.flag.nga {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUAgMAAACCKJcoAAAACVBMVEUAh1H///+q18VeAlDgAAAAFUlEQVQI12NgYGBQDQ2NYICAYcUEAOKRFw2YFuXeAAAAAElFTkSuQmCC");\n}\n\n.flag.KP,\n.flag.PRK,\n.flag.kp,\n.flag.prk {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAANlBMVEXtHCf+6OrzZGv6uLzxVV3tGiXvLDYCT6Kzssz////1dn381df4pan5srb7x8n1f4XwRk/3mZ5jG2kVAAAAYklEQVQYGaXBixHDIAwFwQME8uNjO/03mxKkSXbxJDwJT+JK4hfDppFQi6rWS8SkhlQGgXPu2ve9J4FS6b2zGwHpQ6eoEViaDJYeAqbRNGsZRGxJOi+xYY/xvysJT8KT8KQv1DYLH0ST+zUAAAAASUVORK5CYII=");\n}\n\n.flag.NO,\n.flag.NOR,\n.flag.no,\n.flag.nor {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAdBAMAAAAqZzNAAAAAJ1BMVEXvKiyvu8/xRkfvKy0AKGj///+6xNahr8fzVFXwPT8BKGj//v54jK6Zgt+rAAAAAXRSTlP+GuMHfQAAAE5JREFUKM9jYDYGgqkpLqXNxjBgwDCkBZVAoBUo2KQEBwxbQ0EAKBgKB9EMgmBwxOWgIAIwLHEBAi8wCQNeDChcvIJYzcRqO1Z3DrvoAADRhJHdGoS+qgAAAABJRU5ErkJggg==");\n}\n\n.flag.OM,\n.flag.OMN,\n.flag.om,\n.flag.omn {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAKlBMVEX////bFhsAgADzsbNKXAnmW17naW3hPEDypaf76+v1urvpen7um53tlZfX+7IwAAAAP0lEQVQY02MQBAEGNCAotjsRU1D4zkJMwa6ZHZiCWZPLMQVF0wMxBU0FgwWNUQGDIBZAZ0EXVAARVEIFdBMEABIJJaFkAQecAAAAAElFTkSuQmCC");\n}\n\n.flag.PK,\n.flag.PAK,\n.flag.pk,\n.flag.pak {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAANlBMVEX///+ctabQ3NViiXLg6OMfVzdQfGMAQRwxZUcQTCoPTClwlH/w9PGwxLjA0Mdvk36AoI5Pe2Ll19D6AAAAjUlEQVQ4y92TzRLDIAiEV0V+qibp+79sDtHkkJZ4bTkx8LkzCwicIW7gd8FsU6AFm1Jk0v7ABxVrzyInD4zIR5IAdcAC6oYK1eCAActoNrvc38E4FEWya+bL6D8p4j0FBoBeM2ABcJkV9eYItK5pyd0MAFpVRBOpu+s6SpUfrmc5Ks2e75G3jfOffK577LpLFTQFgZZfAAAAAElFTkSuQmCC");\n}\n\n.flag.PW,\n.flag.PLW,\n.flag.pw,\n.flag.plw {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAZBAMAAACx9nFWAAAAG1BMVEUAmf///wCg2V+w309Qua8Qn+/Q7C/w+Q/P7DAG5Io+AAAAVklEQVQoz2NgoDNwamxyQBcLFhQUFA5AFWMtBAoKlqIKMoPEBIVRBR3BgoKopipCBBVQBBMhgg0oghAxQQFsKhMIm4nVdqzuxOojrH4HhlJikgMD3QEAcycN4otQy3cAAAAASUVORK5CYII=");\n}\n\n.flag.PS,\n.flag.PSE,\n.flag.ps,\n.flag.pse {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAARVBMVEUAej2lJS6BCheBNy1Vpn5UVFTBEyQAAAD////OESanDR4nZjgnAwdOUjROBg7XPE720tbgaXb88PHRHzLtpa2gSEZbT1DC0kGAAAAAX0lEQVQoz63QRw6AMBAEwcUmDTn//6kITLiZPtDnkka75gqWqWogVN5BKDkKyXyAYP6CUrJl0R6ofihjvVDzAqE0Tv9COk2PWdN498Nb+yp8uzYEvRmBYPaEZPbIM2Y7L4kRqytOrv8AAAAASUVORK5CYII=");\n}\n\n.flag.PA,\n.flag.PAN,\n.flag.pa,\n.flag.pan {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAOVBMVEX///+jrcD28fLsf4SEkqztiY3CydYGI1faEhr////nYGXqdXnaEBffMTjDytdMYIUtRXAVL2D2xsfKG8juAAAAAXRSTlP9g+pWxwAAAGlJREFUOMvF0FkKgDAMRdG0iU3naf+LdQEGfAjq/T70lRCla9GIXoTeg1AEgi7MGRwA+1JdAZl2qg764xAZEOwp9b8OfgfF6DAiNTJG6Gu4NwhzhiC3WBsjL5ZaGZouLRYIsvf5rzs+gSfVcCE9ZTrZmgAAAABJRU5ErkJggg==");\n}\n\n.flag.PG,\n.flag.PNG,\n.flag.pg,\n.flag.png {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAeCAMAAABpA6zvAAAAZlBMVEXOESYkAgbGECQTExOpDh8HAAFNBg4AAAD80RaAChfRHCQwMDDiYR7lcR5wcHDXNSLofRw/Pz/5whbUKCPcTSDtkBpQUFCsrKzxoRn19fWQkJDg4ODzrRhgYGDQ0NDnfBx/f3/ZQSGki0rXAAAA+0lEQVQ4y42S1xLCIBBFUVRWQklIb5b//0kxGkJLhuWNOXPP3AV0O6O0IadLIkiu90SQkB29fPtgXC9VHoBRfQ0RMNSXqIOaVyHo6ilTTAHAJEPQ1tPnk8MyXQhivOknMMN9MHu9slXPAJQCL9KA45it+pJWJVviWM4C9dA67elXLxHLwzJ+e8mh1tvcBa32Usd1lQ0WKyTc5VNaV/kG4uLxI/HQt9jW61KIW4lD/0sizSg8fcmpBYqm+e9IH+ft6Rvtl4m9vQtm8057HywKL9T5euRobP0mxuRo+QZs2naOhRq9+Y6PHh/qzYUQcXDVk4RZ9Cngok8Ctf4D1OgYXQgrIwMAAAAASUVORK5CYII=");\n}\n\n.flag.PY,\n.flag.PRY,\n.flag.py,\n.flag.pry {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAWCAMAAACFUC6CAAAAM1BMVEUAOKj6+vrk8dC0u7b1ycbo6OjP0dD////VKx6/zene3t7J5c67yOTwxcK31MKdxKuKvZtVfUrjAAAAUElEQVQoz+2PwRKAIAgFEYIU1Pr/r807THKvPe7szAOoSeCb4eEZI5BwOliEvfUhk5DyPixyId5S9iFNw5kI14lmnJhepWr0TPP0Hkj4eeMBpwIRWct/suEAAAAASUVORK5CYII=");\n}\n\n.flag.PE,\n.flag.PER,\n.flag.pe,\n.flag.per {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAgMAAABzfiX9AAAACVBMVEXZDyP////yr7XIwwUlAAAAFklEQVQY02NgYGBQDQ2NYICAUSYuJgAGeB8eIlqm5wAAAABJRU5ErkJggg==");\n}\n\n.flag.PH,\n.flag.PHL,\n.flag.ph,\n.flag.phl {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAb1BMVEUAOKj95Xv/99P+9MT80Rb/+eH+7qfOESb//////PD920j94GH81Sv+65jv8voQRK388fLRHzPF0uz+8bXniJPaTFx/m9NfgsjgandAar6Xrtz+6Ivsn6fzxMkgUbPULkH209f54uTwtbvf5vSvwOSsgxV0AAAAnUlEQVQoz43QxxLCMAxFUTsuekrvCaRS/v8bWYQVw9i66zOyJdXuShb4Xomgy105iSYaBtqbAF69dxlklGMlgIkG8JpiUHuXcZZEvgrA6dymHQAgcCrA+9Rau3gGTFGOAVik1tqlY8AUdU//+3l6bSgAtU+uZbaBKAS/53nMRDEIoO4bksDnQRSBhoFzoFjK5a6eKZ4Crw1J4HaQqA+p8xC4Vz8IHQAAAABJRU5ErkJggg==");\n}\n\n.flag.PN,\n.flag.PCN,\n.flag.pn,\n.flag.pcn {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAABC1BMVEUBIWlnbpoRPkkFKV7yxs1gdKHUeY7IEC7AyNrYVmsQK2QCbsY8TlEKMlVcZkP8+vu/x9ng5O0sZCunoiy3rShRZD8fUDhdiBzf4+wBI2P88fMLLVx/hDT21doxcCMiWTAmXS9DajANW3mDkSd9nkORq1oDJWQeN1ycnCoSOVJDXT0tQlczQWxmbZpBdCXIuyQ1YlZkeDansRVfY3F+emk/iZHY3ej13uPZ2+ZIV00WRkEpIFxNLkVAS3BrckNIUWt6fj1Kfx41Xy/YxyAyU0FseVtScTZEVVWRpRkySk9Jfh1xkzJ4lxhrgD1pbFaMfnUeaH2utBVlWlNJaFSkuoSKf3oge6bt8OxBiYdXl17vAAABKklEQVQoz7WS13LCMBBFFxtjcMcVN0xzqKG3VNJ77///JZHsEM9kGPkp90HS3T2aXe0ICtkSA0h5ls3jPZMrZGGTcAKjMYhdkQEgoBj8i9HiVmLyiqIsF74js6yM1jmyyjonmvt7vyC7QTguGAC91eQAgHJJIKerLvTOpxwIXpmOSiPNZcfHpR1/scQehW06CILL+4szXdPon06ZUraQy+DHMEV02o7bU8uUO32pV7tHA41LsPV4ErR9MqpLjw91U9Sk6GqMJQPHaJS41hvD98lr32wCUd7A4Pnwg69RaocIVswKP3sL+aeR1CKCYpXiG5/hrNZpSURQODW+rLHVqKkVm9zkoXBbfr45Hu7SkCKJuruy+pyRxoEnVMdWW99JBbvoP9jQ5OCf9A3qch0S+mTgLwAAAABJRU5ErkJggg==");\n}\n\n.flag.PL,\n.flag.POL,\n.flag.pl,\n.flag.pol {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAZAgMAAAA+toT2AAAACVBMVEXcFDz////tip5hJkzaAAAAFElEQVQY02MIhQOGAWOuggOGQQAAG50ufcR4g+sAAAAASUVORK5CYII=");\n}\n\n.flag.PT,\n.flag.PRT,\n.flag.pt,\n.flag.prt {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAA6lBMVEX/AADuTQiivADpbCUrdgDangABYAD/AAAAZgABZQD7PT3tKQCzwQD4AAD8AADonwDjlADmrwD+/v72LADQ2ex1oADV1QDp6AB4pQDjdwD5OzrkjQD1dwCKodDsAADi1ADmJQBonwC6ywCCpACNqwDiMgDuPgK7xQCbtgD4SUf5fHzuWi36bW3qklLseCX2ybmfstgsVqrnZwDOsQDWwQBBhQDyCgDYYiHd4ADcfwDtxADPgQDfzznnrELTjQDUMADofR/0c1Lfjj3fPwDLtkMZbQCEmiqatD35QgDgWkff5fLnfSDu8fhnhMLtoPh4AAAAAXRSTlP+GuMHfQAAANFJREFUOMvl08cOglAQBVDgFZ+PoiKCoIi99957L///O65NdHCtd30ymczNCEH2msD7CMIPQ4oL6hcQS0puFglF/WBcwRSvUmmShGGshGStsNPkUb8LQWpZSKw2GlUREVMFYKZkcq632zp3hrYIwHxZQTXdMPQaCocTAFQkfGt2Hm6nuU6THgBzUtzhd8O4cmcCTszE2CXact3WeTMNQTvScfloF+t10Z57Vgq8oyntK5pWWRCP+DSTxYfTVpYjSf+us/nlF10zxuigqP7fz3yGT1SnLAsv0Hz9AAAAAElFTkSuQmCC");\n}\n\n.flag.PR,\n.flag.PRI,\n.flag.pr,\n.flag.pri {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAb1BMVEX////3gIDWCBgRXPH////7wMD2f3/3gIAAUPDuAAAiZ/IwcfPQ3/0KT+lbMZQRSd5rmfdKg/WAqPiauvpFOKre6P7z9/80Pry6ETSUHlpxKn7hBA3zfoK3zfuIabJ5o/fMq8mDJGw2aOaow/o2Z+XRXciaAAAACHRSTlP9/////////sajZT8AAACqSURBVDjLrZTZFoIgFEVJrE6AqeTUaNP/f2OUYTwIXNfqPO917nxZlWxIYsgORxoI5HsiCLQdEQS2CRFEdjmtQhpBQJxTv5gDAmVNBIG+iYGljf+IgEpa0/t1OaUvKFL9iz/Zqjco1WBfWDK/efrIdwarpVNU5Wk4d/0CjigarVQ8R0BLE14M2DNUNR/dPun+ZTJzZk3cHrOPi4DWMzeceDPEK6TeNfVTvACicyGeiMPPMAAAAABJRU5ErkJggg==");\n}\n\n.flag.QA,\n.flag.QAT,\n.flag.qa,\n.flag.qat {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAQBAMAAACW+SCeAAAAMFBMVEWMGj2NGz3////x4+e/f5KUKUn48fPKlKS4b4WwYnm8eY2pU2ybN1XcuMPq1dvp1NoxFdFrAAAAAXRSTlP7aonz8gAAAD9JREFUGNNjUAIBtRuBggggwAAR9BHEFFQywaZyIjaV6lgElVuxqXyCTWU1sYJKX7CpnEqsk7A73oTYAEELOgCpoyOl1kutCQAAAABJRU5ErkJggg==");\n}\n\n.flag.RE,\n.flag.REU,\n.flag.re,\n.flag.reu {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAflBMVEUyZv+CoZ3q7xpYgtD/AAD//wCZs3+Ur4Z2RKszZv+5y1dOet3yBg83aPqctXthicXM2T9mjL/8/QTPFzx2matskbn1+AxQV9uLqZE+b/FDcuulu3H6AgdGdOfP2ztHW+XCHkuPOIzd5il+QaGGPZdDXerH1UXZEi6vrGSYNIG39pwpAAAACXRSTlP9/////////v4+p77OAAABMUlEQVQ4y42Q15aDIBRFkZZclGVsqLHG9P//waBGI7aZ/cACzvYIIKYsmMHYfMdSDCnGRGpuK2yuU8GYQoUeMTGC08lYEqy7CoSANMxPtsXEZw0BpEV9BMwe6bqYPhhuL9GLkGY+dseQ83HqYj/rKr4igF36fCly/2T3s1EECHFZmGJR4nBIJyJIjqP+1fqXjTCXsCbq/4usjTyv/SwTxSQyRe0Iuxdt4RnBXARpeUAIeJaEmXhIrDByiX0ets6ulO5vZRM3Cq3kgNiIakqRcc3r1Y6ZKBv1S5eN8p3nb7lsnJ0R4ifVPGOA/ctcctqRX3bFOKAjQbwtDnUrpVNxWrconYg3hy5wbguxCugqQWWKV4du4FwnYlXTHepqELfrvqXHTrzX9E/qO0JHh/4D5/gBM/8mwq7UuJMAAAAASUVORK5CYII=");\n}\n\n.flag.RO,\n.flag.ROU,\n.flag.ro,\n.flag.rou {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAElBMVEUAK3/OESb80RaomTjtjxrOESXfWuRDAAAAGklEQVQoz2NgAANmJTBwFAQBUYZRwVFBvIIAxOIn30Ew1B8AAAAASUVORK5CYII=");\n}\n\n.flag.RU,\n.flag.RUS,\n.flag.ru,\n.flag.rus {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAgMAAABzfiX9AAAADFBMVEXVKh3///8AOabVKx55q0MDAAAAAXRSTlP+GuMHfQAAABpJREFUGNNjCIUDBloxV8EBzZj2/6HgD62YAHlVrHK7tinsAAAAAElFTkSuQmCC");\n}\n\n.flag.RW,\n.flag.RWA,\n.flag.rw,\n.flag.rwa {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAM1BMVEUfXzwPotA8qKQrprRXfS58uW8dpMIAod760gAgYD1prnistzbTvBF9uW+HslqQs1JWq4oAZWDQAAAAAXRSTlP+GuMHfQAAAFtJREFUOMvd0TkSgEAIRFEWbRRm8f6n9QjTiQbz41cFFBJk8jdUAMpAWLoRUC1HpesSwqq14VhCz2qtnuVoDZ+z0qir04zYMQJQfPWZflJ1ucj2ggeZyE0lW8EXy4wfIcoZkFMAAAAASUVORK5CYII=");\n}\n\n.flag.SH,\n.flag.SHN,\n.flag.sh,\n.flag.shn {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAllBMVEUBIWkrPWOynWf8+vvyxs1nbppgdKHIEC7AyNrYVmu/x9kAIGfg5O3Ueo66pmkVN2dVbm7TeY3f4+z88fP21dpbj4/Z3OcXL2QfRX4CNHZbX2UzYXN2e2utu7k2hKWGhm5Oh46/rXz13uNxmrRdhqCqzMyVpqZ+objP3dodTFuYg1Srl25SdXZZcGwQhbmyjlF1k4CbmI4Wf3HSAAAAv0lEQVQoz93Q1w6DIBQG4AMqOBG3ddTRvdv3f7lK1I7EqL3tfwE58IUTDmiyS6CJSqkqdsXSZBiK4rS0hYKZBGCECjjKVF3Xw9r3JEqlZg2bUh+EdCA/QiNCSYIio2/dJJQ8X7T2/DoUdXuDMH4UDKPXm8SVNUcRnyGmrFlKf44YqyrM0Bfrx/NJbc4vGed2B1v2HrigHSzKYFleFzAV+4bvQbCchsYRn9NDakxCyE55vl3DjOz2mxXMShzDX+YJ/VkMBuOm1OEAAAAASUVORK5CYII=");\n}\n\n.flag.KN,\n.flag.KNA,\n.flag.kn,\n.flag.kna {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAA4VBMVEUAAAA3LQT2zRXlvRP70BX///8KCADOESYAnkn80Ra6mQ/UJiPQGCUTDwFCOAUQEBDIpxH7+/uLcwzVsRJZSgfvxhTcthMdGAIIoEfxoRnuzhgWo0T7yxbZOSL1sxj4wRbdTiCliQ6Xl5dFrTprWAl5ty8xqD/lbB04ODggICAsJAN2YQrt7e2lpaXcyhwjpUHFxiGcvSnqhxuAagu5wyPnexxXsDfRyB1+fn6WfA26urpYV1OMjIy4uLjk5OTx8fGRuyvlzBqGuC0fHx9NSC+pwCZ8fHzIyMjtkhpwcHCzs7NT4XdnAAABTElEQVQ4y4XSZ3eCMBiG4VdMTKM4UEBa7RBHnV12aK3avf7/D+oboBgiIx/4wn2uc5LzwEHKad3yRg6Ck9LdH5F6ATJD5OyQSwmRWxYgM2x98HxFzgrxYfeFd1ZVgOF/l7Pjwta14EbT4ZcbcHXShniujL+3lI58rsEPS3uhg5yJf6trSuladHPSPmdMDbsXvCg4WMxm9PHXhXENOaaGzjOxzPCmW7zORENOV8MBcs3dkzwJ7uSYeUcKnVdi9eS38zidqeHgIcIBNHecFDp9TYtyPYvc6UwNkau9i0cJuaLMhSFyE1iswf0MOjPKBeHlFa+NAUaGYfhiWeX8sK+RufcalBreCsw8v9GZGiLnzf3N3UzpZvoD5Q4/PWN7B6S5rwz8VOI4EcpznyVxIozMHbnvEosP5bkvSQIXDSu2P6iMEOeezEmhN/eUjv0BCoErISxfBDYAAAAASUVORK5CYII=");\n}\n\n.flag.LC,\n.flag.LCA,\n.flag.lc,\n.flag.lca {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAVFBMVEVmzP+46P8rJhLxyBiZ3f950v/T8f/80RYAAACLzsRfX1+/v7/Pz8+egw2r3eHr5riPj4/MqRGkkT7m7O8QDQGJ0eHd6e8QEBCfn58vLy9fTwiCs6AoQUrkAAAAfElEQVQYGb3BSQ7DIBAEwAYGZgJ43+3//zNWZHELoBxShb8gQh3nUMXGaFFDea9QY922FRVoF9kJZe4QORyKbJBbtChRXs5TvELJJJpZy4QC6mfDbOaekOf0wLdBO2TZ0PBHEyxy1MiPUSGn46RDRms4MS2+W65Xci34yRvvSQUaIFkI4gAAAABJRU5ErkJggg==");\n}\n\n.flag.PM,\n.flag.SPM,\n.flag.pm,\n.flag.spm {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAACRlBMVEW2DhRebHGQn6QAkchbPimqGR5CUVbl9PrU5OnQh40Aksj/////zwDMAADftQAQl8vv7+/vwgBgut0AkcdQs9m/mwBArNYIZy8wpdIgns/mgIDf398AkMafgQAAjsMKhqtwweAYgJMscWmOcwAhdXlDd1jMAADQqAATYCyvr6+fn59Tc0BKWCMNiKxjiU1qZxY9gGvLpADJAAB3cxivjwFCmbvdbQAYfqZLbkJdgUhcUgornci5lQAmhIh2YgMVms3TiYSCJxGjFAjZQEAIlcrODAA1h34hmsgzhaQ9bVFzkkXXTQDUPQC/oQgje4CkmhwxfnXrnQA0mcDZXQB9jTWAyOTTMgBBn8VeZB9iXA+IfxbpiwDstwAXfI+VfANcdDc/ZD9UWBiDbwTZdgCyoRbopQDPz8+9mQAAhbbIOgHEJAXhfADMFAAtdW5mh09qhT8oi5DilQCjoymolRC/pSeWlyY5WjlLf1enhwAveXCYixRQRQPKMAI5dmbRJADQsA5ebStrg1RqklKWmziWhg73xwCJsJZRQB17bQyOIA5umIhUnq9kcy6Pj4+QrZR2kmmzDQbB2cuwkw9pnpjBk4hvb2+jxrEgWil/f3+PZlEtgKDlhAAakacAh7pHj6qyBxvVmwBxgzM5koc/jKtfuty9nwRXh1eLiyMXh5xmbiNCinI5LwFIThgHaz1Rj2kvZFMtUybn9frUJgBFg4x/yOOAlV+fn0TBPQoHaz45RyK/v7/dhQC9qBc1YEffvQwsVCY/TyVfX1/OrkRSAAAACnRSTlPp9e//9ev36On1SIBarwAAAyFJREFUOMt9kgVX3EAQx9NuW9rb+CUnXBJO38EJx3GHO8Xd3bVCX90VqAAtpYW6u7u7fLNOwsF79PV1kjebzP52Zva/SxhfnaGi8Voq/+In3f+MOGGMzQdwMta44q8p/VKQyjMaz+HLxthJYjFo08VsSkjrlfSSkpUqRcDo6NzjZ/GF07nRa7QAIPHdupj92x62gM/MDCyAeNFea4HSzMo2b5WiPAo9s8fYbS99Tvu/M0pZTp897WnWrtZel8+/13WkocW/tMe8SI/ex9nhVpvTl+7os59qkx0NS3edt7Brf5B2D9gCfQ5R3J3tlsUBvyTpigA0/lzQ8bkGxpMkdzCBBr+9FDz5wr9vZ5lPryMuYfwbY48H41Vai9tIcrxqOxBk2W1wmUoarKmBjKwFs+pjwas1Ce8Hw2k9KkcWVau0bcuD7oBelScOyDgMQ5Sqoq1lV6t3TAPtQXC7nZK0uUbTcRpAqD/NAijtVVJDba2bNfAz1KSfBByObFVzgmWxVpyF0ja7vnNL154QbIh00985Tp44so8WG9RTJ75g1mPBQ3GYXa67401wKkGy0nX46IQsxg909Xam7uEqr2k6nscY3jjochmUTu+Krya5nT0hZ1Z6aOxUQvcszXkjZ22BY2YxDOpmqlJFDlo7Gqj5pbh6+rJByWopAnqGsAVU9AxFzV8Kh0iTMk0Ph4c5WiZp2bVwH1VLTAQXOWuX7A7Tblp0iJwYFGXRXaRTNLC/YrC8/mv/gZGVKetSUhRdysHwsQ+HyWPjO7gfM6PD36ZGr18piVlHUG8GZzvaB2uTm4jmpIy6uyXNSSVvM07OvG+um5syZ5ycy6m7YSpOSiKoDRs7mj62H+o/QKAChJhihHLMCBVnIFSQg+AHYjAUENRNaoRKPARNEhAy8I2CCSHhHd9oQLzVygsMMll5IAkqufxWcsXWrfVNAKoGnNmkjo1myMzcMzNamKAKr+7oqK+tLS8EEGYMBt7Km9S0DHzyPBIEZh7ckLxxZH174voKApl4q2AV1LBgMDC8AKsMaD4hmtdRM7U0Y0IRMwuIsZqRmY+AfwCdALIv0wUbWwAAAABJRU5ErkJggg==");\n}\n\n.flag.VC,\n.flag.VCT,\n.flag.vc,\n.flag.vct {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJ1BMVEUAfC4AJnT80CK9uyRUmCjsyyI/kSqdsCbcxSJ+pigQgS0PgS0fhixRK6rDAAAAbUlEQVQoz2MQBAElOGAAg6Em6KGk1IIuqMyipORghCaoxmCkzJCEJmjAkKTGwIwm6MDA0cDAQoxKNQbzYgwzlVmilmLYruQxgRPDnUqqC7iCMATVGRiKMFVu4MZUqTSBE0soRR/FIqheRK2QBwDQhTJFgRiQewAAAABJRU5ErkJggg==");\n}\n\n.flag.WS,\n.flag.WSM,\n.flag.ws,\n.flag.wsm {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAG1BMVEUAK3/OESYyVJggRY9jfbEQOIeQosfAyt+gsM9en5nHAAAAQElEQVQY02NgAALWABApCAcgHgNbAhZBZgNmDEEnBgYPDEEXBgYjTO0MLAFYBJmxWMSkgEUwvJQYlYJYwJAWBAC4ZRdFtyZb0AAAAABJRU5ErkJggg==");\n}\n\n.flag.SM,\n.flag.SMR,\n.flag.sm,\n.flag.smr {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAeCAMAAABpA6zvAAABR1BMVEX///+LaxFqdntctOLw8PCSlpOGcS9etuQ1SzNasN5Kk7j8/PzLzcsgOSxAUTosQC5KW0BdflOBYxumeyBpaVKFaCN0goygdh+QdSpfanFxVARqTA1xUxF0uNw/gKE+bXVLh54sUUlSptPo6ujh4+FNm8I0WUVHaUh4hHWbm5v39/fBxsJZdH44UEY1UjyrrqpreWgoR0EvTlNgcl1xc1hbVC+HdUNqbVlQSCFpazFzdTl2nLNrhmp4k6SqjEZ5pr18XRVUX2iXiWe5kiBwjp5cp86mvclapMvfz6vv37qku8g+dIRIhabf39/EuaTa0cGvtq0hLhxFUjR7eV0yPilXY1UiQTa8vLxYVzSogS9xgW0+QyG2tra4jTVFQSp6iYZkXCNic31hZk6KahyHpbWIr3FtZCd8pGp9aTOHr8hSYGhjf5JuYTEiW0ESAAABDElEQVQ4y+XPRXODUBQFYCDII8EJTrRx98a97u7u8v/X7TJZ8Mi207M939wzF0H+ZjbWF4R7uwsxX+bmIuNzdztko99vkDFXiKP6ZKKjuPtJ0rRMU3dlDDK2Nc0eI8UlGMsSl+82alnokKyWGMjDgr/0tPw9/ar7pdQtcIb71ZOaPDCmndFAfuTqzuMx4fhI6jxgvc+PYQ2A1FxJzSQEQF7rYZhqPMvlAhue7eagN3FaVjBDVUd3Up6NUI7Qk2SvBKUril2FAyIMbiV5/rX18ta+LxwkKGf4O354Xmm22s0KzwWhMB6On10T2SLjDXmgkN7EiXQulybwVRoKqbUAHd0ORunACgWHjvmf8AdLZy8UWK2OKgAAAABJRU5ErkJggg==");\n}\n\n.flag.ST,\n.flag.STP,\n.flag.st,\n.flag.stp {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAMFBMVEVWtx//zgASrSvSEDSKSjAAAADYrgDjWCDjVyCzkAB0XQAXEwBrVgCkTiuDaQB3YAAKgYv+AAAAZklEQVQY02NwUsIEDCbYBI2dsAmaYBPEohQoaMuAAYyNjQsF0QBI0BzMEkuEEWBBiFKZgzACIghSKrk1eiKEgApagKRTw2AERLARxPq1DkaABS2w2d6IRRCr452IDRAnYgMZW3QAAIBCN0MOGs4oAAAAAElFTkSuQmCC");\n}\n\n.flag.SA,\n.flag.SAU,\n.flag.sa,\n.flag.sau {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAMFBMVEUAbDWAtpqgyLMQdUFgo4FwrI1QmnSQv6fA283S5dsgfk5AkWew0cAwh1v3+/mPvqafxqwrAAAAdUlEQVQoz2NgGBzA2ABNYKuQr2tSp2vxnCIkQad2J5+gQ0HCRYVIgkGNtanZVd0lmYJIgqmdk5L8tQ6JFSoiCTKmysrOeCTq5q6JJJjTkfRJYpm7o6ANkuCqzZc3MBvssmb2opP3UbmmgiCg+RSLSmbjwRBdAAOBHQ8vIxWsAAAAAElFTkSuQmCC");\n}\n\n.flag.SN,\n.flag.SEN,\n.flag.sn,\n.flag.sen {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJFBMVEUAhT/jGyP970LjGyL1pzaoy0GRwj9nsD8dkT7U3kDt6EFOpj/lyas/AAAARUlEQVQoz2NgAANWJTBwFAQBYYYhJ6g5CYugehEWQY0mDEGtDQwM3IvQVaoxMCRham/gwDRTk71gEYagWpJa0tANT0KCAK4xK1LO9A4bAAAAAElFTkSuQmCC");\n}\n\n.flag.RS,\n.flag.SRB,\n.flag.rs,\n.flag.srb {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAABHVBMVEXGNTvHPkTl39/kwsP9/f4NP3QOQnfGNjz///8MQHbPdSxDRGzMaj7OjyXbz8/evb/GPD/Qkl3JcFPLq7HPXDTBMjf69/f25OVBQmvu0NHlsbPJZCvg09TSfH/KeDLEPjXUlSnLlJXo2drh2dnUt7fRsLDOhIfIUUr129zNnWzCVC3ioqRFRm7NbzjWiCfRalHRb3OuWWKubHjx7+/Fm57KTFHRmjrQi47XkpXTzM3KWlbexsbRj3LAa23x6encmZvLpKTEhYfEdXnVoaLrt7nMiUufRlfcioTil4htSkPSnk2kN0LBXjbOimLGfSbap6q8jJa0XzvQhX7Qd06qdzfaq2PSqDTCmzPUp4vYsbLhzs/t4ODJxMG6cXHIfH+gIrqyAAAAAXRSTlP9g+pWxwAAAQVJREFUOMvFzsdSwmAYheEUkJ+YbopJSCOFJk1CbwIq9t7b/V+GC51hgebLuPFdP3PmYFgmURj2N8hLySB+eswngAXh3CqJJREHoHwgVMv38klZgBbP6BrN0LVqAYL2BeM4DGNAH3n8rtN5dB6uf/mYzn61cdgYjMy2SzfaO9n10ivYVGxr0nsypjoAt1o9WWuZeF7ZBmCOcAN/zydYEPbHXdKN2CEAI48dT7UwItjNeHhFDENdXcxecwDczXPNkPyYTZ5BuAjm5LvPkT/DFPqucmMN3vrzUb2rovVSK1ikDNsjAokSUTxES+r2xeMoqQhBdGSS3GVdQyBEql7ZV1ACGNN/wk/ONTdzPjKb2QAAAABJRU5ErkJggg==");\n}\n\n.flag.SC,\n.flag.SYC,\n.flag.sc,\n.flag.syc {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAb1BMVEX////cRET20dHdRi8Aej3pjIz//v782FYAP4fWKCjzuE0PSITXLSnszljumEXf7+fkZzitp2X70lQ1lWVObnfaPT2HvaAJfkNeq4S22cj319f1ysrogoKt1MGPxKkRg0lXp35mr4qwj36kj29psIx3kSIwAAAAr0lEQVQoz33N2RaCIBRA0YtToZWRQFk29//fGDLoBcHzvNc6sEU1+81cnVMcYMiQO+xoEvKZnY6UJiEaB9sAsuTWhzy99eA0jmxVAsJxbCuGWwX+OLLVSuWNF1sxZFpNkMW2SDnIl1viKQv1GG9JmUGYG8/bharau3yBGU9bX2nSnQsV6LHdIlW1vbwYYoJxrLekvMaJg3zcGtX2jwixsKlzpRR5d89iJfh+5G+dmP7QIhk7LnKNYwAAAABJRU5ErkJggg==");\n}\n\n.flag.SL,\n.flag.SLE,\n.flag.sl,\n.flag.sle {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAgMAAABzfiX9AAAADFBMVEUAcsb///8etToftTtamkkBAAAAGElEQVQY02N4tQoKVjPQihkKBzRj0h4AAGLOW/Cjq+5HAAAAAElFTkSuQmCC");\n}\n\n.flag.SG,\n.flag.SGP,\n.flag.sg,\n.flag.sgp {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJ1BMVEXtKTn////2lJzxUV/uNUX1gYryYm7vQlD6ur/+7vD7ys73oaj1jZbd0n4ZAAAAW0lEQVQoz2NgwAFYkjHF2Bcqs2MIVk5msHBAF1wY4GCKYaKgSzMDkwKqIJskQzgDWwKqILMgNhdNLHAqCEMXDFzAYRCKLsgt4YBFf3aPAQMRQAkLYBDEAkayIADytx8PHH3E9QAAAABJRU5ErkJggg==");\n}\n\n.flag.SK,\n.flag.SVK,\n.flag.sk,\n.flag.svk {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAV1BMVEXuGyTNpbfxPkfIIzr+/v8LTaH7x8kLTqL////uHCXyVFvyjZL1dXsZSpn6rbD+8fL94+QYSps4b7PkdX9hWY9gWpGSlbr4nKCdbpKOa5PFiZ9IernPj6EDTQy6AAAAAXRSTlP+GuMHfQAAAJNJREFUOMvdz9kOhCAMQFEsCtNaQHGb7f+/cyBGfXGKz94QCMkhDap+XKpWN4TB7AURGkwtS95NGbatBBubqxC96TqTHlT2rOaAzN4zlyEweU8MRUghjw5UHr19RobzAWcRfkBr7VzaIIrQfnvrbFrubWUYp/Wc4j+ocI3GfB8Jz1M7RHj1/ROwDBGHAfESlLoX/AFBXSI5QBCfVgAAAABJRU5ErkJggg==");\n}\n\n.flag.SI,\n.flag.SVN,\n.flag.si,\n.flag.svn {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAMFBMVEUAXOX/AAD///+/Fzq/1vkoTMF8crqIs/OYjMQQVtavzPcudbsweuqfgbUQZdaPl9PUMJ+YAAAAR0lEQVQY02NQwgIYSBN0L8EU1Ofe0IQhqMv34BKqoIuLi9vxmhQXZMAABKxOKgEM6IAza9kEDEGGiFYGqgJjLIBBEAugmyAAw6IoE6NtAqsAAAAASUVORK5CYII=");\n}\n\n.flag.SB,\n.flag.SLB,\n.flag.sb,\n.flag.slb {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAP1BMVEUhWzMaYsH7/P5Kgs7Fsx29sD8/cpEAUbr80RZYeSsub8WkwOY9ecqKr9/D1u/l7Pfu8/pYjNFwndjG1++zyuq3m5y9AAAAkUlEQVQoz43QyQ7CMAxF0RcHuCVDR/7/W1mEqpVo0nhj2TqSBwEOONJFvJ7DIEi5lDnV2eMtFrMVYDVb6kyCcSutcWwwqWwXwtWKJ1Ygfpp8m/0g83zDpPKXlCC0mITP0QP4T/Z1JuHMAkAwc3UmQYwOwMXYYPsxtIb+wwY7wyY74A3b4S0rsINJnUzqZFIn0xe7Ugy2JSfdKQAAAABJRU5ErkJggg==");\n}\n\n.flag.SO,\n.flag.SOM,\n.flag.so,\n.flag.som {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJFBMVEVBid3///+gxO5bmeLN4Pbp8ftMkN+WvuyCsen4+/6vzfG30vJNbQNHAAAAUUlEQVQoz2NgGMSA2QCLINcCLIKsAVgEDYUxhLSVHEWUNqEJpggCgRu60kpBwekY+pkEBRUwBFkEBR0wBBNndIphCJYaMIdjCDYwMHAwDDEAAKAdCNZzMJXoAAAAAElFTkSuQmCC");\n}\n\n.flag.ZA,\n.flag.ZAF,\n.flag.za,\n.flag.zaf {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAe1BMVEUAFIm/3dHwshwPfUsAd0n/uBzA3dIAAAD////gPDHeOzGQxK/g6uv47/DP5dyvpCovkGqAu6TiSD4QI5BsTgs/mXbpc2tIVqsgFwMffkP3shq/qCfAihVvkzXQlhbxqaSQmctQiztPizuAXA5/XA4wIwX1wr6wttrfsCKtJwiyAAAAwElEQVQ4y42S2RLCIAwAY1sMYr3aqnU8q/X4/y8URBTKuc87OyEECsGK0kc1CcHgIxbLOZ1tUsRolMFRmeEoA7LfadFz5RUPJEuJMsAm06JTX5SL2PLoVZnr0h0VIoroIv+auTsqRWxPZtSBFBFvRI+ObZSIdz3q4Cea0aCIDSGvFLFPK4oZu4QZe+PVI5v/HruEPQ5/5lKDjfxrPVduwYV1Pc4cZ3CPnhzHvHBfjmOctzfH0XLPGqJiLKfEaA7gDafDHAN8aOvZAAAAAElFTkSuQmCC");\n}\n\n.flag.KR,\n.flag.KOR,\n.flag.kr,\n.flag.kor {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAe1BMVEX///9/f3+Pj49vb28PDw8/Pz/v7+/NLjoAR6CgoKC/v7/g4OAgICAfHx8VRJbzy862qcGEhIRmOm3Mwsqtra28L0IuR5DVhJBzbp6mMk3mlpzTR1HvvcHssLSTiKykl7bs5uxfX1+UlJT88vKPd53ZYmtTWpWXl5dQUFDfXWhyAAAA+ElEQVQ4y7WTiQ6DIAyGBYfgjdfu+37/J1zL0GVUzZZsPzGR+sEvbfG8/ykOaCyIe0DhR24o8gXleMrS6G3ToIYQJ8aTEMbbnhGGipgY4zCvpzx/xnzB7oWgxixF53wmQRdkg+JIzMPWeCOtNjCp0Dx0/pEb47XstIbpQXCaII7Gqxe4QnM2kPSqpRbw5CPVOVssU1kplyPgvESuyRSoHAVV2chmqoxmI6CG75my0gMQw1N3FCzoP7XN4+4F7nrz2FVm23Lb/srwhCW3BM21Ocq1MrWuIczd7gmZ7R5P673tnmPtds9gPzJSazR3O5waf3NnPr+Fv9IDQ40NIe3u0ysAAAAASUVORK5CYII=");\n}\n\n.flag.SS,\n.flag.SSD,\n.flag.ss,\n.flag.ssd {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAYFBMVEX///9KbYVZdXr83QkHiTASRaUABhDaEhoAAAAPR68HfUUGIVMLNIMKZXQMWYsGhDhaMnamHz+luuHMFCNBOYl0LGQsXbkeUKSUnFFof3A8Y4+yrjzeyhwJb2ANUpcDEiy4e3zXAAAAc0lEQVQoz63QRxKAIBBEUZQRHXPO4f63FKVYCr3wr1/VNIhcJVCCOVMg5CgDIXN+gVBTBUJ9X2GQeWyFq4cEq6F9E39m4B7O00vrzgXDTcrFTh3+gPBp/DHw97zjiopcWVimRAA8fczA6CBCoGechWVKUDcmdhWS10VBkwAAAABJRU5ErkJggg==");\n}\n\n.flag.ES,\n.flag.ESP,\n.flag.es,\n.flag.esp {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAn1BMVEXUOBXxvxW4Zk+qUQj/wwC2Qw/5uQDGCh7VORf/xADzrwfXshjmngfOwpvJrYaiXxTRsb67dgbgtxeOlVTDqi3+yBftvAv6ww6/rD7rnAfOaQ3TsADSjAvopxbFVhTikgywRh2sWRXWeQ+1Yz+5ZwvToh+/elzRpUnMkxzTlEWxLRLMiRexqFmEOzJsU1+5WxTijbSTSRzUs55eaVvNpHBqh5K5AAAAAXRSTlP+GuMHfQAAAJdJREFUOMvl07cSwkAMBNDL4HDBgHO2h5zD/38btDSyathGzRs1K5EZMuSnIJmjQojwUBHfMEHBmNKApggYNoerLOIpqCqviqIoVOEEFGUr5euhVQlDkZrBWnNztRHwxmLT2PvFuYHlMMzZsT8/R9YyBUNf7zjvekm1D8MgW3M+yi7IEhiulot6e9r7n4moEOoafT1/+VxvK0kl3q0nSz4AAAAASUVORK5CYII=");\n}\n\n.flag.LK,\n.flag.LKA,\n.flag.lk,\n.flag.lka {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAe1BMVEWNFTquVivxjA2KFDfZhi6miCzDbg3/vikAU07rdADGaTCyTTJ/EDP5pxy0ZCeFETW8bCjvsCX1tCXSiiffmyWfRCvTlh/CcSj5uCWRMyvAfyCiUifamCTroCTRgCqkXh/gqSXqqSXHfSiGJiqVSCLDix3kliuQIzDXkSbhs4zbAAAA8UlEQVQoz42SSXLDIBBFmxCnMxAGCRAg2Zpt3/+EaZQsXLFw+S1gwavfVfQHfBLA4ZA5fmfwfHrd43Qk8fCeefsgXrAJDu5hVfNf/NKMHpz6MxTfLi0/70QgJ14VCCdltNbmAZzDjkhMtbZmWI1v+2Rkm1N3RV7X0Qc0JlUptr1+IE7ae/R+mVnL5ARlkSmXBhMWRlhWFC9d4k1lAlbbT8ty4rqKm5XUZbH39kYsJ0Ld40jG2CyGpouiqLrZsRa1At5V9oEI7AIgwpX+j2EsjqYVZqPLSa4bE867K2RbKWi8EL+nEHy3FE2IxZo9Xdwn+QGnxBrCNL/vUwAAAABJRU5ErkJggg==");\n}\n\n.flag.SD,\n.flag.SDN,\n.flag.sd,\n.flag.sdn {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAARVBMVEUAAAAiXyxQVDPEFjJAQEDdTGcFZiXSEDT///8AcikAFQcARxmqIjGDNS8AKw8PejUvjFBfp3jv9vHP5Nafyq48Qz7PTmJl4CtHAAAAYElEQVQoz63QNxKAQBADwTm88P7/TyXAZYcCFHfV1C5JWlpDoTWhis6EkpNHkpz8CY38BaVkz6N7oMaliu2FGlYTStP8L3TT7jFhy6K7H97ztdPVWLABBxpZACsL0HiMA+tdEadf53u5AAAAAElFTkSuQmCC");\n}\n\n.flag.SR,\n.flag.SUR,\n.flag.sr,\n.flag.sur {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAKlBMVEU2fT67IkGwzLO0Ci3///83fj/syB3+/v7fmSDPZSTEPyfVeyK/LinpvB0xIzJ4AAAAAXRSTlP+GuMHfQAAAGFJREFUKM9jYA3FAAEMtBBUwgIYSlwwgDt2QUEsgMEYBqwWw5kIQevNWARtL2MIWna0ZXRMRlc5LS0tE0O7VVraYgxBm7S0wxiC1pnTNmMIWhy2aYYLYvUR8QGCNTzpFZsAgv2JIjNIFmMAAAAASUVORK5CYII=");\n}\n\n.flag.SZ,\n.flag.SWZ,\n.flag.sz,\n.flag.swz {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAA21BMVEU9XriuCwu+vr6RkZHrpgMAAAD///+xDAs+Xrn/2QAcGxuyOgm4OghBQUFtbW2rCwlOSYUrKyvrpgX92AJPPDnEaQbu6OhJUJKMMzOzKgeEHTLWqpjUmZnVm5vU1NTHbm5nPj+3Pz+pGBiMjIybJiaCXDp2JEBnL1SbYSvDZwN3W09TQniPGSkPDw/BX1+1UA9aPG60KCjr19evr6/v7+/6+vpiYGo4QGtHTo2vZBlwcHDOl12tOAbBcnLEgVe5b1S0TCI7WqNgYGByTT2XNzcPGS84THsbKU8yTYzAGvZjAAAAAXRSTlP9g+pWxwAAAQ1JREFUOMvdk9lWwjAQQDNoqqa2ScDSHShlBwFRwB13/f8vMmlOK6JoXvU+zrmZzJIgtK8FQn9BrBxoUUHlXS3KaG8TaD0lCXwJb4rNBsHpfD6LTn4WPfLGXk8NQbW+RfQPBY/4mblLfiZNI5SRSX3cXBeB+qZpHh1b1st0SaySpBqa13e3N2P6IQJQU3qY2La9WHC+I6kZ4WQVJQCQi9BvD3qO08YFWZWCK6fv9AYXfp6xy1hHHBQZL0VKm/NUZYxFcHTvMppnDM7dQB6QNQpISdUYyRgdulNa1Njpqgk31M0PWdux6jMYjta7LuYoPFL7NEfYuhmM01n8y2ayXXte65tda78e7ff4n37hOy+LLL1mIK03AAAAAElFTkSuQmCC");\n}\n\n.flag.SE,\n.flag.SWE,\n.flag.se,\n.flag.swe {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAZAgMAAAA+toT2AAAACVBMVEUAaqf+zAB/m1N8Q7kSAAAAGklEQVQY02NgYGCYmsAAA7RmhsIBSUy6OhIASfMjv9uXrDcAAAAASUVORK5CYII=");\n}\n\n.flag.CH,\n.flag.CHE,\n.flag.ch,\n.flag.che {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoBAMAAAB+0KVeAAAAFVBMVEX/AAD/////wMD/gID/v7//YGD/8PBls0LNAAAAPElEQVQoz2NgGLwg2NjYFENQUVBQaJALsroAQaKgoBiIDoAKMgsiAQN6C7IqAQHISSA6YIiFJ+7EMHgAACUjEjNIvHDuAAAAAElFTkSuQmCC");\n}\n\n.flag.SY,\n.flag.SYR,\n.flag.sy,\n.flag.syr {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJ1BMVEUAAADOESb///8Aej3A3s8rkF3f7ubv9/PP5tqq0794uJhPo3kPgUhA53/OAAAAV0lEQVQoz2MQxAIYhoqgEhYAFVSBUE4ogqkQKgxZ0GXxlCQlJTVPKxckwVZj6yIlJfXNxhFIgmrGQSBK1TgJSVAz6jiIqlk6CVmwqANEdagjC6K7cygDAFe0LEzg45X5AAAAAElFTkSuQmCC");\n}\n\n.flag.TW,\n.flag.TWN,\n.flag.tw,\n.flag.twn {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJ1BMVEX+AAAAAJV+AEsUFJ2Cgsv///8BAJQwMKmfn9dCQrC6uuLg4PJgYL0ICCqaAAAAWUlEQVQoz2NIFIQBBgTAJSgsXmiIISje4lGILijs6bVkiiG6ypLQUHd0lZIdoaEdE9FVmoSGOmNY1LI12gPDIuMlXsYYFmXWHJ+I6SNhQ2K8qQQHDKMAFwAASRwaKceV/cMAAAAASUVORK5CYII=");\n}\n\n.flag.TJ,\n.flag.TJK,\n.flag.tj,\n.flag.tjk {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAJ1BMVEUAZgDMAAD////aSEhJkkn++N/97bD+88n96aD85pP74YBQlEb/++/JD/WXAAAAUUlEQVQY02MQxAIYaCFojAUwKMGAahCcCRdUSw1LwhAsUi9SxxTUnKSKLqgapJYENxUuGFO1/Ci6oFLFsqx2TNtndCJsd4ECbxeXLTA2A70AAP6jLUlcjKwxAAAAAElFTkSuQmCC");\n}\n\n.flag.TZ,\n.flag.TZA,\n.flag.tz,\n.flag.tza {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAeFBMVEUAAAArIwN3YwrrwhQdGAL2zBUptzcetToAo9380RbnzRxRvDHFpBHxyBUIpddfTwi0lQ8WEgHdzRqjxiNqWAm9nBCOvGw8rq7gyytivi4Rps9Osp+SwybVyjSpjA5TRQfNqhGdv2CzxyGpwVfTyxzNyDp9unovrLjWAwfLAAAAwklEQVQ4y43MWRKCMBAA0WF1hh0FRVTA/f43NBELs5BAf3c92Ng6RtSVMGbZwht5PcDiKHKWUebMI+MKgQNnfgx35OUi5wZg4nyRG+gJq7jgleljrHIJXd6IoHOpwtE+Q22Mt1Sr3AFRHTlXzXHKqHL+xEmjxlXpxIkj4xKJq6mZuP8Ynilwzdw0cs6xcL9xmRvHFdx3VLnco2uL+vigQeIKak44E6zi+ChypYnjo8zdW1wcGReZOHHsbdx/LDsrx/oAkpwc3/6WLokAAAAASUVORK5CYII=");\n}\n\n.flag.TH,\n.flag.THA,\n.flag.th,\n.flag.tha {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAgMAAABzfiX9AAAADFBMVEWlGTH09fjMh5QtKkoyD257AAAAH0lEQVQY02NgIAGsggOGUDggzPwPBzRjkuIcJF+QAAAjJYF/PyJQ8AAAAABJRU5ErkJggg==");\n}\n\n.flag.TG,\n.flag.TGO,\n.flag.tg,\n.flag.tgo {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAZBAMAAACx9nFWAAAALVBMVEUAak7SEDT/zgD//v+vHjjZLyvWJUXqj6D87/HgW3PaPVr42d/meY31y9PwsbwZZZ5IAAAATUlEQVQoz2MQhAAHBmRAkqA4NsEMbIKHJwoKBikhAQZBcWNj4x50QcEVxtaJGILixpYY2gUlzO0wBbMT12LankihNzEFlbAAmgjSCwAAG7QmPcKBtfcAAAAASUVORK5CYII=");\n}\n\n.flag.TO,\n.flag.TON,\n.flag.to,\n.flag.ton {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAJFBMVEXBAAD////rq6vwv7/TSkr66OjllJT++vrkkJDFFBTbamrFDw+mCkE3AAAAMUlEQVQY02MQhAIFBiQA5It4YBGU5MIUDLZmMS5EF0wAkoFECWLVjtUi7E7CdPywAwDkmwmBWzMtugAAAABJRU5ErkJggg==");\n}\n\n.flag.TT,\n.flag.TTO,\n.flag.tt,\n.flag.tto {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAhFBMVEXaGjXcKEEQEBDqfY3eNUwICAj87/EAAAD////+/Pzn5+dDQ0P53OD9+PkdHR3hRFvbIDpsbGyTk5PlY3X19fX0v8bysLkzMzPMzMzV1dXw8PAqKir2yc/75unkWW2hoaG4uLjd3d3iT2RSUlKtra330dbvnqnDw8PtkJ18fHznbn9eXl5tmbTVAAAAyElEQVQoz43SRxaEIBBFUSOCihHMNua4//31AHRYwvgO+HWeYRPhyRc0nWkA70cHS8rWDx1Ixn0dSRlVKIakE/qllO5Ac0ianAXqoxm2IWkUJFUyxRsobZwpOTOeQDKniytl6a/g+AlV6kxR3X+MH1sprR39wPFdo8a7glyQTAp6q0knPsDxBz6VvGkBjr+IcDUbQfvTyKjbiFWhCTzT+jaywI0knM2ajWz4bYQUmo0EjJtwI8PbyMd4VEW6jfhPIwPVbMQTxP4DG9AQs+B16vUAAAAASUVORK5CYII=");\n}\n\n.flag.TN,\n.flag.TUN,\n.flag.tn,\n.flag.tun {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAMFBMVEXnABLnABP////zf4jtQE7rLz7qHy/83+H+8PH4qa/6xcj1j5fwYGvxb3noECH84OIlBDrBAAAAAXRSTlP9g+pWxwAAAG1JREFUKM9jYBTEAAIM9BcUDcQUzFRSmoYuKNO0eJfGQTRBp1JRYwsVVEG5isRNSkrqD1EERXRFlLarKzmiCAqrCitdy1IyRBGUVJQsETykNJGwSqxmyv0A2a7/EMOdl9Hdid1HWP2OPZQGJOIAPpI4lSZvLh0AAAAASUVORK5CYII=");\n}\n\n.flag.TR,\n.flag.TUR,\n.flag.tr,\n.flag.tur {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAALVBMVEXjCRbjChf////nKTXrTFblGyf4wsXtZW3+8PHoOELvdHv1o6j84eL2srbxhIofikYmAAAAAXRSTlP+GuMHfQAAAGRJREFUKM9jYBTEAAIMdBYUnogpGN2klIIuKNKkW+m1EE3QQqlQUDAETTBJD8QODkQWFFY6CGKbbJyMJCiidBHEFtdJRBKUU3oIclWSkiMhlXAzjQnZjt2dWH2E1e/YQ2mgIg4A7pA0KOwEES4AAAAASUVORK5CYII=");\n}\n\n.flag.TM,\n.flag.TKM,\n.flag.tm,\n.flag.tkm {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAABL1BMVEUAhDwQi0lEdDayUi8pcTowm2HSJjAAhD0Bgzw2cjfHPS+/cDBAo23aRC/gWS3ULy9gSzfaSy7A4c+SOjG1cjCuSC+BQjK9WS+DZTCvaDCdRi9wQjSlUjB7azi6cDDCRi+iPy+iYGBVbjyWVjmFVDtPYzumWDBKWzaPdlFqYDNwupJgsoapLjGVQzEpajl+Njabj3jFVi6hk428Zi+jRy+rXTDELDCIWEuAVk3PUS6NUzGPSDOlaVuLXjCJPDFoUkORYjJ5Rz+7kI3XYi7CezCmdG80WjWAwp5Qqnmw2cOv2MLOOi+Xdz3MPTy1gC+AaEmhbjC+VEprazK3j5KgOj59ZWhZVTZUPzKSZmWUYVqaZTJ1UzI9fD2mfkqaT0zuii1ehEzrgC2Yg1t8WU+tZkZNbMQvAAAAAXRSTlP+GuMHfQAAATJJREFUOMuN0cVyw2AMBGBD7P3jGMPMzBPmhsvMjO//DD316Kg6f7OalTgOgBDyTx8fZi4G2+E4DoDz2Zvb619nSOjoD+5vzcY5AyDtTPS3UtnYhY8BUCFBtYOCSxlkOwkXA1DhDyCV7RK7PTEaULwMksQDgNsG1jPB9FMuGGAAyjwg2UHH3TgZnY2if60P9+1Wj6fpUXouMgA8rx65bcusFdEX6MUZAEgV1fY8QreTz4vJf3wmXIpEzGCN/kykcFNsmB4S1mtXewszRkNnO5wXxXCIhEJcMSw54aUTlVLuuzAf0mWyH8XY10ubTrQK28W2tKLh2npffQ7pgwshJVN8S8TpxOTrz2bZ9NFlLiebVKpZpeFpazk5OzmmoS57/FVZo6GmybJhGTSUdd3QNXkX/AXh7zbhm0h1sQAAAABJRU5ErkJggg==");\n}\n\n.flag.TC,\n.flag.TCA,\n.flag.tc,\n.flag.tca {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAh1BMVEUAKGjXeorg5e2CgV70x8xncplgeaHOESbAytrcV2VSYGD8zxn8+vu/ydlDVGG2oj/9wDoSNGruxh0AnkkzS2TarhtKWWScrjfuvDnIiw7Mxx53eV3mwCTepg5GfDf98fP31dn88fL21djY3uj13uLZ3OYTNGq+fgv8q5OrVBa7ZBb+qoVPrjjs6fq2AAAAtUlEQVQoz92Q2Q6DIBBFR1HRIoL7vrRq9///vkIJTZsYbV97HoDhnjBhwLNMBwQuxq7cbcOzYAkZSFWJulpRpbiquZTSeTrsfYx9sY6ipIsiXuBHMdk9SXRrwej3g2zdD9Msa5WgomiaNEWvNx3T8gxbfkad9D3iN96eSvSh6fG8q4ifOSmJFnWgBy5VldSEXK5tVMMWWUS6jkTZpnhk1T2uWLgpQpDHcR7AFwSMfeUBhCH8JQ/SlAsDOOEqEAAAAABJRU5ErkJggg==");\n}\n\n.flag.TV,\n.flag.TUV,\n.flag.tv,\n.flag.tuv {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAVFBMVEUAlcjYVmvyxs1Ap5YQmbswo6Ignq/IEC4BIWnAyNr89/jUeY7g5O1dr3+/yzJnbppgdKFwtHCjw0j22N3f1BnPzyV/uWT+3QDZ3OePvldfc6FmbZpuQUo4AAAAzklEQVQoz42S2Q6EIAxFUQoojgvgPv//n9OCxpEY8D6Ukp7QDVaUn71C1UrVdPZNUbInUYDQAPrbEDOCzBHcCQxYVcVcZ9DWqNU5rZXSaFe6xy92LRr1oPt7AhjkQInINAXfp9aYFVNr5+6p+SikMZKFZoZPWTQ9NeO9718zxlcXFLBzPAG9CoTLDdg1cELjrjl7JzFuybCEYy1g2xS4LQTC3Il0PuDWE/P0qjqQkIUkAGuXTMO0ixlrFDZdYEsL4VbeBv4kPnKWhc5PE+sHuscKVSzXnS4AAAAASUVORK5CYII=");\n}\n\n.flag.UG,\n.flag.UGA,\n.flag.ug,\n.flag.uga {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAb1BMVEUAAAB+bgKsNwH////ZAAAAAADqbQF+bgKsNwH83ATZAQD72wONjY1fX1vm5+a4uLbbEBD2v7/pb2/ukJAQEBC2UCDAwMDPW1oiJSLijVjvoZNwcHCcnJzExMTrqKjGNTWurq66mI/77e1FR0XhkJDFkXaHAAAACXRSTlP+/////////v4HKoILAAAAhElEQVQ4y82SSRLCIBQF0VYTwwcyJ45xuv8ZXUeogh328lXvXiu1T0KpjGKxSaJQ+piEzilWu1/a07n1xsoT68aaJ00dFTvsG+iiIoixgCeW2xUDuNlNL4b1XnoXAm5eJqJfC/Iwn7tExX7kJox9Qj0XuZpAPYFntP6zKA6JBOoJUmUUv8WyGwrCEGL4AAAAAElFTkSuQmCC");\n}\n\n.flag.UA,\n.flag.UKR,\n.flag.ua,\n.flag.ukr {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAgMAAABzfiX9AAAADFBMVEWAmF3/1QAAW7uAmF21ZTA2AAAAAXRSTlP+GuMHfQAAABpJREFUGNNjWAUHDIOBaf8fCv4whMLBYGACAHKYirK4JSjEAAAAAElFTkSuQmCC");\n}\n\n.flag.AE,\n.flag.ARE,\n.flag.ae,\n.flag.are,\n.flag.UAE,\n.flag.uae {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAElBMVEUAcy8AAAD/AAD///9UVFRVonQ6Np3gAAAAI0lEQVQY02NQAgEGNEBfwVBUABE0RgV0FnRBBRBBQVRAN0EAy7cuKPK5R68AAAAASUVORK5CYII=");\n}\n\n.flag.GB,\n.flag.GBR,\n.flag.gb,\n.flag.gbr,\n.flag.UK,\n.flag.uk {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAPFBMVEX////xw8p8jbLnv8pBWY8OLHHw8vfIEC4BIWnWTGKAkLRAWI5LYZXgeIn10tigrMfheYrx2+Htz9hKYJTy9LpmAAAAqUlEQVQoz8XTQRaDIAwFwC8SLBYE9f53LRVCCbJw1yx8koyiMcJOgFH04tBYUkDXBKnZLkldh4Z2kBnAJ2alO6SVqwrtgiSk9iaQ19EPktwL/RYuQ9c/Et45znB467dUyHAvq3AWgHtccJx+Ev+Ej19G53DBAFu0cc/wu/I2HsEVwA1PhSl1eK4NrxluuGTtJ5QUksmhaCkk68dM1SokGwxuoR0b/Qp5zw/L/xHkHUeiPgAAAABJRU5ErkJggg==");\n}\n\n.flag.US,\n.flag.USA,\n.flag.us,\n.flag.usa {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAVBAMAAADGNLEtAAAALVBMVEXGWWb////YkZo8O27ZkJmyIjRUU4BIR3fsyMzsyM21nbBzcpdgX4mUlLCFhKRMRAwAAAAAiklEQVQY02MwMy5ONjM3Tg5FAgzWZembQdgFCTCYX6+1OX691lgQCTDYmSU/BmEGZGB8vcrmMFAliqCtzeHHIIyi3RhoJkilEhJgsE5L2wzCKE4y25adlrYtOxlFuznYldbFM5EAgx3QEhBG0b4KCjqQAIMgFsAQigUwuGAB2LUTD7BqV8ICsDoJABuIZ60LUleQAAAAAElFTkSuQmCC");\n}\n\n.flag.UY,\n.flag.URY,\n.flag.uy,\n.flag.ury {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAflBMVEX////59vXouxDl0aKvehT9+/vR2+////8AOKgCOajHolX59Ozp3c7Gol69iQjPsnzDm0zPrV2tdwm2fwbw59bp2r3o1K7w48HfyZr17d+8iRm0gBnNp03v6OS7kDzXv5LdxYfMqW3QqEbOpkPCkBLBkinUow35zhTBkR/Ong6oZui5AAAAAXRSTlP9g+pWxwAAAJZJREFUOMvt0kcOwjAQBVCXMU7cS3qA0Mv9L4g4QJggkR1//TSaRohcFEK+gqIWXhscVjT0IeyolnJTzOUN6daeAaZIEdg0/pIdDFZVn6GwAE92SyeN9Nip5BhjeVQGGaa/OnZnMB6RirWKCVwGzlukR7rv4DEclMDWYwT3sbX4HqXkgkvzy1svgmWxKOUKcJ0P/089B19MsyEgLwCQwAAAAABJRU5ErkJggg==");\n}\n\n.flag.UZ,\n.flag.UZB,\n.flag.uz,\n.flag.uzb {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAIVBMVEUAmbX///8etTqZimSNf5Ifpb5vxNQyrcNOt8qe2ONcvc//sX/oAAAAR0lEQVQY02NgYGBlYAhgQAPsUxkYUhsaUAU5C7Co5AxgaE9NSEAV5ErAopKhqr09IWEBipALFsAgiAXQT9AYC2BQwgLoJggAd5op+8o7j/AAAAAASUVORK5CYII=");\n}\n\n.flag.VU,\n.flag.VUT,\n.flag.vu,\n.flag.vut {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAXVBMVEUAAADtwRBeTQXetA8AfzmzDSwPCwEAlUPSEDShgwt/ZwifgQv9zhJ+Zwk/MwMfGQEAMRZGBRG3lQwARx9lBxmPdAoAiz7EDzDOqA4wJwNOPwQAcTKdDCduWgSmDCgachgdAAAAt0lEQVQoz43Qy47CMAxA0WsH7JkkTaDQmVIe//+ZLCpYFZK7s3Qky+Z4++kKo48ig3Hcd0ANfRQ6KQBRRGlQALAoQeH834Ivap8pQB3S0qTARWKUCbCUQ4HzY78RMC5aSq4ANeWx8KmZe2Re1qGmLOPvRkDSavdc2tCmNI1i7dVwCVnXY+YCp+tuoxVOBWyQoHD6883eD//OXrDJVmiDiMJh5/4VapBoDebeydzpY+4Yh6t31Mncnxi9Gc0Ued8IAAAAAElFTkSuQmCC");\n}\n\n.flag.VE,\n.flag.VEN,\n.flag.ve,\n.flag.ven {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAALVBMVEXPEyr/zAAAJH3PFCv9ygECI3y7xNsbOYrp7PMuSpSotNM8V5tTaqZXbqmFlcDhG/iSAAAAAXRSTlP9g+pWxwAAAFhJREFUKM9jcBTEACIMQ0UwSAkDqMIF1TtnFKELqiWlT1NLQhOseqSkpLccVVBjEYjUakIR1LkEInUPIQtqZkM0bpuEJKgO0aekUYTqJBR3MhtjAIOhIggAAWBSAu+GeDgAAAAASUVORK5CYII=");\n}\n\n.flag.VN,\n.flag.VNM,\n.flag.vn,\n.flag.vnm {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAIVBMVEXaJR3//wDhShf86gLztwnpexHcMhvvoAzlaRP41gXjWxXelDKJAAAAYUlEQVQoz2NgoDtgS8AiyBqARZDFAYsgowEWwUYJLIKOIugimoJgMAlVtBAkJo6mlMNQUFB4AboBiYKCYhj2LBQUFMIQLBQ2FMcQNHRLEUYXYxJlYAhUQA8OoABTAMOgBQBOLAlBK2IgQgAAAABJRU5ErkJggg==");\n}\n\n.flag.VG,\n.flag.VGB,\n.flag.vg,\n.flag.vgb {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAz1BMVEUBIWkeaiHUeY4+VYnyxs1nbpo9VIrIEC7AyNrYVms+VYoPLXEtcSMAXCVgdKENZCa/x9ng5O37/P378vTf4+weOnj21dqHiYjPu37Z3Odfc6HltDmYlIPKnSG6tIhthiXTrEGhlGf99/iGljx8jSYydT6IqI6Ikyc4cyJ3n4JPg0YtbDUcbz8bYydcgiXL2M3LzsG5y7yYtqH13uNhbYPXrDm7kR6rm26ogRvAqGNJXiTUsE9QfiNcfEEpbSpviinHxbe2zcDi5OBYjGGSrXzI51XpAAAA80lEQVQoz7XQyZKCMBAG4ETQsCQEQQXc930p911ndN7/mSY9kKo5UOTkf0jo9FfpIsjUS1UkYhBiwJ7PmTpKCzSAxhCqooNQBgWYyQzXdaNtxfcI6Yo1EqWbCklK/hp2IYmtgBambHHBnGnJaJHI8ytdQsS6jaBOYAsPOrxFNTncKelmLg8/4xThKzm28AgPV7O+hDGTz/OPWvT22KzvSzlaNuSDA40hG882X3zMNJQdi+Pl+sVGVAW1RR+v/OlTeaM9pfjbm9BBWQGbYY+/f+a9Zmhnul3tcB7O+SRs1ALF6Hr7dG039nXVaEGDYydQs4/nFxTcFD++Tcb9AAAAAElFTkSuQmCC");\n}\n\n.flag.VI,\n.flag.VIR,\n.flag.vi,\n.flag.vir {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAABm1BMVEX////bsDX+/v7dsjUUJGP8/Pzjtjb////19fXarjP7+/sWJmfWqzH5+fnPqrX28+qkNlanN1jgx4HjvlYFe7u3bYMAdbTkwmP0xT3tvjnjxnTWs1Pw8fDetD/dsDPm7PDk2rrTqTLgszPr3LXXwoXk6Orn1qbjuUTpuzjhtDbmuTjPpS+TLkxzrMzLozHHnix7rMYpiLvXs0aKsceOuNC9mjiuZG3r4L7gu1PS4eqZvdGty9unw9Sxzt+BtdFFlcCsxa/RxqR1oXwEb6vatlFllWzE08aAqIVOi1fJv5atZnrUtmHc0bLmy3zVrT3x7uXg0aT58+Gvs8LYxZVDTHQ3jLlDRFPiy43dyImix9tBQlLs48pVoMfL2uLOq0TcxH7KuYrN28/B2OTLsnNsoHOYvJ6FqoqJso/WvXrZ4tvKrK/m3cXczJ6+kGbQrlb7+O9zo77m0puSfEaTfkXywzvs4cC4l6C6mKGfXXFcnmUmgbSdn1nj5tiPljjc6d5bkWQ/eUhIi1HN0rJWoMc9dXmzqW1Dh6yquLJMjbLH8TdBAAACKklEQVQ4y7WTV3caMRBGJW20Z0VYUx0wdRdTdum9+FAMmI57t+Peu9N7cZz2s8MaMDzETl48LzrSXH2aGc0A8BDG4Pv3mGmvbHJ8WMH2jvNmXR/JKobHkx2vHdKiTj3VFkKzRl541ZWaUutEGtq7lyYIgTztNjgVEul8qVdLxwqnwSXykJCJ2+cmjRASXtQLrmdSJHq9ruVyugS9KCcUNE72AplWQ+gngkBpZhyz4vMXIueY0VGCQPwQqqf7E0NLYRKgRXpx7lHH5hZb2wAJL6FemhggjFaNvMfiHlp43LGFIbfFwxtXJRV8A6N0Gpl81tGPG+seC73SVVyhKc/6hpQdMPlMN4rLOdl2qLy3v8dZiG3T+/a11/um7t20EQvHsCPSBzxpV5zRWn3Zz6VShTm0kZpqcECpGhhU1YjtcC19ncE9ED+NhlKy/WqhDBSJvLINKvMJBb6OFtdG0C0IlkMhFhwVSgcMuBiLt8H42AWw5i6j2lRPEVi1WYC2dquVMlZT4boE1sOUAbOXkWAQ94O5VsimSvXLwZFZ3jg7VqqOzxrEzJh+B7clf2re0am2VCc0unv1teY/Pw3E4vFY4PTc34z8jPb8fV1Y+CBqEhwhfCzGE8IlNLYff+9fvPPpGzjhIWwYWy1ygn5938F3kFvvWNCUU0kXJW8CX/G97M6hGG1FbTcnk2Y7yGi187J7JwhxBgOHmaC2mP3XsMkkJSYSyfzfbCLwwPYHPCRVSi8V07AAAAAASUVORK5CYII=");\n}\n\n.flag.WF,\n.flag.WLF,\n.flag.wf,\n.flag.wlf {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAMFBMVEXtKDjtKTkAI5X////vRFLuOknuNkXxWmf5tbv819qptNv7ys5YaLP83N/3oajEtdCITnYQAAAAAXRSTlP9g+pWxwAAAGFJREFUKM9jUFLSMjZuFBRxFIQDAYahKCi3e/dDsOCZM+fv3m13dwcKiqRNtkxzBAmGgkBqaChQhfi0zGmZhSBBRoRZ4pZpaZMxBI0bJYyJU4nNTITtSIIIdyILwn00RAQB9plFeRIwkYUAAAAASUVORK5CYII=");\n}\n\n.flag.EH,\n.flag.ESH,\n.flag.eh,\n.flag.esh {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAWlBMVEXEERvxxMa4ExrIIyxVVVVVpn7llpoAAAD///8Aej300tTYYmmeJSbppKj88PDttLefDRV7NyYNczolZjZ6ChANAQElAwVKUjBKBgrPPEX44uPeeH6aSD9cnHcNwNhSAAAAfUlEQVQoz43QSQ6DMBBE0TIE4wEzJCEJ0/2vyWAgC6Sm/tJ6UqmNd5tTAfWHhEh+JASY+Q0y8xES8zgqHnInROdMrAqqN5f+EGmIzhtlRAj4cnkZtE41CxU37UonwfMYpcVjxikTOz78a2/af/tlKdg8LQPvZyMkZjfIzK7NQI0WA0pe9mYAAAAASUVORK5CYII=");\n}\n\n.flag.YE,\n.flag.YEM,\n.flag.ye,\n.flag.yem {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAgMAAABzfiX9AAAACVBMVEUAAADOESb///9w5v7GAAAAFUlEQVQY02MIhQMGWjFXwQHNmLQHAJQLWadZSURAAAAAAElFTkSuQmCC");\n}\n\n.flag.ZM,\n.flag.ZMB,\n.flag.zm,\n.flag.zmb {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAP1BMVEUZigAZhQAwgQDFaQC3YQBSawNsJgPvfQDeIBAAAABmgABfZAVeRQGlaAB7bgBNeQCLcwDSawCeagBiVANaewDu6/ERAAAAYElEQVQ4y+3QSQ6AIAxA0Q4girYMev+zWg8gsjDGBS/p7gcKAB+iSAhw2CClZiiFJXPWKlybR6JyKYGZXaaH2zElcc5jx6Koip1Pwvd+ZzX7ZuLlPvSzmRbjghnhCP8UntyWCYNHCcFWAAAAAElFTkSuQmCC");\n}\n\n.flag.ZW,\n.flag.ZWE,\n.flag.zw,\n.flag.zwe {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAdVBMVEXUAAAAAACioaDw8PBqAAD/0gD0ngBAgAD///8AZADS0dDCnADaiwPyr6/97+/tk4b41dUQSBAwSjBkaGA5cQChhxDUIhIQEBBmYGBeAAB0aDDnb2/QWzvnuQBoMDBwamCIEBD0v7+rOQDWDw/f39/3qA/dagBgvDPGAAAAh0lEQVQoz42TRxLCMBAEB4nQSA4imWCbDP9/IheulrbPXbW1s7Nym7UJEbZGEb/br8oIwB0WRQRAuNjElPytWuYR4Nse3F15gPenA8I1Lza9FL/S0PjTeT6NoH6NsWoB3HE2iYAhjhUGselifCYoj67h0RaX4Y8lHsAWuP2ExlJYa2YtrvUVfoyrFApCzR7PAAAAAElFTkSuQmCC");\n}\n',"/*\n * React Fabric\n * @version : 1.0.0\n * @copyright : 2024\n * @author : Adarsh Pastakia\n */\n\n.sb-show-main.sb-show-main.sb-show-main .control-panel {\n margin: -2rem 0 2.5rem;\n\n .sb-bar {\n display: none;\n }\n}\n\n.sb-show-main.sb-show-main.sb-show-main .docblock-argstable.docblock-argstable {\n border-spacing: 0.25rem;\n border-collapse: separate;\n border-width: 0;\n\n & thead th {\n color: theme(textColor.accent.600);\n background-color: theme(backgroundColor.dimmed);\n }\n\n & tbody tr:nth-child(odd) td {\n background-color: color-mix(in lab, var(--fabric-bg) 99%, var(--tint));\n }\n\n & tbody tr:nth-child(even) td {\n background-color: color-mix(in lab, var(--fabric-bg) 96%, var(--tint));\n }\n\n & tbody td p {\n white-space: pre-wrap;\n }\n}\n\n.hidden-anchor {\n height: 0;\n visibility: hidden;\n}\n\nh1.sbdocs-title {\n font-size: 1.5rem;\n font-weight: 500;\n color: var(--primary);\n text-decoration: underline 2px;\n text-underline-offset: 0.25em;\n}\n\n.sbdocs.sbdocs-content > h3,\n.sb-anchor > h3 {\n font-size: 1.125rem;\n font-weight: 400;\n color: var(--accent);\n text-decoration: underline 1px;\n text-underline-offset: 0.25em;\n}\n\n.sbdocs.sbdocs.sbdocs-preview {\n &,\n & .docs-story {\n background-color: theme(backgroundColor.base);\n }\n\n .sb-bar {\n background-color: var(--fabric-bg);\n }\n}\n\n.sb-bar.sb-bar .tabbutton {\n color: var(--primary);\n\n &.tabbutton-active {\n border-bottom-color: var(--primary);\n }\n}\n\n.toc-wrapper.toc-wrapper.toc-wrapper > .toc-list.toc-list.toc-list {\n padding: 0;\n border-left: 0;\n border-inline-start: 1px solid theme(borderColor.base);\n\n .toc-list-item.toc-list-item.toc-list-item {\n margin: 0;\n margin-inline-start: -1px;\n padding: 0.25rem 1rem;\n border-inline-start: 2px solid transparent;\n\n &::before {\n border-left: 0;\n }\n }\n\n .toc-list-item.toc-list-item.is-active-li.is-active-li {\n border-color: var(--accent);\n\n & > a.is-active-link {\n color: var(--accent);\n }\n }\n}\n",'/*\n * React Fabric\n * @version : 1.0.0\n * @copyright : 2024\n * @author : Adarsh Pastakia\n */\n\n.prismjs.prismjs.prismjs {\n color: theme(textColor.dimmed);\n background: var(--fabric-bg);\n}\n\n.prismjs > code {\n user-select: text;\n\n font-family: Consolas, Monaco, "Andale Mono", "Ubuntu Mono", monospace;\n font-size: 1em;\n line-height: 1.5;\n text-align: left;\n word-break: normal;\n word-spacing: normal;\n word-wrap: normal;\n white-space: pre;\n}\n\n/* Code blocks */\npre[class*="language-"] {\n overflow: auto;\n margin: 0.5em 0;\n padding: 1em;\n}\n\n/* Inline code */\n*:not(pre) > code[class*="language-"] {\n padding: 0.1em;\n white-space: normal;\n border-radius: 0.3em;\n}\n\ncode[class*="language-"],\npre[class*="language-"] {\n & .token.important,\n & .token.bold {\n font-weight: 600;\n }\n\n & .token.italic {\n font-style: italic;\n }\n\n & .token.entity {\n cursor: help;\n }\n}\n\n.prismjs {\n position: relative;\n}\n\n.prismjs > div {\n white-space: pre-wrap !important;\n\n &::after {\n position: absolute;\n top: 0;\n inset-inline-end: 0;\n\n padding: 0.25em 0.5em;\n\n font-size: 0.75rem;\n\n opacity: 0.7;\n border-end-start-radius: 8px;\n }\n\n &.language-jsx::after,\n &.language-tsx::after {\n content: "React";\n color: #000;\n background-color: #61dafb;\n }\n\n &.language-js::after {\n content: "JS";\n color: #000;\n background-color: #f7df1e;\n }\n\n &.language-ts::after {\n content: "TS";\n color: #fff;\n background-color: #3178c6;\n }\n\n &.language-css::after {\n content: "CSS";\n color: #fff;\n background-color: #1572b6;\n }\n\n &.language-html::after {\n content: "HTML";\n color: #fff;\n background-color: #e34f26;\n }\n\n &.language-bash::after {\n content: "Bash";\n color: #fff;\n background-color: #64748b;\n }\n\n &.language-json::after {\n content: "JSON";\n color: #fff;\n background-color: #000;\n }\n\n &.language-yaml::after {\n content: "YAML";\n color: #fff;\n background-color: #cb171e;\n }\n}\n','/*\n * React Fabric\n * @version : 1.0.0\n * @copyright : 2024\n * @author : Adarsh Pastakia\n */\n\nhtml[data-color-scheme="dark"] {\n & .prismjs > div[class*="language-"] {\n & .token.comment,\n & .token.block-comment,\n & .token.prolog,\n & .token.doctype,\n & .token.cdata {\n color: #999;\n }\n\n & .token.punctuation {\n color: #ccc;\n }\n\n & .token.tag,\n & .token.attr-name,\n & .token.namespace,\n & .token.deleted {\n color: #e2777a;\n }\n\n & .token.function-name {\n color: #6196cc;\n }\n\n & .token.boolean,\n & .token.number,\n & .token.function {\n color: #f08d49;\n }\n\n & .token.property,\n & .token.class-name,\n & .token.constant,\n & .token.symbol {\n color: #f8c555;\n }\n\n & .token.selector,\n & .token.important,\n & .token.atrule,\n & .token.keyword,\n & .token.builtin {\n color: #cc99cd;\n }\n\n & .token.string,\n & .token.char,\n & .token.attr-value,\n & .token.regex,\n & .token.variable {\n color: #7ec699;\n }\n\n & .token.operator,\n & .token.entity,\n & .token.url {\n color: #67cdcc;\n }\n\n & .token.important,\n & .token.bold {\n font-weight: 600;\n }\n\n & .token.italic {\n font-style: italic;\n }\n\n & .token.entity {\n cursor: help;\n }\n\n & .token.inserted {\n color: #008000;\n }\n }\n}\n','/*\n * React Fabric\n * @version : 1.0.0\n * @copyright : 2024\n * @author : Adarsh Pastakia\n */\n\nhtml[data-color-scheme="light"] {\n & .prismjs > div[class*="language-"] {\n & .token.comment,\n & .token.prolog,\n & .token.doctype,\n & .token.cdata {\n color: #708090;\n }\n\n & .token.punctuation {\n color: #999;\n }\n\n & .token.namespace {\n opacity: 0.7;\n }\n\n & .token.property,\n & .token.tag,\n & .token.boolean,\n & .token.number,\n & .token.constant,\n & .token.symbol,\n & .token.deleted {\n color: #905;\n }\n\n & .token.selector,\n & .token.attr-name,\n & .token.string,\n & .token.char,\n & .token.builtin,\n & .token.inserted {\n color: #690;\n }\n\n & .token.operator,\n & .token.entity,\n & .token.url,\n & .language-css .token.string,\n & .style .token.string {\n /* This background color was intended by the author of this theme. */\n color: #9a6e3a;\n background: hsl(0deg 0% 100% / 50%);\n }\n\n & .token.atrule,\n & .token.attr-value,\n & .token.keyword {\n color: #07a;\n }\n\n & .token.function,\n & .token.class-name {\n color: #dd4a68;\n }\n\n & .token.regex,\n & .token.important,\n & .token.variable {\n color: #e90;\n }\n }\n}\n'],sourceRoot:""}]);const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/dist/esm/components/actionLabel/ActionLabel.module.css":(module,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,"@layer comp{.du9AtGJbcP3pwKaV7sdy>.UjtQjCQh3YkDCy_FXJ2l{--width:4rem;width:0}.du9AtGJbcP3pwKaV7sdy:not([data-disabled=true]):hover>.UjtQjCQh3YkDCy_FXJ2l{transition:all .1s cubic-bezier(.215,.61,.355,1);transition-delay:.5s;width:var(--width)}}","",{version:3,sources:["webpack://./packages/core/dist/esm/components/actionLabel/ActionLabel.module.css"],names:[],mappings:"AAAA,YAAyB,4CAAW,YAAY,CAAC,OAAO,CAAC,4EAA2C,gDAAgD,CAAC,oBAAoB,CAAC,kBAAkB,CAAE",sourcesContent:["@layer comp{.actionLabel{&>.actions{--width:4rem;width:0}&:not([data-disabled=true]):hover>.actions{transition:all .1s cubic-bezier(.215,.61,.355,1);transition-delay:.5s;width:var(--width)}}}"],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={actionLabel:"du9AtGJbcP3pwKaV7sdy",actions:"UjtQjCQh3YkDCy_FXJ2l"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/dist/esm/components/animations/Animations.module.css":(module,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,"@layer comp{@keyframes _Cwycr0UXpHx8Efc93Te{0%,25%{background-position:0 50%,0 calc(50% - 2px),0 calc(50% + 2px),50% 50%,50% calc(50% - 2px),50% calc(50% + 2px),100% 50%,100% calc(50% - 2px),100% calc(50% + 2px);background-size:8px 0,8px 4px,8px 4px,8px 0,8px 4px,8px 4px,8px 0,8px 4px,8px 4px}50%{background-position:0 50%,0 -2px,0 calc(100% + 2px),50% 50%,50% calc(50% - 2px),50% calc(50% + 2px),100% 50%,100% calc(50% - 2px),100% calc(50% + 2px);background-size:8px 100%,8px 4px,8px 4px,8px 0,8px 4px,8px 4px,8px 0,8px 4px,8px 4px}75%{background-position:0 50%,0 -2px,0 calc(100% + 2px),50% 50%,50% -2px,50% calc(100% + 2px),100% 50%,100% calc(50% - 2px),100% calc(50% + 2px);background-size:8px 100%,8px 4px,8px 4px,8px 100%,8px 4px,8px 4px,8px 0,8px 4px,8px 4px}95%,to{background-position:0 50%,0 -2px,0 calc(100% + 2px),50% 50%,50% -2px,50% calc(100% + 2px),100% 50%,100% -2px,100% calc(100% + 2px);background-size:8px 100%,8px 4px,8px 4px,8px 100%,8px 4px,8px 4px,8px 100%,8px 4px,8px 4px}}.bcgiQmAkP9O7Rqb30XA5{--c:linear-gradient(currentcolor 0 0);--r1:radial-gradient(farthest-side at bottom,currentcolor 93%,#0000);--r2:radial-gradient(farthest-side at top,currentcolor 93%,#0000);animation:_Cwycr0UXpHx8Efc93Te 1s infinite alternate;aspect-ratio:1;background:var(--c),var(--r1),var(--r2),var(--c),var(--r1),var(--r2),var(--c),var(--r1),var(--r2);background-repeat:no-repeat}@keyframes Mp31gmbYKtCId30xLj0w{to{transform:rotate(1turn)}}.VP15o9uVw43m9wTwNlVa{--b:8px;animation:Mp31gmbYKtCId30xLj0w 2s steps(10) infinite;aspect-ratio:1;background:conic-gradient(#0000 10%,currentcolor) content-box;border-radius:50%;-webkit-mask:repeating-conic-gradient(#0000 0deg,#000 1deg 20deg,#0000 21deg 36deg),radial-gradient(farthest-side,#0000 calc(100% - var(--b) - 1px),#000 calc(100% - var(--b)));mask:repeating-conic-gradient(#0000 0deg,#000 1deg 20deg,#0000 21deg 36deg),radial-gradient(farthest-side,#0000 calc(100% - var(--b) - 1px),#000 calc(100% - var(--b)));-webkit-mask-composite:destination-in;mask-composite:destination-in;-webkit-mask-composite:source-in, xor;mask-composite:intersect}@keyframes ZydUSDX2ipk7YUFLhN8Q{0%{transform:translateX(calc(-100%*var(--multiplier)))}to{transform:translateX(calc(100%*var(--multiplier)))}}.ZydUSDX2ipk7YUFLhN8Q{--multiplier:1;}.ZydUSDX2ipk7YUFLhN8Q>div{height:calc(.125rem + 2px);}.ZydUSDX2ipk7YUFLhN8Q>div:after{animation:ZydUSDX2ipk7YUFLhN8Q 1s cubic-bezier(.65,0,.45,1) infinite}[dir=rtl] .ZydUSDX2ipk7YUFLhN8Q{--multiplier:-1}@keyframes qOdAZMm1rXd8r6LgRPJV{to{stroke-dashoffset:0}}@keyframes pvx6y9ULlMfBxqXVUYSa{0%,to{transform:none}50%{transform:scale3d(1.1,1.1,1)}}@keyframes pXVeXQ4nFG6hgqEbAHy8{to{box-shadow:inset 0 0 0 1em currentcolor}}.Mfk0LLqF54QunSsQdHQs{box-shadow:inset 0 0 0 currentcolor;color:var(--primary);height:1.5em;width:1.5em;fill:transparent;stroke-miterlimit:10;stroke-width:4px;animation:pXVeXQ4nFG6hgqEbAHy8 .4s ease-in-out .4s forwards,pvx6y9ULlMfBxqXVUYSa .3s ease-in-out .9s both;animation-delay:.75s;}.Mfk0LLqF54QunSsQdHQs .Z2h8KvKKrMfsNTwMBpoC{fill:transparent;stroke:currentcolor;stroke-dasharray:166;stroke-dashoffset:166;stroke-miterlimit:10;stroke-width:8px;animation:qOdAZMm1rXd8r6LgRPJV .6s cubic-bezier(.65,0,.45,1) forwards;animation-delay:.25s}.Mfk0LLqF54QunSsQdHQs .WCpA_9bkgQc43377GNl7{transform-origin:50% 50%;stroke:currentcolor;stroke-dasharray:48;stroke-dashoffset:48;animation:qOdAZMm1rXd8r6LgRPJV .3s cubic-bezier(.65,0,.45,1) .8s forwards;animation-delay:.75s}}","",{version:3,sources:["webpack://./packages/core/dist/esm/components/animations/Animations.module.css"],names:[],mappings:"AAAA,YAAY,gCAAc,OAAO,gKAAgK,CAAC,iFAAiF,CAAC,IAAI,sJAAsJ,CAAC,oFAAoF,CAAC,IAAI,4IAA4I,CAAC,uFAAuF,CAAC,OAAO,kIAAkI,CAAC,0FAA0F,CAAC,CAAC,sBAAM,qCAAqC,CAAC,oEAAoE,CAAC,iEAAiE,CAAC,oDAAkC,CAAC,cAAc,CAAC,iGAAiG,CAAC,2BAA2B,CAAC,gCAAc,GAAG,uBAAuB,CAAC,CAAC,sBAAS,OAAO,CAAC,oDAAkC,CAAC,cAAc,CAAC,6DAA6D,CAAC,iBAAiB,CAAC,+KAAuK,CAAvK,uKAAuK,CAAC,qCAA6B,CAA7B,6BAA6B,CAAC,qCAAuB,CAAvB,wBAAwB,CAAC,gCAAkB,GAAG,mDAAmD,CAAC,GAAG,kDAAkD,CAAC,CAAC,sBAAQ,cAAc,CAAuI,CAAtI,0BAAM,0BAA0B,CAAgE,CAA/D,gCAAQ,oEAAsD,CAAE,gCAAqB,eAAe,CAAE,gCAAwB,GAAG,mBAAmB,CAAC,CAAC,gCAAuB,MAAM,cAAc,CAAC,IAAI,4BAA4B,CAAC,CAAC,gCAAsB,GAAG,uCAAuC,CAAC,CAAC,sBAAgB,mCAAmC,CAAC,oBAAmC,CAAC,YAAY,CAAC,WAAW,CAAC,gBAAgB,CAAC,oBAAoB,CAAC,gBAAgB,CAAC,yGAAsF,CAAC,oBAAoB,CAAiZ,CAAhZ,4CAAc,gBAAgB,CAAC,mBAAmB,CAAC,oBAAoB,CAAC,qBAAqB,CAAC,oBAAoB,CAAC,gBAAgB,CAAC,qEAA6D,CAAC,oBAAoB,CAAC,4CAAY,wBAAwB,CAAC,mBAAmB,CAAC,mBAAmB,CAAC,oBAAoB,CAAC,yEAAiE,CAAC,oBAAoB,CAAE",sourcesContent:["@layer comp{@keyframes l2{0%,25%{background-position:0 50%,0 calc(50% - 2px),0 calc(50% + 2px),50% 50%,50% calc(50% - 2px),50% calc(50% + 2px),100% 50%,100% calc(50% - 2px),100% calc(50% + 2px);background-size:8px 0,8px 4px,8px 4px,8px 0,8px 4px,8px 4px,8px 0,8px 4px,8px 4px}50%{background-position:0 50%,0 -2px,0 calc(100% + 2px),50% 50%,50% calc(50% - 2px),50% calc(50% + 2px),100% 50%,100% calc(50% - 2px),100% calc(50% + 2px);background-size:8px 100%,8px 4px,8px 4px,8px 0,8px 4px,8px 4px,8px 0,8px 4px,8px 4px}75%{background-position:0 50%,0 -2px,0 calc(100% + 2px),50% 50%,50% -2px,50% calc(100% + 2px),100% 50%,100% calc(50% - 2px),100% calc(50% + 2px);background-size:8px 100%,8px 4px,8px 4px,8px 100%,8px 4px,8px 4px,8px 0,8px 4px,8px 4px}95%,to{background-position:0 50%,0 -2px,0 calc(100% + 2px),50% 50%,50% -2px,50% calc(100% + 2px),100% 50%,100% -2px,100% calc(100% + 2px);background-size:8px 100%,8px 4px,8px 4px,8px 100%,8px 4px,8px 4px,8px 100%,8px 4px,8px 4px}}.bars{--c:linear-gradient(currentcolor 0 0);--r1:radial-gradient(farthest-side at bottom,currentcolor 93%,#0000);--r2:radial-gradient(farthest-side at top,currentcolor 93%,#0000);animation:l2 1s infinite alternate;aspect-ratio:1;background:var(--c),var(--r1),var(--r2),var(--c),var(--r1),var(--r2),var(--c),var(--r1),var(--r2);background-repeat:no-repeat}@keyframes l4{to{transform:rotate(1turn)}}.spinner{--b:8px;animation:l4 2s steps(10) infinite;aspect-ratio:1;background:conic-gradient(#0000 10%,currentcolor) content-box;border-radius:50%;mask:repeating-conic-gradient(#0000 0deg,#000 1deg 20deg,#0000 21deg 36deg),radial-gradient(farthest-side,#0000 calc(100% - var(--b) - 1px),#000 calc(100% - var(--b)));mask-composite:destination-in;mask-composite:intersect}@keyframes loader{0%{transform:translateX(calc(-100%*var(--multiplier)))}to{transform:translateX(calc(100%*var(--multiplier)))}}.loader{--multiplier:1;&>div{height:calc(.125rem + 2px);&:after{animation:loader 1s cubic-bezier(.65,0,.45,1) infinite}}:global([dir=rtl]) &{--multiplier:-1}}@keyframes check-stroke{to{stroke-dashoffset:0}}@keyframes check-scale{0%,to{transform:none}50%{transform:scale3d(1.1,1.1,1)}}@keyframes check-fill{to{box-shadow:inset 0 0 0 1em currentcolor}}.checkAnimation{box-shadow:inset 0 0 0 currentcolor;color:theme(colors.primary.DEFAULT);height:1.5em;width:1.5em;fill:transparent;stroke-miterlimit:10;stroke-width:4px;animation:check-fill .4s ease-in-out .4s forwards,check-scale .3s ease-in-out .9s both;animation-delay:.75s;& .circlePart{fill:transparent;stroke:currentcolor;stroke-dasharray:166;stroke-dashoffset:166;stroke-miterlimit:10;stroke-width:8px;animation:check-stroke .6s cubic-bezier(.65,0,.45,1) forwards;animation-delay:.25s}& .iconPart{transform-origin:50% 50%;stroke:currentcolor;stroke-dasharray:48;stroke-dashoffset:48;animation:check-stroke .3s cubic-bezier(.65,0,.45,1) .8s forwards;animation-delay:.75s}}}"],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={bars:"bcgiQmAkP9O7Rqb30XA5",l2:"_Cwycr0UXpHx8Efc93Te",spinner:"VP15o9uVw43m9wTwNlVa",l4:"Mp31gmbYKtCId30xLj0w",loader:"ZydUSDX2ipk7YUFLhN8Q",checkAnimation:"Mfk0LLqF54QunSsQdHQs","check-fill":"pXVeXQ4nFG6hgqEbAHy8","check-scale":"pvx6y9ULlMfBxqXVUYSa",circlePart:"Z2h8KvKKrMfsNTwMBpoC","check-stroke":"qOdAZMm1rXd8r6LgRPJV",iconPart:"WCpA_9bkgQc43377GNl7"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/dist/esm/components/avatar/Avatar.module.css":(module,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,"@layer comp{.DJ1qWLXKusZ_aFMujFXy{border-radius:var(--rounding);box-shadow:0 0 1px color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 65%, color(from var(--tint) srgb r g b / 1));height:1em;vertical-align:-.125em;width:1em;}.DJ1qWLXKusZ_aFMujFXy>i,.DJ1qWLXKusZ_aFMujFXy>img,.DJ1qWLXKusZ_aFMujFXy>svg{background-color:color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 90%, color(from var(--tint) srgb r g b / 1));border-radius:inherit;display:block;height:1em;line-height:1;-o-object-fit:cover;object-fit:cover;overflow:hidden;pointer-events:none;width:1em;fill:currentcolor}.DJ1qWLXKusZ_aFMujFXy>i:before{line-height:1}.DJ1qWLXKusZ_aFMujFXy>.fMlCiJnANvXgG4m2yTO_{z-index:-1}.OcR_rqwAd0mtTPg9k528>.DJ1qWLXKusZ_aFMujFXy{box-shadow:0 0 0 1px color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 80%, color(from var(--tint) srgb r g b / 1)),0 0 0 .125em var(--fabric-bg);}.OcR_rqwAd0mtTPg9k528>.DJ1qWLXKusZ_aFMujFXy:not(:first-child){margin-inline-start:-.125em}.OcR_rqwAd0mtTPg9k528 .EPrRvA_g2ge3IzEXpsCM{border-radius:inherit;font-size:inherit;height:1em;width:1em}}@layer util{.OcR_rqwAd0mtTPg9k528>.DJ1qWLXKusZ_aFMujFXy{border-radius:inherit;font-size:inherit}}","",{version:3,sources:["webpack://./packages/core/dist/esm/components/avatar/Avatar.module.css"],names:[],mappings:"AAAA,YAAY,sBAAQ,6BAA6B,CAAC,8HAA0C,CAAC,UAAU,CAAC,sBAAsB,CAAC,SAAS,CAAsQ,CAArQ,4EAAgB,4HAA8C,CAAC,qBAAqB,CAAC,aAAa,CAAC,UAAU,CAAC,aAAa,CAAC,mBAAgB,CAAhB,gBAAgB,CAAC,eAAe,CAAC,mBAAmB,CAAC,SAAS,CAAC,iBAAiB,CAAC,+BAAW,aAAa,CAAC,4CAAoB,UAAU,CAAe,4CAAU,8JAA2E,CAAiD,CAAhD,8DAAoB,2BAA2B,CAAE,4CAAsB,qBAAqB,CAAC,iBAAiB,CAAC,UAAU,CAAC,SAAS,CAAE,CAAC,YAAyB,4CAAU,qBAAqB,CAAC,iBAAiB,CAAE",sourcesContent:["@layer comp{.avatar{border-radius:var(--rounding);box-shadow:0 0 1px theme(borderColor.base);height:1em;vertical-align:-.125em;width:1em;&>i,&>img,&>svg{background-color:theme(backgroundColor.dimmed);border-radius:inherit;display:block;height:1em;line-height:1;object-fit:cover;overflow:hidden;pointer-events:none;width:1em;fill:currentcolor}&>i:before{line-height:1}&>.imagePlaceholder{z-index:-1}}.avatarGroup{&>.avatar{box-shadow:0 0 0 1px theme(borderColor.muted),0 0 0 .125em var(--fabric-bg);&:not(:first-child){margin-inline-start:-.125em}}& .avatarGroup--extra{border-radius:inherit;font-size:inherit;height:1em;width:1em}}}@layer util{.avatarGroup{&>.avatar{border-radius:inherit;font-size:inherit}}}"],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={avatar:"DJ1qWLXKusZ_aFMujFXy",imagePlaceholder:"fMlCiJnANvXgG4m2yTO_",avatarGroup:"OcR_rqwAd0mtTPg9k528","avatarGroup--extra":"EPrRvA_g2ge3IzEXpsCM"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/dist/esm/components/badge/Badge.module.css":(module,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'@layer comp{@keyframes elVi1kloLEQOkNlUHl4Y{0%{opacity:.7;transform:scale(1)}to{opacity:0;transform:scale(3)}}.PzFE0Mkd567NPdLmK2qS{--tw-bg-opacity:1;background-color:color-mix(in lab, color(from var(--tint) srgb r g b / var(--tw-bg-opacity)) 45%, color(from var(--fabric-bg) srgb r g b / var(--tw-bg-opacity)));box-sizing:content-box;color:color-mix(in lab, color(from var(--fabric-text) srgb r g b / 1) 95%, color(from var(--tint) srgb r g b / 1));outline:.5px solid color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 99%, color(from var(--tint) srgb r g b / 1));}.PzFE0Mkd567NPdLmK2qS>span{font-size:.625em;font-weight:500;line-height:1;vertical-align:.125em}.PzFE0Mkd567NPdLmK2qS[data-ping=true]{--translate:50%;}.PzFE0Mkd567NPdLmK2qS[data-ping=true]:before{animation:elVi1kloLEQOkNlUHl4Y 1s linear infinite;background-color:inherit;border-radius:999px;content:"";inset:0;position:absolute;z-index:-1}.PzFE0Mkd567NPdLmK2qS:not([data-ping=true]){--translate:0.75rem;min-width:1em}.PzFE0Mkd567NPdLmK2qS[data-placement=top]{left:50%;top:0;transform:translate(-50%,-50%)}.PzFE0Mkd567NPdLmK2qS[data-placement=top-start]{inset-inline-start:0;top:0;}[dir=ltr] .PzFE0Mkd567NPdLmK2qS[data-placement=top-start]{transform:translate(calc(var(--translate)*-1),-50%)}[dir=rtl] .PzFE0Mkd567NPdLmK2qS[data-placement=top-start]{transform:translate(calc(var(--translate)*1),-50%)}.PzFE0Mkd567NPdLmK2qS[data-placement=top-end]{inset-inline-end:0;top:0;}[dir=ltr] .PzFE0Mkd567NPdLmK2qS[data-placement=top-end]{transform:translate(calc(var(--translate)*1),-50%)}[dir=rtl] .PzFE0Mkd567NPdLmK2qS[data-placement=top-end]{transform:translate(calc(var(--translate)*-1),-50%)}.PzFE0Mkd567NPdLmK2qS[data-placement=bottom]{bottom:0;left:50%;transform:translate(-50%,50%)}.PzFE0Mkd567NPdLmK2qS[data-placement=bottom-start]{bottom:0;inset-inline-start:0;}[dir=ltr] .PzFE0Mkd567NPdLmK2qS[data-placement=bottom-start]{transform:translate(calc(var(--translate)*-1),-50%)}[dir=rtl] .PzFE0Mkd567NPdLmK2qS[data-placement=bottom-start]{transform:translate(calc(var(--translate)*1),-50%)}.PzFE0Mkd567NPdLmK2qS[data-placement=bottom-end]{bottom:0;inset-inline-end:0;}[dir=ltr] .PzFE0Mkd567NPdLmK2qS[data-placement=bottom-end]{transform:translate(calc(var(--translate)*1),-50%)}[dir=rtl] .PzFE0Mkd567NPdLmK2qS[data-placement=bottom-end]{transform:translate(calc(var(--translate)*-1),-50%)}.PzFE0Mkd567NPdLmK2qS[data-placement=start]{inset-inline-start:0;top:50%;}[dir=ltr] .PzFE0Mkd567NPdLmK2qS[data-placement=start]{transform:translate(-50%,-50%)}[dir=rtl] .PzFE0Mkd567NPdLmK2qS[data-placement=start]{transform:translate(50%,-50%)}.PzFE0Mkd567NPdLmK2qS[data-placement=end]{inset-inline-end:0;top:50%;}[dir=ltr] .PzFE0Mkd567NPdLmK2qS[data-placement=end]{transform:translate(50%,-50%)}[dir=rtl] .PzFE0Mkd567NPdLmK2qS[data-placement=end]{transform:translate(-50%,-50%)}}',"",{version:3,sources:["webpack://./packages/core/dist/esm/components/badge/Badge.module.css"],names:[],mappings:"AAAA,YAAY,gCAAkB,GAAG,UAAU,CAAC,kBAAkB,CAAC,GAAG,SAAS,CAAC,kBAAkB,CAAC,CAAC,sBAAO,iBAAiB,CAAC,kKAA4D,CAAC,sBAAsB,CAAC,mHAA2B,CAAC,8HAA8C,CAA+hD,CAA9hD,2BAAO,gBAAgB,CAAC,eAAe,CAAC,aAAa,CAAC,qBAAqB,CAAC,sCAAkB,eAAe,CAA2I,CAA1I,6CAAS,iDAAmC,CAAC,wBAAwB,CAAC,mBAAmB,CAAC,UAAU,CAAC,OAAO,CAAC,iBAAiB,CAAC,UAAU,CAAE,4CAAwB,mBAAmB,CAAC,aAAa,CAAC,0CAAsB,QAAQ,CAAC,KAAK,CAAC,8BAA8B,CAAC,gDAA4B,oBAAoB,CAAC,KAAK,CAAkJ,CAAjJ,0DAAqB,mDAAmD,CAAC,0DAAqB,kDAAkD,CAAE,8CAA0B,kBAAkB,CAAC,KAAK,CAAkJ,CAAjJ,wDAAqB,kDAAkD,CAAC,wDAAqB,mDAAmD,CAAE,6CAAyB,QAAQ,CAAC,QAAQ,CAAC,6BAA6B,CAAC,mDAA+B,QAAQ,CAAC,oBAAoB,CAAkJ,CAAjJ,6DAAqB,mDAAmD,CAAC,6DAAqB,kDAAkD,CAAE,iDAA6B,QAAQ,CAAC,kBAAkB,CAAkJ,CAAjJ,2DAAqB,kDAAkD,CAAC,2DAAqB,mDAAmD,CAAE,4CAAwB,oBAAoB,CAAC,OAAO,CAAwG,CAAvG,sDAAqB,8BAA8B,CAAC,sDAAqB,6BAA6B,CAAE,0CAAsB,kBAAkB,CAAC,OAAO,CAAwG,CAAvG,oDAAqB,6BAA6B,CAAC,oDAAqB,8BAA8B,CAAG",sourcesContent:['@layer comp{@keyframes pinger{0%{opacity:.7;transform:scale(1)}to{opacity:0;transform:scale(3)}}.badge{--tw-bg-opacity:1;background-color:theme(colors.tint.200/var(--tw-bg-opacity));box-sizing:content-box;color:theme(textColor.base);outline:.5px solid theme(backgroundColor.base);&>span{font-size:.625em;font-weight:500;line-height:1;vertical-align:.125em}&[data-ping=true]{--translate:50%;&:before{animation:pinger 1s linear infinite;background-color:inherit;border-radius:999px;content:"";inset:0;position:absolute;z-index:-1}}&:not([data-ping=true]){--translate:0.75rem;min-width:1em}&[data-placement=top]{left:50%;top:0;transform:translate(-50%,-50%)}&[data-placement=top-start]{inset-inline-start:0;top:0;:global([dir=ltr]) &{transform:translate(calc(var(--translate)*-1),-50%)}:global([dir=rtl]) &{transform:translate(calc(var(--translate)*1),-50%)}}&[data-placement=top-end]{inset-inline-end:0;top:0;:global([dir=ltr]) &{transform:translate(calc(var(--translate)*1),-50%)}:global([dir=rtl]) &{transform:translate(calc(var(--translate)*-1),-50%)}}&[data-placement=bottom]{bottom:0;left:50%;transform:translate(-50%,50%)}&[data-placement=bottom-start]{bottom:0;inset-inline-start:0;:global([dir=ltr]) &{transform:translate(calc(var(--translate)*-1),-50%)}:global([dir=rtl]) &{transform:translate(calc(var(--translate)*1),-50%)}}&[data-placement=bottom-end]{bottom:0;inset-inline-end:0;:global([dir=ltr]) &{transform:translate(calc(var(--translate)*1),-50%)}:global([dir=rtl]) &{transform:translate(calc(var(--translate)*-1),-50%)}}&[data-placement=start]{inset-inline-start:0;top:50%;:global([dir=ltr]) &{transform:translate(-50%,-50%)}:global([dir=rtl]) &{transform:translate(50%,-50%)}}&[data-placement=end]{inset-inline-end:0;top:50%;:global([dir=ltr]) &{transform:translate(50%,-50%)}:global([dir=rtl]) &{transform:translate(-50%,-50%)}}}}'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={badge:"PzFE0Mkd567NPdLmK2qS",pinger:"elVi1kloLEQOkNlUHl4Y"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/dist/esm/components/breadcrumbs/Breadcrumbs.module.css":(module,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'@layer comp{.tDoNvYGJ3cmKqX6mw24M,.o4UUrSqidV0EINAxA_py{--color:var(--primary);}.tDoNvYGJ3cmKqX6mw24M[data-color=accent],.o4UUrSqidV0EINAxA_py[data-color=accent]{--color:var(--accent)}.tDoNvYGJ3cmKqX6mw24M[data-color=info],.o4UUrSqidV0EINAxA_py[data-color=info]{--color:#00bfff}.tDoNvYGJ3cmKqX6mw24M[data-color=danger],.o4UUrSqidV0EINAxA_py[data-color=danger]{--color:#f24c3d}.tDoNvYGJ3cmKqX6mw24M[data-color=success],.o4UUrSqidV0EINAxA_py[data-color=success]{--color:#44bc69}.tDoNvYGJ3cmKqX6mw24M[data-color=warning],.o4UUrSqidV0EINAxA_py[data-color=warning]{--color:#edaa00}.tDoNvYGJ3cmKqX6mw24M .link,.o4UUrSqidV0EINAxA_py .link{padding:.25em .5em;text-decoration:none}:is(.tDoNvYGJ3cmKqX6mw24M,.o4UUrSqidV0EINAxA_py[data-variant=classic]) .link{color:color-mix(in lab,var(--color) 90%,var(--fabric-text))}:is(.tDoNvYGJ3cmKqX6mw24M,.o4UUrSqidV0EINAxA_py[data-variant=classic]) .link:hover{background-color:color-mix(in lab, color(from var(--tint) srgb r g b / 50%) 10%, color(from var(--fabric-bg) srgb r g b / 50%));color:color-mix(in lab,var(--color) 99%,var(--fabric-text));text-decoration:underline}:is(.tDoNvYGJ3cmKqX6mw24M,.o4UUrSqidV0EINAxA_py[data-variant=classic]) .link:active{background-color:color-mix(in lab, color(from var(--tint) srgb r g b / 1) 10%, color(from var(--fabric-bg) srgb r g b / 1));color:color-mix(in lab,var(--color) 85%,var(--fabric-text))}.o4UUrSqidV0EINAxA_py[data-variant=classic]>.eLGpwH0txvZaEzks37ih{list-style:none;}.o4UUrSqidV0EINAxA_py[data-variant=classic]>.eLGpwH0txvZaEzks37ih:after{color:color-mix(in lab, color(from var(--tint) srgb r g b / 1) 62%, color(from var(--fabric-bg) srgb r g b / 1));content:attr(data-separator);display:inline-block;margin-inline:.125em}.o4UUrSqidV0EINAxA_py[data-variant=classic]>.eLGpwH0txvZaEzks37ih:last-child:after{content:unset}[data-ref=viewport] .o4UUrSqidV0EINAxA_py{grid-area:crumbbar;padding:0 .25rem}}@layer var{.o4UUrSqidV0EINAxA_py[data-variant=classic]>.link{max-width:24rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.o4UUrSqidV0EINAxA_py[data-variant=classic]>.eLGpwH0txvZaEzks37ih:last-child>.link{color:color-mix(in lab, color(from var(--tint) srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));pointer-events:none}.o4UUrSqidV0EINAxA_py[data-variant=modern]>.eLGpwH0txvZaEzks37ih{--linkcolor:color-mix(in lab,var(--color) 50%,var(--fabric-bg));border-radius:var(--rounding);list-style:none;position:relative;}.o4UUrSqidV0EINAxA_py[data-variant=modern]>.eLGpwH0txvZaEzks37ih:last-child{--color:color(from var(--tint) srgb r g b / 1);pointer-events:none}.o4UUrSqidV0EINAxA_py[data-variant=modern]>.eLGpwH0txvZaEzks37ih:first-child>.link{border-end-start-radius:var(--rounding);border-start-start-radius:var(--rounding)}.o4UUrSqidV0EINAxA_py[data-variant=modern]>.eLGpwH0txvZaEzks37ih:last-child>.link{border-end-end-radius:var(--rounding);border-start-end-radius:var(--rounding)}.o4UUrSqidV0EINAxA_py[data-variant=modern]>.eLGpwH0txvZaEzks37ih:not(:first-child){margin-inline-start:-1em;}.o4UUrSqidV0EINAxA_py[data-variant=modern]>.eLGpwH0txvZaEzks37ih:not(:first-child):before{border:.625em solid transparent;border-block-color:var(--linkcolor);border-inline-end-color:var(--linkcolor);content:"";display:inline-block;vertical-align:middle}.o4UUrSqidV0EINAxA_py[data-variant=modern]>.eLGpwH0txvZaEzks37ih:not(:first-child)>.link{margin-inline-start:-.625em}.o4UUrSqidV0EINAxA_py[data-variant=modern]>.eLGpwH0txvZaEzks37ih:not(:last-child):after{border:.625em solid transparent;border-inline-start-color:var(--linkcolor);content:"";display:inline-block;vertical-align:middle}.o4UUrSqidV0EINAxA_py[data-variant=modern]>.eLGpwH0txvZaEzks37ih>.link{background-color:var(--linkcolor);color:color-mix(in lab,var(--color) 50%,var(--fabric-text));display:inline-block;line-height:1;padding:.125em .5em;vertical-align:middle}.o4UUrSqidV0EINAxA_py[data-variant=modern]>.eLGpwH0txvZaEzks37ih:hover{--linkcolor:color-mix(in lab,var(--color) 65%,var(--fabric-bg))}.o4UUrSqidV0EINAxA_py[data-variant=modern]>.eLGpwH0txvZaEzks37ih:active{--linkcolor:color-mix(in lab,var(--color) 35%,var(--fabric-bg))}}',"",{version:3,sources:["webpack://./packages/core/dist/esm/components/breadcrumbs/Breadcrumbs.module.css"],names:[],mappings:"AAAA,YAAY,4CAAiC,sBAAqC,CAA4V,CAA3V,kFAAqB,qBAAoC,CAAC,8EAAmB,eAAkC,CAAC,kFAAqB,eAAoC,CAAC,oFAAsB,eAAqC,CAAC,oFAAsB,eAAqC,CAAC,wDAAiB,kBAAkB,CAAC,oBAAoB,CAAyD,6EAAiB,2DAA2D,CAAC,mFAAuB,gIAA0C,CAAC,2DAA2D,CAAC,yBAAyB,CAAC,oFAAwB,4HAAsC,CAAC,2DAA2D,CAAqC,kEAAkB,eAAe,CAA8I,CAA7I,wEAAQ,iHAA4B,CAAC,4BAA4B,CAAC,oBAAoB,CAAC,oBAAoB,CAAC,mFAAmB,aAAa,CAAG,0CAAiC,kBAAkB,CAAC,gBAAgB,CAAC,CAAC,WAA8C,kDAAiB,eAAe,CAAC,eAAe,CAAC,sBAAsB,CAAC,kBAAkB,CAAC,mFAA4C,mHAA4B,CAAC,mBAAmB,CAAoC,iEAAkB,+DAA+D,CAAC,6BAA6B,CAAC,eAAe,CAAC,iBAAiB,CAA2gC,CAA1gC,4EAAa,8CAA8B,CAAC,mBAAmB,CAAC,mFAA6B,uCAAuC,CAAC,yCAAyC,CAAC,kFAA4B,qCAAqC,CAAC,uCAAuC,CAAC,mFAAoB,wBAAwB,CAA0N,CAAzN,0FAAS,+BAA+B,CAAC,mCAAmC,CAAC,wCAAwC,CAAC,UAAU,CAAC,oBAAoB,CAAC,qBAAqB,CAAC,yFAAiB,2BAA2B,CAAqB,wFAAQ,+BAA+B,CAAC,0CAA0C,CAAC,UAAU,CAAC,oBAAoB,CAAC,qBAAqB,CAAE,uEAAiB,iCAAiC,CAAC,2DAA2D,CAAC,oBAAoB,CAAC,aAAa,CAAC,mBAAmB,CAAC,qBAAqB,CAAC,uEAAQ,+DAA+D,CAAC,wEAAS,+DAA+D,CAAG",sourcesContent:['@layer comp{.breadcrumbOverflow,.breadcrumbs{--color:theme(colors.primary.DEFAULT);&[data-color=accent]{--color:theme(colors.accent.DEFAULT)}&[data-color=info]{--color:theme(colors.info.DEFAULT)}&[data-color=danger]{--color:theme(colors.danger.DEFAULT)}&[data-color=success]{--color:theme(colors.success.DEFAULT)}&[data-color=warning]{--color:theme(colors.warning.DEFAULT)}& :global(.link){padding:.25em .5em;text-decoration:none}}.breadcrumbOverflow,.breadcrumbs[data-variant=classic]{& :global(.link){color:color-mix(in lab,var(--color) 90%,var(--fabric-text))}& :global(.link):hover{background-color:theme(colors.tint.50/50%);color:color-mix(in lab,var(--color) 99%,var(--fabric-text));text-decoration:underline}& :global(.link):active{background-color:theme(colors.tint.50);color:color-mix(in lab,var(--color) 85%,var(--fabric-text))}}.breadcrumbs[data-variant=classic]{&>.breadcrumbLink{list-style:none;&:after{color:theme(colors.tint.300);content:attr(data-separator);display:inline-block;margin-inline:.125em}&:last-child:after{content:unset}}}[data-ref=viewport] .breadcrumbs{grid-area:crumbbar;padding:0 .25rem}}@layer var{.breadcrumbs[data-variant=classic]{&>:global(.link){max-width:24rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}&>.breadcrumbLink:last-child>:global(.link){color:theme(colors.tint.600);pointer-events:none}}.breadcrumbs[data-variant=modern]{&>.breadcrumbLink{--linkcolor:color-mix(in lab,var(--color) 50%,var(--fabric-bg));border-radius:var(--rounding);list-style:none;position:relative;&:last-child{--color:theme(colors.tint.500);pointer-events:none}&:first-child>:global(.link){border-end-start-radius:var(--rounding);border-start-start-radius:var(--rounding)}&:last-child>:global(.link){border-end-end-radius:var(--rounding);border-start-end-radius:var(--rounding)}&:not(:first-child){margin-inline-start:-1em;&:before{border:.625em solid transparent;border-block-color:var(--linkcolor);border-inline-end-color:var(--linkcolor);content:"";display:inline-block;vertical-align:middle}&>:global(.link){margin-inline-start:-.625em}}&:not(:last-child){&:after{border:.625em solid transparent;border-inline-start-color:var(--linkcolor);content:"";display:inline-block;vertical-align:middle}}&>:global(.link){background-color:var(--linkcolor);color:color-mix(in lab,var(--color) 50%,var(--fabric-text));display:inline-block;line-height:1;padding:.125em .5em;vertical-align:middle}&:hover{--linkcolor:color-mix(in lab,var(--color) 65%,var(--fabric-bg))}&:active{--linkcolor:color-mix(in lab,var(--color) 35%,var(--fabric-bg))}}}}'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={breadcrumbOverflow:"tDoNvYGJ3cmKqX6mw24M",breadcrumbs:"o4UUrSqidV0EINAxA_py",breadcrumbLink:"eLGpwH0txvZaEzks37ih"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/dist/esm/components/button/Button.module.css":(module,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'@layer comp{.XwuF9Qfj8UeuTsrxBv2B{--color:color(from var(--primary) srgb r g b / 1);border-radius:var(--rounding);font-size:1rem;}.XwuF9Qfj8UeuTsrxBv2B .JLwDrna80r4psLHalqWX{background-color:var(--bg);background-image:var(--click-gradient);border-radius:inherit;color:var(--text);outline:1px solid var(--outline);}.XwuF9Qfj8UeuTsrxBv2B .JLwDrna80r4psLHalqWX.QCMLVIZ5QVKt7q9Abp94:hover .ipUW1VKHsk57hVpiDLD3{animation:spin 2s linear infinite}.XwuF9Qfj8UeuTsrxBv2B .JLwDrna80r4psLHalqWX>*{pointer-events:none}.XwuF9Qfj8UeuTsrxBv2B .JLwDrna80r4psLHalqWX:not(:disabled) input[type=file]{pointer-events:auto;}.XwuF9Qfj8UeuTsrxBv2B .JLwDrna80r4psLHalqWX:not(:disabled) input[type=file]::-webkit-file-upload-button{cursor:pointer;inset:0;position:absolute}.XwuF9Qfj8UeuTsrxBv2B .Po_sil13yERnPSQoRDY6{border-radius:9999px}.XwuF9Qfj8UeuTsrxBv2B .saTIU1vdon1Truv3izNz{line-height:1;order:1;padding:.5em 1em;}:is(.XwuF9Qfj8UeuTsrxBv2B .saTIU1vdon1Truv3izNz)+.HT1FcYCT8M2dLFCEeSzm{margin-inline-start:-1em}.XwuF9Qfj8UeuTsrxBv2B .__UaQz1_f7YzgjmlIDO0{line-height:1;order:1;padding:.5em}.XwuF9Qfj8UeuTsrxBv2B .ipUW1VKHsk57hVpiDLD3{font-size:1.125em;padding:.3889em}.XwuF9Qfj8UeuTsrxBv2B .hotkey-label{align-self:center;order:3}.XwuF9Qfj8UeuTsrxBv2B .HT1FcYCT8M2dLFCEeSzm{align-self:center;order:4;padding:.125em .5em}.XwuF9Qfj8UeuTsrxBv2B [data-ref=badge]{align-self:center;margin-inline-end:.5em;order:2}.fIYnrZxjHh4_kD4iM1eh>.XwuF9Qfj8UeuTsrxBv2B{flex:0 1 1em}.fIYnrZxjHh4_kD4iM1eh:not(.gdHig8CC9ckVGIDQBKsK)+.fIYnrZxjHh4_kD4iM1eh:not(.gdHig8CC9ckVGIDQBKsK){margin-inline-start:.5rem}}@layer util{.XwuF9Qfj8UeuTsrxBv2B[data-size=xs]{font-size:.625rem}.XwuF9Qfj8UeuTsrxBv2B[data-size=sm]{font-size:.875rem}.XwuF9Qfj8UeuTsrxBv2B[data-size=md]{font-size:1.125rem}.XwuF9Qfj8UeuTsrxBv2B[data-size=lg]{font-size:1.25rem}.XwuF9Qfj8UeuTsrxBv2B[data-size=xl]{font-size:1.5rem}.JLwDrna80r4psLHalqWX{--bg:color-mix(in lab,var(--fabric-bg) 99%,var(--tint));--outline:color-mix(in lab,var(--bg) 90%,var(--fabric-text));--text:color-mix(in lab,var(--color) 80%,var(--fabric-text));--bg-hover:color-mix(in lab,var(--color) 18%,var(--fabric-bg));--bg-click:color-mix(in lab,var(--color) 25%,var(--fabric-bg));--bg-active:color-mix(in lab,var(--color) 36%,var(--fabric-bg));}.JLwDrna80r4psLHalqWX[data-color=accent]{--color:color(from var(--accent) srgb r g b / 1)}.JLwDrna80r4psLHalqWX[data-color=info]{--color:color(from #00bfff srgb r g b / 1)}.JLwDrna80r4psLHalqWX[data-color=danger]{--color:color(from #f24c3d srgb r g b / 1)}.JLwDrna80r4psLHalqWX[data-color=success]{--color:color(from #44bc69 srgb r g b / 1)}.JLwDrna80r4psLHalqWX[data-color=warning]{--color:color(from #edaa00 srgb r g b / 1)}.JLwDrna80r4psLHalqWX[data-variant=outline]{--outline:var(--color)}.JLwDrna80r4psLHalqWX[data-variant=solid]{--outline:var(--color);--bg:color-mix(in lab,var(--color) 96%,var(--fabric-text));--text:#fefdfc;--bg-hover:color-mix(in lab,var(--color) 90%,var(--fabric-bg));--bg-click:color-mix(in lab,var(--color) 80%,#191a1b);--bg-active:color-mix(in lab,var(--color) 70%,#191a1b);}.JLwDrna80r4psLHalqWX[data-variant=solid] .hotkey-label{background-color:color-mix(in lab, color(from var(--black) srgb r g b / 30%) 90%, color(from var(--tint) srgb r g b / 30%));color:rgb(254 253 252 / 70%)}.JLwDrna80r4psLHalqWX[data-variant=link]{--bg:transparent;--outline:transparent;background-image:none;box-shadow:none}.JLwDrna80r4psLHalqWX[data-color=invert]{--bg:color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 5%, color(from var(--fabric-text) srgb r g b / 1));--text:color-mix(in lab,var(--color) 90%,color-mix(in lab, color(from var(--fabric-text) srgb r g b / 1) 5%, color(from var(--fabric-bg) srgb r g b / 1)));--bg-hover:color-mix(in lab,var(--color) 15%,color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 5%, color(from var(--fabric-text) srgb r g b / 1)));--bg-click:color-mix(in lab,var(--color) 35%,color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 5%, color(from var(--fabric-text) srgb r g b / 1)))}.ipUW1VKHsk57hVpiDLD3[data-align=start]{order:0;}.ipUW1VKHsk57hVpiDLD3[data-align=start]+.saTIU1vdon1Truv3izNz[data-colored-icon=false]{margin-inline-start:-1em}.ipUW1VKHsk57hVpiDLD3[data-align=end]{order:2;}.ipUW1VKHsk57hVpiDLD3[data-align=end]~.saTIU1vdon1Truv3izNz[data-colored-icon=false]{margin-inline-end:-1em}}@layer var{.XwuF9Qfj8UeuTsrxBv2B{height:unset;padding:unset;}.XwuF9Qfj8UeuTsrxBv2B[data-disabled=true]{cursor:not-allowed;}.XwuF9Qfj8UeuTsrxBv2B[data-disabled=true] .JLwDrna80r4psLHalqWX{background-image:var(--active-gradient);opacity:.5;pointer-events:none}.XwuF9Qfj8UeuTsrxBv2B[data-loading=true]{cursor:wait;}.XwuF9Qfj8UeuTsrxBv2B[data-loading=true] .JLwDrna80r4psLHalqWX{background-image:var(--progress-gradient);background-size:1em 1em;pointer-events:none;}.XwuF9Qfj8UeuTsrxBv2B[data-loading=true] .JLwDrna80r4psLHalqWX{animation:bgprogress .75s linear infinite}.XwuF9Qfj8UeuTsrxBv2B[data-loading=true] .JLwDrna80r4psLHalqWX:not([data-variant=solid]){background-color:color-mix(in lab,var(--color) 15%,var(--fabric-bg))}.XwuF9Qfj8UeuTsrxBv2B.btn-dashed>.JLwDrna80r4psLHalqWX{color:color-mix(in lab, color(from var(--tint) srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));outline:1px dashed color-mix(in lab, color(from var(--tint) srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));}.XwuF9Qfj8UeuTsrxBv2B.btn-dashed>.JLwDrna80r4psLHalqWX[data-invalid=true]{background-color:color-mix(in lab, color(from #f24c3d srgb r g b / 1) 27%, color(from var(--fabric-bg) srgb r g b / 1));color:color-mix(in lab, color(from #f24c3d srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));outline:1px dashed color-mix(in lab, color(from #f24c3d srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1))}.JLwDrna80r4psLHalqWX{--tw-ring-color:var(--color);}.JLwDrna80r4psLHalqWX:hover{background-color:var(--bg-hover)}.JLwDrna80r4psLHalqWX:active{background-color:var(--bg-click);background-image:var(--active-gradient);}.JLwDrna80r4psLHalqWX:active .ipUW1VKHsk57hVpiDLD3,.JLwDrna80r4psLHalqWX:active .saTIU1vdon1Truv3izNz{transform:translateY(1px)}.JLwDrna80r4psLHalqWX[data-active=true],.JLwDrna80r4psLHalqWX[data-checked=true],.JLwDrna80r4psLHalqWX[data-dropdown-open=true]{background-color:var(--bg-active);background-image:none}.JLwDrna80r4psLHalqWX[data-active=true],.JLwDrna80r4psLHalqWX[data-dropdown-open=true]{pointer-events:none}.fIYnrZxjHh4_kD4iM1eh>.XwuF9Qfj8UeuTsrxBv2B{margin:0;}.fIYnrZxjHh4_kD4iM1eh>.XwuF9Qfj8UeuTsrxBv2B .JLwDrna80r4psLHalqWX[data-variant=link]{--outline:color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 99%, color(from var(--tint) srgb r g b / 1))}.fIYnrZxjHh4_kD4iM1eh:not(.bnAv_3zgHh899KvVXqb_)>:not(:first-child):before{border-inline-start:.5px solid color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 65%, color(from var(--tint) srgb r g b / 1));content:"";inset-block:5%;inset-inline-start:-.5px;position:absolute}.fIYnrZxjHh4_kD4iM1eh.SlhzTX5VMiXDKR8exvE_:not(.bnAv_3zgHh899KvVXqb_)>:not(:first-child){margin-inline-start:2px;}.fIYnrZxjHh4_kD4iM1eh.SlhzTX5VMiXDKR8exvE_:not(.bnAv_3zgHh899KvVXqb_)>:not(:first-child):before{inset-inline-start:-1.5px}.fIYnrZxjHh4_kD4iM1eh:not(.bnAv_3zgHh899KvVXqb_)>:not(:last-child) .JLwDrna80r4psLHalqWX{border-end-end-radius:0;border-start-end-radius:0}.fIYnrZxjHh4_kD4iM1eh:not(.bnAv_3zgHh899KvVXqb_)>:not(:first-child) .JLwDrna80r4psLHalqWX{border-end-start-radius:0;border-start-start-radius:0}.fIYnrZxjHh4_kD4iM1eh.bnAv_3zgHh899KvVXqb_>:not(:first-child):before{border-block-start:.5px solid color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 65%, color(from var(--tint) srgb r g b / 1));content:"";inset-block-start:-.5px;inset-inline:5%;position:absolute}.fIYnrZxjHh4_kD4iM1eh.bnAv_3zgHh899KvVXqb_.SlhzTX5VMiXDKR8exvE_>:not(:first-child){margin-block-start:1px;}.fIYnrZxjHh4_kD4iM1eh.bnAv_3zgHh899KvVXqb_.SlhzTX5VMiXDKR8exvE_>:not(:first-child):before{inset-block-start:-1px}.fIYnrZxjHh4_kD4iM1eh.bnAv_3zgHh899KvVXqb_>:not(:last-child) .JLwDrna80r4psLHalqWX{border-end-end-radius:0;border-end-start-radius:0}.fIYnrZxjHh4_kD4iM1eh.bnAv_3zgHh899KvVXqb_>:not(:first-child) .JLwDrna80r4psLHalqWX{border-start-end-radius:0;border-start-start-radius:0}}',"",{version:3,sources:["webpack://./packages/core/dist/esm/components/button/Button.module.css"],names:[],mappings:"AAAA,YAAY,sBAAe,iDAAiC,CAAC,6BAA6B,CAAC,cAAc,CAAuwB,CAAtwB,4CAAU,0BAA0B,CAAC,sCAAsC,CAAC,qBAAqB,CAAC,iBAAiB,CAAC,gCAAgC,CAAoO,CAAnM,6FAAU,iCAAiC,CAAE,8CAAI,mBAAmB,CAAC,4EAAkC,mBAAmB,CAAwE,CAAvE,wGAA8B,cAAc,CAAC,OAAO,CAAC,iBAAiB,CAAG,4CAAW,oBAAoB,CAAC,4CAAe,aAAa,CAAC,OAAO,CAAC,gBAAgB,CAAqC,CAApC,uEAAW,wBAAwB,CAAE,4CAAe,aAAa,CAAC,OAAO,CAAC,YAAY,CAAC,4CAAc,iBAAiB,CAAC,eAAe,CAAC,oCAAyB,iBAAiB,CAAC,OAAO,CAAC,4CAAW,iBAAiB,CAAC,OAAO,CAAC,mBAAmB,CAAC,uCAAmB,iBAAiB,CAAC,sBAAsB,CAAC,OAAO,CAAe,4CAAiB,YAAY,CAAC,kGAA0B,yBAAyB,CAAE,CAAC,YAA2B,oCAAgB,iBAAiB,CAAC,oCAAgB,iBAAiB,CAAC,oCAAgB,kBAAkB,CAAC,oCAAgB,iBAAiB,CAAC,oCAAgB,gBAAgB,CAAE,sBAAQ,uDAAuD,CAAC,4DAA4D,CAAC,4DAA4D,CAAC,8DAA8D,CAAC,8DAA8D,CAAC,+DAA+D,CAAkmC,CAAjmC,yCAAqB,gDAAgC,CAAC,uCAAmB,0CAA8B,CAAC,yCAAqB,0CAAgC,CAAC,0CAAsB,0CAAiC,CAAC,0CAAsB,0CAAiC,CAAC,4CAAwB,sBAAsB,CAAC,0CAAsB,sBAAsB,CAAC,0DAA0D,CAAC,cAA0B,CAAC,8DAA8D,CAAC,qDAAiE,CAAC,sDAAkE,CAAyG,CAAxG,wDAAyB,4HAAgD,CAAC,4BAA6B,CAAE,yCAAqB,gBAAgB,CAAC,qBAAqB,CAAC,qBAAqB,CAAC,eAAe,CAAC,yCAAqB,sHAAkC,CAAC,2JAAiE,CAAC,+JAA2E,CAAC,+JAA2E,CAAE,wCAA8B,OAAO,CAAkE,CAAjE,uFAAwC,wBAAwB,CAAE,sCAA4B,OAAO,CAAgE,CAA/D,qFAAwC,sBAAsB,CAAE,CAAC,WAAW,sBAAe,YAAY,CAAC,aAAa,CAA4oB,CAA3oB,0CAAsB,kBAAkB,CAAkF,CAAjF,gEAAU,uCAAuC,CAAC,UAAU,CAAC,mBAAmB,CAAE,yCAAqB,WAAW,CAA+P,CAA9P,+DAAU,yCAAyC,CAAC,uBAAuB,CAAC,mBAAmB,CAAqD,CAApD,+DAAU,yCAAyC,CAAE,yFAAoC,oEAAoE,CAAE,uDAA8B,mHAA4B,CAAC,gIAAyC,CAA2I,CAA1I,0EAAqB,wHAAyC,CAAC,+GAA8B,CAAC,4HAA2C,CAAG,sBAAQ,4BAA4B,CAA+W,CAA9W,4BAAQ,gCAAgC,CAAC,6BAAS,gCAAgC,CAAC,uCAAuC,CAAoD,CAAnD,sGAAyB,yBAAyB,CAAE,gIAAoE,iCAAiC,CAAC,qBAAqB,CAAC,uFAA+C,mBAAmB,CAAe,4CAAiB,QAAQ,CAAoE,CAAnE,qFAA6B,qHAAqC,CAAwC,2EAAS,0IAAsD,CAAC,UAAU,CAAC,cAAc,CAAC,wBAAwB,CAAC,iBAAiB,CAAE,yFAA+B,uBAAuB,CAAoC,CAAnC,gGAAS,yBAAyB,CAAE,yFAA4B,uBAAuB,CAAC,yBAAyB,CAAC,0FAA6B,yBAAyB,CAAC,2BAA2B,CAAkC,qEAAS,yIAAqD,CAAC,UAAU,CAAC,uBAAuB,CAAC,eAAe,CAAC,iBAAiB,CAAE,mFAA+B,sBAAsB,CAAiC,CAAhC,0FAAS,sBAAsB,CAAE,mFAA4B,uBAAuB,CAAC,yBAAyB,CAAC,oFAA6B,yBAAyB,CAAC,2BAA2B,CAAG",sourcesContent:['@layer comp{.buttonWrapper{--color:theme(colors.primary.500);border-radius:var(--rounding);font-size:1rem;& .button{background-color:var(--bg);background-image:var(--click-gradient);border-radius:inherit;color:var(--text);outline:1px solid var(--outline);&.spinOnHover:hover .buttonIcon{& :global{animation:spin 2s linear infinite}}&>*{pointer-events:none}&:not(:disabled) input[type=file]{pointer-events:auto;&::-webkit-file-upload-button{cursor:pointer;inset:0;position:absolute}}}& .rounded{border-radius:9999px}& .buttonLabel{line-height:1;order:1;padding:.5em 1em;&+.altIcon{margin-inline-start:-1em}}& .buttonChild{line-height:1;order:1;padding:.5em}& .buttonIcon{font-size:1.125em;padding:.3889em}& :global(.hotkey-label){align-self:center;order:3}& .altIcon{align-self:center;order:4;padding:.125em .5em}& [data-ref=badge]{align-self:center;margin-inline-end:.5em;order:2}}.buttonGroup{&>.buttonWrapper{flex:0 1 1em}&:not(.flex)+&:not(.flex){margin-inline-start:.5rem}}}@layer util{.buttonWrapper{&[data-size=xs]{font-size:.625rem}&[data-size=sm]{font-size:.875rem}&[data-size=md]{font-size:1.125rem}&[data-size=lg]{font-size:1.25rem}&[data-size=xl]{font-size:1.5rem}}.button{--bg:color-mix(in lab,var(--fabric-bg) 99%,var(--tint));--outline:color-mix(in lab,var(--bg) 90%,var(--fabric-text));--text:color-mix(in lab,var(--color) 80%,var(--fabric-text));--bg-hover:color-mix(in lab,var(--color) 18%,var(--fabric-bg));--bg-click:color-mix(in lab,var(--color) 25%,var(--fabric-bg));--bg-active:color-mix(in lab,var(--color) 36%,var(--fabric-bg));&[data-color=accent]{--color:theme(colors.accent.500)}&[data-color=info]{--color:theme(colors.info.500)}&[data-color=danger]{--color:theme(colors.danger.500)}&[data-color=success]{--color:theme(colors.success.500)}&[data-color=warning]{--color:theme(colors.warning.500)}&[data-variant=outline]{--outline:var(--color)}&[data-variant=solid]{--outline:var(--color);--bg:color-mix(in lab,var(--color) 96%,var(--fabric-text));--text:theme(colors.white);--bg-hover:color-mix(in lab,var(--color) 90%,var(--fabric-bg));--bg-click:color-mix(in lab,var(--color) 80%,theme(colors.black));--bg-active:color-mix(in lab,var(--color) 70%,theme(colors.black));& :global(.hotkey-label){background-color:theme(backgroundColor.dark/30%);color:theme(colors.white/70%)}}&[data-variant=link]{--bg:transparent;--outline:transparent;background-image:none;box-shadow:none}&[data-color=invert]{--bg:theme(backgroundColor.invert);--text:color-mix(in lab,var(--color) 90%,theme(textColor.invert));--bg-hover:color-mix(in lab,var(--color) 15%,theme(backgroundColor.invert));--bg-click:color-mix(in lab,var(--color) 35%,theme(backgroundColor.invert))}}.buttonIcon[data-align=start]{order:0;&+.buttonLabel[data-colored-icon=false]{margin-inline-start:-1em}}.buttonIcon[data-align=end]{order:2;&~.buttonLabel[data-colored-icon=false]{margin-inline-end:-1em}}}@layer var{.buttonWrapper{height:unset;padding:unset;&[data-disabled=true]{cursor:not-allowed;& .button{background-image:var(--active-gradient);opacity:.5;pointer-events:none}}&[data-loading=true]{cursor:wait;& .button{background-image:var(--progress-gradient);background-size:1em 1em;pointer-events:none;& :global{animation:bgprogress .75s linear infinite}}& .button:not([data-variant=solid]){background-color:color-mix(in lab,var(--color) 15%,var(--fabric-bg))}}&:global(.btn-dashed)>.button{color:theme(colors.tint.600);outline:1px dashed theme(colors.tint.600);&[data-invalid=true]{background-color:theme(colors.danger.100);color:theme(colors.danger.600);outline:1px dashed theme(colors.danger.600)}}}.button{--tw-ring-color:var(--color);&:hover{background-color:var(--bg-hover)}&:active{background-color:var(--bg-click);background-image:var(--active-gradient);.buttonIcon,.buttonLabel{transform:translateY(1px)}}&[data-active=true],&[data-checked=true],&[data-dropdown-open=true]{background-color:var(--bg-active);background-image:none}&[data-active=true],&[data-dropdown-open=true]{pointer-events:none}}.buttonGroup{&>.buttonWrapper{margin:0;& .button[data-variant=link]{--outline:theme(backgroundColor.base)}}&:not(.vertical){&>:not(:first-child){&:before{border-inline-start:.5px solid theme(borderColor.base);content:"";inset-block:5%;inset-inline-start:-.5px;position:absolute}}&.separator>:not(:first-child){margin-inline-start:2px;&:before{inset-inline-start:-1.5px}}&>:not(:last-child) .button{border-end-end-radius:0;border-start-end-radius:0}&>:not(:first-child) .button{border-end-start-radius:0;border-start-start-radius:0}}&.vertical{&>:not(:first-child){&:before{border-block-start:.5px solid theme(borderColor.base);content:"";inset-block-start:-.5px;inset-inline:5%;position:absolute}}&.separator>:not(:first-child){margin-block-start:1px;&:before{inset-block-start:-1px}}&>:not(:last-child) .button{border-end-end-radius:0;border-end-start-radius:0}&>:not(:first-child) .button{border-start-end-radius:0;border-start-start-radius:0}}}}'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={buttonWrapper:"XwuF9Qfj8UeuTsrxBv2B",button:"JLwDrna80r4psLHalqWX",spinOnHover:"QCMLVIZ5QVKt7q9Abp94",buttonIcon:"ipUW1VKHsk57hVpiDLD3",rounded:"Po_sil13yERnPSQoRDY6",buttonLabel:"saTIU1vdon1Truv3izNz",altIcon:"HT1FcYCT8M2dLFCEeSzm",buttonChild:"__UaQz1_f7YzgjmlIDO0",buttonGroup:"fIYnrZxjHh4_kD4iM1eh",flex:"gdHig8CC9ckVGIDQBKsK",vertical:"bnAv_3zgHh899KvVXqb_",separator:"SlhzTX5VMiXDKR8exvE_"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/dist/esm/components/card/Card.module.css":(module,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'@layer comp{.nFVCHlxLFKw05awVzOEG.iyakctdRmmdIHNd1Kpwg:before{border-bottom:1rem solid transparent;border-inline-end:1rem solid transparent;border-inline-start:1rem solid color(from var(--accent) srgb r g b / 1);border-start-start-radius:var(--rounding-cap);border-top:1rem solid color(from var(--accent) srgb r g b / 1);content:""}.nFVCHlxLFKw05awVzOEG.iyakctdRmmdIHNd1Kpwg:after,.nFVCHlxLFKw05awVzOEG.iyakctdRmmdIHNd1Kpwg:before{inset-inline-start:-4px;position:absolute;top:-4px;z-index:5}.nFVCHlxLFKw05awVzOEG.iyakctdRmmdIHNd1Kpwg:after{color:#fefdfc;content:"✓";line-height:1;padding:4px}.KVdoOx6HrY3bZIj9t4fN{background-color:var(--fabric-bg);box-shadow:0 0 0 1px color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 80%, color(from var(--tint) srgb r g b / 1));}.KVdoOx6HrY3bZIj9t4fN>*{background-color:transparent}.KVdoOx6HrY3bZIj9t4fN .U_feBJ6cGhQGZSI1STCd.fljgtdx4LrAeacHDg0fh>.XBePIvLrVd303fopS9ry,.KVdoOx6HrY3bZIj9t4fN .U_feBJ6cGhQGZSI1STCd.V1kXLnTfdIqlvk65ONd3:has([data-colorset=dark])>.XBePIvLrVd303fopS9ry{background-image:linear-gradient(180deg,#0000 0,#0006);color:var(--white);text-shadow:0 0 2px var(--black)}.KVdoOx6HrY3bZIj9t4fN .U_feBJ6cGhQGZSI1STCd.V1kXLnTfdIqlvk65ONd3:has([data-colorset=light])>.XBePIvLrVd303fopS9ry,.KVdoOx6HrY3bZIj9t4fN .U_feBJ6cGhQGZSI1STCd.t2G09ok5qpi8WAVIowPG>.XBePIvLrVd303fopS9ry{background-image:linear-gradient(180deg,#fff0 0,#fff6);color:var(--black);text-shadow:0 0 2px var(--white)}.KVdoOx6HrY3bZIj9t4fN ._hiiTP8EHFCVXT65KsMH{padding:1rem}.KVdoOx6HrY3bZIj9t4fN.VKesvjbZp__NB1dmx2sr{box-shadow:0 0 0 1px color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 72%, color(from var(--tint) srgb r g b / 1)),0 1px 2px 0 var(--fabric-shadow);transition:box-shadow 0ms;}.KVdoOx6HrY3bZIj9t4fN.VKesvjbZp__NB1dmx2sr:has(._hiiTP8EHFCVXT65KsMH:hover):not(:has([data-inner-clickable=true]:hover)){box-shadow:0 0 0 1px color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 72%, color(from var(--tint) srgb r g b / 1)),0 1px 4px 0 var(--fabric-shadow),0 8px 16px 0 color-mix(in lab,var(--fabric-shadow) 35%,#0000);transition-delay:.15s}.KVdoOx6HrY3bZIj9t4fN.VKesvjbZp__NB1dmx2sr:has(._hiiTP8EHFCVXT65KsMH:active):not(:has([data-inner-clickable=true]:hover)){box-shadow:0 0 0 1px color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 72%, color(from var(--tint) srgb r g b / 1));transform:translateY(1px);transition-delay:0ms}.KVdoOx6HrY3bZIj9t4fN.VKesvjbZp__NB1dmx2sr ._hiiTP8EHFCVXT65KsMH{cursor:pointer;}.KVdoOx6HrY3bZIj9t4fN.VKesvjbZp__NB1dmx2sr ._hiiTP8EHFCVXT65KsMH:after{background-image:linear-gradient(175deg,hsla(0,0%,100%,.05),transparent 18%,transparent 72%,rgb(0 0 0/5%));content:"";inset:0;pointer-events:none;position:absolute;z-index:5}}@layer util{.KVdoOx6HrY3bZIj9t4fN ._hiiTP8EHFCVXT65KsMH>*{background-color:transparent;grid-area:unset}.KVdoOx6HrY3bZIj9t4fN .U_feBJ6cGhQGZSI1STCd>[data-ref=image],.KVdoOx6HrY3bZIj9t4fN .U_feBJ6cGhQGZSI1STCd>[data-ref=video]{inset:0;position:absolute;z-index:0}.KVdoOx6HrY3bZIj9t4fN .U_feBJ6cGhQGZSI1STCd .XBePIvLrVd303fopS9ry>*{flex:0 0 auto}}',"",{version:3,sources:["webpack://./packages/core/dist/esm/components/card/Card.module.css"],names:[],mappings:"AAAA,YAAkC,kDAAS,oCAAoC,CAAC,wCAAwC,CAAC,uEAAuD,CAAC,6CAA6C,CAAC,8DAA8C,CAAC,UAAU,CAAC,mGAAiB,uBAAuB,CAAC,iBAAiB,CAAC,QAAQ,CAAC,SAAS,CAAC,iDAAQ,aAAyB,CAAC,WAAW,CAAC,aAAa,CAAC,WAAW,CAAE,sBAAM,iCAAiC,CAAC,gIAA6C,CAA+pC,CAA9pC,wBAAI,4BAA4B,CAAc,wMAAqF,sDAAsD,CAAC,kBAAkB,CAAC,gCAAgC,CAAC,yMAAuF,sDAAsD,CAAC,kBAAkB,CAAC,gCAAgC,CAAE,4CAAY,YAAY,CAAC,2CAAY,iKAA+E,CAAC,yBAAyB,CAA8lB,CAA7lB,yHAAoE,+NAA6I,CAAC,qBAAqB,CAAC,0HAAqE,gIAA8C,CAAC,yBAAyB,CAAC,oBAAoB,CAAC,iEAAY,cAAc,CAAuL,CAAtL,uEAAQ,0GAA0G,CAAC,UAAU,CAAC,OAAO,CAAC,mBAAmB,CAAC,iBAAiB,CAAC,SAAS,CAAI,CAAC,YAA8B,8CAAI,4BAA4B,CAAC,eAAe,CAAe,0HAAsC,OAAO,CAAC,iBAAiB,CAAC,SAAS,CAAqB,oEAAI,aAAa,CAAI",sourcesContent:['@layer comp{.cardWrapper.selected{&:before{border-bottom:1rem solid transparent;border-inline-end:1rem solid transparent;border-inline-start:1rem solid theme(colors.accent.500);border-start-start-radius:var(--rounding-cap);border-top:1rem solid theme(colors.accent.500);content:""}&:after,&:before{inset-inline-start:-4px;position:absolute;top:-4px;z-index:5}&:after{color:theme(colors.white);content:"✓";line-height:1;padding:4px}}.card{background-color:var(--fabric-bg);box-shadow:0 0 0 1px theme(borderColor.muted);&>*{background-color:transparent}& .cardCover{&.dark>.cardCoverContent,&.inheritScheme:has([data-colorset=dark])>.cardCoverContent{background-image:linear-gradient(180deg,#0000 0,#0006);color:var(--white);text-shadow:0 0 2px var(--black)}&.inheritScheme:has([data-colorset=light])>.cardCoverContent,&.light>.cardCoverContent{background-image:linear-gradient(180deg,#fff0 0,#fff6);color:var(--black);text-shadow:0 0 2px var(--white)}}& .cardBody{padding:1rem}&.clickable{box-shadow:0 0 0 1px theme(borderColor.dimmed),0 1px 2px 0 var(--fabric-shadow);transition:box-shadow 0ms;&:has(.cardBody:hover):not(:has([data-inner-clickable=true]:hover)){box-shadow:0 0 0 1px theme(borderColor.dimmed),0 1px 4px 0 var(--fabric-shadow),0 8px 16px 0 color-mix(in lab,var(--fabric-shadow) 35%,#0000);transition-delay:.15s}&:has(.cardBody:active):not(:has([data-inner-clickable=true]:hover)){box-shadow:0 0 0 1px theme(borderColor.dimmed);transform:translateY(1px);transition-delay:0ms}& .cardBody{cursor:pointer;&:after{background-image:linear-gradient(175deg,hsla(0,0%,100%,.05),transparent 18%,transparent 72%,rgb(0 0 0/5%));content:"";inset:0;pointer-events:none;position:absolute;z-index:5}}}}}@layer util{.card{& .cardBody{&>*{background-color:transparent;grid-area:unset}}& .cardCover{&>[data-ref=image],&>[data-ref=video]{inset:0;position:absolute;z-index:0}& .cardCoverContent{&>*{flex:0 0 auto}}}}}'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={cardWrapper:"nFVCHlxLFKw05awVzOEG",selected:"iyakctdRmmdIHNd1Kpwg",card:"KVdoOx6HrY3bZIj9t4fN",cardCover:"U_feBJ6cGhQGZSI1STCd",dark:"fljgtdx4LrAeacHDg0fh",cardCoverContent:"XBePIvLrVd303fopS9ry",inheritScheme:"V1kXLnTfdIqlvk65ONd3",light:"t2G09ok5qpi8WAVIowPG",cardBody:"_hiiTP8EHFCVXT65KsMH",clickable:"VKesvjbZp__NB1dmx2sr"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/dist/esm/components/chip/Chip.module.css":(module,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,"@layer comp{.YeuegM5hxc8hnCActvH1{--blank-gradient:linear-gradient(180deg,#00000005 0%,#0000 10%);background-image:var(--blank-gradient);color:color(from var(--tint) srgb r g b / 1);outline:1px solid color-mix(in lab,currentcolor 20%,var(--fabric-bg));outline-offset:-1px;}.YeuegM5hxc8hnCActvH1>.TXgbdhBVcoaq1lWl2sT5{padding:0 .5em}:is(.YeuegM5hxc8hnCActvH1>.ltNm3skO4rvT2IDVpimd)+.TXgbdhBVcoaq1lWl2sT5{margin-inline-start:-.5em}.YeuegM5hxc8hnCActvH1.FXUC78bENMG8HCoi27jg{background-image:var(--click-gradient);cursor:pointer;}.YeuegM5hxc8hnCActvH1.FXUC78bENMG8HCoi27jg.tlzgSLwCEFGfognRcjX5{opacity:.5;pointer-events:none}}@layer var{.YeuegM5hxc8hnCActvH1{background-color:color-mix(in lab,currentcolor 10%,var(--fabric-bg));height:unset;padding:unset;}.YeuegM5hxc8hnCActvH1[data-variant=outline]{box-shadow:0 0 2px color-mix(in lab,currentcolor 50%,var(--tint)) inset;outline-color:color-mix(in lab,currentcolor 50%,var(--fabric-bg))}.YeuegM5hxc8hnCActvH1 >*{color:color-mix(in lab,currentcolor 50%,var(--fabric-text))}.YeuegM5hxc8hnCActvH1.FXUC78bENMG8HCoi27jg:hover{background-color:color-mix(in lab,currentcolor 20%,var(--fabric-bg))}.YeuegM5hxc8hnCActvH1.FXUC78bENMG8HCoi27jg:active,.YeuegM5hxc8hnCActvH1.FXUC78bENMG8HCoi27jg[data-dropdown-open=true]{background-color:color-mix(in lab,currentcolor 15%,var(--fabric-bg));background-image:var(--active-gradient)}.YeuegM5hxc8hnCActvH1.FXUC78bENMG8HCoi27jg[data-dropdown-open=true]{pointer-events:none}.YeuegM5hxc8hnCActvH1[data-variant=solid]{background-color:color-mix(in lab,currentcolor 35%,var(--fabric-bg));outline-color:color-mix(in lab,currentcolor 50%,var(--fabric-bg));}.YeuegM5hxc8hnCActvH1[data-variant=solid]>*{color:color-mix(in lab,currentcolor 5%,var(--fabric-text))}.YeuegM5hxc8hnCActvH1.FXUC78bENMG8HCoi27jg[data-variant=solid]:hover{background-color:color-mix(in lab,currentcolor 45%,var(--fabric-bg))}.YeuegM5hxc8hnCActvH1.FXUC78bENMG8HCoi27jg[data-variant=solid]:active,.YeuegM5hxc8hnCActvH1.FXUC78bENMG8HCoi27jg[data-variant=solid][data-dropdown-open=true]{background-color:color-mix(in lab,currentcolor 30%,var(--fabric-bg))}}","",{version:3,sources:["webpack://./packages/core/dist/esm/components/chip/Chip.module.css"],names:[],mappings:"AAAA,YAAY,sBAAM,+DAA+D,CAAC,sCAAsC,CAAC,4CAA4B,CAAC,qEAAqE,CAAC,mBAAmB,CAA8L,CAA7L,4CAAa,cAAc,CAAa,uEAAa,yBAAyB,CAAE,2CAAY,sCAAsC,CAAC,cAAc,CAA2C,CAA1C,gEAAW,UAAU,CAAC,mBAAmB,CAAG,CAAC,WAAW,sBAAM,oEAAoE,CAAC,YAAY,CAAC,aAAa,CAA45B,CAA35B,4CAAwB,uEAAuE,CAAC,iEAAiE,CAAC,yBAAG,2DAA2D,CAAa,iDAAQ,oEAAoE,CAAC,sHAAoC,oEAAoE,CAAC,uCAAuC,CAAC,oEAA2B,mBAAmB,CAAE,0CAAsB,oEAAoE,CAAC,iEAAiE,CAAmQ,CAAlQ,4CAAI,0DAA0D,CAAa,qEAAQ,oEAAoE,CAAC,8JAAoC,oEAAoE,CAAI",sourcesContent:["@layer comp{.chip{--blank-gradient:linear-gradient(180deg,#00000005 0%,#0000 10%);background-image:var(--blank-gradient);color:theme(colors.tint.500);outline:1px solid color-mix(in lab,currentcolor 20%,var(--fabric-bg));outline-offset:-1px;&>.chipLabel{padding:0 .5em}&>.chipIcon{&+.chipLabel{margin-inline-start:-.5em}}&.clickable{background-image:var(--click-gradient);cursor:pointer;&.disabled{opacity:.5;pointer-events:none}}}}@layer var{.chip{background-color:color-mix(in lab,currentcolor 10%,var(--fabric-bg));height:unset;padding:unset;&[data-variant=outline]{box-shadow:0 0 2px color-mix(in lab,currentcolor 50%,var(--tint)) inset;outline-color:color-mix(in lab,currentcolor 50%,var(--fabric-bg))}>*{color:color-mix(in lab,currentcolor 50%,var(--fabric-text))}&.clickable{&:hover{background-color:color-mix(in lab,currentcolor 20%,var(--fabric-bg))}&:active,&[data-dropdown-open=true]{background-color:color-mix(in lab,currentcolor 15%,var(--fabric-bg));background-image:var(--active-gradient)}&[data-dropdown-open=true]{pointer-events:none}}&[data-variant=solid]{background-color:color-mix(in lab,currentcolor 35%,var(--fabric-bg));outline-color:color-mix(in lab,currentcolor 50%,var(--fabric-bg));&>*{color:color-mix(in lab,currentcolor 5%,var(--fabric-text))}&.clickable{&:hover{background-color:color-mix(in lab,currentcolor 45%,var(--fabric-bg))}&:active,&[data-dropdown-open=true]{background-color:color-mix(in lab,currentcolor 30%,var(--fabric-bg))}}}}}"],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={chip:"YeuegM5hxc8hnCActvH1",chipLabel:"TXgbdhBVcoaq1lWl2sT5",chipIcon:"ltNm3skO4rvT2IDVpimd",clickable:"FXUC78bENMG8HCoi27jg",disabled:"tlzgSLwCEFGfognRcjX5"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/dist/esm/components/collapsable/Collapsable.module.css":(module,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,"@layer comp{.VUeFNais4PVqr4WAPNf9+.VUeFNais4PVqr4WAPNf9{border-top:1px solid color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 65%, color(from var(--tint) srgb r g b / 1))}}","",{version:3,sources:["webpack://./packages/core/dist/esm/components/collapsable/Collapsable.module.css"],names:[],mappings:"AAAA,YAAyB,4CAAI,gIAA4C,CAAE",sourcesContent:["@layer comp{.collapsable{&+&{border-top:1px solid theme(borderColor.base)}}}"],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={collapsable:"VUeFNais4PVqr4WAPNf9"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/dist/esm/components/divider/Divider.module.css":(module,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,"@layer comp{.ZoVsBvORjvrobywYN6JO{margin-inline:.25rem}.Lxy4dmg2bmS9pqLI6z3S{margin-block:.25rem}}","",{version:3,sources:["webpack://./packages/core/dist/esm/components/divider/Divider.module.css"],names:[],mappings:"AAAA,YAAY,sBAAU,oBAAoB,CAAC,sBAAY,mBAAmB,CAAC",sourcesContent:["@layer comp{.vertical{margin-inline:.25rem}.horizontal{margin-block:.25rem}}"],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={vertical:"ZoVsBvORjvrobywYN6JO",horizontal:"Lxy4dmg2bmS9pqLI6z3S"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/dist/esm/components/dropdown/Dropdown.module.css":(module,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,"@layer var{.lCNdoE9CM6eLCjcSoNa1{grid-template:1fr/1fr;}.lCNdoE9CM6eLCjcSoNa1 [data-ref=card],.lCNdoE9CM6eLCjcSoNa1 [data-ref=panelGroup],.lCNdoE9CM6eLCjcSoNa1 [data-ref=panel]{border-inline:0;border-top:0;box-shadow:none;grid-area:unset;outline:0}}","",{version:3,sources:["webpack://./packages/core/dist/esm/components/dropdown/Dropdown.module.css"],names:[],mappings:"AAAA,WAAW,sBAAc,qBAAqB,CAAqI,CAApI,yHAA6D,eAAe,CAAC,YAAY,CAAC,eAAe,CAAC,eAAe,CAAC,SAAS,CAAE",sourcesContent:["@layer var{.dropdownBody{grid-template:1fr/1fr;& [data-ref=card],& [data-ref=panelGroup],& [data-ref=panel]{border-inline:0;border-top:0;box-shadow:none;grid-area:unset;outline:0}}}"],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={dropdownBody:"lCNdoE9CM6eLCjcSoNa1"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/dist/esm/components/icon/Icon.module.css":(module,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,"@layer comp{.dSLau8LDK5X8mcM6ZjRQ{height:1em;position:relative;vertical-align:-.125em;width:1em;}.dSLau8LDK5X8mcM6ZjRQ>i,.dSLau8LDK5X8mcM6ZjRQ>img,.dSLau8LDK5X8mcM6ZjRQ>svg{border-radius:inherit;display:block;height:1em;line-height:1;-o-object-fit:cover;object-fit:cover;overflow:hidden;pointer-events:none;width:1em;fill:currentcolor}.dSLau8LDK5X8mcM6ZjRQ>i:before{line-height:1}.dSLau8LDK5X8mcM6ZjRQ[data-clickable=true]{opacity:.75;}.dSLau8LDK5X8mcM6ZjRQ[data-clickable=true]:hover{background-color:color(from var(--fabric-text) srgb r g b / 10%);opacity:.9}.dSLau8LDK5X8mcM6ZjRQ[data-clickable=true]:active{opacity:.5}[dir=rtl] .dSLau8LDK5X8mcM6ZjRQ[data-flip=true]{transform:scaleX(-1)}}","",{version:3,sources:["webpack://./packages/core/dist/esm/components/icon/Icon.module.css"],names:[],mappings:"AAAA,YAAY,sBAAM,UAAU,CAAC,iBAAiB,CAAC,sBAAsB,CAAC,SAAS,CAA2S,CAA1S,4EAAgB,qBAAqB,CAAC,aAAa,CAAC,UAAU,CAAC,aAAa,CAAC,mBAAgB,CAAhB,gBAAgB,CAAC,eAAe,CAAC,mBAAmB,CAAC,SAAS,CAAC,iBAAiB,CAAC,+BAAW,aAAa,CAAC,2CAAuB,WAAW,CAAgF,CAA/E,iDAAQ,gEAAuC,CAAC,UAAU,CAAC,kDAAS,UAAU,CAAG,gDAAgC,oBAAoB,CAAC",sourcesContent:["@layer comp{.icon{height:1em;position:relative;vertical-align:-.125em;width:1em;&>i,&>img,&>svg{border-radius:inherit;display:block;height:1em;line-height:1;object-fit:cover;overflow:hidden;pointer-events:none;width:1em;fill:currentcolor}&>i:before{line-height:1}&[data-clickable=true]{opacity:.75;&:hover{background-color:theme(colors.text/10%);opacity:.9}&:active{opacity:.5}}}[dir=rtl] .icon[data-flip=true]{transform:scaleX(-1)}}"],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={icon:"dSLau8LDK5X8mcM6ZjRQ"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/dist/esm/components/media/Media.module.css":(module,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'@layer comp{.M_PCZ3dUwrZOH5ARU3TZ.eP4mjJ20I0AeiCDaIvdF:after,.M_PCZ3dUwrZOH5ARU3TZ.eP4mjJ20I0AeiCDaIvdF:before{background-image:linear-gradient(90deg,#222c 0,#222c .25rem,#fff8 0,#fff8 .75rem,#222c 0,#222c 1rem);background-position:50%;background-repeat:repeat-x;background-size:1rem;border:.125rem solid #222c;content:"";height:.5rem;inset-inline:0;position:absolute}.M_PCZ3dUwrZOH5ARU3TZ.eP4mjJ20I0AeiCDaIvdF:before{top:0}.M_PCZ3dUwrZOH5ARU3TZ.eP4mjJ20I0AeiCDaIvdF:after{bottom:0}.M_PCZ3dUwrZOH5ARU3TZ .igu47dDRAUCoJlUio8qM [data-ref=button]{margin:0;}.M_PCZ3dUwrZOH5ARU3TZ .igu47dDRAUCoJlUio8qM [data-ref=button]>:first-child{background-color:rgb(25 26 27 / 50%);color:#fff;}.M_PCZ3dUwrZOH5ARU3TZ .igu47dDRAUCoJlUio8qM [data-ref=button]>:first-child:hover{background-color:rgb(25 26 27 / 80%);color:color-mix(in lab, color(from var(--primary) srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1))}.M_PCZ3dUwrZOH5ARU3TZ .igu47dDRAUCoJlUio8qM .nN9LzPpe7wgodWuIJaog>:first-child{background-color:rgb(25 26 27 / 70%)}:is(.M_PCZ3dUwrZOH5ARU3TZ .igu47dDRAUCoJlUio8qM) .nN9LzPpe7wgodWuIJaog+.nN9LzPpe7wgodWuIJaog{margin-top:8px}}@layer util{:scope .igu47dDRAUCoJlUio8qM:hover .ishGvX5s2sXqPdjx3bKC{display:none}:scope .igu47dDRAUCoJlUio8qM:not(:hover) .nN9LzPpe7wgodWuIJaog{display:none}}',"",{version:3,sources:["webpack://./packages/core/dist/esm/components/media/Media.module.css"],names:[],mappings:"AAAA,YAAwC,mGAAiB,oGAAoG,CAAC,uBAAuB,CAAC,0BAA0B,CAAC,oBAAoB,CAAC,0BAA0B,CAAC,UAAU,CAAC,YAAY,CAAC,cAAc,CAAC,iBAAiB,CAAC,kDAAS,KAAK,CAAC,iDAAQ,QAAQ,CAAmB,8DAAoB,QAAQ,CAAsJ,CAArJ,2EAAe,oCAAwC,CAAC,UAAU,CAAkF,CAAjF,iFAAQ,oCAAwC,CAAC,sHAA+B,CAAG,+EAAmC,oCAAwC,CAAC,6FAA0C,cAAc,CAAG,CAAC,YAAqC,yDAA2B,YAAY,CAAgB,+DAAsB,YAAY,CAAG",sourcesContent:['@layer comp{.mediaContainer{&.mediaReel{&:after,&:before{background-image:linear-gradient(90deg,#222c 0,#222c .25rem,#fff8 0,#fff8 .75rem,#222c 0,#222c 1rem);background-position:50%;background-repeat:repeat-x;background-size:1rem;border:.125rem solid #222c;content:"";height:.5rem;inset-inline:0;position:absolute}&:before{top:0}&:after{bottom:0}}& .mediaControls{& [data-ref=button]{margin:0;&>:first-child{background-color:theme(colors.black/50%);color:#fff;&:hover{background-color:theme(colors.black/80%);color:theme(colors.primary.600)}}}& .mediaControlAction>:first-child{background-color:theme(colors.black/70%)}& .mediaControlAction+.mediaControlAction{margin-top:8px}}}}@layer util{& .mediaControls{&:hover{& .mediaControlPlaceholder{display:none}}&:not(:hover){& .mediaControlAction{display:none}}}}'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={mediaContainer:"M_PCZ3dUwrZOH5ARU3TZ",mediaReel:"eP4mjJ20I0AeiCDaIvdF",mediaControls:"igu47dDRAUCoJlUio8qM",mediaControlAction:"nN9LzPpe7wgodWuIJaog",mediaControlPlaceholder:"ishGvX5s2sXqPdjx3bKC"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/dist/esm/components/menu/Menu.module.css":(module,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,"@layer comp{.APDED5JWb7NxU81ZpjDQ{--color:var(--primary);}.APDED5JWb7NxU81ZpjDQ[data-color=accent]{--color:var(--accent)}.APDED5JWb7NxU81ZpjDQ[data-color=info]{--color:#00bfff}.APDED5JWb7NxU81ZpjDQ[data-color=danger]{--color:#f24c3d}.APDED5JWb7NxU81ZpjDQ[data-color=success]{--color:#44bc69}.APDED5JWb7NxU81ZpjDQ[data-color=warning]{--color:#edaa00}}@layer var{.APDED5JWb7NxU81ZpjDQ{color:color-mix(in lab,var(--color) 80%,var(--fabric-text));}.APDED5JWb7NxU81ZpjDQ >*{pointer-events:none}.APDED5JWb7NxU81ZpjDQ[data-focus=true]{background-color:color(from var(--color) srgb r g b/15%)}.APDED5JWb7NxU81ZpjDQ:active{background-color:color(from var(--color) srgb r g b/35%)}.APDED5JWb7NxU81ZpjDQ[data-open=true]{background-color:color(from var(--color) srgb r g b/10%)}.APDED5JWb7NxU81ZpjDQ.C7rFMKNnqlJF0pH1i2ym,.APDED5JWb7NxU81ZpjDQ.active{background-color:color(from var(--color) srgb r g b/20%);pointer-events:none;}.APDED5JWb7NxU81ZpjDQ.C7rFMKNnqlJF0pH1i2ym>div,.APDED5JWb7NxU81ZpjDQ.active>div{box-shadow:4px 0 0 var(--color) inset;}[dir=rtl] :is(.APDED5JWb7NxU81ZpjDQ.C7rFMKNnqlJF0pH1i2ym>div),[dir=rtl] :is(.APDED5JWb7NxU81ZpjDQ.active>div){box-shadow:-4px 0 0 var(--color) inset}.APDED5JWb7NxU81ZpjDQ.yUbYKudmQXNerOFyQakR{color:color(from var(--tint) srgb r g b / 1);opacity:.5;pointer-events:none;}.APDED5JWb7NxU81ZpjDQ.yUbYKudmQXNerOFyQakR>label~*{display:none}.YIAjkuhrySCRtppzpElX{font-size:1.25em;padding:.3em;}.YIAjkuhrySCRtppzpElX._aw3XFzBbcuxSQl0sj7y{font-size:1.5em;font-weight:500;padding:.375em}.menu-list.hide-icons .YIAjkuhrySCRtppzpElX{width:.125em}}","",{version:3,sources:["webpack://./packages/core/dist/esm/components/menu/Menu.module.css"],names:[],mappings:"AAAA,YAAY,sBAAU,sBAAqC,CAAmS,CAAlS,yCAAqB,qBAAoC,CAAC,uCAAmB,eAAkC,CAAC,yCAAqB,eAAoC,CAAC,0CAAsB,eAAqC,CAAC,0CAAsB,eAAqC,CAAE,CAAC,WAAW,sBAAU,2DAA2D,CAAqiB,CAApiB,yBAAG,mBAAmB,CAAC,uCAAmB,wDAAwD,CAAC,6BAAS,wDAAwD,CAAC,sCAAkB,wDAAwD,CAAC,wEAA2B,wDAAwD,CAAC,mBAAmB,CAA0G,CAAzG,gFAAM,qCAAqC,CAA6D,CAA5D,8GAAqB,sCAAsC,CAAG,2CAAW,4CAA+B,CAAC,UAAU,CAAC,mBAAmB,CAAwB,CAAvB,mDAAU,YAAY,CAAG,sBAAU,gBAAgB,CAAC,YAAY,CAA0D,CAAzD,2CAAU,eAAe,CAAC,eAAe,CAAC,cAAc,CAAE,4CAAyC,YAAY,CAAC",sourcesContent:["@layer comp{.menuItem{--color:theme(colors.primary.DEFAULT);&[data-color=accent]{--color:theme(colors.accent.DEFAULT)}&[data-color=info]{--color:theme(colors.info.DEFAULT)}&[data-color=danger]{--color:theme(colors.danger.DEFAULT)}&[data-color=success]{--color:theme(colors.success.DEFAULT)}&[data-color=warning]{--color:theme(colors.warning.DEFAULT)}}}@layer var{.menuItem{color:color-mix(in lab,var(--color) 80%,var(--fabric-text));>*{pointer-events:none}&[data-focus=true]{background-color:color(from var(--color) srgb r g b/15%)}&:active{background-color:color(from var(--color) srgb r g b/35%)}&[data-open=true]{background-color:color(from var(--color) srgb r g b/10%)}&.active,&:global(.active){background-color:color(from var(--color) srgb r g b/20%);pointer-events:none;&>div{box-shadow:4px 0 0 var(--color) inset;:global([dir=rtl]) &{box-shadow:-4px 0 0 var(--color) inset}}}&.disabled{color:theme(textColor.tint.500);opacity:.5;pointer-events:none;&>label~*{display:none}}}.menuIcon{font-size:1.25em;padding:.3em;&.minimal{font-size:1.5em;font-weight:500;padding:.375em}}:global(.menu-list.hide-icons) .menuIcon{width:.125em}}"],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={menuItem:"APDED5JWb7NxU81ZpjDQ",active:"C7rFMKNnqlJF0pH1i2ym",disabled:"yUbYKudmQXNerOFyQakR",menuIcon:"YIAjkuhrySCRtppzpElX",minimal:"_aw3XFzBbcuxSQl0sj7y"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/dist/esm/components/meter/Meter.module.css":(module,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,"@layer comp{.bCPlZx5rtyNeQwZj1Fju .jIb4CLAhTkiASg0jtu6e{flex:1 1 1rem;height:.5em;line-height:1;max-width:12rem;min-width:1rem;}.bCPlZx5rtyNeQwZj1Fju .jIb4CLAhTkiASg0jtu6e:after{width:var(--width)}.bCPlZx5rtyNeQwZj1Fju>label{font-size:max(.75rem,.5em);line-height:1}.bCPlZx5rtyNeQwZj1Fju .jIb4CLAhTkiASg0jtu6e[data-active=true]:first-child:after,.bCPlZx5rtyNeQwZj1Fju .jIb4CLAhTkiASg0jtu6e[data-active=true]:nth-child(2):after,.bCPlZx5rtyNeQwZj1Fju .jIb4CLAhTkiASg0jtu6e[data-active=true]:nth-child(3):after,.bCPlZx5rtyNeQwZj1Fju .jIb4CLAhTkiASg0jtu6e[data-active=true]:nth-child(4):after,.bCPlZx5rtyNeQwZj1Fju .jIb4CLAhTkiASg0jtu6e[data-active=true]:nth-child(5):after,.bCPlZx5rtyNeQwZj1Fju .jIb4CLAhTkiASg0jtu6e[data-active=true]:nth-child(6):after{background-color:currentColor;opacity:.85}.bCPlZx5rtyNeQwZj1Fju .jIb4CLAhTkiASg0jtu6e[data-active=true]:first-child{color:#eb5e28}.bCPlZx5rtyNeQwZj1Fju .jIb4CLAhTkiASg0jtu6e[data-active=true]:nth-child(2){color:#f9a03f}.bCPlZx5rtyNeQwZj1Fju .jIb4CLAhTkiASg0jtu6e[data-active=true]:nth-child(3){color:#f3c053}.bCPlZx5rtyNeQwZj1Fju .jIb4CLAhTkiASg0jtu6e[data-active=true]:nth-child(4){color:#a1c349}.bCPlZx5rtyNeQwZj1Fju .jIb4CLAhTkiASg0jtu6e[data-active=true]:nth-child(5){color:#87a330}.bCPlZx5rtyNeQwZj1Fju .jIb4CLAhTkiASg0jtu6e[data-active=true]:nth-child(6){color:#6a8532}.bCPlZx5rtyNeQwZj1Fju[class*=text-accent] .jIb4CLAhTkiASg0jtu6e[data-active=true],.bCPlZx5rtyNeQwZj1Fju[class*=text-danger] .jIb4CLAhTkiASg0jtu6e[data-active=true],.bCPlZx5rtyNeQwZj1Fju[class*=text-info] .jIb4CLAhTkiASg0jtu6e[data-active=true],.bCPlZx5rtyNeQwZj1Fju[class*=text-primary] .jIb4CLAhTkiASg0jtu6e[data-active=true],.bCPlZx5rtyNeQwZj1Fju[class*=text-success] .jIb4CLAhTkiASg0jtu6e[data-active=true],.bCPlZx5rtyNeQwZj1Fju[class*=text-warning] .jIb4CLAhTkiASg0jtu6e[data-active=true]{color:currentColor;}.bCPlZx5rtyNeQwZj1Fju[class*=text-accent] .jIb4CLAhTkiASg0jtu6e[data-active=true]:first-child:after,.bCPlZx5rtyNeQwZj1Fju[class*=text-danger] .jIb4CLAhTkiASg0jtu6e[data-active=true]:first-child:after,.bCPlZx5rtyNeQwZj1Fju[class*=text-info] .jIb4CLAhTkiASg0jtu6e[data-active=true]:first-child:after,.bCPlZx5rtyNeQwZj1Fju[class*=text-primary] .jIb4CLAhTkiASg0jtu6e[data-active=true]:first-child:after,.bCPlZx5rtyNeQwZj1Fju[class*=text-success] .jIb4CLAhTkiASg0jtu6e[data-active=true]:first-child:after,.bCPlZx5rtyNeQwZj1Fju[class*=text-warning] .jIb4CLAhTkiASg0jtu6e[data-active=true]:first-child:after{opacity:.2}.bCPlZx5rtyNeQwZj1Fju[class*=text-accent] .jIb4CLAhTkiASg0jtu6e[data-active=true]:nth-child(2):after,.bCPlZx5rtyNeQwZj1Fju[class*=text-danger] .jIb4CLAhTkiASg0jtu6e[data-active=true]:nth-child(2):after,.bCPlZx5rtyNeQwZj1Fju[class*=text-info] .jIb4CLAhTkiASg0jtu6e[data-active=true]:nth-child(2):after,.bCPlZx5rtyNeQwZj1Fju[class*=text-primary] .jIb4CLAhTkiASg0jtu6e[data-active=true]:nth-child(2):after,.bCPlZx5rtyNeQwZj1Fju[class*=text-success] .jIb4CLAhTkiASg0jtu6e[data-active=true]:nth-child(2):after,.bCPlZx5rtyNeQwZj1Fju[class*=text-warning] .jIb4CLAhTkiASg0jtu6e[data-active=true]:nth-child(2):after{opacity:.35}.bCPlZx5rtyNeQwZj1Fju[class*=text-accent] .jIb4CLAhTkiASg0jtu6e[data-active=true]:nth-child(3):after,.bCPlZx5rtyNeQwZj1Fju[class*=text-danger] .jIb4CLAhTkiASg0jtu6e[data-active=true]:nth-child(3):after,.bCPlZx5rtyNeQwZj1Fju[class*=text-info] .jIb4CLAhTkiASg0jtu6e[data-active=true]:nth-child(3):after,.bCPlZx5rtyNeQwZj1Fju[class*=text-primary] .jIb4CLAhTkiASg0jtu6e[data-active=true]:nth-child(3):after,.bCPlZx5rtyNeQwZj1Fju[class*=text-success] .jIb4CLAhTkiASg0jtu6e[data-active=true]:nth-child(3):after,.bCPlZx5rtyNeQwZj1Fju[class*=text-warning] .jIb4CLAhTkiASg0jtu6e[data-active=true]:nth-child(3):after{opacity:.5}.bCPlZx5rtyNeQwZj1Fju[class*=text-accent] .jIb4CLAhTkiASg0jtu6e[data-active=true]:nth-child(4):after,.bCPlZx5rtyNeQwZj1Fju[class*=text-danger] .jIb4CLAhTkiASg0jtu6e[data-active=true]:nth-child(4):after,.bCPlZx5rtyNeQwZj1Fju[class*=text-info] .jIb4CLAhTkiASg0jtu6e[data-active=true]:nth-child(4):after,.bCPlZx5rtyNeQwZj1Fju[class*=text-primary] .jIb4CLAhTkiASg0jtu6e[data-active=true]:nth-child(4):after,.bCPlZx5rtyNeQwZj1Fju[class*=text-success] .jIb4CLAhTkiASg0jtu6e[data-active=true]:nth-child(4):after,.bCPlZx5rtyNeQwZj1Fju[class*=text-warning] .jIb4CLAhTkiASg0jtu6e[data-active=true]:nth-child(4):after{opacity:.65}.bCPlZx5rtyNeQwZj1Fju[class*=text-accent] .jIb4CLAhTkiASg0jtu6e[data-active=true]:nth-child(5):after,.bCPlZx5rtyNeQwZj1Fju[class*=text-danger] .jIb4CLAhTkiASg0jtu6e[data-active=true]:nth-child(5):after,.bCPlZx5rtyNeQwZj1Fju[class*=text-info] .jIb4CLAhTkiASg0jtu6e[data-active=true]:nth-child(5):after,.bCPlZx5rtyNeQwZj1Fju[class*=text-primary] .jIb4CLAhTkiASg0jtu6e[data-active=true]:nth-child(5):after,.bCPlZx5rtyNeQwZj1Fju[class*=text-success] .jIb4CLAhTkiASg0jtu6e[data-active=true]:nth-child(5):after,.bCPlZx5rtyNeQwZj1Fju[class*=text-warning] .jIb4CLAhTkiASg0jtu6e[data-active=true]:nth-child(5):after{opacity:.8}.bCPlZx5rtyNeQwZj1Fju[class*=text-accent] .jIb4CLAhTkiASg0jtu6e[data-active=true]:nth-child(6):after,.bCPlZx5rtyNeQwZj1Fju[class*=text-danger] .jIb4CLAhTkiASg0jtu6e[data-active=true]:nth-child(6):after,.bCPlZx5rtyNeQwZj1Fju[class*=text-info] .jIb4CLAhTkiASg0jtu6e[data-active=true]:nth-child(6):after,.bCPlZx5rtyNeQwZj1Fju[class*=text-primary] .jIb4CLAhTkiASg0jtu6e[data-active=true]:nth-child(6):after,.bCPlZx5rtyNeQwZj1Fju[class*=text-success] .jIb4CLAhTkiASg0jtu6e[data-active=true]:nth-child(6):after,.bCPlZx5rtyNeQwZj1Fju[class*=text-warning] .jIb4CLAhTkiASg0jtu6e[data-active=true]:nth-child(6):after{opacity:.95}}","",{version:3,sources:["webpack://./packages/core/dist/esm/components/meter/Meter.module.css"],names:[],mappings:"AAAA,YAAmB,4CAAY,aAAa,CAAC,WAAW,CAAC,aAAa,CAAC,eAAe,CAAC,cAAc,CAA4B,CAA3B,kDAAQ,kBAAkB,CAAE,4BAAQ,0BAA0B,CAAC,aAAa,CAAwH,qeAAQ,6BAA6B,CAAC,WAAW,CAAE,0EAAc,aAAa,CAAC,2EAAe,aAAa,CAAC,2EAAe,aAAa,CAAC,2EAAe,aAAa,CAAC,2EAAe,aAAa,CAAC,2EAAe,aAAa,CAAE,6eAA6S,kBAAkB,CAAmM,CAAlM,ylBAAoB,UAAU,CAAC,+lBAAqB,WAAW,CAAC,+lBAAqB,UAAU,CAAC,+lBAAqB,WAAW,CAAC,+lBAAqB,UAAU,CAAC,+lBAAqB,WAAW,CAAG",sourcesContent:["@layer comp{.meter{& .meterBar{flex:1 1 1rem;height:.5em;line-height:1;max-width:12rem;min-width:1rem;&:after{width:var(--width)}}&>label{font-size:max(.75rem,.5em);line-height:1}& .meterBar[data-active=true]{&:first-child,&:nth-child(2),&:nth-child(3),&:nth-child(4),&:nth-child(5),&:nth-child(6){&:after{background-color:currentColor;opacity:.85}}&:first-child{color:#eb5e28}&:nth-child(2){color:#f9a03f}&:nth-child(3){color:#f3c053}&:nth-child(4){color:#a1c349}&:nth-child(5){color:#87a330}&:nth-child(6){color:#6a8532}}&[class*=text-accent] .meterBar[data-active=true],&[class*=text-danger] .meterBar[data-active=true],&[class*=text-info] .meterBar[data-active=true],&[class*=text-primary] .meterBar[data-active=true],&[class*=text-success] .meterBar[data-active=true],&[class*=text-warning] .meterBar[data-active=true]{color:currentColor;&:first-child:after{opacity:.2}&:nth-child(2):after{opacity:.35}&:nth-child(3):after{opacity:.5}&:nth-child(4):after{opacity:.65}&:nth-child(5):after{opacity:.8}&:nth-child(6):after{opacity:.95}}}}"],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={meter:"bCPlZx5rtyNeQwZj1Fju",meterBar:"jIb4CLAhTkiASg0jtu6e"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/dist/esm/components/panel/Panel.module.css":(module,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'@layer comp{.bVamxEOh20wXhsGXsqa4{background-color:color(from var(--fabric-bg) srgb r g b / 1);grid-template:"head" auto "content" 1fr/1fr;}.bVamxEOh20wXhsGXsqa4>*{background-color:transparent}.bVamxEOh20wXhsGXsqa4.fixed{box-shadow:0 0 18px var(--fabric-shadow)}.bVamxEOh20wXhsGXsqa4 .NUo1qY7rIFusA8D9KCGG{background-color:color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 90%, color(from var(--tint) srgb r g b / 1))}.bVamxEOh20wXhsGXsqa4 .RcYIcPlphu1_yKSRyJCi{padding:.25rem}.bVamxEOh20wXhsGXsqa4 .xgFOR_eF9PuGKUo8k9aX{grid-template:"head head head" auto ". loader ." auto "side-s content side-e" 1fr "foot foot foot" auto/auto 1fr auto}}@layer util{.UKE3OP6edrBaUSixU4tA>.bVamxEOh20wXhsGXsqa4[data-collapsed=true]{flex:0 0 auto}.UKE3OP6edrBaUSixU4tA>.bVamxEOh20wXhsGXsqa4[data-collapsed=false]{flex:1 1 auto;min-height:15rem;}.UKE3OP6edrBaUSixU4tA>.bVamxEOh20wXhsGXsqa4[data-collapsed=false] [data-ref=panelCollapse]{color:var(--tint);opacity:.25;pointer-events:none}.UKE3OP6edrBaUSixU4tA>.bVamxEOh20wXhsGXsqa4:not(:first-child){border-start-end-radius:0;border-start-start-radius:0}.UKE3OP6edrBaUSixU4tA>.bVamxEOh20wXhsGXsqa4:not(:last-child){border-bottom:1px solid color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 99%, color(from var(--tint) srgb r g b / 1));border-end-end-radius:0;border-end-start-radius:0}[data-ref=asideBody]>.UKE3OP6edrBaUSixU4tA>.bVamxEOh20wXhsGXsqa4{border-radius:0;outline:0}}',"",{version:3,sources:["webpack://./packages/core/dist/esm/components/panel/Panel.module.css"],names:[],mappings:"AAAA,YAAY,sBAAO,4DAAiC,CAAC,2CAA2C,CAAiU,CAAhU,wBAAI,4BAA4B,CAAC,4BAAiB,wCAA8C,CAAC,4CAAe,4HAA8C,CAAC,4CAAe,cAAc,CAAC,4CAAa,qHAAqH,CAAE,CAAC,YAAiC,iEAAuB,aAAa,CAAC,kEAAwB,aAAa,CAAC,gBAAgB,CAA4E,CAA3E,2FAAyB,iBAAiB,CAAC,WAAW,CAAC,mBAAmB,CAAG,8DAA2B,yBAAyB,CAAC,2BAA2B,CAAC,6DAA0B,mIAAmD,CAAC,uBAAuB,CAAC,yBAAyB,CAAE,iEAAwC,eAAe,CAAC,SAAS,CAAC",sourcesContent:['@layer comp{.panel{background-color:theme(colors.bg);grid-template:"head" auto "content" 1fr/1fr;&>*{background-color:transparent}&:global(.fixed){box-shadow:0 0 18px theme(boxShadowColor.base)}& .panelHeader{background-color:theme(backgroundColor.dimmed)}& .panelAction{padding:.25rem}& .panelBody{grid-template:"head head head" auto ". loader ." auto "side-s content side-e" 1fr "foot foot foot" auto/auto 1fr auto}}}@layer util{.panelGroup{&>.panel{&[data-collapsed=true]{flex:0 0 auto}&[data-collapsed=false]{flex:1 1 auto;min-height:15rem;[data-ref=panelCollapse]{color:var(--tint);opacity:.25;pointer-events:none}}}&>.panel:not(:first-child){border-start-end-radius:0;border-start-start-radius:0}&>.panel:not(:last-child){border-bottom:1px solid theme(backgroundColor.base);border-end-end-radius:0;border-end-start-radius:0}}[data-ref=asideBody]>.panelGroup>.panel{border-radius:0;outline:0}}'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={panel:"bVamxEOh20wXhsGXsqa4",panelHeader:"NUo1qY7rIFusA8D9KCGG",panelAction:"RcYIcPlphu1_yKSRyJCi",panelBody:"xgFOR_eF9PuGKUo8k9aX",panelGroup:"UKE3OP6edrBaUSixU4tA"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/dist/esm/components/progress/Progress.module.css":(module,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,"@layer comp{.aqj6FU0ZyPvP6Gm9yKBg{box-shadow:inset 0 0 4px 0 color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 72%, color(from var(--tint) srgb r g b / 1));height:1em;}.aqj6FU0ZyPvP6Gm9yKBg>div:last-child{width:calc(var(--progress)*1%);}.aqj6FU0ZyPvP6Gm9yKBg>div:last-child:after{color:var(--white);content:attr(data-label);font-size:.5em;inset-block:0;inset-inline-start:0;line-height:.5em;padding:.75em;position:absolute;text-align:center;vertical-align:middle;width:calc((100/var(--progress))*100%)}.aqj6FU0ZyPvP6Gm9yKBg .HCr6YW0zax1EAd6MbSaw{transition:width .5s;width:calc(var(--progress)*1%)}.aqj6FU0ZyPvP6Gm9yKBg>div:first-child{font-size:.5em;line-height:.5em;padding:.75em}.yL1DglF47lyTkSfpLQFA{background-image:var(--progress-gradient);background-size:1rem 1rem;}.yL1DglF47lyTkSfpLQFA{animation:progress .75s linear infinite}}","",{version:3,sources:["webpack://./packages/core/dist/esm/components/progress/Progress.module.css"],names:[],mappings:"AAAA,YAAY,sBAAa,sIAAuD,CAAC,UAAU,CAA2Z,CAA1Z,qCAAiB,8BAA8B,CAAuO,CAAtO,2CAAQ,kBAAkB,CAAC,wBAAwB,CAAC,cAAc,CAAC,aAAa,CAAC,oBAAoB,CAAC,gBAAgB,CAAC,aAAa,CAAC,iBAAiB,CAAC,iBAAiB,CAAC,qBAAqB,CAAC,sCAAsC,CAAE,4CAAe,oBAAoB,CAAC,8BAA8B,CAAC,sCAAkB,cAAc,CAAC,gBAAgB,CAAC,aAAa,CAAE,sBAAiB,yCAAyC,CAAC,yBAAyB,CAAmD,CAAlD,sBAAU,uCAAuC,CAAE",sourcesContent:["@layer comp{.progressbar{box-shadow:inset 0 0 4px 0 theme(boxShadowColor.dimmed);height:1em;&>div:last-child{width:calc(var(--progress)*1%);&:after{color:var(--white);content:attr(data-label);font-size:.5em;inset-block:0;inset-inline-start:0;line-height:.5em;padding:.75em;position:absolute;text-align:center;vertical-align:middle;width:calc((100/var(--progress))*100%)}}.progressTrack{transition:width .5s;width:calc(var(--progress)*1%)}&>div:first-child{font-size:.5em;line-height:.5em;padding:.75em}}.progressAnimate{background-image:var(--progress-gradient);background-size:1rem 1rem;& :global{animation:progress .75s linear infinite}}}"],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={progressbar:"aqj6FU0ZyPvP6Gm9yKBg",progressTrack:"HCr6YW0zax1EAd6MbSaw",progressAnimate:"yL1DglF47lyTkSfpLQFA"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/dist/esm/components/tabpanel/TabPanel.module.css":(module,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'@layer comp{.ySfH6I_iz1CIfplIJhhU{--color:color(from var(--primary) srgb r g b / 1);}.ySfH6I_iz1CIfplIJhhU>.KGWk5HxYVcAyxnWxkEgB{grid-area:tablist;}.ySfH6I_iz1CIfplIJhhU>.KGWk5HxYVcAyxnWxkEgB>.mOet8rindgiEavbabC0E>.foGSFDjUlHsAI2TZBR5g[data-color=accent]{--color:color(from var(--accent) srgb r g b / 1)}.ySfH6I_iz1CIfplIJhhU>.KGWk5HxYVcAyxnWxkEgB>.mOet8rindgiEavbabC0E>.foGSFDjUlHsAI2TZBR5g[data-color=info]{--color:color(from #00bfff srgb r g b / 1)}.ySfH6I_iz1CIfplIJhhU>.KGWk5HxYVcAyxnWxkEgB>.mOet8rindgiEavbabC0E>.foGSFDjUlHsAI2TZBR5g[data-color=danger]{--color:color(from #f24c3d srgb r g b / 1)}.ySfH6I_iz1CIfplIJhhU>.KGWk5HxYVcAyxnWxkEgB>.mOet8rindgiEavbabC0E>.foGSFDjUlHsAI2TZBR5g[data-color=success]{--color:color(from #44bc69 srgb r g b / 1)}.ySfH6I_iz1CIfplIJhhU>.KGWk5HxYVcAyxnWxkEgB>.mOet8rindgiEavbabC0E>.foGSFDjUlHsAI2TZBR5g[data-color=warning]{--color:color(from #edaa00 srgb r g b / 1)}.ySfH6I_iz1CIfplIJhhU>.KGWk5HxYVcAyxnWxkEgB>.mOet8rindgiEavbabC0E>.foGSFDjUlHsAI2TZBR5g:not(.active):hover{background-color:color-mix(in lab, color(from var(--tint) srgb r g b / 50%) 27%, color(from var(--fabric-bg) srgb r g b / 50%));color:color-mix(in lab,var(--color) 65%,var(--fabric-text))}.ySfH6I_iz1CIfplIJhhU>.KGWk5HxYVcAyxnWxkEgB>.mOet8rindgiEavbabC0E>.foGSFDjUlHsAI2TZBR5g.active{--active-color:var(--color);color:color-mix(in lab,var(--color) 65%,var(--fabric-text));font-weight:500}.ySfH6I_iz1CIfplIJhhU[data-variant=outline] .mOet8rindgiEavbabC0E>.foGSFDjUlHsAI2TZBR5g.active{--active-color:color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 99%, color(from var(--tint) srgb r g b / 1));--active-border:0 0 0 1px color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 65%, color(from var(--tint) srgb r g b / 1)) inset;background-color:color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 99%, color(from var(--tint) srgb r g b / 1))}.ySfH6I_iz1CIfplIJhhU[data-variant=solid] .mOet8rindgiEavbabC0E>.foGSFDjUlHsAI2TZBR5g.active{background-color:var(--color);color:#fefdfc}.ySfH6I_iz1CIfplIJhhU[data-variant=soft] .mOet8rindgiEavbabC0E>.foGSFDjUlHsAI2TZBR5g.active{background-color:color-mix(in lab,var(--color) 20%,var(--fabric-bg))}.ySfH6I_iz1CIfplIJhhU[data-orientation=top]{grid-template:"tablist" auto "content" 1fr/1fr;padding-inline:2px;}.ySfH6I_iz1CIfplIJhhU[data-orientation=top] .KGWk5HxYVcAyxnWxkEgB{box-shadow:inset 0 -1px 0 color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 72%, color(from var(--tint) srgb r g b / 1))}.ySfH6I_iz1CIfplIJhhU[data-orientation=bottom]{grid-template:"content" 1fr "tablist" auto/1fr;padding-inline:2px;}.ySfH6I_iz1CIfplIJhhU[data-orientation=bottom] .KGWk5HxYVcAyxnWxkEgB{box-shadow:inset 0 1px 0 color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 72%, color(from var(--tint) srgb r g b / 1));margin-top:1px}.ySfH6I_iz1CIfplIJhhU[data-orientation=start]{grid-template:"tablist content" 1fr/auto 1fr;padding-block:2px;}.ySfH6I_iz1CIfplIJhhU[data-orientation=start] .KGWk5HxYVcAyxnWxkEgB{box-shadow:inset -1px 0 0 color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 72%, color(from var(--tint) srgb r g b / 1))}.ySfH6I_iz1CIfplIJhhU[data-orientation=end]{grid-template:"content tablist" 1fr/1fr auto;padding-block:2px;}.ySfH6I_iz1CIfplIJhhU[data-orientation=end] .KGWk5HxYVcAyxnWxkEgB{box-shadow:inset 1px 0 0 color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 72%, color(from var(--tint) srgb r g b / 1))}}@layer util{.ySfH6I_iz1CIfplIJhhU .mOet8rindgiEavbabC0E>.foGSFDjUlHsAI2TZBR5g.active{pointer-events:none}.ySfH6I_iz1CIfplIJhhU[data-orientation=top] .mOet8rindgiEavbabC0E>.foGSFDjUlHsAI2TZBR5g.active{box-shadow:0 -2px 0 var(--active-color) inset,var(--active-border,0 0 0 transparent)}.ySfH6I_iz1CIfplIJhhU[data-orientation=bottom] .mOet8rindgiEavbabC0E>.foGSFDjUlHsAI2TZBR5g.active{box-shadow:0 2px 0 var(--active-color) inset,var(--active-border,0 0 0 transparent)}.ySfH6I_iz1CIfplIJhhU[data-orientation=start] .mOet8rindgiEavbabC0E>.foGSFDjUlHsAI2TZBR5g.active{box-shadow:-2px 0 0 var(--active-color) inset,var(--active-border,0 0 0 transparent)}.ySfH6I_iz1CIfplIJhhU[data-orientation=end] .mOet8rindgiEavbabC0E>.foGSFDjUlHsAI2TZBR5g.active{box-shadow:2px 0 0 var(--active-color) inset,var(--active-border,0 0 0 transparent)}.ySfH6I_iz1CIfplIJhhU[data-orientation=top] .mOet8rindgiEavbabC0E>.foGSFDjUlHsAI2TZBR5g{border-end-end-radius:0;border-end-start-radius:0;margin-top:2px;margin-inline:1px}.ySfH6I_iz1CIfplIJhhU[data-orientation=bottom] .mOet8rindgiEavbabC0E>.foGSFDjUlHsAI2TZBR5g{border-start-end-radius:0;border-start-start-radius:0;margin-bottom:2px;margin-inline:1px}.ySfH6I_iz1CIfplIJhhU[data-orientation=start] .mOet8rindgiEavbabC0E>.foGSFDjUlHsAI2TZBR5g{border-end-end-radius:0;border-start-end-radius:0;margin-block:1px;margin-inline-start:2px}.ySfH6I_iz1CIfplIJhhU[data-orientation=end] .mOet8rindgiEavbabC0E>.foGSFDjUlHsAI2TZBR5g{border-end-start-radius:0;border-start-start-radius:0;margin-block:1px;margin-inline-end:2px}}',"",{version:3,sources:["webpack://./packages/core/dist/esm/components/tabpanel/TabPanel.module.css"],names:[],mappings:"AAAA,YAAY,sBAAU,iDAAiC,CAA+nD,CAA9nD,4CAAa,iBAAiB,CAAsiB,CAA/gB,2GAAqB,gDAAgC,CAAC,yGAAmB,0CAA8B,CAAC,2GAAqB,0CAAgC,CAAC,4GAAsB,0CAAiC,CAAC,4GAAsB,0CAAiC,CAAC,2GAA8B,gIAA2C,CAAC,2DAA2D,CAAC,+FAAkB,2BAA2B,CAAC,2DAA2D,CAAC,eAAe,CAA2B,+FAAsC,0HAA0C,CAAC,2IAAuD,CAAC,4HAA4C,CAAwB,6FAAsC,6BAA6B,CAAC,aAAyB,CAAuB,4FAAsC,oEAAoE,CAAE,4CAAwB,8CAA8C,CAAC,kBAAkB,CAAgE,CAA/D,kEAAW,qIAAmD,CAAE,+CAA2B,8CAA8C,CAAC,kBAAkB,CAA8E,CAA7E,qEAAW,oIAAkD,CAAC,cAAc,CAAE,8CAA0B,4CAA4C,CAAC,iBAAiB,CAAgE,CAA/D,oEAAW,qIAAmD,CAAE,4CAAwB,4CAA4C,CAAC,iBAAiB,CAA+D,CAA9D,kEAAW,oIAAkD,CAAG,CAAC,YAAsB,yEAAsC,mBAAmB,CAAkC,+FAA6B,oFAAoF,CAAsC,kGAA6B,mFAAmF,CAAqC,iGAA6B,oFAAoF,CAAmC,+FAA6B,mFAAmF,CAAE,wFAA4C,uBAAuB,CAAC,yBAAyB,CAAC,cAAc,CAAC,iBAAiB,CAAC,2FAA+C,yBAAyB,CAAC,2BAA2B,CAAC,iBAAiB,CAAC,iBAAiB,CAAC,0FAA8C,uBAAuB,CAAC,yBAAyB,CAAC,gBAAgB,CAAC,uBAAuB,CAAC,wFAA4C,yBAAyB,CAAC,2BAA2B,CAAC,gBAAgB,CAAC,qBAAqB,CAAE",sourcesContent:['@layer comp{.tabPanel{--color:theme(colors.primary.500);&>.tabHeader{grid-area:tablist;&>.tabList>.tabButton{&[data-color=accent]{--color:theme(colors.accent.500)}&[data-color=info]{--color:theme(colors.info.500)}&[data-color=danger]{--color:theme(colors.danger.500)}&[data-color=success]{--color:theme(colors.success.500)}&[data-color=warning]{--color:theme(colors.warning.500)}&:not(:global(.active)):hover{background-color:theme(colors.tint.100/50%);color:color-mix(in lab,var(--color) 65%,var(--fabric-text))}&:global(.active){--active-color:var(--color);color:color-mix(in lab,var(--color) 65%,var(--fabric-text));font-weight:500}}}&[data-variant=outline]{& .tabList>.tabButton:global(.active){--active-color:theme(backgroundColor.base);--active-border:0 0 0 1px theme(borderColor.base) inset;background-color:theme(backgroundColor.base)}}&[data-variant=solid]{& .tabList>.tabButton:global(.active){background-color:var(--color);color:theme(colors.white)}}&[data-variant=soft]{& .tabList>.tabButton:global(.active){background-color:color-mix(in lab,var(--color) 20%,var(--fabric-bg))}}&[data-orientation=top]{grid-template:"tablist" auto "content" 1fr/1fr;padding-inline:2px;.tabHeader{box-shadow:inset 0 -1px 0 theme(borderColor.dimmed)}}&[data-orientation=bottom]{grid-template:"content" 1fr "tablist" auto/1fr;padding-inline:2px;.tabHeader{box-shadow:inset 0 1px 0 theme(borderColor.dimmed);margin-top:1px}}&[data-orientation=start]{grid-template:"tablist content" 1fr/auto 1fr;padding-block:2px;.tabHeader{box-shadow:inset -1px 0 0 theme(borderColor.dimmed)}}&[data-orientation=end]{grid-template:"content tablist" 1fr/1fr auto;padding-block:2px;.tabHeader{box-shadow:inset 1px 0 0 theme(borderColor.dimmed)}}}}@layer util{.tabPanel{& .tabList>.tabButton:global(.active){pointer-events:none}&[data-orientation=top] .tabList{&>.tabButton:global(.active){box-shadow:0 -2px 0 var(--active-color) inset,var(--active-border,0 0 0 transparent)}}&[data-orientation=bottom] .tabList{&>.tabButton:global(.active){box-shadow:0 2px 0 var(--active-color) inset,var(--active-border,0 0 0 transparent)}}&[data-orientation=start] .tabList{&>.tabButton:global(.active){box-shadow:-2px 0 0 var(--active-color) inset,var(--active-border,0 0 0 transparent)}}&[data-orientation=end] .tabList{&>.tabButton:global(.active){box-shadow:2px 0 0 var(--active-color) inset,var(--active-border,0 0 0 transparent)}}&[data-orientation=top] .tabList>.tabButton{border-end-end-radius:0;border-end-start-radius:0;margin-top:2px;margin-inline:1px}&[data-orientation=bottom] .tabList>.tabButton{border-start-end-radius:0;border-start-start-radius:0;margin-bottom:2px;margin-inline:1px}&[data-orientation=start] .tabList>.tabButton{border-end-end-radius:0;border-start-end-radius:0;margin-block:1px;margin-inline-start:2px}&[data-orientation=end] .tabList>.tabButton{border-end-start-radius:0;border-start-start-radius:0;margin-block:1px;margin-inline-end:2px}}}'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={tabPanel:"ySfH6I_iz1CIfplIJhhU",tabHeader:"KGWk5HxYVcAyxnWxkEgB",tabList:"mOet8rindgiEavbabC0E",tabButton:"foGSFDjUlHsAI2TZBR5g"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/dist/esm/core/aside/Aside.module.css":(module,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'@layer comp{.tSDfaIzLtXaaEUpncwId{--aside-bg:color-mix(in lab,var(--fabric-bg) 95%,var(--tint));--aside-border:color-mix(in lab,var(--fabric-bg) 75%,var(--tint));background-color:var(--aside-bg);}.tSDfaIzLtXaaEUpncwId[data-align=start]{border-inline-end:1px solid var(--aside-border);grid-area:side-s;grid-template:"head resizer" auto "loader resizer" auto "content resizer" 1fr/1fr auto;}.tSDfaIzLtXaaEUpncwId[data-align=start] .cLZCPHvnpYs84tsmv4ta{grid-template-areas:"icon title actions collapse";grid-template-columns:auto 1fr auto auto}.tSDfaIzLtXaaEUpncwId[data-align=end]{border-inline-start:1px solid var(--aside-border);grid-area:side-e;grid-template:"resizer head" auto "resizer loader" auto "resizer content" 1fr/auto 1fr;}.tSDfaIzLtXaaEUpncwId[data-align=end] .cLZCPHvnpYs84tsmv4ta{grid-template-areas:"collapse icon title actions";grid-template-columns:auto auto 1fr auto}.tSDfaIzLtXaaEUpncwId[data-align=end] .jl1qTICpEP68nN4bkxDP{transform:scaleX(-1)}.tSDfaIzLtXaaEUpncwId .M0OJsuSqPvlZBmpDxgG2{grid-area:content;grid-template:"head" auto "content" 1fr "foot" auto/1fr;}.tSDfaIzLtXaaEUpncwId .M0OJsuSqPvlZBmpDxgG2>[data-ref=content]{background-color:transparent}.tSDfaIzLtXaaEUpncwId .cLZCPHvnpYs84tsmv4ta{color:color-mix(in lab, color(from var(--primary) srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));font-weight:500;}.tSDfaIzLtXaaEUpncwId .cLZCPHvnpYs84tsmv4ta:not(:empty){border-bottom:1px solid var(--aside-border)}.tSDfaIzLtXaaEUpncwId .q5UYiPbju0wWVtAbg_Bo{grid-area:title}.tSDfaIzLtXaaEUpncwId .mBs6aS7Y3MCT7R6plYqz{grid-area:icon}.tSDfaIzLtXaaEUpncwId .dCmYmQ3tTL2SyxmBv7rQ{grid-area:actions}.tSDfaIzLtXaaEUpncwId .jl1qTICpEP68nN4bkxDP{grid-area:collapse;}.tSDfaIzLtXaaEUpncwId .jl1qTICpEP68nN4bkxDP:hover{background-color:color-mix(in lab,var(--fabric-text) 10%,#0000)}.tSDfaIzLtXaaEUpncwId .NTk7IdrEEytgFfIUrKKp{background-color:var(--aside-bg);grid-area:content;z-index:4}.tSDfaIzLtXaaEUpncwId ._ylbrMfsGo6wDNkbiJFW{cursor:col-resize;grid-area:resizer;position:relative;width:.25rem;}.tSDfaIzLtXaaEUpncwId ._ylbrMfsGo6wDNkbiJFW:before{border:1px solid color-mix(in lab, color(from var(--tint) srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));border-width:0 1.5px;height:32px}.tSDfaIzLtXaaEUpncwId ._ylbrMfsGo6wDNkbiJFW:active:before,.tSDfaIzLtXaaEUpncwId ._ylbrMfsGo6wDNkbiJFW:hover:before{background-color:color-mix(in lab, color(from var(--primary) srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));border-color:color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 99%, color(from var(--tint) srgb r g b / 1));border-width:0 1.25px;height:100%}}@layer util{.M0OJsuSqPvlZBmpDxgG2,.cLZCPHvnpYs84tsmv4ta{height:unset;margin:unset;width:unset}.M0OJsuSqPvlZBmpDxgG2>[data-ref=content]{background-color:transparent}.tSDfaIzLtXaaEUpncwId[data-collapsed=true]{overflow:visible;position:relative;width:2rem;}.tSDfaIzLtXaaEUpncwId[data-collapsed=true] .M0OJsuSqPvlZBmpDxgG2{background-color:var(--aside-bg);inset:0;position:absolute;transition:transform .15s cubic-bezier(.4,0,.2,1);z-index:-1}.tSDfaIzLtXaaEUpncwId[data-collapsed=true] .cLZCPHvnpYs84tsmv4ta{position:absolute;width:2rem;z-index:5}.tSDfaIzLtXaaEUpncwId[data-collapsed=true] .q5UYiPbju0wWVtAbg_Bo{font-size:1rem;grid-area:unset;position:absolute;top:1rem}.tSDfaIzLtXaaEUpncwId[data-collapsed=true] .mBs6aS7Y3MCT7R6plYqz{margin-inline:2px}.tSDfaIzLtXaaEUpncwId[data-collapsed=true] .jl1qTICpEP68nN4bkxDP+.mBs6aS7Y3MCT7R6plYqz,.tSDfaIzLtXaaEUpncwId[data-collapsed=true] ._ylbrMfsGo6wDNkbiJFW{display:none}[dir=ltr] .tSDfaIzLtXaaEUpncwId[data-align=start][data-collapsed=true] .M0OJsuSqPvlZBmpDxgG2,[dir=rtl] .tSDfaIzLtXaaEUpncwId[data-align=end][data-collapsed=true] .M0OJsuSqPvlZBmpDxgG2{grid-area:unset;right:unset;transform:translateX(-100%)}[dir=ltr] .tSDfaIzLtXaaEUpncwId[data-align=start][data-collapsed=true] .q5UYiPbju0wWVtAbg_Bo,[dir=rtl] .tSDfaIzLtXaaEUpncwId[data-align=end][data-collapsed=true] .q5UYiPbju0wWVtAbg_Bo{right:calc(2rem + 2px);transform:rotate(-90deg) translateY(2rem);transform-origin:100% 100%}[dir=ltr] .tSDfaIzLtXaaEUpncwId[data-align=start][data-collapsed=true] .jl1qTICpEP68nN4bkxDP,[dir=rtl] .tSDfaIzLtXaaEUpncwId[data-align=end][data-collapsed=true] .jl1qTICpEP68nN4bkxDP{transform:scaleX(-1)}[dir=ltr] .tSDfaIzLtXaaEUpncwId[data-align=start][data-collapsed=true][data-flyout=true] .M0OJsuSqPvlZBmpDxgG2,[dir=rtl] .tSDfaIzLtXaaEUpncwId[data-align=end][data-collapsed=true][data-flyout=true] .M0OJsuSqPvlZBmpDxgG2{box-shadow:0 0 1rem 0 var(--fabric-shadow);transform:translateX(2rem);z-index:3}[dir=ltr] .tSDfaIzLtXaaEUpncwId[data-align=end][data-collapsed=true] .M0OJsuSqPvlZBmpDxgG2,[dir=rtl] .tSDfaIzLtXaaEUpncwId[data-align=start][data-collapsed=true] .M0OJsuSqPvlZBmpDxgG2{grid-area:unset;left:unset;transform:translateX(100%)}[dir=ltr] .tSDfaIzLtXaaEUpncwId[data-align=end][data-collapsed=true] .q5UYiPbju0wWVtAbg_Bo,[dir=rtl] .tSDfaIzLtXaaEUpncwId[data-align=start][data-collapsed=true] .q5UYiPbju0wWVtAbg_Bo{left:calc(2rem + 2px);transform:rotate(90deg) translateY(2rem);transform-origin:0 100%}[dir=ltr] .tSDfaIzLtXaaEUpncwId[data-align=end][data-collapsed=true] .jl1qTICpEP68nN4bkxDP,[dir=rtl] .tSDfaIzLtXaaEUpncwId[data-align=start][data-collapsed=true] .jl1qTICpEP68nN4bkxDP{transform:scaleX(1)}[dir=ltr] .tSDfaIzLtXaaEUpncwId[data-align=end][data-collapsed=true][data-flyout=true] .M0OJsuSqPvlZBmpDxgG2,[dir=rtl] .tSDfaIzLtXaaEUpncwId[data-align=start][data-collapsed=true][data-flyout=true] .M0OJsuSqPvlZBmpDxgG2{box-shadow:0 0 1rem 0 var(--fabric-shadow);transform:translateX(-2rem);z-index:3}}',"",{version:3,sources:["webpack://./packages/core/dist/esm/core/aside/Aside.module.css"],names:[],mappings:"AAAA,YAAY,sBAAO,6DAA6D,CAAC,iEAAiE,CAAC,gCAAgC,CAA46C,CAA36C,wCAAoB,+CAA+C,CAAC,gBAAgB,CAAC,sFAAsF,CAA2G,CAA1G,8DAAe,iDAAiD,CAAC,wCAAwC,CAAE,sCAAkB,iDAAiD,CAAC,gBAAgB,CAAC,sFAAsF,CAAiJ,CAAhJ,4DAAe,iDAAiD,CAAC,wCAAwC,CAAC,4DAAiB,oBAAoB,CAAE,4CAAa,iBAAiB,CAAC,uDAAuD,CAAmD,CAAlD,+DAAqB,4BAA4B,CAAE,4CAAe,sHAA+B,CAAC,eAAe,CAA2D,CAA1D,wDAAc,2CAA2C,CAAE,4CAAc,eAAe,CAAC,4CAAa,cAAc,CAAC,4CAAc,iBAAiB,CAAC,4CAAiB,kBAAkB,CAAyE,CAAxE,kDAAQ,+DAA+D,CAAE,4CAAoB,gCAAgC,CAAC,iBAAiB,CAAC,SAAS,CAAC,4CAAgB,iBAAiB,CAAC,iBAAiB,CAAC,iBAAiB,CAAC,YAAY,CAAwO,CAAvO,mDAAS,8HAAuC,CAAC,oBAAoB,CAAC,WAAW,CAAC,mHAA+B,iIAA0C,CAAC,wHAAwC,CAAC,qBAAqB,CAAC,WAAW,CAAG,CAAC,YAAY,4CAAwB,YAAY,CAAC,YAAY,CAAC,WAAW,CAAY,yCAAqB,4BAA4B,CAAE,2CAA4B,gBAAgB,CAAC,iBAAiB,CAAC,UAAU,CAA0V,CAAzV,iEAAa,gCAAgC,CAAC,OAAO,CAAC,iBAAiB,CAAC,iDAAiD,CAAC,UAAU,CAAC,iEAAe,iBAAiB,CAAC,UAAU,CAAC,SAAS,CAAC,iEAAc,cAAc,CAAC,eAAe,CAAC,iBAAiB,CAAC,QAAQ,CAAC,iEAAW,iBAAiB,CAAC,wJAA4C,YAAY,CAAgH,wLAAa,eAAe,CAAC,WAAW,CAAC,2BAA2B,CAAC,wLAAc,sBAAsB,CAAC,yCAAyC,CAAC,0BAA0B,CAAC,wLAAiB,oBAAoB,CAAC,4NAA+B,0CAA0C,CAAC,0BAA0B,CAAC,SAAS,CAAgH,wLAAa,eAAe,CAAC,UAAU,CAAC,0BAA0B,CAAC,wLAAc,qBAAqB,CAAC,wCAAwC,CAAC,uBAAuB,CAAC,wLAAiB,mBAAmB,CAAC,4NAA+B,0CAA0C,CAAC,2BAA2B,CAAC,SAAS,CAAE",sourcesContent:['@layer comp{.aside{--aside-bg:color-mix(in lab,var(--fabric-bg) 95%,var(--tint));--aside-border:color-mix(in lab,var(--fabric-bg) 75%,var(--tint));background-color:var(--aside-bg);&[data-align=start]{border-inline-end:1px solid var(--aside-border);grid-area:side-s;grid-template:"head resizer" auto "loader resizer" auto "content resizer" 1fr/1fr auto;& .asideHeader{grid-template-areas:"icon title actions collapse";grid-template-columns:auto 1fr auto auto}}&[data-align=end]{border-inline-start:1px solid var(--aside-border);grid-area:side-e;grid-template:"resizer head" auto "resizer loader" auto "resizer content" 1fr/auto 1fr;& .asideHeader{grid-template-areas:"collapse icon title actions";grid-template-columns:auto auto 1fr auto}& .asideCollapse{transform:scaleX(-1)}}& .asideBody{grid-area:content;grid-template:"head" auto "content" 1fr "foot" auto/1fr;&>[data-ref=content]{background-color:transparent}}& .asideHeader{color:theme(colors.primary.600);font-weight:500;&:not(:empty){border-bottom:1px solid var(--aside-border)}}& .asideTitle{grid-area:title}& .asideIcon{grid-area:icon}.asideActions{grid-area:actions}& .asideCollapse{grid-area:collapse;&:hover{background-color:color-mix(in lab,var(--fabric-text) 10%,#0000)}}& .asidePlaceholder{background-color:var(--aside-bg);grid-area:content;z-index:4}& .asideResizer{cursor:col-resize;grid-area:resizer;position:relative;width:.25rem;&:before{border:1px solid theme(colors.tint.700);border-width:0 1.5px;height:32px}&:active:before,&:hover:before{background-color:theme(colors.primary.600);border-color:theme(backgroundColor.base);border-width:0 1.25px;height:100%}}}}@layer util{.asideBody,.asideHeader{height:unset;margin:unset;width:unset}.asideBody{&>[data-ref=content]{background-color:transparent}}.aside[data-collapsed=true]{overflow:visible;position:relative;width:2rem;& .asideBody{background-color:var(--aside-bg);inset:0;position:absolute;transition:transform .15s cubic-bezier(.4,0,.2,1);z-index:-1}& .asideHeader{position:absolute;width:2rem;z-index:5}& .asideTitle{font-size:1rem;grid-area:unset;position:absolute;top:1rem}.asideIcon{margin-inline:2px}& .asideCollapse+.asideIcon,& .asideResizer{display:none}}[dir=ltr] .aside[data-align=start][data-collapsed=true],[dir=rtl] .aside[data-align=end][data-collapsed=true]{& .asideBody{grid-area:unset;right:unset;transform:translateX(-100%)}& .asideTitle{right:calc(2rem + 2px);transform:rotate(-90deg) translateY(2rem);transform-origin:100% 100%}& .asideCollapse{transform:scaleX(-1)}&[data-flyout=true] .asideBody{box-shadow:0 0 1rem 0 var(--fabric-shadow);transform:translateX(2rem);z-index:3}}[dir=ltr] .aside[data-align=end][data-collapsed=true],[dir=rtl] .aside[data-align=start][data-collapsed=true]{& .asideBody{grid-area:unset;left:unset;transform:translateX(100%)}& .asideTitle{left:calc(2rem + 2px);transform:rotate(90deg) translateY(2rem);transform-origin:0 100%}& .asideCollapse{transform:scaleX(1)}&[data-flyout=true] .asideBody{box-shadow:0 0 1rem 0 var(--fabric-shadow);transform:translateX(-2rem);z-index:3}}}'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={aside:"tSDfaIzLtXaaEUpncwId",asideHeader:"cLZCPHvnpYs84tsmv4ta",asideCollapse:"jl1qTICpEP68nN4bkxDP",asideBody:"M0OJsuSqPvlZBmpDxgG2",asideTitle:"q5UYiPbju0wWVtAbg_Bo",asideIcon:"mBs6aS7Y3MCT7R6plYqz",asideActions:"dCmYmQ3tTL2SyxmBv7rQ",asidePlaceholder:"NTk7IdrEEytgFfIUrKKp",asideResizer:"_ylbrMfsGo6wDNkbiJFW"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/dist/esm/core/boundary/ErrorBoundary.module.css":(module,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'@layer comp{.Pzc1Kg30AUxwEN4XfIzO{align-self:flex-start;background-color:color(from #f24c3d srgb r g b / 1);background-image:repeating-linear-gradient(135deg,hsla(0,0%,100%,.5) 0 4px,hsla(0,0%,100%,.2) 4px 8px);grid-area:inherit;margin:1rem;max-height:calc(100% - 2rem);}.Pzc1Kg30AUxwEN4XfIzO .rslGJQRoHl6Xvndl6S1I{background-color:var(--fabric-bg);grid-template:"icon message" auto "detail detail" auto/auto 1fr}.Pzc1Kg30AUxwEN4XfIzO .U0qfMPJ5Dm2vPZa_PM1Q{grid-area:icon}.Pzc1Kg30AUxwEN4XfIzO .BWZcOXXlxH6ZDxMAvdaU{grid-area:message}.Pzc1Kg30AUxwEN4XfIzO .Ga0FrpCZCiIe9dkmKgAi{grid-area:detail;grid-template-rows:auto 1fr}}',"",{version:3,sources:["webpack://./packages/core/dist/esm/core/boundary/ErrorBoundary.module.css"],names:[],mappings:"AAAA,YAAY,sBAAe,qBAAqB,CAAC,mDAAyC,CAAC,sGAAsG,CAAC,iBAAiB,CAAC,WAAW,CAAC,4BAA4B,CAAyP,CAAxP,4CAAmB,iCAAiC,CAAC,+DAA+D,CAAC,4CAAgB,cAAc,CAAC,4CAAmB,iBAAiB,CAAC,4CAAkB,gBAAgB,CAAC,2BAA2B,CAAE",sourcesContent:['@layer comp{.errorBoundary{align-self:flex-start;background-color:theme(colors.danger.500);background-image:repeating-linear-gradient(135deg,hsla(0,0%,100%,.5) 0 4px,hsla(0,0%,100%,.2) 4px 8px);grid-area:inherit;margin:1rem;max-height:calc(100% - 2rem);& .boundaryContent{background-color:var(--fabric-bg);grid-template:"icon message" auto "detail detail" auto/auto 1fr}& .boundaryIcon{grid-area:icon}& .boundaryMessage{grid-area:message}& .boundaryDetail{grid-area:detail;grid-template-rows:auto 1fr}}}'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={errorBoundary:"Pzc1Kg30AUxwEN4XfIzO",boundaryContent:"rslGJQRoHl6Xvndl6S1I",boundaryIcon:"U0qfMPJ5Dm2vPZa_PM1Q",boundaryMessage:"BWZcOXXlxH6ZDxMAvdaU",boundaryDetail:"Ga0FrpCZCiIe9dkmKgAi"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/dist/esm/core/content/Content.module.css":(module,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,"@layer comp{._I_rOdJqclkrKYTuRhqT{--fabric-content:color-mix(in lab,var(--fabric-bg) 97%,var(--tint));background-color:var(--fabric-content);overflow:auto;padding:1rem}}@layer util{._I_rOdJqclkrKYTuRhqT{height:unset;margin:unset;width:unset}}","",{version:3,sources:["webpack://./packages/core/dist/esm/core/content/Content.module.css"],names:[],mappings:"AAAA,YAAY,sBAAS,mEAAmE,CAAC,sCAAsC,CAAC,aAAa,CAAC,YAAY,CAAC,CAAC,YAAY,sBAAS,YAAY,CAAC,YAAY,CAAC,WAAW,CAAC",sourcesContent:["@layer comp{.content{--fabric-content:color-mix(in lab,var(--fabric-bg) 97%,var(--tint));background-color:var(--fabric-content);overflow:auto;padding:1rem}}@layer util{.content{height:unset;margin:unset;width:unset}}"],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={content:"_I_rOdJqclkrKYTuRhqT"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/dist/esm/core/headfoot/HeadFoot.module.css":(module,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,"@layer comp{.nTd3WE1t4kWp4Yuy4dxg{gap:2px;}.nTd3WE1t4kWp4Yuy4dxg .GYNk0c7QfHPqXRPVZpzA+.GYNk0c7QfHPqXRPVZpzA{margin-inline-start:.25rem}}@layer util{.nTd3WE1t4kWp4Yuy4dxg{height:unset;margin:unset;width:unset}}","",{version:3,sources:["webpack://./packages/core/dist/esm/core/headfoot/HeadFoot.module.css"],names:[],mappings:"AAAA,YAAY,sBAAU,OAAO,CAA0D,CAAzD,kEAA8B,0BAA0B,CAAE,CAAC,YAAY,sBAAU,YAAY,CAAC,YAAY,CAAC,WAAW,CAAC",sourcesContent:["@layer comp{.headfoot{gap:2px;.buttonWrapper+.buttonWrapper{margin-inline-start:.25rem}}}@layer util{.headfoot{height:unset;margin:unset;width:unset}}"],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={headfoot:"nTd3WE1t4kWp4Yuy4dxg",buttonWrapper:"GYNk0c7QfHPqXRPVZpzA"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/dist/esm/core/page/Page.module.css":(module,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'@layer comp{.y1VNZi_Q9zOJ3d89E1Pf{--fabric-page:color-mix(in lab,var(--fabric-bg) 94%,var(--tint));--fabric-page-title:color-mix(in lab,var(--fabric-bg) 90%,var(--tint));background-color:var(--fabric-page);grid-template:"title title title" auto "head head head" auto ". loader ." auto "side-s content side-e" 1fr "foot foot foot" auto/auto 1fr auto;}.y1VNZi_Q9zOJ3d89E1Pf .LYxyBVHwe7_EnXPTrWIh{background-color:var(--fabric-page-title);color:color-mix(in lab, color(from var(--primary) srgb r g b / 1) 80%, color(from var(--fabric-text) srgb r g b / 1));grid-area:title}}@layer util{.LYxyBVHwe7_EnXPTrWIh{height:unset;margin:unset;width:unset}}',"",{version:3,sources:["webpack://./packages/core/dist/esm/core/page/Page.module.css"],names:[],mappings:"AAAA,YAAY,sBAAM,gEAAgE,CAAC,sEAAsE,CAAC,mCAAmC,CAAC,8IAA8I,CAAsG,CAArG,4CAAW,yCAAyC,CAAC,sHAA+B,CAAC,eAAe,CAAE,CAAC,YAAY,sBAAW,YAAY,CAAC,YAAY,CAAC,WAAW,CAAC",sourcesContent:['@layer comp{.page{--fabric-page:color-mix(in lab,var(--fabric-bg) 94%,var(--tint));--fabric-page-title:color-mix(in lab,var(--fabric-bg) 90%,var(--tint));background-color:var(--fabric-page);grid-template:"title title title" auto "head head head" auto ". loader ." auto "side-s content side-e" 1fr "foot foot foot" auto/auto 1fr auto;.pageTitle{background-color:var(--fabric-page-title);color:theme(colors.primary.600);grid-area:title}}}@layer util{.pageTitle{height:unset;margin:unset;width:unset}}'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={page:"y1VNZi_Q9zOJ3d89E1Pf",pageTitle:"LYxyBVHwe7_EnXPTrWIh"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/dist/esm/core/responsive/Responsive.module.css":(module,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'@layer comp{.iMfpvp4fxS6851kRyonz{margin:calc(var(--gutter)*-.5);}.iMfpvp4fxS6851kRyonz+.iMfpvp4fxS6851kRyonz{margin-top:calc(var(--gutter)*.5)}.uxTkNV7V7AHd6RxXawd_{flex:0 0 auto;margin:calc(var(--gutter)*.5);max-width:calc(100% - var(--gutter, 0px));}.uxTkNV7V7AHd6RxXawd_.v8El836Y9clOqAP9DnaY>*{min-height:100%;min-width:100%}.nn8fLrKGk4cukSf_snyX[data-gutter="0"],.iMfpvp4fxS6851kRyonz[data-gutter="0"]{--gutter:0px}.nn8fLrKGk4cukSf_snyX[data-gutter=xs],.iMfpvp4fxS6851kRyonz[data-gutter=xs]{--gutter:2px}.nn8fLrKGk4cukSf_snyX[data-gutter=sm],.iMfpvp4fxS6851kRyonz[data-gutter=sm]{--gutter:0.25rem}.nn8fLrKGk4cukSf_snyX[data-gutter=md],.iMfpvp4fxS6851kRyonz[data-gutter=md]{--gutter:0.75rem}.nn8fLrKGk4cukSf_snyX[data-gutter=lg],.iMfpvp4fxS6851kRyonz[data-gutter=lg]{--gutter:1rem}.nn8fLrKGk4cukSf_snyX[data-gutter=xl],.iMfpvp4fxS6851kRyonz[data-gutter=xl]{--gutter:1.5rem}}',"",{version:3,sources:["webpack://./packages/core/dist/esm/core/responsive/Responsive.module.css"],names:[],mappings:"AAAA,YAAY,sBAAK,8BAA8B,CAA0C,CAAzC,4CAAO,iCAAiC,CAAE,sBAAK,aAAa,CAAC,6BAA6B,CAAC,yCAAyC,CAAmD,CAAlD,6CAAmB,eAAe,CAAC,cAAc,CAAoB,8EAAkB,YAAY,CAAmB,4EAAkB,YAAY,CAAmB,4EAAkB,gBAAgB,CAAmB,4EAAkB,gBAAgB,CAAmB,4EAAkB,aAAa,CAAmB,4EAAkB,eAAe,CAAE",sourcesContent:['@layer comp{.row{margin:calc(var(--gutter)*-.5);&+.row{margin-top:calc(var(--gutter)*.5)}}.col{flex:0 0 auto;margin:calc(var(--gutter)*.5);max-width:calc(100% - var(--gutter, 0px));&.stretchContent>*{min-height:100%;min-width:100%}}[data-gutter="0"]{&.container,&.row{--gutter:0px}}[data-gutter=xs]{&.container,&.row{--gutter:2px}}[data-gutter=sm]{&.container,&.row{--gutter:0.25rem}}[data-gutter=md]{&.container,&.row{--gutter:0.75rem}}[data-gutter=lg]{&.container,&.row{--gutter:1rem}}[data-gutter=xl]{&.container,&.row{--gutter:1.5rem}}}'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={row:"iMfpvp4fxS6851kRyonz",col:"uxTkNV7V7AHd6RxXawd_",stretchContent:"v8El836Y9clOqAP9DnaY",container:"nn8fLrKGk4cukSf_snyX"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/dist/esm/core/section/Section.module.css":(module,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'@layer comp{.bF1rJ8TLKN9tvj6I637Q{grid-template:"head head head" auto "side-s content side-e" 1fr "foot foot foot" auto/auto 1fr auto}}',"",{version:3,sources:["webpack://./packages/core/dist/esm/core/section/Section.module.css"],names:[],mappings:"AAAA,YAAY,sBAAS,mGAAmG,CAAC",sourcesContent:['@layer comp{.section{grid-template:"head head head" auto "side-s content side-e" 1fr "foot foot foot" auto/auto 1fr auto}}'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={section:"bF1rJ8TLKN9tvj6I637Q"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/dist/esm/core/theme/Theme.module.css":(module,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,"@layer comp{.WjJcP26puBSgJ4Yx_WMp>*{background-color:color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 99%, color(from var(--tint) srgb r g b / 1))}}","",{version:3,sources:["webpack://./packages/core/dist/esm/core/theme/Theme.module.css"],names:[],mappings:"AAAA,YAA2B,wBAAI,4HAA4C,CAAE",sourcesContent:["@layer comp{.themeProvider{&>*{background-color:theme(backgroundColor.base)}}}"],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={themeProvider:"WjJcP26puBSgJ4Yx_WMp"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/dist/esm/core/viewport/Viewport.module.css":(module,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'@layer comp{.JpFUSNmRtxVwK625JX3_{--fabric-viewport:color-mix(in lab,var(--fabric-bg) 76%,var(--tint));background-color:var(--fabric-viewport);color:var(--fabric-text);grid-template:"head head head" auto "crumbbar crumbbar crumbbar" auto "side-s content side-e" 1fr "foot foot foot" auto/auto 1fr auto}}',"",{version:3,sources:["webpack://./packages/core/dist/esm/core/viewport/Viewport.module.css"],names:[],mappings:"AAAA,YAAY,sBAAU,oEAAoE,CAAC,uCAAuC,CAAC,wBAAwB,CAAC,qIAAqI,CAAC",sourcesContent:['@layer comp{.viewport{--fabric-viewport:color-mix(in lab,var(--fabric-bg) 76%,var(--tint));background-color:var(--fabric-viewport);color:var(--fabric-text);grid-template:"head head head" auto "crumbbar crumbbar crumbbar" auto "side-s content side-e" 1fr "foot foot foot" auto/auto 1fr auto}}'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={viewport:"JpFUSNmRtxVwK625JX3_"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/dist/esm/overlays/alert/Alert.module.css":(module,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'@layer comp{.FVUiFRFJ07FUHHTNXp1t{gap:.5rem 1rem;grid-template:"icon title" auto "icon message" auto "input input" auto "actions actions" auto/auto 1fr;margin-top:-100%;opacity:0;transition:margin .4s,opacity .3s .2s;z-index:var(--z-overlay);}.FVUiFRFJ07FUHHTNXp1t[data-show=true]{margin-top:0;opacity:1}}',"",{version:3,sources:["webpack://./packages/core/dist/esm/overlays/alert/Alert.module.css"],names:[],mappings:"AAAA,YAAY,sBAAO,cAAc,CAAC,sGAAsG,CAAC,gBAAgB,CAAC,SAAS,CAAC,qCAAqC,CAAC,wBAAwB,CAA0C,CAAzC,sCAAkB,YAAY,CAAC,SAAS,CAAE",sourcesContent:['@layer comp{.alert{gap:.5rem 1rem;grid-template:"icon title" auto "icon message" auto "input input" auto "actions actions" auto/auto 1fr;margin-top:-100%;opacity:0;transition:margin .4s,opacity .3s .2s;z-index:var(--z-overlay);&[data-show=true]{margin-top:0;opacity:1}}}'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={alert:"FVUiFRFJ07FUHHTNXp1t"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/dist/esm/overlays/flyout/Flyout.module.css":(module,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'@layer comp{.m4FumlKC0CdnIp9A7E80{max-width:70vw;transition:margin .5s;width:32rem;z-index:var(--z-overlay);}.m4FumlKC0CdnIp9A7E80 .dEaY3nQbOxEEUfj_fbeL{background-color:color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 99%, color(from var(--tint) srgb r g b / 1));border-bottom:.5px solid color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 72%, color(from var(--tint) srgb r g b / 1))}.m4FumlKC0CdnIp9A7E80 .NBRjJ4CrAdWGJwuIauzK{grid-template:"head head head" auto ". loader ." auto "side-s content side-e" 1fr "foot foot foot" auto/auto 1fr auto}.m4FumlKC0CdnIp9A7E80[data-align=start]{margin-inline-start:-100%}.m4FumlKC0CdnIp9A7E80[data-align=end]{margin-inline-end:-100%}.m4FumlKC0CdnIp9A7E80[data-show=true]{margin:0}}',"",{version:3,sources:["webpack://./packages/core/dist/esm/overlays/flyout/Flyout.module.css"],names:[],mappings:"AAAA,YAAY,sBAAQ,cAAc,CAAC,qBAAqB,CAAC,WAAW,CAAC,wBAAwB,CAAwW,CAAvW,4CAAgB,4HAA4C,CAAC,oIAAkD,CAAC,4CAAc,qHAAqH,CAAC,wCAAoB,yBAAyB,CAAC,sCAAkB,uBAAuB,CAAC,sCAAkB,QAAQ,CAAE",sourcesContent:['@layer comp{.flyout{max-width:70vw;transition:margin .5s;width:32rem;z-index:var(--z-overlay);& .flyoutHeader{background-color:theme(backgroundColor.base);border-bottom:.5px solid theme(borderColor.dimmed)}& .flyoutBody{grid-template:"head head head" auto ". loader ." auto "side-s content side-e" 1fr "foot foot foot" auto/auto 1fr auto}&[data-align=start]{margin-inline-start:-100%}&[data-align=end]{margin-inline-end:-100%}&[data-show=true]{margin:0}}}'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={flyout:"m4FumlKC0CdnIp9A7E80",flyoutHeader:"dEaY3nQbOxEEUfj_fbeL",flyoutBody:"NBRjJ4CrAdWGJwuIauzK"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/dist/esm/overlays/message/Message.module.css":(module,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,"@layer comp{.skCmx8kh7BSzHJY7x7bH{margin-top:-100%;opacity:0;transition:margin .4s,opacity .3s .2s;}.skCmx8kh7BSzHJY7x7bH[data-show=true]{margin-top:0;opacity:1}}","",{version:3,sources:["webpack://./packages/core/dist/esm/overlays/message/Message.module.css"],names:[],mappings:"AAAA,YAAY,sBAAS,gBAAgB,CAAC,SAAS,CAAC,qCAAqC,CAA0C,CAAzC,sCAAkB,YAAY,CAAC,SAAS,CAAE",sourcesContent:["@layer comp{.message{margin-top:-100%;opacity:0;transition:margin .4s,opacity .3s .2s;&[data-show=true]{margin-top:0;opacity:1}}}"],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={message:"skCmx8kh7BSzHJY7x7bH"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/dist/esm/overlays/modal/Modal.module.css":(module,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,'@layer comp{.R2D5mB5REvmTw9T3EzYi{margin-top:-100%;max-height:90vh;max-width:90vw;opacity:0;transition:margin .4s,opacity .3s .2s;width:32rem;z-index:var(--z-overlay);}.R2D5mB5REvmTw9T3EzYi[data-show=true]{margin-top:0;opacity:1}.R2D5mB5REvmTw9T3EzYi ._yps8ZkAjJXa0f7Zcjvw{background-color:color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 99%, color(from var(--tint) srgb r g b / 1));border-bottom:.5px solid color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 72%, color(from var(--tint) srgb r g b / 1))}.R2D5mB5REvmTw9T3EzYi .ubCwA1uECVHmmBdL_mFW{grid-template:"head head head" auto ". loader ." auto "side-s content side-e" 1fr "foot foot foot" auto/auto 1fr auto}}',"",{version:3,sources:["webpack://./packages/core/dist/esm/overlays/modal/Modal.module.css"],names:[],mappings:"AAAA,YAAY,sBAAO,gBAAgB,CAAC,eAAe,CAAC,cAAc,CAAC,SAAS,CAAC,qCAAqC,CAAC,WAAW,CAAC,wBAAwB,CAA4R,CAA3R,sCAAkB,YAAY,CAAC,SAAS,CAAC,4CAAe,4HAA4C,CAAC,oIAAkD,CAAC,4CAAa,qHAAqH,CAAE",sourcesContent:['@layer comp{.modal{margin-top:-100%;max-height:90vh;max-width:90vw;opacity:0;transition:margin .4s,opacity .3s .2s;width:32rem;z-index:var(--z-overlay);&[data-show=true]{margin-top:0;opacity:1}& .modalHeader{background-color:theme(backgroundColor.base);border-bottom:.5px solid theme(borderColor.dimmed)}& .modalBody{grid-template:"head head head" auto ". loader ." auto "side-s content side-e" 1fr "foot foot foot" auto/auto 1fr auto}}}'],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={modal:"R2D5mB5REvmTw9T3EzYi",modalHeader:"_yps8ZkAjJXa0f7Zcjvw",modalBody:"ubCwA1uECVHmmBdL_mFW"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/dist/esm/overlays/toast/Toast.module.css":(module,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,"@layer comp{.qHu0dqBQBHwkwesl_ltd{margin-bottom:-100%;opacity:0;transition:margin .4s,opacity .3s .2s;}.qHu0dqBQBHwkwesl_ltd[data-show=true]{margin-bottom:0;opacity:1}}","",{version:3,sources:["webpack://./packages/core/dist/esm/overlays/toast/Toast.module.css"],names:[],mappings:"AAAA,YAAY,sBAAO,mBAAmB,CAAC,SAAS,CAAC,qCAAqC,CAA6C,CAA5C,sCAAkB,eAAe,CAAC,SAAS,CAAE",sourcesContent:["@layer comp{.toast{margin-bottom:-100%;opacity:0;transition:margin .4s,opacity .3s .2s;&[data-show=true]{margin-bottom:0;opacity:1}}}"],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={toast:"qHu0dqBQBHwkwesl_ltd"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/dist/esm/overlays/tooltip/Tooltip.module.css":(module,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,"@layer comp{.hNmvBy6eRFJzxnemOV8Z{color:color-mix(in lab, color(from var(--fabric-bg) srgb r g b / 1) 90%, color(from var(--tint) srgb r g b / 1));z-index:var(--z-tooltip);}.hNmvBy6eRFJzxnemOV8Z[data-color=primary]{color:color-mix(in lab, color(from var(--primary) srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1))}.hNmvBy6eRFJzxnemOV8Z[data-color=accent]{color:color-mix(in lab, color(from var(--accent) srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1))}.hNmvBy6eRFJzxnemOV8Z[data-color=info]{color:color-mix(in lab, color(from #00bfff srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1))}.hNmvBy6eRFJzxnemOV8Z[data-color=danger]{color:color-mix(in lab, color(from #f24c3d srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1))}.hNmvBy6eRFJzxnemOV8Z[data-color=success]{color:color-mix(in lab, color(from #44bc69 srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1))}.hNmvBy6eRFJzxnemOV8Z[data-color=warning]{color:color-mix(in lab, color(from #edaa00 srgb r g b / 1) 45%, color(from var(--fabric-bg) srgb r g b / 1))}}","",{version:3,sources:["webpack://./packages/core/dist/esm/overlays/tooltip/Tooltip.module.css"],names:[],mappings:"AAAA,YAAY,sBAAS,iHAAmC,CAAC,wBAAwB,CAA2T,CAA1T,0CAAsB,oHAA+B,CAAC,yCAAqB,mHAA8B,CAAC,uCAAmB,6GAA4B,CAAC,yCAAqB,6GAA8B,CAAC,0CAAsB,6GAA+B,CAAC,0CAAsB,6GAA+B,CAAE",sourcesContent:["@layer comp{.tooltip{color:theme(backgroundColor.dimmed);z-index:var(--z-tooltip);&[data-color=primary]{color:theme(colors.primary.200)}&[data-color=accent]{color:theme(colors.accent.200)}&[data-color=info]{color:theme(colors.info.200)}&[data-color=danger]{color:theme(colors.danger.200)}&[data-color=success]{color:theme(colors.success.200)}&[data-color=warning]{color:theme(colors.warning.200)}}}"],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={tooltip:"hNmvBy6eRFJzxnemOV8Z"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./packages/core/dist/esm/typography/Typography.module.css":(module,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.d(__webpack_exports__,{A:()=>__WEBPACK_DEFAULT_EXPORT__});var _node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("./node_modules/css-loader/dist/runtime/sourceMaps.js"),_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0__),_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("./node_modules/css-loader/dist/runtime/api.js"),___CSS_LOADER_EXPORT___=__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__)()(_node_modules_css_loader_dist_runtime_sourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default());___CSS_LOADER_EXPORT___.push([module.id,"@layer comp{.udwKUeQtnHNWiPozCFyE{line-height:1.125}.zglgo30P8ias6H_V3vra{margin:-.25rem 0 .25rem;text-align:end;}.zglgo30P8ias6H_V3vra>span{color:color-mix(in lab, color(from var(--accent) srgb r g b / 1) 62%, color(from var(--fabric-text) srgb r g b / 1));cursor:pointer;font-size:.75rem;-webkit-user-select:none;-moz-user-select:none;user-select:none;}.zglgo30P8ias6H_V3vra>span:hover{color:color(from var(--accent) srgb r g b / 1);text-decoration:underline;text-underline-offset:2px}}@layer util{.OaHcrPmD0QvDOYn_Eb3g{-webkit-line-clamp:var(--text-clamp)}.X8CEEin6nT58B9SemCuO{--abbr-color:var(--accent);color:color-mix(in lab,var(--abbr-color) 50%,var(--fabric-text))}.SUzYSbmJAqmA32CD0p2p{--mark-color:var(--primary);background-color:color-mix(in lab,var(--mark-color) 25%,var(--fabric-bg))}}","",{version:3,sources:["webpack://./packages/core/dist/esm/typography/Typography.module.css"],names:[],mappings:"AAAA,YAAY,sBAAO,iBAAiB,CAAC,sBAAU,uBAAuB,CAAC,cAAc,CAAoL,CAAnL,2BAAO,qHAA8B,CAAC,cAAc,CAAC,gBAAgB,CAAC,wBAAgB,CAAhB,qBAAgB,CAAhB,gBAAgB,CAA4F,CAA3F,iCAAQ,8CAA8B,CAAC,yBAAyB,CAAC,yBAAyB,CAAG,CAAC,YAAY,sBAAM,oCAAoC,CAAC,sBAAM,0BAA0B,CAAC,gEAAgE,CAAC,sBAAM,2BAA2B,CAAC,yEAAyE,CAAC",sourcesContent:["@layer comp{.title{line-height:1.125}.moreLink{margin:-.25rem 0 .25rem;text-align:end;&>span{color:theme(colors.accent.700);cursor:pointer;font-size:.75rem;user-select:none;&:hover{color:theme(colors.accent.500);text-decoration:underline;text-underline-offset:2px}}}}@layer util{.text{-webkit-line-clamp:var(--text-clamp)}.abbr{--abbr-color:var(--accent);color:color-mix(in lab,var(--abbr-color) 50%,var(--fabric-text))}.mark{--mark-color:var(--primary);background-color:color-mix(in lab,var(--mark-color) 25%,var(--fabric-bg))}}"],sourceRoot:""}]),___CSS_LOADER_EXPORT___.locals={title:"udwKUeQtnHNWiPozCFyE",moreLink:"zglgo30P8ias6H_V3vra",text:"OaHcrPmD0QvDOYn_Eb3g",abbr:"X8CEEin6nT58B9SemCuO",mark:"SUzYSbmJAqmA32CD0p2p"};const __WEBPACK_DEFAULT_EXPORT__=___CSS_LOADER_EXPORT___},"./node_modules/memoizerific sync recursive":module=>{function webpackEmptyContext(req){var e=new Error("Cannot find module '"+req+"'");throw e.code="MODULE_NOT_FOUND",e}webpackEmptyContext.keys=()=>[],webpackEmptyContext.resolve=webpackEmptyContext,webpackEmptyContext.id="./node_modules/memoizerific sync recursive",module.exports=webpackEmptyContext},"./packages lazy recursive ^\\.\\/.*$ include: (?%21.*node_modules)(?:\\/packages(?:\\/(?%21\\.)(?:(?:(?%21(?:^%7C\\/)\\.).)*?)\\/%7C\\/%7C$)stories(?:\\/(?%21\\.)(?:(?:(?%21(?:^%7C\\/)\\.).)*?)\\/%7C\\/%7C$)(?%21\\.)(?=.)[^/]*?\\.mdx)$":(module,__unused_webpack_exports,__webpack_require__)=>{var map={"./chart/stories/ActivityMap.mdx":["./packages/chart/stories/ActivityMap.mdx",734,1567,2762,4546,9339],"./chart/stories/CountSeries.mdx":["./packages/chart/stories/CountSeries.mdx",734,1567,2762,4546,5542],"./chart/stories/DataSeries.mdx":["./packages/chart/stories/DataSeries.mdx",734,1567,2762,4546,5743],"./chart/stories/GenericChart.mdx":["./packages/chart/stories/GenericChart.mdx",734,2762,4546,8621],"./chart/stories/MapSeries.mdx":["./packages/chart/stories/MapSeries.mdx",734,1567,2762,4546,3161],"./chart/stories/TimeSeries.mdx":["./packages/chart/stories/TimeSeries.mdx",734,1567,2762,4546,9640],"./chart/stories/TimeSlider.mdx":["./packages/chart/stories/TimeSlider.mdx",734,1567,2762,4546,9960],"./chart/stories/WordBubble.mdx":["./packages/chart/stories/WordBubble.mdx",734,1567,2762,4546,4490],"./core/stories/0.core/Core.mdx":["./packages/core/stories/0.core/Core.mdx",1567,5622,9165,8872,2547,5791],"./core/stories/1.typography/Typography.mdx":["./packages/core/stories/1.typography/Typography.mdx",1567,2547,7642],"./core/stories/components/actionLabel/ActionLabel.mdx":["./packages/core/stories/components/actionLabel/ActionLabel.mdx",2547,4769],"./core/stories/components/animations/Animations.mdx":["./packages/core/stories/components/animations/Animations.mdx",1567,2547,6073],"./core/stories/components/avatar/Avatar.mdx":["./packages/core/stories/components/avatar/Avatar.mdx",1567,5622,2547,6225],"./core/stories/components/badge/Badge.mdx":["./packages/core/stories/components/badge/Badge.mdx",2547,3413],"./core/stories/components/breadcrumbs/Breadcrumbs.mdx":["./packages/core/stories/components/breadcrumbs/Breadcrumbs.mdx",2547,29],"./core/stories/components/button/Button.mdx":["./packages/core/stories/components/button/Button.mdx",5622,2547,2019],"./core/stories/components/button/ButtonGroup.mdx":["./packages/core/stories/components/button/ButtonGroup.mdx",2547,7004],"./core/stories/components/button/ConfirmButton.mdx":["./packages/core/stories/components/button/ConfirmButton.mdx",5622,2547,8677],"./core/stories/components/button/ToggleButtonGroup.mdx":["./packages/core/stories/components/button/ToggleButtonGroup.mdx",5622,2547,5352],"./core/stories/components/callout/Callout.mdx":["./packages/core/stories/components/callout/Callout.mdx",1567,2547,1881],"./core/stories/components/card/Card.mdx":["./packages/core/stories/components/card/Card.mdx",1567,5622,2547,5675],"./core/stories/components/chip/Chip.mdx":["./packages/core/stories/components/chip/Chip.mdx",5622,2547,7007],"./core/stories/components/collapable/Collapsable.mdx":["./packages/core/stories/components/collapable/Collapsable.mdx",1567,2547,4900],"./core/stories/components/dropdown/Dropdown.mdx":["./packages/core/stories/components/dropdown/Dropdown.mdx",5622,2547,3401],"./core/stories/components/empty/Empty.mdx":["./packages/core/stories/components/empty/Empty.mdx",1567,2547,6897],"./core/stories/components/icon/Icon.mdx":["./packages/core/stories/components/icon/Icon.mdx",5622,2547,9441],"./core/stories/components/menu/Menu.mdx":["./packages/core/stories/components/menu/Menu.mdx",734,8576,5622,2547,8088,1629],"./core/stories/components/meter/Meter.mdx":["./packages/core/stories/components/meter/Meter.mdx",2547,5129],"./core/stories/components/notifications/Notifications.mdx":["./packages/core/stories/components/notifications/Notifications.mdx",1567,2547,8737],"./core/stories/components/overlays/Overlays.mdx":["./packages/core/stories/components/overlays/Overlays.mdx",1567,2547,8929],"./core/stories/components/panel/Panel.mdx":["./packages/core/stories/components/panel/Panel.mdx",1567,5622,2547,1045],"./core/stories/components/progress/Progress.mdx":["./packages/core/stories/components/progress/Progress.mdx",2547,5825],"./core/stories/components/tabPanel/TabPanel.mdx":["./packages/core/stories/components/tabPanel/TabPanel.mdx",1567,5622,9711,2547,9385],"./core/stories/components/tooltip/Tooltip.mdx":["./packages/core/stories/components/tooltip/Tooltip.mdx",2547,2485],"./data/stories/histogram/Histogram.mdx":["./packages/data/stories/histogram/Histogram.mdx",734,1567,8576,5737,4750,8088,6100,1127,9865],"./data/stories/json/JsonViewer.mdx":["./packages/data/stories/json/JsonViewer.mdx",734,1567,8576,5737,4750,8088,6100,1127,9961],"./data/stories/useFilteredList/FilteredList.mdx":["./packages/data/stories/useFilteredList/FilteredList.mdx",734,8576,5737,4750,8088,6100,1127,526],"./date/stories/panels/DatePanels.mdx":["./packages/date/stories/panels/DatePanels.mdx",734,8576,5737,8088,2487,853],"./date/stories/superdate/Superdate.mdx":["./packages/date/stories/superdate/Superdate.mdx",734,8576,5737,8088,2487,7893],"./form/stories/autoComplete/AutoComplete.mdx":["./packages/form/stories/autoComplete/AutoComplete.mdx",734,8576,5622,1634,5337],"./form/stories/form/Form.mdx":["./packages/form/stories/form/Form.mdx",734,1567,8576,1634,2757],"./form/stories/inputs/Input.mdx":["./packages/form/stories/inputs/Input.mdx",734,8576,5622,6707,1634,2028],"./form/stories/selects/List.mdx":["./packages/form/stories/selects/List.mdx",734,8576,5622,1634,4176],"./form/stories/selects/Select.mdx":["./packages/form/stories/selects/Select.mdx",734,8576,5622,1634,8156],"./form/stories/sliders/Slider.mdx":["./packages/form/stories/sliders/Slider.mdx",734,8576,5622,1634,444]};function webpackAsyncContext(req){if(!__webpack_require__.o(map,req))return Promise.resolve().then((()=>{var e=new Error("Cannot find module '"+req+"'");throw e.code="MODULE_NOT_FOUND",e}));var ids=map[req],id=ids[0];return Promise.all(ids.slice(1).map(__webpack_require__.e)).then((()=>__webpack_require__(id)))}webpackAsyncContext.keys=()=>Object.keys(map),webpackAsyncContext.id="./packages lazy recursive ^\\.\\/.*$ include: (?%21.*node_modules)(?:\\/packages(?:\\/(?%21\\.)(?:(?:(?%21(?:^%7C\\/)\\.).)*?)\\/%7C\\/%7C$)stories(?:\\/(?%21\\.)(?:(?:(?%21(?:^%7C\\/)\\.).)*?)\\/%7C\\/%7C$)(?%21\\.)(?=.)[^/]*?\\.mdx)$",module.exports=webpackAsyncContext},"./packages lazy recursive ^\\.\\/.*$ include: (?%21.*node_modules)(?:\\/packages(?:\\/(?%21\\.)(?:(?:(?%21(?:^%7C\\/)\\.).)*?)\\/%7C\\/%7C$)stories(?:\\/(?%21\\.)(?:(?:(?%21(?:^%7C\\/)\\.).)*?)\\/%7C\\/%7C$)(?%21\\.)(?=.)[^/]*?\\.stories\\.(js%7Cjsx%7Cts%7Ctsx))$":(module,__unused_webpack_exports,__webpack_require__)=>{var map={"./chart/stories/ActivityMap.stories":["./packages/chart/stories/ActivityMap.stories.tsx",734,1567,2762,4546,8221],"./chart/stories/ActivityMap.stories.tsx":["./packages/chart/stories/ActivityMap.stories.tsx",734,1567,2762,4546,8221],"./chart/stories/CountSeries.stories":["./packages/chart/stories/CountSeries.stories.tsx",734,1567,2762,4546,1648],"./chart/stories/CountSeries.stories.tsx":["./packages/chart/stories/CountSeries.stories.tsx",734,1567,2762,4546,1648],"./chart/stories/DataSeries.stories":["./packages/chart/stories/DataSeries.stories.tsx",734,1567,2762,4546,3609],"./chart/stories/DataSeries.stories.tsx":["./packages/chart/stories/DataSeries.stories.tsx",734,1567,2762,4546,3609],"./chart/stories/GenericChart.stories":["./packages/chart/stories/GenericChart.stories.tsx",734,2762,4546,2871],"./chart/stories/GenericChart.stories.tsx":["./packages/chart/stories/GenericChart.stories.tsx",734,2762,4546,2871],"./chart/stories/MapSeries.stories":["./packages/chart/stories/MapSeries.stories.tsx",734,1567,2762,4546,7787],"./chart/stories/MapSeries.stories.tsx":["./packages/chart/stories/MapSeries.stories.tsx",734,1567,2762,4546,7787],"./chart/stories/TimeSeries.stories":["./packages/chart/stories/TimeSeries.stories.tsx",734,1567,2762,4546,8506],"./chart/stories/TimeSeries.stories.tsx":["./packages/chart/stories/TimeSeries.stories.tsx",734,1567,2762,4546,8506],"./chart/stories/TimeSlider.stories":["./packages/chart/stories/TimeSlider.stories.tsx",734,1567,2762,4546,666],"./chart/stories/TimeSlider.stories.tsx":["./packages/chart/stories/TimeSlider.stories.tsx",734,1567,2762,4546,666],"./chart/stories/WordBubble.stories":["./packages/chart/stories/WordBubble.stories.tsx",734,1567,2762,4546,1660],"./chart/stories/WordBubble.stories.tsx":["./packages/chart/stories/WordBubble.stories.tsx",734,1567,2762,4546,1660],"./core/stories/0.core/Aside.stories":["./packages/core/stories/0.core/Aside.stories.tsx",1567,5622,2547,5224],"./core/stories/0.core/Aside.stories.tsx":["./packages/core/stories/0.core/Aside.stories.tsx",1567,5622,2547,5224],"./core/stories/0.core/Content.stories":["./packages/core/stories/0.core/Content.stories.tsx",1567,5622,2547,3363],"./core/stories/0.core/Content.stories.tsx":["./packages/core/stories/0.core/Content.stories.tsx",1567,5622,2547,3363],"./core/stories/0.core/ErrorBoundary.stories":["./packages/core/stories/0.core/ErrorBoundary.stories.tsx",2547,8852],"./core/stories/0.core/ErrorBoundary.stories.tsx":["./packages/core/stories/0.core/ErrorBoundary.stories.tsx",2547,8852],"./core/stories/0.core/Page.stories":["./packages/core/stories/0.core/Page.stories.tsx",2547,6253],"./core/stories/0.core/Page.stories.tsx":["./packages/core/stories/0.core/Page.stories.tsx",2547,6253],"./core/stories/0.core/Responsive.stories":["./packages/core/stories/0.core/Responsive.stories.tsx",2547,9050],"./core/stories/0.core/Responsive.stories.tsx":["./packages/core/stories/0.core/Responsive.stories.tsx",2547,9050],"./core/stories/0.core/Section.stories":["./packages/core/stories/0.core/Section.stories.tsx",1567,2547,2977],"./core/stories/0.core/Section.stories.tsx":["./packages/core/stories/0.core/Section.stories.tsx",1567,2547,2977],"./core/stories/0.core/Theme.stories":["./packages/core/stories/0.core/Theme.stories.tsx",1567,9165,8872,2547,3395],"./core/stories/0.core/Theme.stories.tsx":["./packages/core/stories/0.core/Theme.stories.tsx",1567,9165,8872,2547,3395],"./core/stories/0.core/Viewport.stories":["./packages/core/stories/0.core/Viewport.stories.tsx",2547,5998],"./core/stories/0.core/Viewport.stories.tsx":["./packages/core/stories/0.core/Viewport.stories.tsx",2547,5998],"./core/stories/1.typography/Abbr.stories":["./packages/core/stories/1.typography/Abbr.stories.tsx",1567,2547,3866],"./core/stories/1.typography/Abbr.stories.tsx":["./packages/core/stories/1.typography/Abbr.stories.tsx",1567,2547,3866],"./core/stories/1.typography/Anchor.stories":["./packages/core/stories/1.typography/Anchor.stories.tsx",1567,2547,7268],"./core/stories/1.typography/Anchor.stories.tsx":["./packages/core/stories/1.typography/Anchor.stories.tsx",1567,2547,7268],"./core/stories/1.typography/Copy.stories":["./packages/core/stories/1.typography/Copy.stories.tsx",1567,2547,7844],"./core/stories/1.typography/Copy.stories.tsx":["./packages/core/stories/1.typography/Copy.stories.tsx",1567,2547,7844],"./core/stories/1.typography/Mark.stories":["./packages/core/stories/1.typography/Mark.stories.tsx",1567,2547,648],"./core/stories/1.typography/Mark.stories.tsx":["./packages/core/stories/1.typography/Mark.stories.tsx",1567,2547,648],"./core/stories/1.typography/Text.stories":["./packages/core/stories/1.typography/Text.stories.tsx",1567,2547,9690],"./core/stories/1.typography/Text.stories.tsx":["./packages/core/stories/1.typography/Text.stories.tsx",1567,2547,9690],"./core/stories/1.typography/Title.stories":["./packages/core/stories/1.typography/Title.stories.tsx",2547,679],"./core/stories/1.typography/Title.stories.tsx":["./packages/core/stories/1.typography/Title.stories.tsx",2547,679],"./core/stories/components/actionLabel/ActionLabel.stories":["./packages/core/stories/components/actionLabel/ActionLabel.stories.tsx",2547,2307],"./core/stories/components/actionLabel/ActionLabel.stories.tsx":["./packages/core/stories/components/actionLabel/ActionLabel.stories.tsx",2547,2307],"./core/stories/components/animations/Animations.stories":["./packages/core/stories/components/animations/Animations.stories.tsx",2547,1979],"./core/stories/components/animations/Animations.stories.tsx":["./packages/core/stories/components/animations/Animations.stories.tsx",2547,1979],"./core/stories/components/animations/Bars.stories":["./packages/core/stories/components/animations/Bars.stories.tsx",1567,2547,388],"./core/stories/components/animations/Bars.stories.tsx":["./packages/core/stories/components/animations/Bars.stories.tsx",1567,2547,388],"./core/stories/components/animations/Skeleton.stories":["./packages/core/stories/components/animations/Skeleton.stories.tsx",2547,3307],"./core/stories/components/animations/Skeleton.stories.tsx":["./packages/core/stories/components/animations/Skeleton.stories.tsx",2547,3307],"./core/stories/components/animations/Spinner.stories":["./packages/core/stories/components/animations/Spinner.stories.tsx",1567,2547,8145],"./core/stories/components/animations/Spinner.stories.tsx":["./packages/core/stories/components/animations/Spinner.stories.tsx",1567,2547,8145],"./core/stories/components/avatar/Avatar.stories":["./packages/core/stories/components/avatar/Avatar.stories.tsx",1567,5622,2547,6867],"./core/stories/components/avatar/Avatar.stories.tsx":["./packages/core/stories/components/avatar/Avatar.stories.tsx",1567,5622,2547,6867],"./core/stories/components/avatar/AvatarGroup.stories":["./packages/core/stories/components/avatar/AvatarGroup.stories.tsx",1567,2547,1636],"./core/stories/components/avatar/AvatarGroup.stories.tsx":["./packages/core/stories/components/avatar/AvatarGroup.stories.tsx",1567,2547,1636],"./core/stories/components/badge/Badge.stories":["./packages/core/stories/components/badge/Badge.stories.tsx",2547,4111],"./core/stories/components/badge/Badge.stories.tsx":["./packages/core/stories/components/badge/Badge.stories.tsx",2547,4111],"./core/stories/components/breadcrumbs/Breadcrumbs.stories":["./packages/core/stories/components/breadcrumbs/Breadcrumbs.stories.tsx",2547,8391],"./core/stories/components/breadcrumbs/Breadcrumbs.stories.tsx":["./packages/core/stories/components/breadcrumbs/Breadcrumbs.stories.tsx",2547,8391],"./core/stories/components/button/Button.stories":["./packages/core/stories/components/button/Button.stories.tsx",5622,2547,8821],"./core/stories/components/button/Button.stories.tsx":["./packages/core/stories/components/button/Button.stories.tsx",5622,2547,8821],"./core/stories/components/button/ButtonGroup.stories":["./packages/core/stories/components/button/ButtonGroup.stories.tsx",2547,3846],"./core/stories/components/button/ButtonGroup.stories.tsx":["./packages/core/stories/components/button/ButtonGroup.stories.tsx",2547,3846],"./core/stories/components/button/ConfirmButton.stories":["./packages/core/stories/components/button/ConfirmButton.stories.tsx",5622,2547,271],"./core/stories/components/button/ConfirmButton.stories.tsx":["./packages/core/stories/components/button/ConfirmButton.stories.tsx",5622,2547,271],"./core/stories/components/button/Navigator.stories":["./packages/core/stories/components/button/Navigator.stories.tsx",2547,1148],"./core/stories/components/button/Navigator.stories.tsx":["./packages/core/stories/components/button/Navigator.stories.tsx",2547,1148],"./core/stories/components/button/ToggleButtonGroup.stories":["./packages/core/stories/components/button/ToggleButtonGroup.stories.tsx",5622,2547,9194],"./core/stories/components/button/ToggleButtonGroup.stories.tsx":["./packages/core/stories/components/button/ToggleButtonGroup.stories.tsx",5622,2547,9194],"./core/stories/components/callout/Callout.stories":["./packages/core/stories/components/callout/Callout.stories.tsx",1567,2547,3003],"./core/stories/components/callout/Callout.stories.tsx":["./packages/core/stories/components/callout/Callout.stories.tsx",1567,2547,3003],"./core/stories/components/card/Card.stories":["./packages/core/stories/components/card/Card.stories.tsx",1567,5622,2547,573],"./core/stories/components/card/Card.stories.tsx":["./packages/core/stories/components/card/Card.stories.tsx",1567,5622,2547,573],"./core/stories/components/chip/Chip.stories":["./packages/core/stories/components/chip/Chip.stories.tsx",5622,2547,9481],"./core/stories/components/chip/Chip.stories.tsx":["./packages/core/stories/components/chip/Chip.stories.tsx",5622,2547,9481],"./core/stories/components/collapable/Collapsable.stories":["./packages/core/stories/components/collapable/Collapsable.stories.tsx",1567,2547,7934],"./core/stories/components/collapable/Collapsable.stories.tsx":["./packages/core/stories/components/collapable/Collapsable.stories.tsx",1567,2547,7934],"./core/stories/components/dropdown/Dropdown.stories":["./packages/core/stories/components/dropdown/Dropdown.stories.tsx",5622,2547,9627],"./core/stories/components/dropdown/Dropdown.stories.tsx":["./packages/core/stories/components/dropdown/Dropdown.stories.tsx",5622,2547,9627],"./core/stories/components/empty/Empty.stories":["./packages/core/stories/components/empty/Empty.stories.tsx",1567,2547,1427],"./core/stories/components/empty/Empty.stories.tsx":["./packages/core/stories/components/empty/Empty.stories.tsx",1567,2547,1427],"./core/stories/components/icon/Icon.stories":["./packages/core/stories/components/icon/Icon.stories.tsx",5622,2547,6339],"./core/stories/components/icon/Icon.stories.tsx":["./packages/core/stories/components/icon/Icon.stories.tsx",5622,2547,6339],"./core/stories/components/menu/Menu.stories":["./packages/core/stories/components/menu/Menu.stories.tsx",734,8576,5622,2547,8088,6071],"./core/stories/components/menu/Menu.stories.tsx":["./packages/core/stories/components/menu/Menu.stories.tsx",734,8576,5622,2547,8088,6071],"./core/stories/components/meter/Meter.stories":["./packages/core/stories/components/meter/Meter.stories.tsx",2547,5883],"./core/stories/components/meter/Meter.stories.tsx":["./packages/core/stories/components/meter/Meter.stories.tsx",2547,5883],"./core/stories/components/notifications/Alert.stories":["./packages/core/stories/components/notifications/Alert.stories.tsx",1567,2547,5305],"./core/stories/components/notifications/Alert.stories.tsx":["./packages/core/stories/components/notifications/Alert.stories.tsx",1567,2547,5305],"./core/stories/components/notifications/Message.stories":["./packages/core/stories/components/notifications/Message.stories.tsx",1567,2547,334],"./core/stories/components/notifications/Message.stories.tsx":["./packages/core/stories/components/notifications/Message.stories.tsx",1567,2547,334],"./core/stories/components/notifications/Toast.stories":["./packages/core/stories/components/notifications/Toast.stories.tsx",1567,2547,2718],"./core/stories/components/notifications/Toast.stories.tsx":["./packages/core/stories/components/notifications/Toast.stories.tsx",1567,2547,2718],"./core/stories/components/overlays/Flyout.stories":["./packages/core/stories/components/overlays/Flyout.stories.tsx",1567,2547,3681],"./core/stories/components/overlays/Flyout.stories.tsx":["./packages/core/stories/components/overlays/Flyout.stories.tsx",1567,2547,3681],"./core/stories/components/overlays/Modal.stories":["./packages/core/stories/components/overlays/Modal.stories.tsx",1567,2547,5707],"./core/stories/components/overlays/Modal.stories.tsx":["./packages/core/stories/components/overlays/Modal.stories.tsx",1567,2547,5707],"./core/stories/components/panel/Panel.stories":["./packages/core/stories/components/panel/Panel.stories.tsx",1567,5622,2547,3103],"./core/stories/components/panel/Panel.stories.tsx":["./packages/core/stories/components/panel/Panel.stories.tsx",1567,5622,2547,3103],"./core/stories/components/panel/PanelGroup.stories":["./packages/core/stories/components/panel/PanelGroup.stories.tsx",1567,5622,2547,3984],"./core/stories/components/panel/PanelGroup.stories.tsx":["./packages/core/stories/components/panel/PanelGroup.stories.tsx",1567,5622,2547,3984],"./core/stories/components/progress/Circle.stories":["./packages/core/stories/components/progress/Circle.stories.tsx",2547,6846],"./core/stories/components/progress/Circle.stories.tsx":["./packages/core/stories/components/progress/Circle.stories.tsx",2547,6846],"./core/stories/components/progress/Progress.stories":["./packages/core/stories/components/progress/Progress.stories.tsx",2547,2611],"./core/stories/components/progress/Progress.stories.tsx":["./packages/core/stories/components/progress/Progress.stories.tsx",2547,2611],"./core/stories/components/tabPanel/TabPanel.stories":["./packages/core/stories/components/tabPanel/TabPanel.stories.tsx",1567,5622,9711,2547,7355],"./core/stories/components/tabPanel/TabPanel.stories.tsx":["./packages/core/stories/components/tabPanel/TabPanel.stories.tsx",1567,5622,9711,2547,7355],"./core/stories/components/tooltip/Tooltip.stories":["./packages/core/stories/components/tooltip/Tooltip.stories.tsx",2547,5839],"./core/stories/components/tooltip/Tooltip.stories.tsx":["./packages/core/stories/components/tooltip/Tooltip.stories.tsx",2547,5839],"./data/stories/Table.stories":["./packages/data/stories/Table.stories.tsx",734,1567,8576,5737,4750,8088,6100,1127,7240],"./data/stories/Table.stories.tsx":["./packages/data/stories/Table.stories.tsx",734,1567,8576,5737,4750,8088,6100,1127,7240],"./data/stories/TreeView.stories":["./packages/data/stories/TreeView.stories.tsx",734,8576,5737,4750,8088,6100,1127,1323],"./data/stories/TreeView.stories.tsx":["./packages/data/stories/TreeView.stories.tsx",734,8576,5737,4750,8088,6100,1127,1323],"./data/stories/VirtualGallery.stories":["./packages/data/stories/VirtualGallery.stories.tsx",734,1567,8576,5622,5737,4750,8088,6100,1127,4445],"./data/stories/VirtualGallery.stories.tsx":["./packages/data/stories/VirtualGallery.stories.tsx",734,1567,8576,5622,5737,4750,8088,6100,1127,4445],"./data/stories/VirtualList.stories":["./packages/data/stories/VirtualList.stories.tsx",734,1567,8576,5737,4750,8088,6100,1127,729],"./data/stories/VirtualList.stories.tsx":["./packages/data/stories/VirtualList.stories.tsx",734,1567,8576,5737,4750,8088,6100,1127,729],"./data/stories/histogram/Histogram.stories":["./packages/data/stories/histogram/Histogram.stories.tsx",734,1567,8576,5737,4750,8088,6100,1127,5339],"./data/stories/histogram/Histogram.stories.tsx":["./packages/data/stories/histogram/Histogram.stories.tsx",734,1567,8576,5737,4750,8088,6100,1127,5339],"./data/stories/json/JsonViewer.stories":["./packages/data/stories/json/JsonViewer.stories.tsx",734,1567,8576,5737,4750,8088,6100,1127,4139],"./data/stories/json/JsonViewer.stories.tsx":["./packages/data/stories/json/JsonViewer.stories.tsx",734,1567,8576,5737,4750,8088,6100,1127,4139],"./data/stories/useFilteredList/FilteredList.stories":["./packages/data/stories/useFilteredList/FilteredList.stories.tsx",734,8576,5737,4750,8088,6100,1127,840],"./data/stories/useFilteredList/FilteredList.stories.tsx":["./packages/data/stories/useFilteredList/FilteredList.stories.tsx",734,8576,5737,4750,8088,6100,1127,840],"./date/stories/panels/DatePanel.stories":["./packages/date/stories/panels/DatePanel.stories.tsx",734,8576,5737,8088,2487,1888],"./date/stories/panels/DatePanel.stories.tsx":["./packages/date/stories/panels/DatePanel.stories.tsx",734,8576,5737,8088,2487,1888],"./date/stories/panels/RangePanel.stories":["./packages/date/stories/panels/RangePanel.stories.tsx",734,8576,5737,8088,2487,1757],"./date/stories/panels/RangePanel.stories.tsx":["./packages/date/stories/panels/RangePanel.stories.tsx",734,8576,5737,8088,2487,1757],"./date/stories/superdate/Superdate.stories":["./packages/date/stories/superdate/Superdate.stories.tsx",734,8576,5737,8088,2487,8655],"./date/stories/superdate/Superdate.stories.tsx":["./packages/date/stories/superdate/Superdate.stories.tsx",734,8576,5737,8088,2487,8655],"./draw/stories/Playground.stories":["./packages/draw/stories/Playground.stories.tsx",1529,3739,8989],"./draw/stories/Playground.stories.tsx":["./packages/draw/stories/Playground.stories.tsx",1529,3739,8989],"./form/stories/FormBuilder.stories":["./packages/form/stories/FormBuilder.stories.tsx",734,8576,8166,6707,1634,9173],"./form/stories/FormBuilder.stories.tsx":["./packages/form/stories/FormBuilder.stories.tsx",734,8576,8166,6707,1634,9173],"./form/stories/autoComplete/AutoComplete.stories":["./packages/form/stories/autoComplete/AutoComplete.stories.tsx",734,8576,5622,1634,9771],"./form/stories/autoComplete/AutoComplete.stories.tsx":["./packages/form/stories/autoComplete/AutoComplete.stories.tsx",734,8576,5622,1634,9771],"./form/stories/form/ArrayInput.stories":["./packages/form/stories/form/ArrayInput.stories.tsx",734,8576,1634,6012],"./form/stories/form/ArrayInput.stories.tsx":["./packages/form/stories/form/ArrayInput.stories.tsx",734,8576,1634,6012],"./form/stories/form/Form.stories":["./packages/form/stories/form/Form.stories.tsx",734,1567,8576,1634,8735],"./form/stories/form/Form.stories.tsx":["./packages/form/stories/form/Form.stories.tsx",734,1567,8576,1634,8735],"./form/stories/inputs/Checkbox.stories":["./packages/form/stories/inputs/Checkbox.stories.tsx",734,8576,5622,1634,357],"./form/stories/inputs/Checkbox.stories.tsx":["./packages/form/stories/inputs/Checkbox.stories.tsx",734,8576,5622,1634,357],"./form/stories/inputs/ColorInput.stories":["./packages/form/stories/inputs/ColorInput.stories.tsx",734,8576,5622,1634,2121],"./form/stories/inputs/ColorInput.stories.tsx":["./packages/form/stories/inputs/ColorInput.stories.tsx",734,8576,5622,1634,2121],"./form/stories/inputs/File.stories":["./packages/form/stories/inputs/File.stories.tsx",734,8576,5622,6707,1634,5776],"./form/stories/inputs/File.stories.tsx":["./packages/form/stories/inputs/File.stories.tsx",734,8576,5622,6707,1634,5776],"./form/stories/inputs/Input.stories":["./packages/form/stories/inputs/Input.stories.tsx",734,8576,5622,1634,7142],"./form/stories/inputs/Input.stories.tsx":["./packages/form/stories/inputs/Input.stories.tsx",734,8576,5622,1634,7142],"./form/stories/inputs/Number.stories":["./packages/form/stories/inputs/Number.stories.tsx",734,8576,5622,1634,5829],"./form/stories/inputs/Number.stories.tsx":["./packages/form/stories/inputs/Number.stories.tsx",734,8576,5622,1634,5829],"./form/stories/inputs/Others.stories":["./packages/form/stories/inputs/Others.stories.tsx",734,8576,5622,1634,3251],"./form/stories/inputs/Others.stories.tsx":["./packages/form/stories/inputs/Others.stories.tsx",734,8576,5622,1634,3251],"./form/stories/inputs/Password.stories":["./packages/form/stories/inputs/Password.stories.tsx",734,8576,5622,1634,9709],"./form/stories/inputs/Password.stories.tsx":["./packages/form/stories/inputs/Password.stories.tsx",734,8576,5622,1634,9709],"./form/stories/inputs/Radio.stories":["./packages/form/stories/inputs/Radio.stories.tsx",734,8576,5622,1634,2955],"./form/stories/inputs/Radio.stories.tsx":["./packages/form/stories/inputs/Radio.stories.tsx",734,8576,5622,1634,2955],"./form/stories/inputs/Search.stories":["./packages/form/stories/inputs/Search.stories.tsx",734,8576,5622,1634,9466],"./form/stories/inputs/Search.stories.tsx":["./packages/form/stories/inputs/Search.stories.tsx",734,8576,5622,1634,9466],"./form/stories/inputs/Switch.stories":["./packages/form/stories/inputs/Switch.stories.tsx",734,8576,5622,1634,1074],"./form/stories/inputs/Switch.stories.tsx":["./packages/form/stories/inputs/Switch.stories.tsx",734,8576,5622,1634,1074],"./form/stories/inputs/Textarea.stories":["./packages/form/stories/inputs/Textarea.stories.tsx",734,8576,5622,1634,4060],"./form/stories/inputs/Textarea.stories.tsx":["./packages/form/stories/inputs/Textarea.stories.tsx",734,8576,5622,1634,4060],"./form/stories/selects/DualList.stories":["./packages/form/stories/selects/DualList.stories.tsx",734,8576,1634,4056],"./form/stories/selects/DualList.stories.tsx":["./packages/form/stories/selects/DualList.stories.tsx",734,8576,1634,4056],"./form/stories/selects/List.stories":["./packages/form/stories/selects/List.stories.tsx",734,8576,5622,1634,4482],"./form/stories/selects/List.stories.tsx":["./packages/form/stories/selects/List.stories.tsx",734,8576,5622,1634,4482],"./form/stories/selects/Select.stories":["./packages/form/stories/selects/Select.stories.tsx",734,8576,5622,1634,2806],"./form/stories/selects/Select.stories.tsx":["./packages/form/stories/selects/Select.stories.tsx",734,8576,5622,1634,2806],"./form/stories/sliders/Range.stories":["./packages/form/stories/sliders/Range.stories.tsx",734,8576,5622,1634,1200],"./form/stories/sliders/Range.stories.tsx":["./packages/form/stories/sliders/Range.stories.tsx",734,8576,5622,1634,1200],"./form/stories/sliders/Slider.stories":["./packages/form/stories/sliders/Slider.stories.tsx",734,8576,5622,1634,2710],"./form/stories/sliders/Slider.stories.tsx":["./packages/form/stories/sliders/Slider.stories.tsx",734,8576,5622,1634,2710],"./lexical/stories/Playground.stories":["./packages/lexical/stories/Playground.stories.tsx",734,8576,2517,9787,8088,2985],"./lexical/stories/Playground.stories.tsx":["./packages/lexical/stories/Playground.stories.tsx",734,8576,2517,9787,8088,2985],"./mdx/stories/Playground.stories":["./packages/mdx/stories/Playground.stories.tsx",2517,1529,193,1630],"./mdx/stories/Playground.stories.tsx":["./packages/mdx/stories/Playground.stories.tsx",2517,1529,193,1630],"./media/stories/AudioPlayer.stories":["./packages/media/stories/AudioPlayer.stories.tsx",734,8576,377,8088,6879,3707],"./media/stories/AudioPlayer.stories.tsx":["./packages/media/stories/AudioPlayer.stories.tsx",734,8576,377,8088,6879,3707],"./media/stories/Dictation.stories":["./packages/media/stories/Dictation.stories.tsx",734,8576,377,8088,6879,8117],"./media/stories/Dictation.stories.tsx":["./packages/media/stories/Dictation.stories.tsx",734,8576,377,8088,6879,8117],"./media/stories/ImageViewer.stories":["./packages/media/stories/ImageViewer.stories.tsx",734,1567,8576,377,8088,6879,2567],"./media/stories/ImageViewer.stories.tsx":["./packages/media/stories/ImageViewer.stories.tsx",734,1567,8576,377,8088,6879,2567],"./media/stories/Thumbnail.stories":["./packages/media/stories/Thumbnail.stories.tsx",734,1567,8576,377,8088,6879,1130],"./media/stories/Thumbnail.stories.tsx":["./packages/media/stories/Thumbnail.stories.tsx",734,1567,8576,377,8088,6879,1130],"./media/stories/VideoPlayer.stories":["./packages/media/stories/VideoPlayer.stories.tsx",734,8576,377,8088,6879,9016],"./media/stories/VideoPlayer.stories.tsx":["./packages/media/stories/VideoPlayer.stories.tsx",734,8576,377,8088,6879,9016],"./monaco/stories/Playground.stories":["./packages/monaco/stories/Playground.stories.tsx",8166,4],"./monaco/stories/Playground.stories.tsx":["./packages/monaco/stories/Playground.stories.tsx",8166,4],"./searchbar/stories/SearchBar.stories":["./packages/searchbar/stories/SearchBar.stories.tsx",734,8576,5737,8166,8088,6100,5574],"./searchbar/stories/SearchBar.stories.tsx":["./packages/searchbar/stories/SearchBar.stories.tsx",734,8576,5737,8166,8088,6100,5574]};function webpackAsyncContext(req){if(!__webpack_require__.o(map,req))return Promise.resolve().then((()=>{var e=new Error("Cannot find module '"+req+"'");throw e.code="MODULE_NOT_FOUND",e}));var ids=map[req],id=ids[0];return Promise.all(ids.slice(1).map(__webpack_require__.e)).then((()=>__webpack_require__(id)))}webpackAsyncContext.keys=()=>Object.keys(map),webpackAsyncContext.id="./packages lazy recursive ^\\.\\/.*$ include: (?%21.*node_modules)(?:\\/packages(?:\\/(?%21\\.)(?:(?:(?%21(?:^%7C\\/)\\.).)*?)\\/%7C\\/%7C$)stories(?:\\/(?%21\\.)(?:(?:(?%21(?:^%7C\\/)\\.).)*?)\\/%7C\\/%7C$)(?%21\\.)(?=.)[^/]*?\\.stories\\.(js%7Cjsx%7Cts%7Ctsx))$",module.exports=webpackAsyncContext},"./stories lazy recursive ^\\.\\/.*$ include: (?%21.*node_modules)(?:\\/stories(?:\\/(?%21\\.)(?:(?:(?%21(?:^%7C\\/)\\.).)*?)\\/%7C\\/%7C$)(?%21\\.)(?=.)[^/]*?\\.mdx)$":(module,__unused_webpack_exports,__webpack_require__)=>{var map={"./0.Introduction.mdx":["./stories/0.Introduction.mdx",6628],"./1.ColorPalette.mdx":["./stories/1.ColorPalette.mdx",4185],"./2.Iconography.mdx":["./stories/2.Iconography.mdx",2547,213],"./3.Typography.mdx":["./stories/3.Typography.mdx",1567,5594],"./4.ColorCollection.mdx":["./stories/4.ColorCollection.mdx",734,8724,7141]};function webpackAsyncContext(req){if(!__webpack_require__.o(map,req))return Promise.resolve().then((()=>{var e=new Error("Cannot find module '"+req+"'");throw e.code="MODULE_NOT_FOUND",e}));var ids=map[req],id=ids[0];return Promise.all(ids.slice(1).map(__webpack_require__.e)).then((()=>__webpack_require__(id)))}webpackAsyncContext.keys=()=>Object.keys(map),webpackAsyncContext.id="./stories lazy recursive ^\\.\\/.*$ include: (?%21.*node_modules)(?:\\/stories(?:\\/(?%21\\.)(?:(?:(?%21(?:^%7C\\/)\\.).)*?)\\/%7C\\/%7C$)(?%21\\.)(?=.)[^/]*?\\.mdx)$",module.exports=webpackAsyncContext},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAQBAMAAACW+SCeAAAAMFBMVEWMGj2NGz3////x4+e/f5KUKUn48fPKlKS4b4WwYnm8eY2pU2ybN1XcuMPq1dvp1NoxFdFrAAAAAXRSTlP7aonz8gAAAD9JREFUGNNjUAIBtRuBggggwAAR9BHEFFQywaZyIjaV6lgElVuxqXyCTWU1sYJKX7CpnEqsk7A73oTYAEELOgCpoyOl1kutCQAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAQBAMAAACW+SCeAAAAMFBMVEWMGj2NGz3////x4+e/f5KUKUn48fPKlKS4b4WwYnm8eY2pU2ybN1XcuMPq1dvp1NoxFdFrAAAAAXRSTlP7aonz8gAAAD9JREFUGNNjUAIBtRuBggggwAAR9BHEFFQywaZyIjaV6lgElVuxqXyCTWU1sYJKX7CpnEqsk7A73oTYAEELOgCpoyOl1kutCQAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUAQMAAADFiO34AAAABlBMVEWeMDn///+ut+dDAAAAEklEQVQI12NgIBH8BwEsJIkAAKwEE+3AWvguAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUAQMAAADFiO34AAAABlBMVEWeMDn///+ut+dDAAAAEklEQVQI12NgIBH8BwEsJIkAAKwEE+3AWvguAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUAgMAAACCKJcoAAAACVBMVEUAh1H///+q18VeAlDgAAAAFUlEQVQI12NgYGBQDQ2NYICAYcUEAOKRFw2YFuXeAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUAgMAAACCKJcoAAAACVBMVEUAh1H///+q18VeAlDgAAAAFUlEQVQI12NgYGBQDQ2NYICAYcUEAOKRFw2YFuXeAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAD1BMVEX/iD4Wm2L///+y3sv/176zaFdvAAAAF0lEQVQY02MQBANhJTBwYICAUcHBJAgAHJ0eZQMU55UAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAD1BMVEX/iD4Wm2L///+y3sv/176zaFdvAAAAF0lEQVQY02MQBANhJTBwYICAUcHBJAgAHJ0eZQMU55UAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAD1BMVEXNKj5Db03///+Cn4jdcH1rDt86AAAAHklEQVQY02NgGFDgggUwKGEB9BM0xgIYBLEAugkCAA3bITVQzOs7AAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAD1BMVEXNKj5Db03///+Cn4jdcH1rDt86AAAAHklEQVQY02NgGFDgggUwKGEB9BM0xgIYBLEAugkCAA3bITVQzOs7AAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAD1BMVEXZABIAM6DyqACiDTW2iiiq+uFNAAAAHklEQVQY02NgGFBgjAUwCGIB9BN0wQIYlLAAugkCALbdITUesQdRAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAD1BMVEXZABIAM6DyqACiDTW2iiiq+uFNAAAAHklEQVQY02NgGFBgjAUwCGIB9BN0wQIYlLAAugkCALbdITUesQdRAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAElBMVEUAcy8AAAD/AAD///9UVFRVonQ6Np3gAAAAI0lEQVQY02NQAgEGNEBfwVBUABE0RgV0FnRBBRBBQVRAN0EAy7cuKPK5R68AAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAElBMVEUAcy8AAAD/AAD///9UVFRVonQ6Np3gAAAAI0lEQVQY02NQAgEGNEBfwVBUABE0RgV0FnRBBRBBQVRAN0EAy7cuKPK5R68AAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAG1BMVEUAK3/OESYyVJggRY9jfbEQOIeQosfAyt+gsM9en5nHAAAAQElEQVQY02NgAALWABApCAcgHgNbAhZBZgNmDEEnBgYPDEEXBgYjTO0MLAFYBJmxWMSkgEUwvJQYlYJYwJAWBAC4ZRdFtyZb0AAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAG1BMVEUAK3/OESYyVJggRY9jfbEQOIeQosfAyt+gsM9en5nHAAAAQElEQVQY02NgAALWABApCAcgHgNbAhZBZgNmDEEnBgYPDEEXBgYjTO0MLAFYBJmxWMSkgEUwvJQYlYJYwJAWBAC4ZRdFtyZb0AAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAG1BMVEUAc8////9Vot/g7fnv9vx9t+YSfdPS5fao0O4m4Cd/AAAAQUlEQVQY02NgGFCghAUwCEJAI4iQgHKggsIpINLNEEUQCEQD4UyYoCFIUARVUDwZRJoVogiKgLnijlBBrE4aUAAAhVoQix6fUHcAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAG1BMVEUAc8////9Vot/g7fnv9vx9t+YSfdPS5fao0O4m4Cd/AAAAQUlEQVQY02NgGFCghAUwCEJAI4iQgHKggsIpINLNEEUQCEQD4UyYoCFIUARVUDwZRJoVogiKgLnijlBBrE4aUAAAhVoQix6fUHcAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAG1BMVEUjnkYAAADnABMfHx9xcXHAwMAwMDBFRUXPz8+rn9MXAAAALklEQVQY02NQwgIYaCEoiAUQEDRxxhQUbhYuxBAUcRQOTSRKEKt2rBYRdie9AAAq8R55cd7EcAAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAG1BMVEUjnkYAAADnABMfHx9xcXHAwMAwMDBFRUXPz8+rn9MXAAAALklEQVQY02NQwgIYaCEoiAUQEDRxxhQUbhYuxBAUcRQOTSRKEKt2rBYRdie9AAAq8R55cd7EcAAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAIVBMVEUAmbX///8etTqZimSNf5Ifpb5vxNQyrcNOt8qe2ONcvc//sX/oAAAAR0lEQVQY02NgYGBlYAhgQAPsUxkYUhsaUAU5C7Co5AxgaE9NSEAV5ErAopKhqr09IWEBipALFsAgiAXQT9AYC2BQwgLoJggAd5op+8o7j/AAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAIVBMVEUAmbX///8etTqZimSNf5Ifpb5vxNQyrcNOt8qe2ONcvc//sX/oAAAAR0lEQVQY02NgYGBlYAhgQAPsUxkYUhsaUAU5C7Co5AxgaE9NSEAV5ErAopKhqr09IWEBipALFsAgiAXQT9AYC2BQwgLoJggAd5op+8o7j/AAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAIVBMVEXOESYAnkn80RbtkBpFbjwEAAC8DiEjAgaQCxqcDBxVBg4bYLCCAAAAOUlEQVQY02NgAANmJWTAQE/BBGyCC7AJRmAKspWGVmCqZA9NYGARRAYgwaUTMAUz2RowBUFgMAkCAEjfH7SkK65IAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAIVBMVEXOESYAnkn80RbtkBpFbjwEAAC8DiEjAgaQCxqcDBxVBg4bYLCCAAAAOUlEQVQY02NgAANmJWTAQE/BBGyCC7AJRmAKspWGVmCqZA9NYGARRAYgwaUTMAUz2RowBUFgMAkCAEjfH7SkK65IAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAJ1BMVEUAZgDMAAD////aSEhJkkn++N/97bD+88n96aD85pP74YBQlEb/++/JD/WXAAAAUUlEQVQY02MQxAIYaCFojAUwKMGAahCcCRdUSw1LwhAsUi9SxxTUnKSKLqgapJYENxUuGFO1/Ci6oFLFsqx2TNtndCJsd4ECbxeXLTA2A70AAP6jLUlcjKwxAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAJ1BMVEUAZgDMAAD////aSEhJkkn++N/97bD+88n96aD85pP74YBQlEb/++/JD/WXAAAAUUlEQVQY02MQxAIYaCFojAUwKMGAahCcCRdUSw1LwhAsUi9SxxTUnKSKLqgapJYENxUuGFO1/Ci6oFLFsqx2TNtndCJsd4ECbxeXLTA2A70AAP6jLUlcjKwxAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAJFBMVEUAAAD///8Aej3OESbeX21Vpn5BCxEIKRgAUymNCxoAcjnBDyM+gG8gAAAATUlEQVQY02OoUsIEDAxN2ATZF2ERZODAJshQhU0Qw1iwIHsoKgALMgiiAvoKsrmgArDgZGNUABLLNsYU5DTGFGTbjEVwsjGmYDammDEAor02RGMqg7YAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAJFBMVEUAAAD///8Aej3OESbeX21Vpn5BCxEIKRgAUymNCxoAcjnBDyM+gG8gAAAATUlEQVQY02OoUsIEDAxN2ATZF2ERZODAJshQhU0Qw1iwIHsoKgALMgiiAvoKsrmgArDgZGNUABLLNsYU5DTGFGTbjEVwsjGmYDammDEAor02RGMqg7YAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAJFBMVEUAK3/VrC5Qbaf///8qTpTw8vcQOIegsM9geq/f5O9AYJ9wiLd024YBAAAAMklEQVQY02NgGMpAEAvALggCS7wwTWDZOdsBUzDYFFMwI9i0DUOQqdhcAdNQJSWq+hIAYa8IgTmDXnwAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAJFBMVEUAK3/VrC5Qbaf///8qTpTw8vcQOIegsM9geq/f5O9AYJ9wiLd024YBAAAAMklEQVQY02NgGMpAEAvALggCS7wwTWDZOdsBUzDYFFMwI9i0DUOQqdhcAdNQJSWq+hIAYa8IgTmDXnwAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAJFBMVEXBAAD////rq6vwv7/TSkr66OjllJT++vrkkJDFFBTbamrFDw+mCkE3AAAAMUlEQVQY02MQhAIFBiQA5It4YBGU5MIUDLZmMS5EF0wAkoFECWLVjtUi7E7CdPywAwDkmwmBWzMtugAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAJFBMVEXBAAD////rq6vwv7/TSkr66OjllJT++vrkkJDFFBTbamrFDw+mCkE3AAAAMUlEQVQY02MQhAIFBiQA5It4YBGU5MIUDLZmMS5EF0wAkoFECWLVjtUi7E7CdPywAwDkmwmBWzMtugAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAKlBMVEU/nDXtKTkAueR5dTZOiaz1fYf3oajwUl7+6ev2lJz4r7XuNUT7zdH7zNA216A/AAAAOElEQVQY02NQwgIY6CboggUwCEKB5LVwGFMQLhghKF2IIZgmKNqFIZiJTRCrdsljSBYZYwEMAwoA/3cmVGf7nvwAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAKlBMVEU/nDXtKTkAueR5dTZOiaz1fYf3oajwUl7+6ev2lJz4r7XuNUT7zdH7zNA216A/AAAAOElEQVQY02NQwgIY6CboggUwCEKB5LVwGFMQLhghKF2IIZgmKNqFIZiJTRCrdsljSBYZYwEMAwoA/3cmVGf7nvwAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAKlBMVEX////bFhsAgADzsbNKXAnmW17naW3hPEDypaf76+v1urvpen7um53tlZfX+7IwAAAAP0lEQVQY02MQBAEGNCAotjsRU1D4zkJMwa6ZHZiCWZPLMQVF0wMxBU0FgwWNUQGDIBZAZ0EXVAARVEIFdBMEABIJJaFkAQecAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAKlBMVEX////bFhsAgADzsbNKXAnmW17naW3hPEDypaf76+v1urvpen7um53tlZfX+7IwAAAAP0lEQVQY02MQBAEGNCAotjsRU1D4zkJMwa6ZHZiCWZPLMQVF0wMxBU0FgwWNUQGDIBZAZ0EXVAARVEIFdBMEABIJJaFkAQecAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAALVBMVEUAI5X+ywB/d0oQLYvPqxswTKnL0ekQMJuwut5QaLY/Wa8gPqJgdb3///9QWGaw+VaMAAAAeUlEQVQY02NgYGDo4DYRhAEFBigoX7bYEUOQ4ewBE0zB2VODHTEEGcJSTTAFORo2O2IIsldlmWAIMvDcYXbEEOTcGWqCIcjAmgZxAIogzFuoglBvoQpCvYUmCPEWmiDEW+iCYG+hC4K9hS4I9haGIMhbGIIgbz0A0QCx2SL7cD63XgAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAALVBMVEUAI5X+ywB/d0oQLYvPqxswTKnL0ekQMJuwut5QaLY/Wa8gPqJgdb3///9QWGaw+VaMAAAAeUlEQVQY02NgYGDo4DYRhAEFBigoX7bYEUOQ4ewBE0zB2VODHTEEGcJSTTAFORo2O2IIsldlmWAIMvDcYXbEEOTcGWqCIcjAmgZxAIogzFuoglBvoQpCvYUmCPEWmiDEW+iCYG+hC4K9hS4I9haGIMhbGIIgbz0A0QCx2SL7cD63XgAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAALVBMVEUAZrPaIDJJTYf/2QDjTyX2qwzwjBTfNyvmXiHqcRztfRj9zgNIT4j4twn0oA8yAhU1AAAAWklEQVQY02MQBAMhBjA4COExoAgqIgQdsQiKR2BTmY5FUGIbFsEyayyCUlmOmIIiGZgqhSNuOTtiCIaGTsYUDJ+ORWV0GhaVccnYtM8g1iJsTsIRngQEodEBABWyIo6noem1AAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAALVBMVEUAZrPaIDJJTYf/2QDjTyX2qwzwjBTfNyvmXiHqcRztfRj9zgNIT4j4twn0oA8yAhU1AAAAWklEQVQY02MQBAMhBjA4COExoAgqIgQdsQiKR2BTmY5FUGIbFsEyayyCUlmOmIIiGZgqhSNuOTtiCIaGTsYUDJ+ORWV0GhaVccnYtM8g1iJsTsIRngQEodEBABWyIo6noem1AAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAALVBMVEX+0QAAAAAAmzoSDwD4zwHyxgAZoTSYuxeCawCJcQCSuhgeojMfojMhojPVrwBemeiWAAAAgUlEQVQY023RwQ2AIAwF0H+Aq0lXcAq5MYJbmDiAF4+O4A6u4AiO4DpSoWqxPb6U8PkAbm7V7BHoAaUH4NH1ajft+QXEOokNbAS6dfsa46tjthspZGVbSTDrYwVZ0xQTpJAiu2IKmwrZ6uPWRZ9Ii2AwwlvPtApRJtWZJf++44y4AGk2PZ/nYcIzAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAALVBMVEX+0QAAAAAAmzoSDwD4zwHyxgAZoTSYuxeCawCJcQCSuhgeojMfojMhojPVrwBemeiWAAAAgUlEQVQY023RwQ2AIAwF0H+Aq0lXcAq5MYJbmDiAF4+O4A6u4AiO4DpSoWqxPb6U8PkAbm7V7BHoAaUH4NH1ajft+QXEOokNbAS6dfsa46tjthspZGVbSTDrYwVZ0xQTpJAiu2IKmwrZ6uPWRZ9Ii2AwwlvPtApRJtWZJf++44y4AGk2PZ/nYcIzAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAMFBMVEUAXOX/AAD///+/Fzq/1vkoTMF8crqIs/OYjMQQVtavzPcudbsweuqfgbUQZdaPl9PUMJ+YAAAAR0lEQVQY02NQwgIYSBN0L8EU1Ofe0IQhqMv34BKqoIuLi9vxmhQXZMAABKxOKgEM6IAza9kEDEGGiFYGqgJjLIBBEAugmyAAw6IoE6NtAqsAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAMFBMVEUAXOX/AAD///+/Fzq/1vkoTMF8crqIs/OYjMQQVtavzPcudbsweuqfgbUQZdaPl9PUMJ+YAAAAR0lEQVQY02NQwgIYSBN0L8EU1Ofe0IQhqMv34BKqoIuLi9vxmhQXZMAABKxOKgEM6IAza9kEDEGGiFYGqgJjLIBBEAugmyAAw6IoE6NtAqsAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAMFBMVEVWtx//zgASrSvSEDSKSjAAAADYrgDjWCDjVyCzkAB0XQAXEwBrVgCkTiuDaQB3YAAKgYv+AAAAZklEQVQY02NwUsIEDCbYBI2dsAmaYBPEohQoaMuAAYyNjQsF0QBI0BzMEkuEEWBBiFKZgzACIghSKrk1eiKEgApagKRTw2AERLARxPq1DkaABS2w2d6IRRCr452IDRAnYgMZW3QAAIBCN0MOGs4oAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAMFBMVEVWtx//zgASrSvSEDSKSjAAAADYrgDjWCDjVyCzkAB0XQAXEwBrVgCkTiuDaQB3YAAKgYv+AAAAZklEQVQY02NwUsIEDCbYBI2dsAmaYBPEohQoaMuAAYyNjQsF0QBI0BzMEkuEEWBBiFKZgzACIghSKrk1eiKEgApagKRTw2AERLARxPq1DkaABS2w2d6IRRCr452IDRAnYgMZW3QAAIBCN0MOGs4oAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAMFBMVEX51hbOICjzwBjaTiLkeh7gZyDuqRrsnBvVPSTcWSLxtBjRLCf2yxbOHyfmhx3mhh7oX2dPAAAAw0lEQVQY02MwY2CoFgSBA0xgajsDQzKDoBkDkyGIl8AOIoUVGJIFGQSBovwbgVwHFiAh/QEoBhIUnMSwAkhOYAYSXQzKghBBwSAGR0HBBm5BQREGVUGYoGAQW6OgjKLgjQSwGFRQMOio4BVfwRiIGExQMKgivLQdKibIwJXuMrkRyJjKwBAJpCQsXcoWMIABUMacgaEYzscqiFU7VosQTnJEcxLU8RLIjgd5UxbNmygBogkRNGPgQwTdA0jQYQtkbNEBAHgKPmhpzmYhAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUBAMAAAANaGKIAAAAMFBMVEX51hbOICjzwBjaTiLkeh7gZyDuqRrsnBvVPSTcWSLxtBjRLCf2yxbOHyfmhx3mhh7oX2dPAAAAw0lEQVQY02MwY2CoFgSBA0xgajsDQzKDoBkDkyGIl8AOIoUVGJIFGQSBovwbgVwHFiAh/QEoBhIUnMSwAkhOYAYSXQzKghBBwSAGR0HBBm5BQREGVUGYoGAQW6OgjKLgjQSwGFRQMOio4BVfwRiIGExQMKgivLQdKibIwJXuMrkRyJjKwBAJpCQsXcoWMIABUMacgaEYzscqiFU7VosQTnJEcxLU8RLIjgd5UxbNmygBogkRNGPgQwTdA0jQYQtkbNEBAHgKPmhpzmYhAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAA4VBMVEXIEC5nbZnUeo3g5O3////ZWm7xw8oBIWnAyNrGDy3Vf43UfozkuL9gdKH10tcsih+tg3YvjyXgj5jx9PL88PJfc6Htv8jMYnKScFNIgzyyRE1tjVHUoa3YdYbhoq7lrrewxIe7Dirg3rzMuFN7s6H3+PvY3ejWz9y5JDaHeVXCDiuaZVGZZFCHNiyKwIO8HDZ4PSHW6dSOZTK2za3CzJbd266cQTaYoJGIt6W0sXWuPzGdvK+Btsl2SiydqXifj1Kgt4ywm4qIxNrDXUbS09LPfSvSxoTU1qnKTyjApEiNaE+TnmGmAAAA8klEQVQoz73SWXOCMBAH8FUDAeQGQcV6gEp11B7aevTy1vb7f6AmDdAXxvjk/wGys7+ZnQ2AIJYqmEQCkOi7UBREyAttUMrgX6XlwqRZoZAxjHOhRBJ7LkIASNd7fVqzjpwGLsdXVbXVIA+fI8sIofoDGaXI2eh+T9fpaOR6cTaaQK/TsTOIsVYShWKBLsNOyTJl1GieV3YzhWmTXQ+rEvi27nYX8xQy9n/hlCYw+v583y4dhbdM6xB9fZi7Oy60j+HmZx9yofk0PTnOS3tiXoZy3Xh8bc+ex0aV82XkUc2wLKs2AG6GoyCo3sM14f4QN8kvl/oSq3LmixUAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAA4VBMVEXIEC5nbZnUeo3g5O3////ZWm7xw8oBIWnAyNrGDy3Vf43UfozkuL9gdKH10tcsih+tg3YvjyXgj5jx9PL88PJfc6Htv8jMYnKScFNIgzyyRE1tjVHUoa3YdYbhoq7lrrewxIe7Dirg3rzMuFN7s6H3+PvY3ejWz9y5JDaHeVXCDiuaZVGZZFCHNiyKwIO8HDZ4PSHW6dSOZTK2za3CzJbd266cQTaYoJGIt6W0sXWuPzGdvK+Btsl2SiydqXifj1Kgt4ywm4qIxNrDXUbS09LPfSvSxoTU1qnKTyjApEiNaE+TnmGmAAAA8klEQVQoz73SWXOCMBAH8FUDAeQGQcV6gEp11B7aevTy1vb7f6AmDdAXxvjk/wGys7+ZnQ2AIJYqmEQCkOi7UBREyAttUMrgX6XlwqRZoZAxjHOhRBJ7LkIASNd7fVqzjpwGLsdXVbXVIA+fI8sIofoDGaXI2eh+T9fpaOR6cTaaQK/TsTOIsVYShWKBLsNOyTJl1GieV3YzhWmTXQ+rEvi27nYX8xQy9n/hlCYw+v583y4dhbdM6xB9fZi7Oy60j+HmZx9yofk0PTnOS3tiXoZy3Xh8bc+ex0aV82XkUc2wLKs2AG6GoyCo3sM14f4QN8kvl/oSq3LmixUAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAA5FBMVEUBIWlgdKHUeY4JKG3yxs1nbpolP33IEC7AyNrYVmu/x9ng5O3f4+ykgJT6+Pp4g4T88fOKkYj21drZ3Oesq43prjxOTX4FJWvSynVEWYGIf4PDwIDnw2IZNnW9vm7WzYuJoMCbXHIhcTYAWCT+/v5lh5+irLewxt/GOjfhiCvZ2OLfkjZ9lnvZzMkdWCDaztuhsatUe39SeHz13uMxNW/FYFVFXZGfqXUzNnDIbVrHvaCMkJ1bZYDUmGtukG+zsKdBeXtCg1vGkWjNLC4NWiyOfHi/maUAUyDWTTzTpk5HcjhWeT1rSu5WAAAA9klEQVQoz8XQ2XKCMBQG4GAwAZQd3HdQq4B7666tttrl/d+nnKmpdsYB7vrfwMn/TSYJEvksh8IIlArwTadEHt0LFEB/IEwZDqEICjCSCZIkmVNDcylVDE0xw1FiHdmsn/JsoHfCun2lssIJ4PPLa2v3u6MQxlQ0Q6HU1YypCfOlqrbOjlO9npLL8mIqDZfhMvDH1rF8kuU3Gf9h7HluKXn48OzekVwgK9iDA2XQ9nr2O0FxIf1gOAz6CeBkMB4PJvGw2fFHI7/TjGGL0sHqfn51rW1pFglzy1q90W43yoXHXPSWql6uWfXCXFdjD4mLql7E6N/zDVdhFLgxamGzAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAA5FBMVEUBIWlgdKHUeY4JKG3yxs1nbpolP33IEC7AyNrYVmu/x9ng5O3f4+ykgJT6+Pp4g4T88fOKkYj21drZ3Oesq43prjxOTX4FJWvSynVEWYGIf4PDwIDnw2IZNnW9vm7WzYuJoMCbXHIhcTYAWCT+/v5lh5+irLewxt/GOjfhiCvZ2OLfkjZ9lnvZzMkdWCDaztuhsatUe39SeHz13uMxNW/FYFVFXZGfqXUzNnDIbVrHvaCMkJ1bZYDUmGtukG+zsKdBeXtCg1vGkWjNLC4NWiyOfHi/maUAUyDWTTzTpk5HcjhWeT1rSu5WAAAA9klEQVQoz8XQ2XKCMBQG4GAwAZQd3HdQq4B7666tttrl/d+nnKmpdsYB7vrfwMn/TSYJEvksh8IIlArwTadEHt0LFEB/IEwZDqEICjCSCZIkmVNDcylVDE0xw1FiHdmsn/JsoHfCun2lssIJ4PPLa2v3u6MQxlQ0Q6HU1YypCfOlqrbOjlO9npLL8mIqDZfhMvDH1rF8kuU3Gf9h7HluKXn48OzekVwgK9iDA2XQ9nr2O0FxIf1gOAz6CeBkMB4PJvGw2fFHI7/TjGGL0sHqfn51rW1pFglzy1q90W43yoXHXPSWql6uWfXCXFdjD4mLql7E6N/zDVdhFLgxamGzAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAM1BMVEUAr8phuIFvuHYQsb0xs6UfsrE/tZpUt4ovs6b+xQx9umyGu2WfvVJKtpHvwxeQu13PwC6ofxUkAAAAmElEQVQoz6WSwQ7DMAhDAwiwm6Td/3/tDrssSdVFGkf0BMa4lO1yjT3wOuoeKEfugXn43ALgd+Ck0VJSciVF+8j1SrL1hZQ2avQ8SVIwgzG2zEGSTBQbQb2+J0LtMzExa9c6gC8JPXnWdF6Pq1tGJDJdmz8eg0C4ewf0hz0wC02HLPbUJRQV0fTmM4tjJWB/hGI7ZtvB3aw3Td0Ecu+54W4AAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAM1BMVEUAr8phuIFvuHYQsb0xs6UfsrE/tZpUt4ovs6b+xQx9umyGu2WfvVJKtpHvwxeQu13PwC6ofxUkAAAAmElEQVQoz6WSwQ7DMAhDAwiwm6Td/3/tDrssSdVFGkf0BMa4lO1yjT3wOuoeKEfugXn43ALgd+Ck0VJSciVF+8j1SrL1hZQ2avQ8SVIwgzG2zEGSTBQbQb2+J0LtMzExa9c6gC8JPXnWdF6Pq1tGJDJdmz8eg0C4ewf0hz0wC02HLPbUJRQV0fTmM4tjJWB/hGI7ZtvB3aw3Td0Ecu+54W4AAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAM1BMVEVAi3MAN0EAWWgASlYAa34GCwgAHSIAAAAAd4v/xywoVkfvuilfShCAYxa/lSFAMgs/MQvJSo6TAAAAW0lEQVQoz63TuxKAIAxE0agJK77//2ulcqBAb+HWZ4YQFks+o5g0OISKCUIpjRAW6hAqPkZ9YKGLvUVVziN300BpWyFU7D9DePTFLgPXQxcOnxCWgtYMFpd+hRvLVBb8dDVZSQAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAM1BMVEVAi3MAN0EAWWgASlYAa34GCwgAHSIAAAAAd4v/xywoVkfvuilfShCAYxa/lSFAMgs/MQvJSo6TAAAAW0lEQVQoz63TuxKAIAxE0agJK77//2ulcqBAb+HWZ4YQFks+o5g0OISKCUIpjRAW6hAqPkZ9YKGLvUVVziN300BpWyFU7D9DePTFLgPXQxcOnxCWgtYMFpd+hRvLVBb8dDVZSQAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAM1BMVEX/AAD/MDD/EBD/19f/QED/ICD/r6//////wMD/8PD/oKD/YGD/gID/b2//cHD/UFD/kJAQFQNAAAAAgUlEQVQoz62S2woDIQxEj5doou7l/7+2DwXbwupa2nkIjBwyGAa68oW40vdgKUugmUi2BVAOOGQBjADxFtS8A+xZZ6DW5s8CUJpvVYegAcQ+bBzt3r0bR6fPhzTemPzL+jT7dejhLszPY/I0Yjd3NOJW6xaxhVKoLrbn/2AIvzT8AWsMCOs6h1CtAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAM1BMVEX/AAD/MDD/EBD/19f/QED/ICD/r6//////wMD/8PD/oKD/YGD/gID/b2//cHD/UFD/kJAQFQNAAAAAgUlEQVQoz62S2woDIQxEj5doou7l/7+2DwXbwupa2nkIjBwyGAa68oW40vdgKUugmUi2BVAOOGQBjADxFtS8A+xZZ6DW5s8CUJpvVYegAcQ+bBzt3r0bR6fPhzTemPzL+jT7dejhLszPY/I0Yjd3NOJW6xaxhVKoLrbn/2AIvzT8AWsMCOs6h1CtAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAANlBMVEXtHCf+6OrzZGv6uLzxVV3tGiXvLDYCT6Kzssz////1dn381df4pan5srb7x8n1f4XwRk/3mZ5jG2kVAAAAYklEQVQYGaXBixHDIAwFwQME8uNjO/03mxKkSXbxJDwJT+JK4hfDppFQi6rWS8SkhlQGgXPu2ve9J4FS6b2zGwHpQ6eoEViaDJYeAqbRNGsZRGxJOi+xYY/xvysJT8KT8KQv1DYLH0ST+zUAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAANlBMVEXtHCf+6OrzZGv6uLzxVV3tGiXvLDYCT6Kzssz////1dn381df4pan5srb7x8n1f4XwRk/3mZ5jG2kVAAAAYklEQVQYGaXBixHDIAwFwQME8uNjO/03mxKkSXbxJDwJT+JK4hfDppFQi6rWS8SkhlQGgXPu2ve9J4FS6b2zGwHpQ6eoEViaDJYeAqbRNGsZRGxJOi+xYY/xvysJT8KT8KQv1DYLH0ST+zUAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAOVBMVEUAAADzwcY0XzY0BAlAm21AQECfKSzOESb///8Aej3aS1uaDBzRHzL42t2bDBzULkHmh5JkeFpkNDmS7NDKAAAAY0lEQVQoz43QQQ6AIAxE0SLKiIKo9z+sRhqDC+z89UubVjYvXMDqSUhSgKQASQGSoimcU7cPBBY3d1KYTFrhnpM1tUKXCwcTu5o/Rt9zjN0aGIb4k3DshRZTaLMHMuyGHIvxAjjaEhDK4xL+AAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAOVBMVEUAAADzwcY0XzY0BAlAm21AQECfKSzOESb///8Aej3aS1uaDBzRHzL42t2bDBzULkHmh5JkeFpkNDmS7NDKAAAAY0lEQVQoz43QQQ6AIAxE0SLKiIKo9z+sRhqDC+z89UubVjYvXMDqSUhSgKQASQGSoimcU7cPBBY3d1KYTFrhnpM1tUKXCwcTu5o/Rt9zjN0aGIb4k3DshRZTaLMHMuyGHIvxAjjaEhDK4xL+AAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAOVBMVEUAfDDsoqblgYbYQUnaT1bjfIHidHrOFyA0Yyznio/qlZr209XVNT2WeGLfaG6aXUvRJC2bj3fxur4V/dY/AAAAZklEQVQoz63PwRWAIAwDUGrTYgBB3X9YRyAHc/6vaQphbnWf4oRBgYnXmwInk1OBEWRK1XerhwIHBqQx0dFT/VGqNh7RfoVytTxmYGCd+5S8W72KkAhSgpOpwcTrjwKdsKVAwqSLH3bnEGqiS5R6AAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAOVBMVEUAfDDsoqblgYbYQUnaT1bjfIHidHrOFyA0Yyznio/qlZr209XVNT2WeGLfaG6aXUvRJC2bj3fxur4V/dY/AAAAZklEQVQoz63PwRWAIAwDUGrTYgBB3X9YRyAHc/6vaQphbnWf4oRBgYnXmwInk1OBEWRK1XerhwIHBqQx0dFT/VGqNh7RfoVytTxmYGCd+5S8W72KkAhSgpOpwcTrjwKdsKVAwqSLH3bnEGqiS5R6AAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAP1BMVEUhWzMaYsH7/P5Kgs7Fsx29sD8/cpEAUbr80RZYeSsub8WkwOY9ecqKr9/D1u/l7Pfu8/pYjNFwndjG1++zyuq3m5y9AAAAkUlEQVQoz43QyQ7CMAxF0RcHuCVDR/7/W1mEqpVo0nhj2TqSBwEOONJFvJ7DIEi5lDnV2eMtFrMVYDVb6kyCcSutcWwwqWwXwtWKJ1Ygfpp8m/0g83zDpPKXlCC0mITP0QP4T/Z1JuHMAkAwc3UmQYwOwMXYYPsxtIb+wwY7wyY74A3b4S0rsINJnUzqZFIn0xe7Ugy2JSfdKQAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAP1BMVEUhWzMaYsH7/P5Kgs7Fsx29sD8/cpEAUbr80RZYeSsub8WkwOY9ecqKr9/D1u/l7Pfu8/pYjNFwndjG1++zyuq3m5y9AAAAkUlEQVQoz43QyQ7CMAxF0RcHuCVDR/7/W1mEqpVo0nhj2TqSBwEOONJFvJ7DIEi5lDnV2eMtFrMVYDVb6kyCcSutcWwwqWwXwtWKJ1Ygfpp8m/0g83zDpPKXlCC0mITP0QP4T/Z1JuHMAkAwc3UmQYwOwMXYYPsxtIb+wwY7wyY74A3b4S0rsINJnUzqZFIn0xe7Ugy2JSfdKQAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAP1BMVEXqBDerNnXVFUwsmCzsHDRVeMiAV59Bid0SrSv8qChjbi+ZQzPPGjXwOjH6kinzVS7uKTP3fiv1Zi72cS3/vyb+/BJuAAAArElEQVQoz43Q2wLCIAgGYCo6UAGivv+zhq6Vq+n2X3n4BBWej/vptiNQsgfDnC0MbUZ4NhgC8Ai/GZIxUcR+5WknJWUBjAm716iLTBFUyetK984T9H0SQdAMv5lxnUQDUNJyIsBKCq4Dy6W9eUVahcfD5Ty9hZApxQD2X7Ggq6dOgj+CJaNmW0Uf6C0NFLl1LfpC/0IhSdxBDfT2kbtoAUdoAUfoA7dQhXtQyQsr7xFoxTBegwAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAP1BMVEXqBDerNnXVFUwsmCzsHDRVeMiAV59Bid0SrSv8qChjbi+ZQzPPGjXwOjH6kinzVS7uKTP3fiv1Zi72cS3/vyb+/BJuAAAArElEQVQoz43Q2wLCIAgGYCo6UAGivv+zhq6Vq+n2X3n4BBWej/vptiNQsgfDnC0MbUZ4NhgC8Ai/GZIxUcR+5WknJWUBjAm716iLTBFUyetK984T9H0SQdAMv5lxnUQDUNJyIsBKCq4Dy6W9eUVahcfD5Ty9hZApxQD2X7Ggq6dOgj+CJaNmW0Uf6C0NFLl1LfpC/0IhSdxBDfT2kbtoAUdoAUfoA7dQhXtQyQsr7xFoxTBegwAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAPFBMVEX////xw8p8jbLnv8pBWY8OLHHw8vfIEC4BIWnWTGKAkLRAWI5LYZXgeIn10tigrMfheYrx2+Htz9hKYJTy9LpmAAAAqUlEQVQoz8XTQRaDIAwFwC8SLBYE9f53LRVCCbJw1yx8koyiMcJOgFH04tBYUkDXBKnZLkldh4Z2kBnAJ2alO6SVqwrtgiSk9iaQ19EPktwL/RYuQ9c/Et45znB467dUyHAvq3AWgHtccJx+Ev+Ej19G53DBAFu0cc/wu/I2HsEVwA1PhSl1eK4NrxluuGTtJ5QUksmhaCkk68dM1SokGwxuoR0b/Qp5zw/L/xHkHUeiPgAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAPFBMVEX////xw8p8jbLnv8pBWY8OLHHw8vfIEC4BIWnWTGKAkLRAWI5LYZXgeIn10tigrMfheYrx2+Htz9hKYJTy9LpmAAAAqUlEQVQoz8XTQRaDIAwFwC8SLBYE9f53LRVCCbJw1yx8koyiMcJOgFH04tBYUkDXBKnZLkldh4Z2kBnAJ2alO6SVqwrtgiSk9iaQ19EPktwL/RYuQ9c/Et45znB467dUyHAvq3AWgHtccJx+Ev+Ej19G53DBAFu0cc/wu/I2HsEVwA1PhSl1eK4NrxluuGTtJ5QUksmhaCkk68dM1SokGwxuoR0b/Qp5zw/L/xHkHUeiPgAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAPFBMVEXZPz9mADPPNjl+ZDPMAAD///8UEF3mf3/zwMAAAGZQQEb/zAA1K1DYrA/wwAaQcyyggCZgTT+wjR+vjCAG8B+KAAAAg0lEQVQoz63ROxLDIBAEUey1Rm7+SPe/qwMFdrCFCfRSpugqCDhejnAdxX7G73B3XMNWByB0Dd+OAGA1gxRtSNN07QCxlBKnN+ZkgFpKqWk2VGpAtpqq5Wn6LADRus3TqHSAnPXveXQUG1p5cKSfn9kc4eFw009H8GyLwv3uT++LltMf2s0Rk/ZL0FMAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAPFBMVEXZPz9mADPPNjl+ZDPMAAD///8UEF3mf3/zwMAAAGZQQEb/zAA1K1DYrA/wwAaQcyyggCZgTT+wjR+vjCAG8B+KAAAAg0lEQVQoz63ROxLDIBAEUey1Rm7+SPe/qwMFdrCFCfRSpugqCDhejnAdxX7G73B3XMNWByB0Dd+OAGA1gxRtSNN07QCxlBKnN+ZkgFpKqWk2VGpAtpqq5Wn6LADRus3TqHSAnPXveXQUG1p5cKSfn9kc4eFw009H8GyLwv3uT++LltMf2s0Rk/ZL0FMAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAARVBMVEUAAAAiXyxQVDPEFjJAQEDdTGcFZiXSEDT///8AcikAFQcARxmqIjGDNS8AKw8PejUvjFBfp3jv9vHP5Nafyq48Qz7PTmJl4CtHAAAAYElEQVQoz63QNxKAQBADwTm88P7/TyXAZYcCFHfV1C5JWlpDoTWhis6EkpNHkpz8CY38BaVkz6N7oMaliu2FGlYTStP8L3TT7jFhy6K7H97ztdPVWLABBxpZACsL0HiMA+tdEadf53u5AAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAARVBMVEUAAAAiXyxQVDPEFjJAQEDdTGcFZiXSEDT///8AcikAFQcARxmqIjGDNS8AKw8PejUvjFBfp3jv9vHP5Nafyq48Qz7PTmJl4CtHAAAAYElEQVQoz63QNxKAQBADwTm88P7/TyXAZYcCFHfV1C5JWlpDoTWhis6EkpNHkpz8CY38BaVkz6N7oMaliu2FGlYTStP8L3TT7jFhy6K7H97ztdPVWLABBxpZACsL0HiMA+tdEadf53u5AAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAARVBMVEUAIWn5w81QZphpbZkQLnIgPHvsS2nkACvAyNpgdKHicYz////Q1uP99Pd9jbLf4+zg5O0wSoX70trZ3OcQLnGPnbz43OPaT7sJAAAArklEQVQoz7WQ2xaEIAhFyTA0vHSZ+v9PnahlOdlq+TLnRYGNB4GuiRY2GSIjZ9t3DTxJCoIeoESDBXhBBSwwmwVm07xOnon85P0scaqhc3iC9KCziBf3Dubarf3mSsR+Wn+sd+mg08Sx6fpWPmMHud1cFasMS+u5UOfSiwcHqZAWLuh9MzWq5sexSGld1YlhWcKnhgzMoYZThtmoYsKHcbRzRRZjxBJELNuVgv/pC+H0B3jjpdgoAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAARVBMVEUAIWn5w81QZphpbZkQLnIgPHvsS2nkACvAyNpgdKHicYz////Q1uP99Pd9jbLf4+zg5O0wSoX70trZ3OcQLnGPnbz43OPaT7sJAAAArklEQVQoz7WQ2xaEIAhFyTA0vHSZ+v9PnahlOdlq+TLnRYGNB4GuiRY2GSIjZ9t3DTxJCoIeoESDBXhBBSwwmwVm07xOnon85P0scaqhc3iC9KCziBf3Dubarf3mSsR+Wn+sd+mg08Sx6fpWPmMHud1cFasMS+u5UOfSiwcHqZAWLuh9MzWq5sexSGld1YlhWcKnhgzMoYZThtmoYsKHcbRzRRZjxBJELNuVgv/pC+H0B3jjpdgoAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAARVBMVEUAej2lJS6BCheBNy1Vpn5UVFTBEyQAAAD////OESanDR4nZjgnAwdOUjROBg7XPE720tbgaXb88PHRHzLtpa2gSEZbT1DC0kGAAAAAX0lEQVQoz63QRw6AMBAEwcUmDTn//6kITLiZPtDnkka75gqWqWogVN5BKDkKyXyAYP6CUrJl0R6ofihjvVDzAqE0Tv9COk2PWdN498Nb+yp8uzYEvRmBYPaEZPbIM2Y7L4kRqytOrv8AAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAARVBMVEUAej2lJS6BCheBNy1Vpn5UVFTBEyQAAAD////OESanDR4nZjgnAwdOUjROBg7XPE720tbgaXb88PHRHzLtpa2gSEZbT1DC0kGAAAAAX0lEQVQoz63QRw6AMBAEwcUmDTn//6kITLiZPtDnkka75gqWqWogVN5BKDkKyXyAYP6CUrJl0R6ofihjvVDzAqE0Tv9COk2PWdN498Nb+yp8uzYEvRmBYPaEZPbIM2Y7L4kRqytOrv8AAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAS1BMVEUBIWlgdKHg5O3YVmtAWI4fPHswSoXIEC4QLnLAyNryxs3U2eVnbprUeY79+/yKmbq/x9mwutBwgqtQZpigrMf88fP21dpvgar13uPvoiQ3AAAA30lEQVQoz7WR65LDIAiF0SBibKPm1r7/ky6ssU1navbXnsmoB74BJTCM1oAoeB90v92HEb5JE4pWsLkLVMFPjIEfD1kOG3LO8blvk/eTrFFsrplkuaxs0wH6L9L4smAix5RwWS7BWI6eXGJtLYrTtmvrbX9G9RKWWu2uxK4ejB2H+00fU08aw4zv11bTknU8zbmV3iCtWrLVaANXVMDXVH7n5DqTBU72bG3iHknzqYibCbrC03802OegxFdJF0ufY0B3kOQQ+KIkh8DE8sVwhektESdjJtngT81EM/ybfgCcAAmZWoOTDgAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAS1BMVEUBIWlgdKHg5O3YVmtAWI4fPHswSoXIEC4QLnLAyNryxs3U2eVnbprUeY79+/yKmbq/x9mwutBwgqtQZpigrMf88fP21dpvgar13uPvoiQ3AAAA30lEQVQoz7WR65LDIAiF0SBibKPm1r7/ky6ssU1navbXnsmoB74BJTCM1oAoeB90v92HEb5JE4pWsLkLVMFPjIEfD1kOG3LO8blvk/eTrFFsrplkuaxs0wH6L9L4smAix5RwWS7BWI6eXGJtLYrTtmvrbX9G9RKWWu2uxK4ejB2H+00fU08aw4zv11bTknU8zbmV3iCtWrLVaANXVMDXVH7n5DqTBU72bG3iHknzqYibCbrC03802OegxFdJF0ufY0B3kOQQ+KIkh8DE8sVwhektESdjJtngT81EM/ybfgCcAAmZWoOTDgAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAS1BMVEUBIWnUeY7g5O0QLnJobZryxs1gdKHIEC7AyNrYVmsfO3rNd4rMTGQyS4X8+vu/x9n22N1SW42dfJr88fPZ3OdBQHjTXnDMiJvNLkbyVu06AAAAmklEQVQoz92QyQ7DIAxESQgxOwRI2///0uKypFGjiksvnQPY+EmDhwg2rySLA3C8l0kwciUcIFrA1n1BEfzAKD1q7pxL3kcLYPOZcuvaTColOwgX6kN1J2PgyTor2ejROnqfsD+tsHX3dWZiWnCZUtXnUP95U/QNa/EcaHhshTT1boMWOKKv0IIh/yVJx7hd632M1HrQ2vwyyycwywbEVirFRwAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAS1BMVEUBIWnUeY7g5O0QLnJobZryxs1gdKHIEC7AyNrYVmsfO3rNd4rMTGQyS4X8+vu/x9n22N1SW42dfJr88fPZ3OdBQHjTXnDMiJvNLkbyVu06AAAAmklEQVQoz92QyQ7DIAxESQgxOwRI2///0uKypFGjiksvnQPY+EmDhwg2rySLA3C8l0kwciUcIFrA1n1BEfzAKD1q7pxL3kcLYPOZcuvaTColOwgX6kN1J2PgyTor2ejROnqfsD+tsHX3dWZiWnCZUtXnUP95U/QNa/EcaHhshTT1boMWOKKv0IIh/yVJx7hd632M1HrQ2vwyyycwywbEVirFRwAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAASFBMVEXcJB8vJQcPDALvuiP2niP3nyNeRg0AAAD/xyblTSCffBf+/v4QEBDr6+vPoR6bm5vWSB7IgRyrq6swMDBbW1uHh4cuLi5xcXHPnTqaAAAAh0lEQVQoz63TyxLCIAyF4dIaflKg1N58/zd1YdVxUcjCrL+ZTA6Hzs+dbXB3tUH68aYmCH4wUADcFJoUAPoxtCjn+KFBgX0lHbgpVCmw5ZLTa32FQioxls/6S0pacozx+ELRy2Ny2R7v1aKVq5czywr7jUfUFLio6QlFTaUQNdVM9J/FtX6FJ3flBuv74gRDAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAASFBMVEXcJB8vJQcPDALvuiP2niP3nyNeRg0AAAD/xyblTSCffBf+/v4QEBDr6+vPoR6bm5vWSB7IgRyrq6swMDBbW1uHh4cuLi5xcXHPnTqaAAAAh0lEQVQoz63TyxLCIAyF4dIaflKg1N58/zd1YdVxUcjCrL+ZTA6Hzs+dbXB3tUH68aYmCH4wUADcFJoUAPoxtCjn+KFBgX0lHbgpVCmw5ZLTa32FQioxls/6S0pacozx+ELRy2Ny2R7v1aKVq5czywr7jUfUFLio6QlFTaUQNdVM9J/FtX6FJ3flBuv74gRDAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAATlBMVEX////VMEX88PHtp7ANKIjCFDCiGEDPFCsAKo/fYG/43eDSITfnipXzxMmCG1DbTl9nH1waJoI0JHXYQFLwtr10HVdNIWnniZROIWl1HVZ5UILHAAAAb0lEQVQoz43TSRKAIAxE0aDiF8F5vv9FXeBaOutXRXXoWLt00hgcjQjxpwihXUUIobfCfJCYKg2Cq8swZDoNJbh/krH5C5PMrN+y9PNf6mRVRIF12DflaRw4LYy8HiBe2sLFLxRL4W+tZo9WXPUUXqHrEc6IUEytAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAATlBMVEX////VMEX88PHtp7ANKIjCFDCiGEDPFCsAKo/fYG/43eDSITfnipXzxMmCG1DbTl9nH1waJoI0JHXYQFLwtr10HVdNIWnniZROIWl1HVZ5UILHAAAAb0lEQVQoz43TSRKAIAxE0aDiF8F5vv9FXeBaOutXRXXoWLt00hgcjQjxpwihXUUIobfCfJCYKg2Cq8swZDoNJbh/krH5C5PMrN+y9PNf6mRVRIF12DflaRw4LYy8HiBe2sLFLxRL4W+tZo9WXPUUXqHrEc6IUEytAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAUVBMVEXEAwjNnTPENBXDCQnKkzDBJBLEQhnTrjvHfSrIii7EFAvEOhfCSBvFVB52c1LDijDHYSLHdymHek7GaCTQoTWXhzaphj+Xf0OpZTG6gjOegEZoMhC2AAAAj0lEQVQoz63SSRIDMQgDQLDBI7zNPln+/9DcU4ntqkTnvghE02BooqH8CP0YjPse+9ARKaBErg09QlhzQEjwTahminWFmmkTJmFkswwW14TBGLetVrCFNhTm7bqezNIps9i81XqbrdOaAhU5Tyl678CcUI6j4DF3oIIWkYWc770wUpK303wdRYx/n9lnOJgXvZ8Hd+ApatsAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAUVBMVEXEAwjNnTPENBXDCQnKkzDBJBLEQhnTrjvHfSrIii7EFAvEOhfCSBvFVB52c1LDijDHYSLHdymHek7GaCTQoTWXhzaphj+Xf0OpZTG6gjOegEZoMhC2AAAAj0lEQVQoz63SSRIDMQgDQLDBI7zNPln+/9DcU4ntqkTnvghE02BooqH8CP0YjPse+9ARKaBErg09QlhzQEjwTahminWFmmkTJmFkswwW14TBGLetVrCFNhTm7bqezNIps9i81XqbrdOaAhU5Tyl678CcUI6j4DF3oIIWkYWc770wUpK303wdRYx/n9lnOJgXvZ8Hd+ApatsAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAV1BMVEUPR6+FklsaUaFGaojjRhZEnSZ2iGXaEhr83QkHiTAmVp1YdXuipEfOwCgIdlMKZHUVS6qRmlM0X5WzGzaNJVJ4RmN0LGVnL240PJInbm88Y49of3CaoEu2CXfUAAAAnklEQVQoz73Pyw7CIBBG4TODgkJbWnq/vP9zujNSY+vCeBZs/i+ZwP3L+AOsqhir6hxGAIhnULXGBGrVPbxmzWCwgoE5X7i9VgKaRJICZTblsMCKFLYREUtxAC3Y8HyOoQ+b6hb8MSwwyRjbBJPM4ekSkFXsKu+fuWT10CzeLw30+YLLmwDvUabdsIdugLqGwZ1B13bj2LXuHH7o9/ABsVYX6gf7JlYAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAV1BMVEUPR6+FklsaUaFGaojjRhZEnSZ2iGXaEhr83QkHiTAmVp1YdXuipEfOwCgIdlMKZHUVS6qRmlM0X5WzGzaNJVJ4RmN0LGVnL240PJInbm88Y49of3CaoEu2CXfUAAAAnklEQVQoz73Pyw7CIBBG4TODgkJbWnq/vP9zujNSY+vCeBZs/i+ZwP3L+AOsqhir6hxGAIhnULXGBGrVPbxmzWCwgoE5X7i9VgKaRJICZTblsMCKFLYREUtxAC3Y8HyOoQ+b6hb8MSwwyRjbBJPM4ekSkFXsKu+fuWT10CzeLw30+YLLmwDvUabdsIdugLqGwZ1B13bj2LXuHH7o9/ABsVYX6gf7JlYAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAVFBMVEUAlcjYVmvyxs1Ap5YQmbswo6Ignq/IEC4BIWnAyNr89/jUeY7g5O1dr3+/yzJnbppgdKFwtHCjw0j22N3f1BnPzyV/uWT+3QDZ3OePvldfc6FmbZpuQUo4AAAAzklEQVQoz42S2Q6EIAxFUQoojgvgPv//n9OCxpEY8D6Ukp7QDVaUn71C1UrVdPZNUbInUYDQAPrbEDOCzBHcCQxYVcVcZ9DWqNU5rZXSaFe6xy92LRr1oPt7AhjkQInINAXfp9aYFVNr5+6p+SikMZKFZoZPWTQ9NeO9718zxlcXFLBzPAG9CoTLDdg1cELjrjl7JzFuybCEYy1g2xS4LQTC3Il0PuDWE/P0qjqQkIUkAGuXTMO0ixlrFDZdYEsL4VbeBv4kPnKWhc5PE+sHuscKVSzXnS4AAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAVFBMVEUAlcjYVmvyxs1Ap5YQmbswo6Ignq/IEC4BIWnAyNr89/jUeY7g5O1dr3+/yzJnbppgdKFwtHCjw0j22N3f1BnPzyV/uWT+3QDZ3OePvldfc6FmbZpuQUo4AAAAzklEQVQoz42S2Q6EIAxFUQoojgvgPv//n9OCxpEY8D6Ukp7QDVaUn71C1UrVdPZNUbInUYDQAPrbEDOCzBHcCQxYVcVcZ9DWqNU5rZXSaFe6xy92LRr1oPt7AhjkQInINAXfp9aYFVNr5+6p+SikMZKFZoZPWTQ9NeO9718zxlcXFLBzPAG9CoTLDdg1cELjrjl7JzFuybCEYy1g2xS4LQTC3Il0PuDWE/P0qjqQkIUkAGuXTMO0ixlrFDZdYEsL4VbeBv4kPnKWhc5PE+sHuscKVSzXnS4AAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAVFBMVEVmzP+46P8rJhLxyBiZ3f950v/T8f/80RYAAACLzsRfX1+/v7/Pz8+egw2r3eHr5riPj4/MqRGkkT7m7O8QDQGJ0eHd6e8QEBCfn58vLy9fTwiCs6AoQUrkAAAAfElEQVQYGb3BSQ7DIBAEwAYGZgJ43+3//zNWZHELoBxShb8gQh3nUMXGaFFDea9QY922FRVoF9kJZe4QORyKbJBbtChRXs5TvELJJJpZy4QC6mfDbOaekOf0wLdBO2TZ0PBHEyxy1MiPUSGn46RDRms4MS2+W65Xci34yRvvSQUaIFkI4gAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAVFBMVEVmzP+46P8rJhLxyBiZ3f950v/T8f/80RYAAACLzsRfX1+/v7/Pz8+egw2r3eHr5riPj4/MqRGkkT7m7O8QDQGJ0eHd6e8QEBCfn58vLy9fTwiCs6AoQUrkAAAAfElEQVQYGb3BSQ7DIBAEwAYGZgJ43+3//zNWZHELoBxShb8gQh3nUMXGaFFDea9QY922FRVoF9kJZe4QORyKbJBbtChRXs5TvELJJJpZy4QC6mfDbOaekOf0wLdBO2TZ0PBHEyxy1MiPUSGn46RDRms4MS2+W65Xci34yRvvSQUaIFkI4gAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAWlBMVEXEERvxxMa4ExrIIyxVVVVVpn7llpoAAAD///8Aej300tTYYmmeJSbppKj88PDttLefDRV7NyYNczolZjZ6ChANAQElAwVKUjBKBgrPPEX44uPeeH6aSD9cnHcNwNhSAAAAfUlEQVQoz43QSQ6DMBBE0TIE4wEzJCEJ0/2vyWAgC6Sm/tJ6UqmNd5tTAfWHhEh+JASY+Q0y8xES8zgqHnInROdMrAqqN5f+EGmIzhtlRAj4cnkZtE41CxU37UonwfMYpcVjxikTOz78a2/af/tlKdg8LQPvZyMkZjfIzK7NQI0WA0pe9mYAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAWlBMVEXEERvxxMa4ExrIIyxVVVVVpn7llpoAAAD///8Aej300tTYYmmeJSbppKj88PDttLefDRV7NyYNczolZjZ6ChANAQElAwVKUjBKBgrPPEX44uPeeH6aSD9cnHcNwNhSAAAAfUlEQVQoz43QSQ6DMBBE0TIE4wEzJCEJ0/2vyWAgC6Sm/tJ6UqmNd5tTAfWHhEh+JASY+Q0y8xES8zgqHnInROdMrAqqN5f+EGmIzhtlRAj4cnkZtE41CxU37UonwfMYpcVjxikTOz78a2/af/tlKdg8LQPvZyMkZjfIzK7NQI0WA0pe9mYAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAYFBMVEUAaz/THDDGHC4rKytAPTJ+nipAQECAtZ/////80RYqKSSYLC5+nSqkJS6VjoNqQzeTfCveVGOxHyy2IyyNU6QMWjZ+niveSSncSCiJMjSveRBJSDW8QxS7Tm2HZlu1MmlGHhZsAAAAfUlEQVQoz9XTSRLCUAhFUR5Gk4j8/FYT2/3v0jFYVixnOdPLiAIi7zwed0NP604bGIwX5hTW5yZlEdbpI+ytCCmPVxFEF2i05oXxrIDOLlBncQZqY2R2gQ4WK1DbDZldoMFKCiytgyQXqLcCpNyvIggu/L6evxe+iev58gpvCkQKp08QYFcAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAYFBMVEUAaz/THDDGHC4rKytAPTJ+nipAQECAtZ/////80RYqKSSYLC5+nSqkJS6VjoNqQzeTfCveVGOxHyy2IyyNU6QMWjZ+niveSSncSCiJMjSveRBJSDW8QxS7Tm2HZlu1MmlGHhZsAAAAfUlEQVQoz9XTSRLCUAhFUR5Gk4j8/FYT2/3v0jFYVixnOdPLiAIi7zwed0NP604bGIwX5hTW5yZlEdbpI+ytCCmPVxFEF2i05oXxrIDOLlBncQZqY2R2gQ4WK1DbDZldoMFKCiytgyQXqLcCpNyvIggu/L6evxe+iev58gpvCkQKp08QYFcAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAYFBMVEX///9KbYVZdXr83QkHiTASRaUABhDaEhoAAAAPR68HfUUGIVMLNIMKZXQMWYsGhDhaMnamHz+luuHMFCNBOYl0LGQsXbkeUKSUnFFof3A8Y4+yrjzeyhwJb2ANUpcDEiy4e3zXAAAAc0lEQVQoz63QRxKAIBBEUZQRHXPO4f63FKVYCr3wr1/VNIhcJVCCOVMg5CgDIXN+gVBTBUJ9X2GQeWyFq4cEq6F9E39m4B7O00vrzgXDTcrFTh3+gPBp/DHw97zjiopcWVimRAA8fczA6CBCoGechWVKUDcmdhWS10VBkwAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAYFBMVEX///9KbYVZdXr83QkHiTASRaUABhDaEhoAAAAPR68HfUUGIVMLNIMKZXQMWYsGhDhaMnamHz+luuHMFCNBOYl0LGQsXbkeUKSUnFFof3A8Y4+yrjzeyhwJb2ANUpcDEiy4e3zXAAAAc0lEQVQoz63QRxKAIBBEUZQRHXPO4f63FKVYCr3wr1/VNIhcJVCCOVMg5CgDIXN+gVBTBUJ9X2GQeWyFq4cEq6F9E39m4B7O00vrzgXDTcrFTh3+gPBp/DHw97zjiopcWVimRAA8fczA6CBCoGechWVKUDcmdhWS10VBkwAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAb1BMVEUAOKj95Xv/99P+9MT80Rb/+eH+7qfOESb//////PD920j94GH81Sv+65jv8voQRK388fLRHzPF0uz+8bXniJPaTFx/m9NfgsjgandAar6Xrtz+6Ivsn6fzxMkgUbPULkH209f54uTwtbvf5vSvwOSsgxV0AAAAnUlEQVQoz43QxxLCMAxFUTsuekrvCaRS/v8bWYQVw9i66zOyJdXuShb4Xomgy105iSYaBtqbAF69dxlklGMlgIkG8JpiUHuXcZZEvgrA6dymHQAgcCrA+9Rau3gGTFGOAVik1tqlY8AUdU//+3l6bSgAtU+uZbaBKAS/53nMRDEIoO4bksDnQRSBhoFzoFjK5a6eKZ4Crw1J4HaQqA+p8xC4Vz8IHQAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAb1BMVEUAOKj95Xv/99P+9MT80Rb/+eH+7qfOESb//////PD920j94GH81Sv+65jv8voQRK388fLRHzPF0uz+8bXniJPaTFx/m9NfgsjgandAar6Xrtz+6Ivsn6fzxMkgUbPULkH209f54uTwtbvf5vSvwOSsgxV0AAAAnUlEQVQoz43QxxLCMAxFUTsuekrvCaRS/v8bWYQVw9i66zOyJdXuShb4Xomgy105iSYaBtqbAF69dxlklGMlgIkG8JpiUHuXcZZEvgrA6dymHQAgcCrA+9Rau3gGTFGOAVik1tqlY8AUdU//+3l6bSgAtU+uZbaBKAS/53nMRDEIoO4bksDnQRSBhoFzoFjK5a6eKZ4Crw1J4HaQqA+p8xC4Vz8IHQAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAb1BMVEX////cRET20dHdRi8Aej3pjIz//v782FYAP4fWKCjzuE0PSITXLSnszljumEXf7+fkZzitp2X70lQ1lWVObnfaPT2HvaAJfkNeq4S22cj319f1ysrogoKt1MGPxKkRg0lXp35mr4qwj36kj29psIx3kSIwAAAAr0lEQVQoz33N2RaCIBRA0YtToZWRQFk29//fGDLoBcHzvNc6sEU1+81cnVMcYMiQO+xoEvKZnY6UJiEaB9sAsuTWhzy99eA0jmxVAsJxbCuGWwX+OLLVSuWNF1sxZFpNkMW2SDnIl1viKQv1GG9JmUGYG8/bharau3yBGU9bX2nSnQsV6LHdIlW1vbwYYoJxrLekvMaJg3zcGtX2jwixsKlzpRR5d89iJfh+5G+dmP7QIhk7LnKNYwAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAb1BMVEX////cRET20dHdRi8Aej3pjIz//v782FYAP4fWKCjzuE0PSITXLSnszljumEXf7+fkZzitp2X70lQ1lWVObnfaPT2HvaAJfkNeq4S22cj319f1ysrogoKt1MGPxKkRg0lXp35mr4qwj36kj29psIx3kSIwAAAAr0lEQVQoz33N2RaCIBRA0YtToZWRQFk29//fGDLoBcHzvNc6sEU1+81cnVMcYMiQO+xoEvKZnY6UJiEaB9sAsuTWhzy99eA0jmxVAsJxbCuGWwX+OLLVSuWNF1sxZFpNkMW2SDnIl1viKQv1GG9JmUGYG8/bharau3yBGU9bX2nSnQsV6LHdIlW1vbwYYoJxrLekvMaJg3zcGtX2jwixsKlzpRR5d89iJfh+5G+dmP7QIhk7LnKNYwAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAdVBMVEUAIWlgdKHUeY7g5O3yxs3///9nbprIEC7AyNrYVmuZzP//5sD79fe/x9n22N0NK2WLl3nz88z/7M//+e//zoOgtpnZ3Of/oxv/4bORq4mewLbT1J/u787Y27H/uE//2J/Hyoawt35Ya21jdGm4vpf/xnD/8t91fNiSAAAAt0lEQVQoz9WQSRKDIBBFcUBUBhEQZ818/yMGimBlYYlZ5m2g+a+6iwZFmkTAkCOU2zOLixTsYQOrOtFXB6oVD7WcUqoZIxAhwgjRpqS7ItrhR/HK+ThzfvGjDZqYqQhBwpi2tUtqiJ+dgPXWM0rSIs7sZ9zNv9dQLRhvog/der7VaVVYtGL6iD7wC7eqS+a1w51aRhDi8WpbrGQTFO9SQingLSiCpjSEGwJQDWU5VOCM2fenvL/jDaJ7Cj8g7Qw3AAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAdVBMVEUAIWlgdKHUeY7g5O3yxs3///9nbprIEC7AyNrYVmuZzP//5sD79fe/x9n22N0NK2WLl3nz88z/7M//+e//zoOgtpnZ3Of/oxv/4bORq4mewLbT1J/u787Y27H/uE//2J/Hyoawt35Ya21jdGm4vpf/xnD/8t91fNiSAAAAt0lEQVQoz9WQSRKDIBBFcUBUBhEQZ818/yMGimBlYYlZ5m2g+a+6iwZFmkTAkCOU2zOLixTsYQOrOtFXB6oVD7WcUqoZIxAhwgjRpqS7ItrhR/HK+ThzfvGjDZqYqQhBwpi2tUtqiJ+dgPXWM0rSIs7sZ9zNv9dQLRhvog/der7VaVVYtGL6iD7wC7eqS+a1w51aRhDi8WpbrGQTFO9SQingLSiCpjSEGwJQDWU5VOCM2fenvL/jDaJ7Cj8g7Qw3AAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAdVBMVEXUAAAAAACioaDw8PBqAAD/0gD0ngBAgAD///8AZADS0dDCnADaiwPyr6/97+/tk4b41dUQSBAwSjBkaGA5cQChhxDUIhIQEBBmYGBeAAB0aDDnb2/QWzvnuQBoMDBwamCIEBD0v7+rOQDWDw/f39/3qA/dagBgvDPGAAAAh0lEQVQoz42TRxLCMBAEB4nQSA4imWCbDP9/IheulrbPXbW1s7Nym7UJEbZGEb/br8oIwB0WRQRAuNjElPytWuYR4Nse3F15gPenA8I1Lza9FL/S0PjTeT6NoH6NsWoB3HE2iYAhjhUGselifCYoj67h0RaX4Y8lHsAWuP2ExlJYa2YtrvUVfoyrFApCzR7PAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAdVBMVEXUAAAAAACioaDw8PBqAAD/0gD0ngBAgAD///8AZADS0dDCnADaiwPyr6/97+/tk4b41dUQSBAwSjBkaGA5cQChhxDUIhIQEBBmYGBeAAB0aDDnb2/QWzvnuQBoMDBwamCIEBD0v7+rOQDWDw/f39/3qA/dagBgvDPGAAAAh0lEQVQoz42TRxLCMBAEB4nQSA4imWCbDP9/IheulrbPXbW1s7Nym7UJEbZGEb/br8oIwB0WRQRAuNjElPytWuYR4Nse3F15gPenA8I1Lza9FL/S0PjTeT6NoH6NsWoB3HE2iYAhjhUGselifCYoj67h0RaX4Y8lHsAWuP2ExlJYa2YtrvUVfoyrFApCzR7PAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAe1BMVEWNFTquVivxjA2KFDfZhi6miCzDbg3/vikAU07rdADGaTCyTTJ/EDP5pxy0ZCeFETW8bCjvsCX1tCXSiiffmyWfRCvTlh/CcSj5uCWRMyvAfyCiUifamCTroCTRgCqkXh/gqSXqqSXHfSiGJiqVSCLDix3kliuQIzDXkSbhs4zbAAAA8UlEQVQoz42SSXLDIBBFmxCnMxAGCRAg2Zpt3/+EaZQsXLFw+S1gwavfVfQHfBLA4ZA5fmfwfHrd43Qk8fCeefsgXrAJDu5hVfNf/NKMHpz6MxTfLi0/70QgJ14VCCdltNbmAZzDjkhMtbZmWI1v+2Rkm1N3RV7X0Qc0JlUptr1+IE7ae/R+mVnL5ARlkSmXBhMWRlhWFC9d4k1lAlbbT8ty4rqKm5XUZbH39kYsJ0Ld40jG2CyGpouiqLrZsRa1At5V9oEI7AIgwpX+j2EsjqYVZqPLSa4bE867K2RbKWi8EL+nEHy3FE2IxZo9Xdwn+QGnxBrCNL/vUwAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAe1BMVEWNFTquVivxjA2KFDfZhi6miCzDbg3/vikAU07rdADGaTCyTTJ/EDP5pxy0ZCeFETW8bCjvsCX1tCXSiiffmyWfRCvTlh/CcSj5uCWRMyvAfyCiUifamCTroCTRgCqkXh/gqSXqqSXHfSiGJiqVSCLDix3kliuQIzDXkSbhs4zbAAAA8UlEQVQoz42SSXLDIBBFmxCnMxAGCRAg2Zpt3/+EaZQsXLFw+S1gwavfVfQHfBLA4ZA5fmfwfHrd43Qk8fCeefsgXrAJDu5hVfNf/NKMHpz6MxTfLi0/70QgJ14VCCdltNbmAZzDjkhMtbZmWI1v+2Rkm1N3RV7X0Qc0JlUptr1+IE7ae/R+mVnL5ARlkSmXBhMWRlhWFC9d4k1lAlbbT8ty4rqKm5XUZbH39kYsJ0Ld40jG2CyGpouiqLrZsRa1At5V9oEI7AIgwpX+j2EsjqYVZqPLSa4bE867K2RbKWi8EL+nEHy3FE2IxZo9Xdwn+QGnxBrCNL/vUwAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAgVBMVEXv5+oYMHD////GzNy+Z3Hkv8PIEBDesLbFd4C5V2Pz8/eLl7dvfqaMmLhEV4s1SoJSZJTFDg740AB+i68nPXncggLvvwDRXQPIGg23v9NgcJzIJQvorwCpssrVaQXQSgfFGQz1zQDKQwnGLwnfkgDgjQDU2OTYxFDi03vu5rZRY5M4CaL6AAAACnRSTlP8////5PL/8Obhjyud7gAAARFJREFUKM+NkImugjAQRaetgrJVpJtsBcT1/z/wtayKCbxJyCnDSe8M4CwrNo8udZN9t+H7NZNctlIKHsfOqhhftb7V57q8boiOozLOy+znwl/RUXGmlHK2RBU3sixlVqkNsZJc5LngcmPGSrcir+tctLpa/z1ciLMpIfi62Nzy2op1zvVC9PaH484F7Lk98ev5eDxfGIO7Ox723kgg2BYpJnqW3kejJyB0Ck4MoZlRmkaWzDRmAkkiRIMLmei/EXr7hFwCiqJkInRJJmokdMRAFh8ARWEY2oiRNAnDhNpRTCOaCH5qJd+faQZlqTlYaaZNGm6feL/jIfaDwLpF6LAQRSwoCCkCZkboF+nJAP2z/gCvnR084pgM9wAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAgVBMVEXv5+oYMHD////GzNy+Z3Hkv8PIEBDesLbFd4C5V2Pz8/eLl7dvfqaMmLhEV4s1SoJSZJTFDg740AB+i68nPXncggLvvwDRXQPIGg23v9NgcJzIJQvorwCpssrVaQXQSgfFGQz1zQDKQwnGLwnfkgDgjQDU2OTYxFDi03vu5rZRY5M4CaL6AAAACnRSTlP8////5PL/8Obhjyud7gAAARFJREFUKM+NkImugjAQRaetgrJVpJtsBcT1/z/wtayKCbxJyCnDSe8M4CwrNo8udZN9t+H7NZNctlIKHsfOqhhftb7V57q8boiOozLOy+znwl/RUXGmlHK2RBU3sixlVqkNsZJc5LngcmPGSrcir+tctLpa/z1ciLMpIfi62Nzy2op1zvVC9PaH484F7Lk98ev5eDxfGIO7Ox723kgg2BYpJnqW3kejJyB0Ck4MoZlRmkaWzDRmAkkiRIMLmei/EXr7hFwCiqJkInRJJmokdMRAFh8ARWEY2oiRNAnDhNpRTCOaCH5qJd+faQZlqTlYaaZNGm6feL/jIfaDwLpF6LAQRSwoCCkCZkboF+nJAP2z/gCvnR084pgM9wAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAh1BMVEUAKGjXeorg5e2CgV70x8xncplgeaHOESbAytrcV2VSYGD8zxn8+vu/ydlDVGG2oj/9wDoSNGruxh0AnkkzS2TarhtKWWScrjfuvDnIiw7Mxx53eV3mwCTepg5GfDf98fP31dn88fL21djY3uj13uLZ3OYTNGq+fgv8q5OrVBa7ZBb+qoVPrjjs6fq2AAAAtUlEQVQoz92Q2Q6DIBBFR1HRIoL7vrRq9///vkIJTZsYbV97HoDhnjBhwLNMBwQuxq7cbcOzYAkZSFWJulpRpbiquZTSeTrsfYx9sY6ipIsiXuBHMdk9SXRrwej3g2zdD9Msa5WgomiaNEWvNx3T8gxbfkad9D3iN96eSvSh6fG8q4ifOSmJFnWgBy5VldSEXK5tVMMWWUS6jkTZpnhk1T2uWLgpQpDHcR7AFwSMfeUBhCH8JQ/SlAsDOOEqEAAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAh1BMVEUAKGjXeorg5e2CgV70x8xncplgeaHOESbAytrcV2VSYGD8zxn8+vu/ydlDVGG2oj/9wDoSNGruxh0AnkkzS2TarhtKWWScrjfuvDnIiw7Mxx53eV3mwCTepg5GfDf98fP31dn88fL21djY3uj13uLZ3OYTNGq+fgv8q5OrVBa7ZBb+qoVPrjjs6fq2AAAAtUlEQVQoz92Q2Q6DIBBFR1HRIoL7vrRq9///vkIJTZsYbV97HoDhnjBhwLNMBwQuxq7cbcOzYAkZSFWJulpRpbiquZTSeTrsfYx9sY6ipIsiXuBHMdk9SXRrwej3g2zdD9Msa5WgomiaNEWvNx3T8gxbfkad9D3iN96eSvSh6fG8q4ifOSmJFnWgBy5VldSEXK5tVMMWWUS6jkTZpnhk1T2uWLgpQpDHcR7AFwSMfeUBhCH8JQ/SlAsDOOEqEAAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAhFBMVEX/////i4v/aGj/f3//VFT/u7v/QUEXF5b/AABkZLn/bm7/zMx+YaFWM4JgirTvGB2PkbKwbobgT1n1wcclFYxFioSnoLn/EBDfiZOEPHxQlbL/WFj/MDD/q6v/5OSnYZH/MzMfg56yVH6WXB4wp+NCfoj/NDS+UldzI298DFSHeJVeSqKsIk37AAAAj0lEQVQoz8XNxw4DIQxFUQPBkAxM7yWTXv///8Lag8QoWeTKq6cjGfTK4BfYNCtgkp26vn/PWRKA6bF7VtdzXKUBmF/MI47t655TuCHV7c7V1nQHGt4AEQ4IoQQTzJ0IQhlpKXUkg3DEPbobg3Dgkrsbvn+9JRk2cT4xQ3dQNFsgFnYxL6FSZekZfdDbH+EHirAUn8rfZdMAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAhFBMVEX/////i4v/aGj/f3//VFT/u7v/QUEXF5b/AABkZLn/bm7/zMx+YaFWM4JgirTvGB2PkbKwbobgT1n1wcclFYxFioSnoLn/EBDfiZOEPHxQlbL/WFj/MDD/q6v/5OSnYZH/MzMfg56yVH6WXB4wp+NCfoj/NDS+UldzI298DFSHeJVeSqKsIk37AAAAj0lEQVQoz8XNxw4DIQxFUQPBkAxM7yWTXv///8Lag8QoWeTKq6cjGfTK4BfYNCtgkp26vn/PWRKA6bF7VtdzXKUBmF/MI47t655TuCHV7c7V1nQHGt4AEQ4IoQQTzJ0IQhlpKXUkg3DEPbobg3Dgkrsbvn+9JRk2cT4xQ3dQNFsgFnYxL6FSZekZfdDbH+EHirAUn8rfZdMAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAilBMVEXPFCvSzsrc3Nz19fXSfIfKHzTNSVnJESjMEinKLEDHSknAOzvHXmvCHDLTo6jMZnPHU1Tkx8vLln3bx6nFOEnHRVO6e3HIkXXKn6TKn5fLUhrIf4i9cCrGUGDPn4q9Sy3Rho7NLUHVzJLd0ovVv8LLHCXSkZnit7vTqq/z5+jOuYvEp3DCnV/t7e074otqAAAAeUlEQVQYGd3BRwKCMBRAwQcE/g+92Bv27v2vpxeQZOXCGf6X8mF3gIgwYJyq3XadoKvZdMR3Mi/DYxtVsF4KQ9JeJHk1IlfDID1B9niaIsxxsbfgHgWHBAe9RGVtzCbGod63Cqo4VeFZ8ZI0+QIvRZDhJZ7gx8b8whv8pgVlegsDCgAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAilBMVEXPFCvSzsrc3Nz19fXSfIfKHzTNSVnJESjMEinKLEDHSknAOzvHXmvCHDLTo6jMZnPHU1Tkx8vLln3bx6nFOEnHRVO6e3HIkXXKn6TKn5fLUhrIf4i9cCrGUGDPn4q9Sy3Rho7NLUHVzJLd0ovVv8LLHCXSkZnit7vTqq/z5+jOuYvEp3DCnV/t7e074otqAAAAeUlEQVQYGd3BRwKCMBRAwQcE/g+92Bv27v2vpxeQZOXCGf6X8mF3gIgwYJyq3XadoKvZdMR3Mi/DYxtVsF4KQ9JeJHk1IlfDID1B9niaIsxxsbfgHgWHBAe9RGVtzCbGod63Cqo4VeFZ8ZI0+QIvRZDhJZ7gx8b8whv8pgVlegsDCgAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAkFBMVEUARq7hugF2WC2FXz+qozrPqQJwVSXMCS//0gDujw9pTx58XC3wxQChhg0/MBi/nAWzORRrUhh5XR6DZR+HZiiZdAxgYjlaQiGVGRZQPiatYyrSmgF4SQ6sYwrGpADEkQGFgEqvjgoXQY2Ka0Q2TmR1TCnMNBzDfwdycUJlYSqkKRZtaE6hUAxdVxg9S0+YakKn2tOlAAAAhElEQVQoz83SNxLDMAwEQAYDosWoHJwt5/j/37ll4Rmw1NVb4ObAWJyFirLM4rBZQd9ACvSWn2tVAQnzzmN1cAUJcQwhXEROQa7HV98/pDAEtO47QIMStwQ0w/Nzb48SyRu796097XVJQuGuU71Zk2WU2ZVS2BUkLAO64Glb8/m/2X/4A1rfExgCJ78JAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAkFBMVEUARq7hugF2WC2FXz+qozrPqQJwVSXMCS//0gDujw9pTx58XC3wxQChhg0/MBi/nAWzORRrUhh5XR6DZR+HZiiZdAxgYjlaQiGVGRZQPiatYyrSmgF4SQ6sYwrGpADEkQGFgEqvjgoXQY2Ka0Q2TmR1TCnMNBzDfwdycUJlYSqkKRZtaE6hUAxdVxg9S0+YakKn2tOlAAAAhElEQVQoz83SNxLDMAwEQAYDosWoHJwt5/j/37ll4Rmw1NVb4ObAWJyFirLM4rBZQd9ACvSWn2tVAQnzzmN1cAUJcQwhXEROQa7HV98/pDAEtO47QIMStwQ0w/Nzb48SyRu796097XVJQuGuU71Zk2WU2ZVS2BUkLAO64Glb8/m/2X/4A1rfExgCJ78JAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAllBMVEUBIWkrPWOynWf8+vvyxs1nbppgdKHIEC7AyNrYVmu/x9kAIGfg5O3Ueo66pmkVN2dVbm7TeY3f4+z88fP21dpbj4/Z3OcXL2QfRX4CNHZbX2UzYXN2e2utu7k2hKWGhm5Oh46/rXz13uNxmrRdhqCqzMyVpqZ+objP3dodTFuYg1Srl25SdXZZcGwQhbmyjlF1k4CbmI4Wf3HSAAAAv0lEQVQoz93Q1w6DIBQG4AMqOBG3ddTRvdv3f7lK1I7EqL3tfwE58IUTDmiyS6CJSqkqdsXSZBiK4rS0hYKZBGCECjjKVF3Xw9r3JEqlZg2bUh+EdCA/QiNCSYIio2/dJJQ8X7T2/DoUdXuDMH4UDKPXm8SVNUcRnyGmrFlKf44YqyrM0Bfrx/NJbc4vGed2B1v2HrigHSzKYFleFzAV+4bvQbCchsYRn9NDakxCyE55vl3DjOz2mxXMShzDX+YJ/VkMBuOm1OEAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAllBMVEUBIWkrPWOynWf8+vvyxs1nbppgdKHIEC7AyNrYVmu/x9kAIGfg5O3Ueo66pmkVN2dVbm7TeY3f4+z88fP21dpbj4/Z3OcXL2QfRX4CNHZbX2UzYXN2e2utu7k2hKWGhm5Oh46/rXz13uNxmrRdhqCqzMyVpqZ+objP3dodTFuYg1Srl25SdXZZcGwQhbmyjlF1k4CbmI4Wf3HSAAAAv0lEQVQoz93Q1w6DIBQG4AMqOBG3ddTRvdv3f7lK1I7EqL3tfwE58IUTDmiyS6CJSqkqdsXSZBiK4rS0hYKZBGCECjjKVF3Xw9r3JEqlZg2bUh+EdCA/QiNCSYIio2/dJJQ8X7T2/DoUdXuDMH4UDKPXm8SVNUcRnyGmrFlKf44YqyrM0Bfrx/NJbc4vGed2B1v2HrigHSzKYFleFzAV+4bvQbCchsYRn9NDakxCyE55vl3DjOz2mxXMShzDX+YJ/VkMBuOm1OEAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAArlBMVEX////39/e/U1jPAAn8/PzHAAnjY2raAAzpZm3UAAsAAACbAQXQGAny8vL09PS4AArVRk64GyNVAAHCOAnFfIAbBACiExmvAAaRAQejAATOmp2+io27Jwa9RwbCcnfbxcbTuru5JizFbnLQq63ksbThrrAuAADESE7TuLnCICmnTB13AAR+OQCtMDe6NjvLMjtiAALdIge5bQbDYAjITgq2VwGSP0KTPkS9AAi3cnZPTm/iAAAAy0lEQVQoz53P1xKCMBAF0BQSTAJSpKP0Yhe7/v+P+czABMb7mD2TuwvAn1EAgBBCAJQJl5VbdD6jbZlNSKdFsRARap2J6gpf4jCMLriagLV9irsuOtm1fMW0aN5f23ZeTZHKllSS3LN2lrWzvDyRXqNjRjBjmDCsS7uXjBAWBIwQtpRD7Aqf80/gYjnUCT8IzsWBE2k1RIbhe8ej5xsGgv3ZohdKqWnu96ZJKe1PgDqItnlqw9cRqLprdR58rOZB7T4Trm9zf9xcR+APFrAUctS1tzYAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAArlBMVEX////39/e/U1jPAAn8/PzHAAnjY2raAAzpZm3UAAsAAACbAQXQGAny8vL09PS4AArVRk64GyNVAAHCOAnFfIAbBACiExmvAAaRAQejAATOmp2+io27Jwa9RwbCcnfbxcbTuru5JizFbnLQq63ksbThrrAuAADESE7TuLnCICmnTB13AAR+OQCtMDe6NjvLMjtiAALdIge5bQbDYAjITgq2VwGSP0KTPkS9AAi3cnZPTm/iAAAAy0lEQVQoz53P1xKCMBAF0BQSTAJSpKP0Yhe7/v+P+czABMb7mD2TuwvAn1EAgBBCAJQJl5VbdD6jbZlNSKdFsRARap2J6gpf4jCMLriagLV9irsuOtm1fMW0aN5f23ZeTZHKllSS3LN2lrWzvDyRXqNjRjBjmDCsS7uXjBAWBIwQtpRD7Aqf80/gYjnUCT8IzsWBE2k1RIbhe8ej5xsGgv3ZohdKqWnu96ZJKe1PgDqItnlqw9cRqLprdR58rOZB7T4Trm9zf9xcR+APFrAUctS1tzYAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAArlBMVEX////EKTjjmJ87IQ52CjqlDinCITEAAGYYAl1GBkzWZnHmo6n33+LUYWzknqTv7+/z1tn12tzSXWg0HQ2TeThBIw+akYj+/f3y0tV7XBbRWWVTNidCKhhrMxTW1NLe2dOTg3XGvrfLyMWunnZtWC+xsbHu7OdcMx5LJxFDMCbU0cl6WkhwY1rPwJimfhnj3Mepqam4trRkUkN5akOpijeOaxGObBR+dGbKwKKwmVwJBAHeAAAAzUlEQVQoz5XS5w6CMBQF4Kt1r6oUENnDwXaP938xgcgIKVjPr5J8acq5F4YMGY17fWBBncl0BkwoDQMyfaMBZmi+WGU36b56MCkwRYMcARiyqh5lvQYztO4uIQ8+HBGPOHm306ARpdE4PnGcIpz2UKBtdyNCLVbgIgW5OD03oiSihYWLgtD5F4Rb8rsCHxQ9Ut+XkIiQN5Gc0KsWTsMaWB5xbHsPtHrKDiGWCH7p34+2qcTSQ7pHV2icdTnn0Hg6NmZdCmiFzGv21+JW8QewIBq5Sg9RSgAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAArlBMVEX////EKTjjmJ87IQ52CjqlDinCITEAAGYYAl1GBkzWZnHmo6n33+LUYWzknqTv7+/z1tn12tzSXWg0HQ2TeThBIw+akYj+/f3y0tV7XBbRWWVTNidCKhhrMxTW1NLe2dOTg3XGvrfLyMWunnZtWC+xsbHu7OdcMx5LJxFDMCbU0cl6WkhwY1rPwJimfhnj3Mepqam4trRkUkN5akOpijeOaxGObBR+dGbKwKKwmVwJBAHeAAAAzUlEQVQoz5XS5w6CMBQF4Kt1r6oUENnDwXaP938xgcgIKVjPr5J8acq5F4YMGY17fWBBncl0BkwoDQMyfaMBZmi+WGU36b56MCkwRYMcARiyqh5lvQYztO4uIQ8+HBGPOHm306ARpdE4PnGcIpz2UKBtdyNCLVbgIgW5OD03oiSihYWLgtD5F4Rb8rsCHxQ9Ut+XkIiQN5Gc0KsWTsMaWB5xbHsPtHrKDiGWCH7p34+2qcTSQ7pHV2icdTnn0Hg6NmZdCmiFzGv21+JW8QewIBq5Sg9RSgAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAtFBMVEUBIWnyxs1nbppgdKEAor0AIGfYVmvIEC7AyNoAnrkuZ5M+VYqmPwb8+vu/x9kbN3b22N3g5O3Ueo7TeY3f4+yYRBP88fMsh47Z3OcAmrNldYmAh4ZtgpF9aD1Jg3wJkIsPehwFfzouSIE2XY8AdYkAUV6acFKITyhSaB9AV1e4YwAAiaARWWeqRxRwkI9eV1RwqJM/pIQtSTQgY2xwqXsReisAjWNVIwAwkFZVflocm6FHYRSUXZUeAAAA0klEQVQoz9XQxxKDIBQF0GdFElRMYje9997//78CgzFZGFnnLmAenJk7AKbS0oDFQsjiu9owFSiL2hRUQM48DaCCcljJLMdxIkoDGyGbrREbnVKISiJujDwyWIsxHi0xjut5NUtkB5RXB5RGfBYQ6+P5dqXj+rtcaylmU+WP0TzFbKj5MYP6ZtctoGDv7/miHB5v+wIK9vlwTgvYOXW/qn+EwUe7f5HDYdi5H879MHQl0J0Scu09SduQQEgJWfRmfiJz4Kb+2p9kUgcGDLLEhT/KC0hSDxL08Yr9AAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAtFBMVEUBIWnyxs1nbppgdKEAor0AIGfYVmvIEC7AyNoAnrkuZ5M+VYqmPwb8+vu/x9kbN3b22N3g5O3Ueo7TeY3f4+yYRBP88fMsh47Z3OcAmrNldYmAh4ZtgpF9aD1Jg3wJkIsPehwFfzouSIE2XY8AdYkAUV6acFKITyhSaB9AV1e4YwAAiaARWWeqRxRwkI9eV1RwqJM/pIQtSTQgY2xwqXsReisAjWNVIwAwkFZVflocm6FHYRSUXZUeAAAA0klEQVQoz9XQxxKDIBQF0GdFElRMYje9997//78CgzFZGFnnLmAenJk7AKbS0oDFQsjiu9owFSiL2hRUQM48DaCCcljJLMdxIkoDGyGbrREbnVKISiJujDwyWIsxHi0xjut5NUtkB5RXB5RGfBYQ6+P5dqXj+rtcaylmU+WP0TzFbKj5MYP6ZtctoGDv7/miHB5v+wIK9vlwTgvYOXW/qn+EwUe7f5HDYdi5H879MHQl0J0Scu09SduQQEgJWfRmfiJz4Kb+2p9kUgcGDLLEhT/KC0hSDxL08Yr9AAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAvVBMVEVps+fyxs2OiqtgdKFhptbTeo3YVmvIEC4BIWnAyNrg5O3kiJVnbpq/yNn7+vtmr+PWS2HZ3efAQhf88fP21drIRVpsrt1voM2buM5mbZrEWQ/YhHzUegjw8PCx3cXijJrJiIbLkXTZvADN49bPLkjTiJD13uN/uOF+uOCo0Mi1FySjyFRgrIHF0NnHUBLIgYjY2NiF1ZrPsHa5iXDYcBHOhgXknQFIt3uZz7HLYFhdyI6P16/Y0M27zb3c8uYVHlLLAAAA20lEQVQoz9XQxxLCIBAGYKIQjEgCKfZuYu+9v/9jGYSMF0a8+h+Anf0YZgG2VcwX0jgYO2IvIdsCuoiGoBLKSguzpoDZJS10KKV8GAYuxm668rSkWog1eTe8nIpngND3D77frE+hejoNd4NQPB2EQy5qCbf1fv/Y3C9hNky+aNmoJIZ5n2pqGNjode1Lr7tTULLseySV8HxrJ8n11FZQss+HCyrh4D4g5PloQfA9MGIsjlkUGeGq02GMNJAJegu3RchmRj0DBGO+JmQ+GQFjylWEqmXwSyoV8E95AQvtEN53dkXyAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAvVBMVEVps+fyxs2OiqtgdKFhptbTeo3YVmvIEC4BIWnAyNrg5O3kiJVnbpq/yNn7+vtmr+PWS2HZ3efAQhf88fP21drIRVpsrt1voM2buM5mbZrEWQ/YhHzUegjw8PCx3cXijJrJiIbLkXTZvADN49bPLkjTiJD13uN/uOF+uOCo0Mi1FySjyFRgrIHF0NnHUBLIgYjY2NiF1ZrPsHa5iXDYcBHOhgXknQFIt3uZz7HLYFhdyI6P16/Y0M27zb3c8uYVHlLLAAAA20lEQVQoz9XQxxLCIBAGYKIQjEgCKfZuYu+9v/9jGYSMF0a8+h+Anf0YZgG2VcwX0jgYO2IvIdsCuoiGoBLKSguzpoDZJS10KKV8GAYuxm668rSkWog1eTe8nIpngND3D77frE+hejoNd4NQPB2EQy5qCbf1fv/Y3C9hNky+aNmoJIZ5n2pqGNjode1Lr7tTULLseySV8HxrJ8n11FZQss+HCyrh4D4g5PloQfA9MGIsjlkUGeGq02GMNJAJegu3RchmRj0DBGO+JmQ+GQFjylWEqmXwSyoV8E95AQvtEN53dkXyAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAz1BMVEUBIWkeaiHUeY4+VYnyxs1nbpo9VIrIEC7AyNrYVms+VYoPLXEtcSMAXCVgdKENZCa/x9ng5O37/P378vTf4+weOnj21dqHiYjPu37Z3Odfc6HltDmYlIPKnSG6tIhthiXTrEGhlGf99/iGljx8jSYydT6IqI6Ikyc4cyJ3n4JPg0YtbDUcbz8bYydcgiXL2M3LzsG5y7yYtqH13uNhbYPXrDm7kR6rm26ogRvAqGNJXiTUsE9QfiNcfEEpbSpviinHxbe2zcDi5OBYjGGSrXzI51XpAAAA80lEQVQoz7XQyZKCMBAG4ETQsCQEQQXc930p911ndN7/mSY9kKo5UOTkf0jo9FfpIsjUS1UkYhBiwJ7PmTpKCzSAxhCqooNQBgWYyQzXdaNtxfcI6Yo1EqWbCklK/hp2IYmtgBambHHBnGnJaJHI8ytdQsS6jaBOYAsPOrxFNTncKelmLg8/4xThKzm28AgPV7O+hDGTz/OPWvT22KzvSzlaNuSDA40hG882X3zMNJQdi+Pl+sVGVAW1RR+v/OlTeaM9pfjbm9BBWQGbYY+/f+a9Zmhnul3tcB7O+SRs1ALF6Hr7dG039nXVaEGDYydQs4/nFxTcFD++Tcb9AAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAAAz1BMVEUBIWkeaiHUeY4+VYnyxs1nbpo9VIrIEC7AyNrYVms+VYoPLXEtcSMAXCVgdKENZCa/x9ng5O37/P378vTf4+weOnj21dqHiYjPu37Z3Odfc6HltDmYlIPKnSG6tIhthiXTrEGhlGf99/iGljx8jSYydT6IqI6Ikyc4cyJ3n4JPg0YtbDUcbz8bYydcgiXL2M3LzsG5y7yYtqH13uNhbYPXrDm7kR6rm26ogRvAqGNJXiTUsE9QfiNcfEEpbSpviinHxbe2zcDi5OBYjGGSrXzI51XpAAAA80lEQVQoz7XQyZKCMBAG4ETQsCQEQQXc930p911ndN7/mSY9kKo5UOTkf0jo9FfpIsjUS1UkYhBiwJ7PmTpKCzSAxhCqooNQBgWYyQzXdaNtxfcI6Yo1EqWbCklK/hp2IYmtgBambHHBnGnJaJHI8ytdQsS6jaBOYAsPOrxFNTncKelmLg8/4xThKzm28AgPV7O+hDGTz/OPWvT22KzvSzlaNuSDA40hG882X3zMNJQdi+Pl+sVGVAW1RR+v/OlTeaM9pfjbm9BBWQGbYY+/f+a9Zmhnul3tcB7O+SRs1ALF6Hr7dG039nXVaEGDYydQs4/nFxTcFD++Tcb9AAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAABC1BMVEUBIWlnbpoRPkkFKV7yxs1gdKHUeY7IEC7AyNrYVmsQK2QCbsY8TlEKMlVcZkP8+vu/x9ng5O0sZCunoiy3rShRZD8fUDhdiBzf4+wBI2P88fMLLVx/hDT21doxcCMiWTAmXS9DajANW3mDkSd9nkORq1oDJWQeN1ycnCoSOVJDXT0tQlczQWxmbZpBdCXIuyQ1YlZkeDansRVfY3F+emk/iZHY3ej13uPZ2+ZIV00WRkEpIFxNLkVAS3BrckNIUWt6fj1Kfx41Xy/YxyAyU0FseVtScTZEVVWRpRkySk9Jfh1xkzJ4lxhrgD1pbFaMfnUeaH2utBVlWlNJaFSkuoSKf3oge6bt8OxBiYdXl17vAAABKklEQVQoz7WS13LCMBBFFxtjcMcVN0xzqKG3VNJ77///JZHsEM9kGPkp90HS3T2aXe0ICtkSA0h5ls3jPZMrZGGTcAKjMYhdkQEgoBj8i9HiVmLyiqIsF74js6yM1jmyyjonmvt7vyC7QTguGAC91eQAgHJJIKerLvTOpxwIXpmOSiPNZcfHpR1/scQehW06CILL+4szXdPon06ZUraQy+DHMEV02o7bU8uUO32pV7tHA41LsPV4ErR9MqpLjw91U9Sk6GqMJQPHaJS41hvD98lr32wCUd7A4Pnwg69RaocIVswKP3sL+aeR1CKCYpXiG5/hrNZpSURQODW+rLHVqKkVm9zkoXBbfr45Hu7SkCKJuruy+pyRxoEnVMdWW99JBbvoP9jQ5OCf9A3qch0S+mTgLwAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAABC1BMVEUBIWlnbpoRPkkFKV7yxs1gdKHUeY7IEC7AyNrYVmsQK2QCbsY8TlEKMlVcZkP8+vu/x9ng5O0sZCunoiy3rShRZD8fUDhdiBzf4+wBI2P88fMLLVx/hDT21doxcCMiWTAmXS9DajANW3mDkSd9nkORq1oDJWQeN1ycnCoSOVJDXT0tQlczQWxmbZpBdCXIuyQ1YlZkeDansRVfY3F+emk/iZHY3ej13uPZ2+ZIV00WRkEpIFxNLkVAS3BrckNIUWt6fj1Kfx41Xy/YxyAyU0FseVtScTZEVVWRpRkySk9Jfh1xkzJ4lxhrgD1pbFaMfnUeaH2utBVlWlNJaFSkuoSKf3oge6bt8OxBiYdXl17vAAABKklEQVQoz7WS13LCMBBFFxtjcMcVN0xzqKG3VNJ77///JZHsEM9kGPkp90HS3T2aXe0ICtkSA0h5ls3jPZMrZGGTcAKjMYhdkQEgoBj8i9HiVmLyiqIsF74js6yM1jmyyjonmvt7vyC7QTguGAC91eQAgHJJIKerLvTOpxwIXpmOSiPNZcfHpR1/scQehW06CILL+4szXdPon06ZUraQy+DHMEV02o7bU8uUO32pV7tHA41LsPV4ErR9MqpLjw91U9Sk6GqMJQPHaJS41hvD98lr32wCUd7A4Pnwg69RaocIVswKP3sL+aeR1CKCYpXiG5/hrNZpSURQODW+rLHVqKkVm9zkoXBbfr45Hu7SkCKJuruy+pyRxoEnVMdWW99JBbvoP9jQ5OCf9A3qch0S+mTgLwAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAABR1BMVEX34BdnCRRPBQzzxMn67Gn55kL88PEAAAD///8JBgPWMiHhaXbQFCj9+c2Yig378pzMuRL+/foQDwYtKgn77nmMjIvx1xbkfB3hax1BBAvqlZ0aAgT54eP20tZcBxA6NQX//vQcHBpSUk/19fVnXQlpZDT78JE+Pj51dXX34R7+/On66Va0tLT44yelpaX++9ztrBrdWx389bGyPBqhRlCuEx2lLxjnh5KyJhyjGRsoDwT998Sllg/45DM6OCHq6upyaAr03RZiYmKYmJi+vr7BwcGkmTwsLCzPz8/ZxBTCsBL89r1GPwaPgg3886l5bguwihJcVAjZ2dncpxc0BAnYq6/CDyPBexXmjD/ro2ORbg7IUBzXTx/jdoGTLxdjIQ6DIy7XPE7sn6jHx8ftpa3keIRtCBRZEw6GPkZjHyZSRkfw8PC1DiE//erTAAABIUlEQVQYGY3B1XLCABAAwIveJRR3d3eXKnV3d/f/fy6UyUygHcguaGYTQBsis97ICzARDYSmE/wsjEMqma1ENg8ATvgHjcpULs7z8Fc4Yl+Okprv8cZXrNiyaRiCfWuLS+tm+uVvTvXo/ERU3LUJaVCgQkqmCiciiZzuRafjfCRy1GPWG3kB+lAtwHzWcl9+juhZ9HhIEdIbeViNz0mokL4DDOLHu/2p6XkQSQ16uiZDzCphH8O0vcgGsNO+rxUOSQUUjs2dAyuy7Fur88p4W3duFtGSTOXmaQCGOM4ubxtyvS433F43DoQj9pUoEYwoyfL1VbVaPj1GNWscRjhKLper7HQe7e9tW1AFxtmYWQhacAAmMhliQQkRtDEZQJsu/ADqTiXJks3I9QAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUCAMAAADImI+JAAABR1BMVEX34BdnCRRPBQzzxMn67Gn55kL88PEAAAD///8JBgPWMiHhaXbQFCj9+c2Yig378pzMuRL+/foQDwYtKgn77nmMjIvx1xbkfB3hax1BBAvqlZ0aAgT54eP20tZcBxA6NQX//vQcHBpSUk/19fVnXQlpZDT78JE+Pj51dXX34R7+/On66Va0tLT44yelpaX++9ztrBrdWx389bGyPBqhRlCuEx2lLxjnh5KyJhyjGRsoDwT998Sllg/45DM6OCHq6upyaAr03RZiYmKYmJi+vr7BwcGkmTwsLCzPz8/ZxBTCsBL89r1GPwaPgg3886l5bguwihJcVAjZ2dncpxc0BAnYq6/CDyPBexXmjD/ro2ORbg7IUBzXTx/jdoGTLxdjIQ6DIy7XPE7sn6jHx8ftpa3keIRtCBRZEw6GPkZjHyZSRkfw8PC1DiE//erTAAABIUlEQVQYGY3B1XLCABAAwIveJRR3d3eXKnV3d/f/fy6UyUygHcguaGYTQBsis97ICzARDYSmE/wsjEMqma1ENg8ATvgHjcpULs7z8Fc4Yl+Okprv8cZXrNiyaRiCfWuLS+tm+uVvTvXo/ERU3LUJaVCgQkqmCiciiZzuRafjfCRy1GPWG3kB+lAtwHzWcl9+juhZ9HhIEdIbeViNz0mokL4DDOLHu/2p6XkQSQ16uiZDzCphH8O0vcgGsNO+rxUOSQUUjs2dAyuy7Fur88p4W3duFtGSTOXmaQCGOM4ubxtyvS433F43DoQj9pUoEYwoyfL1VbVaPj1GNWscRjhKLper7HQe7e9tW1AFxtmYWQhacAAmMhliQQkRtDEZQJsu/ADqTiXJks3I9QAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAVBAMAAADGNLEtAAAAG1BMVEV1st3n8vqIvOJ9tt/9/v6y1Ou+2+/T5/Sy1Oyb02ibAAAAP0lEQVQY02NgIB0wKWARDBTFImjijEXQtJmBbMAEoVAdwJgMItUEUARLwFxGd8IqsZpJErAIJtbvWEOJiRyrAdYMBYZuZK7lAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAVBAMAAADGNLEtAAAAG1BMVEV1st3n8vqIvOJ9tt/9/v6y1Ou+2+/T5/Sy1Oyb02ibAAAAP0lEQVQY02NgIB0wKWARDBTFImjijEXQtJmBbMAEoVAdwJgMItUEUARLwFxGd8IqsZpJErAIJtbvWEOJiRyrAdYMBYZuZK7lAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAVBAMAAADGNLEtAAAALVBMVEXGWWb////YkZo8O27ZkJmyIjRUU4BIR3fsyMzsyM21nbBzcpdgX4mUlLCFhKRMRAwAAAAAiklEQVQY02MwMy5ONjM3Tg5FAgzWZembQdgFCTCYX6+1OX691lgQCTDYmSU/BmEGZGB8vcrmMFAliqCtzeHHIIyi3RhoJkilEhJgsE5L2wzCKE4y25adlrYtOxlFuznYldbFM5EAgx3QEhBG0b4KCjqQAIMgFsAQigUwuGAB2LUTD7BqV8ICsDoJABuIZ60LUleQAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAVBAMAAADGNLEtAAAALVBMVEXGWWb////YkZo8O27ZkJmyIjRUU4BIR3fsyMzsyM21nbBzcpdgX4mUlLCFhKRMRAwAAAAAiklEQVQY02MwMy5ONjM3Tg5FAgzWZembQdgFCTCYX6+1OX691lgQCTDYmSU/BmEGZGB8vcrmMFAliqCtzeHHIIyi3RhoJkilEhJgsE5L2wzCKE4y25adlrYtOxlFuznYldbFM5EAgx3QEhBG0b4KCjqQAIMgFsAQigUwuGAB2LUTD7BqV8ICsDoJABuIZ60LUleQAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAVCAMAAAADxFwsAAAANlBMVEXfhZhkUX1TH1NMaJXvwszvwssAKGjPR2P///+/CjBqgaZ9kbLO1uIYPHZmaZLp7PGdrMSaZ4i5Qx90AAAAWUlEQVQoz8XQOQ6AMAxEUZPAj7Ox3P+yVGmtoeLVI/nLxpJqyD4NG0DzkAGMDJx7yCBf7mMqp7s7kErIgHv2rDWC1Ci+Z1sei7nIZFVkh0hvLKI/G+XT6vAF+EQWV9KTaOcAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAVCAMAAAADxFwsAAAANlBMVEXfhZhkUX1TH1NMaJXvwszvwssAKGjPR2P///+/CjBqgaZ9kbLO1uIYPHZmaZLp7PGdrMSaZ4i5Qx90AAAAWUlEQVQoz8XQOQ6AMAxEUZPAj7Ox3P+yVGmtoeLVI/nLxpJqyD4NG0DzkAGMDJx7yCBf7mMqp7s7kErIgHv2rDWC1Ci+Z1sei7nIZFVkh0hvLKI/G+XT6vAF+EQWV9KTaOcAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAVCAMAAAADxFwsAAAAeFBMVEXCHzmW0OxmN2t3w8MNKHaS2/xePXLGIDgAKXvGITmQPGGQTmpsTH6IQGpka51wO2xAocE0qF5ovayF1Oevx+KBW3mahqe8mUjQxGkJh9h/n5iyuXuXtrSJgqiIsbNXmmeSpJZNn9a/h5e7oblqrNiVxsm05P0sdJ7LAldAAAAACHRSTlP9/////////V+qNIUAAABxSURBVCjPzdM3EoAwDARAB8mYDCbnDP//IS9gpJKrt7hREJ7PiieEZUX8C0IcAAvGWgYcqFyea0NDmIrF6RpIqCTOBaIiYYrlXh6YktDIW67XaOiOybk9XUJ3tKbPsibizDEa2pC3mSqEv1/PB+T+zAtTThsh36bO6AAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAVCAMAAAADxFwsAAAAeFBMVEXCHzmW0OxmN2t3w8MNKHaS2/xePXLGIDgAKXvGITmQPGGQTmpsTH6IQGpka51wO2xAocE0qF5ovayF1Oevx+KBW3mahqe8mUjQxGkJh9h/n5iyuXuXtrSJgqiIsbNXmmeSpJZNn9a/h5e7oblqrNiVxsm05P0sdJ7LAldAAAAACHRSTlP9/////////V+qNIUAAABxSURBVCjPzdM3EoAwDARAB8mYDCbnDP//IS9gpJKrt7hREJ7PiieEZUX8C0IcAAvGWgYcqFyea0NDmIrF6RpIqCTOBaIiYYrlXh6YktDIW67XaOiOybk9XUJ3tKbPsibizDEa2pC3mSqEv1/PB+T+zAtTThsh36bO6AAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAVCAMAAAADxFwsAAAAzFBMVEX////bdAEwRXMgUaAwXadQd7U/aq4AOJPddQAPQ5mQqNDx8/kSPYeaYyywwd6/zuSFXDpfg7sDO5Xg5/L3+fuAnMlykcPeewzFpYXV0tN0WEXp7PLXcwP8/f4aP4IlQnuQXzOlZSTd3OCkuNhIcLKasNRqi8DToGrTehh7WkHdhSLKspvVcgXUllTc4+/j5OnCt7C9k2rLxsfWiDEfQH7w8fO4yOE5ZavHjVHPwbXCfze+qpmKpM2ytcGWh4ByiLAaTJ4jU6LH0+fS3OzDb4x6AAABE0lEQVQoz43T2VbCMBAG4ECTtFlsbaEFWyuKCriALO4bLu//TnaSJqeA1eYqF99J5p9JkNtotU9QM+Z5DWB7z/MsZNT5k5XQwYQTyupZbzzUkPgi4Jjtshawy6s7hAA6NCg2HY432UCz6QFSC+rjHdj5YVUOjoH1+jcIGegyAieKGG+z1VO3VPcjVSMcKYLQBr9VbFze2fXDonoFGY79hFDD9lsQIFNKnBKdUfeROYnJfARsusxBZednkbnFTMayQxNg9voQVcJtjBDYai4K9R1v9aoKZcEWEOAr+dydkYXy4nrykqE8GH38OnNk2eMy141w66FMJ/2hbUQtlOnzfFZpRA2U6eKN0+jf54ve17jRr/kBh1Mh+Hah75sAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAVCAMAAAADxFwsAAAAzFBMVEX////bdAEwRXMgUaAwXadQd7U/aq4AOJPddQAPQ5mQqNDx8/kSPYeaYyywwd6/zuSFXDpfg7sDO5Xg5/L3+fuAnMlykcPeewzFpYXV0tN0WEXp7PLXcwP8/f4aP4IlQnuQXzOlZSTd3OCkuNhIcLKasNRqi8DToGrTehh7WkHdhSLKspvVcgXUllTc4+/j5OnCt7C9k2rLxsfWiDEfQH7w8fO4yOE5ZavHjVHPwbXCfze+qpmKpM2ytcGWh4ByiLAaTJ4jU6LH0+fS3OzDb4x6AAABE0lEQVQoz43T2VbCMBAG4ECTtFlsbaEFWyuKCriALO4bLu//TnaSJqeA1eYqF99J5p9JkNtotU9QM+Z5DWB7z/MsZNT5k5XQwYQTyupZbzzUkPgi4Jjtshawy6s7hAA6NCg2HY432UCz6QFSC+rjHdj5YVUOjoH1+jcIGegyAieKGG+z1VO3VPcjVSMcKYLQBr9VbFze2fXDonoFGY79hFDD9lsQIFNKnBKdUfeROYnJfARsusxBZednkbnFTMayQxNg9voQVcJtjBDYai4K9R1v9aoKZcEWEOAr+dydkYXy4nrykqE8GH38OnNk2eMy141w66FMJ/2hbUQtlOnzfFZpRA2U6eKN0+jf54ve17jRr/kBh1Mh+Hah75sAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAWCAMAAACFUC6CAAAAM1BMVEUAOKj6+vrk8dC0u7b1ycbo6OjP0dD////VKx6/zene3t7J5c67yOTwxcK31MKdxKuKvZtVfUrjAAAAUElEQVQoz+2PwRKAIAgFEYIU1Pr/r807THKvPe7szAOoSeCb4eEZI5BwOliEvfUhk5DyPixyId5S9iFNw5kI14lmnJhepWr0TPP0Hkj4eeMBpwIRWct/suEAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAWCAMAAACFUC6CAAAAM1BMVEUAOKj6+vrk8dC0u7b1ycbo6OjP0dD////VKx6/zene3t7J5c67yOTwxcK31MKdxKuKvZtVfUrjAAAAUElEQVQoz+2PwRKAIAgFEYIU1Pr/r807THKvPe7szAOoSeCb4eEZI5BwOliEvfUhk5DyPixyId5S9iFNw5kI14lmnJhepWr0TPP0Hkj4eeMBpwIRWct/suEAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAXCAMAAABODP0nAAAAUVBMVEXaAACe1KvjRUXxmZnaAAAjn0DwkZHfJibsd3f////kSkpduHOo2LRfunQkn0FYtW7jPz/ujIyj1q/0sLCY0ab62dn2v7/zqKhDrVyMy5r97++GuGN/AAAACXRSTlP9/////////f2Mg7y3AAAAiklEQVQoz92PsRKEIAxEg9xFISIII6j//6EXQKuzSO2SzJuwWySwfEVa4FXB3ZEnIu/cDd/AXeEaiHY4ZhWVmtuLF+L/fIAR6iG4lbJJgjrlnJIgmFEXzIJgwsQl2jEE0Y7GnOfT1ZNG1KhXBt7ACu61GxUTjMNgA5e1FTwwqvinG90fAT4iwauCP4TbGUYnV3DMAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAXCAMAAABODP0nAAAAUVBMVEXaAACe1KvjRUXxmZnaAAAjn0DwkZHfJibsd3f////kSkpduHOo2LRfunQkn0FYtW7jPz/ujIyj1q/0sLCY0ab62dn2v7/zqKhDrVyMy5r97++GuGN/AAAACXRSTlP9/////////f2Mg7y3AAAAiklEQVQoz92PsRKEIAxEg9xFISIII6j//6EXQKuzSO2SzJuwWySwfEVa4FXB3ZEnIu/cDd/AXeEaiHY4ZhWVmtuLF+L/fIAR6iG4lbJJgjrlnJIgmFEXzIJgwsQl2jEE0Y7GnOfT1ZNG1KhXBt7ACu61GxUTjMNgA5e1FTwwqvinG90fAT4iwauCP4TbGUYnV3DMAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAXCAMAAABODP0nAAAAWlBMVEX//////O//9s/X6rsAR6sBR6v/+d////8/dL////+i0ZWXx4HM5bDp6dqhyLelvrRzvIL7662uxs7v8MKL0Iv/88Krwanv8/pmr6uEtrUtnaR3uGldpqiAzICRExgrAAAACHRSTlP+/////////dElM2YAAABfSURBVCjP7dJJDoAwCAXQQhW1gx2cp/tf071NhL3+JXmLD0FVstTqm7AVRqnuGZgIi2FTQlo8eOQhuZxS1shC6Odow0UsRLPu52aA7+iOPthBsAzoOGoqofiO/z++wRtv/hV0LCDfBAAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAXCAMAAABODP0nAAAAWlBMVEX//////O//9s/X6rsAR6sBR6v/+d////8/dL////+i0ZWXx4HM5bDp6dqhyLelvrRzvIL7662uxs7v8MKL0Iv/88Krwanv8/pmr6uEtrUtnaR3uGldpqiAzICRExgrAAAACHRSTlP+/////////dElM2YAAABfSURBVCjP7dJJDoAwCAXQQhW1gx2cp/tf071NhL3+JXmLD0FVstTqm7AVRqnuGZgIi2FTQlo8eOQhuZxS1shC6Odow0UsRLPu52aA7+iOPthBsAzoOGoqofiO/z++wRtv/hV0LCDfBAAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAXCAMAAABODP0nAAAAilBMVEXNECXm5deCXUG7pXHvrrWqzMHIyKX////OESYAaEfu7+TW1LVuQiZkRDKoeVT39fKwtYr169e1zsS6vZXR0redhm9ooKGljINbnp7e387n1cfcrq3T0a2x1NvI6OanbEJ1VEDauXjYup+KubrAkWd8vMe3mH66sKfrubKOoKTOtoSklWRKkI9sWEt0Xo6XAAAAAXRSTlP89O1mUQAAAHdJREFUKM9j4EQGrOxIgIUDCTAwjCqEKBRUkmeSIkKhjKIKHy8PP0GFgozMQHU8ooRN5NZiYlJjUuAioFBYQwRooq66uDABhSJCEprK2qLijGwEFHJxc6lK6IiJcTMScqMkmxwzsywbG2HP8AsISQswjiYz0hQCAOOXHtBwW44mAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAXCAMAAABODP0nAAAAilBMVEXNECXm5deCXUG7pXHvrrWqzMHIyKX////OESYAaEfu7+TW1LVuQiZkRDKoeVT39fKwtYr169e1zsS6vZXR0redhm9ooKGljINbnp7e387n1cfcrq3T0a2x1NvI6OanbEJ1VEDauXjYup+KubrAkWd8vMe3mH66sKfrubKOoKTOtoSklWRKkI9sWEt0Xo6XAAAAAXRSTlP89O1mUQAAAHdJREFUKM9j4EQGrOxIgIUDCTAwjCqEKBRUkmeSIkKhjKIKHy8PP0GFgozMQHU8ooRN5NZiYlJjUuAioFBYQwRooq66uDABhSJCEprK2qLijGwEFHJxc6lK6IiJcTMScqMkmxwzsywbG2HP8AsISQswjiYz0hQCAOOXHtBwW44mAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYAgMAAAD16ldTAAAACVBMVEUAlm7WJhL////BTf+eAAAAFUlEQVQY02NYBQcMVGXSCoTCAVWZADw2T7GdUBaTAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYAgMAAAD16ldTAAAACVBMVEUAlm7WJhL////BTf+eAAAAFUlEQVQY02NYBQcMVGXSCoTCAVWZADw2T7GdUBaTAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYAgMAAAD16ldTAAAACVBMVEXBJy0AakT9uRO6V9nyAAAAFUlEQVQY02NYBQcMVGWGwgF1mTQCAF49T7GuEQs4AAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYAgMAAAD16ldTAAAACVBMVEXBJy0AakT9uRO6V9nyAAAAFUlEQVQY02NYBQcMVGWGwgF1mTQCAF49T7GuEQs4AAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYAgMAAAD16ldTAAAACVBMVEXdAAAAAAD/zgCNyoGDAAAAFUlEQVQY02MIhQMGqjJpBVbBAVWZAPgZT7HoYeqNAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYAgMAAAD16ldTAAAACVBMVEXdAAAAAAD/zgCNyoGDAAAAFUlEQVQY02MIhQMGqjJpBVbBAVWZAPgZT7HoYeqNAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYAgMAAAD16ldTAAAACVBMVEXtKTkAod7///8YqkgeAAAAFUlEQVQY02NgoBFYBQfUZYbCAVWZAPgZT7EeR7VTAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYAgMAAAD16ldTAAAACVBMVEXtKTkAod7///8YqkgeAAAAFUlEQVQY02NgoBFYBQfUZYbCAVWZAPgZT7EeR7VTAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYBAMAAAB6qqLzAAAAFVBMVEUANYC5x9z///8cS444YZwANIC6yN25wbmkAAAAMElEQVQY02NQAgFlBgYWJQRgGISCiYJAIMzAwCwIB2IMYMDKQAJgpaIgVicNkfAEANoyJ4DL1EUnAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYBAMAAAB6qqLzAAAAFVBMVEUANYC5x9z///8cS444YZwANIC6yN25wbmkAAAAMElEQVQY02NQAgFlBgYWJQRgGISCiYJAIMzAwCwIB2IMYMDKQAJgpaIgVicNkfAEANoyJ4DL1EUnAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYBAMAAAB6qqLzAAAAGFBMVEUAak70KkHlLUGyOkRrTUd6SkcuXksfYUzbDaCgAAAAUklEQVQY02NgoB1INVIOQxdjERQUFHJAEzQECgoKYyoEAlSliRBBNRTBQIigKKaR6IYqQgSFCAti1Y7VoiSIoDphx2P1JgOLIpYAAQVdOAMtAQB5kwuiqFX2NgAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYBAMAAAB6qqLzAAAAGFBMVEUAak70KkHlLUGyOkRrTUd6SkcuXksfYUzbDaCgAAAAUklEQVQY02NgoB1INVIOQxdjERQUFHJAEzQECgoKYyoEAlSliRBBNRTBQIigKKaR6IYqQgSFCAti1Y7VoiSIoDphx2P1JgOLIpYAAQVdOAMtAQB5kwuiqFX2NgAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYBAMAAAB6qqLzAAAAJ1BMVEXOESb////20tb88PHtpq7hb3zfZHLXPU7QHzLRHzPXPE7wtLvplp+6qWJJAAAAZElEQVQY02MQBAG1BgYUABYUNFmARVDQFIug6gRMwe0MWMxEMxKqXSgDm0VqmILC7li0n8RmEZqRUDOFvbAJumPRHolF+wlsFqEZicfx6IZCAqQAi/Zd2CxCjyQ80YFmKLYoAgD8YhWfwKLYOwAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYBAMAAAB6qqLzAAAAJ1BMVEXOESb////20tb88PHtpq7hb3zfZHLXPU7QHzLRHzPXPE7wtLvplp+6qWJJAAAAZElEQVQY02MQBAG1BgYUABYUNFmARVDQFIug6gRMwe0MWMxEMxKqXSgDm0VqmILC7li0n8RmEZqRUDOFvbAJumPRHolF+wlsFqEZicfx6IZCAqQAi/Zd2CxCjyQ80YFmKLYoAgD8YhWfwKLYOwAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYBAMAAAB6qqLzAAAAMFBMVEX/AAD/sAD/UAD/oAD/cAD/QAD/wAD/kAD/8AD/MAD/YAD/4AD/gAD/GAD/0AD//wDINHCxAAAAgklEQVQY02NgoDfg1FK9gCG2xlC4FF30UnZbxkNNNMGFG0+0SGehivHWmZTOWfwmAEWQVUI6MmhjswKqoNgTpxC3xAUogkxi6ubFJYloKi18zn850oxqJufpEvnP7s/RHLpsu6NJtRCaOyfZtWVs00UT5A0XFj41Ad3zvEGLJtA9FgCBRSUPxoTUWgAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYBAMAAAB6qqLzAAAAMFBMVEX/AAD/sAD/UAD/oAD/cAD/QAD/wAD/kAD/8AD/MAD/YAD/4AD/gAD/GAD/0AD//wDINHCxAAAAgklEQVQY02NgoDfg1FK9gCG2xlC4FF30UnZbxkNNNMGFG0+0SGehivHWmZTOWfwmAEWQVUI6MmhjswKqoNgTpxC3xAUogkxi6ubFJYloKi18zn850oxqJufpEvnP7s/RHLpsu6NJtRCaOyfZtWVs00UT5A0XFj41Ad3zvEGLJtA9FgCBRSUPxoTUWgAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAA7VBMVEXZDxm71quuz5ugxor////w8O9RULB3ElcXFpYlJJyIuWu51KnT5MqrzJbM4b66wNWkxpZ3fLeyy6vG3rq92K3T29uZvXnq2dLEwqzx5eDn6upxfKpyfaukw5pOVKW3zrSlwaGmt7jDpZXCoH7B27ORamCnu4LRuaTl8N/i3MPc6tRzrl3y4KPx15d/r069ydXLvpexvMeZupF8e8Pw39fp3diRt4TK28efloSKfm2yhWRuPDCwoIeRq2DExOSwu8bc1Kypsonb3ZxhlzBhmjwZdcf5+vvNzN6/wYjYypvD0t5+roqxqJogesuuqH05DYSvAAAA0klEQVQoz63TVRKDQBAEUGR3k2WRAEGTihF3d3e//3Fyg4FK0d/vq6eH42JPImK4ZMT8D+momJoVdRoGSYEJTVUxDQJDwotlxZaksioQCNKCgOZVuxos6mxIAZhhjVrA7I1UKblmFoAaG5eWNW+/XlUmogbAPEPY8ZxO28FITgHQYAj73rXd8UOgJiKM/WevgTHiBwDMCvVD93T5nLsukjJQPVOm9u+t1/HbVCwKFp5Wbu6j/+7xag4+Yc5q8bJsinkSOgp9Zxnb8FHEsMfIrxB7fiVOJZw8OnZYAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAA7VBMVEXZDxm71quuz5ugxor////w8O9RULB3ElcXFpYlJJyIuWu51KnT5MqrzJbM4b66wNWkxpZ3fLeyy6vG3rq92K3T29uZvXnq2dLEwqzx5eDn6upxfKpyfaukw5pOVKW3zrSlwaGmt7jDpZXCoH7B27ORamCnu4LRuaTl8N/i3MPc6tRzrl3y4KPx15d/r069ydXLvpexvMeZupF8e8Pw39fp3diRt4TK28efloSKfm2yhWRuPDCwoIeRq2DExOSwu8bc1Kypsonb3ZxhlzBhmjwZdcf5+vvNzN6/wYjYypvD0t5+roqxqJogesuuqH05DYSvAAAA0klEQVQoz63TVRKDQBAEUGR3k2WRAEGTihF3d3e//3Fyg4FK0d/vq6eH42JPImK4ZMT8D+momJoVdRoGSYEJTVUxDQJDwotlxZaksioQCNKCgOZVuxos6mxIAZhhjVrA7I1UKblmFoAaG5eWNW+/XlUmogbAPEPY8ZxO28FITgHQYAj73rXd8UOgJiKM/WevgTHiBwDMCvVD93T5nLsukjJQPVOm9u+t1/HbVCwKFp5Wbu6j/+7xag4+Yc5q8bJsinkSOgp9Zxnb8FHEsMfIrxB7fiVOJZw8OnZYAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAM1BMVEUAZ8bV48iesrmsuJv17tL2+/zG3br////49OD8+e/u4q/Jzq+92Cqy1TG11DLA2inx6L8SIXR/AAAATUlEQVQYGe3BOwKDMBBDQQG2nzaQz/1Pm17bUjKjxz1oTJlGJDNnmSTCKI6DToQf574vTBBpfq7ve5JEGttam0kivQo8SKLxKNPocYs/5eoIyVduk4wAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAM1BMVEUAZ8bV48iesrmsuJv17tL2+/zG3br////49OD8+e/u4q/Jzq+92Cqy1TG11DLA2inx6L8SIXR/AAAATUlEQVQYGe3BOwKDMBBDQQG2nzaQz/1Pm17bUjKjxz1oTJlGJDNnmSTCKI6DToQf574vTBBpfq7ve5JEGttam0kivQo8SKLxKNPocYs/5eoIyVduk4wAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAP1BMVEUAOJP+88P/99k6W3P8/P6knTwjTH8AOJP////PICfgwx3PIin64mf41ST63lKLjUqLjEqEik1IZG3UNSPSKyVE9uWiAAAAAXRSTlP89O1mUQAAAHhJREFUKM/tklsLgCAMhb1tmhe6/v/fGmawCLFV0FPnwcnhQ4+bQliWhPjBG2A/MEA9aguwlYsTPeYV/cuMxhXJqPadU1G6swyBidxUA0PHUiBwIXeugXQ1ZUytjCqSS+86gA9GiH7KZSp9bzUcMM8agTMZgO/+4wo/5hqOVIJxmgAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAP1BMVEUAOJP+88P/99k6W3P8/P6knTwjTH8AOJP////PICfgwx3PIin64mf41ST63lKLjUqLjEqEik1IZG3UNSPSKyVE9uWiAAAAAXRSTlP89O1mUQAAAHhJREFUKM/tklsLgCAMhb1tmhe6/v/fGmawCLFV0FPnwcnhQ4+bQliWhPjBG2A/MEA9aguwlYsTPeYV/cuMxhXJqPadU1G6swyBidxUA0PHUiBwIXeugXQ1ZUytjCqSS+86gA9GiH7KZSp9bzUcMM8agTMZgO/+4wo/5hqOVIJxmgAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAP1BMVEXOESbRsnvpua2CcmLULkHjeIX6+/j///8AK3/dW2rzxMmLs7qdp3+9xaXj1bkoeExBb1tBZq1KY6Klx9mHvMkwUFmwAAAAUUlEQVQoz9XTORIAIQhEUXDDXWf0/mc1NLQzyx+/BCjIg9FFKGA34c5YawgouDRcAGCsOdcIQClpFgEg99Y6A1Dp79cKGoYZGua0nhdu/cDPLAeKFD3EVE0QAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAP1BMVEXOESbRsnvpua2CcmLULkHjeIX6+/j///8AK3/dW2rzxMmLs7qdp3+9xaXj1bkoeExBb1tBZq1KY6Klx9mHvMkwUFmwAAAAUUlEQVQoz9XTORIAIQhEUXDDXWf0/mc1NLQzyx+/BCjIg9FFKGA34c5YawgouDRcAGCsOdcIQClpFgEg99Y6A1Dp79cKGoYZGua0nhdu/cDPLAeKFD3EVE0QAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAUVBMVEUAIJ/2zdTJ1cJ6e5/K0OtQkEr////SEDTXJkgYNamdqHn3+fC7qsOVwZ3m5c1hmlHJpDHs59z848dQba0QEBDNZmTXh19voHz84Lu0hjjIpTBzGy2qAAAAU0lEQVQoz2NgGAU0AZxQQFAhCxsbrzg3GwsRCvl4mYhSKMQsyMcsgamQHQ0w8jCLiQrzMKKLYypkkhKRFGAirJCLnxUEuAgq5IACggpxgVGFeAEAvUgOmZnoHJcAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAUVBMVEUAIJ/2zdTJ1cJ6e5/K0OtQkEr////SEDTXJkgYNamdqHn3+fC7qsOVwZ3m5c1hmlHJpDHs59z848dQba0QEBDNZmTXh19voHz84Lu0hjjIpTBzGy2qAAAAU0lEQVQoz2NgGAU0AZxQQFAhCxsbrzg3GwsRCvl4mYhSKMQsyMcsgamQHQ0w8jCLiQrzMKKLYypkkhKRFGAirJCLnxUEuAgq5IACggpxgVGFeAEAvUgOmZnoHJcAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAV1BMVEUAK3+LdBxaTgkLLm0AKHxxZB+5nCXOESYAJXg/OBMAIWU1Q018by4AHnHpxDRJTzoAHVncujF2cklKQxo3SmBpZDKtlzYPKVWVgSv71DupjiVkWyBpWBVMEWERAAAAXUlEQVQoz+3PRw6AMAxE0TjEwU4Pvd3/nBzBYYOExF+/xYxSTzOm0fmuyVHMK5HsMp6aEb3kYrBWa2tnaSdtcAECBPHJstcj1TSIGydmZh4bjpMrxZF6t76xH34e3uVzD6wKgmdUAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAV1BMVEUAK3+LdBxaTgkLLm0AKHxxZB+5nCXOESYAJXg/OBMAIWU1Q018by4AHnHpxDRJTzoAHVncujF2cklKQxo3SmBpZDKtlzYPKVWVgSv71DupjiVkWyBpWBVMEWERAAAAXUlEQVQoz+3PRw6AMAxE0TjEwU4Pvd3/nBzBYYOExF+/xYxSTzOm0fmuyVHMK5HsMp6aEb3kYrBWa2tnaSdtcAECBPHJstcj1TSIGydmZh4bjpMrxZF6t76xH34e3uVzD6wKgmdUAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAWlBMVEX///9y0YTXPk/RHzPzxMnz+/RIw18etTrOESbH7c7t7OQsukbpl6D88fLhanf6/vuc3qid3qmW3aPc2MrniJP++frwtbu4IyfNp5zaTFzBdGvAZ2G9PT3dW2pQSsWXAAAAzUlEQVQoz42TSRKDIBBFvyJ2bAecccr9r5kFEjEGil5QLF7xoPkNAFn6ClaawVYl/JioDJMXAFA3Pq6pAaDIQZRIeP3GKhMiEFHZefyntSvJgESu/z1m2bi6VqIvePnFbK4+i8t6A61/AnhZGJgu6x20fkBqLc3utP6C1m9OdKxPkHo41ZMfLFywCIJqGBTMGgJ7sD4Y4ENzSJ1I8L4xwNvO/seY9ih1rX/bU7a24XA27aPhkV/ohmL1h+K0emPWnjGLDG70KEQPV+y4fgCOXxe97SpR6gAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAWlBMVEX///9y0YTXPk/RHzPzxMnz+/RIw18etTrOESbH7c7t7OQsukbpl6D88fLhanf6/vuc3qid3qmW3aPc2MrniJP++frwtbu4IyfNp5zaTFzBdGvAZ2G9PT3dW2pQSsWXAAAAzUlEQVQoz42TSRKDIBBFvyJ2bAecccr9r5kFEjEGil5QLF7xoPkNAFn6ClaawVYl/JioDJMXAFA3Pq6pAaDIQZRIeP3GKhMiEFHZefyntSvJgESu/z1m2bi6VqIvePnFbK4+i8t6A61/AnhZGJgu6x20fkBqLc3utP6C1m9OdKxPkHo41ZMfLFywCIJqGBTMGgJ7sD4Y4ENzSJ1I8L4xwNvO/seY9ih1rX/bU7a24XA27aPhkV/ohmL1h+K0emPWnjGLDG70KEQPV+y4fgCOXxe97SpR6gAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAXVBMVEUAAADtwRBeTQXetA8AfzmzDSwPCwEAlUPSEDShgwt/ZwifgQv9zhJ+Zwk/MwMfGQEAMRZGBRG3lQwARx9lBxmPdAoAiz7EDzDOqA4wJwNOPwQAcTKdDCduWgSmDCgachgdAAAAt0lEQVQoz43Qy47CMAxA0WsH7JkkTaDQmVIe//+ZLCpYFZK7s3Qky+Z4++kKo48ig3Hcd0ANfRQ6KQBRRGlQALAoQeH834Ivap8pQB3S0qTARWKUCbCUQ4HzY78RMC5aSq4ANeWx8KmZe2Re1qGmLOPvRkDSavdc2tCmNI1i7dVwCVnXY+YCp+tuoxVOBWyQoHD6883eD//OXrDJVmiDiMJh5/4VapBoDebeydzpY+4Yh6t31Mncnxi9Gc0Ued8IAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAXVBMVEUAAADtwRBeTQXetA8AfzmzDSwPCwEAlUPSEDShgwt/ZwifgQv9zhJ+Zwk/MwMfGQEAMRZGBRG3lQwARx9lBxmPdAoAiz7EDzDOqA4wJwNOPwQAcTKdDCduWgSmDCgachgdAAAAt0lEQVQoz43Qy47CMAxA0WsH7JkkTaDQmVIe//+ZLCpYFZK7s3Qky+Z4++kKo48ig3Hcd0ANfRQ6KQBRRGlQALAoQeH834Ivap8pQB3S0qTARWKUCbCUQ4HzY78RMC5aSq4ANeWx8KmZe2Re1qGmLOPvRkDSavdc2tCmNI1i7dVwCVnXY+YCp+tuoxVOBWyQoHD6883eD//OXrDJVmiDiMJh5/4VapBoDebeydzpY+4Yh6t31Mncnxi9Gc0Ued8IAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAY1BMVEU9jjOex5lho1nn8ebOESZIlD55sXP/xh46dcT///9sqWSyKCdTm0o8i0BPlC+HuYFJgjCSv4zO48t+VSw8hmA7gXs5eLHmvyCeqig6e595nyzOuCLz+PLb6tlgolhqZy5jbC7Q/dpQAAAArUlEQVQoz43R2w6DIBBF0UEGyoAtWnu///9XloKYNBGY88TDilsRbucNawC7CxMGemdCAEY/QUYf8lr9pDptFVhJlUX2fIxah4OvQ0v0ggih31egkiSWNwUti1ATKYDRz1KJEhQkf9F+eeh6P0OlFjg4XFlOi/yew4S4Dv8/5u2wBNP1eF+uZhgvvOvCYUKswvkXfhw2Ydj2aqrL7GgMBx5OhgNb1Rm2qwkyqnFff1UYnRYEs0QAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAY1BMVEU9jjOex5lho1nn8ebOESZIlD55sXP/xh46dcT///9sqWSyKCdTm0o8i0BPlC+HuYFJgjCSv4zO48t+VSw8hmA7gXs5eLHmvyCeqig6e595nyzOuCLz+PLb6tlgolhqZy5jbC7Q/dpQAAAArUlEQVQoz43R2w6DIBBF0UEGyoAtWnu///9XloKYNBGY88TDilsRbucNawC7CxMGemdCAEY/QUYf8lr9pDptFVhJlUX2fIxah4OvQ0v0ggih31egkiSWNwUti1ATKYDRz1KJEhQkf9F+eeh6P0OlFjg4XFlOi/yew4S4Dv8/5u2wBNP1eF+uZhgvvOvCYUKswvkXfhw2Ydj2aqrL7GgMBx5OhgNb1Rm2qwkyqnFff1UYnRYEs0QAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAbFBMVEX80RbUJyIjhlMSgFhKVEn5xBTWMiEAel7OESbPsiL1zhgHfVtlnUHkahyRrDN6pDujsi/WQyHiZR3lcB2FqDeGSziznirdxh7lyRzsyxq/WiihMzDRHCT3vhPtkhnrixlHk0jypxl7fjq9uifbhgG8AAAAx0lEQVQoz5XT2Q6DIBAF0AHFoYor7nbR9v//sdZawIoNvS83GU5CQASuQ4i9l4Dh2OVs6x3k15u9Fazq08/U1Qp9FA0cphHoK4iRaO2sFRGacKZpt2ddGr3WNhDRK8MtC0vvvfIFZ5oYNEy8z1xBNUGaASvyvGCQUTXUkD5GTXsuJe8NZsARIFXTYQKYBrRCCnmmIQEgBxCTO9VbF1IWB1vj92HkwWGcr+evC3f8hK6PwvGZOT/cNUEcB7be/zOM2XsHg8DeS5725xrneLCWvQAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAbFBMVEX80RbUJyIjhlMSgFhKVEn5xBTWMiEAel7OESbPsiL1zhgHfVtlnUHkahyRrDN6pDujsi/WQyHiZR3lcB2FqDeGSziznirdxh7lyRzsyxq/WiihMzDRHCT3vhPtkhnrixlHk0jypxl7fjq9uifbhgG8AAAAx0lEQVQoz5XT2Q6DIBAF0AHFoYor7nbR9v//sdZawIoNvS83GU5CQASuQ4i9l4Dh2OVs6x3k15u9Fazq08/U1Qp9FA0cphHoK4iRaO2sFRGacKZpt2ddGr3WNhDRK8MtC0vvvfIFZ5oYNEy8z1xBNUGaASvyvGCQUTXUkD5GTXsuJe8NZsARIFXTYQKYBrRCCnmmIQEgBxCTO9VbF1IWB1vj92HkwWGcr+evC3f8hK6PwvGZOT/cNUEcB7be/zOM2XsHg8DeS5725xrneLCWvQAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAflBMVEX////2zdHqlqD87e776uzWNUj0yc7ODyX//f3RHjPrnKXQHDDXOUvhbXrYP1DgaHXfY3LQGi/zwsjqoKny4qTpk53ekkTpkZvVMkLs3Jfpp6ronTfXRDX//PHjzGfn0XDks6jbfDvirDPqtzbheDb00rrsrI3uvULLWjzhkDGG5NwUAAABCUlEQVQoz42T7ZqCIBCFB1OhtCwh00f7rt26/xvcERYZCrY9PxQY4HWOM8D5ZifA037vz8VuwzmsOOdZTVZVp5TqyNk6wy0rEHKO73U6ravj8XDopmm6xvBcjgdnSxwWW3sHOzdNc7f3bwsMLmc2pvm5mcjrpb98mXGuqYx82MLx5fnRP6WjLvxUDT/BxbpvbjfMTiQe1YmVhi+G63crDLVkEJDhV+lpGE5pFaA66XCRMBajOuUjv9SPHP6Wvgyp8ElJ9q+NGt22n9C/yQhjYRVLxtozHYnYYw0H8psDhrtfOAFCZlIqvJQi5XtlRlV7ZfZOJShXuG+tACE+tsJrc8X4QNslZvDYrj+d2w/y/o7CEAAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAflBMVEX////2zdHqlqD87e776uzWNUj0yc7ODyX//f3RHjPrnKXQHDDXOUvhbXrYP1DgaHXfY3LQGi/zwsjqoKny4qTpk53ekkTpkZvVMkLs3Jfpp6ronTfXRDX//PHjzGfn0XDks6jbfDvirDPqtzbheDb00rrsrI3uvULLWjzhkDGG5NwUAAABCUlEQVQoz42T7ZqCIBCFB1OhtCwh00f7rt26/xvcERYZCrY9PxQY4HWOM8D5ZifA037vz8VuwzmsOOdZTVZVp5TqyNk6wy0rEHKO73U6ravj8XDopmm6xvBcjgdnSxwWW3sHOzdNc7f3bwsMLmc2pvm5mcjrpb98mXGuqYx82MLx5fnRP6WjLvxUDT/BxbpvbjfMTiQe1YmVhi+G63crDLVkEJDhV+lpGE5pFaA66XCRMBajOuUjv9SPHP6Wvgyp8ElJ9q+NGt22n9C/yQhjYRVLxtozHYnYYw0H8psDhrtfOAFCZlIqvJQi5XtlRlV7ZfZOJShXuG+tACE+tsJrc8X4QNslZvDYrj+d2w/y/o7CEAAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAgVBMVEUAnkkRpVX+8bZYwIgkrGN0ypzB59P80RbOESYJCAGk3L7t+PFAt3caAgSOCxo1BAn8/fX93lf943H+7J781SvZ8OSM063/9s7+6If82UC9nBDcthS1DiFnCBPBDyP/+uUfGgIfGgJ+aQt+aAtPQgb9/O5OQQa9qE5DS0d6uJeAemJ4QqG6AAAAsElEQVQoz42TVxLCMAwFQyiSIRB6h4QS2v0PiLHNRE6Rtd9vZp9sKXq9k0hEqj6jYbcTDuJkfHnGxaDfCwXxfFL3w2yRrdYJH0Q8puoKsNtuuBJo0P49ACzn8bSthA1aP/xoK4F/rN/QWAJLnN9QL0GCxO9KFKQEehB/tQRWoH6vRD2YS4JafROo9TAPb5iseRhqZZ6HWLkHL638FzpraCmsNbhmxipYXOkpiI9Leq5frY4Y/eRr36cAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAgVBMVEUAnkkRpVX+8bZYwIgkrGN0ypzB59P80RbOESYJCAGk3L7t+PFAt3caAgSOCxo1BAn8/fX93lf943H+7J781SvZ8OSM063/9s7+6If82UC9nBDcthS1DiFnCBPBDyP/+uUfGgIfGgJ+aQt+aAtPQgb9/O5OQQa9qE5DS0d6uJeAemJ4QqG6AAAAsElEQVQoz42TVxLCMAwFQyiSIRB6h4QS2v0PiLHNRE6Rtd9vZp9sKXq9k0hEqj6jYbcTDuJkfHnGxaDfCwXxfFL3w2yRrdYJH0Q8puoKsNtuuBJo0P49ACzn8bSthA1aP/xoK4F/rN/QWAJLnN9QL0GCxO9KFKQEehB/tQRWoH6vRD2YS4JafROo9TAPb5iseRhqZZ6HWLkHL638FzpraCmsNbhmxipYXOkpiI9Leq5frY4Y/eRr36cAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAhFBMVEXaGjXcKEEQEBDqfY3eNUwICAj87/EAAAD////+/Pzn5+dDQ0P53OD9+PkdHR3hRFvbIDpsbGyTk5PlY3X19fX0v8bysLkzMzPMzMzV1dXw8PAqKir2yc/75unkWW2hoaG4uLjd3d3iT2RSUlKtra330dbvnqnDw8PtkJ18fHznbn9eXl5tmbTVAAAAyElEQVQoz43SRxaEIBBFUSOCihHMNua4//31AHRYwvgO+HWeYRPhyRc0nWkA70cHS8rWDx1Ixn0dSRlVKIakE/qllO5Ac0ianAXqoxm2IWkUJFUyxRsobZwpOTOeQDKniytl6a/g+AlV6kxR3X+MH1sprR39wPFdo8a7glyQTAp6q0knPsDxBz6VvGkBjr+IcDUbQfvTyKjbiFWhCTzT+jaywI0knM2ajWz4bYQUmo0EjJtwI8PbyMd4VEW6jfhPIwPVbMQTxP4DG9AQs+B16vUAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAYCAMAAAC/Wk/yAAAAhFBMVEXaGjXcKEEQEBDqfY3eNUwICAj87/EAAAD////+/Pzn5+dDQ0P53OD9+PkdHR3hRFvbIDpsbGyTk5PlY3X19fX0v8bysLkzMzPMzMzV1dXw8PAqKir2yc/75unkWW2hoaG4uLjd3d3iT2RSUlKtra330dbvnqnDw8PtkJ18fHznbn9eXl5tmbTVAAAAyElEQVQoz43SRxaEIBBFUSOCihHMNua4//31AHRYwvgO+HWeYRPhyRc0nWkA70cHS8rWDx1Ixn0dSRlVKIakE/qllO5Ac0ianAXqoxm2IWkUJFUyxRsobZwpOTOeQDKniytl6a/g+AlV6kxR3X+MH1sprR39wPFdo8a7glyQTAp6q0knPsDxBz6VvGkBjr+IcDUbQfvTyKjbiFWhCTzT+jaywI0knM2ajWz4bYQUmo0EjJtwI8PbyMd4VEW6jfhPIwPVbMQTxP4DG9AQs+B16vUAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAZAgMAAAA+toT2AAAACVBMVEUAaqf+zAB/m1N8Q7kSAAAAGklEQVQY02NgYGCYmsAAA7RmhsIBSUy6OhIASfMjv9uXrDcAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAZAgMAAAA+toT2AAAACVBMVEUAaqf+zAB/m1N8Q7kSAAAAGklEQVQY02NgYGCYmsAAA7RmhsIBSUy6OhIASfMjv9uXrDcAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAZAgMAAAA+toT2AAAACVBMVEXcFDz////tip5hJkzaAAAAFElEQVQY02MIhQOGAWOuggOGQQAAG50ufcR4g+sAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAZAgMAAAA+toT2AAAACVBMVEXcFDz////tip5hJkzaAAAAFElEQVQY02MIhQOGAWOuggOGQQAAG50ufcR4g+sAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAZBAMAAACx9nFWAAAAD1BMVEUAAAAAcs7///8AJkVUVFRJK4tKAAAAHklEQVQoz2MQxAIYBqGgMRbAMAiBCxbAoIQFDEJBAGOJKS051BtAAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAZBAMAAACx9nFWAAAAD1BMVEUAAAAAcs7///8AJkVUVFRJK4tKAAAAHklEQVQoz2MQxAIYBqGgMRbAMAiBCxbAoIQFDEJBAGOJKS051BtAAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAZBAMAAACx9nFWAAAAG1BMVEUAmf///wCg2V+w309Qua8Qn+/Q7C/w+Q/P7DAG5Io+AAAAVklEQVQoz2NgoDNwamxyQBcLFhQUFA5AFWMtBAoKlqIKMoPEBIVRBR3BgoKopipCBBVQBBMhgg0oghAxQQFsKhMIm4nVdqzuxOojrH4HhlJikgMD3QEAcycN4otQy3cAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAZBAMAAACx9nFWAAAAG1BMVEUAmf///wCg2V+w309Qua8Qn+/Q7C/w+Q/P7DAG5Io+AAAAVklEQVQoz2NgoDNwamxyQBcLFhQUFA5AFWMtBAoKlqIKMoPEBIVRBR3BgoKopipCBBVQBBMhgg0oghAxQQFsKhMIm4nVdqzuxOojrH4HhlJikgMD3QEAcycN4otQy3cAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAZBAMAAACx9nFWAAAALVBMVEUAak7SEDT/zgD//v+vHjjZLyvWJUXqj6D87/HgW3PaPVr42d/meY31y9PwsbwZZZ5IAAAATUlEQVQoz2MQhAAHBmRAkqA4NsEMbIKHJwoKBikhAQZBcWNj4x50QcEVxtaJGILixpYY2gUlzO0wBbMT12LankihNzEFlbAAmgjSCwAAG7QmPcKBtfcAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAZBAMAAACx9nFWAAAALVBMVEUAak7SEDT/zgD//v+vHjjZLyvWJUXqj6D87/HgW3PaPVr42d/meY31y9PwsbwZZZ5IAAAATUlEQVQoz2MQhAAHBmRAkqA4NsEMbIKHJwoKBikhAQZBcWNj4x50QcEVxtaJGILixpYY2gUlzO0wBbMT12LankihNzEFlbAAmgjSCwAAG7QmPcKBtfcAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAZCAMAAAB0BpxXAAAAP1BMVEX////u1q/oy5jSn1L37dz59O7u3L10rN/R4/T9/Pzozqjfun7koBPhvor05s/Yq3HcozzalA7lxpzXpl/VkhUfGetuAAAAWElEQVQ4y+3SOxKAMAhFUQgkSshX3f9aXYCOUFjm1qd5DLA5gwU/4e4MHknD1ATMJNWuijaMgUqhzDbMY5aRown5OOdFwYaAQXtN4FjDiPyy2n3H9Y+/wBtvcRWqoJAFOQAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAZCAMAAAB0BpxXAAAAP1BMVEX////u1q/oy5jSn1L37dz59O7u3L10rN/R4/T9/Pzozqjfun7koBPhvor05s/Yq3HcozzalA7lxpzXpl/VkhUfGetuAAAAWElEQVQ4y+3SOxKAMAhFUQgkSshX3f9aXYCOUFjm1qd5DLA5gwU/4e4MHknD1ATMJNWuijaMgUqhzDbMY5aRown5OOdFwYaAQXtN4FjDiPyy2n3H9Y+/wBtvcRWqoJAFOQAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAZCAMAAAB0BpxXAAAAXVBMVEX////g59maroTj16m6yaT09/P09PFJl9DC3O/p7+bu4ZOqu5rX382PiGiVon3T2MqYoVjCz7f5+vrM3MSitpGYm3R3k12BnGjKvKzP3bz+++rx5Z306Z/w46vf17vmoc6yAAAAaUlEQVQ4y+3Stw6AMAwE0EsFh4QSev3/z2QNk2Fgy61+OkuWUaQpkaR8jJDhV2jMG9hpNDMaz8JKnE71UXPQSmzuWDGxjRLX7jQNxEAazKJU7SsOQgRtogzErrZ12/Xt+OaOBCvym/0Fb1tLFihEHgDLAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAZCAMAAAB0BpxXAAAAXVBMVEX////g59maroTj16m6yaT09/P09PFJl9DC3O/p7+bu4ZOqu5rX382PiGiVon3T2MqYoVjCz7f5+vrM3MSitpGYm3R3k12BnGjKvKzP3bz+++rx5Z306Z/w46vf17vmoc6yAAAAaUlEQVQ4y+3Stw6AMAwE0EsFh4QSev3/z2QNk2Fgy61+OkuWUaQpkaR8jJDhV2jMG9hpNDMaz8JKnE71UXPQSmzuWDGxjRLX7jQNxEAazKJU7SsOQgRtogzErrZ12/Xt+OaOBCvym/0Fb1tLFihEHgDLAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAaCAMAAADyku75AAAAb1BMVEUCLaHPzs7aACHgeIngACXfACXU1NRxF2JxF2IDLqHi4uLf39/Hw8TYDS7TpKvMtbnIyMja2trKrrHcHDzJu7zDjpbaKkjAwMDRlJ6/sLPEdoLQSF/heYjatbvCbXnQe4bXZHbXhpTFXnC8qq27u7sIHT1WAAAACHRSTlP+/////////kgsYtwAAACuSURBVDjL5dNJDsIwDAXQ2EkNZG46zwO9/xnpCiGVRl3DX3hhPf2VzdjjUhj7KXi/lhtLxCHGHHfJN9i2F2ApBOYBhcjisLMoMgIUaLsITIxVJY4AI5bKmkhj4ejpvK60a8gVkcbJQ04AQKTBT5HG1UOzVTvbGvDrOcQ61yE4rV0IOi/wFM4pUZq+x3wGzSAJlJREUipI5WBOYNbzxXLO63ofduF99gkvH8Vf/swLLRAf6S2QnckAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAaCAMAAADyku75AAAAb1BMVEUCLaHPzs7aACHgeIngACXfACXU1NRxF2JxF2IDLqHi4uLf39/Hw8TYDS7TpKvMtbnIyMja2trKrrHcHDzJu7zDjpbaKkjAwMDRlJ6/sLPEdoLQSF/heYjatbvCbXnQe4bXZHbXhpTFXnC8qq27u7sIHT1WAAAACHRSTlP+/////////kgsYtwAAACuSURBVDjL5dNJDsIwDAXQ2EkNZG46zwO9/xnpCiGVRl3DX3hhPf2VzdjjUhj7KXi/lhtLxCHGHHfJN9i2F2ApBOYBhcjisLMoMgIUaLsITIxVJY4AI5bKmkhj4ejpvK60a8gVkcbJQ04AQKTBT5HG1UOzVTvbGvDrOcQ61yE4rV0IOi/wFM4pUZq+x3wGzSAJlJREUipI5WBOYNbzxXLO63ofduF99gkvH8Vf/swLLRAf6S2QnckAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAQMAAAA03l8tAAAABlBMVEXtKTn///9O8W3fAAAAEklEQVQI12NgIAv8BwGSSbIAADA3LNT5TsD+AAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAQMAAAA03l8tAAAABlBMVEXtKTn///9O8W3fAAAAEklEQVQI12NgIAv8BwGSSbIAADA3LNT5TsD+AAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAgMAAABzfiX9AAAACVBMVEUAAADOESb///9w5v7GAAAAFUlEQVQY02MIhQMGWjFXwQHNmLQHAJQLWadZSURAAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAgMAAABzfiX9AAAACVBMVEUAAADOESb///9w5v7GAAAAFUlEQVQY02MIhQMGWjFXwQHNmLQHAJQLWadZSURAAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAgMAAABzfiX9AAAACVBMVEUhRov///+uHCiDi+U+AAAAFUlEQVQY02NYBQcMtGKGwgHNmLQHACMlWadYLf7+AAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAgMAAABzfiX9AAAACVBMVEUhRov///+uHCiDi+U+AAAAFUlEQVQY02NYBQcMtGKGwgHNmLQHACMlWadYLf7+AAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAgMAAABzfiX9AAAACVBMVEXVKx4AeTT54wAKw3EdAAAAFUlEQVQY02NgoD1YBQc0Y4bCAa2YAHXmWafbUCnbAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAgMAAABzfiX9AAAACVBMVEXVKx4AeTT54wAKw3EdAAAAFUlEQVQY02NgoD1YBQc0Y4bCAa2YAHXmWafbUCnbAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAgMAAABzfiX9AAAACVBMVEXZDyP////yr7XIwwUlAAAAFklEQVQY02NgYGBQDQ2NYICAUSYuJgAGeB8eIlqm5wAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAgMAAABzfiX9AAAACVBMVEXZDyP////yr7XIwwUlAAAAFklEQVQY02NgYGBQDQ2NYICAUSYuJgAGeB8eIlqm5wAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAgMAAABzfiX9AAAADFBMVEUAcsb///8etToftTtamkkBAAAAGElEQVQY02N4tQoKVjPQihkKBzRj0h4AAGLOW/Cjq+5HAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAgMAAABzfiX9AAAADFBMVEUAcsb///8etToftTtamkkBAAAAGElEQVQY02N4tQoKVjPQihkKBzRj0h4AAGLOW/Cjq+5HAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAgMAAABzfiX9AAAADFBMVEUMXq////9Kh8PD1+sc/9mlAAAAKklEQVQY02NgYHVggAFcTM5QMMDBBOIYqFLsTIImEHRDKBzgYBIEFJsAALoFJ2TsUBu2AAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAgMAAABzfiX9AAAADFBMVEUMXq////9Kh8PD1+sc/9mlAAAAKklEQVQY02NgYHVggAFcTM5QMMDBBOIYqFLsTIImEHRDKBzgYBIEFJsAALoFJ2TsUBu2AAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAgMAAABzfiX9AAAADFBMVEWAmF3/1QAAW7uAmF21ZTA2AAAAAXRSTlP+GuMHfQAAABpJREFUGNNjWAUHDIOBaf8fCv4whMLBYGACAHKYirK4JSjEAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAgMAAABzfiX9AAAADFBMVEWAmF3/1QAAW7uAmF21ZTA2AAAAAXRSTlP+GuMHfQAAABpJREFUGNNjWAUHDIOBaf8fCv4whMLBYGACAHKYirK4JSjEAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAgMAAABzfiX9AAAADFBMVEWlGTH09fjMh5QtKkoyD257AAAAH0lEQVQY02NgIAGsggOGUDggzPwPBzRjkuIcJF+QAAAjJYF/PyJQ8AAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAgMAAABzfiX9AAAADFBMVEWlGTH09fjMh5QtKkoyD257AAAAH0lEQVQY02NgIAGsggOGUDggzPwPBzRjkuIcJF+QAAAjJYF/PyJQ8AAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAgMAAABzfiX9AAAADFBMVEX/////AAD/f3//AQHNXVckAAAAF0lEQVQY02O4GgoF4QyDgbkKDhgGFwAA0P04aY5rCYgAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAgMAAABzfiX9AAAADFBMVEX/////AAD/f3//AQHNXVckAAAAF0lEQVQY02O4GgoF4QyDgbkKDhgGFwAA0P04aY5rCYgAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAgMAAABzfiX9AAAADFBMVEXVKh3///8AOabVKx55q0MDAAAAAXRSTlP+GuMHfQAAABpJREFUGNNjCIUDBloxV8EBzZj2/6HgD62YAHlVrHK7tinsAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAgMAAABzfiX9AAAADFBMVEXVKh3///8AOabVKx55q0MDAAAAAXRSTlP+GuMHfQAAABpJREFUGNNjCIUDBloxV8EBzZj2/6HgD62YAHlVrHK7tinsAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAgMAAABzfiX9AAAADFBMVEXoES380RYAh1HycSGsqsUBAAAAG0lEQVQY02NYBQShYMAwWJj/wQDMZICAQcAEAH5nZ5nGou1dAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbAgMAAABzfiX9AAAADFBMVEXoES380RYAh1HycSGsqsUBAAAAG0lEQVQY02NYBQShYMAwWJj/wQDMZICAQcAEAH5nZ5nGou1dAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAD1BMVEUAkkbOKzf///+q28Hvt7vgJlTcAAAAGUlEQVQoz2NgAANmJTBwFAQDhlHBUUG8ggBRSidzkDNWIwAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAD1BMVEUAkkbOKzf///+q28Hvt7vgJlTcAAAAGUlEQVQoz2NgAANmJTBwFAQDhlHBUUG8ggBRSidzkDNWIwAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAD1BMVEUAnmD3fwD///+p3sn81KqjQLolAAAAGElEQVQoz2MQBAMRJTAwYICAUcFRQbyCAPRzJ3OsczPTAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAD1BMVEUAnmD3fwD///+p3sn81KqjQLolAAAAGElEQVQoz2MQBAMRJTAwYICAUcFRQbyCAPRzJ3OsczPTAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAD1BMVEXtKTkAI5X///+ptNv5t70X6cUbAAAAGElEQVQoz2MQBANhJTBwYICAUcFRQbyCAK7MKQicBg83AAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAD1BMVEXtKTkAI5X///+ptNv5t70X6cUbAAAAGElEQVQoz2MQBANhJTBwYICAUcFRQbyCAK7MKQicBg83AAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAElBMVEUAK3/OESb80RaomTjtjxrOESXfWuRDAAAAGklEQVQoz2NgAANmJTBwFAQBUYZRwVFBvIIAxOIn30Ew1B8AAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAElBMVEUAK3/OESb80RaomTjtjxrOESXfWuRDAAAAGklEQVQoz2NgAANmJTBwFAQBUYZRwVFBvIIAxOIn30Ew1B8AAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAElBMVEVtqdIAAAA/Pz/t9PlBQUHs9PmByX+UAAAAI0lEQVQoz2NgGHYg2BgDmDI4KWEAFQZBLIAEQaxmYrV92AEAvTIRzfY9AH0AAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAElBMVEVtqdIAAAA/Pz/t9PlBQUHs9PmByX+UAAAAI0lEQVQoz2NgGHYg2BgDmDI4KWEAFQZBLIAEQaxmYrV92AEAvTIRzfY9AH0AAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAElBMVEWGjsY6dyjOESYMHIz///+FjcUzsQhvAAAAAXRSTlP+GuMHfQAAAChJREFUKM9jUMICGIaKoAsWwMAaigECGIyxAJoIYrUdqzsFsYChIggAWI9PB/8YOioAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAElBMVEWGjsY6dyjOESYMHIz///+FjcUzsQhvAAAAAXRSTlP+GuMHfQAAAChJREFUKM9jUMICGIaKoAsWwMAaigECGIyxAJoIYrUdqzsFsYChIggAWI9PB/8YOioAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAElBMVEXGCy/+ywAAJmTGDDDrihCpkyFr4LrDAAAAAXRSTlP9g+pWxwAAABpJREFUKM9jUAIDVUEwcDYGAQOGUcFRQbyCAPqgSzR3NRKjAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAElBMVEXGCy/+ywAAJmTGDDDrihCpkyFr4LrDAAAAAXRSTlP9g+pWxwAAABpJREFUKM9jUAIDVUEwcDYGAQOGUcFRQbyCAPqgSzR3NRKjAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAElBMVEXOECYUtTr80RbtjxquxyGuyCKjAxX9AAAAHklEQVQoz2MQBANRJTAwYIAAiKDIqOCoIEwQNYUAAPaxJ3WCs2XbAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAElBMVEXOECYUtTr80RbtjxquxyGuyCKjAxX9AAAAHklEQVQoz2MQBANRJTAwYIAAiKDIqOCoIEwQNYUAAPaxJ3WCs2XbAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAFVBMVEX80RYAOJPOESaaGkF9hFXMECYCOZGyuUP4AAAAIklEQVQoz2NgGAWowAULYEgUxABi9BM0xgIYgpQwgCrdBAGDOyRlGGexgAAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAFVBMVEX80RYAOJPOESaaGkF9hFXMECYCOZGyuUP4AAAAIklEQVQoz2NgGAWowAULYEgUxABi9BM0xgIYgpQwgCrdBAGDOyRlGGexgAAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAFVBMVEXOECXOESb80RYAlGCovC7tjxrskBsC56JSAAAAAXRSTlP9g+pWxwAAACBJREFUKM9jYBQEATElMHA2BgMGiKDoqOCoIEwQNYUAADVVSCfgcZ/QAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAFVBMVEXOECXOESb80RYAlGCovC7tjxrskBsC56JSAAAAAXRSTlP9g+pWxwAAACBJREFUKM9jYBQEATElMHA2BgMGiKDoqOCoIEwQNYUAADVVSCfgcZ/QAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAG1BMVEXBJy22KS06TjCHOC6fMS1/Oi5ESzBmQi8rUzDm0+j4AAAAM0lEQVQoz2NgGL6AvQBTTFAsURBD0EOjqQVDkFnZyABTf5IaphiLepEDhiCjAbPA8A1aAE6IBLhFmViXAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAG1BMVEXBJy22KS06TjCHOC6fMS1/Oi5ESzBmQi8rUzDm0+j4AAAAM0lEQVQoz2NgGL6AvQBTTFAsURBD0EOjqQVDkFnZyABTf5IaphiLepEDhiCjAbPA8A1aAE6IBLhFmViXAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAGFBMVEUAfTn////8PTIAfjp+XTZWqXz9fnepk3lpgAtyAAAAAXRSTlP+GuMHfQAAAB9JREFUKM9jEAQDMSVkwDAqKO6CDKCCosZIwGAkCwIAcRhIc5cNL1IAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAGFBMVEUAfTn////8PTIAfjp+XTZWqXz9fnepk3lpgAtyAAAAAXRSTlP+GuMHfQAAAB9JREFUKM9jEAQDMSVkwDAqKO6CDKCCosZIwGAkCwIAcRhIc5cNL1IAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAHlBMVEUApVH/1QAaIG3qKDm2JkWMejZAsj0bIWz91ADoJzlaCl/hAAAALElEQVQoz2OYbIwBLBnoJuiCBTAUKWEAdfoJhmIBDI2CGECCfoJpWADDgAIAZ5dK6eNZmaUAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAHlBMVEUApVH/1QAaIG3qKDm2JkWMejZAsj0bIWz91ADoJzlaCl/hAAAALElEQVQoz2OYbIwBLBnoJuiCBTAUKWEAdfoJhmIBDI2CGECCfoJpWADDgAIAZ5dK6eNZmaUAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAHlBMVEXOESb80RYAel7ZQCGINDjyqRjRHCTiZR7ndx2INDk0zy9lAAAAPUlEQVQoz2NQAgNNBjAwFAQDBoigyhAXZDbAIsjRgCnI3hpRgCHIFiiagKm9UByLmcGmWAQT2IZVeKKmEADM8y2ZtlFueQAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAHlBMVEXOESb80RYAel7ZQCGINDjyqRjRHCTiZR7ndx2INDk0zy9lAAAAPUlEQVQoz2NQAgNNBjAwFAQDBoigyhAXZDbAIsjRgCnI3hpRgCHIFiiagKm9UByLmcGmWAQT2IZVeKKmEADM8y2ZtlFueQAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAIVBMVEXOESYAAAAznjUWAQM0nDQ1BAluCBNMBQ1aBg9/CRa3DiHb5SsEAAAAYklEQVQoz2MQxAIYYAzTsvRgdEHzmWlpM4tRBYU7U4tNy2YYogiKzTAOSzXuTEQRbGuOYmBYapGOLCg8w5wBCII7DZEEJTKsQIKL2wqRVRqahgJBsDBU+5AGTkoYQGWoCAIA3CUzq4wFS+cAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAIVBMVEXOESYAAAAznjUWAQM0nDQ1BAluCBNMBQ1aBg9/CRa3DiHb5SsEAAAAYklEQVQoz2MQxAIYYAzTsvRgdEHzmWlpM4tRBYU7U4tNy2YYogiKzTAOSzXuTEQRbGuOYmBYapGOLCg8w5wBCII7DZEEJTKsQIKL2wqRVRqahgJBsDBU+5AGTkoYQGWoCAIA3CUzq4wFS+cAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAIVBMVEXaJR3//wDhShf86gLztwnpexHcMhvvoAzlaRP41gXjWxXelDKJAAAAYUlEQVQoz2NgoDtgS8AiyBqARZDFAYsgowEWwUYJLIKOIugimoJgMAlVtBAkJo6mlMNQUFB4AboBiYKCYhj2LBQUFMIQLBQ2FMcQNHRLEUYXYxJlYAhUQA8OoABTAMOgBQBOLAlBK2IgQgAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAIVBMVEXaJR3//wDhShf86gLztwnpexHcMhvvoAzlaRP41gXjWxXelDKJAAAAYUlEQVQoz2NgoDtgS8AiyBqARZDFAYsgowEWwUYJLIKOIugimoJgMAlVtBAkJo6mlMNQUFB4AboBiYKCYhj2LBQUFMIQLBQ2FMcQNHRLEUYXYxJlYAhUQA8OoABTAMOgBQBOLAlBK2IgQgAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAIVBMVEXeKRD/3QDgNA/vgQjkSw32pwT7wwLiPw7pZwrmVgzxjgfoZuX/AAAAXklEQVQoz2NgwA2UMEQUGBjaHNAFFzAwKGOozARilgkoQhxWosYKDKwBKIJMgYIpDAzsaLoZBSdgOsfRDGgTSwGqYAuTAQODagAW17M7YIpNxubNtgIsgkwMowAPAAD2ignB69EaTQAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAIVBMVEXeKRD/3QDgNA/vgQjkSw32pwT7wwLiPw7pZwrmVgzxjgfoZuX/AAAAXklEQVQoz2NgwA2UMEQUGBjaHNAFFzAwKGOozARilgkoQhxWosYKDKwBKIJMgYIpDAzsaLoZBSdgOsfRDGgTSwGqYAuTAQODagAW17M7YIpNxubNtgIsgkwMowAPAAD2ignB69EaTQAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJ1BMVEUAAADOESb///8Aej3A3s8rkF3f7ubv9/PP5tqq0794uJhPo3kPgUhA53/OAAAAV0lEQVQoz2MQxAIYhoqgEhYAFVSBUE4ogqkQKgxZ0GXxlCQlJTVPKxckwVZj6yIlJfXNxhFIgmrGQSBK1TgJSVAz6jiIqlk6CVmwqANEdagjC6K7cygDAFe0LEzg45X5AAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJ1BMVEUAAADOESb///8Aej3A3s8rkF3f7ubv9/PP5tqq0794uJhPo3kPgUhA53/OAAAAV0lEQVQoz2MQxAIYhoqgEhYAFVSBUE4ogqkQKgxZ0GXxlCQlJTVPKxckwVZj6yIlJfXNxhFIgmrGQSBK1TgJSVAz6jiIqlk6CVmwqANEdagjC6K7cygDAFe0LEzg45X5AAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJ1BMVEUAaz780RYAaz/OESbOEiUAAACCbAvcthMPDQG1lg+dgg3swxQwKAR6YlIEAAAAAXRSTlP9g+pWxwAAAEtJREFUKM9jcDbGACYMQ0VQEAbEC+FMhKBYIhZBmYMYguJpqWFphegqZ4SGdmJoF2+N2IgpGBqKKSjVOWMhpuBGaYQgkxIGUBgqggBnKVEwiejeOwAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJ1BMVEUAaz780RYAaz/OESbOEiUAAACCbAvcthMPDQG1lg+dgg3swxQwKAR6YlIEAAAAAXRSTlP9g+pWxwAAAEtJREFUKM9jcDbGACYMQ0VQEAbEC+FMhKBYIhZBmYMYguJpqWFphegqZ4SGdmJoF2+N2IgpGBqKKSjVOWMhpuBGaYQgkxIGUBgqggBnKVEwiejeOwAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJ1BMVEUAfC4AJnT80CK9uyRUmCjsyyI/kSqdsCbcxSJ+pigQgS0PgS0fhixRK6rDAAAAbUlEQVQoz2MQBAElOGAAg6Em6KGk1IIuqMyipORghCaoxmCkzJCEJmjAkKTGwIwm6MDA0cDAQoxKNQbzYgwzlVmilmLYruQxgRPDnUqqC7iCMATVGRiKMFVu4MZUqTSBE0soRR/FIqheRK2QBwDQhTJFgRiQewAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJ1BMVEUAfC4AJnT80CK9uyRUmCjsyyI/kSqdsCbcxSJ+pigQgS0PgS0fhixRK6rDAAAAbUlEQVQoz2MQBAElOGAAg6Em6KGk1IIuqMyipORghCaoxmCkzJCEJmjAkKTGwIwm6MDA0cDAQoxKNQbzYgwzlVmilmLYruQxgRPDnUqqC7iCMATVGRiKMFVu4MZUqTSBE0soRR/FIqheRK2QBwDQhTJFgRiQewAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJ1BMVEWbFjXOESabFzf///8AKGgBJ2c0VIfw8vZQa5eAlLSgr8fI0N4gQ3uPvoTKAAAAAXRSTlP+GuMHfQAAAFVJREFUKM9jEMQCGOgmyKSEARQYQlwwgCtc0G31rhQMwcnGxpbogh7GQNCCJugOEixBEzwMErRBE0wGCZphE7QhxkystmN1J3Yfubgi+R1rKA1oxAEA7A9c3kKd8BcAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJ1BMVEWbFjXOESabFzf///8AKGgBJ2c0VIfw8vZQa5eAlLSgr8fI0N4gQ3uPvoTKAAAAAXRSTlP+GuMHfQAAAFVJREFUKM9jEMQCGOgmyKSEARQYQlwwgCtc0G31rhQMwcnGxpbogh7GQNCCJugOEixBEzwMErRBE0wGCZphE7QhxkystmN1J3Yfubgi+R1rKA1oxAEA7A9c3kKd8BcAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJ1BMVEX+AAAAAJV+AEsUFJ2Cgsv///8BAJQwMKmfn9dCQrC6uuLg4PJgYL0ICCqaAAAAWUlEQVQoz2NIFIQBBgTAJSgsXmiIISje4lGILijs6bVkiiG6ypLQUHd0lZIdoaEdE9FVmoSGOmNY1LI12gPDIuMlXsYYFmXWHJ+I6SNhQ2K8qQQHDKMAFwAASRwaKceV/cMAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJ1BMVEX+AAAAAJV+AEsUFJ2Cgsv///8BAJQwMKmfn9dCQrC6uuLg4PJgYL0ICCqaAAAAWUlEQVQoz2NIFIQBBgTAJSgsXmiIISje4lGILijs6bVkiiG6ypLQUHd0lZIdoaEdE9FVmoSGOmNY1LI12gPDIuMlXsYYFmXWHJ+I6SNhQ2K8qQQHDKMAFwAASRwaKceV/cMAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJ1BMVEX///+8AC355+vIL1Pqr73VX3vegJbyz9fhj6LADznRT27NP2DqsL6WBkFXAAAAXklEQVQoz2NgoDdgOpajgCG2UVBQCl30pCAQTEEVYxcEgwIUQWaIoAGKYCNEUAJFMBAiKIoiaAgRFEYRFIQCbCqlCZuJ1Xas7sTqIwZPLH5nYFqIJZQYmNxSFOgeiQChfg9XF5eK2QAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJ1BMVEX///+8AC355+vIL1Pqr73VX3vegJbyz9fhj6LADznRT27NP2DqsL6WBkFXAAAAXklEQVQoz2NgoDdgOpajgCG2UVBQCl30pCAQTEEVYxcEgwIUQWaIoAGKYCNEUAJFMBAiKIoiaAgRFEYRFIQCbCqlCZuJ1Xas7sTqIwZPLH5nYFqIJZQYmNxSFOgeiQChfg9XF5eK2QAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJ1BMVEX/////mTMSiAfY2O2pqdeDg8bCwuOPj8tjY7e2tt2entJvb7xlZbj+tLZ3AAAAOUlEQVQoz2MQxAIYhoogXsByNMIBQ9B8smUwhmCZ15J0DMENHi3cxKk0xWYmW2tEAn73KWEBQ0UQAHj7LkjxXc8wAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJ1BMVEX/////mTMSiAfY2O2pqdeDg8bCwuOPj8tjY7e2tt2entJvb7xlZbj+tLZ3AAAAOUlEQVQoz2MQxAIYhoogXsByNMIBQ9B8smUwhmCZ15J0DMENHi3cxKk0xWYmW2tEAn73KWEBQ0UQAHj7LkjxXc8wAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJ1BMVEX////QDDPohpnVIkX87/L54OX0wsvxsr/cSWbfWHPldYzrlabbSGWxUx9nAAAAj0lEQVQoz2NgoBlgTSrFEOM2FBQ0QhNjaRQEglZUQWeQmKBwAIrgRLCg4AFkMXaImKA0siAPVFAYWZARKijogCQYCBNMgIkoYQEMQAUGMAUHoTpAggIwQUMkQTFYAAgiCUpCBbmQBQULIIKJKIImkGAxRBEUBitNFkQRFJQC+sVJEE1QULhpsiCGICqgUBAANkcdSdbxxVsAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJ1BMVEX////QDDPohpnVIkX87/L54OX0wsvxsr/cSWbfWHPldYzrlabbSGWxUx9nAAAAj0lEQVQoz2NgoBlgTSrFEOM2FBQ0QhNjaRQEglZUQWeQmKBwAIrgRLCg4AFkMXaImKA0siAPVFAYWZARKijogCQYCBNMgIkoYQEMQAUGMAUHoTpAggIwQUMkQTFYAAgiCUpCBbmQBQULIIKJKIImkGAxRBEUBitNFkQRFJQC+sVJEE1QULhpsiCGICqgUBAANkcdSdbxxVsAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJ1BMVEXtKTn////2lJzxUV/uNUX1gYryYm7vQlD6ur/+7vD7ys73oaj1jZbd0n4ZAAAAW0lEQVQoz2NgwAFYkjHF2Bcqs2MIVk5msHBAF1wY4GCKYaKgSzMDkwKqIJskQzgDWwKqILMgNhdNLHAqCEMXDFzAYRCKLsgt4YBFf3aPAQMRQAkLYBDEAkayIADytx8PHH3E9QAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJ1BMVEXtKTn////2lJzxUV/uNUX1gYryYm7vQlD6ur/+7vD7ys73oaj1jZbd0n4ZAAAAW0lEQVQoz2NgwAFYkjHF2Bcqs2MIVk5msHBAF1wY4GCKYaKgSzMDkwKqIJskQzgDWwKqILMgNhdNLHAqCEMXDFzAYRCKLsgt4YBFf3aPAQMRQAkLYBDEAkayIADytx8PHH3E9QAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJFBMVEUAhT/jGyP970LjGyL1pzaoy0GRwj9nsD8dkT7U3kDt6EFOpj/lyas/AAAARUlEQVQoz2NgAANWJTBwFAQBYYYhJ6g5CYugehEWQY0mDEGtDQwM3IvQVaoxMCRham/gwDRTk71gEYagWpJa0tANT0KCAK4xK1LO9A4bAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJFBMVEUAhT/jGyP970LjGyL1pzaoy0GRwj9nsD8dkT7U3kDt6EFOpj/lyas/AAAARUlEQVQoz2NgAANWJTBwFAQBYYYhJ6g5CYugehEWQY0mDEGtDQwM3IvQVaoxMCRham/gwDRTk71gEYagWpJa0tANT0KCAK4xK1LO9A4bAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJFBMVEVBid3///+gxO5bmeLN4Pbp8ftMkN+WvuyCsen4+/6vzfG30vJNbQNHAAAAUUlEQVQoz2NgGMSA2QCLINcCLIKsAVgEDYUxhLSVHEWUNqEJpggCgRu60kpBwekY+pkEBRUwBFkEBR0wBBNndIphCJYaMIdjCDYwMHAwDDEAAKAdCNZzMJXoAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJFBMVEVBid3///+gxO5bmeLN4Pbp8ftMkN+WvuyCsen4+/6vzfG30vJNbQNHAAAAUUlEQVQoz2NgGMSA2QCLINcCLIKsAVgEDYUxhLSVHEWUNqEJpggCgRu60kpBwekY+pkEBRUwBFkEBR0wBBNndIphCJYaMIdjCDYwMHAwDDEAAKAdCNZzMJXoAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJFBMVEX////oES353Rb5w8ruTGHwdSH1qhvrNyj40RbtTCTsPVT0nR3fS35zAAAAZUlEQVQoz2NggAJDQUFhBnRAgmBoKBbBInUsgkKKtBV0gYKFQopSMDaDIAhMBGIhRSAhCeZCBFtDQ0ODVIFEBJKgEhwgCbalpaUlqQGJDCTBQmxmCsIEIYB+fscf8tuyKYpiJEEA44Af4yfh9owAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAJFBMVEX////oES353Rb5w8ruTGHwdSH1qhvrNyj40RbtTCTsPVT0nR3fS35zAAAAZUlEQVQoz2NggAJDQUFhBnRAgmBoKBbBInUsgkKKtBV0gYKFQopSMDaDIAhMBGIhRSAhCeZCBFtDQ0ODVIFEBJKgEhwgCbalpaUlqQGJDCTBQmxmCsIEIYB+fscf8tuyKYpiJEEA44Af4yfh9owAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAKlBMVEU2fT67IkGwzLO0Ci3///83fj/syB3+/v7fmSDPZSTEPyfVeyK/LinpvB0xIzJ4AAAAAXRSTlP+GuMHfQAAAGFJREFUKM9jYA3FAAEMtBBUwgIYSlwwgDt2QUEsgMEYBqwWw5kIQevNWARtL2MIWna0ZXRMRlc5LS0tE0O7VVraYgxBm7S0wxiC1pnTNmMIWhy2aYYLYvUR8QGCNTzpFZsAgv2JIjNIFmMAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAKlBMVEU2fT67IkGwzLO0Ci3///83fj/syB3+/v7fmSDPZSTEPyfVeyK/LinpvB0xIzJ4AAAAAXRSTlP+GuMHfQAAAGFJREFUKM9jYA3FAAEMtBBUwgIYSlwwgDt2QUEsgMEYBqwWw5kIQevNWARtL2MIWna0ZXRMRlc5LS0tE0O7VVraYgxBm7S0wxiC1pnTNmMIWhy2aYYLYvUR8QGCNTzpFZsAgv2JIjNIFmMAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAKlBMVEUAOKVqMWLVKx4AOab////qlI7AzulrMWEQRaxCbb6sv+IgUrGAnNPKe4MtJuTCAAAAAnRSTlP9/o2EjdMAAABESURBVCjPY2A2BgEzF2TAQJLgZmyCKzAFLWb6zMZUecRlBaaglQsWM81mTcYU7DBupsjxmILi5SBQG4oMGJSwgJEsCAD/7Gr8c0BulwAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAKlBMVEUAOKVqMWLVKx4AOab////qlI7AzulrMWEQRaxCbb6sv+IgUrGAnNPKe4MtJuTCAAAAAnRSTlP9/o2EjdMAAABESURBVCjPY2A2BgEzF2TAQJLgZmyCKzAFLWb6zMZUecRlBaaglQsWM81mTcYU7DBupsjxmILi5SBQG4oMGJSwgJEsCAD/7Gr8c0BulwAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAKlBMVEUAlEMAlUPcJB/73krzrT66y0jdKiDthjWawkfvljioxkfxoDuLvUZ+uUZGJOr2AAAAAXRSTlP9g+pWxwAAAItJREFUKM9tysENQDAUh/EawMFBIuL0VqhExM3BAjYwghVsYAUbWMEIFtLqa/t/6jv+8qmsgGZt6xRi+ZpeBfJIiH4U6EfEMCKGEZDHXaAbe0KEMeIRx4A1jAHdOBAij6dAMTJWYmTcxOiQx1GgG9sFkceJEK/PaLH5jhaT0WA6GryTkVSejqR+RnoAexFQiUISXxUAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAKlBMVEUAlEMAlUPcJB/73krzrT66y0jdKiDthjWawkfvljioxkfxoDuLvUZ+uUZGJOr2AAAAAXRSTlP9g+pWxwAAAItJREFUKM9tysENQDAUh/EawMFBIuL0VqhExM3BAjYwghVsYAUbWMEIFtLqa/t/6jv+8qmsgGZt6xRi+ZpeBfJIiH4U6EfEMCKGEZDHXaAbe0KEMeIRx4A1jAHdOBAij6dAMTJWYmTcxOiQx1GgG9sFkceJEK/PaLH5jhaT0WA6GryTkVSejqR+RnoAexFQiUISXxUAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAKlBMVEVBjt6gsG//0QBBj96gsG58o9qqkbfvNkPKepTZan9Wm+GRpdO/jathouOFF8O8AAAAAnRSTlP9/o2EjdMAAAA9SURBVCjPY2A2xgAGDDgErYOxCNokYxG82YUpGDa9IpU4QazasVuE1UnE+2ggBZWwAAYRFwzgSBPtlAkCAFHVa1J3h5tcAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAKlBMVEVBjt6gsG//0QBBj96gsG58o9qqkbfvNkPKepTZan9Wm+GRpdO/jathouOFF8O8AAAAAnRSTlP9/o2EjdMAAAA9SURBVCjPY2A2xgAGDDgErYOxCNokYxG82YUpGDa9IpU4QazasVuE1UnE+2ggBZWwAAYRFwzgSBPtlAkCAFHVa1J3h5tcAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAALVBMVEUAJn//xyaqkEM/MQjTpB4gGAQwJQZaRg2ffBfvuiO/lRxzWhAAAACviBoPDAKyFauCAAAAYklEQVQoz2NgAAMmQTBQYEAGAy4o4oghOFFQvFBQEk2wbaHPEakMNEHhRNcQUUM0QYmTYolzLqJbFCFm2Iphe7Ww4XYMwcvChrYYgkvrnr/CEHTeGm2C6SNhQ0FKBAdNHAEAi0wclGP3UW4AAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAALVBMVEUAJn//xyaqkEM/MQjTpB4gGAQwJQZaRg2ffBfvuiO/lRxzWhAAAACviBoPDAKyFauCAAAAYklEQVQoz2NgAAMmQTBQYEAGAy4o4oghOFFQvFBQEk2wbaHPEakMNEHhRNcQUUM0QYmTYolzLqJbFCFm2Iphe7Ww4XYMwcvChrYYgkvrnr/CEHTeGm2C6SNhQ0FKBAdNHAEAi0wclGP3UW4AAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAALVBMVEV3ZDoAnknvKy14Yzr60BVttDHxPin4nRz6vheYvSmvkCrfzBr3ix72jB4gpEG5oHn8AAAAAXRSTlP+GuMHfQAAAEdJREFUKM9jUMICGIacoFoSFkHdQ1gENZowBNVKXFzcYQYwMBtDgJWLy2Io04BBEAa2eMOZcEE5zymYgqKBooEYgshgSAsCADLrPLD18xGQAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAALVBMVEV3ZDoAnknvKy14Yzr60BVttDHxPin4nRz6vheYvSmvkCrfzBr3ix72jB4gpEG5oHn8AAAAAXRSTlP+GuMHfQAAAEdJREFUKM9jUMICGIacoFoSFkHdQ1gENZowBNVKXFzcYQYwMBtDgJWLy2Io04BBEAa2eMOZcEE5zymYgqKBooEYgshgSAsCADLrPLD18xGQAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAALVBMVEX/////AAD/v7//Pz//wMD/8/P/f3//19f/5ub/YWH/nZ3/sLD/Ly//gID/QECpnlCHAAAAk0lEQVQoz2NggAJmQUEDBnSALsjughB0KYAKMokhBBMVIGKsLyWvwwRrJ84LgIgKCgrBBBUFBSFiHLukNGCCTQtXN+A2k4GVFSEYEIDTnS5Q4CMoeATGBlqNCWgiqAQFOoKCh2BsnOGJ1UfY/M6xS9oDJtgCDyVs4clqKZkOEyybOBlqKAu28GRXQQg6FeCLdwxBAHsYKbiOyGOgAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAALVBMVEX/////AAD/v7//Pz//wMD/8/P/f3//19f/5ub/YWH/nZ3/sLD/Ly//gID/QECpnlCHAAAAk0lEQVQoz2NggAJmQUEDBnSALsjughB0KYAKMokhBBMVIGKsLyWvwwRrJ84LgIgKCgrBBBUFBSFiHLukNGCCTQtXN+A2k4GVFSEYEIDTnS5Q4CMoeATGBlqNCWgiqAQFOoKCh2BsnOGJ1UfY/M6xS9oDJtgCDyVs4clqKZkOEyybOBlqKAu28GRXQQg6FeCLdwxBAHsYKbiOyGOgAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAALVBMVEXPEyr/zAAAJH3PFCv9ygECI3y7xNsbOYrp7PMuSpSotNM8V5tTaqZXbqmFlcDhG/iSAAAAAXRSTlP9g+pWxwAAAFhJREFUKM9jcBTEACIMQ0UwSAkDqMIF1TtnFKELqiWlT1NLQhOseqSkpLccVVBjEYjUakIR1LkEInUPIQtqZkM0bpuEJKgO0aekUYTqJBR3MhtjAIOhIggAAWBSAu+GeDgAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAALVBMVEXPEyr/zAAAJH3PFCv9ygECI3y7xNsbOYrp7PMuSpSotNM8V5tTaqZXbqmFlcDhG/iSAAAAAXRSTlP9g+pWxwAAAFhJREFUKM9jcBTEACIMQ0UwSAkDqMIF1TtnFKELqiWlT1NLQhOseqSkpLccVVBjEYjUakIR1LkEInUPIQtqZkM0bpuEJKgO0aekUYTqJBR3MhtjAIOhIggAAWBSAu+GeDgAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAALVBMVEXjCRbjChf////nKTXrTFblGyf4wsXtZW3+8PHoOELvdHv1o6j84eL2srbxhIofikYmAAAAAXRSTlP+GuMHfQAAAGRJREFUKM9jYBTEAAIMdBYUnogpGN2klIIuKNKkW+m1EE3QQqlQUDAETTBJD8QODkQWFFY6CGKbbJyMJCiidBHEFtdJRBKUU3oIclWSkiMhlXAzjQnZjt2dWH2E1e/YQ2mgIg4A7pA0KOwEES4AAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAALVBMVEXjCRbjChf////nKTXrTFblGyf4wsXtZW3+8PHoOELvdHv1o6j84eL2srbxhIofikYmAAAAAXRSTlP+GuMHfQAAAGRJREFUKM9jYBTEAAIMdBYUnogpGN2klIIuKNKkW+m1EE3QQqlQUDAETTBJD8QODkQWFFY6CGKbbJyMJCiidBHEFtdJRBKUU3oIclWSkiMhlXAzjQnZjt2dWH2E1e/YQ2mgIg4A7pA0KOwEES4AAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAMFBMVEUAbDWAtpqgyLMQdUFgo4FwrI1QmnSQv6fA283S5dsgfk5AkWew0cAwh1v3+/mPvqafxqwrAAAAdUlEQVQoz2NgGBzA2ABNYKuQr2tSp2vxnCIkQad2J5+gQ0HCRYVIgkGNtanZVd0lmYJIgqmdk5L8tQ6JFSoiCTKmysrOeCTq5q6JJJjTkfRJYpm7o6ANkuCqzZc3MBvssmb2opP3UbmmgiCg+RSLSmbjwRBdAAOBHQ8vIxWsAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAMFBMVEUAbDWAtpqgyLMQdUFgo4FwrI1QmnSQv6fA283S5dsgfk5AkWew0cAwh1v3+/mPvqafxqwrAAAAdUlEQVQoz2NgGBzA2ABNYKuQr2tSp2vxnCIkQad2J5+gQ0HCRYVIgkGNtanZVd0lmYJIgqmdk5L8tQ6JFSoiCTKmysrOeCTq5q6JJJjTkfRJYpm7o6ANkuCqzZc3MBvssmb2opP3UbmmgiCg+RSLSmbjwRBdAAOBHQ8vIxWsAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAMFBMVEXSDzMAfjrSEDSeKzWNMzUAfTkyl2D////AGDOQx6lvto+428cEgDwPhUVQpnfv9/JzkBP1AAAAAXRSTlP+GuMHfQAAAExJREFUKM9jYFLCAAoM9BRsNkYCFlBBR0EkIEJYUG5X4lEMwfmJoRgqj1UBCVE0QclaLGaeLiRWJVYzz8xPJNadgoKhBL2JNZQGLuIAYR5H52EZ6mEAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAMFBMVEXSDzMAfjrSEDSeKzWNMzUAfTkyl2D////AGDOQx6lvto+428cEgDwPhUVQpnfv9/JzkBP1AAAAAXRSTlP+GuMHfQAAAExJREFUKM9jYFLCAAoM9BRsNkYCFlBBR0EkIEJYUG5X4lEMwfmJoRgqj1UBCVE0QclaLGaeLiRWJVYzz8xPJNadgoKhBL2JNZQGLuIAYR5H52EZ6mEAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAMFBMVEXnABLnABP////zf4jtQE7rLz7qHy/83+H+8PH4qa/6xcj1j5fwYGvxb3noECH84OIlBDrBAAAAAXRSTlP9g+pWxwAAAG1JREFUKM9jYBTEAAIM9BcUDcQUzFRSmoYuKNO0eJfGQTRBp1JRYwsVVEG5isRNSkrqD1EERXRFlLarKzmiCAqrCitdy1IyRBGUVJQsETykNJGwSqxmyv0A2a7/EMOdl9Hdid1HWP2OPZQGJOIAPpI4lSZvLh0AAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAMFBMVEXnABLnABP////zf4jtQE7rLz7qHy/83+H+8PH4qa/6xcj1j5fwYGvxb3noECH84OIlBDrBAAAAAXRSTlP9g+pWxwAAAG1JREFUKM9jYBTEAAIM9BcUDcQUzFRSmoYuKNO0eJfGQTRBp1JRYwsVVEG5isRNSkrqD1EERXRFlLarKzmiCAqrCitdy1IyRBGUVJQsETykNJGwSqxmyv0A2a7/EMOdl9Hdid1HWP2OPZQGJOIAPpI4lSZvLh0AAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAMFBMVEXtKDjtKTkAI5X////vRFLuOknuNkXxWmf5tbv819qptNv7ys5YaLP83N/3oajEtdCITnYQAAAAAXRSTlP9g+pWxwAAAGFJREFUKM9jUFLSMjZuFBRxFIQDAYahKCi3e/dDsOCZM+fv3m13dwcKiqRNtkxzBAmGgkBqaChQhfi0zGmZhSBBRoRZ4pZpaZMxBI0bJYyJU4nNTITtSIIIdyILwn00RAQB9plFeRIwkYUAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbBAMAAAD8PtBdAAAAMFBMVEXtKDjtKTkAI5X////vRFLuOknuNkXxWmf5tbv819qptNv7ys5YaLP83N/3oajEtdCITnYQAAAAAXRSTlP9g+pWxwAAAGFJREFUKM9jUFLSMjZuFBRxFIQDAYahKCi3e/dDsOCZM+fv3m13dwcKiqRNtkxzBAmGgkBqaChQhfi0zGmZhSBBRoRZ4pZpaZMxBI0bJYyJU4nNTITtSIIIdyILwn00RAQB9plFeRIwkYUAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAA21BMVEU9XriuCwu+vr6RkZHrpgMAAAD///+xDAs+Xrn/2QAcGxuyOgm4OghBQUFtbW2rCwlOSYUrKyvrpgX92AJPPDnEaQbu6OhJUJKMMzOzKgeEHTLWqpjUmZnVm5vU1NTHbm5nPj+3Pz+pGBiMjIybJiaCXDp2JEBnL1SbYSvDZwN3W09TQniPGSkPDw/BX1+1UA9aPG60KCjr19evr6/v7+/6+vpiYGo4QGtHTo2vZBlwcHDOl12tOAbBcnLEgVe5b1S0TCI7WqNgYGByTT2XNzcPGS84THsbKU8yTYzAGvZjAAAAAXRSTlP9g+pWxwAAAQ1JREFUOMvdk9lWwjAQQDNoqqa2ScDSHShlBwFRwB13/f8vMmlOK6JoXvU+zrmZzJIgtK8FQn9BrBxoUUHlXS3KaG8TaD0lCXwJb4rNBsHpfD6LTn4WPfLGXk8NQbW+RfQPBY/4mblLfiZNI5SRSX3cXBeB+qZpHh1b1st0SaySpBqa13e3N2P6IQJQU3qY2La9WHC+I6kZ4WQVJQCQi9BvD3qO08YFWZWCK6fv9AYXfp6xy1hHHBQZL0VKm/NUZYxFcHTvMppnDM7dQB6QNQpISdUYyRgdulNa1Njpqgk31M0PWdux6jMYjta7LuYoPFL7NEfYuhmM01n8y2ayXXte65tda78e7ff4n37hOy+LLL1mIK03AAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAA21BMVEU9XriuCwu+vr6RkZHrpgMAAAD///+xDAs+Xrn/2QAcGxuyOgm4OghBQUFtbW2rCwlOSYUrKyvrpgX92AJPPDnEaQbu6OhJUJKMMzOzKgeEHTLWqpjUmZnVm5vU1NTHbm5nPj+3Pz+pGBiMjIybJiaCXDp2JEBnL1SbYSvDZwN3W09TQniPGSkPDw/BX1+1UA9aPG60KCjr19evr6/v7+/6+vpiYGo4QGtHTo2vZBlwcHDOl12tOAbBcnLEgVe5b1S0TCI7WqNgYGByTT2XNzcPGS84THsbKU8yTYzAGvZjAAAAAXRSTlP9g+pWxwAAAQ1JREFUOMvdk9lWwjAQQDNoqqa2ScDSHShlBwFRwB13/f8vMmlOK6JoXvU+zrmZzJIgtK8FQn9BrBxoUUHlXS3KaG8TaD0lCXwJb4rNBsHpfD6LTn4WPfLGXk8NQbW+RfQPBY/4mblLfiZNI5SRSX3cXBeB+qZpHh1b1st0SaySpBqa13e3N2P6IQJQU3qY2La9WHC+I6kZ4WQVJQCQi9BvD3qO08YFWZWCK6fv9AYXfp6xy1hHHBQZL0VKm/NUZYxFcHTvMppnDM7dQB6QNQpISdUYyRgdulNa1Njpqgk31M0PWdux6jMYjta7LuYoPFL7NEfYuhmM01n8y2ayXXte65tda78e7ff4n37hOy+LLL1mIK03AAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAA4VBMVEUAAAA3LQT2zRXlvRP70BX///8KCADOESYAnkn80Ra6mQ/UJiPQGCUTDwFCOAUQEBDIpxH7+/uLcwzVsRJZSgfvxhTcthMdGAIIoEfxoRnuzhgWo0T7yxbZOSL1sxj4wRbdTiCliQ6Xl5dFrTprWAl5ty8xqD/lbB04ODggICAsJAN2YQrt7e2lpaXcyhwjpUHFxiGcvSnqhxuAagu5wyPnexxXsDfRyB1+fn6WfA26urpYV1OMjIy4uLjk5OTx8fGRuyvlzBqGuC0fHx9NSC+pwCZ8fHzIyMjtkhpwcHCzs7NT4XdnAAABTElEQVQ4y4XSZ3eCMBiG4VdMTKM4UEBa7RBHnV12aK3avf7/D+oboBgiIx/4wn2uc5LzwEHKad3yRg6Ck9LdH5F6ATJD5OyQSwmRWxYgM2x98HxFzgrxYfeFd1ZVgOF/l7Pjwta14EbT4ZcbcHXShniujL+3lI58rsEPS3uhg5yJf6trSuladHPSPmdMDbsXvCg4WMxm9PHXhXENOaaGzjOxzPCmW7zORENOV8MBcs3dkzwJ7uSYeUcKnVdi9eS38zidqeHgIcIBNHecFDp9TYtyPYvc6UwNkau9i0cJuaLMhSFyE1iswf0MOjPKBeHlFa+NAUaGYfhiWeX8sK+RufcalBreCsw8v9GZGiLnzf3N3UzpZvoD5Q4/PWN7B6S5rwz8VOI4EcpznyVxIozMHbnvEosP5bkvSQIXDSu2P6iMEOeezEmhN/eUjv0BCoErISxfBDYAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAA4VBMVEUAAAA3LQT2zRXlvRP70BX///8KCADOESYAnkn80Ra6mQ/UJiPQGCUTDwFCOAUQEBDIpxH7+/uLcwzVsRJZSgfvxhTcthMdGAIIoEfxoRnuzhgWo0T7yxbZOSL1sxj4wRbdTiCliQ6Xl5dFrTprWAl5ty8xqD/lbB04ODggICAsJAN2YQrt7e2lpaXcyhwjpUHFxiGcvSnqhxuAagu5wyPnexxXsDfRyB1+fn6WfA26urpYV1OMjIy4uLjk5OTx8fGRuyvlzBqGuC0fHx9NSC+pwCZ8fHzIyMjtkhpwcHCzs7NT4XdnAAABTElEQVQ4y4XSZ3eCMBiG4VdMTKM4UEBa7RBHnV12aK3avf7/D+oboBgiIx/4wn2uc5LzwEHKad3yRg6Ck9LdH5F6ATJD5OyQSwmRWxYgM2x98HxFzgrxYfeFd1ZVgOF/l7Pjwta14EbT4ZcbcHXShniujL+3lI58rsEPS3uhg5yJf6trSuladHPSPmdMDbsXvCg4WMxm9PHXhXENOaaGzjOxzPCmW7zORENOV8MBcs3dkzwJ7uSYeUcKnVdi9eS38zidqeHgIcIBNHecFDp9TYtyPYvc6UwNkau9i0cJuaLMhSFyE1iswf0MOjPKBeHlFa+NAUaGYfhiWeX8sK+RufcalBreCsw8v9GZGiLnzf3N3UzpZvoD5Q4/PWN7B6S5rwz8VOI4EcpznyVxIozMHbnvEosP5bkvSQIXDSu2P6iMEOeezEmhN/eUjv0BCoErISxfBDYAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAA51BMVEX////FxcUWFpafn5/Z2dm+vr7u7u7////S0tLf39/JKQ6zs7P319KkpKT0ysOHh4eMjIzRLA8TE5DfYUzniXnKRA398vDJyckVFYr1y8T65OHqlojvsKXHx9uZmZndoZfke2q6urrV1dWVlZXVMRXDw8N8fLKpqamBgYGKir0yMo6pqc+3t7fUiHq3XQfcVD1oaGisrKx9fX2Tk5O2ts/8/PzVkofyvbTso5ZbW1vt7fXj4+PQb1/r6+vgrqffwr3hbluVlbpycnJGRohMTJMUFInSe22+hhe+kRi/libgurOXl8K9kyT0y0IQAAAAAXRSTlP+GuMHfQAAAbRJREFUOMul09dy2zAQBVAJ7S5Egp1UqN4gq1Ddcm/pxfn/78mD8xBJdCZl3zA4MwvM3q1U8EdVqfw9zFx4cDMXbpY3Grnr5W6el8F85I4Qty6bzZ731Fi5Xq8VN8ugF8fxZbzCKkuQNGKg6fW8Mui2kuQqa2UJvOQKCdBye83G/3wGEOrwUokyqPy6VpA303a7fX7efr4BFNV9dQKN1c4EcswiFkUsYmOAO9o6x9Ah0hsJOY/YjLEZi+aA3Ggi5wgOaaAl3coxY+P3H94yNsUtST2g4RH0SQ+kEHIesVm/PWPRHELIgSb/EAobkLbFvXz++OalprgvrLaBFYeQ7NZo4vJb7Wd1wUl3tpYOoeK68APSw4ewloZhWgu7QlPgF5qrwzcqwwvjE78Il1/T9PsyvLAUmII7qmyEHW4fassvafp5GXYtN6Uj7BsLTOzF6KX1aOH4gDX9E9iBAALxuOjeLRZ33U+PYggIdE5gAEBNtFbYa73HXomJArA9gVQHds6v4XF2QJ1OY1asr6uaG9+8OwvWTtDhunq9LsqDS2TM2a5frW443xjSr68rvXr4t1X4LfwBrZs3C5ZPvrUAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAA51BMVEX////FxcUWFpafn5/Z2dm+vr7u7u7////S0tLf39/JKQ6zs7P319KkpKT0ysOHh4eMjIzRLA8TE5DfYUzniXnKRA398vDJyckVFYr1y8T65OHqlojvsKXHx9uZmZndoZfke2q6urrV1dWVlZXVMRXDw8N8fLKpqamBgYGKir0yMo6pqc+3t7fUiHq3XQfcVD1oaGisrKx9fX2Tk5O2ts/8/PzVkofyvbTso5ZbW1vt7fXj4+PQb1/r6+vgrqffwr3hbluVlbpycnJGRohMTJMUFInSe22+hhe+kRi/libgurOXl8K9kyT0y0IQAAAAAXRSTlP+GuMHfQAAAbRJREFUOMul09dy2zAQBVAJ7S5Egp1UqN4gq1Ddcm/pxfn/78mD8xBJdCZl3zA4MwvM3q1U8EdVqfw9zFx4cDMXbpY3Grnr5W6el8F85I4Qty6bzZ731Fi5Xq8VN8ugF8fxZbzCKkuQNGKg6fW8Mui2kuQqa2UJvOQKCdBye83G/3wGEOrwUokyqPy6VpA303a7fX7efr4BFNV9dQKN1c4EcswiFkUsYmOAO9o6x9Ah0hsJOY/YjLEZi+aA3Ggi5wgOaaAl3coxY+P3H94yNsUtST2g4RH0SQ+kEHIesVm/PWPRHELIgSb/EAobkLbFvXz++OalprgvrLaBFYeQ7NZo4vJb7Wd1wUl3tpYOoeK68APSw4ewloZhWgu7QlPgF5qrwzcqwwvjE78Il1/T9PsyvLAUmII7qmyEHW4fassvafp5GXYtN6Uj7BsLTOzF6KX1aOH4gDX9E9iBAALxuOjeLRZ33U+PYggIdE5gAEBNtFbYa73HXomJArA9gVQHds6v4XF2QJ1OY1asr6uaG9+8OwvWTtDhunq9LsqDS2TM2a5frW443xjSr68rvXr4t1X4LfwBrZs3C5ZPvrUAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAA6lBMVEX/AADuTQiivADpbCUrdgDangABYAD/AAAAZgABZQD7PT3tKQCzwQD4AAD8AADonwDjlADmrwD+/v72LADQ2ex1oADV1QDp6AB4pQDjdwD5OzrkjQD1dwCKodDsAADi1ADmJQBonwC6ywCCpACNqwDiMgDuPgK7xQCbtgD4SUf5fHzuWi36bW3qklLseCX2ybmfstgsVqrnZwDOsQDWwQBBhQDyCgDYYiHd4ADcfwDtxADPgQDfzznnrELTjQDUMADofR/0c1Lfjj3fPwDLtkMZbQCEmiqatD35QgDgWkff5fLnfSDu8fhnhMLtoPh4AAAAAXRSTlP+GuMHfQAAANFJREFUOMvl08cOglAQBVDgFZ+PoiKCoIi99957L///O65NdHCtd30ymczNCEH2msD7CMIPQ4oL6hcQS0puFglF/WBcwRSvUmmShGGshGStsNPkUb8LQWpZSKw2GlUREVMFYKZkcq632zp3hrYIwHxZQTXdMPQaCocTAFQkfGt2Hm6nuU6THgBzUtzhd8O4cmcCTszE2CXact3WeTMNQTvScfloF+t10Z57Vgq8oyntK5pWWRCP+DSTxYfTVpYjSf+us/nlF10zxuigqP7fz3yGT1SnLAsv0Hz9AAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAA6lBMVEX/AADuTQiivADpbCUrdgDangABYAD/AAAAZgABZQD7PT3tKQCzwQD4AAD8AADonwDjlADmrwD+/v72LADQ2ex1oADV1QDp6AB4pQDjdwD5OzrkjQD1dwCKodDsAADi1ADmJQBonwC6ywCCpACNqwDiMgDuPgK7xQCbtgD4SUf5fHzuWi36bW3qklLseCX2ybmfstgsVqrnZwDOsQDWwQBBhQDyCgDYYiHd4ADcfwDtxADPgQDfzznnrELTjQDUMADofR/0c1Lfjj3fPwDLtkMZbQCEmiqatD35QgDgWkff5fLnfSDu8fhnhMLtoPh4AAAAAXRSTlP+GuMHfQAAANFJREFUOMvl08cOglAQBVDgFZ+PoiKCoIi99957L///O65NdHCtd30ymczNCEH2msD7CMIPQ4oL6hcQS0puFglF/WBcwRSvUmmShGGshGStsNPkUb8LQWpZSKw2GlUREVMFYKZkcq632zp3hrYIwHxZQTXdMPQaCocTAFQkfGt2Hm6nuU6THgBzUtzhd8O4cmcCTszE2CXact3WeTMNQTvScfloF+t10Z57Vgq8oyntK5pWWRCP+DSTxYfTVpYjSf+us/nlF10zxuigqP7fz3yGT1SnLAsv0Hz9AAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAA9lBMVEWyJ0IDTaGAlVD52wqyKESBllD+3AHtHCT/3QADTqJggGbCuyMNVaOCZRddQSCleSiiqmoXW6QmY5rivRy5Jj/z1x59XizfyhM8b5CvjxLjzyzYySPtoybSsQX8wwSoxxiQo0Bwhl5ReWxwpZl2lXNBcXmaK0mpWEyGrH6AqpMfeqZwkIY+hIfJqhTnxQPTvD52WyzIpwerk0A4VH/OwBHqxxa9uEKymkFLRnVlTTe1wxO7ulgxRYd0alugglrGvT1TkUKcqFGlrTVZaZmady9RXW+hk4iBzeO3qZetbGNFfXRmrWSxgH15k45mskDC3ubv9/my090lViSgAAAAAXRSTlP+GuMHfQAAAMhJREFUOMvdzcUOwkAUheGhg4xUoThVghZ3d3fe/2VYlyYd1vzLky/3gjD6qTD4b9jMIhRjw3RCTAw7LVGoMyBEmrAYC+0G6yLsQ01MIxSD/jCeoVm5LC8nvUzcF8Kcsa5UyvmVkYP+r/WN/Hy9jyFT/37NhVxRcro7xDkQ6t45EMCuuMLtWs0/zgXOvQc80C5eqrVa0WZBQrcli5RmlDBgNDndSZI0SEYZkOdT5n5upXjMgFjBeNTFWPFAEPSkqt4NgMiP/RX8AFm1LNtFasN6AAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAA9lBMVEWyJ0IDTaGAlVD52wqyKESBllD+3AHtHCT/3QADTqJggGbCuyMNVaOCZRddQSCleSiiqmoXW6QmY5rivRy5Jj/z1x59XizfyhM8b5CvjxLjzyzYySPtoybSsQX8wwSoxxiQo0Bwhl5ReWxwpZl2lXNBcXmaK0mpWEyGrH6AqpMfeqZwkIY+hIfJqhTnxQPTvD52WyzIpwerk0A4VH/OwBHqxxa9uEKymkFLRnVlTTe1wxO7ulgxRYd0alugglrGvT1TkUKcqFGlrTVZaZmady9RXW+hk4iBzeO3qZetbGNFfXRmrWSxgH15k45mskDC3ubv9/my090lViSgAAAAAXRSTlP+GuMHfQAAAMhJREFUOMvdzcUOwkAUheGhg4xUoThVghZ3d3fe/2VYlyYd1vzLky/3gjD6qTD4b9jMIhRjw3RCTAw7LVGoMyBEmrAYC+0G6yLsQ01MIxSD/jCeoVm5LC8nvUzcF8Kcsa5UyvmVkYP+r/WN/Hy9jyFT/37NhVxRcro7xDkQ6t45EMCuuMLtWs0/zgXOvQc80C5eqrVa0WZBQrcli5RmlDBgNDndSZI0SEYZkOdT5n5upXjMgFjBeNTFWPFAEPSkqt4NgMiP/RX8AFm1LNtFasN6AAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAM1BMVEUfXzwPotA8qKQrprRXfS58uW8dpMIAod760gAgYD1prnistzbTvBF9uW+HslqQs1JWq4oAZWDQAAAAAXRSTlP+GuMHfQAAAFtJREFUOMvd0TkSgEAIRFEWbRRm8f6n9QjTiQbz41cFFBJk8jdUAMpAWLoRUC1HpesSwqq14VhCz2qtnuVoDZ+z0qir04zYMQJQfPWZflJ1ucj2ggeZyE0lW8EXy4wfIcoZkFMAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAM1BMVEUfXzwPotA8qKQrprRXfS58uW8dpMIAod760gAgYD1prnistzbTvBF9uW+HslqQs1JWq4oAZWDQAAAAAXRSTlP+GuMHfQAAAFtJREFUOMvd0TkSgEAIRFEWbRRm8f6n9QjTiQbz41cFFBJk8jdUAMpAWLoRUC1HpesSwqq14VhCz2qtnuVoDZ+z0qir04zYMQJQfPWZflJ1ucj2ggeZyE0lW8EXy4wfIcoZkFMAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAM1BMVEXNKT1AeiZghx/WtAf/xAB7kRowdCnNKj4AYjMCYTIQaC/vvQOQmRagnxMgbiy/qwxQgSMBUdT8AAAAAXRSTlP9g+pWxwAAAJpJREFUOMvVk9sOwyAIhkV+WD2tff+nnelhqWm13C3jxohfgB/QuZfJnPshGCaThTswRiPovQWMIswi8TmiMsDvYUTaMwO+cVzA/bksS2kcF1B0PWrarUKVHljaukoPVGij6nxtVXM6qdXE3fYQ0lcoJVC/jxmYfVUS/QzkUcMreVgeT4Z4w5ieRyjV1LQ9UzCumXlx78E/+K4fGncfbmVDdvMAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAM1BMVEXNKT1AeiZghx/WtAf/xAB7kRowdCnNKj4AYjMCYTIQaC/vvQOQmRagnxMgbiy/qwxQgSMBUdT8AAAAAXRSTlP9g+pWxwAAAJpJREFUOMvVk9sOwyAIhkV+WD2tff+nnelhqWm13C3jxohfgB/QuZfJnPshGCaThTswRiPovQWMIswi8TmiMsDvYUTaMwO+cVzA/bksS2kcF1B0PWrarUKVHljaukoPVGij6nxtVXM6qdXE3fYQ0lcoJVC/jxmYfVUS/QzkUcMreVgeT4Z4w5ieRyjV1LQ9UzCumXlx78E/+K4fGncfbmVDdvMAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAM1BMVEXOECWl0Lrp9O6/3s///f1/vJ1xtZMAAAD////OESbP5toVhU1Am20/mmyQxapfq4VQo3lSLMJmAAAAAXRSTlP9g+pWxwAAAGNJREFUOMvt0EEOgCAMRFFKmToCAvc/rStXBsSEJX/90kzq3DmVcxuugYFThS70n9A8hWRU8UNokQTJeGF0Ua2oAaRgBGG55dxqlZhSQhlAAwAR9QAUXfisD3/e84LHZBuugTd42CCCgiyR9gAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAM1BMVEXOECWl0Lrp9O6/3s///f1/vJ1xtZMAAAD////OESbP5toVhU1Am20/mmyQxapfq4VQo3lSLMJmAAAAAXRSTlP9g+pWxwAAAGNJREFUOMvt0EEOgCAMRFFKmToCAvc/rStXBsSEJX/90kzq3DmVcxuugYFThS70n9A8hWRU8UNokQTJeGF0Ua2oAaRgBGG55dxqlZhSQhlAAwAR9QAUXfisD3/e84LHZBuugTd42CCCgiyR9gAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAM1BMVEXPEyr23+K/tLTjpK2xrKvTmJ67oaH////PFCvLy8vGmp3gs7bgtLjmtrurmJTBj5PLiY/HwyfHAAAAAXRSTlP+GuMHfQAAAFFJREFUOMvt0DsOgDAMA9AkzQdDP9z/tLCD1AwsSPVovSExxUu2Z4juvsmZgwf2DGy1Q63yFAq0C2BTOFxV3UviRoPzl89EsJUcTA++4IK/gxfabR7af4FUXAAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAM1BMVEXPEyr23+K/tLTjpK2xrKvTmJ67oaH////PFCvLy8vGmp3gs7bgtLjmtrurmJTBj5PLiY/HwyfHAAAAAXRSTlP+GuMHfQAAAFFJREFUOMvt0DsOgDAMA9AkzQdDP9z/tLCD1AwsSPVovSExxUu2Z4juvsmZgwf2DGy1Q63yFAq0C2BTOFxV3UviRoPzl89EsJUcTA++4IK/gxfabR7af4FUXAAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAANlBMVEUAlEM/Pz9lZWV/f3/9/v0CAgKPj48AIJ8AlUP///+8vLzPz8/v7+/f398fHx8vLy+fn59PT09zsOZCAAAAAXRSTlP9g+pWxwAAAGFJREFUOMvtzkkOwCAIQFEGpRXn+1+2dk2iHMC/JC8APM7gwi0MyaRqZ8HCoMzDAxOLsA8SiQsORN9pidG1McdVPsPaf9jyESK25TqWA6zUiSbhrMcfi4posT/C6wou3MIPDB8g750ZaJ0AAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAANlBMVEUAlEM/Pz9lZWV/f3/9/v0CAgKPj48AIJ8AlUP///+8vLzPz8/v7+/f398fHx8vLy+fn59PT09zsOZCAAAAAXRSTlP9g+pWxwAAAGFJREFUOMvtzkkOwCAIQFEGpRXn+1+2dk2iHMC/JC8APM7gwi0MyaRqZ8HCoMzDAxOLsA8SiQsORN9pidG1McdVPsPaf9jyESK25TqWA6zUiSbhrMcfi4posT/C6wou3MIPDB8g750ZaJ0AAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAANlBMVEX///+ctabQ3NViiXLg6OMfVzdQfGMAQRwxZUcQTCoPTClwlH/w9PGwxLjA0Mdvk36AoI5Pe2Ll19D6AAAAjUlEQVQ4y92TzRLDIAiEV0V+qibp+79sDtHkkJZ4bTkx8LkzCwicIW7gd8FsU6AFm1Jk0v7ABxVrzyInD4zIR5IAdcAC6oYK1eCAActoNrvc38E4FEWya+bL6D8p4j0FBoBeM2ABcJkV9eYItK5pyd0MAFpVRBOpu+s6SpUfrmc5Ks2e75G3jfOffK577LpLFTQFgZZfAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAANlBMVEX///+ctabQ3NViiXLg6OMfVzdQfGMAQRwxZUcQTCoPTClwlH/w9PGwxLjA0Mdvk36AoI5Pe2Ll19D6AAAAjUlEQVQ4y92TzRLDIAiEV0V+qibp+79sDtHkkJZ4bTkx8LkzCwicIW7gd8FsU6AFm1Jk0v7ABxVrzyInD4zIR5IAdcAC6oYK1eCAActoNrvc38E4FEWya+bL6D8p4j0FBoBeM2ABcJkV9eYItK5pyd0MAFpVRBOpu+s6SpUfrmc5Ks2e75G3jfOffK577LpLFTQFgZZfAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAANlBMVEXeKA/qeGn3yMLmXUz75OL98vHvlIjeKRD////th3n519PkUT3xoZfiQy3oa1nzrqXgNh/jUT0/tP8hAAAAAXRSTlP+GuMHfQAAAJRJREFUOMvd08sNAzEIRdHBBnzxd9J/s6kgHktZJayP0APBdZWjuq5fhbkdwZYYJ/CucNRRCPwJtlKKmyJj5nsH1b11oztgsoGATdasqgLzM6wEXSI8AT02GTE1eWUP8bydOle0D+la76f13BFpubEe4DDQlbTaAwykklNN7GFWYJVp6B6OnlIupTSLw3uMv/mZr+Abp+scdpIFX0UAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAANlBMVEXeKA/qeGn3yMLmXUz75OL98vHvlIjeKRD////th3n519PkUT3xoZfiQy3oa1nzrqXgNh/jUT0/tP8hAAAAAXRSTlP+GuMHfQAAAJRJREFUOMvd08sNAzEIRdHBBnzxd9J/s6kgHktZJayP0APBdZWjuq5fhbkdwZYYJ/CucNRRCPwJtlKKmyJj5nsH1b11oztgsoGATdasqgLzM6wEXSI8AT02GTE1eWUP8bydOle0D+la76f13BFpubEe4DDQlbTaAwykklNN7GFWYJVp6B6OnlIupTSLw3uMv/mZr+Abp+scdpIFX0UAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAOVBMVEUAAADXu2Dy58ro1qX+/fr48+bv4rzOESb////9/f3hzIf17NXfyHzr3a3NqjbHoBzn1aDOESXDmQkYz2ycAAAAXUlEQVQ4y+3QOQ6AMAxE0Xgle4D7H5YDGMmmocovracpnI5gacOv8HqFJZtU7K1YyCzC7EOGJtKAfTiBAJYLC8M96pqBxV4Vew/AiqpYAxCVaDQfZtGTUOx7dv/2ADMgFMzubFP8AAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAOVBMVEUAAADXu2Dy58ro1qX+/fr48+bv4rzOESb////9/f3hzIf17NXfyHzr3a3NqjbHoBzn1aDOESXDmQkYz2ycAAAAXUlEQVQ4y+3QOQ6AMAxE0Xgle4D7H5YDGMmmocovracpnI5gacOv8HqFJZtU7K1YyCzC7EOGJtKAfTiBAJYLC8M96pqBxV4Vew/AiqpYAxCVaDQfZtGTUOx7dv/2ADMgFMzubFP8AAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAOVBMVEX///+jrcD28fLsf4SEkqztiY3CydYGI1faEhr////nYGXqdXnaEBffMTjDytdMYIUtRXAVL2D2xsfKG8juAAAAAXRSTlP9g+pWxwAAAGlJREFUOMvF0FkKgDAMRdG0iU3naf+LdQEGfAjq/T70lRCla9GIXoTeg1AEgi7MGRwA+1JdAZl2qg764xAZEOwp9b8OfgfF6DAiNTJG6Gu4NwhzhiC3WBsjL5ZaGZouLRYIsvf5rzs+gSfVcCE9ZTrZmgAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAOVBMVEX///+jrcD28fLsf4SEkqztiY3CydYGI1faEhr////nYGXqdXnaEBffMTjDytdMYIUtRXAVL2D2xsfKG8juAAAAAXRSTlP9g+pWxwAAAGlJREFUOMvF0FkKgDAMRdG0iU3naf+LdQEGfAjq/T70lRCla9GIXoTeg1AEgi7MGRwA+1JdAZl2qg764xAZEOwp9b8OfgfF6DAiNTJG6Gu4NwhzhiC3WBsjL5ZaGZouLRYIsvf5rzs+gSfVcCE9ZTrZmgAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAP1BMVEUZigAZhQAwgQDFaQC3YQBSawNsJgPvfQDeIBAAAABmgABfZAVeRQGlaAB7bgBNeQCLcwDSawCeagBiVANaewDu6/ERAAAAYElEQVQ4y+3QSQ6AIAxA0Q4girYMev+zWg8gsjDGBS/p7gcKAB+iSAhw2CClZiiFJXPWKlybR6JyKYGZXaaH2zElcc5jx6Koip1Pwvd+ZzX7ZuLlPvSzmRbjghnhCP8UntyWCYNHCcFWAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAP1BMVEUZigAZhQAwgQDFaQC3YQBSawNsJgPvfQDeIBAAAABmgABfZAVeRQGlaAB7bgBNeQCLcwDSawCeagBiVANaewDu6/ERAAAAYElEQVQ4y+3QSQ6AIAxA0Q4girYMev+zWg8gsjDGBS/p7gcKAB+iSAhw2CClZiiFJXPWKlybR6JyKYGZXaaH2zElcc5jx6Koip1Pwvd+ZzX7ZuLlPvSzmRbjghnhCP8UntyWCYNHCcFWAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAP1BMVEXtGyMvtnEPq1s/vHzyVVv//f0AplHxU1n////tHCQfsWav48jv+vSV2ra/6dN/0qdfx5HW8eNvzZzbXFlPwoebhZrvAAAACHRSTlP9/////////sajZT8AAACUSURBVDjL5dPLDgMhCAVQgXqH4tvO/39rt61OdNbtXbAwJ2gIOve8Fed+Ch6PWzmc1zFR8nSm/gIWgPINmE2YaA8jVQZS28FA1dgq+rZjAhggS2sYTyKGAFbiEuZMDADVaAl9Y2MhAFLKCrYeRADIycMjx6tTaipAUNUQNgNvjGk4VzD3qLWEGY7b8/qoX9vzl5/rDXxKIaya/qD4AAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAP1BMVEXtGyMvtnEPq1s/vHzyVVv//f0AplHxU1n////tHCQfsWav48jv+vSV2ra/6dN/0qdfx5HW8eNvzZzbXFlPwoebhZrvAAAACHRSTlP9/////////sajZT8AAACUSURBVDjL5dPLDgMhCAVQgXqH4tvO/39rt61OdNbtXbAwJ2gIOve8Fed+Ch6PWzmc1zFR8nSm/gIWgPINmE2YaA8jVQZS28FA1dgq+rZjAhggS2sYTyKGAFbiEuZMDADVaAl9Y2MhAFLKCrYeRADIycMjx6tTaipAUNUQNgNvjGk4VzD3qLWEGY7b8/qoX9vzl5/rDXxKIaya/qD4AAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAPFBMVEUgQo26xNxmfbGLnMTI0ONYcaouTZWQocf///8hQo48WZzk6PHV2+p0ibhKZaOClb+suNXy9PjW3OqdrM5Jyi73AAAAAXRSTlP9g+pWxwAAAQNJREFUOMu1lMGOxSAIRasBpAhW7f//6yzaTlVeMm8zLG9O4ILgtu1rMDM7cdtuMAKc5MAUINEIloKIIS3gpR5zxt0UxJc2BVrAfMoHj3zI4nHHCi05EENvtoApaXBgTGeuI0iau2tmp9xhaobiyT2lM8cRlFgvFd+MhMAA2nDKSPFSZfIoiEjOY0HEu3Rywczs1Y2/jH8Av/Z4d02IH96ankk845ESAlzjHkCRV33nSKbmt4dMV7AH/LBmvZZ1zaqGJA4EDQfN4C6m4I9LLMN8XMo5xBU8MudQRhC5wXOHL2icAa47fPaxska0dowgWWCIaC2OpUsFgGMtjb/q0MwfP8UPxHsifYgZVt0AAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAPFBMVEUgQo26xNxmfbGLnMTI0ONYcaouTZWQocf///8hQo48WZzk6PHV2+p0ibhKZaOClb+suNXy9PjW3OqdrM5Jyi73AAAAAXRSTlP9g+pWxwAAAQNJREFUOMu1lMGOxSAIRasBpAhW7f//6yzaTlVeMm8zLG9O4ILgtu1rMDM7cdtuMAKc5MAUINEIloKIIS3gpR5zxt0UxJc2BVrAfMoHj3zI4nHHCi05EENvtoApaXBgTGeuI0iau2tmp9xhaobiyT2lM8cRlFgvFd+MhMAA2nDKSPFSZfIoiEjOY0HEu3Rywczs1Y2/jH8Av/Z4d02IH96ankk845ESAlzjHkCRV33nSKbmt4dMV7AH/LBmvZZ1zaqGJA4EDQfN4C6m4I9LLMN8XMo5xBU8MudQRhC5wXOHL2icAa47fPaxska0dowgWWCIaC2OpUsFgGMtjb/q0MwfP8UPxHsifYgZVt0AAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAARVBMVEX///+xt6THy7724cbqvH/Xfw+QmH3VeAD99u/d4Njt6+Ty1a/vzZ/lq1/iolDaiB/tw4/S1svns3Dfmj+8wbF5g2Obo4sXWHv7AAAAkUlEQVQYGd3BSRaCQAwFwN9jkoaemO5/VH2KyibgVqvwB5jxDfYj4xqXMEDFeEpuCp6hc3P2fvSZKHiccbQLDBVPZSi0CwzFwJmOChSODupcpwGKQB8NJ0Z6qY1xplW6y35kXHFoHtdWAcDYyQpNtBZv1kaoNtMFD9LNBl2SaMQCVkyUhDPSTUwpmi64tiz4TTctpAW3+OsVrgAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAARVBMVEX///+xt6THy7724cbqvH/Xfw+QmH3VeAD99u/d4Njt6+Ty1a/vzZ/lq1/iolDaiB/tw4/S1svns3Dfmj+8wbF5g2Obo4sXWHv7AAAAkUlEQVQYGd3BSRaCQAwFwN9jkoaemO5/VH2KyibgVqvwB5jxDfYj4xqXMEDFeEpuCp6hc3P2fvSZKHiccbQLDBVPZSi0CwzFwJmOChSODupcpwGKQB8NJ0Z6qY1xplW6y35kXHFoHtdWAcDYyQpNtBZv1kaoNtMFD9LNBl2SaMQCVkyUhDPSTUwpmi64tiz4TTctpAW3+OsVrgAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAARVBMVEX////30tg1TTNpOTP0w8zWJUUjVDIAYjP////SEDTxtL+/FzP64eVIRTKELjPbQV6RKTLjaYCeJDP88PLmeI30xM3gWnIwpA//AAAAAXRSTlP9g+pWxwAAAHtJREFUOMvlkzsSgCAMRPkEZBVFRbz/UUUsdSCFlaZJ8ybJ7k5E91DuXkJ8HVQpMkC7AjCLbIFjxibytPV10AKDLTf6OjgAYxHTWK2AOTdycq+DGtC59caEOjgB6vQxZOH0ykT2jWzVxUfF8fFKJrWT4WddWIo//JlH8AAwAB+HdjSvjAAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAARVBMVEX////30tg1TTNpOTP0w8zWJUUjVDIAYjP////SEDTxtL+/FzP64eVIRTKELjPbQV6RKTLjaYCeJDP88PLmeI30xM3gWnIwpA//AAAAAXRSTlP9g+pWxwAAAHtJREFUOMvlkzsSgCAMRPkEZBVFRbz/UUUsdSCFlaZJ8ybJ7k5E91DuXkJ8HVQpMkC7AjCLbIFjxibytPV10AKDLTf6OjgAYxHTWK2AOTdycq+DGtC59caEOjgB6vQxZOH0ykT2jWzVxUfF8fFKJrWT4WddWIo//JlH8AAwAB+HdjSvjAAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAARVBMVEX/zgDKwAoBMYIplynSEDSTy5NAZKH///8AMIIolyjwjxFFJWjwsLxfais7VWSHhD1mcE7nvwzIvwqnjXNwSH3MhhcOOXp2KHH9AAAAaklEQVQ4y93NSRKAIAxE0RYnnAIIeP+jWmVW9MZs9S+7XiVwvm0bnjaaHRQGZ4IiKcplgQmIptcByTsTvKK8XZyoorDwjpnaFe68/wuOVFaYeUe/tB0KD5r7f8Gza6sKK80nuFXhire+DG9UNhiZFUzRDQAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAARVBMVEX/zgDKwAoBMYIplynSEDSTy5NAZKH///8AMIIolyjwjxFFJWjwsLxfais7VWSHhD1mcE7nvwzIvwqnjXNwSH3MhhcOOXp2KHH9AAAAaklEQVQ4y93NSRKAIAxE0RYnnAIIeP+jWmVW9MZs9S+7XiVwvm0bnjaaHRQGZ4IiKcplgQmIptcByTsTvKK8XZyoorDwjpnaFe68/wuOVFaYeUe/tB0KD5r7f8Gza6sKK80nuFXhire+DG9UNhiZFUzRDQAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAARVBMVEXXExnz9fldMVZwj7LXFBrrio0oPnHriYz///8RRX6/zdyqHi/QFRwURX3JFiAnVooyX5CdITbP2uVwLU2En7xfgqhiXoONvJBJAAAACHRSTlP+/////////kgsYtwAAAB+SURBVDjLjcxHEoAgEAVR0DEMglnvf1RzGUbg9/pVq0mXUIobA0LmVIMQmu4QmZ4wPr1gdHpDbg0Iw9MXdG2PwbVRg5B9UwHZjSBknjNZ8XMcLMnUF7q8IgLg/05A307AxBIC/bs3DOyeMLh7wKQmBOYdEQKjuwMCux0iuw0uJHMc3CNW1r8AAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAARVBMVEXXExnz9fldMVZwj7LXFBrrio0oPnHriYz///8RRX6/zdyqHi/QFRwURX3JFiAnVooyX5CdITbP2uVwLU2En7xfgqhiXoONvJBJAAAACHRSTlP+/////////kgsYtwAAAB+SURBVDjLjcxHEoAgEAVR0DEMglnvf1RzGUbg9/pVq0mXUIobA0LmVIMQmu4QmZ4wPr1gdHpDbg0Iw9MXdG2PwbVRg5B9UwHZjSBknjNZ8XMcLMnUF7q8IgLg/05A307AxBIC/bs3DOyeMLh7wKQmBOYdEQKjuwMCux0iuw0uJHMc3CNW1r8AAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAS1BMVEUOdGGGubDD3dglgnA8j3+Vwrqky8QPdWL///9Ll4ktglldopUee1201M5Sk09pqZ3w9/bS5eK0vTY8iVXh7ux4safSyi6zvTely8QsOr8PAAAAAXRSTlP+GuMHfQAAAKlJREFUOMvdk9sKwzAIhqMx05x6btf3f9LZDgaDYQq72v4LJfDxRQNxji/FuR8FU7oGpm0rbXC+M3cd85RaxpnZ+7NZYFEXZ8SsrSsGmKbCsYpU4vJ++YdlIopgbC3jgfwisngCb4ERQt1HNYYaIBpgL5pBjUfPBkj1JIejIlkzrjgKAqCMuFozEkDoA5EWANNI8RWyjM6H2zO7/Tx6pqxsyOpzf/FnvgMfWGQc92vH/soAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAS1BMVEUOdGGGubDD3dglgnA8j3+Vwrqky8QPdWL///9Ll4ktglldopUee1201M5Sk09pqZ3w9/bS5eK0vTY8iVXh7ux4safSyi6zvTely8QsOr8PAAAAAXRSTlP+GuMHfQAAAKlJREFUOMvdk9sKwzAIhqMx05x6btf3f9LZDgaDYQq72v4LJfDxRQNxji/FuR8FU7oGpm0rbXC+M3cd85RaxpnZ+7NZYFEXZ8SsrSsGmKbCsYpU4vJ++YdlIopgbC3jgfwisngCb4ERQt1HNYYaIBpgL5pBjUfPBkj1JIejIlkzrjgKAqCMuFozEkDoA5EWANNI8RWyjM6H2zO7/Tx6pqxsyOpzf/FnvgMfWGQc92vH/soAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAS1BMVEX+ywDM7Mv7+fJAtj/qKDnpKDg0sjI0sjP+ywD////zfonsQ1H719r+21Dm9uZawFn2naTuUF74tLn/7KDk9eOz4rON1IzA57/X8Nerw/7WAAAAAXRSTlP+GuMHfQAAAJxJREFUOMvV0EkOwyAMBVCwIa0ZQpr5/ictHRIVShx2Vf8CIevJ2AhxrYoQfwq9r4TDUAkB6qAn8gXYXPJMRNNXsSlAIAIW4iIfWSlmfV4XLHdESUkkHj49f7qZmzG0G2sDvwyOLzfi2dbvlu3Z94Tt6ZBDrZJ00fR9PExa1zl0BJEYIMdDS84qrbR1ZFloun0Gw8Jb8Vqa8Si/hHf9fxwRdAZrkgAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAS1BMVEX+ywDM7Mv7+fJAtj/qKDnpKDg0sjI0sjP+ywD////zfonsQ1H719r+21Dm9uZawFn2naTuUF74tLn/7KDk9eOz4rON1IzA57/X8Nerw/7WAAAAAXRSTlP+GuMHfQAAAJxJREFUOMvV0EkOwyAMBVCwIa0ZQpr5/ictHRIVShx2Vf8CIevJ2AhxrYoQfwq9r4TDUAkB6qAn8gXYXPJMRNNXsSlAIAIW4iIfWSlmfV4XLHdESUkkHj49f7qZmzG0G2sDvwyOLzfi2dbvlu3Z94Tt6ZBDrZJ00fR9PExa1zl0BJEYIMdDS84qrbR1ZFloun0Gw8Jb8Vqa8Si/hHf9fxwRdAZrkgAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAUVBMVEUAAAC7AQHdgIAmAADl5eXl7+UBZgHZcnIAZgC7AABRAADMQEDBLy9pAAAyczIwMDAQEBBAQgDY3di4UFCjAADQ0NCAgIBgh2CQkJAYWQDmoKBlCIy5AAAAmUlEQVQ4y9WRyw6DIBBFr2Ipw0PFt/7/h7az6IJRA4tuPAmB3JzcDAA8jq47n66Ze8AqoJ8zlcsG65zFtmTEvlFU16S4OaURDJ5FP8gcb8FILNIoc1SUEiYWpyDi6iSqQM5RUFkRlrwnWyQeByn8r7F4xttbF7/jS/D7GZlDm5R1Z3FfRayl2LYmOhd5z4jfFaPROife8QjxAw+XGXSXe9vGAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAUVBMVEUAAAC7AQHdgIAmAADl5eXl7+UBZgHZcnIAZgC7AABRAADMQEDBLy9pAAAyczIwMDAQEBBAQgDY3di4UFCjAADQ0NCAgIBgh2CQkJAYWQDmoKBlCIy5AAAAmUlEQVQ4y9WRyw6DIBBFr2Ipw0PFt/7/h7az6IJRA4tuPAmB3JzcDAA8jq47n66Ze8AqoJ8zlcsG65zFtmTEvlFU16S4OaURDJ5FP8gcb8FILNIoc1SUEiYWpyDi6iSqQM5RUFkRlrwnWyQeByn8r7F4xttbF7/jS/D7GZlDm5R1Z3FfRayl2LYmOhd5z4jfFaPROife8QjxAw+XGXSXe9vGAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAV1BMVEXuGyTNpbfxPkfIIzr+/v8LTaH7x8kLTqL////uHCXyVFvyjZL1dXsZSpn6rbD+8fL94+QYSps4b7PkdX9hWY9gWpGSlbr4nKCdbpKOa5PFiZ9IernPj6EDTQy6AAAAAXRSTlP+GuMHfQAAAJNJREFUOMvdz9kOhCAMQFEsCtNaQHGb7f+/cyBGfXGKz94QCMkhDap+XKpWN4TB7AURGkwtS95NGbatBBubqxC96TqTHlT2rOaAzN4zlyEweU8MRUghjw5UHr19RobzAWcRfkBr7VzaIIrQfnvrbFrubWUYp/Wc4j+ocI3GfB8Jz1M7RHj1/ROwDBGHAfESlLoX/AFBXSI5QBCfVgAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAV1BMVEXuGyTNpbfxPkfIIzr+/v8LTaH7x8kLTqL////uHCXyVFvyjZL1dXsZSpn6rbD+8fL94+QYSps4b7PkdX9hWY9gWpGSlbr4nKCdbpKOa5PFiZ9IernPj6EDTQy6AAAAAXRSTlP+GuMHfQAAAJNJREFUOMvdz9kOhCAMQFEsCtNaQHGb7f+/cyBGfXGKz94QCMkhDap+XKpWN4TB7AURGkwtS95NGbatBBubqxC96TqTHlT2rOaAzN4zlyEweU8MRUghjw5UHr19RobzAWcRfkBr7VzaIIrQfnvrbFrubWUYp/Wc4j+ocI3GfB8Jz1M7RHj1/ROwDBGHAfESlLoX/AFBXSI5QBCfVgAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAWlBMVEUAAAAQDQDVLSbRHSpmBBfKCC7/ywBmBBfMCS8AAABPPwDhWRvAmQAjHADzvwDuiA/yrAVfSwCQcgB1XQDcRiCgfwDQpQCwjADymgufTg7pdRSzaAvFfwhAMwAtf7ufAAAACHRSTlP9/////////sajZT8AAACgSURBVDjL1Y/JDsMgDEQxNE7MDk3S/f9/s0bJhVYKXDMHLJmnGY8Ypi4N4qSgkkZ1gTLi3BltfFQd4JNNsQ3KgEFO4S6bjgYNFypPA5xVqYKtaLkfF8MPOF5qvd7bxEe1HoWgWgkX4KFtvRZ/IF3ROqLo4RAsv271n7y4Y8e8aiDIPic6BsFbZGnbcuTspEHzpTfdKrPL2dQHsmkvSKcDvxd5Iyc+x/1IAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAWlBMVEUAAAAQDQDVLSbRHSpmBBfKCC7/ywBmBBfMCS8AAABPPwDhWRvAmQAjHADzvwDuiA/yrAVfSwCQcgB1XQDcRiCgfwDQpQCwjADymgufTg7pdRSzaAvFfwhAMwAtf7ufAAAACHRSTlP9/////////sajZT8AAACgSURBVDjL1Y/JDsMgDEQxNE7MDk3S/f9/s0bJhVYKXDMHLJmnGY8Ypi4N4qSgkkZ1gTLi3BltfFQd4JNNsQ3KgEFO4S6bjgYNFypPA5xVqYKtaLkfF8MPOF5qvd7bxEe1HoWgWgkX4KFtvRZ/IF3ROqLo4RAsv271n7y4Y8e8aiDIPic6BsFbZGnbcuTspEHzpTfdKrPL2dQHsmkvSKcDvxd5Iyc+x/1IAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAWlBMVEX///80V4IzV4HBydPYQFGqucrvr7YALWL////OESaFrYzc3N2MwZvw9OtdbYLyv8XDqKJ3QDOQiYx0e2jDk5hopW2UPkR2rXvRXlettL2ZOTKbhpy9bH/R5dbyk4vSAAAAAXRSTlP9g+pWxwAAAGVJREFUOMvt0LkWgCAMRNEgoiObAu7L//+mfdJQWfnKnNtkqOcZAOgGHv3wY6galsahMbY8IrB0jLE4fiUJgy27fSqgtzlvvgJO9r6WKpjONc0SivdGF4LTikdisA4AjJj3hx/DF+7cINDJhV4uAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAWlBMVEX///80V4IzV4HBydPYQFGqucrvr7YALWL////OESaFrYzc3N2MwZvw9OtdbYLyv8XDqKJ3QDOQiYx0e2jDk5hopW2UPkR2rXvRXlettL2ZOTKbhpy9bH/R5dbyk4vSAAAAAXRSTlP9g+pWxwAAAGVJREFUOMvt0LkWgCAMRNEgoiObAu7L//+mfdJQWfnKnNtkqOcZAOgGHv3wY6galsahMbY8IrB0jLE4fiUJgy27fSqgtzlvvgJO9r6WKpjONc0SivdGF4LTikdisA4AjJj3hx/DF+7cINDJhV4uAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAY1BMVEVqsef1xcbv+PZztug+r4gSrSzYGB4SrStqsuf///+w1vIgsjjX6/nE6s80uUn2+v6MxO2r4rXztbfpf4LH4vZ8u+przHqhzvDi9eWJ1pV60YhNwWD64eLiVVnma2/wpqjbMDVRQpFcAAAAAXRSTlP9g+pWxwAAAKtJREFUOMuN0NkSgjAUA1BapDGUVZQd9P+/0heKslhvns8kMwmSx1WSICDjUAiZN0JIJoUQkvdQCJnHQkjqQghJz1Vb6LlqD6mbf1Ct+4Ufzre19eyqBY5KmUkpz1WusTLGmE8n08s+bnr+drpHhG0iB1/VVDlXWhzi4KjI57KaAb/hmrY+rJ7CzuI8W1hmgAC2AyCAugcksLSQwHQABFDXgAR2FhKYZpAkegP2fSKc/aQhAQAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAY1BMVEVqsef1xcbv+PZztug+r4gSrSzYGB4SrStqsuf///+w1vIgsjjX6/nE6s80uUn2+v6MxO2r4rXztbfpf4LH4vZ8u+przHqhzvDi9eWJ1pV60YhNwWD64eLiVVnma2/wpqjbMDVRQpFcAAAAAXRSTlP9g+pWxwAAAKtJREFUOMuN0NkSgjAUA1BapDGUVZQd9P+/0heKslhvns8kMwmSx1WSICDjUAiZN0JIJoUQkvdQCJnHQkjqQghJz1Vb6LlqD6mbf1Ct+4Ufzre19eyqBY5KmUkpz1WusTLGmE8n08s+bnr+drpHhG0iB1/VVDlXWhzi4KjI57KaAb/hmrY+rJ7CzuI8W1hmgAC2AyCAugcksLSQwHQABFDXgAR2FhKYZpAkegP2fSKc/aQhAQAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAb1BMVEUAAAB+bgKsNwH////ZAAAAAADqbQF+bgKsNwH83ATZAQD72wONjY1fX1vm5+a4uLbbEBD2v7/pb2/ukJAQEBC2UCDAwMDPW1oiJSLijVjvoZNwcHCcnJzExMTrqKjGNTWurq66mI/77e1FR0XhkJDFkXaHAAAACXRSTlP+/////////v4HKoILAAAAhElEQVQ4y82SSRLCIBQF0VYTwwcyJ45xuv8ZXUeogh328lXvXiu1T0KpjGKxSaJQ+piEzilWu1/a07n1xsoT68aaJ00dFTvsG+iiIoixgCeW2xUDuNlNL4b1XnoXAm5eJqJfC/Iwn7tExX7kJox9Qj0XuZpAPYFntP6zKA6JBOoJUmUUv8WyGwrCEGL4AAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAb1BMVEUAAAB+bgKsNwH////ZAAAAAADqbQF+bgKsNwH83ATZAQD72wONjY1fX1vm5+a4uLbbEBD2v7/pb2/ukJAQEBC2UCDAwMDPW1oiJSLijVjvoZNwcHCcnJzExMTrqKjGNTWurq66mI/77e1FR0XhkJDFkXaHAAAACXRSTlP+/////////v4HKoILAAAAhElEQVQ4y82SSRLCIBQF0VYTwwcyJ45xuv8ZXUeogh328lXvXiu1T0KpjGKxSaJQ+piEzilWu1/a07n1xsoT68aaJ00dFTvsG+iiIoixgCeW2xUDuNlNL4b1XnoXAm5eJqJfC/Iwn7tExX7kJox9Qj0XuZpAPYFntP6zKA6JBOoJUmUUv8WyGwrCEGL4AAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAb1BMVEX////3gIDWCBgRXPH////7wMD2f3/3gIAAUPDuAAAiZ/IwcfPQ3/0KT+lbMZQRSd5rmfdKg/WAqPiauvpFOKre6P7z9/80Pry6ETSUHlpxKn7hBA3zfoK3zfuIabJ5o/fMq8mDJGw2aOaow/o2Z+XRXciaAAAACHRSTlP9/////////sajZT8AAACqSURBVDjLrZTZFoIgFEVJrE6AqeTUaNP/f2OUYTwIXNfqPO917nxZlWxIYsgORxoI5HsiCLQdEQS2CRFEdjmtQhpBQJxTv5gDAmVNBIG+iYGljf+IgEpa0/t1OaUvKFL9iz/Zqjco1WBfWDK/efrIdwarpVNU5Wk4d/0CjigarVQ8R0BLE14M2DNUNR/dPun+ZTJzZk3cHrOPi4DWMzeceDPEK6TeNfVTvACicyGeiMPPMAAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAb1BMVEX////3gIDWCBgRXPH////7wMD2f3/3gIAAUPDuAAAiZ/IwcfPQ3/0KT+lbMZQRSd5rmfdKg/WAqPiauvpFOKre6P7z9/80Pry6ETSUHlpxKn7hBA3zfoK3zfuIabJ5o/fMq8mDJGw2aOaow/o2Z+XRXciaAAAACHRSTlP9/////////sajZT8AAACqSURBVDjLrZTZFoIgFEVJrE6AqeTUaNP/f2OUYTwIXNfqPO917nxZlWxIYsgORxoI5HsiCLQdEQS2CRFEdjmtQhpBQJxTv5gDAmVNBIG+iYGljf+IgEpa0/t1OaUvKFL9iz/Zqjco1WBfWDK/efrIdwarpVNU5Wk4d/0CjigarVQ8R0BLE14M2DNUNR/dPun+ZTJzZk3cHrOPi4DWMzeceDPEK6TeNfVTvACicyGeiMPPMAAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAbFBMVEX83AiRuRi+yBJRoSRyrx4VjS3n1gv63AkkkyoLiy/Pzg9fpyEcjyza0Q3v0Qv22wk1mSf32wlGniTSKxn83QkHiTDaEhrxnA4dfC3pZhFjVCayJx6LPiL60An4wwrNGBvvkA7cHRhWWyfgNxaA7xGhAAAAFHRSTlPzv8HPxfLO6eX6wcrrxtTd2+PT9HbczSwAAACWSURBVDjLjc1JEoJAFATRZhJQENTs3wzO3v+OLsAIVnbV+kWWaxsvzVEeRAj7QoRS1AFSdIWUmQghLUTIKRMhpLUI6c7eez8MUbhEp0mAdL2fZwHeRjMzs+sQK/J8mT3e8Wv4mF1qAd5tHO3Yx2EIEIJL6uj1umMlQlwiQthVItxG/8NNNAZxuQh/UQEuUQVC24iQMv8CwB5UlCzbsBIAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAbFBMVEX83AiRuRi+yBJRoSRyrx4VjS3n1gv63AkkkyoLiy/Pzg9fpyEcjyza0Q3v0Qv22wk1mSf32wlGniTSKxn83QkHiTDaEhrxnA4dfC3pZhFjVCayJx6LPiL60An4wwrNGBvvkA7cHRhWWyfgNxaA7xGhAAAAFHRSTlPzv8HPxfLO6eX6wcrrxtTd2+PT9HbczSwAAACWSURBVDjLjc1JEoJAFATRZhJQENTs3wzO3v+OLsAIVnbV+kWWaxsvzVEeRAj7QoRS1AFSdIWUmQghLUTIKRMhpLUI6c7eez8MUbhEp0mAdL2fZwHeRjMzs+sQK/J8mT3e8Wv4mF1qAd5tHO3Yx2EIEIJL6uj1umMlQlwiQthVItxG/8NNNAZxuQh/UQEuUQVC24iQMv8CwB5UlCzbsBIAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAe1BMVEUAFIm/3dHwshwPfUsAd0n/uBzA3dIAAAD////gPDHeOzGQxK/g6uv47/DP5dyvpCovkGqAu6TiSD4QI5BsTgs/mXbpc2tIVqsgFwMffkP3shq/qCfAihVvkzXQlhbxqaSQmctQiztPizuAXA5/XA4wIwX1wr6wttrfsCKtJwiyAAAAwElEQVQ4y42S2RLCIAwAY1sMYr3aqnU8q/X4/y8URBTKuc87OyEECsGK0kc1CcHgIxbLOZ1tUsRolMFRmeEoA7LfadFz5RUPJEuJMsAm06JTX5SL2PLoVZnr0h0VIoroIv+auTsqRWxPZtSBFBFvRI+ObZSIdz3q4Cea0aCIDSGvFLFPK4oZu4QZe+PVI5v/HruEPQ5/5lKDjfxrPVduwYV1Pc4cZ3CPnhzHvHBfjmOctzfH0XLPGqJiLKfEaA7gDafDHAN8aOvZAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAe1BMVEUAFIm/3dHwshwPfUsAd0n/uBzA3dIAAAD////gPDHeOzGQxK/g6uv47/DP5dyvpCovkGqAu6TiSD4QI5BsTgs/mXbpc2tIVqsgFwMffkP3shq/qCfAihVvkzXQlhbxqaSQmctQiztPizuAXA5/XA4wIwX1wr6wttrfsCKtJwiyAAAAwElEQVQ4y42S2RLCIAwAY1sMYr3aqnU8q/X4/y8URBTKuc87OyEECsGK0kc1CcHgIxbLOZ1tUsRolMFRmeEoA7LfadFz5RUPJEuJMsAm06JTX5SL2PLoVZnr0h0VIoroIv+auTsqRWxPZtSBFBFvRI+ObZSIdz3q4Cea0aCIDSGvFLFPK4oZu4QZe+PVI5v/HruEPQ5/5lKDjfxrPVduwYV1Pc4cZ3CPnhzHvHBfjmOctzfH0XLPGqJiLKfEaA7gDafDHAN8aOvZAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAe1BMVEX///9/f3+Pj49vb28PDw8/Pz/v7+/NLjoAR6CgoKC/v7/g4OAgICAfHx8VRJbzy862qcGEhIRmOm3Mwsqtra28L0IuR5DVhJBzbp6mMk3mlpzTR1HvvcHssLSTiKykl7bs5uxfX1+UlJT88vKPd53ZYmtTWpWXl5dQUFDfXWhyAAAA+ElEQVQ4y7WTiQ6DIAyGBYfgjdfu+37/J1zL0GVUzZZsPzGR+sEvbfG8/ykOaCyIe0DhR24o8gXleMrS6G3ToIYQJ8aTEMbbnhGGipgY4zCvpzx/xnzB7oWgxixF53wmQRdkg+JIzMPWeCOtNjCp0Dx0/pEb47XstIbpQXCaII7Gqxe4QnM2kPSqpRbw5CPVOVssU1kplyPgvESuyRSoHAVV2chmqoxmI6CG75my0gMQw1N3FCzoP7XN4+4F7nrz2FVm23Lb/srwhCW3BM21Ocq1MrWuIczd7gmZ7R5P673tnmPtds9gPzJSazR3O5waf3NnPr+Fv9IDQ40NIe3u0ysAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAe1BMVEX///9/f3+Pj49vb28PDw8/Pz/v7+/NLjoAR6CgoKC/v7/g4OAgICAfHx8VRJbzy862qcGEhIRmOm3Mwsqtra28L0IuR5DVhJBzbp6mMk3mlpzTR1HvvcHssLSTiKykl7bs5uxfX1+UlJT88vKPd53ZYmtTWpWXl5dQUFDfXWhyAAAA+ElEQVQ4y7WTiQ6DIAyGBYfgjdfu+37/J1zL0GVUzZZsPzGR+sEvbfG8/ykOaCyIe0DhR24o8gXleMrS6G3ToIYQJ8aTEMbbnhGGipgY4zCvpzx/xnzB7oWgxixF53wmQRdkg+JIzMPWeCOtNjCp0Dx0/pEb47XstIbpQXCaII7Gqxe4QnM2kPSqpRbw5CPVOVssU1kplyPgvESuyRSoHAVV2chmqoxmI6CG75my0gMQw1N3FCzoP7XN4+4F7nrz2FVm23Lb/srwhCW3BM21Ocq1MrWuIczd7gmZ7R5P673tnmPtds9gPzJSazR3O5waf3NnPr+Fv9IDQ40NIe3u0ysAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAeFBMVEUAAAArIwN3YwrrwhQdGAL2zBUptzcetToAo9380RbnzRxRvDHFpBHxyBUIpddfTwi0lQ8WEgHdzRqjxiNqWAm9nBCOvGw8rq7gyytivi4Rps9Osp+SwybVyjSpjA5TRQfNqhGdv2CzxyGpwVfTyxzNyDp9unovrLjWAwfLAAAAwklEQVQ4y43MWRKCMBAA0WF1hh0FRVTA/f43NBELs5BAf3c92Ng6RtSVMGbZwht5PcDiKHKWUebMI+MKgQNnfgx35OUi5wZg4nyRG+gJq7jgleljrHIJXd6IoHOpwtE+Q22Mt1Sr3AFRHTlXzXHKqHL+xEmjxlXpxIkj4xKJq6mZuP8Ynilwzdw0cs6xcL9xmRvHFdx3VLnco2uL+vigQeIKak44E6zi+ChypYnjo8zdW1wcGReZOHHsbdx/LDsrx/oAkpwc3/6WLokAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAeFBMVEUAAAArIwN3YwrrwhQdGAL2zBUptzcetToAo9380RbnzRxRvDHFpBHxyBUIpddfTwi0lQ8WEgHdzRqjxiNqWAm9nBCOvGw8rq7gyytivi4Rps9Osp+SwybVyjSpjA5TRQfNqhGdv2CzxyGpwVfTyxzNyDp9unovrLjWAwfLAAAAwklEQVQ4y43MWRKCMBAA0WF1hh0FRVTA/f43NBELs5BAf3c92Ng6RtSVMGbZwht5PcDiKHKWUebMI+MKgQNnfgx35OUi5wZg4nyRG+gJq7jgleljrHIJXd6IoHOpwtE+Q22Mt1Sr3AFRHTlXzXHKqHL+xEmjxlXpxIkj4xKJq6mZuP8Ynilwzdw0cs6xcL9xmRvHFdx3VLnco2uL+vigQeIKak44E6zi+ChypYnjo8zdW1wcGReZOHHsbdx/LDsrx/oAkpwc3/6WLokAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAflBMVEUyZv+CoZ3q7xpYgtD/AAD//wCZs3+Ur4Z2RKszZv+5y1dOet3yBg83aPqctXthicXM2T9mjL/8/QTPFzx2matskbn1+AxQV9uLqZE+b/FDcuulu3H6AgdGdOfP2ztHW+XCHkuPOIzd5il+QaGGPZdDXerH1UXZEi6vrGSYNIG39pwpAAAACXRSTlP9/////////v4+p77OAAABMUlEQVQ4y42Q15aDIBRFkZZclGVsqLHG9P//waBGI7aZ/cACzvYIIKYsmMHYfMdSDCnGRGpuK2yuU8GYQoUeMTGC08lYEqy7CoSANMxPtsXEZw0BpEV9BMwe6bqYPhhuL9GLkGY+dseQ83HqYj/rKr4igF36fCly/2T3s1EECHFZmGJR4nBIJyJIjqP+1fqXjTCXsCbq/4usjTyv/SwTxSQyRe0Iuxdt4RnBXARpeUAIeJaEmXhIrDByiX0ets6ulO5vZRM3Cq3kgNiIakqRcc3r1Y6ZKBv1S5eN8p3nb7lsnJ0R4ifVPGOA/ctcctqRX3bFOKAjQbwtDnUrpVNxWrconYg3hy5wbguxCugqQWWKV4du4FwnYlXTHepqELfrvqXHTrzX9E/qO0JHh/4D5/gBM/8mwq7UuJMAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAflBMVEUyZv+CoZ3q7xpYgtD/AAD//wCZs3+Ur4Z2RKszZv+5y1dOet3yBg83aPqctXthicXM2T9mjL/8/QTPFzx2matskbn1+AxQV9uLqZE+b/FDcuulu3H6AgdGdOfP2ztHW+XCHkuPOIzd5il+QaGGPZdDXerH1UXZEi6vrGSYNIG39pwpAAAACXRSTlP9/////////v4+p77OAAABMUlEQVQ4y42Q15aDIBRFkZZclGVsqLHG9P//waBGI7aZ/cACzvYIIKYsmMHYfMdSDCnGRGpuK2yuU8GYQoUeMTGC08lYEqy7CoSANMxPtsXEZw0BpEV9BMwe6bqYPhhuL9GLkGY+dseQ83HqYj/rKr4igF36fCly/2T3s1EECHFZmGJR4nBIJyJIjqP+1fqXjTCXsCbq/4usjTyv/SwTxSQyRe0Iuxdt4RnBXARpeUAIeJaEmXhIrDByiX0ets6ulO5vZRM3Cq3kgNiIakqRcc3r1Y6ZKBv1S5eN8p3nb7lsnJ0R4ifVPGOA/ctcctqRX3bFOKAjQbwtDnUrpVNxWrconYg3hy5wbguxCugqQWWKV4du4FwnYlXTHepqELfrvqXHTrzX9E/qO0JHh/4D5/gBM/8mwq7UuJMAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAflBMVEX////59vXouxDl0aKvehT9+/vR2+////8AOKgCOajHolX59Ozp3c7Gol69iQjPsnzDm0zPrV2tdwm2fwbw59bp2r3o1K7w48HfyZr17d+8iRm0gBnNp03v6OS7kDzXv5LdxYfMqW3QqEbOpkPCkBLBkinUow35zhTBkR/Ong6oZui5AAAAAXRSTlP9g+pWxwAAAJZJREFUOMvt0kcOwjAQBVCXMU7cS3qA0Mv9L4g4QJggkR1//TSaRohcFEK+gqIWXhscVjT0IeyolnJTzOUN6daeAaZIEdg0/pIdDFZVn6GwAE92SyeN9Nip5BhjeVQGGaa/OnZnMB6RirWKCVwGzlukR7rv4DEclMDWYwT3sbX4HqXkgkvzy1svgmWxKOUKcJ0P/089B19MsyEgLwCQwAAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAflBMVEX////59vXouxDl0aKvehT9+/vR2+////8AOKgCOajHolX59Ozp3c7Gol69iQjPsnzDm0zPrV2tdwm2fwbw59bp2r3o1K7w48HfyZr17d+8iRm0gBnNp03v6OS7kDzXv5LdxYfMqW3QqEbOpkPCkBLBkinUow35zhTBkR/Ong6oZui5AAAAAXRSTlP9g+pWxwAAAJZJREFUOMvt0kcOwjAQBVCXMU7cS3qA0Mv9L4g4QJggkR1//TSaRohcFEK+gqIWXhscVjT0IeyolnJTzOUN6daeAaZIEdg0/pIdDFZVn6GwAE92SyeN9Nip5BhjeVQGGaa/OnZnMB6RirWKCVwGzlukR7rv4DEclMDWYwT3sbX4HqXkgkvzy1svgmWxKOUKcJ0P/089B19MsyEgLwCQwAAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAh1BMVEUAAAACQwAAIgDdxAsAAAIAI4cAMwAAJIj83QkAAAAQDgCuozBPXV8WM3xfaVgACAAwKgEgHAEAVwAwR2/t0AiOfQU/OAK9ryieiwURaAAAGADt0hB3e0vNuiBfUwOumQbNtAc/U2gAEABPRQJvYQOelzi9qQZqfwMQIQB+lAQoVQF+bwSOjECMgg6qAAAAAXRSTlP+GuMHfQAAAWVJREFUOMt1ktm2gyAMRUVukYAjzrNW7fz/33dptaItPTwkmr0SchbGwXqpt5TCUOWOPceDMYMOdVUx5SqvqLMDe1qpIqUq57TfgGFq02paenK3Tt2lZzU9aJ+GK+iWNeblUqSYT3jpycu0rktXjbbd2rXny1i2w9P3Ck7/LOyWKTd35Ntlyv0yIbeVI9PDWT/sNNyBlv3DR2v10fj7EpPnU4ZhwEtHb44Q+P4YJAN8aAE9k5imDADsnnRddm+TRAsCEkiYZnGBOI6oFI78Qd8RCSEQIXFLF+Gg0YEgyVzk1+uboxHWjoaCEJHnN7yCFGe+DpTTC3HLFEejeGA6EArvcj5tQNpoR7+8LMYteGp+gayZvVnU+r9A8E/dZpk8R4XpaUFgnWp5PktfCUJEA7IhWP1ps4tJkDymriMkPsazNxkwOD5R7egn2Y5xl/nj7OGReD9A+c6SoAmCQP/MdmLAvv6B8Q8o+yuQH5IUZwAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAh1BMVEUAAAACQwAAIgDdxAsAAAIAI4cAMwAAJIj83QkAAAAQDgCuozBPXV8WM3xfaVgACAAwKgEgHAEAVwAwR2/t0AiOfQU/OAK9ryieiwURaAAAGADt0hB3e0vNuiBfUwOumQbNtAc/U2gAEABPRQJvYQOelzi9qQZqfwMQIQB+lAQoVQF+bwSOjECMgg6qAAAAAXRSTlP+GuMHfQAAAWVJREFUOMt1ktm2gyAMRUVukYAjzrNW7fz/33dptaItPTwkmr0SchbGwXqpt5TCUOWOPceDMYMOdVUx5SqvqLMDe1qpIqUq57TfgGFq02paenK3Tt2lZzU9aJ+GK+iWNeblUqSYT3jpycu0rktXjbbd2rXny1i2w9P3Ck7/LOyWKTd35Ntlyv0yIbeVI9PDWT/sNNyBlv3DR2v10fj7EpPnU4ZhwEtHb44Q+P4YJAN8aAE9k5imDADsnnRddm+TRAsCEkiYZnGBOI6oFI78Qd8RCSEQIXFLF+Gg0YEgyVzk1+uboxHWjoaCEJHnN7yCFGe+DpTTC3HLFEejeGA6EArvcj5tQNpoR7+8LMYteGp+gayZvVnU+r9A8E/dZpk8R4XpaUFgnWp5PktfCUJEA7IhWP1ps4tJkDymriMkPsazNxkwOD5R7egn2Y5xl/nj7OGReD9A+c6SoAmCQP/MdmLAvv6B8Q8o+yuQH5IUZwAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAh1BMVEUAejbjdGrhZlvpkIjeWEzVLh/bSj0AAADTIBHYPC6MFQuMPR3mgnkwMDBAm2jsnpcwk1uAvZuXKiFAQEAVFRVdXV1grIHBk4SAgIAQgkKiUkC7gXTwsKr0yMT53duTSSu1aGFwcHCQkJCNPR2weWNQo3WhYUcgik9wtI6hQTjeV0uQxaegzbTU8WaPAAABOElEQVQ4y73USXPCMAwF4MqWxBM4ZCcLJCyllKX///f10AvMxOml03f+Zjy2nvy2eM4ST3l/e0kcrv4ICkxE5XdoYipmIrOwMAFgKoDxDEy2BgBmAKBNFoNlfQMggEAAXDYfEXisD4CpiBgbsL1upmFbtgUAGN/VM7DP1/kkLKtTAWUoIKSGfd6tp2FdLeFSYvLsKGDVbSKwTZbp6B2LBPOjX2X5NDwl7XIYvHMO6sMwrL6yxySskqQYeQeAwcxjv84+J2FdH3tnHnwncjC3zV8e8mkudbkVeJhy6hXSrCOXqY5t4yRAfgrEzTWfPnqRnA7KCmUzKFvzyCIjrKoiEDtmZkcU9l0XbU8fiHYps985onMW7+MNaapqorZLcZkp7sGUXSDyjtXOcw1nI1VAlYz7/17X2E/xDU3CHUk5qQKIAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAh1BMVEUAejbjdGrhZlvpkIjeWEzVLh/bSj0AAADTIBHYPC6MFQuMPR3mgnkwMDBAm2jsnpcwk1uAvZuXKiFAQEAVFRVdXV1grIHBk4SAgIAQgkKiUkC7gXTwsKr0yMT53duTSSu1aGFwcHCQkJCNPR2weWNQo3WhYUcgik9wtI6hQTjeV0uQxaegzbTU8WaPAAABOElEQVQ4y73USXPCMAwF4MqWxBM4ZCcLJCyllKX///f10AvMxOml03f+Zjy2nvy2eM4ST3l/e0kcrv4ICkxE5XdoYipmIrOwMAFgKoDxDEy2BgBmAKBNFoNlfQMggEAAXDYfEXisD4CpiBgbsL1upmFbtgUAGN/VM7DP1/kkLKtTAWUoIKSGfd6tp2FdLeFSYvLsKGDVbSKwTZbp6B2LBPOjX2X5NDwl7XIYvHMO6sMwrL6yxySskqQYeQeAwcxjv84+J2FdH3tnHnwncjC3zV8e8mkudbkVeJhy6hXSrCOXqY5t4yRAfgrEzTWfPnqRnA7KCmUzKFvzyCIjrKoiEDtmZkcU9l0XbU8fiHYps985onMW7+MNaapqorZLcZkp7sGUXSDyjtXOcw1nI1VAlYz7/17X2E/xDU3CHUk5qQKIAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAhFBMVEWOP1wHccTt7e3X0c4Ac874+Pj8/Pz///8+mgDjIRjy5qYojEXz8/P69dr28Mwag3fcIx0Qe9Eyjtjj8Po0lB682vKbOlF/uOY7mAbm5ubSva1mwono2MlCrmlcUYRjT34KeasNe6K8LjYwYafGKi8nZK9Dl9uvr6/IyMh+y5u95MvZ7OBX9KKrAAAAAXRSTlP+GuMHfQAAAKhJREFUOMuN0OkOgjAQBGAou8Uth4iKHOJ9+/7vZwjQmJjKzM/Jl3ayXjTD4vkrENKhBCHNUUgRCqGZHaRjCUJkZg+BmQNcLEObJEmT8CcDpJttjElTY5yQNmPD3Dzf7Ia0HuGrbZt/MB+h3gYaeJHjDsY8uZEV1zWr2AVz2zwCpYK76+vvO+qq0s47FjKVHu4Fg+cMg/5FMFgIBneCwWuGQf8kGPQwJx8qkCM/iEB9nQAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAhFBMVEWOP1wHccTt7e3X0c4Ac874+Pj8/Pz///8+mgDjIRjy5qYojEXz8/P69dr28Mwag3fcIx0Qe9Eyjtjj8Po0lB682vKbOlF/uOY7mAbm5ubSva1mwono2MlCrmlcUYRjT34KeasNe6K8LjYwYafGKi8nZK9Dl9uvr6/IyMh+y5u95MvZ7OBX9KKrAAAAAXRSTlP+GuMHfQAAAKhJREFUOMuN0OkOgjAQBGAou8Uth4iKHOJ9+/7vZwjQmJjKzM/Jl3ayXjTD4vkrENKhBCHNUUgRCqGZHaRjCUJkZg+BmQNcLEObJEmT8CcDpJttjElTY5yQNmPD3Dzf7Ia0HuGrbZt/MB+h3gYaeJHjDsY8uZEV1zWr2AVz2zwCpYK76+vvO+qq0s47FjKVHu4Fg+cMg/5FMFgIBneCwWuGQf8kGPQwJx8qkCM/iEB9nQAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAn1BMVEUAAAB9oW4fGQGtjw7NECX80RV/uOLOESb///8Acsb88/TULUAZAQSnESUAOGNSRAZ+aQs/NAXdWGf209fPFio+BAtnQHXCDyMQDQG9nRDmvxPdtxPNqRHrnqZzCRXplZ69GDIAccU1WJzFECR7ChZNBw8IP2M3Z2dtlGxvWwmWfQwwKATtxBTgZ3SYKk8QarmPlLoTaLeRkLWdJ0vmvhOhEoG+AAABDUlEQVQ4y43OaXOCMBSF4duE9LQgq4ps7utY7f7/f1tZjCSQqmecQS7Ph5e29NC2tB484gZrslz9lBAxVj/UuRZZ2Ggn5pNf/ph23KCCGLeXN6I8CYKkqP/KjdHASZvpB5TyNOWcAr8NnFwglExeHEWWiWPBlUBIiFlzCYOQnUS9EytfmusMLZSZYS6yBv6KPLwGKlBmMi4u46wNVCBcz/N2+8OTssN+Vx5d6BDxq3ExutBamdzK6kEsPvrua4E+xPuy65Y/MMF+ZgwzxOeztm+oUHmBY78osx31mwYRqTDC/xDz1s1xC46G0g1HN+E1Uw80QJkZ4R7EtHJT3IdVZjfQDB27F2iEwPlsOP4B7QcfgqeTwMkAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAn1BMVEUAAAB9oW4fGQGtjw7NECX80RV/uOLOESb///8Acsb88/TULUAZAQSnESUAOGNSRAZ+aQs/NAXdWGf209fPFio+BAtnQHXCDyMQDQG9nRDmvxPdtxPNqRHrnqZzCRXplZ69GDIAccU1WJzFECR7ChZNBw8IP2M3Z2dtlGxvWwmWfQwwKATtxBTgZ3SYKk8QarmPlLoTaLeRkLWdJ0vmvhOhEoG+AAABDUlEQVQ4y43OaXOCMBSF4duE9LQgq4ps7utY7f7/f1tZjCSQqmecQS7Ph5e29NC2tB484gZrslz9lBAxVj/UuRZZ2Ggn5pNf/ph23KCCGLeXN6I8CYKkqP/KjdHASZvpB5TyNOWcAr8NnFwglExeHEWWiWPBlUBIiFlzCYOQnUS9EytfmusMLZSZYS6yBv6KPLwGKlBmMi4u46wNVCBcz/N2+8OTssN+Vx5d6BDxq3ExutBamdzK6kEsPvrua4E+xPuy65Y/MMF+ZgwzxOeztm+oUHmBY78osx31mwYRqTDC/xDz1s1xC46G0g1HN+E1Uw80QJkZ4R7EtHJT3IdVZjfQDB27F2iEwPlsOP4B7QcfgqeTwMkAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAn1BMVEXUOBXxvxW4Zk+qUQj/wwC2Qw/5uQDGCh7VORf/xADzrwfXshjmngfOwpvJrYaiXxTRsb67dgbgtxeOlVTDqi3+yBftvAv6ww6/rD7rnAfOaQ3TsADSjAvopxbFVhTikgywRh2sWRXWeQ+1Yz+5ZwvToh+/elzRpUnMkxzTlEWxLRLMiRexqFmEOzJsU1+5WxTijbSTSRzUs55eaVvNpHBqh5K5AAAAAXRSTlP+GuMHfQAAAJdJREFUOMvl07cSwkAMBNDL4HDBgHO2h5zD/38btDSyathGzRs1K5EZMuSnIJmjQojwUBHfMEHBmNKApggYNoerLOIpqCqviqIoVOEEFGUr5euhVQlDkZrBWnNztRHwxmLT2PvFuYHlMMzZsT8/R9YyBUNf7zjvekm1D8MgW3M+yi7IEhiulot6e9r7n4moEOoafT1/+VxvK0kl3q0nSz4AAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAn1BMVEXUOBXxvxW4Zk+qUQj/wwC2Qw/5uQDGCh7VORf/xADzrwfXshjmngfOwpvJrYaiXxTRsb67dgbgtxeOlVTDqi3+yBftvAv6ww6/rD7rnAfOaQ3TsADSjAvopxbFVhTikgywRh2sWRXWeQ+1Yz+5ZwvToh+/elzRpUnMkxzTlEWxLRLMiRexqFmEOzJsU1+5WxTijbSTSRzUs55eaVvNpHBqh5K5AAAAAXRSTlP+GuMHfQAAAJdJREFUOMvl07cSwkAMBNDL4HDBgHO2h5zD/38btDSyathGzRs1K5EZMuSnIJmjQojwUBHfMEHBmNKApggYNoerLOIpqCqviqIoVOEEFGUr5euhVQlDkZrBWnNztRHwxmLT2PvFuYHlMMzZsT8/R9YyBUNf7zjvekm1D8MgW3M+yi7IEhiulot6e9r7n4moEOoafT1/+VxvK0kl3q0nSz4AAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAsVBMVEXOECX/tk+2i43y9PrOESb//v5lhMLaS1r////bTV1wjcbIDyTkkmjr7vb/9+v+8d+IoNH3t2f/yHqqhqH++ff/qzbfoJV4kci3xeTb4u9afL73x4fMo7P/0IzHKTvfnYvoq3yySlTBWmXkmXvdmYjEh4zpm13Who3yx5f//fn/1pw+ZbL/6s2Dh7b/3aqLotG1f5j/oh/AZG7VfHemd3i+oKKak7bywobNamm+ECDt5uYgMvG2AAAACHRSTlP+/////////kgsYtwAAACzSURBVDjL5ZNHEoMwDEVtiA2xIfTeO+m93v9gYR0yNuvkLTVvpBl9CYDZJAD4KVGaT0ICSP4E2bY8Lo5EO2mfr+MO8cSFYyq0cyBcckQnb11Ke8Uw2KJmZpVCqXHOzQVT3MC67rvy/lCgxhQT6DbCwKmCK/boyG0uV0Eos4g5GqnESoubVaRbT2R2RATHFsGHOPQ461H1UMeErLHKS0b08V7HvsiNcFCDQPyS9eTr+cvnegOnuCDbYqL39gAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAsVBMVEXOECX/tk+2i43y9PrOESb//v5lhMLaS1r////bTV1wjcbIDyTkkmjr7vb/9+v+8d+IoNH3t2f/yHqqhqH++ff/qzbfoJV4kci3xeTb4u9afL73x4fMo7P/0IzHKTvfnYvoq3yySlTBWmXkmXvdmYjEh4zpm13Who3yx5f//fn/1pw+ZbL/6s2Dh7b/3aqLotG1f5j/oh/AZG7VfHemd3i+oKKak7bywobNamm+ECDt5uYgMvG2AAAACHRSTlP+/////////kgsYtwAAACzSURBVDjL5ZNHEoMwDEVtiA2xIfTeO+m93v9gYR0yNuvkLTVvpBl9CYDZJAD4KVGaT0ICSP4E2bY8Lo5EO2mfr+MO8cSFYyq0cyBcckQnb11Ke8Uw2KJmZpVCqXHOzQVT3MC67rvy/lCgxhQT6DbCwKmCK/boyG0uV0Eos4g5GqnESoubVaRbT2R2RATHFsGHOPQ461H1UMeErLHKS0b08V7HvsiNcFCDQPyS9eTr+cvnegOnuCDbYqL39gAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAwFBMVEUAAABISEj+8o/LEDMAAACPwLxLS0v84QAAcWjSEDTVHTDaNSrBEDE3AgxzOEUeAQfRDzPiWyB3CB0HAgDndxrxqQ30uAm5DCxdSEeOCCHqmBCWmJkZZGH3xwY0WFsJbGWIMUX71wLQLESlDCnoixKhCSbUXBnlbB3d2K1sbGyLZQPhqhyBgYHOzcHdRCetITyeKEH98Y/2yX6rCii9c2thBReGbFz10AOvqYJoEBE6NAWnbwmxnQDOwVh0axXq1Sux+eZ8AAAAAXRSTlP+GuMHfQAAANxJREFUOMuN0cd2wjAQQFElIognFwy4m5LQa3qv//9XWTiHrITnre9RmVGXk44oxc1QCNFjISQKhRBuh0KIPxZCdC6E0DCnGnoA0+riRDWMPdC+Ds/cKWDxlK6yIgP6g5YjpaBovX1ugwcAZl0ntOVgu3v/3iVJDOAHzhPtx9em2h9+VvXno67zap1v2tX+8W/yzhOjLHh+PazXuW54I4t++bKcm2XR+GubetArQYdtdwqsrZczvT93d/e/696VOdURzo2RQJsaEbweGRGMjZFAmxgR9EZGBBumcuwXkKYmCRjY5UEAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAwFBMVEUAAABISEj+8o/LEDMAAACPwLxLS0v84QAAcWjSEDTVHTDaNSrBEDE3AgxzOEUeAQfRDzPiWyB3CB0HAgDndxrxqQ30uAm5DCxdSEeOCCHqmBCWmJkZZGH3xwY0WFsJbGWIMUX71wLQLESlDCnoixKhCSbUXBnlbB3d2K1sbGyLZQPhqhyBgYHOzcHdRCetITyeKEH98Y/2yX6rCii9c2thBReGbFz10AOvqYJoEBE6NAWnbwmxnQDOwVh0axXq1Sux+eZ8AAAAAXRSTlP+GuMHfQAAANxJREFUOMuN0cd2wjAQQFElIognFwy4m5LQa3qv//9XWTiHrITnre9RmVGXk44oxc1QCNFjISQKhRBuh0KIPxZCdC6E0DCnGnoA0+riRDWMPdC+Ds/cKWDxlK6yIgP6g5YjpaBovX1ugwcAZl0ntOVgu3v/3iVJDOAHzhPtx9em2h9+VvXno67zap1v2tX+8W/yzhOjLHh+PazXuW54I4t++bKcm2XR+GubetArQYdtdwqsrZczvT93d/e/696VOdURzo2RQJsaEbweGRGMjZFAmxgR9EZGBBumcuwXkKYmCRjY5UEAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAz1BMVEX/1R/5+fn6w7D+Yy3+/v78/Pz/WR//qBr/ThL/1SD/1y362M3639b58O373Vr46KX/ehb/yh7+eEv8rZL843z58978gVf/WRL/1zH8mnf73mP+2Tv6zb76ooP+3Ef75Nz6kGn7dkj789T70cL5spn/qhv467H6lHL644f84nH8vqj677/457j79fP8+Ob86eD6hl/68cn82kf5t6D848/758j2wa/62Zb8yrj8uqP9bTz6zpr64pT6tk/8bDv8YCv8rVb37uX+dDDKysr/ZhSbtK0qAAAACHRSTlP9/////////V+qNIUAAAFMSURBVDjLjdPpcoIwFAVgAtz0sisCDpsgUHfcrWv3vv8zVcXOOC2hnF9h+DiTOyQcJ9VJs8HVgo9trAObDcR/oSxf6tjQ8wbDYnGtY0HZs4xebzweSPI2xgq49IwEgMDndL2Lu2y41Ht2TgiBTb6jWNUonfsmC5jF2b57qIK6TYix/XDUrO+atGqP1hTe0znGc1AEVqNvdTzJn4iggRKRQHXLoT9c2NPx4C0joLYU3lmFtBxaCZynBU0lYiDweJdf0CDJ6aioEQCEiGw4XJDTF6LQD0GjVbBjg5NefkWqBSY6KyacAKSgzJEKJq9potIvgUtd0o+5MhupsC9etXiRL4GyZZN8JKghvZ0CfOGhBMrGhgQjeshmd0MIf/foG2v31Tw/OxC1sCwFlJ/d29dPES+w4c9xv0xAyguvsLg9RahJWfCurircQ7uWw2/OAzNFFY4IKAAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAz1BMVEX/1R/5+fn6w7D+Yy3+/v78/Pz/WR//qBr/ThL/1SD/1y362M3639b58O373Vr46KX/ehb/yh7+eEv8rZL843z58978gVf/WRL/1zH8mnf73mP+2Tv6zb76ooP+3Ef75Nz6kGn7dkj789T70cL5spn/qhv467H6lHL644f84nH8vqj677/457j79fP8+Ob86eD6hl/68cn82kf5t6D848/758j2wa/62Zb8yrj8uqP9bTz6zpr64pT6tk/8bDv8YCv8rVb37uX+dDDKysr/ZhSbtK0qAAAACHRSTlP9/////////V+qNIUAAAFMSURBVDjLjdPpcoIwFAVgAtz0sisCDpsgUHfcrWv3vv8zVcXOOC2hnF9h+DiTOyQcJ9VJs8HVgo9trAObDcR/oSxf6tjQ8wbDYnGtY0HZs4xebzweSPI2xgq49IwEgMDndL2Lu2y41Ht2TgiBTb6jWNUonfsmC5jF2b57qIK6TYix/XDUrO+atGqP1hTe0znGc1AEVqNvdTzJn4iggRKRQHXLoT9c2NPx4C0joLYU3lmFtBxaCZynBU0lYiDweJdf0CDJ6aioEQCEiGw4XJDTF6LQD0GjVbBjg5NefkWqBSY6KyacAKSgzJEKJq9potIvgUtd0o+5MhupsC9etXiRL4GyZZN8JKghvZ0CfOGhBMrGhgQjeshmd0MIf/foG2v31Tw/OxC1sCwFlJ/d29dPES+w4c9xv0xAyguvsLg9RahJWfCurircQ7uWw2/OAzNFFY4IKAAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAzFBMVEUAlUP+zQEImUn+9fcQPnihlC/UGjwANYDSEDT9/PzSEjb2ztXogpXfUWwIO4XWJEUgSHDaOVb74+fuobASQ4nzvsjXLk3W3+vU7d+GzaY1q2pPdKjo9u4SnVH86+6omSvYthOUjTWf17jm6/NJtHmUqsrf8uc0X5vrk6P42uBAaKDbQ1/wsLzjaoGrvNXhXnZQZVjldYqfs8/6/PyJocTf5u9AsHKU0rDq7vX88PKr3MFebVF3e0TApx84VmSYjzPCqR5+mb9UuIFgb1Ar3ucZAAABMUlEQVQ4y4XS6XKCMBSG4cMSQVGJG9hFFm1VEBRrbWtd297/PTUiJhEjfr/feSaTOaAVrj11Zno6KOyeviJTvx+2p6uMoyFWdzsVX3EdU8+Fmrffe3lOiVlmRmmYIP9w8NEfzw06FutqTjcNVd+TJM9XGfemzFlWai0e5GOIEZLIEMKUM3iu2X0EOInuVpK2rkq5aoXjyoTLwmTtIuSuk7QLB0bjistCTUWbDUrB+mtZxNFQw1g7huGS5yaUO4fZctyYcZdhuAx4Lhgyjg8JNy7RrFItf8ogCkd2MGFZwxh+AAjC+nsxdw5HdrPGXifgTiHhWjyn9GUQhZecZTy/gGj1nwXH6XOl3xN2YDs1nX6y1bnBkUXcucc3OTLu3As4PoxX3z24HxLuF+B+OHOKOYB/YtwoD3EyzHYAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAAAzFBMVEUAlUP+zQEImUn+9fcQPnihlC/UGjwANYDSEDT9/PzSEjb2ztXogpXfUWwIO4XWJEUgSHDaOVb74+fuobASQ4nzvsjXLk3W3+vU7d+GzaY1q2pPdKjo9u4SnVH86+6omSvYthOUjTWf17jm6/NJtHmUqsrf8uc0X5vrk6P42uBAaKDbQ1/wsLzjaoGrvNXhXnZQZVjldYqfs8/6/PyJocTf5u9AsHKU0rDq7vX88PKr3MFebVF3e0TApx84VmSYjzPCqR5+mb9UuIFgb1Ar3ucZAAABMUlEQVQ4y4XS6XKCMBSG4cMSQVGJG9hFFm1VEBRrbWtd297/PTUiJhEjfr/feSaTOaAVrj11Zno6KOyeviJTvx+2p6uMoyFWdzsVX3EdU8+Fmrffe3lOiVlmRmmYIP9w8NEfzw06FutqTjcNVd+TJM9XGfemzFlWai0e5GOIEZLIEMKUM3iu2X0EOInuVpK2rkq5aoXjyoTLwmTtIuSuk7QLB0bjistCTUWbDUrB+mtZxNFQw1g7huGS5yaUO4fZctyYcZdhuAx4Lhgyjg8JNy7RrFItf8ogCkd2MGFZwxh+AAjC+nsxdw5HdrPGXifgTiHhWjyn9GUQhZecZTy/gGj1nwXH6XOl3xN2YDs1nX6y1bnBkUXcucc3OTLu3As4PoxX3z24HxLuF+B+OHOKOYB/YtwoD3EyzHYAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAABHVBMVEXGNTvHPkTl39/kwsP9/f4NP3QOQnfGNjz///8MQHbPdSxDRGzMaj7OjyXbz8/evb/GPD/Qkl3JcFPLq7HPXDTBMjf69/f25OVBQmvu0NHlsbPJZCvg09TSfH/KeDLEPjXUlSnLlJXo2drh2dnUt7fRsLDOhIfIUUr129zNnWzCVC3ioqRFRm7NbzjWiCfRalHRb3OuWWKubHjx7+/Fm57KTFHRmjrQi47XkpXTzM3KWlbexsbRj3LAa23x6encmZvLpKTEhYfEdXnVoaLrt7nMiUufRlfcioTil4htSkPSnk2kN0LBXjbOimLGfSbap6q8jJa0XzvQhX7Qd06qdzfaq2PSqDTCmzPUp4vYsbLhzs/t4ODJxMG6cXHIfH+gIrqyAAAAAXRSTlP9g+pWxwAAAQVJREFUOMvFzsdSwmAYheEUkJ+YbopJSCOFJk1CbwIq9t7b/V+GC51hgebLuPFdP3PmYFgmURj2N8hLySB+eswngAXh3CqJJREHoHwgVMv38klZgBbP6BrN0LVqAYL2BeM4DGNAH3n8rtN5dB6uf/mYzn61cdgYjMy2SzfaO9n10ivYVGxr0nsypjoAt1o9WWuZeF7ZBmCOcAN/zydYEPbHXdKN2CEAI48dT7UwItjNeHhFDENdXcxecwDczXPNkPyYTZ5BuAjm5LvPkT/DFPqucmMN3vrzUb2rovVSK1ikDNsjAokSUTxES+r2xeMoqQhBdGSS3GVdQyBEql7ZV1ACGNN/wk/ONTdzPjKb2QAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAABHVBMVEXGNTvHPkTl39/kwsP9/f4NP3QOQnfGNjz///8MQHbPdSxDRGzMaj7OjyXbz8/evb/GPD/Qkl3JcFPLq7HPXDTBMjf69/f25OVBQmvu0NHlsbPJZCvg09TSfH/KeDLEPjXUlSnLlJXo2drh2dnUt7fRsLDOhIfIUUr129zNnWzCVC3ioqRFRm7NbzjWiCfRalHRb3OuWWKubHjx7+/Fm57KTFHRmjrQi47XkpXTzM3KWlbexsbRj3LAa23x6encmZvLpKTEhYfEdXnVoaLrt7nMiUufRlfcioTil4htSkPSnk2kN0LBXjbOimLGfSbap6q8jJa0XzvQhX7Qd06qdzfaq2PSqDTCmzPUp4vYsbLhzs/t4ODJxMG6cXHIfH+gIrqyAAAAAXRSTlP9g+pWxwAAAQVJREFUOMvFzsdSwmAYheEUkJ+YbopJSCOFJk1CbwIq9t7b/V+GC51hgebLuPFdP3PmYFgmURj2N8hLySB+eswngAXh3CqJJREHoHwgVMv38klZgBbP6BrN0LVqAYL2BeM4DGNAH3n8rtN5dB6uf/mYzn61cdgYjMy2SzfaO9n10ivYVGxr0nsypjoAt1o9WWuZeF7ZBmCOcAN/zydYEPbHXdKN2CEAI48dT7UwItjNeHhFDENdXcxecwDczXPNkPyYTZ5BuAjm5LvPkT/DFPqucmMN3vrzUb2rovVSK1ikDNsjAokSUTxES+r2xeMoqQhBdGSS3GVdQyBEql7ZV1ACGNN/wk/ONTdzPjKb2QAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAABL1BMVEUAhDwQi0lEdDayUi8pcTowm2HSJjAAhD0Bgzw2cjfHPS+/cDBAo23aRC/gWS3ULy9gSzfaSy7A4c+SOjG1cjCuSC+BQjK9WS+DZTCvaDCdRi9wQjSlUjB7azi6cDDCRi+iPy+iYGBVbjyWVjmFVDtPYzumWDBKWzaPdlFqYDNwupJgsoapLjGVQzEpajl+Njabj3jFVi6hk428Zi+jRy+rXTDELDCIWEuAVk3PUS6NUzGPSDOlaVuLXjCJPDFoUkORYjJ5Rz+7kI3XYi7CezCmdG80WjWAwp5Qqnmw2cOv2MLOOi+Xdz3MPTy1gC+AaEmhbjC+VEprazK3j5KgOj59ZWhZVTZUPzKSZmWUYVqaZTJ1UzI9fD2mfkqaT0zuii1ehEzrgC2Yg1t8WU+tZkZNbMQvAAAAAXRSTlP+GuMHfQAAATJJREFUOMuN0cVyw2AMBGBD7P3jGMPMzBPmhsvMjO//DD316Kg6f7OalTgOgBDyTx8fZi4G2+E4DoDz2Zvb619nSOjoD+5vzcY5AyDtTPS3UtnYhY8BUCFBtYOCSxlkOwkXA1DhDyCV7RK7PTEaULwMksQDgNsG1jPB9FMuGGAAyjwg2UHH3TgZnY2if60P9+1Wj6fpUXouMgA8rx65bcusFdEX6MUZAEgV1fY8QreTz4vJf3wmXIpEzGCN/kykcFNsmB4S1mtXewszRkNnO5wXxXCIhEJcMSw54aUTlVLuuzAf0mWyH8XY10ubTrQK28W2tKLh2npffQ7pgwshJVN8S8TpxOTrz2bZ9NFlLiebVKpZpeFpazk5OzmmoS57/FVZo6GmybJhGTSUdd3QNXkX/AXh7zbhm0h1sQAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAABL1BMVEUAhDwQi0lEdDayUi8pcTowm2HSJjAAhD0Bgzw2cjfHPS+/cDBAo23aRC/gWS3ULy9gSzfaSy7A4c+SOjG1cjCuSC+BQjK9WS+DZTCvaDCdRi9wQjSlUjB7azi6cDDCRi+iPy+iYGBVbjyWVjmFVDtPYzumWDBKWzaPdlFqYDNwupJgsoapLjGVQzEpajl+Njabj3jFVi6hk428Zi+jRy+rXTDELDCIWEuAVk3PUS6NUzGPSDOlaVuLXjCJPDFoUkORYjJ5Rz+7kI3XYi7CezCmdG80WjWAwp5Qqnmw2cOv2MLOOi+Xdz3MPTy1gC+AaEmhbjC+VEprazK3j5KgOj59ZWhZVTZUPzKSZmWUYVqaZTJ1UzI9fD2mfkqaT0zuii1ehEzrgC2Yg1t8WU+tZkZNbMQvAAAAAXRSTlP+GuMHfQAAATJJREFUOMuN0cVyw2AMBGBD7P3jGMPMzBPmhsvMjO//DD316Kg6f7OalTgOgBDyTx8fZi4G2+E4DoDz2Zvb619nSOjoD+5vzcY5AyDtTPS3UtnYhY8BUCFBtYOCSxlkOwkXA1DhDyCV7RK7PTEaULwMksQDgNsG1jPB9FMuGGAAyjwg2UHH3TgZnY2if60P9+1Wj6fpUXouMgA8rx65bcusFdEX6MUZAEgV1fY8QreTz4vJf3wmXIpEzGCN/kykcFNsmB4S1mtXewszRkNnO5wXxXCIhEJcMSw54aUTlVLuuzAf0mWyH8XY10ubTrQK28W2tKLh2npffQ7pgwshJVN8S8TpxOTrz2bZ9NFlLiebVKpZpeFpazk5OzmmoS57/FVZo6GmybJhGTSUdd3QNXkX/AXh7zbhm0h1sQAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAABm1BMVEX////bsDX+/v7dsjUUJGP8/Pzjtjb////19fXarjP7+/sWJmfWqzH5+fnPqrX28+qkNlanN1jgx4HjvlYFe7u3bYMAdbTkwmP0xT3tvjnjxnTWs1Pw8fDetD/dsDPm7PDk2rrTqTLgszPr3LXXwoXk6Orn1qbjuUTpuzjhtDbmuTjPpS+TLkxzrMzLozHHnix7rMYpiLvXs0aKsceOuNC9mjiuZG3r4L7gu1PS4eqZvdGty9unw9Sxzt+BtdFFlcCsxa/RxqR1oXwEb6vatlFllWzE08aAqIVOi1fJv5atZnrUtmHc0bLmy3zVrT3x7uXg0aT58+Gvs8LYxZVDTHQ3jLlDRFPiy43dyImix9tBQlLs48pVoMfL2uLOq0TcxH7KuYrN28/B2OTLsnNsoHOYvJ6FqoqJso/WvXrZ4tvKrK/m3cXczJ6+kGbQrlb7+O9zo77m0puSfEaTfkXywzvs4cC4l6C6mKGfXXFcnmUmgbSdn1nj5tiPljjc6d5bkWQ/eUhIi1HN0rJWoMc9dXmzqW1Dh6yquLJMjbLH8TdBAAACKklEQVQ4y7WTV3caMRBGJW20Z0VYUx0wdRdTdum9+FAMmI57t+Peu9N7cZz2s8MaMDzETl48LzrSXH2aGc0A8BDG4Pv3mGmvbHJ8WMH2jvNmXR/JKobHkx2vHdKiTj3VFkKzRl541ZWaUutEGtq7lyYIgTztNjgVEul8qVdLxwqnwSXykJCJ2+cmjRASXtQLrmdSJHq9ruVyugS9KCcUNE72AplWQ+gngkBpZhyz4vMXIueY0VGCQPwQqqf7E0NLYRKgRXpx7lHH5hZb2wAJL6FemhggjFaNvMfiHlp43LGFIbfFwxtXJRV8A6N0Gpl81tGPG+seC73SVVyhKc/6hpQdMPlMN4rLOdl2qLy3v8dZiG3T+/a11/um7t20EQvHsCPSBzxpV5zRWn3Zz6VShTm0kZpqcECpGhhU1YjtcC19ncE9ED+NhlKy/WqhDBSJvLINKvMJBb6OFtdG0C0IlkMhFhwVSgcMuBiLt8H42AWw5i6j2lRPEVi1WYC2dquVMlZT4boE1sOUAbOXkWAQ94O5VsimSvXLwZFZ3jg7VqqOzxrEzJh+B7clf2re0am2VCc0unv1teY/Pw3E4vFY4PTc34z8jPb8fV1Y+CBqEhwhfCzGE8IlNLYff+9fvPPpGzjhIWwYWy1ygn5938F3kFvvWNCUU0kXJW8CX/G97M6hGG1FbTcnk2Y7yGi187J7JwhxBgOHmaC2mP3XsMkkJSYSyfzfbCLwwPYHPCRVSi8V07AAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAABm1BMVEX////bsDX+/v7dsjUUJGP8/Pzjtjb////19fXarjP7+/sWJmfWqzH5+fnPqrX28+qkNlanN1jgx4HjvlYFe7u3bYMAdbTkwmP0xT3tvjnjxnTWs1Pw8fDetD/dsDPm7PDk2rrTqTLgszPr3LXXwoXk6Orn1qbjuUTpuzjhtDbmuTjPpS+TLkxzrMzLozHHnix7rMYpiLvXs0aKsceOuNC9mjiuZG3r4L7gu1PS4eqZvdGty9unw9Sxzt+BtdFFlcCsxa/RxqR1oXwEb6vatlFllWzE08aAqIVOi1fJv5atZnrUtmHc0bLmy3zVrT3x7uXg0aT58+Gvs8LYxZVDTHQ3jLlDRFPiy43dyImix9tBQlLs48pVoMfL2uLOq0TcxH7KuYrN28/B2OTLsnNsoHOYvJ6FqoqJso/WvXrZ4tvKrK/m3cXczJ6+kGbQrlb7+O9zo77m0puSfEaTfkXywzvs4cC4l6C6mKGfXXFcnmUmgbSdn1nj5tiPljjc6d5bkWQ/eUhIi1HN0rJWoMc9dXmzqW1Dh6yquLJMjbLH8TdBAAACKklEQVQ4y7WTV3caMRBGJW20Z0VYUx0wdRdTdum9+FAMmI57t+Peu9N7cZz2s8MaMDzETl48LzrSXH2aGc0A8BDG4Pv3mGmvbHJ8WMH2jvNmXR/JKobHkx2vHdKiTj3VFkKzRl541ZWaUutEGtq7lyYIgTztNjgVEul8qVdLxwqnwSXykJCJ2+cmjRASXtQLrmdSJHq9ruVyugS9KCcUNE72AplWQ+gngkBpZhyz4vMXIueY0VGCQPwQqqf7E0NLYRKgRXpx7lHH5hZb2wAJL6FemhggjFaNvMfiHlp43LGFIbfFwxtXJRV8A6N0Gpl81tGPG+seC73SVVyhKc/6hpQdMPlMN4rLOdl2qLy3v8dZiG3T+/a11/um7t20EQvHsCPSBzxpV5zRWn3Zz6VShTm0kZpqcECpGhhU1YjtcC19ncE9ED+NhlKy/WqhDBSJvLINKvMJBb6OFtdG0C0IlkMhFhwVSgcMuBiLt8H42AWw5i6j2lRPEVi1WYC2dquVMlZT4boE1sOUAbOXkWAQ94O5VsimSvXLwZFZ3jg7VqqOzxrEzJh+B7clf2re0am2VCc0unv1teY/Pw3E4vFY4PTc34z8jPb8fV1Y+CBqEhwhfCzGE8IlNLYff+9fvPPpGzjhIWwYWy1ygn5938F3kFvvWNCUU0kXJW8CX/G97M6hGG1FbTcnk2Y7yGi187J7JwhxBgOHmaC2mP3XsMkkJSYSyfzfbCLwwPYHPCRVSi8V07AAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAACRlBMVEW2DhRebHGQn6QAkchbPimqGR5CUVbl9PrU5OnQh40Aksj/////zwDMAADftQAQl8vv7+/vwgBgut0AkcdQs9m/mwBArNYIZy8wpdIgns/mgIDf398AkMafgQAAjsMKhqtwweAYgJMscWmOcwAhdXlDd1jMAADQqAATYCyvr6+fn59Tc0BKWCMNiKxjiU1qZxY9gGvLpADJAAB3cxivjwFCmbvdbQAYfqZLbkJdgUhcUgornci5lQAmhIh2YgMVms3TiYSCJxGjFAjZQEAIlcrODAA1h34hmsgzhaQ9bVFzkkXXTQDUPQC/oQgje4CkmhwxfnXrnQA0mcDZXQB9jTWAyOTTMgBBn8VeZB9iXA+IfxbpiwDstwAXfI+VfANcdDc/ZD9UWBiDbwTZdgCyoRbopQDPz8+9mQAAhbbIOgHEJAXhfADMFAAtdW5mh09qhT8oi5DilQCjoymolRC/pSeWlyY5WjlLf1enhwAveXCYixRQRQPKMAI5dmbRJADQsA5ebStrg1RqklKWmziWhg73xwCJsJZRQB17bQyOIA5umIhUnq9kcy6Pj4+QrZR2kmmzDQbB2cuwkw9pnpjBk4hvb2+jxrEgWil/f3+PZlEtgKDlhAAakacAh7pHj6qyBxvVmwBxgzM5koc/jKtfuty9nwRXh1eLiyMXh5xmbiNCinI5LwFIThgHaz1Rj2kvZFMtUybn9frUJgBFg4x/yOOAlV+fn0TBPQoHaz45RyK/v7/dhQC9qBc1YEffvQwsVCY/TyVfX1/OrkRSAAAACnRSTlPp9e//9ev36On1SIBarwAAAyFJREFUOMt9kgVX3EAQx9NuW9rb+CUnXBJO38EJx3GHO8Xd3bVCX90VqAAtpYW6u7u7fLNOwsF79PV1kjebzP52Zva/SxhfnaGi8Voq/+In3f+MOGGMzQdwMta44q8p/VKQyjMaz+HLxthJYjFo08VsSkjrlfSSkpUqRcDo6NzjZ/GF07nRa7QAIPHdupj92x62gM/MDCyAeNFea4HSzMo2b5WiPAo9s8fYbS99Tvu/M0pZTp897WnWrtZel8+/13WkocW/tMe8SI/ex9nhVpvTl+7os59qkx0NS3edt7Brf5B2D9gCfQ5R3J3tlsUBvyTpigA0/lzQ8bkGxpMkdzCBBr+9FDz5wr9vZ5lPryMuYfwbY48H41Vai9tIcrxqOxBk2W1wmUoarKmBjKwFs+pjwas1Ce8Hw2k9KkcWVau0bcuD7oBelScOyDgMQ5Sqoq1lV6t3TAPtQXC7nZK0uUbTcRpAqD/NAijtVVJDba2bNfAz1KSfBByObFVzgmWxVpyF0ja7vnNL154QbIh00985Tp44so8WG9RTJ75g1mPBQ3GYXa67401wKkGy0nX46IQsxg909Xam7uEqr2k6nscY3jjochmUTu+Krya5nT0hZ1Z6aOxUQvcszXkjZ22BY2YxDOpmqlJFDlo7Gqj5pbh6+rJByWopAnqGsAVU9AxFzV8Kh0iTMk0Ph4c5WiZp2bVwH1VLTAQXOWuX7A7Tblp0iJwYFGXRXaRTNLC/YrC8/mv/gZGVKetSUhRdysHwsQ+HyWPjO7gfM6PD36ZGr18piVlHUG8GZzvaB2uTm4jmpIy6uyXNSSVvM07OvG+um5syZ5ycy6m7YSpOSiKoDRs7mj62H+o/QKAChJhihHLMCBVnIFSQg+AHYjAUENRNaoRKPARNEhAy8I2CCSHhHd9oQLzVygsMMll5IAkqufxWcsXWrfVNAKoGnNmkjo1myMzcMzNamKAKr+7oqK+tLS8EEGYMBt7Km9S0DHzyPBIEZh7ckLxxZH174voKApl4q2AV1LBgMDC8AKsMaD4hmtdRM7U0Y0IRMwuIsZqRmY+AfwCdALIv0wUbWwAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAMAAAA5zj1cAAACRlBMVEW2DhRebHGQn6QAkchbPimqGR5CUVbl9PrU5OnQh40Aksj/////zwDMAADftQAQl8vv7+/vwgBgut0AkcdQs9m/mwBArNYIZy8wpdIgns/mgIDf398AkMafgQAAjsMKhqtwweAYgJMscWmOcwAhdXlDd1jMAADQqAATYCyvr6+fn59Tc0BKWCMNiKxjiU1qZxY9gGvLpADJAAB3cxivjwFCmbvdbQAYfqZLbkJdgUhcUgornci5lQAmhIh2YgMVms3TiYSCJxGjFAjZQEAIlcrODAA1h34hmsgzhaQ9bVFzkkXXTQDUPQC/oQgje4CkmhwxfnXrnQA0mcDZXQB9jTWAyOTTMgBBn8VeZB9iXA+IfxbpiwDstwAXfI+VfANcdDc/ZD9UWBiDbwTZdgCyoRbopQDPz8+9mQAAhbbIOgHEJAXhfADMFAAtdW5mh09qhT8oi5DilQCjoymolRC/pSeWlyY5WjlLf1enhwAveXCYixRQRQPKMAI5dmbRJADQsA5ebStrg1RqklKWmziWhg73xwCJsJZRQB17bQyOIA5umIhUnq9kcy6Pj4+QrZR2kmmzDQbB2cuwkw9pnpjBk4hvb2+jxrEgWil/f3+PZlEtgKDlhAAakacAh7pHj6qyBxvVmwBxgzM5koc/jKtfuty9nwRXh1eLiyMXh5xmbiNCinI5LwFIThgHaz1Rj2kvZFMtUybn9frUJgBFg4x/yOOAlV+fn0TBPQoHaz45RyK/v7/dhQC9qBc1YEffvQwsVCY/TyVfX1/OrkRSAAAACnRSTlPp9e//9ev36On1SIBarwAAAyFJREFUOMt9kgVX3EAQx9NuW9rb+CUnXBJO38EJx3GHO8Xd3bVCX90VqAAtpYW6u7u7fLNOwsF79PV1kjebzP52Zva/SxhfnaGi8Voq/+In3f+MOGGMzQdwMta44q8p/VKQyjMaz+HLxthJYjFo08VsSkjrlfSSkpUqRcDo6NzjZ/GF07nRa7QAIPHdupj92x62gM/MDCyAeNFea4HSzMo2b5WiPAo9s8fYbS99Tvu/M0pZTp897WnWrtZel8+/13WkocW/tMe8SI/ex9nhVpvTl+7os59qkx0NS3edt7Brf5B2D9gCfQ5R3J3tlsUBvyTpigA0/lzQ8bkGxpMkdzCBBr+9FDz5wr9vZ5lPryMuYfwbY48H41Vai9tIcrxqOxBk2W1wmUoarKmBjKwFs+pjwas1Ce8Hw2k9KkcWVau0bcuD7oBelScOyDgMQ5Sqoq1lV6t3TAPtQXC7nZK0uUbTcRpAqD/NAijtVVJDba2bNfAz1KSfBByObFVzgmWxVpyF0ja7vnNL154QbIh00985Tp44so8WG9RTJ75g1mPBQ3GYXa67401wKkGy0nX46IQsxg909Xam7uEqr2k6nscY3jjochmUTu+Krya5nT0hZ1Z6aOxUQvcszXkjZ22BY2YxDOpmqlJFDlo7Gqj5pbh6+rJByWopAnqGsAVU9AxFzV8Kh0iTMk0Ph4c5WiZp2bVwH1VLTAQXOWuX7A7Tblp0iJwYFGXRXaRTNLC/YrC8/mv/gZGVKetSUhRdysHwsQ+HyWPjO7gfM6PD36ZGr18piVlHUG8GZzvaB2uTm4jmpIy6uyXNSSVvM07OvG+um5syZ5ycy6m7YSpOSiKoDRs7mj62H+o/QKAChJhihHLMCBVnIFSQg+AHYjAUENRNaoRKPARNEhAy8I2CCSHhHd9oQLzVygsMMll5IAkqufxWcsXWrfVNAKoGnNmkjo1myMzcMzNamKAKr+7oqK+tLS8EEGYMBt7Km9S0DHzyPBIEZh7ckLxxZH174voKApl4q2AV1LBgMDC8AKsMaD4hmtdRM7U0Y0IRMwuIsZqRmY+AfwCdALIv0wUbWwAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAcCAMAAAAkyw3kAAAAh1BMVEX+3wD73AC+p3Ppgw40QYW0mmmvlGMAGKjQEDrZOC7ffBjKr0zTtjXUuEDevyjpyBzmySXqfgn52gi6n23Or0DbvjfHrFnBp2K6oF/kmw40QIXZOS/ixCLOsiuzml7VYh3CpU/DqVndjS3UeVztpoLIakj31wTVhjLsoWT+7W/dWULNRC/51mPLu1LCAAAAtElEQVQ4y+XUSRKDIBAFUIHQSUABBadE42zG+58vutNN696/fvWLLmi88yI3b5X7ZRFvCU9reD0SNFqbbWikktw67TQOCaVNCjZtbErwRjV8+kowFhQ4lDD83t8ZgsMgyaB79d0MeTZijQpk2z6dP02k8DPWcRgKXYVxjU/tP2aoRB4/ShQGIBkTJs8l9/FGCkCBT7E4jIIk4ZTSLAmijbsmxOe8JGTHoxgLEx1vFXZA7Ev5Aw7LHoRODS8/AAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAcCAMAAAAkyw3kAAAAh1BMVEX+3wD73AC+p3Ppgw40QYW0mmmvlGMAGKjQEDrZOC7ffBjKr0zTtjXUuEDevyjpyBzmySXqfgn52gi6n23Or0DbvjfHrFnBp2K6oF/kmw40QIXZOS/ixCLOsiuzml7VYh3CpU/DqVndjS3UeVztpoLIakj31wTVhjLsoWT+7W/dWULNRC/51mPLu1LCAAAAtElEQVQ4y+XUSRKDIBAFUIHQSUABBadE42zG+58vutNN696/fvWLLmi88yI3b5X7ZRFvCU9reD0SNFqbbWikktw67TQOCaVNCjZtbErwRjV8+kowFhQ4lDD83t8ZgsMgyaB79d0MeTZijQpk2z6dP02k8DPWcRgKXYVxjU/tP2aoRB4/ShQGIBkTJs8l9/FGCkCBT7E4jIIk4ZTSLAmijbsmxOe8JGTHoxgLEx1vFXZA7Ev5Aw7LHoRODS8/AAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAcCAMAAAAkyw3kAAAAh1BMVEX+3wDu0we+sB0hpDE3qi1KrygInjgAmzoAJ3YToDUPMW8fQIaPjzTn2QU/VFgtTI47WpX43QGuyRKZxBfR0wqov8uNwRl8vB5efqUgPmff1gcQNH4BmzpjtiPBzg2jxhXW7eAfPWeSubggQoetzL/v2gNKbZljdHhLc4ycr2+14cXC4NI6VHmUxPVgAAAA9UlEQVQ4y73UyRKCMAwA0CCLLQUKKvsiuG///31mKIsjIPVCDj1k3kxImgJryYBFoKZJQSMACIx5qCeAkegzkO6hiT39AbP8DIrlmKZjKWDn2RRUC4BVTOqIVwCFOgqN0ENHukDphcYQajv8MCXuYaxgYqd9QbqtO7g/yvLgHy6pi9KqU1v6CXVbtHplhBzdyC99lI7I2XoH1U07E7Mp60Yn/2i22Q0dhUzY6HnroDoo7fAUTX0QfhqU7puxUhI11bk71kw3nopwThjD8uw1Op7vgbPpgbdXWAlZTV/hH0uxzjLJNUMqu7jiKXgyT0H+cS32A3gD3OAiYEPQ1/8AAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAcCAMAAAAkyw3kAAAAh1BMVEX+3wDu0we+sB0hpDE3qi1KrygInjgAmzoAJ3YToDUPMW8fQIaPjzTn2QU/VFgtTI47WpX43QGuyRKZxBfR0wqov8uNwRl8vB5efqUgPmff1gcQNH4BmzpjtiPBzg2jxhXW7eAfPWeSubggQoetzL/v2gNKbZljdHhLc4ycr2+14cXC4NI6VHmUxPVgAAAA9UlEQVQ4y73UyRKCMAwA0CCLLQUKKvsiuG///31mKIsjIPVCDj1k3kxImgJryYBFoKZJQSMACIx5qCeAkegzkO6hiT39AbP8DIrlmKZjKWDn2RRUC4BVTOqIVwCFOgqN0ENHukDphcYQajv8MCXuYaxgYqd9QbqtO7g/yvLgHy6pi9KqU1v6CXVbtHplhBzdyC99lI7I2XoH1U07E7Mp60Yn/2i22Q0dhUzY6HnroDoo7fAUTX0QfhqU7puxUhI11bk71kw3nopwThjD8uw1Op7vgbPpgbdXWAlZTV/hH0uxzjLJNUMqu7jiKXgyT0H+cS32A3gD3OAiYEPQ1/8AAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAdBAMAAAAqZzNAAAAAG1BMVEUBUZz////A1ObcHjUCUpz2xsyBqc3o7/a/0+YtMruUAAAAAXRSTlP+GuMHfQAAADhJREFUKM9jcAEBp2BjMRc4cGAYfoJKIKAebCyuBAcaDIJgEGwsiAQYjLEAEgSxmonFdiWGkRHyAMPXhW+2p/5SAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAdBAMAAAAqZzNAAAAAG1BMVEUBUZz////A1ObcHjUCUpz2xsyBqc3o7/a/0+YtMruUAAAAAXRSTlP+GuMHfQAAADhJREFUKM9jcAEBp2BjMRc4cGAYfoJKIKAebCyuBAcaDIJgEGwsiAQYjLEAEgSxmonFdiWGkRHyAMPXhW+2p/5SAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAdBAMAAAAqZzNAAAAAJ1BMVEXvKiyvu8/xRkfvKy0AKGj///+6xNahr8fzVFXwPT8BKGj//v54jK6Zgt+rAAAAAXRSTlP+GuMHfQAAAE5JREFUKM9jYDYGgqkpLqXNxjBgwDCkBZVAoBUo2KQEBwxbQ0EAKBgKB9EMgmBwxOWgIAIwLHEBAi8wCQNeDChcvIJYzcRqO1Z3DrvoAADRhJHdGoS+qgAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAdBAMAAAAqZzNAAAAAJ1BMVEXvKiyvu8/xRkfvKy0AKGj///+6xNahr8fzVFXwPT8BKGj//v54jK6Zgt+rAAAAAXRSTlP+GuMHfQAAAE5JREFUKM9jYDYGgqkpLqXNxjBgwDCkBZVAoBUo2KQEBwxbQ0EAKBgKB9EMgmBwxOWgIAIwLHEBAi8wCQNeDChcvIJYzcRqO1Z3DrvoAADRhJHdGoS+qgAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAdBAMAAAAqZzNAAAAAJFBMVEX///9HUpXtKTnf7PcAZb1XTozp8vnQ4vMBZb1+RHbM4fK20+39jzf7AAAAQklEQVQoz2NgAIEUIaWQAgY0MFQFjUFgCVBwszEcMLS4gABQ0AUOPBgEwWCS0kRBBGBQwgJIEMRqJlbbsbpz2EUHAAeHPE2odssQAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAdBAMAAAAqZzNAAAAAJFBMVEX///9HUpXtKTnf7PcAZb1XTozp8vnQ4vMBZb1+RHbM4fK20+39jzf7AAAAQklEQVQoz2NgAIEUIaWQAgY0MFQFjUFgCVBwszEcMLS4gABQ0AUOPBgEwWCS0kRBBGBQwgJIEMRqJlbbsbpz2EUHAAeHPE2odssQAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAdBAMAAAAqZzNAAAAALVBMVEX/AAAAAACvAAB/AABvAABfAAAtAADKAACPAADfAABPAAA/AADvAACgAAAPAABIzFtLAAAAs0lEQVQoz2NgoC+YwHOjgL33ACeK4PJD23KOZetooQjO2nVZSNF29RoUwaWB4nFPC0VDUQSVHEUSxRxFlFAESwwFgUDYHUUwJBAkKOqKIqgMETRCEVR3BAmKFKEItppuExTMCo5AESx28RAUNHExRxHUYL/XlvG2oAlF8PLc7Iky227aogg2WxxKFNNptkARrGSYsVCqk2E6WuAxe6cYYIQop/amCZjhzJaAJfA5JzDQHQAA2O0qTBBsTKkAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAdBAMAAAAqZzNAAAAALVBMVEX/AAAAAACvAAB/AABvAABfAAAtAADKAACPAADfAABPAAA/AADvAACgAAAPAABIzFtLAAAAs0lEQVQoz2NgoC+YwHOjgL33ACeK4PJD23KOZetooQjO2nVZSNF29RoUwaWB4nFPC0VDUQSVHEUSxRxFlFAESwwFgUDYHUUwJBAkKOqKIqgMETRCEVR3BAmKFKEItppuExTMCo5AESx28RAUNHExRxHUYL/XlvG2oAlF8PLc7Iky227aogg2WxxKFNNptkARrGSYsVCqk2E6WuAxe6cYYIQop/amCZjhzJaAJfA5JzDQHQAA2O0qTBBsTKkAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAdCAMAAADvl95BAAAAM1BMVEX////Cz+5Lcs2OpuBcgNI9Z8n3+f0AOLi3xuu/ze3e5fZ2k9khUsEPQ7ymueYzX8ZCbMvN/KBjAAAAbUlEQVQ4y9WTSw6AIAxES2lBfsL9T6u4104iifEtuppM/0TL2UAognwpTCCvJiaC6ZKqnSh4kcbcRHx4VmqRse9DihqWucZpHGu2kneekTvZjgFy7FeNataId33iVN3azdwtDL2eP7wC/NfLOQC4WhA4gpKDGQAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAdCAMAAADvl95BAAAAM1BMVEX////Cz+5Lcs2OpuBcgNI9Z8n3+f0AOLi3xuu/ze3e5fZ2k9khUsEPQ7ymueYzX8ZCbMvN/KBjAAAAbUlEQVQ4y9WTSw6AIAxES2lBfsL9T6u4104iifEtuppM/0TL2UAognwpTCCvJiaC6ZKqnSh4kcbcRHx4VmqRse9DihqWucZpHGu2kneekTvZjgFy7FeNataId33iVN3azdwtDL2eP7wC/NfLOQC4WhA4gpKDGQAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAeAgMAAAAjs7ROAAAACVBMVEUAnmA6dcT80RaPCvp4AAAAFUlEQVQY02NgoCtYBQf0YIbCAR2YAPNdY51lSXDNAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAeAgMAAAAjs7ROAAAACVBMVEUAnmA6dcT80RaPCvp4AAAAFUlEQVQY02NgoCtYBQf0YIbCAR2YAPNdY51lSXDNAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAeBAMAAACs80HuAAAAD1BMVEXGCy/VSGPGDDD////fdovhlE4KAAAAAXRSTlP+GuMHfQAAAClJREFUKM9jUAIDZWNDJThQYBghgoJgIGxsIogADMZYAKWCWC0awSEPAKZsVc82AYC3AAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAeBAMAAACs80HuAAAAD1BMVEXGCy/VSGPGDDD////fdovhlE4KAAAAAXRSTlP+GuMHfQAAAClJREFUKM9jUAIDZWNDJThQYBghgoJgIGxsIogADMZYAKWCWC0awSEPAKZsVc82AYC3AAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAeCAMAAABpA6zvAAAAQlBMVEXOECH20BjicB3xuhkQhfDqmxrTKx8Af//31hjo0CXaSh6KsH0sjtbIxUNspZo+lcW6wFFdoKiatW9Omraqul/YyzWj+uowAAAAtUlEQVQ4y43Q2xKDIAxF0agoQVC02v//1ZbgBXQSOM9rsmcCumKz6UYoMz81LcAJLcfUB/sBLugmqQo3tOiEagK/OAvVA1o8ZjxTBRj6cHEz5BbFVaFtFkq7IHe2OnZm1QQVPmBeRftvEVxxmo1hq/QQgrsNn9y4qr4gEeW56g21XH1DpvqCXPUB+WoGpWoKxeoNC9UTFqsHLFcjrKhGWFGNsKKaQamaQLl6wVL1hMVqhBVV2g/BwB0JqIxfPwAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAeCAMAAABpA6zvAAAAQlBMVEXOECH20BjicB3xuhkQhfDqmxrTKx8Af//31hjo0CXaSh6KsH0sjtbIxUNspZo+lcW6wFFdoKiatW9Omraqul/YyzWj+uowAAAAtUlEQVQ4y43Q2xKDIAxF0agoQVC02v//1ZbgBXQSOM9rsmcCumKz6UYoMz81LcAJLcfUB/sBLugmqQo3tOiEagK/OAvVA1o8ZjxTBRj6cHEz5BbFVaFtFkq7IHe2OnZm1QQVPmBeRftvEVxxmo1hq/QQgrsNn9y4qr4gEeW56g21XH1DpvqCXPUB+WoGpWoKxeoNC9UTFqsHLFcjrKhGWFGNsKKaQamaQLl6wVL1hMVqhBVV2g/BwB0JqIxfPwAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAeCAMAAABpA6zvAAAAZlBMVEXOESYkAgbGECQTExOpDh8HAAFNBg4AAAD80RaAChfRHCQwMDDiYR7lcR5wcHDXNSLofRw/Pz/5whbUKCPcTSDtkBpQUFCsrKzxoRn19fWQkJDg4ODzrRhgYGDQ0NDnfBx/f3/ZQSGki0rXAAAA+0lEQVQ4y42S1xLCIBBFUVRWQklIb5b//0kxGkJLhuWNOXPP3AV0O6O0IadLIkiu90SQkB29fPtgXC9VHoBRfQ0RMNSXqIOaVyHo6ilTTAHAJEPQ1tPnk8MyXQhivOknMMN9MHu9slXPAJQCL9KA45it+pJWJVviWM4C9dA67elXLxHLwzJ+e8mh1tvcBa32Usd1lQ0WKyTc5VNaV/kG4uLxI/HQt9jW61KIW4lD/0sizSg8fcmpBYqm+e9IH+ft6Rvtl4m9vQtm8057HywKL9T5euRobP0mxuRo+QZs2naOhRq9+Y6PHh/qzYUQcXDVk4RZ9Cngok8Ctf4D1OgYXQgrIwMAAAAASUVORK5CYII=":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAeCAMAAABpA6zvAAAAZlBMVEXOESYkAgbGECQTExOpDh8HAAFNBg4AAAD80RaAChfRHCQwMDDiYR7lcR5wcHDXNSLofRw/Pz/5whbUKCPcTSDtkBpQUFCsrKzxoRn19fWQkJDg4ODzrRhgYGDQ0NDnfBx/f3/ZQSGki0rXAAAA+0lEQVQ4y42S1xLCIBBFUVRWQklIb5b//0kxGkJLhuWNOXPP3AV0O6O0IadLIkiu90SQkB29fPtgXC9VHoBRfQ0RMNSXqIOaVyHo6ilTTAHAJEPQ1tPnk8MyXQhivOknMMN9MHu9slXPAJQCL9KA45it+pJWJVviWM4C9dA67elXLxHLwzJ+e8mh1tvcBa32Usd1lQ0WKyTc5VNaV/kG4uLxI/HQt9jW61KIW4lD/0sizSg8fcmpBYqm+e9IH+ft6Rvtl4m9vQtm8057HywKL9T5euRobP0mxuRo+QZs2naOhRq9+Y6PHh/qzYUQcXDVk4RZ9Cngok8Ctf4D1OgYXQgrIwMAAAAASUVORK5CYII="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAeCAMAAABpA6zvAAABR1BMVEX///+LaxFqdntctOLw8PCSlpOGcS9etuQ1SzNasN5Kk7j8/PzLzcsgOSxAUTosQC5KW0BdflOBYxumeyBpaVKFaCN0goygdh+QdSpfanFxVARqTA1xUxF0uNw/gKE+bXVLh54sUUlSptPo6ujh4+FNm8I0WUVHaUh4hHWbm5v39/fBxsJZdH44UEY1UjyrrqpreWgoR0EvTlNgcl1xc1hbVC+HdUNqbVlQSCFpazFzdTl2nLNrhmp4k6SqjEZ5pr18XRVUX2iXiWe5kiBwjp5cp86mvclapMvfz6vv37qku8g+dIRIhabf39/EuaTa0cGvtq0hLhxFUjR7eV0yPilXY1UiQTa8vLxYVzSogS9xgW0+QyG2tra4jTVFQSp6iYZkXCNic31hZk6KahyHpbWIr3FtZCd8pGp9aTOHr8hSYGhjf5JuYTEiW0ESAAABDElEQVQ4y+XPRXODUBQFYCDII8EJTrRx98a97u7u8v/X7TJZ8Mi207M939wzF0H+ZjbWF4R7uwsxX+bmIuNzdztko99vkDFXiKP6ZKKjuPtJ0rRMU3dlDDK2Nc0eI8UlGMsSl+82alnokKyWGMjDgr/0tPw9/ar7pdQtcIb71ZOaPDCmndFAfuTqzuMx4fhI6jxgvc+PYQ2A1FxJzSQEQF7rYZhqPMvlAhue7eagN3FaVjBDVUd3Up6NUI7Qk2SvBKUril2FAyIMbiV5/rX18ta+LxwkKGf4O354Xmm22s0KzwWhMB6On10T2SLjDXmgkN7EiXQulybwVRoKqbUAHd0ORunACgWHjvmf8AdLZy8UWK2OKgAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAeCAMAAABpA6zvAAABR1BMVEX///+LaxFqdntctOLw8PCSlpOGcS9etuQ1SzNasN5Kk7j8/PzLzcsgOSxAUTosQC5KW0BdflOBYxumeyBpaVKFaCN0goygdh+QdSpfanFxVARqTA1xUxF0uNw/gKE+bXVLh54sUUlSptPo6ujh4+FNm8I0WUVHaUh4hHWbm5v39/fBxsJZdH44UEY1UjyrrqpreWgoR0EvTlNgcl1xc1hbVC+HdUNqbVlQSCFpazFzdTl2nLNrhmp4k6SqjEZ5pr18XRVUX2iXiWe5kiBwjp5cp86mvclapMvfz6vv37qku8g+dIRIhabf39/EuaTa0cGvtq0hLhxFUjR7eV0yPilXY1UiQTa8vLxYVzSogS9xgW0+QyG2tra4jTVFQSp6iYZkXCNic31hZk6KahyHpbWIr3FtZCd8pGp9aTOHr8hSYGhjf5JuYTEiW0ESAAABDElEQVQ4y+XPRXODUBQFYCDII8EJTrRx98a97u7u8v/X7TJZ8Mi207M939wzF0H+ZjbWF4R7uwsxX+bmIuNzdztko99vkDFXiKP6ZKKjuPtJ0rRMU3dlDDK2Nc0eI8UlGMsSl+82alnokKyWGMjDgr/0tPw9/ar7pdQtcIb71ZOaPDCmndFAfuTqzuMx4fhI6jxgvc+PYQ2A1FxJzSQEQF7rYZhqPMvlAhue7eagN3FaVjBDVUd3Up6NUI7Qk2SvBKUril2FAyIMbiV5/rX18ta+LxwkKGf4O354Xmm22s0KzwWhMB6On10T2SLjDXmgkN7EiXQulybwVRoKqbUAHd0ORunACgWHjvmf8AdLZy8UWK2OKgAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAgAQMAAABaY6hDAAAABlBMVEXOESb///9W4q7JAAAAEElEQVQI12NgoDH4DwK0IwHykk+xonqt7gAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAgAQMAAABaY6hDAAAABlBMVEXOESb///9W4q7JAAAAEElEQVQI12NgoDH4DwK0IwHykk+xonqt7gAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAiBAMAAADfS4Y4AAAAIVBMVEUNsCv////gUgb1xayv5bnofEP87uXvo3riXBXhXBT308Cdj1xZAAAAUUlEQVQoz2NQwgIYhp+gMRbAIAgFYqXhiTA2XNBCSakLXVCsSUlJIxFNUBxkQSGaoChIMJAYQazaxSYpKWmiWyRoqaQ0C8OdKI53wQIYRgYAAF6WO9NsHTxyAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAiBAMAAADfS4Y4AAAAIVBMVEUNsCv////gUgb1xayv5bnofEP87uXvo3riXBXhXBT308Cdj1xZAAAAUUlEQVQoz2NQwgIYhp+gMRbAIAgFYqXhiTA2XNBCSakLXVCsSUlJIxFNUBxkQSGaoChIMJAYQazaxSYpKWmiWyRoqaQ0C8OdKI53wQIYRgYAAF6WO9NsHTxyAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAjBAMAAAAUF1WdAAAAD1BMVEXtKTkAAAD64EL2oT6mlSxymLhtAAAAGUlEQVQoz2MQBAMRJTAwYICAUcFRwWEhCADCrTMjCu9IjwAAAABJRU5ErkJggg==":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAjBAMAAAAUF1WdAAAAD1BMVEXtKTkAAAD64EL2oT6mlSxymLhtAAAAGUlEQVQoz2MQBAMRJTAwYICAUcFRwWEhCADCrTMjCu9IjwAAAABJRU5ErkJggg=="},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoBAMAAAB+0KVeAAAAFVBMVEX/AAD/////wMD/gID/v7//YGD/8PBls0LNAAAAPElEQVQoz2NgGLwg2NjYFENQUVBQaJALsroAQaKgoBiIDoAKMgsiAQN6C7IqAQHISSA6YIiFJ+7EMHgAACUjEjNIvHDuAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoBAMAAAB+0KVeAAAAFVBMVEX/AAD/////wMD/gID/v7//YGD/8PBls0LNAAAAPElEQVQoz2NgGLwg2NjYFENQUVBQaJALsroAQaKgoBiIDoAKMgsiAQN6C7IqAQHISSA6YIiFJ+7EMHgAACUjEjNIvHDuAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAxCAMAAACf+RsMAAAAgVBMVEXcFDwbM4cQRJnv8vhuJme/zeSlHVEAOJP///96I2LP2evKFkPlT23eIkgwXafCF0XgMVTnXXkpMIL3xc/98fOKpM7yp7b74ufuip5JcbJELHgMNY7pbIX509viQGAgUaDwmKrf5vHRFT+0Gkvre5H0tsJcKG9ri8CVH1evwN2EIV7bYgCjAAABm0lEQVQ4y43U6ZaCIBQA4GtWWEKBuOWWrTPN+z/gIIriQnL/3XO+A95F4HLzrALQJrKEATodreDhEaDItYEAh/y6s4JwztDFtYEAv/lKUQrC/Y2+dqqHAHsHRVYQ7ltkLkqHAKJTP64NBPjLNx8rKDt1s4GiU85SpwZISF/UG512JohZzDH9UlQDMQCLm4QJWXSdyq+fGawrYDIJCaRYFRWMi5Inhpi3WVoko05Fk2/kYdJmice08v1M22kJSanSeNwpMX5VVFs1idtvZNOeik5141ftoUWazljXKbnT+mTO+8XI5I+qQz9AprgcR7MWMtoZYrwUfrA5Wi3uFznAdiN8xyA7KCYcYyCVWXYwjqn3qkpsPrODqReKwXiV+fYGUs67pXjx2iTliaxPE2I6U0Lab09NTLULSF5aHj4NsjmRFIlKudqgmWyvDns4zGgiJSyHPB2Wbizl1VT0UQYFrD0uztWdNbxOmFc+PTx+hpyTO4VPAryACoNRDtuDyfyH0eTCa7YsV+Ag12AvV6GSgLLtSogXyG2gTQj5DxajNPKFOVDvAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAxCAMAAACf+RsMAAAAgVBMVEXcFDwbM4cQRJnv8vhuJme/zeSlHVEAOJP///96I2LP2evKFkPlT23eIkgwXafCF0XgMVTnXXkpMIL3xc/98fOKpM7yp7b74ufuip5JcbJELHgMNY7pbIX509viQGAgUaDwmKrf5vHRFT+0Gkvre5H0tsJcKG9ri8CVH1evwN2EIV7bYgCjAAABm0lEQVQ4y43U6ZaCIBQA4GtWWEKBuOWWrTPN+z/gIIriQnL/3XO+A95F4HLzrALQJrKEATodreDhEaDItYEAh/y6s4JwztDFtYEAv/lKUQrC/Y2+dqqHAHsHRVYQ7ltkLkqHAKJTP64NBPjLNx8rKDt1s4GiU85SpwZISF/UG512JohZzDH9UlQDMQCLm4QJWXSdyq+fGawrYDIJCaRYFRWMi5Inhpi3WVoko05Fk2/kYdJmice08v1M22kJSanSeNwpMX5VVFs1idtvZNOeik5141ftoUWazljXKbnT+mTO+8XI5I+qQz9AprgcR7MWMtoZYrwUfrA5Wi3uFznAdiN8xyA7KCYcYyCVWXYwjqn3qkpsPrODqReKwXiV+fYGUs67pXjx2iTliaxPE2I6U0Lab09NTLULSF5aHj4NsjmRFIlKudqgmWyvDns4zGgiJSyHPB2Wbizl1VT0UQYFrD0uztWdNbxOmFc+PTx+hpyTO4VPAryACoNRDtuDyfyH0eTCa7YsV+Ag12AvV6GSgLLtSogXyG2gTQj5DxajNPKFOVDvAAAAAElFTkSuQmCC"},"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAABRElEQVR42u3aoROCMBTHcf5lo2fxNHgaPItapGjRRKJooWjBIEGD/8y81xCmrjhg7xte4VZ+n21vgyMyxkSaS3V4AAAAAAAAAAAAAACKx1NlVQGMsgIAAAAAAAAA3wDpKTOb3cH0BuO3kmdJegwX4FrczXwV14JXazhdmOyShwUg4SXYr/Dl8oDgD8C25F1WQhAAMpO2gOX9Ln3h15jOAmwPiVOwfZLWxi3jXfcBJov1W6j+aGYdd8zONQBpmp0HkMAuoWzbIIgV4FoStgog20IFwKdT4pLfwgb4djn68+w3DyDhqw3SY/jmAWzLXhqmnAbBvw3K7Ntufn/e8+0BsB15Hme+eQC5CbpcjtQAeHjx4YsQAG0CsH0cUdUEAQAAAN0AHIMAAAAAAAAAAEDbANT/KKkXgJ+lAQAAAAAAAAAAABTWC/MCectA2CykAAAAAElFTkSuQmCC":module=>{"use strict";module.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAABRElEQVR42u3aoROCMBTHcf5lo2fxNHgaPItapGjRRKJooWjBIEGD/8y81xCmrjhg7xte4VZ+n21vgyMyxkSaS3V4AAAAAAAAAAAAAACKx1NlVQGMsgIAAAAAAAAA3wDpKTOb3cH0BuO3kmdJegwX4FrczXwV14JXazhdmOyShwUg4SXYr/Dl8oDgD8C25F1WQhAAMpO2gOX9Ln3h15jOAmwPiVOwfZLWxi3jXfcBJov1W6j+aGYdd8zONQBpmp0HkMAuoWzbIIgV4FoStgog20IFwKdT4pLfwgb4djn68+w3DyDhqw3SY/jmAWzLXhqmnAbBvw3K7Ntufn/e8+0BsB15Hme+eQC5CbpcjtQAeHjx4YsQAG0CsH0cUdUEAQAAAN0AHIMAAAAAAAAAAEDbANT/KKkXgJ+lAQAAAAAAAAAAABTWC/MCectA2CykAAAAAElFTkSuQmCC"},"data:image/svg+xml,%3csvg viewBox=%270 0 16 16%27 fill=%27white%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3ccircle cx=%278%27 cy=%278%27 r=%273%27/%3e%3c/svg%3e":module=>{"use strict";module.exports="data:image/svg+xml,%3csvg viewBox=%270 0 16 16%27 fill=%27white%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3ccircle cx=%278%27 cy=%278%27 r=%273%27/%3e%3c/svg%3e"},"data:image/svg+xml,%3csvg viewBox=%270 0 16 16%27 fill=%27white%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath d=%27M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z%27/%3e%3c/svg%3e":module=>{"use strict";module.exports="data:image/svg+xml,%3csvg viewBox=%270 0 16 16%27 fill=%27white%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath d=%27M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z%27/%3e%3c/svg%3e"},"data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 fill=%27none%27 viewBox=%270 0 16 16%27%3e%3cpath stroke=%27white%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27 stroke-width=%272%27 d=%27M4 8h8%27/%3e%3c/svg%3e":module=>{"use strict";module.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 fill=%27none%27 viewBox=%270 0 16 16%27%3e%3cpath stroke=%27white%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27 stroke-width=%272%27 d=%27M4 8h8%27/%3e%3c/svg%3e"},"data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 fill=%27none%27 viewBox=%270 0 20 20%27%3e%3cpath stroke=%27%236b7280%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27 stroke-width=%271.5%27 d=%27M6 8l4 4 4-4%27/%3e%3c/svg%3e":module=>{"use strict";module.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 fill=%27none%27 viewBox=%270 0 20 20%27%3e%3cpath stroke=%27%236b7280%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27 stroke-width=%271.5%27 d=%27M6 8l4 4 4-4%27/%3e%3c/svg%3e"},"data:image/svg+xml,":module=>{"use strict";module.exports="data:image/svg+xml,"},"storybook/internal/channels":module=>{"use strict";module.exports=__STORYBOOK_MODULE_CHANNELS__},"storybook/internal/client-logger":module=>{"use strict";module.exports=__STORYBOOK_MODULE_CLIENT_LOGGER__},"storybook/internal/preview-errors":module=>{"use strict";module.exports=__STORYBOOK_MODULE_CORE_EVENTS_PREVIEW_ERRORS__},"storybook/internal/core-events":module=>{"use strict";module.exports=__STORYBOOK_MODULE_CORE_EVENTS__},"@storybook/global":module=>{"use strict";module.exports=__STORYBOOK_MODULE_GLOBAL__},"storybook/internal/preview-api":module=>{"use strict";module.exports=__STORYBOOK_MODULE_PREVIEW_API__}},__webpack_require__=>{__webpack_require__.O(0,[9296],(()=>{return moduleId="./storybook-config-entry.js",__webpack_require__(__webpack_require__.s=moduleId);var moduleId}));__webpack_require__.O()}]); \ No newline at end of file diff --git a/project.json b/project.json index 1ce3907..76b807e 100644 --- a/project.json +++ b/project.json @@ -1 +1 @@ -{"generatedAt":1729891868974,"hasCustomBabel":false,"hasCustomWebpack":true,"hasStaticDirs":true,"hasStorybookEslint":false,"refCount":0,"testPackages":{"@storybook/addon-jest":"8.2.9","@storybook/testing-library":"0.2.2","@testing-library/jest-dom":"6.4.6","@testing-library/react":"15.0.7","@testing-library/react-hooks":"8.0.1","@types/jest":"29.5.12","babel-jest":"29.7.0","jest":"29.7.0","jest-css-modules":"2.1.0","jest-environment-jsdom":"29.7.0","jest-transform-css":"6.0.1","jest-transform-stub":"2.0.0","msw":"2.4.8","msw-storybook-addon":"2.0.3","ts-jest":"29.1.5"},"monorepo":"Lerna","packageManager":{"type":"yarn","version":"1.22.22"},"typescriptOptions":{"reactDocgen":"react-docgen-typescript"},"preview":{"usesGlobals":true},"framework":{"name":"@storybook/react-webpack5","options":{}},"builder":"@storybook/builder-webpack5","renderer":"@storybook/react","storybookVersion":"8.2.9","storybookVersionSpecifier":"~8.2.0","language":"typescript","storybookPackages":{"@chromatic-com/storybook":{"version":"1.5.0"},"@storybook/addon-actions":{"version":"8.2.9"},"@storybook/addon-storyshots":{"version":"7.6.17"},"@storybook/addons":{"version":"7.6.17"},"@storybook/blocks":{"version":"8.2.9"},"@storybook/react":{"version":"8.2.9"},"@storybook/react-webpack5":{"version":"8.2.9"},"@storybook/testing-library":{"version":"0.2.2"},"@storybook/testing-react":{"version":"2.0.1"},"@storybook/theming":{"version":"8.2.9"},"storybook":{"version":"8.2.9"}},"addons":{"@storybook/addon-links":{"version":"8.2.9"},"@storybook/addon-essentials":{"version":"8.2.9"},"@storybook/addon-interactions":{"version":"8.2.9"},"@storybook/addon-jest":{"version":"8.2.9"},"@storybook/addon-a11y":{"version":"8.2.9"},"msw-storybook-addon":{"version":"2.0.3"},"@storybook/addon-storysource":{"version":"8.2.9"},"./addon-theme":{"version":null},"@storybook/addon-styling":{"version":"1.3.7"}}} +{"generatedAt":1730016915974,"hasCustomBabel":false,"hasCustomWebpack":true,"hasStaticDirs":true,"hasStorybookEslint":false,"refCount":0,"testPackages":{"@storybook/addon-jest":"8.2.9","@storybook/testing-library":"0.2.2","@testing-library/jest-dom":"6.4.6","@testing-library/react":"15.0.7","@testing-library/react-hooks":"8.0.1","@types/jest":"29.5.12","babel-jest":"29.7.0","jest":"29.7.0","jest-css-modules":"2.1.0","jest-environment-jsdom":"29.7.0","jest-transform-css":"6.0.1","jest-transform-stub":"2.0.0","msw":"2.4.8","msw-storybook-addon":"2.0.3","ts-jest":"29.1.5"},"monorepo":"Lerna","packageManager":{"type":"yarn","version":"1.22.22"},"typescriptOptions":{"reactDocgen":"react-docgen-typescript"},"preview":{"usesGlobals":true},"framework":{"name":"@storybook/react-webpack5","options":{}},"builder":"@storybook/builder-webpack5","renderer":"@storybook/react","storybookVersion":"8.2.9","storybookVersionSpecifier":"~8.2.0","language":"typescript","storybookPackages":{"@chromatic-com/storybook":{"version":"1.5.0"},"@storybook/addon-actions":{"version":"8.2.9"},"@storybook/addon-storyshots":{"version":"7.6.17"},"@storybook/addons":{"version":"7.6.17"},"@storybook/blocks":{"version":"8.2.9"},"@storybook/react":{"version":"8.2.9"},"@storybook/react-webpack5":{"version":"8.2.9"},"@storybook/testing-library":{"version":"0.2.2"},"@storybook/testing-react":{"version":"2.0.1"},"@storybook/theming":{"version":"8.2.9"},"storybook":{"version":"8.2.9"}},"addons":{"@storybook/addon-links":{"version":"8.2.9"},"@storybook/addon-essentials":{"version":"8.2.9"},"@storybook/addon-interactions":{"version":"8.2.9"},"@storybook/addon-jest":{"version":"8.2.9"},"@storybook/addon-a11y":{"version":"8.2.9"},"msw-storybook-addon":{"version":"2.0.3"},"@storybook/addon-storysource":{"version":"8.2.9"},"./addon-theme":{"version":null},"@storybook/addon-styling":{"version":"1.3.7"}}} diff --git a/runtime~main.04033c2a.iframe.bundle.js b/runtime~main.98d126da.iframe.bundle.js similarity index 98% rename from runtime~main.04033c2a.iframe.bundle.js rename to runtime~main.98d126da.iframe.bundle.js index c291de3..5c06f3d 100644 --- a/runtime~main.04033c2a.iframe.bundle.js +++ b/runtime~main.98d126da.iframe.bundle.js @@ -1 +1 @@ -(()=>{"use strict";var deferred,leafPrototypes,getProto,inProgress,__webpack_modules__={},__webpack_module_cache__={};function __webpack_require__(moduleId){var cachedModule=__webpack_module_cache__[moduleId];if(void 0!==cachedModule)return cachedModule.exports;var module=__webpack_module_cache__[moduleId]={id:moduleId,loaded:!1,exports:{}};return __webpack_modules__[moduleId].call(module.exports,module,module.exports,__webpack_require__),module.loaded=!0,module.exports}__webpack_require__.m=__webpack_modules__,__webpack_require__.amdO={},deferred=[],__webpack_require__.O=(result,chunkIds,fn,priority)=>{if(!chunkIds){var notFulfilled=1/0;for(i=0;i=priority)&&Object.keys(__webpack_require__.O).every((key=>__webpack_require__.O[key](chunkIds[j])))?chunkIds.splice(j--,1):(fulfilled=!1,priority0&&deferred[i-1][2]>priority;i--)deferred[i]=deferred[i-1];deferred[i]=[chunkIds,fn,priority]},__webpack_require__.n=module=>{var getter=module&&module.__esModule?()=>module.default:()=>module;return __webpack_require__.d(getter,{a:getter}),getter},getProto=Object.getPrototypeOf?obj=>Object.getPrototypeOf(obj):obj=>obj.__proto__,__webpack_require__.t=function(value,mode){if(1&mode&&(value=this(value)),8&mode)return value;if("object"==typeof value&&value){if(4&mode&&value.__esModule)return value;if(16&mode&&"function"==typeof value.then)return value}var ns=Object.create(null);__webpack_require__.r(ns);var def={};leafPrototypes=leafPrototypes||[null,getProto({}),getProto([]),getProto(getProto)];for(var current=2&mode&&value;"object"==typeof current&&!~leafPrototypes.indexOf(current);current=getProto(current))Object.getOwnPropertyNames(current).forEach((key=>def[key]=()=>value[key]));return def.default=()=>value,__webpack_require__.d(ns,def),ns},__webpack_require__.d=(exports,definition)=>{for(var key in definition)__webpack_require__.o(definition,key)&&!__webpack_require__.o(exports,key)&&Object.defineProperty(exports,key,{enumerable:!0,get:definition[key]})},__webpack_require__.f={},__webpack_require__.e=chunkId=>Promise.all(Object.keys(__webpack_require__.f).reduce(((promises,key)=>(__webpack_require__.f[key](chunkId,promises),promises)),[])),__webpack_require__.u=chunkId=>(({4:"monaco-stories-Playground-stories",29:"core-stories-components-breadcrumbs-Breadcrumbs-mdx",213:"2-Iconography-mdx",271:"core-stories-components-button-ConfirmButton-stories",334:"core-stories-components-notifications-Message-stories",357:"form-stories-inputs-Checkbox-stories",388:"core-stories-components-animations-Bars-stories",444:"form-stories-sliders-Slider-mdx",526:"data-stories-useFilteredList-FilteredList-mdx",573:"core-stories-components-card-Card-stories",648:"core-stories-1-typography-Mark-stories",666:"chart-stories-TimeSlider-stories",679:"core-stories-1-typography-Title-stories",729:"data-stories-VirtualList-stories",840:"data-stories-useFilteredList-FilteredList-stories",853:"date-stories-panels-DatePanels-mdx",1045:"core-stories-components-panel-Panel-mdx",1074:"form-stories-inputs-Switch-stories",1130:"media-stories-Thumbnail-stories",1148:"core-stories-components-button-Navigator-stories",1200:"form-stories-sliders-Range-stories",1323:"data-stories-TreeView-stories",1427:"core-stories-components-empty-Empty-stories",1629:"core-stories-components-menu-Menu-mdx",1630:"mdx-stories-Playground-stories",1636:"core-stories-components-avatar-AvatarGroup-stories",1648:"chart-stories-CountSeries-stories",1660:"chart-stories-WordBubble-stories",1757:"date-stories-panels-RangePanel-stories",1881:"core-stories-components-callout-Callout-mdx",1888:"date-stories-panels-DatePanel-stories",1979:"core-stories-components-animations-Animations-stories",2019:"core-stories-components-button-Button-mdx",2028:"form-stories-inputs-Input-mdx",2121:"form-stories-inputs-ColorInput-stories",2307:"core-stories-components-actionLabel-ActionLabel-stories",2485:"core-stories-components-tooltip-Tooltip-mdx",2567:"media-stories-ImageViewer-stories",2611:"core-stories-components-progress-Progress-stories",2710:"form-stories-sliders-Slider-stories",2718:"core-stories-components-notifications-Toast-stories",2757:"form-stories-form-Form-mdx",2806:"form-stories-selects-Select-stories",2871:"chart-stories-GenericChart-stories",2955:"form-stories-inputs-Radio-stories",2977:"core-stories-0-core-Section-stories",2985:"lexical-stories-Playground-stories",3003:"core-stories-components-callout-Callout-stories",3103:"core-stories-components-panel-Panel-stories",3161:"chart-stories-MapSeries-mdx",3251:"form-stories-inputs-Others-stories",3307:"core-stories-components-animations-Skeleton-stories",3363:"core-stories-0-core-Content-stories",3395:"core-stories-0-core-Theme-stories",3401:"core-stories-components-dropdown-Dropdown-mdx",3413:"core-stories-components-badge-Badge-mdx",3609:"chart-stories-DataSeries-stories",3681:"core-stories-components-overlays-Flyout-stories",3707:"media-stories-AudioPlayer-stories",3846:"core-stories-components-button-ButtonGroup-stories",3866:"core-stories-1-typography-Abbr-stories",3984:"core-stories-components-panel-PanelGroup-stories",4056:"form-stories-selects-DualList-stories",4060:"form-stories-inputs-Textarea-stories",4111:"core-stories-components-badge-Badge-stories",4139:"data-stories-json-JsonViewer-stories",4176:"form-stories-selects-List-mdx",4185:"1-ColorPalette-mdx",4445:"data-stories-VirtualGallery-stories",4482:"form-stories-selects-List-stories",4490:"chart-stories-WordBubble-mdx",4769:"core-stories-components-actionLabel-ActionLabel-mdx",4900:"core-stories-components-collapable-Collapsable-mdx",5129:"core-stories-components-meter-Meter-mdx",5224:"core-stories-0-core-Aside-stories",5305:"core-stories-components-notifications-Alert-stories",5337:"form-stories-autoComplete-AutoComplete-mdx",5339:"data-stories-histogram-Histogram-stories",5352:"core-stories-components-button-ToggleButtonGroup-mdx",5542:"chart-stories-CountSeries-mdx",5574:"searchbar-stories-SearchBar-stories",5594:"3-Typography-mdx",5675:"core-stories-components-card-Card-mdx",5707:"core-stories-components-overlays-Modal-stories",5743:"chart-stories-DataSeries-mdx",5776:"form-stories-inputs-File-stories",5791:"core-stories-0-core-Core-mdx",5825:"core-stories-components-progress-Progress-mdx",5829:"form-stories-inputs-Number-stories",5839:"core-stories-components-tooltip-Tooltip-stories",5883:"core-stories-components-meter-Meter-stories",5998:"core-stories-0-core-Viewport-stories",6012:"form-stories-form-ArrayInput-stories",6071:"core-stories-components-menu-Menu-stories",6073:"core-stories-components-animations-Animations-mdx",6225:"core-stories-components-avatar-Avatar-mdx",6253:"core-stories-0-core-Page-stories",6339:"core-stories-components-icon-Icon-stories",6628:"0-Introduction-mdx",6846:"core-stories-components-progress-Circle-stories",6867:"core-stories-components-avatar-Avatar-stories",6897:"core-stories-components-empty-Empty-mdx",7004:"core-stories-components-button-ButtonGroup-mdx",7007:"core-stories-components-chip-Chip-mdx",7141:"4-ColorCollection-mdx",7142:"form-stories-inputs-Input-stories",7240:"data-stories-Table-stories",7268:"core-stories-1-typography-Anchor-stories",7355:"core-stories-components-tabPanel-TabPanel-stories",7642:"core-stories-1-typography-Typography-mdx",7787:"chart-stories-MapSeries-stories",7844:"core-stories-1-typography-Copy-stories",7893:"date-stories-superdate-Superdate-mdx",7934:"core-stories-components-collapable-Collapsable-stories",8117:"media-stories-Dictation-stories",8145:"core-stories-components-animations-Spinner-stories",8156:"form-stories-selects-Select-mdx",8221:"chart-stories-ActivityMap-stories",8391:"core-stories-components-breadcrumbs-Breadcrumbs-stories",8506:"chart-stories-TimeSeries-stories",8621:"chart-stories-GenericChart-mdx",8655:"date-stories-superdate-Superdate-stories",8677:"core-stories-components-button-ConfirmButton-mdx",8735:"form-stories-form-Form-stories",8737:"core-stories-components-notifications-Notifications-mdx",8821:"core-stories-components-button-Button-stories",8852:"core-stories-0-core-ErrorBoundary-stories",8929:"core-stories-components-overlays-Overlays-mdx",8989:"draw-stories-Playground-stories",9016:"media-stories-VideoPlayer-stories",9050:"core-stories-0-core-Responsive-stories",9173:"form-stories-FormBuilder-stories",9194:"core-stories-components-button-ToggleButtonGroup-stories",9339:"chart-stories-ActivityMap-mdx",9385:"core-stories-components-tabPanel-TabPanel-mdx",9441:"core-stories-components-icon-Icon-mdx",9466:"form-stories-inputs-Search-stories",9481:"core-stories-components-chip-Chip-stories",9627:"core-stories-components-dropdown-Dropdown-stories",9640:"chart-stories-TimeSeries-mdx",9690:"core-stories-1-typography-Text-stories",9709:"form-stories-inputs-Password-stories",9771:"form-stories-autoComplete-AutoComplete-stories",9865:"data-stories-histogram-Histogram-mdx",9960:"chart-stories-TimeSlider-mdx",9961:"data-stories-json-JsonViewer-mdx"}[chunkId]||chunkId)+"."+{4:"a0b36b97",29:"f6af23b0",84:"294a1e40",89:"471f6687",193:"18b95b3a",213:"43dc0b2f",246:"10991824",247:"f0533503",265:"bb21a2de",271:"8a802921",277:"5ee869fd",321:"979ed78b",334:"b7cd719e",339:"d2efa496",357:"7f80788c",377:"72488cba",388:"201e6361",444:"1f3658b4",492:"6d48b63e",526:"2df245d0",573:"3b905490",648:"1ca08198",666:"71216c25",679:"50ab021a",729:"35376e86",734:"89ba950a",840:"4f5ee82d",853:"c971a603",867:"d49b71a4",874:"0b775bec",931:"872fa0df",1045:"40db9aea",1074:"1caf1a9c",1127:"892eaf1f",1130:"7162f3e0",1148:"eaf91baf",1189:"f74906d6",1200:"24f29c6b",1250:"3807fdf1",1323:"c3bdb1c6",1427:"4641ee36",1436:"c840ad27",1449:"4740658d",1475:"b8833a38",1494:"29120def",1529:"536f5b87",1567:"ef7423ed",1629:"d4b7d73e",1630:"63ddc02c",1634:"0896aefa",1636:"9d34eab9",1648:"46e914c6",1660:"b107a9fa",1737:"5dcfc44f",1757:"2873db74",1832:"02f8d389",1834:"9f697d73",1881:"925d381b",1887:"b148b0be",1888:"d5f3ec21",1954:"3a4c44a9",1960:"18fc48fa",1979:"6515e94a",1986:"d6b3b56b",1991:"51093160",2019:"6770f8f2",2028:"ef7771e9",2047:"5e088857",2077:"a85c93e4",2121:"deb66966",2280:"7c5d631c",2307:"8b2e8c1e",2461:"d9646590",2467:"87792a26",2485:"deedca29",2487:"6165d977",2517:"80d36166",2547:"f88bd82f",2567:"3fc659f7",2574:"b1813d5d",2611:"a787d3c3",2658:"7250a3e8",2681:"a1a97a1a",2710:"d1c3775e",2718:"61c54541",2745:"5b6f1da3",2757:"16a35b22",2762:"0a357b3f",2806:"54a56dd4",2823:"28310585",2843:"dba38fae",2871:"1450ef2e",2955:"b358ccd2",2959:"82fd5144",2973:"0b940a9c",2977:"4fac0c19",2985:"5025b142",3003:"fc345807",3103:"0149becc",3112:"9bf1356d",3161:"002196c2",3251:"135fb65f",3303:"dda69f32",3307:"508aff38",3363:"5bf60f8a",3372:"3910fc64",3395:"0ebe2d0f",3401:"4f270069",3413:"d21a7f1f",3609:"960ccc66",3681:"6d95240e",3683:"48b3eb8e",3707:"40a89623",3709:"78482b46",3739:"eeb2f007",3751:"4feae8d2",3780:"d1c7ee85",3796:"563d8929",3832:"d2f539c3",3846:"6061c826",3866:"6b8d8e9a",3974:"5eacdcf1",3984:"e0e56b8c",4053:"e8bdc759",4056:"8def7730",4060:"215a9b4d",4068:"b26fd260",4076:"4ed006e7",4111:"b81994de",4139:"8045b545",4176:"69c77537",4185:"57146c4a",4296:"07c9fe6d",4323:"7dfebbbf",4372:"747f05d7",4408:"ad6883c3",4445:"b4b201df",4462:"15a8e7dc",4474:"d6647e5e",4482:"9ffefb38",4484:"6deec96f",4486:"3d5a77d7",4490:"16545d81",4528:"cc4edf8c",4546:"74df3d49",4611:"aff9edb6",4616:"cfcad8c6",4750:"dfe87f7a",4769:"cfa23cec",4797:"33cace3e",4833:"02658d4b",4838:"c5691bf5",4839:"d84824f6",4878:"025e1bc7",4900:"168aed97",4958:"3e2a5a91",5085:"be85bc94",5129:"369cae7d",5211:"5c542aac",5224:"38802800",5305:"bc2a1962",5317:"4ead02fe",5318:"16d56b43",5337:"3aa22c21",5339:"d1987556",5352:"b252d5b6",5542:"abe72e21",5566:"3ec41cb9",5574:"b105123f",5594:"294a5351",5622:"7f3c24a1",5628:"3910c977",5675:"1a1821e2",5707:"2c6f1cd6",5737:"dfe03e41",5743:"aa3aeeb8",5776:"28f4c418",5791:"7fc075ab",5825:"f61eda18",5829:"ddb28fc4",5839:"7e8079cc",5847:"62339d8e",5862:"a40935bd",5877:"3ca7d320",5883:"e3f9097e",5929:"43858c7f",5985:"68487e9c",5987:"6b5373c3",5998:"fb966594",6012:"1047f892",6060:"c99cbb3f",6071:"6b15d1d7",6073:"45c4b991",6085:"42f471fa",6095:"8e7391c6",6100:"7649bf07",6145:"6cd584e6",6170:"47d51a8b",6225:"45a37be9",6253:"e779ba39",6294:"3bce6f74",6339:"d4bf1955",6412:"d761ae15",6460:"d4170049",6492:"ade4b970",6628:"b210dcec",6645:"743551e3",6707:"f549928d",6767:"d93e2d42",6831:"17e46a88",6843:"cf99a98b",6846:"2102868e",6867:"7eff00a0",6874:"aebaead1",6879:"62f2dab3",6897:"9ef10815",6941:"f2ed2d4b",7004:"965e97dc",7007:"ae8615cd",7136:"0f61efbb",7141:"a1dc0a5c",7142:"f30a0d74",7154:"8b51cd14",7240:"02ddeded",7260:"ec2044f4",7268:"51b83438",7269:"0b506c90",7318:"40cc484d",7355:"b4d1c01a",7364:"cea0217f",7421:"0546cc42",7445:"b90c0dfc",7575:"5c713171",7587:"9284f3cb",7614:"8a54a019",7642:"ff7b2ce4",7694:"b1d03cd8",7756:"11b266e2",7769:"8d5c6f42",7787:"ee68dbd1",7844:"06219f85",7881:"de1f6a2a",7893:"3f6f943f",7901:"e6da3a88",7934:"d2786e4b",8014:"9628f1f7",8088:"e630bb49",8109:"edc69413",8117:"33da8f0f",8145:"0c00ef0f",8156:"fc06d20f",8166:"69dd592b",8217:"7a245bb8",8221:"9336cde3",8232:"b1f2ad47",8326:"419b5688",8368:"bfa054e1",8391:"9466240f",8448:"6764759d",8506:"104af80f",8576:"89f3719f",8621:"a8e1378c",8655:"85f94b08",8677:"6ed6efa9",8724:"2bf91979",8735:"3abd47a9",8737:"738feba2",8753:"1d207ac6",8821:"9cdd875b",8830:"0d132d5f",8852:"3fdd4384",8872:"c6c6dc97",8929:"3cb3befe",8989:"4e39da52",9016:"836e0ba4",9023:"ecfd1685",9050:"70423619",9123:"c9e79e26",9129:"fbce9e75",9137:"55d43ed7",9165:"f4a968d7",9173:"469e07a8",9194:"d019c276",9339:"a47e9caf",9385:"858cca37",9390:"dae19560",9441:"9ed12bdf",9466:"2b4545d7",9474:"2d74db08",9481:"bc3473e3",9517:"921c528a",9595:"bf696274",9627:"4cb2789c",9640:"dfaa93dc",9690:"5ee589ba",9709:"dfb8e9d2",9711:"9e109d3c",9746:"bdaf1e57",9771:"e437699d",9787:"a95f2255",9865:"4ac8f63f",9960:"fe920d53",9961:"4f7efbba"}[chunkId]+".iframe.bundle.js"),__webpack_require__.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),__webpack_require__.hmd=module=>((module=Object.create(module)).children||(module.children=[]),Object.defineProperty(module,"exports",{enumerable:!0,set:()=>{throw new Error("ES Modules may not assign module.exports or exports.*, Use ESM export syntax, instead: "+module.id)}}),module),__webpack_require__.o=(obj,prop)=>Object.prototype.hasOwnProperty.call(obj,prop),inProgress={},__webpack_require__.l=(url,done,key,chunkId)=>{if(inProgress[url])inProgress[url].push(done);else{var script,needAttach;if(void 0!==key)for(var scripts=document.getElementsByTagName("script"),i=0;i{script.onerror=script.onload=null,clearTimeout(timeout);var doneFns=inProgress[url];if(delete inProgress[url],script.parentNode&&script.parentNode.removeChild(script),doneFns&&doneFns.forEach((fn=>fn(event))),prev)return prev(event)},timeout=setTimeout(onScriptComplete.bind(null,void 0,{type:"timeout",target:script}),12e4);script.onerror=onScriptComplete.bind(null,script.onerror),script.onload=onScriptComplete.bind(null,script.onload),needAttach&&document.head.appendChild(script)}},__webpack_require__.r=exports=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(exports,"__esModule",{value:!0})},__webpack_require__.nmd=module=>(module.paths=[],module.children||(module.children=[]),module),__webpack_require__.p="",(()=>{__webpack_require__.b=document.baseURI||self.location.href;var installedChunks={5354:0};__webpack_require__.f.j=(chunkId,promises)=>{var installedChunkData=__webpack_require__.o(installedChunks,chunkId)?installedChunks[chunkId]:void 0;if(0!==installedChunkData)if(installedChunkData)promises.push(installedChunkData[2]);else if(5354!=chunkId){var promise=new Promise(((resolve,reject)=>installedChunkData=installedChunks[chunkId]=[resolve,reject]));promises.push(installedChunkData[2]=promise);var url=__webpack_require__.p+__webpack_require__.u(chunkId),error=new Error;__webpack_require__.l(url,(event=>{if(__webpack_require__.o(installedChunks,chunkId)&&(0!==(installedChunkData=installedChunks[chunkId])&&(installedChunks[chunkId]=void 0),installedChunkData)){var errorType=event&&("load"===event.type?"missing":event.type),realSrc=event&&event.target&&event.target.src;error.message="Loading chunk "+chunkId+" failed.\n("+errorType+": "+realSrc+")",error.name="ChunkLoadError",error.type=errorType,error.request=realSrc,installedChunkData[1](error)}}),"chunk-"+chunkId,chunkId)}else installedChunks[chunkId]=0},__webpack_require__.O.j=chunkId=>0===installedChunks[chunkId];var webpackJsonpCallback=(parentChunkLoadingFunction,data)=>{var moduleId,chunkId,[chunkIds,moreModules,runtime]=data,i=0;if(chunkIds.some((id=>0!==installedChunks[id]))){for(moduleId in moreModules)__webpack_require__.o(moreModules,moduleId)&&(__webpack_require__.m[moduleId]=moreModules[moduleId]);if(runtime)var result=runtime(__webpack_require__)}for(parentChunkLoadingFunction&&parentChunkLoadingFunction(data);i{"use strict";var deferred,leafPrototypes,getProto,inProgress,__webpack_modules__={},__webpack_module_cache__={};function __webpack_require__(moduleId){var cachedModule=__webpack_module_cache__[moduleId];if(void 0!==cachedModule)return cachedModule.exports;var module=__webpack_module_cache__[moduleId]={id:moduleId,loaded:!1,exports:{}};return __webpack_modules__[moduleId].call(module.exports,module,module.exports,__webpack_require__),module.loaded=!0,module.exports}__webpack_require__.m=__webpack_modules__,__webpack_require__.amdO={},deferred=[],__webpack_require__.O=(result,chunkIds,fn,priority)=>{if(!chunkIds){var notFulfilled=1/0;for(i=0;i=priority)&&Object.keys(__webpack_require__.O).every((key=>__webpack_require__.O[key](chunkIds[j])))?chunkIds.splice(j--,1):(fulfilled=!1,priority0&&deferred[i-1][2]>priority;i--)deferred[i]=deferred[i-1];deferred[i]=[chunkIds,fn,priority]},__webpack_require__.n=module=>{var getter=module&&module.__esModule?()=>module.default:()=>module;return __webpack_require__.d(getter,{a:getter}),getter},getProto=Object.getPrototypeOf?obj=>Object.getPrototypeOf(obj):obj=>obj.__proto__,__webpack_require__.t=function(value,mode){if(1&mode&&(value=this(value)),8&mode)return value;if("object"==typeof value&&value){if(4&mode&&value.__esModule)return value;if(16&mode&&"function"==typeof value.then)return value}var ns=Object.create(null);__webpack_require__.r(ns);var def={};leafPrototypes=leafPrototypes||[null,getProto({}),getProto([]),getProto(getProto)];for(var current=2&mode&&value;"object"==typeof current&&!~leafPrototypes.indexOf(current);current=getProto(current))Object.getOwnPropertyNames(current).forEach((key=>def[key]=()=>value[key]));return def.default=()=>value,__webpack_require__.d(ns,def),ns},__webpack_require__.d=(exports,definition)=>{for(var key in definition)__webpack_require__.o(definition,key)&&!__webpack_require__.o(exports,key)&&Object.defineProperty(exports,key,{enumerable:!0,get:definition[key]})},__webpack_require__.f={},__webpack_require__.e=chunkId=>Promise.all(Object.keys(__webpack_require__.f).reduce(((promises,key)=>(__webpack_require__.f[key](chunkId,promises),promises)),[])),__webpack_require__.u=chunkId=>(({4:"monaco-stories-Playground-stories",29:"core-stories-components-breadcrumbs-Breadcrumbs-mdx",213:"2-Iconography-mdx",271:"core-stories-components-button-ConfirmButton-stories",334:"core-stories-components-notifications-Message-stories",357:"form-stories-inputs-Checkbox-stories",388:"core-stories-components-animations-Bars-stories",444:"form-stories-sliders-Slider-mdx",526:"data-stories-useFilteredList-FilteredList-mdx",573:"core-stories-components-card-Card-stories",648:"core-stories-1-typography-Mark-stories",666:"chart-stories-TimeSlider-stories",679:"core-stories-1-typography-Title-stories",729:"data-stories-VirtualList-stories",840:"data-stories-useFilteredList-FilteredList-stories",853:"date-stories-panels-DatePanels-mdx",1045:"core-stories-components-panel-Panel-mdx",1074:"form-stories-inputs-Switch-stories",1130:"media-stories-Thumbnail-stories",1148:"core-stories-components-button-Navigator-stories",1200:"form-stories-sliders-Range-stories",1323:"data-stories-TreeView-stories",1427:"core-stories-components-empty-Empty-stories",1629:"core-stories-components-menu-Menu-mdx",1630:"mdx-stories-Playground-stories",1636:"core-stories-components-avatar-AvatarGroup-stories",1648:"chart-stories-CountSeries-stories",1660:"chart-stories-WordBubble-stories",1757:"date-stories-panels-RangePanel-stories",1881:"core-stories-components-callout-Callout-mdx",1888:"date-stories-panels-DatePanel-stories",1979:"core-stories-components-animations-Animations-stories",2019:"core-stories-components-button-Button-mdx",2028:"form-stories-inputs-Input-mdx",2121:"form-stories-inputs-ColorInput-stories",2307:"core-stories-components-actionLabel-ActionLabel-stories",2485:"core-stories-components-tooltip-Tooltip-mdx",2567:"media-stories-ImageViewer-stories",2611:"core-stories-components-progress-Progress-stories",2710:"form-stories-sliders-Slider-stories",2718:"core-stories-components-notifications-Toast-stories",2757:"form-stories-form-Form-mdx",2806:"form-stories-selects-Select-stories",2871:"chart-stories-GenericChart-stories",2955:"form-stories-inputs-Radio-stories",2977:"core-stories-0-core-Section-stories",2985:"lexical-stories-Playground-stories",3003:"core-stories-components-callout-Callout-stories",3103:"core-stories-components-panel-Panel-stories",3161:"chart-stories-MapSeries-mdx",3251:"form-stories-inputs-Others-stories",3307:"core-stories-components-animations-Skeleton-stories",3363:"core-stories-0-core-Content-stories",3395:"core-stories-0-core-Theme-stories",3401:"core-stories-components-dropdown-Dropdown-mdx",3413:"core-stories-components-badge-Badge-mdx",3609:"chart-stories-DataSeries-stories",3681:"core-stories-components-overlays-Flyout-stories",3707:"media-stories-AudioPlayer-stories",3846:"core-stories-components-button-ButtonGroup-stories",3866:"core-stories-1-typography-Abbr-stories",3984:"core-stories-components-panel-PanelGroup-stories",4056:"form-stories-selects-DualList-stories",4060:"form-stories-inputs-Textarea-stories",4111:"core-stories-components-badge-Badge-stories",4139:"data-stories-json-JsonViewer-stories",4176:"form-stories-selects-List-mdx",4185:"1-ColorPalette-mdx",4445:"data-stories-VirtualGallery-stories",4482:"form-stories-selects-List-stories",4490:"chart-stories-WordBubble-mdx",4769:"core-stories-components-actionLabel-ActionLabel-mdx",4900:"core-stories-components-collapable-Collapsable-mdx",5129:"core-stories-components-meter-Meter-mdx",5224:"core-stories-0-core-Aside-stories",5305:"core-stories-components-notifications-Alert-stories",5337:"form-stories-autoComplete-AutoComplete-mdx",5339:"data-stories-histogram-Histogram-stories",5352:"core-stories-components-button-ToggleButtonGroup-mdx",5542:"chart-stories-CountSeries-mdx",5574:"searchbar-stories-SearchBar-stories",5594:"3-Typography-mdx",5675:"core-stories-components-card-Card-mdx",5707:"core-stories-components-overlays-Modal-stories",5743:"chart-stories-DataSeries-mdx",5776:"form-stories-inputs-File-stories",5791:"core-stories-0-core-Core-mdx",5825:"core-stories-components-progress-Progress-mdx",5829:"form-stories-inputs-Number-stories",5839:"core-stories-components-tooltip-Tooltip-stories",5883:"core-stories-components-meter-Meter-stories",5998:"core-stories-0-core-Viewport-stories",6012:"form-stories-form-ArrayInput-stories",6071:"core-stories-components-menu-Menu-stories",6073:"core-stories-components-animations-Animations-mdx",6225:"core-stories-components-avatar-Avatar-mdx",6253:"core-stories-0-core-Page-stories",6339:"core-stories-components-icon-Icon-stories",6628:"0-Introduction-mdx",6846:"core-stories-components-progress-Circle-stories",6867:"core-stories-components-avatar-Avatar-stories",6897:"core-stories-components-empty-Empty-mdx",7004:"core-stories-components-button-ButtonGroup-mdx",7007:"core-stories-components-chip-Chip-mdx",7141:"4-ColorCollection-mdx",7142:"form-stories-inputs-Input-stories",7240:"data-stories-Table-stories",7268:"core-stories-1-typography-Anchor-stories",7355:"core-stories-components-tabPanel-TabPanel-stories",7642:"core-stories-1-typography-Typography-mdx",7787:"chart-stories-MapSeries-stories",7844:"core-stories-1-typography-Copy-stories",7893:"date-stories-superdate-Superdate-mdx",7934:"core-stories-components-collapable-Collapsable-stories",8117:"media-stories-Dictation-stories",8145:"core-stories-components-animations-Spinner-stories",8156:"form-stories-selects-Select-mdx",8221:"chart-stories-ActivityMap-stories",8391:"core-stories-components-breadcrumbs-Breadcrumbs-stories",8506:"chart-stories-TimeSeries-stories",8621:"chart-stories-GenericChart-mdx",8655:"date-stories-superdate-Superdate-stories",8677:"core-stories-components-button-ConfirmButton-mdx",8735:"form-stories-form-Form-stories",8737:"core-stories-components-notifications-Notifications-mdx",8821:"core-stories-components-button-Button-stories",8852:"core-stories-0-core-ErrorBoundary-stories",8929:"core-stories-components-overlays-Overlays-mdx",8989:"draw-stories-Playground-stories",9016:"media-stories-VideoPlayer-stories",9050:"core-stories-0-core-Responsive-stories",9173:"form-stories-FormBuilder-stories",9194:"core-stories-components-button-ToggleButtonGroup-stories",9339:"chart-stories-ActivityMap-mdx",9385:"core-stories-components-tabPanel-TabPanel-mdx",9441:"core-stories-components-icon-Icon-mdx",9466:"form-stories-inputs-Search-stories",9481:"core-stories-components-chip-Chip-stories",9627:"core-stories-components-dropdown-Dropdown-stories",9640:"chart-stories-TimeSeries-mdx",9690:"core-stories-1-typography-Text-stories",9709:"form-stories-inputs-Password-stories",9771:"form-stories-autoComplete-AutoComplete-stories",9865:"data-stories-histogram-Histogram-mdx",9960:"chart-stories-TimeSlider-mdx",9961:"data-stories-json-JsonViewer-mdx"}[chunkId]||chunkId)+"."+{4:"a0b36b97",29:"f6af23b0",84:"294a1e40",89:"471f6687",193:"18b95b3a",213:"43dc0b2f",246:"10991824",247:"f0533503",265:"bb21a2de",271:"8a802921",277:"5ee869fd",321:"979ed78b",334:"b7cd719e",339:"d2efa496",357:"7f80788c",377:"72488cba",388:"201e6361",444:"1f3658b4",492:"6d48b63e",526:"2df245d0",573:"3b905490",648:"1ca08198",666:"71216c25",679:"50ab021a",729:"35376e86",734:"89ba950a",840:"4f5ee82d",853:"c971a603",867:"d49b71a4",874:"0b775bec",931:"872fa0df",1045:"40db9aea",1074:"1caf1a9c",1127:"892eaf1f",1130:"7162f3e0",1148:"eaf91baf",1189:"f74906d6",1200:"24f29c6b",1250:"3807fdf1",1323:"c3bdb1c6",1427:"4641ee36",1436:"c840ad27",1449:"4740658d",1475:"b8833a38",1494:"29120def",1529:"536f5b87",1567:"ef7423ed",1629:"d4b7d73e",1630:"63ddc02c",1634:"c1d15aca",1636:"9d34eab9",1648:"46e914c6",1660:"b107a9fa",1737:"5dcfc44f",1757:"2873db74",1832:"02f8d389",1834:"9f697d73",1881:"925d381b",1887:"b148b0be",1888:"d5f3ec21",1954:"3a4c44a9",1960:"18fc48fa",1979:"6515e94a",1986:"d6b3b56b",1991:"51093160",2019:"6770f8f2",2028:"ef7771e9",2047:"5e088857",2077:"a85c93e4",2121:"deb66966",2280:"7c5d631c",2307:"8b2e8c1e",2461:"d9646590",2467:"87792a26",2485:"deedca29",2487:"6165d977",2517:"80d36166",2547:"b6b5739f",2567:"3fc659f7",2574:"b1813d5d",2611:"a787d3c3",2658:"7250a3e8",2681:"a1a97a1a",2710:"d1c3775e",2718:"61c54541",2745:"5b6f1da3",2757:"16a35b22",2762:"0a357b3f",2806:"54a56dd4",2823:"28310585",2843:"dba38fae",2871:"1450ef2e",2955:"b358ccd2",2959:"82fd5144",2973:"0b940a9c",2977:"4fac0c19",2985:"5025b142",3003:"fc345807",3103:"0149becc",3112:"9bf1356d",3161:"002196c2",3251:"135fb65f",3303:"dda69f32",3307:"508aff38",3363:"5bf60f8a",3372:"3910fc64",3395:"0ebe2d0f",3401:"cab64820",3413:"d21a7f1f",3609:"960ccc66",3681:"6d95240e",3683:"48b3eb8e",3707:"40a89623",3709:"78482b46",3739:"eeb2f007",3751:"4feae8d2",3780:"d1c7ee85",3796:"563d8929",3832:"d2f539c3",3846:"6061c826",3866:"6b8d8e9a",3974:"5eacdcf1",3984:"e0e56b8c",4053:"e8bdc759",4056:"8def7730",4060:"215a9b4d",4068:"b26fd260",4076:"4ed006e7",4111:"b81994de",4139:"8045b545",4176:"69c77537",4185:"57146c4a",4296:"07c9fe6d",4323:"7dfebbbf",4372:"747f05d7",4408:"ad6883c3",4445:"b4b201df",4462:"15a8e7dc",4474:"d6647e5e",4482:"9ffefb38",4484:"6deec96f",4486:"3d5a77d7",4490:"16545d81",4528:"cc4edf8c",4546:"74df3d49",4611:"aff9edb6",4616:"cfcad8c6",4750:"dfe87f7a",4769:"cfa23cec",4797:"33cace3e",4833:"02658d4b",4838:"c5691bf5",4839:"d84824f6",4878:"025e1bc7",4900:"168aed97",4958:"3e2a5a91",5085:"be85bc94",5129:"369cae7d",5211:"5c542aac",5224:"38802800",5305:"bc2a1962",5317:"4ead02fe",5318:"16d56b43",5337:"3aa22c21",5339:"d1987556",5352:"b252d5b6",5542:"abe72e21",5566:"3ec41cb9",5574:"b105123f",5594:"294a5351",5622:"7f3c24a1",5628:"3910c977",5675:"1a1821e2",5707:"2c6f1cd6",5737:"dfe03e41",5743:"aa3aeeb8",5776:"28f4c418",5791:"7fc075ab",5825:"f61eda18",5829:"ddb28fc4",5839:"7e8079cc",5847:"62339d8e",5862:"a40935bd",5877:"3ca7d320",5883:"e3f9097e",5929:"43858c7f",5985:"68487e9c",5987:"6b5373c3",5998:"fb966594",6012:"1047f892",6060:"c99cbb3f",6071:"6b15d1d7",6073:"45c4b991",6085:"42f471fa",6095:"8e7391c6",6100:"7649bf07",6145:"6cd584e6",6170:"47d51a8b",6225:"45a37be9",6253:"e779ba39",6294:"3bce6f74",6339:"d4bf1955",6412:"d761ae15",6460:"d4170049",6492:"ade4b970",6628:"b210dcec",6645:"743551e3",6707:"f549928d",6767:"d93e2d42",6831:"17e46a88",6843:"cf99a98b",6846:"2102868e",6867:"7eff00a0",6874:"aebaead1",6879:"62f2dab3",6897:"9ef10815",6941:"f2ed2d4b",7004:"965e97dc",7007:"ae8615cd",7136:"0f61efbb",7141:"a1dc0a5c",7142:"f30a0d74",7154:"8b51cd14",7240:"02ddeded",7260:"ec2044f4",7268:"51b83438",7269:"0b506c90",7318:"40cc484d",7355:"b4d1c01a",7364:"cea0217f",7421:"0546cc42",7445:"b90c0dfc",7575:"5c713171",7587:"9284f3cb",7614:"8a54a019",7642:"ff7b2ce4",7694:"b1d03cd8",7756:"11b266e2",7769:"8d5c6f42",7787:"ee68dbd1",7844:"06219f85",7881:"de1f6a2a",7893:"3f6f943f",7901:"e6da3a88",7934:"d2786e4b",8014:"9628f1f7",8088:"e630bb49",8109:"edc69413",8117:"33da8f0f",8145:"0c00ef0f",8156:"fc06d20f",8166:"69dd592b",8217:"7a245bb8",8221:"9336cde3",8232:"b1f2ad47",8326:"419b5688",8368:"bfa054e1",8391:"9466240f",8448:"6764759d",8506:"104af80f",8576:"89f3719f",8621:"a8e1378c",8655:"85f94b08",8677:"6ed6efa9",8724:"2bf91979",8735:"3abd47a9",8737:"738feba2",8753:"1d207ac6",8821:"9cdd875b",8830:"0d132d5f",8852:"3fdd4384",8872:"c6c6dc97",8929:"3cb3befe",8989:"4e39da52",9016:"836e0ba4",9023:"ecfd1685",9050:"70423619",9123:"c9e79e26",9129:"fbce9e75",9137:"55d43ed7",9165:"f4a968d7",9173:"469e07a8",9194:"d019c276",9339:"a47e9caf",9385:"858cca37",9390:"dae19560",9441:"9ed12bdf",9466:"2b4545d7",9474:"2d74db08",9481:"bc3473e3",9517:"921c528a",9595:"bf696274",9627:"c3f34d30",9640:"dfaa93dc",9690:"5ee589ba",9709:"dfb8e9d2",9711:"9e109d3c",9746:"bdaf1e57",9771:"e437699d",9787:"a95f2255",9865:"4ac8f63f",9960:"fe920d53",9961:"4f7efbba"}[chunkId]+".iframe.bundle.js"),__webpack_require__.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),__webpack_require__.hmd=module=>((module=Object.create(module)).children||(module.children=[]),Object.defineProperty(module,"exports",{enumerable:!0,set:()=>{throw new Error("ES Modules may not assign module.exports or exports.*, Use ESM export syntax, instead: "+module.id)}}),module),__webpack_require__.o=(obj,prop)=>Object.prototype.hasOwnProperty.call(obj,prop),inProgress={},__webpack_require__.l=(url,done,key,chunkId)=>{if(inProgress[url])inProgress[url].push(done);else{var script,needAttach;if(void 0!==key)for(var scripts=document.getElementsByTagName("script"),i=0;i{script.onerror=script.onload=null,clearTimeout(timeout);var doneFns=inProgress[url];if(delete inProgress[url],script.parentNode&&script.parentNode.removeChild(script),doneFns&&doneFns.forEach((fn=>fn(event))),prev)return prev(event)},timeout=setTimeout(onScriptComplete.bind(null,void 0,{type:"timeout",target:script}),12e4);script.onerror=onScriptComplete.bind(null,script.onerror),script.onload=onScriptComplete.bind(null,script.onload),needAttach&&document.head.appendChild(script)}},__webpack_require__.r=exports=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(exports,"__esModule",{value:!0})},__webpack_require__.nmd=module=>(module.paths=[],module.children||(module.children=[]),module),__webpack_require__.p="",(()=>{__webpack_require__.b=document.baseURI||self.location.href;var installedChunks={5354:0};__webpack_require__.f.j=(chunkId,promises)=>{var installedChunkData=__webpack_require__.o(installedChunks,chunkId)?installedChunks[chunkId]:void 0;if(0!==installedChunkData)if(installedChunkData)promises.push(installedChunkData[2]);else if(5354!=chunkId){var promise=new Promise(((resolve,reject)=>installedChunkData=installedChunks[chunkId]=[resolve,reject]));promises.push(installedChunkData[2]=promise);var url=__webpack_require__.p+__webpack_require__.u(chunkId),error=new Error;__webpack_require__.l(url,(event=>{if(__webpack_require__.o(installedChunks,chunkId)&&(0!==(installedChunkData=installedChunks[chunkId])&&(installedChunks[chunkId]=void 0),installedChunkData)){var errorType=event&&("load"===event.type?"missing":event.type),realSrc=event&&event.target&&event.target.src;error.message="Loading chunk "+chunkId+" failed.\n("+errorType+": "+realSrc+")",error.name="ChunkLoadError",error.type=errorType,error.request=realSrc,installedChunkData[1](error)}}),"chunk-"+chunkId,chunkId)}else installedChunks[chunkId]=0},__webpack_require__.O.j=chunkId=>0===installedChunks[chunkId];var webpackJsonpCallback=(parentChunkLoadingFunction,data)=>{var moduleId,chunkId,[chunkIds,moreModules,runtime]=data,i=0;if(chunkIds.some((id=>0!==installedChunks[id]))){for(moduleId in moreModules)__webpack_require__.o(moreModules,moduleId)&&(__webpack_require__.m[moduleId]=moreModules[moduleId]);if(runtime)var result=runtime(__webpack_require__)}for(parentChunkLoadingFunction&&parentChunkLoadingFunction(data);i